|
Revision 2, 3.7 kB
(checked in by fabien, 6 years ago)
|
initial import
|
- Property svn:mime-type set to
text/x-php
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
<?php |
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
|
|---|
| 26 |
|
|---|
| 27 |
|
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
|
|---|
| 35 |
|
|---|
| 36 |
|
|---|
| 37 |
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
| 42 |
|
|---|
| 43 |
|
|---|
| 44 |
|
|---|
| 45 |
|
|---|
| 46 |
$language_data = array ( |
|---|
| 47 |
'LANG_NAME' => 'Diff', |
|---|
| 48 |
'COMMENT_SINGLE' => array( |
|---|
| 49 |
0 => '--- ', |
|---|
| 50 |
1 => '+++ ', |
|---|
| 51 |
2 => '<', |
|---|
| 52 |
3 => '>', |
|---|
| 53 |
4 => '-', |
|---|
| 54 |
5 => '+', |
|---|
| 55 |
6 => '!', |
|---|
| 56 |
7 => '@@', |
|---|
| 57 |
8 => '*** ', |
|---|
| 58 |
|
|---|
| 59 |
/*10 => ' ', // All other rows starts with a space (bug?) */ |
|---|
| 60 |
), |
|---|
| 61 |
'COMMENT_MULTI' => array(), |
|---|
| 62 |
'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE, |
|---|
| 63 |
'QUOTEMARKS' => array(), |
|---|
| 64 |
'ESCAPE_CHAR' => ' ', |
|---|
| 65 |
'KEYWORDS' => array( |
|---|
| 66 |
0 => array( |
|---|
| 67 |
'\ No newline at end of file', |
|---|
| 68 |
), |
|---|
| 69 |
1 => array( |
|---|
| 70 |
'***************' |
|---|
| 71 |
), |
|---|
| 72 |
), |
|---|
| 73 |
'SYMBOLS' => array( |
|---|
| 74 |
), |
|---|
| 75 |
'CASE_SENSITIVE' => array( |
|---|
| 76 |
GESHI_COMMENTS => false, |
|---|
| 77 |
), |
|---|
| 78 |
'STYLES' => array( |
|---|
| 79 |
'KEYWORDS' => array( |
|---|
| 80 |
0 => 'color: #aaaaaa; font-style: italic;', |
|---|
| 81 |
1 => 'color: #dd6611;', |
|---|
| 82 |
), |
|---|
| 83 |
'COMMENTS' => array( |
|---|
| 84 |
0 => 'color: #228822;', |
|---|
| 85 |
1 => 'color: #228822;', |
|---|
| 86 |
2 => 'color: #991111;', |
|---|
| 87 |
3 => 'color: #00aaee;', |
|---|
| 88 |
4 => 'color: #991111;', |
|---|
| 89 |
5 => 'color: #00b000;', |
|---|
| 90 |
|
|---|
| 91 |
6 => 'color: #0011dd;', |
|---|
| 92 |
7 => 'color: #aaaa88;', |
|---|
| 93 |
8 => 'color: #228822;', |
|---|
| 94 |
|
|---|
| 95 |
/*10 => 'color: #000000;',*/ |
|---|
| 96 |
), |
|---|
| 97 |
'ESCAPE_CHAR' => array( |
|---|
| 98 |
), |
|---|
| 99 |
'BRACKETS' => array( |
|---|
| 100 |
), |
|---|
| 101 |
'STRINGS' => array( |
|---|
| 102 |
), |
|---|
| 103 |
'NUMBERS' => array( |
|---|
| 104 |
), |
|---|
| 105 |
'METHODS' => array( |
|---|
| 106 |
), |
|---|
| 107 |
'SYMBOLS' => array( |
|---|
| 108 |
), |
|---|
| 109 |
'SCRIPT' => array( |
|---|
| 110 |
), |
|---|
| 111 |
'REGEXPS' => array( |
|---|
| 112 |
0 => 'color: #aaaaaa;', |
|---|
| 113 |
|
|---|
| 114 |
), |
|---|
| 115 |
), |
|---|
| 116 |
'URLS' => array( |
|---|
| 117 |
), |
|---|
| 118 |
'OOLANG' => false, |
|---|
| 119 |
'OBJECT_SPLITTER' => '', |
|---|
| 120 |
'REGEXPS' => array( |
|---|
| 121 |
0 => "[0-9,]+[acd][0-9,]+", |
|---|
| 122 |
|
|---|
| 123 |
GESHI_SEARCH => '(\ )(.+)', |
|---|
| 124 |
GESHI_REPLACE => '\\2\\3', |
|---|
| 125 |
GESHI_MODIFIERS => '', |
|---|
| 126 |
GESHI_BEFORE => '\\1', |
|---|
| 127 |
GESHI_AFTER => '' |
|---|
| 128 |
),*/ |
|---|
| 129 |
), |
|---|
| 130 |
'STRICT_MODE_APPLIES' => GESHI_NEVER, |
|---|
| 131 |
'SCRIPT_DELIMITERS' => array( |
|---|
| 132 |
), |
|---|
| 133 |
'HIGHLIGHT_STRICT_BLOCK' => array( |
|---|
| 134 |
) |
|---|
| 135 |
); |
|---|
| 136 |
|
|---|
| 137 |
?> |
|---|
| 138 |
|
|---|