2020-05-14 20:56:58 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/* Configuration file for LionWiki-t2t. */
|
|
|
|
/* https://lionwiki-t2t.sourceforge.io/ */
|
|
|
|
|
|
|
|
/* **** MAIN TITLE **** */
|
2020-03-27 11:26:22 +01:00
|
|
|
$WIKI_TITLE = '__YNH_LABEL__'; // name of the site
|
2020-03-01 11:28:28 +01:00
|
|
|
|
2020-05-14 20:56:58 +02:00
|
|
|
/* **** PASSWORDS **** */
|
2020-03-01 11:28:28 +01:00
|
|
|
// SHA1 hash of password. If empty (or commented out), no password is required
|
|
|
|
|
2020-03-01 13:21:59 +01:00
|
|
|
$PASSWORD = sha1("__YNH_PASSWORD__");
|
|
|
|
$Admin["PASSWORD"] = sha1("__YNH_PASSWORD__");
|
2020-03-01 11:28:28 +01:00
|
|
|
|
|
|
|
// if true, you need to fill password for reading pages too
|
|
|
|
// before setting to true, read http://lionwiki.0o.cz/index.php?page=UserGuide%3A+How+to+use+PROTECTED_READ
|
|
|
|
$PROTECTED_READ = false;
|
|
|
|
|
2020-05-14 20:56:58 +02:00
|
|
|
|
|
|
|
/* **** SKINS **** */
|
|
|
|
|
|
|
|
|
|
|
|
// Those templates are using markitup, a convenient and advanced toolbar to edit the wiki:
|
|
|
|
|
|
|
|
$TEMPLATE = 'templates/minimaxing/minimaxing.html'; // this one is the default skin
|
|
|
|
|
|
|
|
//$TEMPLATE = 'templates/red.html';
|
|
|
|
//$TEMPLATE = 'templates/txt2tags/txt2tags.html'; // used on the txt2tags wiki
|
|
|
|
|
|
|
|
|
|
|
|
//$TEMPLATE = 'templates/ElectricObsidian/ElectricObsidian.html'; // dark theme
|
|
|
|
//$TEMPLATE = 'templates/literature/literature.html'; // light theme
|
2020-12-31 17:22:20 +01:00
|
|
|
//$TEMPLATE = 'templates/newspaper/newspaper.html'; // light theme
|
2020-05-14 20:56:58 +02:00
|
|
|
//$TEMPLATE = 'templates/bootstrap/bootstrap.html'; // bootstrap look. The navbar collapse menu no longer work at the moment
|
|
|
|
|
|
|
|
|
|
|
|
// Those templates are more minimalistic and use only a basic toolbar:
|
|
|
|
|
2020-12-31 17:22:20 +01:00
|
|
|
//$TEMPLATE = 'templates/ggp/ggp.html';
|
2020-05-14 20:56:58 +02:00
|
|
|
//$TEMPLATE = 'templates/blazekiss/blazekiss.html';
|
|
|
|
//$TEMPLATE = 'templates/sissou.html';
|
|
|
|
//$TEMPLATE = 'templates/fravashyo/fravashyo.html';
|
|
|
|
//$TEMPLATE = 'templates/dandelion.html';
|
|
|
|
//$TEMPLATE = 'templates/minimal.html';
|
2020-12-31 17:22:20 +01:00
|
|
|
//$TEMPLATE = 'templates/terminal/terminal.html';
|
|
|
|
//$TEMPLATE = 'templates/terminal_green.html';
|
2020-05-14 20:56:58 +02:00
|
|
|
//$TEMPLATE = 'templates/terminal_white.html';
|
|
|
|
//$TEMPLATE = 'templates/light.html';
|
|
|
|
//$TEMPLATE = 'templates/print.html';
|
|
|
|
//$TEMPLATE = 'templates/skeleton.html'; // doesn't work well yet
|
|
|
|
|
|
|
|
/* **** MORE OPTIONS **** */
|
|
|
|
|
2020-03-01 11:28:28 +01:00
|
|
|
$NO_HTML = true; // XSS protection
|
|
|
|
|
|
|
|
$START_PAGE = 'main'; // Which page should be default (start page)?
|
|
|
|
|
|
|
|
|
|
|
|
// if needed (if autodetection doesn't work), force language
|
|
|
|
//$LANG = fr;
|
2020-03-01 13:21:59 +01:00
|
|
|
$LANG = __YNH_LANG__;
|
2020-05-14 20:56:58 +02:00
|
|
|
|
|
|
|
/* see the file config.t2t to tweak the syntax and even more! */
|
|
|
|
|
|
|
|
/* *********************************************** */
|