@@ -37,10 +37,14 @@ multiple different feed formats.
37
37
38
38
### Optional
39
39
40
- * PHP's JSON module is required for JSON input and output
41
- * PHP's XML DOM module is required for XML and XHTML output
42
- * PHP must be configured to allow remote requests in order to use remote file input
43
- * PHP's OpenSSL module is required for remote requests over HTTPS
40
+ * PHP's [ JSON] [ json ext ] and [ Multibyte String] [ mbstring ext ] extensions are
41
+ required for JSON input and output
42
+ * PHP's [ XML DOM] [ dom ext ] and [ libXML] [ libxml ext ] extensions are required for
43
+ XML and XHTML output
44
+ * PHP must be configured to [ allow remote requests] [ urlfopen ] in order to use
45
+ remote file input
46
+ * PHP's [ OpenSSL] [ openssl ext ] extension is required for remote requests over
47
+ HTTPS
44
48
45
49
46
50
3 User Guide
@@ -113,10 +117,13 @@ on a different server. This is useful if you wish to use another calendar feed
113
117
as the input, such as a public Google calendar (see
114
118
[ Google Calendar Input] ( #327-google-calendar-input ) for more on this). Note
115
119
that your URL should begin with the ` http:// ` or ` https:// ` protocol and
116
- __ not__ ` webcal:// ` . In order to connect to a remote URL, the ` allow_url_fopen `
117
- option must be enabled for your server's PHP installation. In addition,
118
- connecting to a secure ` https:// ` URL requires the OpenSSL extension to be
119
- enabled for your installation.
120
+ __ not__ ` webcal:// ` . In order to connect to a remote URL, the
121
+ [ ` allow_url_fopen ` ] [ urlfopen ] option must be enabled for your server's PHP
122
+ installation. In addition, connecting to a secure ` https:// ` URL requires the
123
+ [ OpenSSL] [ openssl ext ] extension to be enabled for your installation.
124
+
125
+ [ urlfopen ] : https://www.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen
126
+ [ openssl ext ] : https://www.php.net/manual/en/book.openssl.php
120
127
121
128
To use a remote file, create the file ` calendar-config.php ` in the script
122
129
directory, if it doesn't already exist, and define the ` url ` property by
@@ -166,13 +173,15 @@ heading on the first row of the file:
166
173
* ` name ` __ (required)__ - the title of the event
167
174
* ` date ` __ (required)__ - either a one-off date in ` yyyy-mm-dd ` format, or the
168
175
spec for a recurring event as described in the
169
- [ Event Recurrence Specification] ( #3213-event-recurrence-specification ) section below.
176
+ [ Event Recurrence Specification] ( #3213-event-recurrence-specification ) section
177
+ below.
170
178
For example, ` 2014-02-28 ` or ` weekly on thu ` .
171
- * ` time ` _ (optional)_ - the time of day at which the event starts, in the following
172
- 24 hour time format: ` hh:mm ` . For example, ` 21:30 ` . Defaults to midnight.
173
- * ` duration ` _ (optional)_ - the length of time the event continues for, as a number
174
- of days, minutes and hours in the following format: ` [0d][0h][0m] ` . For example,
175
- ` 3h 30m ` . Defaults to 24 hours.
179
+ * ` time ` _ (optional)_ - the time of day at which the event starts, in the
180
+ following 24 hour time format: ` hh:mm ` . For example, ` 21:30 ` . Defaults to
181
+ midnight.
182
+ * ` duration ` _ (optional)_ - the length of time the event continues for, as a
183
+ number of days, minutes and hours in the following format: ` [0d][0h][0m] ` . For
184
+ example, ` 3h 30m ` . Defaults to 24 hours.
176
185
* ` description ` _ (optional)_ - a description of the event
177
186
* ` url ` _ (optional)_ - a link to more information about the event
178
187
@@ -205,8 +214,9 @@ return array(
205
214
#### 3.2.4 JSON Input
206
215
207
216
[ JSON] ( http://json.org ) is a simple data format using nested "objects" with
208
- named "properties". Note that to use JSON input, the JSON and Multibyte String
209
- extensions must be enabled for your server's PHP installation.
217
+ named "properties". Note that to use JSON input, the [ JSON] [ json ext ] and
218
+ [ Multibyte String] [ mbstring ext ] extensions must be enabled for your server's
219
+ PHP installation.
210
220
211
221
To supply the event information in JSON format, use the file extension ` .json `
212
222
- for example, ` calendar-master.json ` . Your JSON file should contain a root
@@ -228,11 +238,11 @@ following properties:
228
238
* ` date ` __ (required)__ - the date on which the event starts, as a string in
229
239
the following format: ` yyyy-mm-dd ` .
230
240
* ` time ` _ (optional)_ - the time of day at which the event starts, as a string
231
- in the following 24 hour time format: ` hh:mm ` . For example, ` 23:30 ` . Defaults to
232
- midnight.
241
+ in the following 24 hour time format: ` hh:mm ` . For example, ` 23:30 ` . Defaults
242
+ to midnight.
233
243
* ` duration ` _ (optional)_ - the length of time the event continues for, as a
234
- string containing a number of days, hours and minutes as follows: ` [0d][0h][0m] ` .
235
- For example, ` 3h 30m ` . Defaults to 24 hours.
244
+ string containing a number of days, hours and minutes as follows:
245
+ ` [0d][0h][0m] ` . For example, ` 3h 30m ` . Defaults to 24 hours.
236
246
* ` description ` _ (optional)_ - a description of the event, as a string
237
247
* ` url ` _ (optional)_ a link to more information about the event, as a string
238
248
@@ -242,19 +252,20 @@ the following properties:
242
252
* ` name ` __ (required)__ - the title of the event, as a string
243
253
* ` recurrence ` __ (required)__ - a string specifying how often the event occurs.
244
254
For details of the format of this property see the
245
- [ Event Recurrence Specification] ( #3213-event-recurrence-specification ) section below.
255
+ [ Event Recurrence Specification] ( #3213-event-recurrence-specification ) section
256
+ below.
246
257
* ` time ` _ (optional)_ - the time of day at which the event starts, as a string
247
- in the following 24 hour time format: ` hh:mm ` . For example, ` 23:30 ` . Defaults to
248
- midnight.
258
+ in the following 24 hour time format: ` hh:mm ` . For example, ` 23:30 ` . Defaults
259
+ to midnight.
249
260
* ` duration ` _ (optional)_ - the length of time the event continues for, as a
250
- string containing a number of days, hours and minutes as follows: ` [0d][0h][0m] ` .
251
- For example, ` 3h 30m ` . Defaults to 24 hours.
261
+ string containing a number of days, hours and minutes as follows:
262
+ ` [0d][0h][0m] ` . For example, ` 3h 30m ` . Defaults to 24 hours.
252
263
* ` description ` _ (optional)_ - a description of the event, as a string
253
264
* ` url ` _ (optional)_ a link to more information about the event as a string
254
265
255
266
Below is a complete example JSON file:
256
267
257
- ``````````````````````````````````````````````````````````````````````````````` json
268
+ ``````````````````````````````````````````````````````````````````````````` json
258
269
{
259
270
"name" : " Mark's Calendar" ,
260
271
"events" : [
@@ -279,7 +290,7 @@ Below is a complete example JSON file:
279
290
}
280
291
]
281
292
}
282
- ```````````````````````````````````````````````````````````````````````````````
293
+ ```````````````````````````````````````````````````````````````````````````
283
294
284
295
285
296
#### 3.2.5 ICalendar Input
@@ -386,12 +397,13 @@ return array(
386
397
387
398
The full list of customisable class properties is as follows:
388
399
389
- * ` cal-name-class ` - the calendar title. Defaults to the page ` <title> ` contents.
390
- * ` cal-description-class ` - the calendar description. Defaults to the page's ` <meta> `
391
- description contents.
400
+ * ` cal-name-class ` - the calendar title. Defaults to the page ` <title> `
401
+ contents.
402
+ * ` cal-description-class ` - the calendar description. Defaults to the page's
403
+ ` <meta> ` description contents.
392
404
* ` cal-url-class ` - the calendar's URL. Defaults to the URL of the page.
393
- * ` cal-event-class ` - the element surrounding each set of event properties. Defaults
394
- to ` vevent ` .
405
+ * ` cal-event-class ` - the element surrounding each set of event properties.
406
+ Defaults to ` vevent ` .
395
407
* ` ev-name-class ` - the event's name. Defaults to ` summary ` .
396
408
* ` ev-description-class ` - the event's description. Defaults to ` description ` .
397
409
* ` ev-url-class ` - the event's URL. Defaults to ` url ` .
@@ -438,10 +450,10 @@ The full list of customisable XPath properties is as follows:
438
450
description contents.
439
451
* ` cal-url-xpath ` - the calendar's URL. Expression is relative to the document
440
452
root. Defaults to the URL of the page.
441
- * ` ev-name-xpath ` - the event`s name. Expression is relative to the event element.
442
- Defaults to element with ` summary ` class.
443
- * ` ev-description-xpath ` - the event's description. Expression is relative to the
444
- event element. Defaults to element with ` description ` class.
453
+ * ` ev-name-xpath ` - the event`s name. Expression is relative to the event
454
+ element. Defaults to element with ` summary ` class.
455
+ * ` ev-description-xpath ` - the event's description. Expression is relative to
456
+ the event element. Defaults to element with ` description ` class.
445
457
* ` ev-url-xpath ` - the event's url. Expression is relative to the event element.
446
458
Defaults to element with ` url ` class.
447
459
* ` ev-start-xpath ` - the event's start date/time. Expression is relative to the
@@ -523,12 +535,14 @@ instructions are for Outlook 2010, but the process will be similar for your
523
535
version of Outlook.
524
536
525
537
1 . From the menu bar select "File" > "Open" > "Import"
526
- 2 . A wizard will appear. Choose "Export to a file" from the list and click "Next"
538
+ 2 . A wizard will appear. Choose "Export to a file" from the list and click
539
+ "Next"
527
540
3 . Select "Comma Separated Values (Windows)" and click "Next"
528
541
4 . Select "Calendar" and click "Next"
529
542
5 . Click "Browse" and choose where to save the export file. Click "Next"
530
543
6 . Click "Map Custom Fields"
531
- 7 . Drag the following fields from the left box into the right box to select them:
544
+ 7 . Drag the following fields from the left box into the right box to select
545
+ them:
532
546
* Subject
533
547
* Description
534
548
* Start Date
@@ -586,8 +600,8 @@ calendar as your input, do the following:
586
600
2 . Note your group's _ URL username_ . This is the name that appears in your
587
601
browser's address bar. For example: ` http://meetup.com/<your-name-here>/ `
588
602
3 . The URL for your event feed will then be:
589
- ` http://api.meetup.com/<your-name-here>/upcoming.ical ` where ` <your-name-here> `
590
- is your group's URL username.
603
+ ` http://api.meetup.com/<your-name-here>/upcoming.ical ` where
604
+ ` <your-name-here> ` is your group's URL username.
591
605
592
606
Next, delete the ` calendar-config.php ` file in the calendar script's directory,
593
607
if it already exists, and create a new one. Set the ` url ` property to your
@@ -703,9 +717,10 @@ Here are some examples:
703
717
* ` daily ` - every day
704
718
* ` weekly on thu ` - every Thursday
705
719
* ` yearly on 8th may ` - the 8th of May every year
706
- * ` yearly on 2nd to last wed of apr ` - the second-to-last Wednesday of April, each year
707
- * ` every 2 weeks on 2nd to last day starting 2013-02-01 ` - every other Saturday, starting
708
- with the one following the 1st February 2013
720
+ * ` yearly on 2nd to last wed of apr ` - the second-to-last Wednesday of April,
721
+ each year
722
+ * ` every 2 weeks on 2nd to last day starting 2013-02-01 ` - every other Saturday,
723
+ starting with the one following the 1st February 2013
709
724
710
725
711
726
### 3.3 Linking to Feeds
@@ -781,40 +796,45 @@ iCal, Google Calendar, etc.
781
796
782
797
#### ` rss `
783
798
RSS 2.0 format - a standard news aggregation format compatible with many news
784
- readers and other applications. Note that to generate this output, the libxml
785
- and DOM extensions must be enabled for your server's PHP installation.
799
+ readers and other applications. Note that to generate this output, the
800
+ [ libxml] [ libxml ext ] and [ DOM] [ dom ext ] extensions must be enabled for your
801
+ server's PHP installation.
786
802
787
803
#### ` xml `
788
804
XML format - a popular and widely supported data exchange format. Note that to
789
- generate this output, the libxml and DOM extensions must be enabled for your
790
- server's PHP installation.
805
+ generate this output, the [ libxml] [ libxml ext ] and [ DOM] [ dom ext ] extensions
806
+ must be enabled for your server's PHP installation.
791
807
792
808
#### ` json `
793
809
JSON format - another popular, widely supported data exchange format. Note that
794
- to generate this output, the JSON and Multibyte String extensions must be
795
- enabled for your server's PHP installation.
810
+ to generate this output, the [ JSON] [ json ext ] and
811
+ [ Multibyte String] [ mbstring ext ] extensions must be enabled for your server's
812
+ PHP installation.
796
813
797
814
#### ` jsonp `
798
815
JSON wrapped in a function call - suitable for fetching via Javascript.
799
816
Use the ` callback ` parameter to specify the function name to use. Note that
800
- to generate this output, the JSON and Multibyte String extensions must be
801
- enabled for your server's PHP installation.
817
+ to generate this output, the [ JSON] [ json ext ] and
818
+ [ Multibyte String] [ mbstring ext ] extensions must be enabled for your server's
819
+ PHP installation.
802
820
803
821
#### ` html `
804
822
HTML format (full) - a full webpage for users to view the event data
805
- directly in the browser. Note that to generate this output, the libxml and DOM
806
- extensions must be enabled for your server's PHP installation.
823
+ directly in the browser. Note that to generate this output, the
824
+ [ libxml] [ libxml ext ] and [ DOM] [ dom ext ] extensions must be enabled for your
825
+ server's PHP installation.
807
826
808
827
#### ` html-frag `
809
828
HTML format (fragment) - just the HTML for the calendar itself,
810
829
suitable for embedding in another page. Note that to generate this output, the
811
- libxml and DOM extensions must be enabled for your server's PHP installation.
830
+ [ libxml] [ libxml ext ] and [ DOM] [ dom ext ] extensions must be enabled for your
831
+ server's PHP installation.
812
832
813
833
#### ` html-button `
814
834
HTML format (subscribe button) - just the HTML for the calendar subscribe
815
835
button, suitable for embedding in anoter page. Note that to generate this
816
- output, the libxml and DOM extensions must be enabled for your server's PHP
817
- installation.
836
+ output, the [ libxml] [ libxml ext ] and [ DOM] [ dom ext ] extensions must be enabled
837
+ for your server's PHP installation.
818
838
819
839
#### ` s-exp `
820
840
S-Expression format - a data format used by the Lisp programming language.
@@ -828,6 +848,11 @@ the protocol by prefixing the URL with `webcal://` rather than the usual
828
848
` http:// ` . This will help the browser to open the feed in an
829
849
ICalendar-compatible application.
830
850
851
+ [ dom ext ] : https://www.php.net/manual/en/book.dom.php
852
+ [ libxml ext ] : https://www.php.net/manual/en/book.libxml.php
853
+ [ json ext ] : https://www.php.net/manual/en/book.json.php
854
+ [ mbstring ext ] : https://www.php.net/manual/en/book.mbstring.php
855
+
831
856
832
857
### 3.4 Displaying in Another PHP Script
833
858
@@ -953,13 +978,13 @@ The subscribe button for the HTML calendar has its own CSS file,
953
978
name and purpose of each class defined in this file is explained below:
954
979
955
980
* ` calsub-button ` - the outermost container surrounding the button.
956
- * ` calsub-link ` - the anchor element inside the button, allowing the button itself
957
- to be clicked as a link.
981
+ * ` calsub-link ` - the anchor element inside the button, allowing the button
982
+ itself to be clicked as a link.
958
983
* ` calsub-menu ` - the popup menu containing the various subscribe options
959
984
* ` calsub-item ` - a subscribe option within the popup menu
960
- * ` calsub-icalendar ` , ` calsub-google ` , ` calsub-live ` , ` calsub-rss ` , ` calsub-json ` ,
961
- ` calsub-xml ` , ` calsub-sexp ` - these classes identify the individual subscribe
962
- options.
985
+ * ` calsub-icalendar ` , ` calsub-google ` , ` calsub-live ` , ` calsub-rss ` ,
986
+ ` calsub-json ` , ` calsub- xml` , ` calsub-sexp ` - these classes identify the
987
+ individual subscribe options.
963
988
964
989
The subscribe button image and the subscribe icons can be found in the CSS
965
990
spritesheet ` calendar-sub.png ` .
0 commit comments