X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fwiki%2Ffarmconfig.php;h=d461c25e4abb287df54fc0a9cbfdb1116e826ac5;hb=8230e9f8eff954fb1103c8bdcf0d22557d419ae7;hp=ee13e1a35e424142a8696e07ff8b93ada4edd658;hpb=2c79924909ecda6dcbaf5ba3592cb864726d4c58;p=platal.git diff --git a/include/wiki/farmconfig.php b/include/wiki/farmconfig.php index ee13e1a..d461c25 100644 --- a/include/wiki/farmconfig.php +++ b/include/wiki/farmconfig.php @@ -6,6 +6,7 @@ $EnableUpload = 1; $UploadMaxSize = 500000; $LinkWikiWords = 0; # disable WikiWord links $EnableIMSCaching = 1; # allow browser caching +$EnablePageListProtect = 0; # We use our own permission system. $ScriptUrl = '.'; #\ $UploadUrlFmt = './uploads'; # } works thanks to the in skin @@ -18,6 +19,17 @@ $InterMapFiles[] = $globals->spoolroot.'/configs/pmwiki.intermap.txt'; $Skin = 'empty'; @include_once("$FarmD/cookbook/e-protect.php"); +include_once($FarmD.'/scripts/xlpage-utf-8.php'); +ResolvePageName(); + +if ($action == 'rss' || $action == 'atom' || $action == 'rdf' || $action == 'dc') { + $FmtPV['$MarkupExcerpt'] = '$page["text"]'; + $FeedFmt[$action]['item']['title'] = '[$Group] {$Title}'; + $FeedFmt[$action]['item']['description'] = '$LastModifiedSummary'; + $FeedFmt[$action]['feed']['title'] = 'Polytechnique.org :: Wiki :: $FullName'; + $pagelist = null; + include_once("$FarmD/scripts/feeds.php"); +} // Theme-ing {{{ @@ -38,32 +50,36 @@ $GUIButtons['ul'] = array(530, '\\n* ', '\\n', '$[Unordered list]', $GUIButtons['hr'] = array(540, '\\n----\\n', '', '', '$GUIButtonDirUrlFmt/hr.gif"$[Horizontal rule]"'); $GUIButtons['table'] = array(600, - '||border=1 width=80%\\n||!Hdr ||!Hdr ||!Hdr ||\\n|| || || ||\\n|| || || ||\\n', '', '', + '||border=1 width=80%\\n||!Hdr ||!Hdr ||!Hdr ||\\n|| || || ||\\n|| || || ||\\n', '', '', '$GUIButtonDirUrlFmt/table.gif"$[Table]"'); // set default author -$Author = $_SESSION['forlife'].'|'.$_SESSION['prenom'].' '.$_SESSION['nom']; +$Author = $_SESSION['hruid'].'|'.$_SESSION['prenom'].' '.$_SESSION['nom']; $InputTags['e_form'] = array( - ':html' => "
"
"); // set profiles to point to plat/al fiche Markup('[[~platal', '<[[~', '/\[\[~([^|\]]*)(?:\|([^\]]*))?\]\]/e', 'PreserveText("=", doPlatalLink("$1", "$2"), "")'); -// prevent restorelinks before block apply (otherwise [[Sécurité]] will give -// .../Se9'>Sécurité +// Preserve javascript +Markup('[[javascript', '<[[javascript:', '/\[\[javascript:([^\|]*)\|([^\]]*)?\]\]/e', + 'PreserveText("=", \'\', "") . "$2" . PreserveText("=", "", "")'); + +// prevent restorelinks before block apply (otherwise [[Sécurité]] will give +// .../Se9'>Sécurité Markup('restorelinks','<%%',"//", ''); ## [[#anchor]] in standard XHTML Markup('[[#','<[[','/(?>\\[\\[#([A-Za-z][-.:\\w]*))\\]\\]/e', "Keep(\"\",'L')"); - + Markup('tablebicol', 'fetchOneAssoc(); $text = $row['prenom'] . ' ' . $row['nom'] . ' X' . $row['promo']; if ($row['surnom']) { - $text .= ' (aka ' . $row['surnom'] . ')'; + $text .= ' (alias ' . $row['surnom'] . ')'; } } return '' . $text . ''; @@ -102,4 +118,5 @@ $AuthFunction = 'ReadPage'; $HandleAuth['diff'] = 'edit'; $HandleAuth['source'] = 'edit'; +// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>