3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Variables used in this script: // $summary - text title of the event // $datestart - the starting date (in seconds since unix epoch) // $dateend - the ending date (in seconds since unix epoch) // $address - the event's address // $uri - the URL of the event (add http://) // $description - text description of the event // $filename - the name of this file for saving (e.g. my-event-name.ics) // // Notes: // - the UID should be unique to the event, so in this case I'm just using // uniqid to create a uid, but you could do whatever you'd like. // // - iCal requires a date format of "yyyymmddThhiissZ". The "T" and "Z" // characters are not placeholders, just plain ol' characters. The "T" // character acts as a delimeter between the date (yyyymmdd) and the time // (hhiiss), and the "Z" states that the date is in UTC time. Note that if // you don't want to use UTC time, you must prepend your date-time values // with a TZID property. See RFC 5545 section 3.3.5 // // - The Content-Disposition: attachment; header tells the browser to save/open // the file. The filename param sets the name of the file, so you could set // it as "my-event-name.ics" or something similar. // // - Read up on RFC 5545, the iCalendar specification. There is a lot of helpful // info in there, such as formatting rules. There are also many more options // to set, including alarms, invitees, busy status, etc. // // https://www.ietf.org/rfc/rfc5545.txt // 1. Set the correct headers for this file header('Content-type: text/calendar; charset=utf-8'); header('Content-Disposition: attachment; filename=' . $filename); // 2. Define helper functions // Converts a unix timestamp to an ics-friendly format // NOTE: "Z" means that this timestamp is a UTC timestamp. If you need // to set a locale, remove the "\Z" and modify DTEND, DTSTAMP and DTSTART // with TZID properties (see RFC 5545 section 3.3.5 for info) // // Also note that we are using "H" instead of "g" because iCalendar's Time format // requires 24-hour time (see RFC 5545 section 3.3.12 for info). function dateToCal($timestamp) { return date('Ymd\THis\Z', $timestamp); } // Escapes a string of characters function escapeString($string) { return preg_replace('/([\,;])/','\\\$1', $string); } // 3. Echo out the ics file's contents ?> BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND:<?= dateToCal($dateend) ?> UID:<?= uniqid() ?> DTSTAMP:<?= dateToCal(time()) ?> LOCATION:<?= escapeString($address) ?> DESCRIPTION:<?= escapeString($description) ?> URL;VALUE=URI:<?= escapeString($uri) ?> SUMMARY:<?= escapeString($summary) ?> DTSTART:<?= dateToCal($datestart) ?> END:VEVENT END:VCALENDAR
Output for 7.2.0
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500fe2DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.1.7
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500a54DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.1.6
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a502d47DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.1.5
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a503214DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.1.0
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50196dDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.20
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5015c1DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.14
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e5fDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.10
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e77DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.9
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500a22DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.8
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500de0DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.7
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500bd5DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.6
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c75DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.5
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f11DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.4
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e07DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.3
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c0bDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.2
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c6dDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.1
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500ec9DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 7.0.0
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500dfbDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.28
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011c2DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.25
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e62DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.24
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010a0DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.23
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501015DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.22
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500a92DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.21
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f26DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.20
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c85DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.19
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c59DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.18
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500b27DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.17
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011f8DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.16
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50129eDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.15
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501596DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.14
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011c7DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.13
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010d5DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.12
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f36DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.11
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e82DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.10
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010a3DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.9
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f91DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.8
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50128fDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.7
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f98DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.6
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010e9DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.5
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5013bfDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.4
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e23DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.3
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5012baDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.2
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501390DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.1
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011f4DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.6.0
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500dc5DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.38
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500febDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.37
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50104dDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.36
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500a9aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.35
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500a6eDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.34
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e15DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.33
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501206DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.32
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501048DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.31
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f02DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.30
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f8aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.29
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5012c6DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.28
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501295DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.27
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501293DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.26
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f94DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.25
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501248DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.24
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f7eDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.23
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5013acDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.22
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501594DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.21
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501241DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.20
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501262DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.19
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500dd5DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.18
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011a4DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.16
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011afDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.15
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501322DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.14
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011faDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.13
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5013e4DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.12
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50138aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.11
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011a2DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.10
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50101aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.9
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50113fDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.8
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50132cDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.7
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50134dDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.27, 5.5.6
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010d0DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.5
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c15DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.4
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500fa2DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.3
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f4bDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.2
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501000DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.1
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50111fDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.5.0
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500d48DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.45
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e80DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.44
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501033DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.43
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5011a7DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.42
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010c9DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.41
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500d0cDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.40
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500dcaDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.39
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500d0eDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.38
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500d26DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.37
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500df5DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.36
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e7aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.35
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50158dDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.34
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501064DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.32
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c23DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.31
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e14DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.30
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010d6DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.28 - 5.4.29
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010efDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.26
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500d47DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.25
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5010f1DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.24
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50102cDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.23
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501049DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.22
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501012DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.21
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500fabDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.20
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501274DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.19
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501111DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.18
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500e08DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.17
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500f46DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.16
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a501014DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.15
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500c0aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.14
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50099aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.13
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500808DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.12
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500880DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.11
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50088aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.10
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500853DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.9
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500849DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.8
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50071fDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.7
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50098dDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.6
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50085aDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.5
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50093cDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.4
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5009b4DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.3
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500782DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.2
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a500935DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.1
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a50085fDTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.4.0
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND: Notice: Undefined variable: dateend in /in/Dt56V on line 61 19700101T010000ZUID:535fb6a5008b6DTSTAMP:20140429T162645ZLOCATION: Notice: Undefined variable: address in /in/Dt56V on line 64 DESCRIPTION: Notice: Undefined variable: description in /in/Dt56V on line 65 URL;VALUE=URI: Notice: Undefined variable: uri in /in/Dt56V on line 66 SUMMARY: Notice: Undefined variable: summary in /in/Dt56V on line 67 DTSTART: Notice: Undefined variable: datestart in /in/Dt56V on line 68 19700101T010000ZEND:VEVENT END:VCALENDAR
Output for 5.2.3 - 5.2.17, 5.3.0 - 5.3.29
Notice: Undefined variable: filename in /in/Dt56V on line 34 Warning: Cannot modify header information - headers already sent by (output started at /in/Dt56V:34) in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND:<?= dateToCal($dateend) ?> UID:<?= uniqid() ?> DTSTAMP:<?= dateToCal(time()) ?> LOCATION:<?= escapeString($address) ?> DESCRIPTION:<?= escapeString($description) ?> URL;VALUE=URI:<?= escapeString($uri) ?> SUMMARY:<?= escapeString($summary) ?> DTSTART:<?= dateToCal($datestart) ?> END:VEVENT END:VCALENDAR
Output for 5.0.4 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.2
Notice: Undefined variable: filename in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND:<?= dateToCal($dateend) ?> UID:<?= uniqid() ?> DTSTAMP:<?= dateToCal(time()) ?> LOCATION:<?= escapeString($address) ?> DESCRIPTION:<?= escapeString($description) ?> URL;VALUE=URI:<?= escapeString($uri) ?> SUMMARY:<?= escapeString($summary) ?> DTSTART:<?= dateToCal($datestart) ?> END:VEVENT END:VCALENDAR
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.3
Notice: Undefined variable: filename in /in/Dt56V on line 34 BEGIN:VCALENDAR VERSION:2.0 PRODID:-//hacksw/handcal//NONSGML v1.0//EN CALSCALE:GREGORIAN BEGIN:VEVENT DTEND:<?= dateToCal($dateend) ?> UID:<?= uniqid() ?> DTSTAMP:<?= dateToCal(time()) ?> LOCATION:<?= escapeString($address) ?> DESCRIPTION:<?= escapeString($description) ?> URL;VALUE=URI:<?= escapeString($uri) ?> SUMMARY:<?= escapeString($summary) ?> DTSTART:<?= dateToCal($datestart) ?> END:VEVENT END:VCALENDAR

preferences:
178.2 ms | 403 KiB | 216 Q