Skip to content

Instantly share code, notes, and snippets.

@buro9
Last active August 29, 2015 14:06
Show Gist options
  • Save buro9/6d6e53abd005b5ff28dd to your computer and use it in GitHub Desktop.
Save buro9/6d6e53abd005b5ff28dd to your computer and use it in GitHub Desktop.
Adding events from web pages.
Outlook + iCal = Generate an .ics file and content-disposition it.
Google + Yahoo + Hotmail = Generate URLs and navigate to them.
// Same day, specific times
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
DTSTAMP:20140908T111213Z
ORGANIZER;CN=@profilename:MAILTO:organizer@addthisevent.com
STATUS:CONFIRMED
DTSTART:20140908T111213Z
DTEND:20140908T141516Z
SUMMARY:This is the title
DESCRIPTION:This is the description
X-ALT-DESC;FMTTYPE=text/html:This is the description
LOCATION:This is the place
END:VEVENT
END:VCALENDAR
https://www.google.com/calendar/render?action=TEMPLATE&text=This%20is%20the%20title&dates=20140908T111213Z/20140908T141516Z&details=This%20is%20the%20description&location=This%20is%20the%20place&pli=1&uid=eventId&sf=true&output=xml
https://calendar.yahoo.com/?v=60&view=d&type=20&url=&title=This%20is%20the%20title&st=20140908T111213Z&dur=0303&desc=This%20is%20the%20description&in_loc=This%20is%20the%20place&uid=
https://bay02.calendar.live.com/calendar/calendar.aspx?rru=addevent&dtstart=20140908T111213Z&dtend=20140908T141516Z&summary=This%20is%20the%20title&location=This%20is%20the%20place&description=This%20is%20the%20description&uid=
// Multi-day, specific times.
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
DTSTAMP:20140908T111213Z
ORGANIZER;CN=@profilename:MAILTO:organizer@addthisevent.com
STATUS:CONFIRMED
DTSTART:20140908T111213Z
DTEND:20140909T141516Z
SUMMARY:This is the title
DESCRIPTION:This is the description
X-ALT-DESC;FMTTYPE=text/html:This is the description
LOCATION:This is the place
END:VEVENT
END:VCALENDAR
https://www.google.com/calendar/render?action=TEMPLATE&text=This%20is%20the%20title&dates=20140908T111213Z/20140909T141516Z&details=This%20is%20the%20description&location=This%20is%20the%20place&pli=1&uid=eventId&sf=true&output=xml
https://calendar.yahoo.com/?v=60&view=d&type=20&url=&title=This%20is%20the%20title&st=20140908T111213Z&dur=2703&desc=This%20is%20the%20description&in_loc=This%20is%20the%20place&uid=
https://bay02.calendar.live.com/calendar/calendar.aspx?rru=addevent&dtstart=20140908T111213Z&dtend=20140909T141516Z&summary=This%20is%20the%20title&location=This%20is%20the%20place&description=This%20is%20the%20description&uid=
// Same day, all day
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
DTSTAMP:20140908T120000Z
ORGANIZER;CN=@profilename:MAILTO:organizer@addthisevent.com
STATUS:CONFIRMED
DTSTART:20140908
DTEND:20140909
SUMMARY:This is the title
DESCRIPTION:This is the description
X-ALT-DESC;FMTTYPE=text/html:This is the description
LOCATION:This is the place
END:VEVENT
END:VCALENDAR
https://www.google.com/calendar/render?action=TEMPLATE&text=This%20is%20the%20title&dates=20140908/20140909&details=This%20is%20the%20description&location=This%20is%20the%20place&pli=1&uid=&sf=true&output=xml
https://calendar.yahoo.com/?v=60&view=d&type=20&url=&title=This%20is%20the%20title&st=20140908T120000Z&dur=allday&desc=This%20is%20the%20description&in_loc=This%20is%20the%20place&uid=
https://bay02.calendar.live.com/calendar/calendar.aspx?rru=addevent&dtstart=20140908T120000Z&dtend=20140908T120000Z&summary=This%20is%20the%20title&location=This%20is%20the%20place&description=This%20is%20the%20description&uid=
// Multi-day, all day
BEGIN:VCALENDAR
VERSION:2.0
BEGIN:VEVENT
DTSTAMP:20140908T120000Z
ORGANIZER;CN=@profilename:MAILTO:organizer@addthisevent.com
STATUS:CONFIRMED
DTSTART:20140908
DTEND:20140910
SUMMARY:This is the title
DESCRIPTION:This is the description
X-ALT-DESC;FMTTYPE=text/html:This is the description
LOCATION:This is the place
END:VEVENT
END:VCALENDAR
https://www.google.com/calendar/render?action=TEMPLATE&text=This%20is%20the%20title&dates=20140908/20140910&details=This%20is%20the%20description&location=This%20is%20the%20place&pli=1&uid=&sf=true&output=xml
https://calendar.yahoo.com/?v=60&view=d&type=20&url=&title=This%20is%20the%20title&st=20140908T120000Z&dur=allday&desc=This%20is%20the%20description&in_loc=This%20is%20the%20place&uid=
https://bay02.calendar.live.com/calendar/calendar.aspx?rru=addevent&dtstart=20140908T120000Z&dtend=20140909T120000Z&summary=This%20is%20the%20title&location=This%20is%20the%20place&description=This%20is%20the%20description&uid=
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment