remove more code.
[platal.git] / plugins / pmwiki.config.php
CommitLineData
121cdae0 1<?php if (!defined('PmWiki')) exit();
2
251b9351 3$EnablePathInfo = 1; # in fact works with apache rewrite, name is misleading
4$EnableGUIButtons = 1;
5$EnableUpload = 1;
6$LinkWikiWords = 0; # disable WikiWord links
7$EnableIMSCaching = 1; # allow browser caching
121cdae0 8
251b9351 9$ScriptUrl = '.'; #\
10$UploadUrlFmt = './uploads'; # } works thanks to the <base /> in skin
11$PubDirUrl = './wiki'; #/
915d4fae 12
251b9351 13$WorkDir = '../spool/wiki.d';
14$WikiDir = new PageStore('$FarmD/'.$WorkDir.'/$FullName');
15$InterMapFiles[] = $globals->spoolroot.'plugins/pmwiki.intermap.txt';
121cdae0 16
251b9351 17$Skin = 'empty';
121cdae0 18
7fc1c340 19XLSDV('en', array('EnterAttributes' =>
20 "Entre ici les différents droit pour la page. Les champs laissés en blanc ne seront pas modifiés.
21 Pour enlever une restriction ou une autorisation entre <strong>clear</strong>.
22 Les différentes restrictions possibles sont :
23 <ul>
24 <li><strong>public:</strong> (pour tout le monde)</li>
7fc1c340 25 <li><strong>logged:</strong> (pour ceux qui ont rentré leur mot de passe ou qui ont un cookie permanent)</li>
26 <li><strong>identified:</strong> (exige une identification par mot de passe)</li>
27 <li><strong>has_perms:</strong> (pour les administrateurs de la page)</li>
28 </ul>
29 Le <strong>:</strong> à la fin de chaque mot clef est important. Tu peux également combiner plusieurs mots clefs avec <strong>and:</strong>
30 ou des espaces (qui remplace le <em>ou</em> logique)<br/>"));
06a5e65b 31
b6f31bab 32include_once($globals->spoolroot."/plugins/pmwiki.platalAuth.php");
121cdae0 33@include_once("$FarmD/cookbook/e-protect.php");
34
251b9351 35$DefaultPasswords['read'] = 'logged:';
36$DefaultPasswords['edit'] = 'has_perms:';
8ac323de 37$DefaultPasswords['attr'] = 'has_perms: and: identified:';
38$DefaultPasswords['admin'] = 'has_perms: and: identified:';
d0adba41 39$DefaultPasswords['upload'] = 'has_perms: and: identified:';
121cdae0 40
251b9351 41// Theme-ing {{{
121cdae0 42
43## The following lines make additional editing buttons appear in the
44## edit page for subheadings, lists, tables, etc.
8ac323de 45$GUIButtons['h2'] = array(400, '\\n!! ', '\\n', '$[Heading]',
46 '$GUIButtonDirUrlFmt/h2.gif"$[Heading]"');
47$GUIButtons['h3'] = array(402, '\\n!!! ', '\\n', '$[Subheading]',
48 '$GUIButtonDirUrlFmt/h3.gif"$[Subheading]"');
49$GUIButtons['indent'] = array(500, '\\n->', '\\n', '$[Indented text]',
50 '$GUIButtonDirUrlFmt/indent.gif"$[Indented text]"');
51$GUIButtons['outdent'] = array(510, '\\n-<', '\\n', '$[Hanging indent]',
52 '$GUIButtonDirUrlFmt/outdent.gif"$[Hanging indent]"');
53$GUIButtons['ol'] = array(520, '\\n# ', '\\n', '$[Ordered list]',
54 '$GUIButtonDirUrlFmt/ol.gif"$[Ordered (numbered) list]"');
55$GUIButtons['ul'] = array(530, '\\n* ', '\\n', '$[Unordered list]',
56 '$GUIButtonDirUrlFmt/ul.gif"$[Unordered (bullet) list]"');
57$GUIButtons['hr'] = array(540, '\\n----\\n', '', '',
58 '$GUIButtonDirUrlFmt/hr.gif"$[Horizontal rule]"');
59$GUIButtons['table'] = array(600,
60 '||border=1 width=80%\\n||!Hdr ||!Hdr ||!Hdr ||\\n|| || || ||\\n|| || || ||\\n', '', '',
61 '$GUIButtonDirUrlFmt/table.gif"$[Table]"');
0df3edb9 62
5dbdcb8c 63// set default author
251b9351 64$Author = $_SESSION['forlife'].'|'.$_SESSION['prenom'].' '.$_SESSION['nom'];
5dbdcb8c 65
66$InputTags['e_form'] = array(
67 ':html' => "<form action='{\$PageUrl}?action=edit' method='post'><div><input
68 type='hidden' name='action' value='edit' /><input
69 type='hidden' name='n' value='{\$FullName}' /><input
70 type='hidden' name='basetime' value='\$EditBaseTime' /></div>");
71
72// set profiles to point to plat/al fiche
73Markup('[[~platal', '<[[~', '/\[\[~([^|\]]*)\|([^\]]*)\]\]/e',
74 'PreserveText("=", \'<a href="profile/$1" class="popup2">$2</a>\', "")');
75
76// prevent restorelinks before block apply (otherwise [[Sécurité]] will give
77// .../S<span class='e9curit'>e9'>Sécurité</a>
78Markup('restorelinks','<%%',"//", '');
79
80## [[#anchor]] in standard XHTML
81Markup('[[#','<[[','/(?>\\[\\[#([A-Za-z][-.:\\w]*))\\]\\]/e',
82 "Keep(\"<a id='$1'></a>\",'L')");
83
84Markup('tablebicol', '<block', '/\(:tablebicol ?([a-z_]+)?:\)/e', 'doBicol("$1")');
85Markup('pairrows', '_end', '/class=\'pair\_pmwiki\_([0-9]+)\'/e',
86 "($1 == 1)?'':('class=\"'.(($1 % 2 == 0)?'impair':'pair').'\"')");
87Markup('noclassth', '_end', '/<th class=\'[a-z_]+\'/', '<th');
88
89Markup('div', '<links', '/\(:div([^:]*):([^\)]*):\)/i', '<div$1>$2</div>');
90
91function doBicol($column=false)
92{
93 global $TableRowIndexMax, $TableRowAttrFmt, $TableCellAttrFmt;
94 $TableRowAttrFmt = "class='pair_pmwiki_\$TableRowCount'";
95 if ($column) {
96 $TableCellAttrFmt = "class='$column'";
97 }
98}
251b9351 99
100// }}}
8ac323de 101?>