gettext("templates/browse.html"), "EDITPAGE" => gettext("templates/editpage.html"), "MESSAGE" => gettext("templates/message.html") ); /* WIKI_PGSRC -- specifies the source for the initial page contents * of the Wiki. The setting of WIKI_PGSRC only has effect when * the wiki is accessed for the first time (or after clearing the * database.) WIKI_PGSRC can either name a directory or a zip file. * In either case WIKI_PGSRC is scanned for files --- one file per page. * * If the files appear to be MIME formatted messages, they are * scanned for application/x-phpwiki content-types. Any suitable * content is added to the wiki. * The files can also be plain text files, in which case the page name * is taken from the file name. */ define('WIKI_PGSRC', gettext("./pgsrc")); // Default (old) behavior. //define('WIKI_PGSRC', './wiki.zip'); // New style. // DEFAULT_WIKI_PGSRC is only used when the language is *not* // the default (English) and when reading from a directory: // in that case some English pages are inserted into the wiki as well // DEFAULT_WIKI_PGSRC defines where the English pages reside define('DEFAULT_WIKI_PGSRC', "./pgsrc"); ////////////////////////////////////////////////////////////////////// // you shouldn't have to edit anyting below this line if (empty($ScriptUrl)) { $port = ($SERVER_PORT == 80) ? '' : ":$SERVER_PORT"; $ScriptUrl = "http://$SERVER_NAME$port$SCRIPT_NAME"; } $ScriptName = preg_replace('@^.*/@', '', $ScriptUrl); // "\x80"-"\x9f" (and "\x00" - "\x1f") are non-printing control // chars in iso-8859-* // $FieldSeparator = "\263"; //this is a superscript 3 in ISO-8859-1. $FieldSeparator = "\x81"; // constants used for HTML output. HTML tags may allow nesting // other tags always start at level 0 define("ZERO_LEVEL", 0); define("NESTED_LEVEL", 1); // constants for flags in $pagehash define("FLAG_PAGE_LOCKED", 1); ?>