API¶
โดยทั่วไป Open Web Calendar พร้อมให้ใช้งานโดยไม่มีข้อจำกัด คุณสามารถใช้ API นี้เพื่อปรับแต่งปฏิทินได้ทันที
ส่วนนี้สามารถใช้งานได้หากตรงกับข้อใดข้อหนึ่งต่อไปนี้:
- คุณเป็นนักพัฒนาเว็บที่ต้องการฝัง Open Web Calendar
- คุณต้องการใช้ประโยชน์จากความยืดหยุ่นอย่างเต็มที่ ไม่ใช่แค่สิ่งที่แสดงบนหน้าการกำหนดค่า
- คุณต้องการใช้ JavaScript เพื่อสร้างการออกแบบปฏิทินและตัวเลือกแบบไดนามิก
- You want to extend the functionality of the Open Web Calendar.
- You want to use the Open Web Calendar as a proxy to request JSON events for your self-made event feed.
Endpoints¶
The basic parameters are the same at these endpoints:
/index.html
- edit the calendar/about.html
- view the about page/calendar.html
- view the calendar/calendar.spec
- download the specification/calendar.ics
- subscribe to the ics file/calendar.events.json
- FLEXIBLE - get the events as JSON Please note that you CAN use this but you cannot be sure that the JSON schema remains the same. If you want that, add tests.
Additional parameters are required for /calendar.events.json
:
timezone=UTC
- the timezone that you need to display the events infrom=YYYY-MM-DD
- the start of the period in which events happen (inclusive)to=YYYY-MM-DD
- the end of the period in which events happen (exclusive)
Parameters¶
All configuration parameters are described sufficiently in the default_specification. That is the reference. E.g. if you find the parameter title
in the default_specification, you have several options:
Change the title in a query parameter:
/index.html?title=calendar
Change the title in a YAML specification:
title: calendar
Change the title in a JSON specification:
{
"title": "calendar"
}
Adding Parameters¶
If you add a new parameter as a developer,
- Add the parameter with a default value to the default_specification
- Add an implementation, depending on its use in the
app.py
or the templates of the JavaScript files. The specification is already available in all of them to use. - Add tests in features/configure-the-calendar.feature to check that the calendar responds to the feature.
- Add tests in features/edit-the-calendar.feature to make sure that the parameter can be used when a calendar is edited.
Compiling the Specification¶
You can change the calendar behavior and looks with parameters. These are the places to specify parameters:
- Query parameters All parameters to the calendar url are put into the specification. The query parameters have the highest precedence. Examples:
txt index.html?language=de calendar.html?title=CALENDAR
-
specification_url If you specify this query parameter, the editor configuration is loaded from this url, too. Query parameters are still more important than what is written in this file. The source format can be YAML or JSON. Examples: calendar.html?specification_url=https://github.com/niccokunzmann/open-web-calendar/raw/master/default_specification.yml
-
default_specification This file contains the default parameters. They must not be hard-coded in the source code. All of them are there. Query parameters and the
specification_url
override these values.
Specification in the Calendar¶
app.py compiles the specification from the given parameters in get_specification()
. In the template you can access the specification through the specification
variable. The specification is available to JavaScript as the specification
variable.
Specification in the Index Page¶
The default specification is available before the calendar is built via JavaScript in the configuration.default_specification
variable. There is a getSpecification() function which created the specification from the inputs. Generally, the specification
variable should be used.
Architecture¶
Below, you can find a picture of the architecture.
The base of a calendar is the specification, given in the various forms. This specification influences all the steps.
After the specification is compiled, the calendar (ics) files are downloaded from the locations on the Internet.
From the calendar files, the events are generated.
Then, different views are chosen to display the events.
In the end, these lead to HTML and style changes of the calendar website.
In the real application, these steps are bit bit mixed up and unordered or omitted but this explains simply the basic, initial idea behind the event processing.