Changeset 30313


Ignore:
Timestamp:
2015-11-04T16:03:04+13:00 (8 years ago)
Author:
jmt12
Message:

Replacing true/false with 0/1 as that seems to work more consistently

File:
1 edited

Legend:

Unmodified
Added
Removed
  • documentation/trunk/wiki/templates/greenstone-monobook/conf/default.php

    r30114 r30313  
    3737
    3838//user pages
    39 $conf["monobook_userpage"]    = false; //TRUE: use/show user pages
     39$conf["monobook_userpage"]    = 0; //TRUE: use/show user pages
    4040$conf["monobook_userpage_ns"] = ":wiki:user:"; //namespace to use for user page storage
    4141
    4242//discussion pages
    43 $conf["monobook_discuss"]    = false; //TRUE: use/show discussion pages
     43$conf["monobook_discuss"]    = 0; //TRUE: use/show discussion pages
    4444$conf["monobook_discuss_ns"] = ":talk:"; //namespace to use for discussion page storage
    4545
    4646//site notice
    47 $conf["monobook_sitenotice"]          = true; //TRUE: use/show sitenotice
     47$conf["monobook_sitenotice"]          = 1; //TRUE: use/show sitenotice
    4848$conf["monobook_sitenotice_location"] = ":wiki:site_notice"; //page/article used to store the sitenotice
    4949
    5050//navigation
    51 $conf["monobook_navigation"]           = true; //TRUE: use/show navigation
    52 $conf["monobook_navigation_location"]  = ":gsdl:wiki:navigation"; //page/article used to store the navigation
    53 $conf["monobook_navigation_translate"] = true; //TRUE: load translated navigation if translation plugin is available (see <http://www.dokuwiki.org/plugin:translation>)
     51$conf["monobook_navigation"]           = 1; //TRUE: use/show navigation
     52$conf["monobook_navigation_location"]  = ":wiki:navigation"; //page/article used to store the navigation
     53$conf["monobook_navigation_translate"] = 1; //TRUE: load translated navigation if translation plugin is available (see <http://www.dokuwiki.org/plugin:translation>)
    5454
    5555//custom copyright notice
    56 $conf["monobook_copyright"]          = true; //TRUE: use/show copyright notice
    57 $conf["monobook_copyright_default"]  = false; //TRUE: use default copyright notice (if copyright notice is enabled at all)
    58 $conf["monobook_copyright_location"] = ":gsdl:wiki:copyright"; //page/article used to store a custom copyright notice
     56$conf["monobook_copyright"]          = 1; //TRUE: use/show copyright notice
     57$conf["monobook_copyright_default"]  = 0; //TRUE: use default copyright notice (if copyright notice is enabled at all)
     58$conf["monobook_copyright_location"] = ":wiki:copyright"; //page/article used to store a custom copyright notice
    5959
    6060//search form
    61 $conf["monobook_search"] = true; //TRUE: use/show search form
     61$conf["monobook_search"] = 1; //TRUE: use/show search form
    6262
    6363//toolbox
    64 $conf["monobook_toolbox"]               = true; //TRUE: use/show toolbox
    65 $conf["monobook_toolbox_default"]       = true; //TRUE: use default toolbox (if toolbox is enabled at all)
    66 $conf["monobook_toolbox_default_print"] = true; //TRUE: if default toolbox is used, show printable version link?
    67 $conf["monobook_toolbox_location"]      = ":gsdl:wiki:toolbox"; //page/article used to store a custom toolbox
     64$conf["monobook_toolbox"]               = 1; //TRUE: use/show toolbox
     65$conf["monobook_toolbox_default"]       = 1; //TRUE: use default toolbox (if toolbox is enabled at all)
     66$conf["monobook_toolbox_default_print"] = 1; //TRUE: if default toolbox is used, show printable version link?
     67$conf["monobook_toolbox_location"]      = ":wiki:toolbox"; //page/article used to store a custom toolbox
    6868
    6969//donation link/button
    70 $conf["monobook_donate"]          = false; //TRUE: use/show donation link/button
    71 $conf["monobook_donate_default"]  = false; //TRUE: use default donation link/button (if donation link is enabled at all)
     70$conf["monobook_donate"]          = 0; //TRUE: use/show donation link/button
     71$conf["monobook_donate_default"]  = 0; //TRUE: use default donation link/button (if donation link is enabled at all)
    7272$conf["monobook_donate_url"]      = "http://andreas-haerter.com/donate/dokuwiki-template-monobook"; //custom donation URL instead of the default one
    7373
     
    8686*/
    8787$conf["monobook_cite_author"] = "Contributors of wiki.greenstone.org"; //name to use for the author on the citation page
    88 $conf["monobook_loaduserjs"]            = false; //TRUE: monobook/user/user.js will be loaded
    89 $conf["monobook_closedwiki"]            = false; //TRUE: hides most tabs/functions until user is logged in
    90 
    91 $conf["monobook_youarehere"] = true;
     88$conf["monobook_loaduserjs"]            = 0; //TRUE: monobook/user/user.js will be loaded
     89$conf["monobook_closedwiki"]            = 0; //TRUE: hides most tabs/functions until user is logged in
     90$conf["monobook_youarehere"] = 1;
Note: See TracChangeset for help on using the changeset viewer.