This commit is contained in:
2023-10-13 06:43:02 +02:00
parent 53cdad5218
commit 94d8c8f707
44 changed files with 7453 additions and 0 deletions

27
conf/default.php Normal file
View File

@ -0,0 +1,27 @@
<?php
/**
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
* @author Francois Merciol <dokuplugin@merciol.fr>
*
* Options for the Schedule Plugin
*/
$conf['scheduleGroup'] = 'schedule';
$conf['adminGroup'] = 'admin';
$conf['dataDir'] = 'schedule';
$conf['groupsDir'] = 'membres';
$conf['noSchedule'] = '2010';
$conf['scheduleDir'] = 'agenda';
$conf['sharedDir'] = 'commun';
$conf['scheduleWhat'] = 'A:Manifestation, Vote, Pétition, Action|B:Echange, Forum, Débat, Conférence, Projection, Exposition, Spectacle, Radio, TV, Pique-Nique|C:Assemblée Générale, Réunion, Mensuelle, Hebdomadaire';
$conf['scheduleAudience'] = 'Ouvert à tous, Membres, Commission, Bureau';
$conf['iconName'] = 'logo.png';
$conf['iconWidth'] = 30;
$conf['repeatPosition'] = 'isolated';
$conf['bubblePosition'] = 'right';
$conf['useMap'] = 1;
$conf['defaultCenter'] = "[47.95583, -2.54833]";
$conf['defaultZoom'] = 14;
$conf['migrate'] = 0;
$conf['showOldValues'] = 0;
?>

28
conf/metadata.php Normal file
View File

@ -0,0 +1,28 @@
<?php
/**
* @license http://www.cecill.info/licences/Licence_CeCILL-B_V1-fr.html
* @author Francois Merciol <dokuplugin@merciol.fr>
*
* Metadata for configuration manager plugin
* Additions for the schedule plugin
*/
$meta['scheduleGroup'] = array('string'); // who can use form
$meta['adminGroup'] = array('string'); // who can admin data
$meta['dataDir'] = array('string'); // root dir for XML files
$meta['groupsDir'] = array('string'); // dir group in wiki pages to find group names
$meta['noSchedule'] = array('string'); // forbiden name for group (ex skip annual archive dir)
$meta['scheduleDir'] = array('string'); // dir in wiki pages for events (contains subdir for group name or the shared dir)
$meta['sharedDir'] = array('string'); // dir for shared event in wiki pages
$meta['scheduleWhat'] = array('string'); // type event list
$meta['scheduleAudience'] = array('string'); // type audience list
$meta['iconName'] = array('string'); // file name containing logo in group dir
$meta['iconWidth'] = array('numeric'); // default logo width size
$meta['repeatPosition'] = array('multichoice', '_choices' => array('grouped', 'isolated')); // does the repeated events are group on top of form
$meta['bubblePosition'] = array('multichoice', '_choices' => array('left', 'right')); // tooltips position
$meta['useMap'] = array('onoff');
$meta['defaultCenter'] = array('string');
$meta['defaultZoom'] = array('numeric');
$meta['migrate'] = array('onoff'); // XXX to remove ?
$meta['showOldValues'] = array('onoff'); // XXX to remove ?
?>