Skip to content

Commit 21841be

Browse files
committed
updated readme and added gitignore
1 parent fc0013e commit 21841be

File tree

2 files changed

+99
-61
lines changed

2 files changed

+99
-61
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
*~
2+
*.save
3+
*.orig
4+
5+
/calendar.html
6+
/calendar-button.html
7+
/calendar-frag.html
8+
/calendar.ics
9+
/calendar.json
10+
/calendar.lsp
11+
/calendar.rss
12+
/calendar.xml
13+
/calendar-config.php

README.md

+86-61
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,14 @@ multiple different feed formats.
3737

3838
### Optional
3939

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
4448

4549

4650
3 User Guide
@@ -113,10 +117,13 @@ on a different server. This is useful if you wish to use another calendar feed
113117
as the input, such as a public Google calendar (see
114118
[Google Calendar Input](#327-google-calendar-input) for more on this). Note
115119
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
120127

121128
To use a remote file, create the file `calendar-config.php` in the script
122129
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:
166173
* `name` __(required)__ - the title of the event
167174
* `date` __(required)__ - either a one-off date in `yyyy-mm-dd` format, or the
168175
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.
170178
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.
176185
* `description` _(optional)_ - a description of the event
177186
* `url` _(optional)_ - a link to more information about the event
178187

@@ -205,8 +214,9 @@ return array(
205214
#### 3.2.4 JSON Input
206215

207216
[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.
210220

211221
To supply the event information in JSON format, use the file extension `.json`
212222
- for example, `calendar-master.json`. Your JSON file should contain a root
@@ -228,11 +238,11 @@ following properties:
228238
* `date` __(required)__ - the date on which the event starts, as a string in
229239
the following format: `yyyy-mm-dd`.
230240
* `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.
233243
* `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.
236246
* `description` _(optional)_ - a description of the event, as a string
237247
* `url` _(optional)_ a link to more information about the event, as a string
238248

@@ -242,19 +252,20 @@ the following properties:
242252
* `name` __(required)__ - the title of the event, as a string
243253
* `recurrence` __(required)__ - a string specifying how often the event occurs.
244254
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.
246257
* `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.
249260
* `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.
252263
* `description` _(optional)_ - a description of the event, as a string
253264
* `url` _(optional)_ a link to more information about the event as a string
254265

255266
Below is a complete example JSON file:
256267

257-
``````````````````````````````````````````````````````````````````````````````` json
268+
``````````````````````````````````````````````````````````````````````````` json
258269
{
259270
"name": "Mark's Calendar",
260271
"events": [
@@ -279,7 +290,7 @@ Below is a complete example JSON file:
279290
}
280291
]
281292
}
282-
```````````````````````````````````````````````````````````````````````````````
293+
```````````````````````````````````````````````````````````````````````````
283294

284295

285296
#### 3.2.5 ICalendar Input
@@ -386,12 +397,13 @@ return array(
386397

387398
The full list of customisable class properties is as follows:
388399

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.
392404
* `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`.
395407
* `ev-name-class` - the event's name. Defaults to `summary`.
396408
* `ev-description-class` - the event's description. Defaults to `description`.
397409
* `ev-url-class` - the event's URL. Defaults to `url`.
@@ -438,10 +450,10 @@ The full list of customisable XPath properties is as follows:
438450
description contents.
439451
* `cal-url-xpath` - the calendar's URL. Expression is relative to the document
440452
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.
445457
* `ev-url-xpath` - the event's url. Expression is relative to the event element.
446458
Defaults to element with `url` class.
447459
* `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
523535
version of Outlook.
524536

525537
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"
527540
3. Select "Comma Separated Values (Windows)" and click "Next"
528541
4. Select "Calendar" and click "Next"
529542
5. Click "Browse" and choose where to save the export file. Click "Next"
530543
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:
532546
* Subject
533547
* Description
534548
* Start Date
@@ -586,8 +600,8 @@ calendar as your input, do the following:
586600
2. Note your group's _URL username_. This is the name that appears in your
587601
browser's address bar. For example: `http://meetup.com/<your-name-here>/`
588602
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.
591605

592606
Next, delete the `calendar-config.php` file in the calendar script's directory,
593607
if it already exists, and create a new one. Set the `url` property to your
@@ -703,9 +717,10 @@ Here are some examples:
703717
* `daily` - every day
704718
* `weekly on thu` - every Thursday
705719
* `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
709724

710725

711726
### 3.3 Linking to Feeds
@@ -781,40 +796,45 @@ iCal, Google Calendar, etc.
781796

782797
#### `rss`
783798
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.
786802

787803
#### `xml`
788804
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.
791807

792808
#### `json`
793809
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.
796813

797814
#### `jsonp`
798815
JSON wrapped in a function call - suitable for fetching via Javascript.
799816
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.
802820

803821
#### `html`
804822
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.
807826

808827
#### `html-frag`
809828
HTML format (fragment) - just the HTML for the calendar itself,
810829
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.
812832

813833
#### `html-button`
814834
HTML format (subscribe button) - just the HTML for the calendar subscribe
815835
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.
818838

819839
#### `s-exp`
820840
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
828848
`http://`. This will help the browser to open the feed in an
829849
ICalendar-compatible application.
830850

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+
831856

832857
### 3.4 Displaying in Another PHP Script
833858

@@ -953,13 +978,13 @@ The subscribe button for the HTML calendar has its own CSS file,
953978
name and purpose of each class defined in this file is explained below:
954979

955980
* `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.
958983
* `calsub-menu` - the popup menu containing the various subscribe options
959984
* `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.
963988

964989
The subscribe button image and the subscribe icons can be found in the CSS
965990
spritesheet `calendar-sub.png`.

0 commit comments

Comments
 (0)