1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/lionwiki-t2t_ynh.git synced 2024-09-03 19:36:27 +02:00
lionwiki-t2t_ynh/conf/config.php

66 lines
2.2 KiB
PHP
Raw Normal View History

<?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
/* **** 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;
/* **** 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
//$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';
//$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';
//$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__;
/* see the file config.t2t to tweak the syntax and even more! */
/* *********************************************** */