1<?php 2 3# Default configuration for iCalendar Dokuwiki Plugin 4 5# Date format that is used to display the from and to values 6# If you leave this empty '', then the default dformat from /conf/dokuwiki.php will be used. 7$conf['dformat'] = '%d %B %Y'; 8$conf['tformat'] = '%H:%M'; 9 10# should the end dates for each event be shown? 11$conf['showEndDates'] = 0; 12 13# Templates 14 15// showAs=default 16$conf['default'] = '===== {date}: {summary} ===== 17 18**Location**: {location_link}\\\\ 19{description}'; 20 21// showAs=list 22$conf['list'] = '====== {date}: {summary} ====== 23**<sup>Location: {location}</sup>**\\\\ 24{description}'; 25 26//showAs=table 27$conf['table'] = '| **{date}** | {summary_link} | {location_link} | (({description})) |'; 28 29# You can add your own showAs= templates by adding a configuration parameter 30# 31# Example: 32# 33# $conf['unsortedlist'] = ' * {date}: {summary} '; 34# 35# will allow you to use 'showAs=unsortedlist' in your iCalendar syntax. 36# 37# If you wish to configre the templates in your administration panel as well, 38# please update the metadata.php file with your new parameter as well. 39 40?>