forked from iCalcreator/iCalcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathusing.html
More file actions
executable file
·5810 lines (5605 loc) · 292 KB
/
using.html
File metadata and controls
executable file
·5810 lines (5605 loc) · 292 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
"http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>iCalcreator 2.10.23 manual</title>
<meta name="author" content="Kjell-Inge Gustafsson - kigkonsult">
<meta name="copyright" content="2007-2011 Kjell-Inge Gustafsson - kigkonsult">
<meta name="keywords" content="ical, calendar, calender, xcal, xml, icalender, rfc2445, vcalender, php, create">
<meta name="description" content="using iCalcreator v2.10.23">
<style type="text/css">
* {
BACKGROUND-COLOR: white;
COLOR : black;
}
a {
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : small;
}
a.ref {
xbackground-color: transparent;
background-color: inherit;
FONT-FAMILY : monospace, arial;
FONT-SIZE : small;
FONT-STYLE : normal;
TEXT-DECORATION : none;
}
body {
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : small;
MARGIN-LEFT : 10px;
WIDTH : 600px;
}
h1 {
BACKGROUND-COLOR: silver;
BORDER : thin solid black;
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : x-large;
FONT-WEIGHT : bold;
DISPLAY : block;
}
h2 {
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : large;
}
h3 {
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : medium;
}
h4 {
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : small;
FONT-WEIGHT : bold;
}
h5 {
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : small;
FONT-WEIGHT : normal;
TEXT-DECORATION : underline;
}
p {
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : small;
}
.bb {
BORDER-BOTTOM : gray dotted thin;
}
.blb {
BORDER-LEFT : gray dotted thin;
BORDER-BOTTOM : gray dotted thin;
TEXT-ALIGN : center;
}
.bl {
BORDER-LEFT : gray dotted thin;
}
.center {
TEXT-ALIGN : center;
}
p.comment {
background-color: transparent;
FONT-FAMILY : monospace;
FONT-SIZE : medium;
FONT-STYLE : italic;
FONT-WEIGHT : 300;
WHITE-SPACE : pre;
}
span.comment {
background-color: transparent;
FONT-FAMILY : monospace;
FONT-SIZE : medium;
}
.example {
background-color: #DCDCDC;
FONT-FAMILY : Courier, "Courier New";
FONT-SIZE : small;
FONT-WEIGHT : 500;
LINE-HEIGHT : 1.2em;
WHITE-SPACE : pre;
}
.format {
BORDER : gray dotted thin;
FONT-FAMILY : Courier, "Courier New";
FONT-SIZE : small;
FONT-WEIGHT : 500;
LINE-HEIGHT : 1.5em;
WHITE-SPACE : pre;
}
.header {
BACKGROUND-COLOR: silver;
BORDER : thin solid black;
FONT-FAMILY : "Lucida Grande","Lucida Sans Unicode", "Bitstream Vera Sans", Lucida, Arial, Geneva, Helvetica, sans-serif;
FONT-SIZE : xx-large;
WIDTH : 600px;
}
.label {
FONT-FAMILY : arial;
FONT-SIZE : small;
FONT-WEIGHT : bold;
LETTER-SPACING : 0.1em;
}
.quotes {
background-color: transparent;
FONT-FAMILY : arial;
FONT-SIZE : small;
xFONT-STYLE : italic;
FONT-WEIGHT : 300;
LETTER-SPACING : 0.2em;
WHITE-SPACE : pre;
}
.ref {
BACKGROUND-COLOR: transparent;
FONT-FAMILY : monospace, arial;
FONT-SIZE : x-small;
xFONT-STYLE : italic;
xFONT-WEIGHT : 600;
VERTICAL-ALIGN : top;
LETTER-SPACING : 0.2em;
}
.top {
VERTICAL-ALIGN : top;
}
</style>
</head>
<body>
<a name="top"></a>
<p class="header">iCalcreator 2.10.23</p>
iCalcreator class v2.10.23<br>
copyright (c) 2007-2011 Kjell-Inge Gustafsson, kigkonsult<br>
<a href="http://kigkonsult.se/iCalcreator/index.php" title="kigkonsult.se/iCalcreator" target="_blank">kigkonsult.se/iCalcreator</a><br>
ical@kigkonsult.se<br>
<h2>Description:</h2>
iCalcreator is a <i>PHP</i> implementation of RFC2445/RFC2446 to manage iCal/xCal formatted files.
<br>
<a name="INTRO"></a><h1>1. INTRO</h1>
<p>
iCalcreator is a <i>PHP</i> class managing iCal formatted files for non-<i>calendar</i>
systems like CMS, project management systems and other applications able
to process <i>calendar</i> information like agendas, tasks, reports, todos,
journalling data and for communication with <i>calendar</i> systems and applications.
</p>
<p>
iCalcreator features create, parse, edit and select <i>calendar</i> and <i>calendar</i> components.
</p>
<p>
iCalcreator is built of a class file with support of a function class file and are <i>calendar</i>
component property oriented. Development environment is <i>PHP</i> version 5.x but coding is done
to meet 4.x backward compatibility and may work. Some functions requires <i>PHP</i> >= 5.2.0.
</p>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="iCal"></a><h2>1.1 Ical</h2>
The iCalendar format, as described in
<dl>
<dt><a href="http://kigkonsult.se/downloads/dl.php?f=rfc5545" title="Download RFC5545 in text format" target="_blank">rfc5545</a>
<dd>"Internet Calendaring and Scheduling Core Object Specification (iCalendar)"
<dt><a href="http://kigkonsult.se/downloads/dl.php?f=rfc5546" title="Download RFC5546 in text format" target="_blank">rfc5546</a>
<dd>"iCalendar Transport-Independent Interoperability Protocol (iTIP)"<br>Scheduling Events, BusyTime, To-dos and Journal Entries
</dl>
<p class="quotes">. ..allows for the capture and exchange of information<br>normally stored within a calendaring and scheduling application.</p>
and
<p class="quotes">. ..is an exchange format between applications or systems.</p>
<p><a href="http://kigkonsult.se/downloads/dl.php?f=rfc5545" title="Download RFC5545 in text format" target="_blank">rfc5545</a> and
<a href="http://kigkonsult.se/downloads/dl.php?f=rfc5546" title="Download RFC5546 in text format" target="_blank">rfc5546</a>
obsoletes, respectively,
<a href="http://kigkonsult.se/downloads/dl.php?f=rfc2445" title="Download RFC2445 in text format" target="_blank">rfc2445</a> and
<a href="http://kigkonsult.se/downloads/dl.php?f=rfc2446" title="Download RFC2446 in text format" target="_blank">rfc2446</a>.
</p>
<p>
A short iCal description is found at <a href="http://en.wikipedia.org/wiki/ICalendar#Core_object" title="iCalendar From Wikipedia, the free encyclopedia" target="_blank">Wikipedia</a>. If You are not familiar with iCal, read this first!
Knowledge of <i>calendar</i> protocol rfc5545/rfc5546 is to recommend.
</p>
<p>
Any references to rfc2445, below, corresponds to rfc5545.
</p>
<p>
All iCalcreator functions calls are made as simple as possible BUT (, !!!,) read these rfc's properly!
xCal (iCal xml) output format is supported but still experimental.
</p>
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="This_manual"></a><h2>1.2 This manual</h2>
This style is used for text.
<p class="format">This style is used for formats.</p>
<p class="example">This style is used for <i>PHP</i> coding examples.
<span class="comment"> // this style is used for coding comments.</span>
</p>
<p class="comment">This style is used for content details.</p>
<p class="quotes">This style is used for RFC2445 quotes.</p>
<p>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="Versioning"></a><h2>1.3 Versioning</h2>
The release numbering convention used is major.minor(.micro / suffix).
<dl>
<dt>Major
<dd>Indicates a very large change in the core package. Rewrites or major milestones.
<dt>Minor
<dd>Significant amount of feature addition/modification.<br>odd number - development/experimental release<br> even number - production release
<dt>Micro
<dd>Primarily bug fix and maintenance number.
<dt>Suffix
<dd>rc1 for first release candidate etc.
</dl>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="Support"></a><h2>1.4 Support</h2>
<p>
The main support channel is using iCalcreator
<a title="Sourceforge" href="http://sourceforge.net/projects/icalcreator/forums/" target="_blank">Sourceforge</a> forum.
</p>
<p>
Use the contact <a href="http://kigkonsult.se/contact/index.php" title="kigkonsult.se/contact" target="_blank">page</a>
for queries, improvement/development issues or professional support and development.
Please note that paid support or consulting service has the highest priority.
</p>
<p>
Our services are available for support and designing and developing iCalcreator etc. customizations,
adaptations and other <i>PHP</i>/MySQL solutions with a special focus on software utility and reliability,
supported through our iterative acquire/design/transition process modell.
</p>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="Donate"></a><h2>1.5 Donate</h2>
<p>
You can show your appreciation for our free software,
and can support future development by making a donation to the kigkonsult project iCalcreator.
</p>
<p>
Make a donation of any size by clicking <a href="http://kigkonsult.se/contact/index.php#Donate" title="Donate" target="_blank">here</a>.
Thanks in advance!
</p>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="INSTALL"></a><h2>1.6 Install</h2>
<a name="Basic"></a><h3>1.6.1 Basic</h3>
Unpack to any folder<br>
- add this folder to your include-path<br>
- or unpack to your application-(include)-folder<br>
Add
<p class="format">require_once "[folder/]iCalcreator.class.php";</p>
to your php-script.
<br>
<br>
If using php version 5.1 or higher, the default timezone need to be set/altered, now "Europe/Stockholm",
line 50 in the iCalcreator.class.php file.
<br>
<br>
When creating a new <i>calendar</i>/component instance, review <a href="#Calendar_configuration_functions">config</a> settings.
<br>
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="Boost"></a><h3>1.6.2 Boost performance</h3>
To really boost performance, kigkonsult can now offer <i>PHP</i> (4 and 5) packages (iCalcreator etc) in byte coded files,
using <a href="http://www.ioncube.com" target="_blank"><u>ionCube</u></a> encoder.
<br>
<br>
Encoded files use a platform independent file format, and can be run on any platform for which ionCube supply a (free) Loader.
Currently supported platforms are Windows (e.g. NT, XP, W2K), Intel Linux, FreeBSD, NetBSD, OpenBSD, OS X, and Sparc Solaris.
<br>
<br>
Visit kigkonsult.se contact <a href="http://kigkonsult.se/contact/index.php" target="_blank"><u>page</u></a> for information and purchase.
<br>
<br>
Use basic install (above), install ionCube Loader (requires an update of "php.ini" or additional file in "/etc/php.d" folder AND the execute rights to use the <i>PHP</i> "dl" function) and simply replace the <i>PHP</i> class files with the encoded files.
<br>
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="Additional_Descriptors"></a><h2>1.7 Additional Descriptors</h2>
The following properties (as described in <a href="http://en.wikipedia.org/wiki/ICalendar#Calendar_extensions" title="http://en.wikipedia.org/wiki/ICalendar#Calendar_extensions" target="_blank">wikipedia:iCal</a>) may be required when importing iCal files into some calendaring software (MS etc.):
<dl>
<dt>on <i>calendar</i> level
<dd><a href="#METHOD">METHOD</a> property (value PUBLISH etc.)
<dd><a href="#X-PROPERTY">X-WR-CALNAME</a> x-property
<dd><a href="#X-PROPERTY">X-WR-CALDESC</a> x-property
<dd><a href="#X-PROPERTY">X-WR-RELCALID</a> x-property <span class="comment">(a <a href="/wiki/Universally_Unique_Identifier" title="Universally Unique Identifier" class="mw-redirect">UUID</a>.)</span>
<dd><a href="#X-PROPERTY">X-WR-TIMEZONE</a> x-property
<dt>on component level
<dd><a href="#DTSTAMP">DTSTAMP</a> property (in iCalcreator created automatically, if not set)
<dd><a href="#UID">UID</a> property (in iCalcreator created automatically, if not set)
<dt>on component level in <a href="#VTIMEZONE">vtimezone</a> component
<dd><a href="#X-PROPERTY">X-LIC-LOCATION</a> x-property
</dl>
Recommendation is also to set <a href="#Unique_id">unique_id</a> when creating a new vcalendar/component instance, to ensure accurate setting of all components <a href="#UID">UID</a> property, even before <a href="#parse_merge">parse</a>.
<p class="label">Example</p>
<p class="example">$config = array( "unique_id" => "kigkonsult.se" );
$vcalendar = new vcalendar( $config );
$vcalendar->setProperty( "method", "PUBLISH" )
$vcalendar->setProperty( "x-wr-calname", "Calendar Sample" );
$vcalendar->setProperty( "X-WR-CALDESC", "Calendar Description" );
$uuid = "3E26604A-50F4-4449-8B3E-E4F4932D05B5";
$vcalendar->setProperty( "X-WR-RELCALID", $uuid );
$vcalendar->setProperty( "X-WR-TIMEZONE", "Europe/Stockholm" );
.. .
</p>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="Addendum"></a><h2>1.8 Addendum</h2>
<p>
Download iCalcreator <a title="download iCalcreator coding samples" href="http://kigkonsult.se/downloads/index.php#iCalcreator" target="_blank">coding samples</a>.
</p>
<dl>
<dt>Examples how to employ iCalcreator in software development
<dd><a title="tinycal" href="http://kigkonsult.se/tinycal/index.php" target="_blank">tinycal</a>, <i>calendar</i>-in-a-box.
<dd><a title="Create iCal event file on-demand from form" href="http://kigkonsult.se/eventCreator/index.php" target="_blank">The iCal file event editor</a>
</dl>
<p>
If you are downloading the iCalcreatorusing sub-package, there are free iCal/xCal icons in the images directory, to use as buttons on a web page.
</p>
The <i>PHP</i> coding in this document or "coding samples" (above) are only for display of usage, recommendation is to use a
coding standard, the following, incomplete, list is a good start;
<dl>
<dd><a href="http://www.dagbladet.no/development/phpcodingstandard/" target="_blank">http://www.dagbladet.no/development/phpcodingstandard/</a>
<!--
<br>
<a href="http://ez.no/ezpublish/documentation/development/standards/php" target="_blank">http://ez.no/ezpublish/documentation/development/standards/php</a>
-->
<dd><a href="http://framework.zend.com/manual/en/coding-standard.overview.html" target="_blank">http://framework.zend.com/manual/en/coding-standard.overview.html</a>
<!--
<br>
<a href="http://gforge.org/docman/view.php/1/2/coding-standards.html" target="_blank">http://gforge.org/docman/view.php/1/2/coding-standards.html</a>
-->
<dd><a href="http://pear.php.net/manual/en/standards.php" target="_blank">http://pear.php.net/manual/en/standards.php</a>
</dl>
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="INDEX"></a><h2>1.9 INDEX</h2>
<a href="#INTRO">1. INTRO</a><br>
<br>
<a href="#iCal">1.1 Ical</a><br>
<a href="#This_manual">1.2 This manual</a><br>
<a href="#Versioning">1.3 Versioning</a><br>
<a href="#Support">1.4 Support</a><br>
<a href="#Donate">1.5 Donate</a><br>
<a href="#INSTALL">1.6 Install</a><br>
<a href="#Basic">1.6.1 Basic</a><br>
<a href="#Boost">1.6.2 Boost performance</a><br>
<a href="#Additional_Descriptors">1.7 Additional_Descriptors</a><br>
<a href="#Addendum">1.8 Addendum</a><br>
<a href="#INDEX">1.9 INDEX</a><br>
<br>
<a href="#Calendar_Component_list">2. Calendar Component list</a><br>
<br>
<a href="#VCALENDAR">2.1 VCALENDAR</a><br>
<a href="#VEVENT">2.2 VEVENT</a><br>
<a href="#VTODO">2.3 VTODO</a><br>
<a href="#VJOURNAL">2.4 VJOURNAL</a><br>
<a href="#VFREEBUSY">2.5 VFREEBUSY</a><br>
<a href="#VALARM">2.6 VALARM</a><br>
<a href="#VTIMEZONE">2.7 VTIMEZONE</a><br>
<a href="#CalProps">2.10 Component Properties</a><br>
<br>
<a href="#Function_list">3. Function list</a><br>
<br>
<a href="#Calendar_object_functions">3.1 Calendar object functions</a><br>
<br>
<a href="#Calendar_object_constructors">3.1.1 Constructors</a><br>
<a href="#vcalendar">3.1.1.1 vcalendar</a><br>
<a href="#vevent">3.1.1.2 vevent</a><br>
<a href="#vtodo">3.1.1.3 vtodo</a><br>
<a href="#vjournal">3.1.1.4 vjournal</a><br>
<a href="#vfreebusy">3.1.1.5 vfreebusy</a><br>
<a href="#valarm">3.1.1.6 valarm</a><br>
<a href="#vtimezone">3.1.1.7 vtimezone</a><br>
<a href="#standard">3.1.1.8 standard</a><br>
<a href="#daylight">3.1.1.9 daylight</a><br>
<br>
<a href="#Calendar_property_functions">3.1.2 Calendar property functions</a><br>
<a href="#deleteProperty">3.1.2.1 deleteProperty</a><br>
<a href="#getProperty">3.1.2.2 getProperty</a><br>
<a href="#setProperty">3.1.2.3 setProperty</a><br>
<a href="#CALSCALE">3.1.2.4 CALSCALE</a><br>
<a href="#METHOD">3.1.2.5 METHOD</a><br>
<a href="#VERSION">3.1.2.6 VERSION</a><br>
<a href="#X-PROPERTY">3.1.2.7 X-PROPERTY</a><br>
<br>
<a href="#Calendar_component_functions">3.1.3 Calendar component functions</a><br>
<a href="#deleteComponent">3.1.3.1 deleteComponent</a><br>
<a href="#getComponent">3.1.3.2 getComponent</a><br>
<a href="#newComponent">3.1.3.3 newComponent</a><br>
<a href="#selectComponents">3.1.3.4 selectComponents</a><br>
<a href="#setComponent">3.1.3.5 setComponent</a><br>
<br>
<a href="#Calendar_inputoutput_functions">3.1.4 Calendar input/output functions</a><br>
<a href="#parse_merge">3.1.4.1 parse and merge</a><br>
<a href="#createCalendar">3.1.4.2 createCalendar</a><br>
<a href="#returnCalendar">3.1.4.3 returnCalendar</a><br>
<a href="#saveCalendar">3.1.4.4 saveCalendar</a><br>
<a href="#sort">3.1.4.5 sort</a><br>
<a href="#useCachedCalendar">3.1.4.6 useCachedCalendar</a><br>
<br>
<a href="#Calendar_configuration_functions">3.1.5 Calendar configuration functions</a><br>
<a href="#configKeys">3.1.5.1 configuration keys</a><br>
<a href="#getConfig">3.1.5.2 getConfig</a><br>
<a href="#initConfig">3.1.5.3 <i>calendar</i>/component initialization</a><br>
<a href="#setConfig">3.1.5.4 setConfig</a><br>
<a href="#allowEmpty">3.1.5.5 Allow empty components</a><br>
<a href="#Compsinfo">3.1.5.6 Component information</a><br>
<a href="#Delimiter">3.1.5.7 Delimiter</a><br>
<a href="#Directory">3.1.5.8 Directory</a><br>
<a href="#Fileinfo">3.1.5.9 Fileinfo</a><br>
<a href="#Filename">3.1.5.10 Filename</a><br>
<a href="#Filesize">3.1.5.11 Filesize</a><br>
<a href="#Format">3.1.5.12 Format</a><br>
<a href="#Language">3.1.5.13 Language</a><br>
<a href="#NewlineChar">3.1.5.14 NewlineChar</a><br>
<a href="#dTZID">3.1.5.15 TZID</a><br>
<a href="#Unique_id">3.1.5.16 Unique_id</a><br>
<a href="#configURL">3.1.5.17 URL</a><br>
<br>
<a href="#Calendar_component_object_property_function_list">3.2 Calendar component/object property function list</a><br>
<br>
<a href="#deleteProperty_PROP">3.2.1 deleteProperty</a><br>
<a href="#getProperty_PROP">3.2.2 getProperty</a><br>
<a href="#parse">3.2.3 parse</a><br>
<a href="#setProperty_PROP">3.2.4 setProperty</a><br>
<br>
<a href="#ACTION">3.2.5 ACTION</a><br>
<a href="#ATTACH">3.2.6 ATTACH</a><br>
<a href="#ATTENDEE">3.2.7 ATTENDEE</a><br>
<a href="#CATEGORIES">3.2.8 CATEGORIES</a><br>
<a href="#CLASS">3.2.9 CLASS</a><br>
<a href="#COMMENT">3.2.10 COMMENT</a><br>
<a href="#COMPLETED">3.2.11 COMPLETED</a><br>
<a href="#CONTACT">3.2.12 CONTACT</a><br>
<a href="#CREATED">3.2.13 CREATED</a><br>
<a href="#DESCRIPTION">3.2.14 DESCRIPTION</a><br>
<a href="#DTEND">3.2.15 DTEND</a><br>
<a href="#DTSTAMP">3.2.16 DTSTAMP</a><br>
<a href="#DTSTART">3.2.17 DTSTART</a><br>
<a href="#DUE">3.2.18 DUE</a><br>
<a href="#DURATION">3.2.19 DURATION</a><br>
<a href="#EXDATE">3.2.20 EXDATE</a><br>
<a href="#EXRULE">3.2.21 EXRULE</a><br>
<a href="#FREEBUSY_PROP">3.2.22 FREEBUSY</a><br>
<a href="#GEO">3.2.23 GEO</a><br>
<a href="#LAST-MODIFIED">3.2.24 LAST-MODIFIED</a><br>
<a href="#LOCATION">3.2.25 LOCATION</a><br>
<a href="#ORGANIZER">3.2.26 ORGANIZER</a><br>
<a href="#PERCENT-COMPLETE">3.2.27 PERCENT-COMPLETE</a><br>
<a href="#PRIORITY">3.2.28 PRIORITY</a><br>
<a href="#RDATE">3.2.29 RDATE</a><br>
<a href="#RECURRENCE-ID">3.2.30 RECURRENCE-ID</a><br>
<a href="#RELATED-TO">3.2.31 RELATED-TO</a><br>
<a href="#REPEAT">3.2.32 REPEAT</a><br>
<a href="#REQUEST-STATUS">3.2.33 REQUEST-STATUS</a><br>
<a href="#RESOURCES">3.2.34 RESOURCES</a><br>
<a href="#RRULE">3.2.35 RRULE</a><br>
<a href="#SEQUENCE">3.2.36 SEQUENCE</a><br>
<a href="#STATUS">3.2.37 STATUS</a><br>
<a href="#SUMMARY">3.2.38 SUMMARY</a><br>
<a href="#TRANSP">3.2.39 TRANSP</a><br>
<a href="#TRIGGER">3.2.40 TRIGGER</a><br>
<a href="#TZID">3.2.41 TZID</a><br>
<a href="#TZNAME">3.2.42 TZNAME</a><br>
<a href="#TZOFFSETFROM">3.2.43 TZOFFSETFROM</a><br>
<a href="#TZOFFSETTO">3.2.44 TZOFFSETTO</a><br>
<a href="#TZURL">3.2.45 TZURL</a><br>
<a href="#UID">3.2.46 UID</a><br>
<a href="#URL">3.2.47 URL</a><br>
<a href="#X-PROPERTY_PROP">3.2.48 X-PROPERTY</a><br>
<br>
<a href="#Calendar_component_configuration_functions">3.3 Calendar Component configuration functions</a><br>
<br>
<a href="#Language_PROP">3.3.1 Language</a><br>
<br>
<a href="#Calendar_component_object_misc_functions">3.4 Calendar component object misc. functions</a><br>
<br>
<a href="#deleteComponent_PROP">3.4.1 deleteComponent</a><br>
<a href="#getComponent_PROP">3.4.2 getComponent</a><br>
<a href="#newComponent_PROP">3.4.3 newComponent</a><br>
<a href="#setComponent_PROP">3.4.4 setComponent</a><br>
<br>
<a href="#iCalUtilityFunctions">4. iCalUtilityFunctions</a><br>
<br>
<a href="#createTimezone">4.1 createTimezone</a><br>
<a href="#transformDateTime">4.2 transformDateTime</a><br>
<br>
<a href="#Copyright_and_Licence">5. COPYRIGHT AND LICENSE</a><br>
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a>
<a name="Calendar_Component_list"></a><h1>2. Calendar Component list</h1>
Quote from <a href="http://kigkonsult.se/downloads/dl.php?f=rfc2445" title="RFC2445" target="_blank">RFC2445</a> - Internet Calendaring and Scheduling Core Object Specification (iCalendar)!
(Described in iCal output format, content corresponds to xCal format.)<br>
<a name="VCALENDAR"></a><h2>2.1 VCALENDAR</h2>
<p class="center">icalobject = 1*("BEGIN" ":" "VCALENDAR" CRLF</p>
<p class="center">icalbody</p>
<p class="center">"END" ":" "VCALENDAR" CRLF)</p>
<br>
icalbody = calprops component
<br>
calprops = 2*(
<br>
<p class="center">"prodid" and "version" are both REQUIRED, but MUST NOT occur more than once
<p class="center">prodid / <a href="#VERSION">version</a> /</p>
<p class="center">"calscale"and "method"are optional, but MUST NOT occur more than once</p>
<p class="center"><a href="#CALSCALE">calscale</a> / <a href="#METHOD">method</a> /</p>
<p class="center"><a href="#X-PROPERTY">x-prop</a></p>
)
<br>
<p class="center">component = 1*(<a href="#VEVENT">eventc</a> / <a href="#VTODO">todoc</a> / <a href="#VJOURNAL">journalc</a> / <a href="#VFREEBUSY">freebusyc</a> / <a href="#VTIMEZONE">timezonec</a> / iana-comp* / x-comp*)</p>
<p class="center">iana-comp = "BEGIN" ":" iana-token CRLF</p>
<p class="center">1*contentline</p>
<p class="center">"END" ":" iana-token CRLF</p>
<p class="center">x-comp = "BEGIN" ":" x-name CRLF</p>
<p class="center">1*contentline</p>
<p class="center">"END" ":" x-name CRLF</p>
*) <span class="comment">not supported by iCalcreator</span>
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a> <a href="#Calendar_Component_list">[up]</a>
<a name="VEVENT"></a><h2>2.2 VEVENT</h2>
<p class="center">"BEGIN" ":" "VEVENT" CRLF</p>
<p class="center">eventprop *alarmc</p>
<p class="center">"END" ":" "VEVENT" CRLF</p>
eventprop = *(
<p class="center">the following are optional,but MUST NOT occur more than once</p>
<p class="center"><a href="#CLASS">class</a> / <a href="#CREATED">created</a> / <a href="#DESCRIPTION">description</a> / <a href="#DTSTART">dtstart</a> /</p>
<p class="center"><a href="#GEO">geo</a> / <a href="#LAST-MODIFIED">last-mod</a> / <a href="#LOCATION">location</a> / <a href="#ORGANIZER">organizer</a> / <a href="#PRIORITY">priority</a> / </p>
<p class="center"><a href="#DTSTAMP">dtstamp</a> / <a href="#SEQUENCE">seq</a> / <a href="#STATUS">status</a> / <a href="#SUMMARY">summary</a> / </p>
<p class="center"><a href="#TRANSP">transp</a> / <a href="#UID">uid</a> / <a href="#URL">url</a> / <a href="#RECURRENCE-ID">recurid</a> /</p>
<p class="center">either "<a href="#DTEND">dtend</a>" or "<a href="#DURATION">duration</a>" may appear in a "eventprop", </p>
<p class="center">but "<a href="#DTEND">dtend</a>" and "<a href="#DURATION">duration</a>" MUST NOT occur in the same "eventprop"</p>
<p class="center"><a href="#DTEND">dtend</a> / <a href="#DURATION">duration</a> /</p>
<p class="center">the following are optional, and MAY occur more than once</p>
<p class="center"><a href="#ATTACH">attach</a> / <a href="#ATTENDEE">attendee</a> / <a href="#CATEGORIES">categories</a> / <a href="#COMMENT">comment</a> / </p>
<p class="center"><a href="#CONTACT">contact</a> / <a href="#EXDATE">exdate</a> / <a href="#EXRULE">exrule</a> / <a href="#REQUEST-STATUS">rstatus</a> / </p>
<p class="center"><a href="#RELATED-TO">related</a> / <a href="#RESOURCES">resources</a> / <a href="#RDATE">rdate</a> / <a href="#RRULE">rrule</a> / <a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a> <a href="#Calendar_Component_list">[up]</a>
<a name="VTODO"></a><h2>2.3 VTODO</h2>
<p class="center">"BEGIN" ":" "VTODO" CRLF</p>
<p class="center">todoprop *alarmc</p>
<p class="center">"END" ":" "VTODO" CRLF</p>
todoprop = *(
<p class="center">the following are optional, but MUST NOT occur more than once</p>
<p class="center"><a href="#CLASS">class</a> / <a href="#COMPLETED">completed</a> / <a href="#CREATED">created</a> / <a href="#DESCRIPTION">description</a> / <a href="#DTSTAMP">dtstamp</a> / <a href="#DTSTART">dtstart</a> / </p>
<p class="center"><a href="#GEO">geo</a> / <a href="#LAST-MODIFIED">last-mod</a> / <a href="#LOCATION">location</a> / <a href="#ORGANIZER">organizer</a> / <a href="#PERCENT-COMPLETE">percent</a> / <a href="#PRIORITY">priority</a> / </p>
<p class="center"><a href="#RECURRENCE-ID">recurid</a> / <a href="#SEQUENCE">seq</a> / <a href="#STATUS">status</a> / <a href="#SUMMARY">summary</a> /<a href="#UID">uid</a> / <a href="#URL">url</a> /</p>
<p class="center">either "<a href="#DUE">due</a>" or "<a href="#DURATION">duration</a>" may appear in a "todoprop",</p>
<p class="center"> but "<a href="#DUE">due</a>" and "<a href="#DURATION">duration</a>" MUST NOT occur in the same "todoprop"</p>
<p class="center"><a href="#DUE">due</a> / <a href="#DURATION">duration</a> /</p>
<p class="center">the following are optional,and MAY occur more than once</p>
<p class="center"><a href="#ATTACH">attach</a> / <a href="#ATTENDEE">attendee</a> / <a href="#CATEGORIES">categories</a> / <a href="#COMMENT">comment</a> / </p>
<p class="center"><a href="#CONTACT">contact</a> / <a href="#EXDATE">exdate</a> / <a href="#EXRULE">exrule</a> / <a href="#REQUEST-STATUS">rstatus</a> / </p>
<p class="center"><a href="#RELATED-TO">related</a> / <a href="#RESOURCES">resources</a> / <a href="#RDATE">rdate</a> / <a href="#RRULE">rrule</a> / <a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a> <a href="#Calendar_Component_list">[up]</a>
<a name="VJOURNAL"></a><h2>2.4 VJOURNAL</h2>
<p class="center">journalc = "BEGIN" ":" "VJOURNAL" CRLF</p>
<p class="center">jourprop</p>
<p class="center">"END" ":" "VJOURNAL" CRLF</p>
jourprop = *(
<p class="center">the following are optional, but MUST NOT occur more than once</p>
<p class="center"><a href="#CLASS">class</a> / <a href="#CREATED">created</a> / <a href="#DESCRIPTION">description</a> / <a href="#DTSTART">dtstart</a> / </p>
<p class="center"><a href="#DTSTAMP">dtstamp</a> / <a href="#LAST-MODIFIED">last-mod</a> / <a href="#ORGANIZER">organizer</a> / <a href="#RECURRENCE-ID">recurid</a> / </p>
<p class="center"><a href="#SEQUENCE">seq</a> / <a href="#STATUS">status</a> / <a href="#SUMMARY">summary</a> /<a href="#UID">uid</a> / <a href="#URL">url</a> /</p>
<p class="center">the following are optional,and MAY occur more than once</p>
<p class="center"><a href="#ATTACH">attach</a> / <a href="#ATTENDEE">attendee</a> / <a href="#CATEGORIES">categories</a> / <a href="#COMMENT">comment</a> /</p>
<p class="center"><a href="#CONTACT">contact</a> / <a href="#EXDATE">exdate</a> / <a href="#EXRULE">exrule</a> / <a href="#RELATED-TO">related</a> / </p>
<p class="center"><a href="#RDATE">rdate</a> / <a href="#RRULE">rrule</a> / <a href="#REQUEST-STATUS">rstatus</a> / <a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a> <a href="#Calendar_Component_list">[up]</a>
<a name="VFREEBUSY"></a><h2>2.5 VFREEBUSY</h2>
<p class="center">"BEGIN" ":" "VFREEBUSY" CRLF</p>
<p class="center">fbprop</p>
<p class="center">"END" ":" "VFREEBUSY" CRLF</p>
fbprop = *(
<p class="center">the following are optional, but MUST NOT occur more than once</p>
<p class="center"><a href="#CONTACT">contact</a> / <a href="#DTSTART">dtstart</a> / <a href="#DTEND">dtend</a> / <a href="#DURATION">duration</a> / </p>
<p class="center"><a href="#DTSTAMP">dtstamp</a> / <a href="#ORGANIZER">organizer</a> / <a href="#UID">uid</a> / <a href="#URL">url</a> / </p>
<p class="center">the following are optional,and MAY occur more than once</p>
<p class="center"><a href="#ATTENDEE">attendee</a> / <a href="#COMMENT">comment</a> / <a href="#FREEBUSY_PROP">freebusy</a> / <a href="#REQUEST-STATUS">rstatus</a> / <a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a> <a href="#Calendar_Component_list">[up]</a>
<a name="VALARM"></a><h2>2.6 VALARM</h2>
<p class="center">"BEGIN" ":" "VALARM" CRLF</p>
<p class="center">(audioprop / dispprop / emailprop / procprop)</p>
<p class="center">"END" ":" "VALARM" CRLF</p> audioprop = 2*(
<p class="center">"<a href="#ACTION">action</a>" and "<a href="#TRIGGER">trigger</a>" are both REQUIRED, but MUST NOT occur more than once</p>
<p class="center"><a href="#ACTION">action</a> / <a href="#TRIGGER">trigger</a> /</p>
<p class="center">"<a href="#DURATION">duration</a>" and "<a href="#REPEAT">repeat</a>" are both optional,and MUST NOT occur more than once each,</p>
<p class="center">but if one occurs, so MUST the other</p>
<p class="center"><a href="#DURATION">duration</a> / <a href="#REPEAT">repeat</a> /</p>
<p class="center">the following is optional, but MUST NOT occur more than once</p>
<p class="center"><a href="#ATTACH">attach</a> / </p>
<p class="center">the following is optional, and MAY occur more than once</p>
<p class="center"><a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
dispprop = 3*(
<p class="center">the following are all REQUIRED, but MUST NOT occur more than once</p>
<p class="center"><a href="#ACTION">action</a> / <a href="#DESCRIPTION">description</a> / <a href="#TRIGGER">trigger</a> /</p>
<p class="center">"<a href="#DURATION">duration</a>" and "<a href="#REPEAT">repeat</a>" are both optional,and MUST NOT occur more than once each,</p>
<p class="center">but if one occurs, so MUST the other</p>
<p class="center"><a href="#DURATION">duration</a> / <a href="#REPEAT">repeat</a> /</p>
<p class="center">the following is optional, and MAY occur more than once</p>
<p class="center"><a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
emailprop = 5*(
<p class="center">the following are all REQUIRED, but MUST NOT occur more than once</p>
<p class="center"><a href="#ACTION">action</a> / <a href="#DESCRIPTION">description</a> / <a href="#TRIGGER">trigger</a> / <a href="#SUMMARY">summary</a></p>
<p class="center">the following is REQUIRED, and MAY occur more than once</p>
<p class="center"><a href="#ATTENDEE">attendee</a> / </p>
<p class="center">"<a href="#DURATION">duration</a>" and "<a href="#REPEAT">repeat</a>" are both optional, and MUST NOT occur more than once each,</p>
<p class="center">but if one occurs, so MUST the other</p>
<p class="center"><a href="#DURATION">duration</a> / <a href="#REPEAT">repeat</a> /</p>
<p class="center">the following are optional, and MAY occur more than once</p>
<p class="center"><a href="#ATTACH">attach</a> / <a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
procprop = 3*(
<p class="center">the following are all REQUIRED, but MUST NOT occur more than once</p>
<p class="center"><a href="#ACTION">action</a> / <a href="#ATTACH">attach</a> / <a href="#TRIGGER">trigger</a> /</p>
<p class="center">"<a href="#DURATION">duration</a>" and "<a href="#REPEAT">repeat</a>" are both optional, and MUST NOT occur more than once each,</p>
<p class="center">but if one occurs, so MUST the other</p>
<p class="center"><a href="#DURATION">duration</a> /
<a href="#REPEAT">repeat</a> /</p>
<p class="center">"<a href="#DESCRIPTION">description</a>" is optional, and MUST NOT occur more than once</p>
<p class="center"><a href="#DESCRIPTION">description</a> / </p>
<p class="center">the following is optional, and MAY occur more than once</p>
<p class="center"><a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a> <a href="#Calendar_Component_list">[up]</a>
<a name="VTIMEZONE"></a><h2>2.7 VTIMEZONE</h2>
<p class="center">"BEGIN" ":" "VTIMEZONE" CRLF</p>
2*(
<p class="center">"<a href="#TZID">tzid</a>" is required, but MUST NOT occur more than once</p>
<p class="center"><a href="#TZID">tzid</a> / </p>
<p class="center">"<a href="#LAST-MODIFIED">last-mod</a>" and "<a href="#TZURL">tzurl</a>" are optional, but MUST NOT occur more than once</p>
<p class="center"><a href="#LAST-MODIFIED">last-mod</a> / <a href="#TZURL">tzurl</a> /</p>
<p class="center">one of "standardc" or "daylightc" MUST occur and each MAY occur more than once.</p>
<p class="center">standardc / daylightc /</p>
<p class="center">the following is optional, and MAY occur more than once</p>
<p class="center"><a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<p class="center">"END" ":" "VTIMEZONE" CRLF</p>
<p class="center">standardc = "BEGIN" ":" "STANDARD" CRLF</p>
<p class="center">tzprop</p>
<p class="center">"END" ":" "STANDARD" CRLF</p>
<p class="center">daylightc = "BEGIN" ":" "DAYLIGHT" CRLF</p>
<p class="center">tzprop</p>
<p class="center">"END" ":" "DAYLIGHT" CRLF</p>
<br>
tzprop = 3*(
<p class="center">the following are each REQUIRED, but MUST NOT occur more than once</p>
<p class="center"><a href="#DTSTART">dtstart</a> / <a href="#TZOFFSETTO">tzoffsetto</a> / <a href="#TZOFFSETFROM">tzoffsetfrom</a> /</p>
<p class="center">the following are optional, and MAY occur more than once</p>
<p class="center"><a href="#COMMENT">comment</a> /<a href="#RDATE">rdate</a> / <a href="#RRULE">rrule</a> / <a href="#TZNAME">tzname</a> / <a href="#X-PROPERTY_PROP">x-prop</a></p>
)
<br>
<a href="#INDEX">[index]</a> <a href="#top">[top]</a> <a href="#Calendar_Component_list">[up]</a>
<a name="CalProps"></a><h2>2.8 Component Properties</h2>
A comprehensive table showing relation between <i>calendar</i> components and properties.
<a href="#VTIMEZONE">vtimezone</a> properties are not included.
<br><br>
<table>
<tr>
<td>0-1</td>
<td colspan="8">OPTIONAL property, MUST NOT occur more than once.</td>
</tr>
<tr>
<td>0-m</td>
<td colspan="8">OPTIONAL property, MAY occur more than once.</td>
</tr>
<tr>
<td>0 / 1=1</td>
<td colspan="8">A pair of OPTIONAL properties, MUST NOT occur more than once each.<br>If one occurs, so MUST the other</td>
</tr>
<tr>
<td>0*1</td>
<td colspan="8">A pair of OPTIONAL properties, MUST NOT occur more than once each.<br>If one occurs, so MUST NOT the other</td>
</tr>
<tr>
<td>1-m</td>
<td colspan="8">REQUIRED property, MAY occur more than once.</td>
</tr>
<tr>
<td>1</td>
<td colspan="8">REQUIRED property, MUST NOT occur more than once.</td>
</tr>
<tr>
<td colspan="9"> </td>
</tr>
<tr>
<td> </td>
<td class="bl bb center top" rowspan="2"><a class="ref" href="#VEVENT">v<br>e<br>v<br>e<br>n<br>t</a></td>
<td class="bl bb center top" rowspan="2"><a class="ref" href="#VTODO">v<br>t<br>o<br>d<br>o</a></td>
<td class="bl bb center top" rowspan="2"><a class="ref" href="#VJOURNAL">v<br>j<br>o<br>u<br>r<br>n<br>a<br>l</a></td>
<td class="bl bb center top" rowspan="2"><a class="ref" href="#VFREEBUSY">v<br>f<br>r<br>e<br>e<br>b<br>u<br>s<br>y</a></td>
<td class="bl top center" colspan="4"><a class="ref" href="#VALARM">v a l a r m</a></td>
</tr>
<tr>
<td class="bb"> </td>
<td class="bl bb center ref"><br><br><br><br>a<br>u<br>d<br>i<br>o</td>
<td class="bl bb center ref"><br><br>d<br>i<br>s<br>p<br>l<br>a<br>y</td>
<td class="bl bb center ref"><br><br><br><br>e<br>m<br>a<br>i<br>l</td>
<td class="bl bb center ref">p<br>r<br>o<br>c<br>e<br>d<br>u<br>r<br>e</td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#ACTION">action</a></td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb">1</td>
<td class="blb">1</td>
<td class="blb">1</td>
<td class="blb">1</td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#ATTACH">attach</a></td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb"></td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb">0-m</td>
<td class="blb">1</td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#ATTENDEE">attendee</a></td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb">1-m</td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#CATEGORIES">categories</a></td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#CLASS">class</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#COMMENT">comment</a></td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#COMPLETED">completed</a></td>
<td class="blb"> </td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#CONTACT">contact</a></td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#CREATED">created</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#DESCRIPTION">description</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-m</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb">1</td>
<td class="blb">1</td>
<td class="blb">0-1</td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#DTEND">dtend</a></td>
<td class="blb">0*1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#DTSTAMP">dtstamp</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#DTSTART">dtstart</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#DUE">due</a></td>
<td class="blb"> </td>
<td class="blb">0*1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#DURATION">duration</a></td>
<td class="blb">0*1</td>
<td class="blb">0*1</td>
<td class="blb"> </td>
<td class="blb">0-1</td>
<td class="blb">0 / 1=1</td>
<td class="blb">0 / 1=1</td>
<td class="blb">0 / 1=1</td>
<td class="blb">0 / 1=1</td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#EXDATE">exdate</a></td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#EXRULE">exrule</a></td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb">0-m</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#FREEBUSY_PROP">freebusy</a></td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb">0-m</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#GEO">geo</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#LAST-MODIFIED">last-mod</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"></td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#LOCATION">location</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#ORGANIZER">organizer</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#PERCENT-COMPLETE">percent</a></td>
<td class="blb"> </td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>
</tr>
<tr>
<td class="bb"><a class="ref" href="#PRIORITY">priority</a></td>
<td class="blb">0-1</td>
<td class="blb">0-1</td>
<td class="blb"> </td>
<td class="blb"> </td>
<td class="blb"> </td>