Index: trunk/extensions/SemanticResultFormats/iCalendar/SRF_iCalendar.php |
— | — | @@ -88,7 +88,9 @@ |
89 | 89 | $result .= "X-WR-CALDESC:" . $this->m_description . "\r\n"; |
90 | 90 | } |
91 | 91 | |
92 | | - //$result .= "BEGIN:VTIMEZONE\r\n"; |
| 92 | + // TODO: http://www.kanzaki.com/docs/ical/vtimezone.html |
| 93 | + // $result .= "BEGIN:VTIMEZONE\r\n"; |
| 94 | + // $result .= "TZID:\r\n"; |
93 | 95 | |
94 | 96 | $row = $res->getNext(); |
95 | 97 | while ( $row !== false ) { |
— | — | @@ -96,7 +98,7 @@ |
97 | 99 | $row = $res->getNext(); |
98 | 100 | } |
99 | 101 | |
100 | | - //$result .= "END:VTIMEZONE\r\n"; |
| 102 | + // $result .= "END:VTIMEZONE\r\n"; |
101 | 103 | |
102 | 104 | $result .= "END:VCALENDAR\r\n"; |
103 | 105 | |