Calendar Administration
A Calendar Administrator can perform the following calendar actions:- Delete a calendar
- Assign Calendar Editors
- Determine which other calendars can display events on a calendar
- Perform any calendar editor action for a calendar
A Calendar Editor can perform the following calendar actions
- Add, Edit or Delete Events to the calendar
- Determine in which calendars the event can be displayed from a list of accessible Calendars
Calendar URL parameters
Calendar parameters are specified via the hash of either the full calendar url or the iframe src.
calendar_app/index.html#{calendarName}{,date}{,view}{,css=cssfile}
{...} indicates optional parameters (i.e, any parameter can be omitted). However they must be specified in the order shown above after the hash # separated by commas.
where
- calendarName: Name of calendar as displayed in full view calendar dropdown
(if preceeded with *, then only this calendar is displayed in dropdown) - date: any valid javascript date format (e.g. 12-12-2010, 1/1/2011)
- view: -month, -week, -day, -mini (must start with dash)
- cssfile: css filename for all views
(.css extension is optional)
- for full size views: (i.e month, week & day), cssfile is path/filename relative to .../calendar_app folder
- for mini view, cssfile is relative to calendar_app/calendar_mini
The calendar name can also specified in the web page url hash containing the calendar iframe . It takes precedence over the iframe src if the hash is valid calendar name.
https://www.revize.com . . . <iframe src="calendar_app/index.html#...>
Full Size Examples (day, week, month)
calendar_app/index.html calendar_app/index.html#css=custom_styles.css calendar_app/index.html#-day calendar_app/index.html#Fire calendar_app/index.html#11-1-2010Following example, display Fire Calendar in week view for week containing 11/1/2012 using custom_styles in .../calendar_app/css folder
calendar_app/index.html#Fire,11-1-2012,-week,css=css/custom_styles.css
Mini view Examples
calendar_app/index.html#HR,-mini,css=calendar_mini_okmulgee.css calendar_app/index.html#11-1-2010,-mini,css=calendar_mini_okmulgee.css calendar_app/index.html#-mini,css=calendar_mini_genesee_home.css calendar_app/index.html#HR,11-1-2010,-mini,css=calendar_mini_genesee_home.css
Sample iframe html with parameters
<iframe src="calendar_app/index.html#-mini,css=calendar_mini_SITENAME.css" width="450" height="300" scrolling="auto" id="calendar" allowtransparency="yes" frameborder="0" style="border:0px"></iframe>