1*fa5fcacaSAndreas Haerter;; 2*fa5fcacaSAndreas Haerter; INI to handle loading of the CSS files of the "vector" template for DokuWiki 3*fa5fcacaSAndreas Haerter; 4*fa5fcacaSAndreas Haerter; 5*fa5fcacaSAndreas Haerter; LICENSE: This file is open source software (OSS) and may be copied under 6*fa5fcacaSAndreas Haerter; certain conditions. See COPYING file for details or try to contact 7*fa5fcacaSAndreas Haerter; the author(s) of this file in doubt. 8*fa5fcacaSAndreas Haerter; 9*fa5fcacaSAndreas Haerter; @license GPLv2 (http://www.gnu.org/licenses/gpl2.html) 10*fa5fcacaSAndreas Haerter; @author Andreas Haerter <andreas.haerter@dev.mail-node.com> 11*fa5fcacaSAndreas Haerter; @link http://andreas-haerter.com/projects/dokuwiki-template-vector 12*fa5fcacaSAndreas Haerter; @link http://www.dokuwiki.org/template:vector 13*fa5fcacaSAndreas Haerter; @link http://www.dokuwiki.org/devel:css#styleini 14*fa5fcacaSAndreas Haerter 15*fa5fcacaSAndreas Haerter 16*fa5fcacaSAndreas Haerter 17*fa5fcacaSAndreas Haerter; Please see http://www.php.net/manual/en/function.parse-ini-file.php 18*fa5fcacaSAndreas Haerter; for limitations of the ini format used here 19*fa5fcacaSAndreas Haerter 20*fa5fcacaSAndreas Haerter; Define the stylesheets your template uses here. The second value 21*fa5fcacaSAndreas Haerter; defines for which output media the style should be loaded. Currently 22*fa5fcacaSAndreas Haerter; print, screen and rtl are supported. rtl styles are loaded additionally 23*fa5fcacaSAndreas Haerter; to screen styles if a right-to-left language is selected (eg. hebrew) 24*fa5fcacaSAndreas Haerter[stylesheets] 25*fa5fcacaSAndreas Haerter 26*fa5fcacaSAndreas Haerter; screen 27*fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the workaround within "bug49642.php" 28*fa5fcacaSAndreas Haerter; when adding new screen styles. 29*fa5fcacaSAndreas Haerter; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this. 30*fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/layout.css = screen 31*fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/design.css = screen 32*fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/media.css = screen 33*fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/_admin.css = screen 34*fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/_linkwiz.css = screen 35*fa5fcacaSAndreas Haerter 36*fa5fcacaSAndreas Haerter; load the most important MediaWiki vector styles 37*fa5fcacaSAndreas Haerterstatic/3rd/vector/main-ltr.css = screen 38*fa5fcacaSAndreas Haerter 39*fa5fcacaSAndreas Haerter; load the specific "vector for dokuwiki" styles 40*fa5fcacaSAndreas Haerterstatic/css/screen.css = screen 41*fa5fcacaSAndreas Haerteruser/screen.css = screen 42*fa5fcacaSAndreas Haerter 43*fa5fcacaSAndreas Haerter 44*fa5fcacaSAndreas Haerter; print 45*fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the "print" action for the "printable 46*fa5fcacaSAndreas Haerter; version" within "main.php" when adding new print styles. 47*fa5fcacaSAndreas Haerter; I think this function is silly (cause therefore we got 48*fa5fcacaSAndreas Haerter; different "media" but some people *always* searching for such 49*fa5fcacaSAndreas Haerter; print version links). Good text about this: <http://j.mp/6r3Kgf> 50*fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the workaround within "bug49642.php" 51*fa5fcacaSAndreas Haerter; when adding new print styles. 52*fa5fcacaSAndreas Haerter; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this. 53*fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/print.css = print 54*fa5fcacaSAndreas Haerter 55*fa5fcacaSAndreas Haerter; load the specific "vector for dokuwiki" styles 56*fa5fcacaSAndreas Haerterstatic/css/print.css = print 57*fa5fcacaSAndreas Haerteruser/print.css = print 58*fa5fcacaSAndreas Haerter 59*fa5fcacaSAndreas Haerter 60*fa5fcacaSAndreas Haerter; right-to-left 61*fa5fcacaSAndreas Haerter; note to myself: don't forget to respect the workaround within "bug49642.php" 62*fa5fcacaSAndreas Haerter; when adding new rtl styles. 63*fa5fcacaSAndreas Haerter; load the DokuWiki default styles. See <http://j.mp/jIyE2> why I am doing this. 64*fa5fcacaSAndreas Haerterstatic/3rd/dokuwiki/rtl.css = rtl 65*fa5fcacaSAndreas Haerter 66*fa5fcacaSAndreas Haerter; load the most important MediaWiki vector styles 67*fa5fcacaSAndreas Haerterstatic/3rd/vector/main-rtl.css = rtl 68*fa5fcacaSAndreas Haerter 69*fa5fcacaSAndreas Haerter; load the specific "vector for dokuwiki" styles 70*fa5fcacaSAndreas Haerterstatic/css/rtl.css = rtl 71*fa5fcacaSAndreas Haerteruser/rtl.css = rtl 72*fa5fcacaSAndreas Haerter 73*fa5fcacaSAndreas Haerter 74*fa5fcacaSAndreas Haerter 75*fa5fcacaSAndreas Haerter 76*fa5fcacaSAndreas Haerter 77*fa5fcacaSAndreas Haerter 78*fa5fcacaSAndreas Haerter; This section is used to configure some placeholder values used in 79*fa5fcacaSAndreas Haerter; the stylesheets. Changing this file is the simplest method to 80*fa5fcacaSAndreas Haerter; give your wiki a new look. 81*fa5fcacaSAndreas Haerter[replacements] 82*fa5fcacaSAndreas Haerter 83*fa5fcacaSAndreas Haerter;-------------------------------------------------------------------------- 84*fa5fcacaSAndreas Haerter;------ guaranteed dokuwiki color placeholders that every plugin can use 85*fa5fcacaSAndreas Haerter; main text and background colors 86*fa5fcacaSAndreas Haerter; 87*fa5fcacaSAndreas Haerter;note to myself: don't forget to respect the workaround within "bug49642.php" 88*fa5fcacaSAndreas Haerter; when changing values in here. 89*fa5fcacaSAndreas Haerter__text__ = "#000" 90*fa5fcacaSAndreas Haerter__background__ = "#fff" 91*fa5fcacaSAndreas Haerter; alternative text and background colors 92*fa5fcacaSAndreas Haerter__text_alt__ = "#000" 93*fa5fcacaSAndreas Haerter__background_alt__ = "#dee7ec" ;"#eef3f8" 94*fa5fcacaSAndreas Haerter; neutral text and background colors 95*fa5fcacaSAndreas Haerter__text_neu__ = "#000" 96*fa5fcacaSAndreas Haerter__background_neu__ = "#fff" 97*fa5fcacaSAndreas Haerter; border color 98*fa5fcacaSAndreas Haerter__border__ = "#8cacbb" 99*fa5fcacaSAndreas Haerter;-------------------------------------------------------------------------- 100*fa5fcacaSAndreas Haerter 101*fa5fcacaSAndreas Haerter; other text and background colors 102*fa5fcacaSAndreas Haerter; 103*fa5fcacaSAndreas Haerter;note to myself: don't forget to respect the workaround within "bug49642.php" 104*fa5fcacaSAndreas Haerter; when changing values in here. 105*fa5fcacaSAndreas Haerter__text_other__ = "#ccc" 106*fa5fcacaSAndreas Haerter__background_other__ = "#f9f9f9" 107*fa5fcacaSAndreas Haerter 108*fa5fcacaSAndreas Haerter; these are used for links 109*fa5fcacaSAndreas Haerter__extern__ = "#436976" 110*fa5fcacaSAndreas Haerter__existing__ = "#002bb8" ;use #090 for dokuwiki-green links 111*fa5fcacaSAndreas Haerter__missing__ = "#ba0000" 112*fa5fcacaSAndreas Haerter 113*fa5fcacaSAndreas Haerter; highlighting search snippets 114*fa5fcacaSAndreas Haerter__highlight__ = "#ff9" 115*fa5fcacaSAndreas Haerter 116*fa5fcacaSAndreas Haerter 117*fa5fcacaSAndreas Haerter;-------------------------------------------------------------------------- 118*fa5fcacaSAndreas Haerter;------ for keeping old templates and plugins compatible to the old pattern 119*fa5fcacaSAndreas Haerter; (to be deleted at the next or after next DokuWiki release) 120*fa5fcacaSAndreas Haerter; 121*fa5fcacaSAndreas Haerter;note to myself: don't forget to respect the workaround within "bug49642.php" 122*fa5fcacaSAndreas Haerter; when changing values in here. 123*fa5fcacaSAndreas Haerter__white__ = "#fff" 124*fa5fcacaSAndreas Haerter__lightgray__ = "#f5f5f5" 125*fa5fcacaSAndreas Haerter__mediumgray__ = "#ccc" 126*fa5fcacaSAndreas Haerter__darkgray__ = "#666" 127*fa5fcacaSAndreas Haerter__black__ = "#000" 128*fa5fcacaSAndreas Haerter 129*fa5fcacaSAndreas Haerter; these are the shades of blue 130*fa5fcacaSAndreas Haerter__lighter__ = "#f7f9fa" 131*fa5fcacaSAndreas Haerter__light__ = "#eef3f8" 132*fa5fcacaSAndreas Haerter__medium__ = "#dee7ec" 133*fa5fcacaSAndreas Haerter__dark__ = "#8cacbb" 134*fa5fcacaSAndreas Haerter__darker__ = "#638c9c" 135