~yoboy-leguesh/ubuntu-fr-doc/maj20150810a

« back to all changes in this revision

Viewing changes to inc/geshi/css.php

  • Committer: YoBoY
  • Date: 2012-10-24 19:05:18 UTC
  • mfrom: (114.1.3 maj-AdoraBelle)
  • Revision ID: yoboy.leguesh@gmail.com-20121024190518-bgtic5m3dt8gnzfn
Mise à jour de Dokuwiki 2012-10-13 "Adora Belle"
Application des patch ubuntu-fr d'optimisation
Ajout des thèmes ubuntu-fr
Ajout des plugins
Mise à jour des plugins box, orphanswanted, pageredirect, tag, cloud, forcepreview, pagelist
Désactivation de la nouvelle option d'envoie de notifications mail en html
Application des derniers patchs correctifs de Dokuwiki.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 * -------
5
5
 * Author: Nigel McNie (nigel@geshi.org)
6
6
 * Copyright: (c) 2004 Nigel McNie (http://qbnz.com/highlighter/)
7
 
 * Release Version: 1.0.8.8
 
7
 * Release Version: 1.0.8.11
8
8
 * Date Started: 2004/06/18
9
9
 *
10
10
 * CSS language file for GeSHi.
58
58
        ),
59
59
    'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
60
60
    'QUOTEMARKS' => array('"', "'"),
61
 
    'ESCAPE_CHAR' => '\\',
 
61
    'ESCAPE_CHAR' => '',
 
62
    'ESCAPE_REGEXP' => array(
 
63
        //Simple Single Char Escapes
 
64
        //1 => "#\\\\[nfrtv\$\"\n\\\\]#i",
 
65
        //Hexadecimal Char Specs
 
66
        2 => "#\\\\[\da-fA-F]{1,6}\s?#i",
 
67
        //Unicode Char Specs
 
68
        //3 => "#\\\\u[\da-fA-F]{1,8}#i",
 
69
        ),
62
70
    'KEYWORDS' => array(
63
71
        1 => array(
64
72
            'aqua', 'azimuth', 'background-attachment', 'background-color',
65
73
            'background-image', 'background-position', 'background-repeat',
66
74
            'background', 'black', 'blue', 'border-bottom-color',
 
75
            'border-radius', 'border-top-left-radius', 'border-top-right-radius',
 
76
            'border-bottom-right-radius', 'border-bottom-left-radius',
67
77
            'border-bottom-style', 'border-bottom-width', 'border-left-color',
68
78
            'border-left-style', 'border-left-width', 'border-right',
69
79
            'border-right-color', 'border-right-style', 'border-right-width',
153
163
            'MULTI' => 'color: #808080; font-style: italic;'
154
164
            ),
155
165
        'ESCAPE_CHAR' => array(
156
 
            0 => 'color: #000099; font-weight: bold;'
 
166
            0 => 'color: #000099; font-weight: bold;',
 
167
            //1 => 'color: #000099; font-weight: bold;',
 
168
            2 => 'color: #000099; font-weight: bold;'
 
169
            //3 => 'color: #000099; font-weight: bold;'
157
170
            ),
158
171
        'BRACKETS' => array(
159
172
            0 => 'color: #00AA00;'
204
217
    'TAB_WIDTH' => 4,
205
218
    'PARSER_CONTROL' => array(
206
219
        'KEYWORDS' => array(
207
 
            'DISALLOWED_AFTER' => '(?![a-zA-Z0-9_\|%\\-&\.])'
 
220
            'DISALLOWED_AFTER' => '(?![\-a-zA-Z0-9_\|%\\-&\.])',
 
221
            'DISALLOWED_BEFORE' => '(?<![\-a-zA-Z0-9_\|%\\~&\.])'
208
222
        )
209
223
    )
210
224
);