1<?php
2/**
3 * configuration-manager metadata for the arctic-template
4 *
5 * @license     GPL 2 (http://www.gnu.org/licenses/gpl.html)
6 * @author      Michael Klier <chi@chimeric.de>
7 * @author      Mark C. Prins <mprins@users.sf.net>
8 */
9
10$meta['sidebar']                  = array('multichoice', '_choices' => array('left', 'right', 'both', 'none'));
11$meta['pagename']                 = array('string', '_pattern' => '#[a-z0-9]*#');
12$meta['trace']                    = array('onoff');
13$meta['main_sidebar_always']      = array('onoff');
14$meta['wiki_actionlinks']         = array('multichoice', '_choices' => array('links', 'buttons'));
15$meta['user_sidebar_namespace']   = array('string', '_pattern' => '#^[a-z:]*#');
16$meta['group_sidebar_namespace']  = array('string', '_pattern' => '#^[a-z:]*#');
17$meta['left_sidebar_order']       = array('string', '_pattern' => '#[a-z0-9,]*#');
18$meta['left_sidebar_content']     = array('multicheckbox', '_choices' => array('main','toc','user','group','namespace','toolbox','index','trace','extra'));
19$meta['right_sidebar_order']      = array('string', '_pattern' => '#[a-z0-9,]*#');
20$meta['right_sidebar_content']    = array('multicheckbox', '_choices' => array('main','toc','user','group','namespace','toolbox','index','trace','extra'));
21$meta['search']                   = array('multichoice', '_choices' => array('left', 'right'));
22$meta['closedwiki']               = array('onoff');
23$meta['hideactions']              = array('onoff');
24$meta['opengraphheading']         = array('onoff');
25
26//Setup vim:ts=2:sw=2:
27