Various fixes...
[simplicity.git] / source / lib / simplicity / modules / admin / public / js / shBrushCss.js
blobebfc3399c4945def1e895f43470d77108026ddcc
1 /**\r
2  * SyntaxHighlighter\r
3  * http://alexgorbatchev.com/\r
4  *\r
5  * SyntaxHighlighter is donationware. If you are using it, please donate.\r
6  * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate\r
7  *\r
8  * @version\r
9  * 2.0.296 (March 01 2009)\r
10  * \r
11  * @copyright\r
12  * Copyright (C) 2004-2009 Alex Gorbatchev.\r
13  *\r
14  * @license\r
15  * This file is part of SyntaxHighlighter.\r
16  * \r
17  * SyntaxHighlighter is free software: you can redistribute it and/or modify\r
18  * it under the terms of the GNU General Public License as published by\r
19  * the Free Software Foundation, either version 3 of the License, or\r
20  * (at your option) any later version.\r
21  * \r
22  * SyntaxHighlighter is distributed in the hope that it will be useful,\r
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
25  * GNU General Public License for more details.\r
26  * \r
27  * You should have received a copy of the GNU General Public License\r
28  * along with SyntaxHighlighter.  If not, see <http://www.gnu.org/licenses/>.\r
29  */\r
30 SyntaxHighlighter.brushes.CSS = function()\r
31 {\r
32         function getKeywordsCSS(str)\r
33         {\r
34                 return '\\b([a-z_]|)' + str.replace(/ /g, '(?=:)\\b|\\b([a-z_\\*]|\\*|)') + '(?=:)\\b';\r
35         };\r
36         \r
37         function getValuesCSS(str)\r
38         {\r
39                 return '\\b' + str.replace(/ /g, '(?!-)(?!:)\\b|\\b()') + '\:\\b';\r
40         };\r
42         var keywords =  'ascent azimuth background-attachment background-color background-image background-position ' +\r
43                                         'background-repeat background baseline bbox border-collapse border-color border-spacing border-style border-top ' +\r
44                                         'border-right border-bottom border-left border-top-color border-right-color border-bottom-color border-left-color ' +\r
45                                         'border-top-style border-right-style border-bottom-style border-left-style border-top-width border-right-width ' +\r
46                                         'border-bottom-width border-left-width border-width border bottom cap-height caption-side centerline clear clip color ' +\r
47                                         'content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent direction display ' +\r
48                                         'elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-variant font-weight font ' +\r
49                                         'height left letter-spacing line-height list-style-image list-style-position list-style-type list-style margin-top ' +\r
50                                         'margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width min-height min-width orphans ' +\r
51                                         'outline-color outline-style outline-width outline overflow padding-top padding-right padding-bottom padding-left padding page ' +\r
52                                         'page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position ' +\r
53                                         'quotes right richness size slope src speak-header speak-numeral speak-punctuation speak speech-rate stemh stemv stress ' +\r
54                                         'table-layout text-align top text-decoration text-indent text-shadow text-transform unicode-bidi unicode-range units-per-em ' +\r
55                                         'vertical-align visibility voice-family volume white-space widows width widths word-spacing x-height z-index';\r
57         var values =    'above absolute all always aqua armenian attr aural auto avoid baseline behind below bidi-override black blink block blue bold bolder '+\r
58                                         'both bottom braille capitalize caption center center-left center-right circle close-quote code collapse compact condensed '+\r
59                                         'continuous counter counters crop cross crosshair cursive dashed decimal decimal-leading-zero default digits disc dotted double '+\r
60                                         'embed embossed e-resize expanded extra-condensed extra-expanded fantasy far-left far-right fast faster fixed format fuchsia '+\r
61                                         'gray green groove handheld hebrew help hidden hide high higher icon inline-table inline inset inside invert italic '+\r
62                                         'justify landscape large larger left-side left leftwards level lighter lime line-through list-item local loud lower-alpha '+\r
63                                         'lowercase lower-greek lower-latin lower-roman lower low ltr marker maroon medium message-box middle mix move narrower '+\r
64                                         'navy ne-resize no-close-quote none no-open-quote no-repeat normal nowrap n-resize nw-resize oblique olive once open-quote outset '+\r
65                                         'outside overline pointer portrait pre print projection purple red relative repeat repeat-x repeat-y rgb ridge right right-side '+\r
66                                         'rightwards rtl run-in screen scroll semi-condensed semi-expanded separate se-resize show silent silver slower slow '+\r
67                                         'small small-caps small-caption smaller soft solid speech spell-out square s-resize static status-bar sub super sw-resize '+\r
68                                         'table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group teal '+\r
69                                         'text-bottom text-top thick thin top transparent tty tv ultra-condensed ultra-expanded underline upper-alpha uppercase upper-latin '+\r
70                                         'upper-roman url visible wait white wider w-resize x-fast x-high x-large x-loud x-low x-slow x-small x-soft xx-large xx-small yellow';\r
72         var fonts =             '[mM]onospace [tT]ahoma [vV]erdana [aA]rial [hH]elvetica [sS]ans-serif [sS]erif [cC]ourier mono sans serif';\r
73         \r
74         this.regexList = [\r
75                 { regex: SyntaxHighlighter.regexLib.multiLineCComments,         css: 'comments' },      // multiline comments\r
76                 { regex: SyntaxHighlighter.regexLib.doubleQuotedString,         css: 'string' },        // double quoted strings\r
77                 { regex: SyntaxHighlighter.regexLib.singleQuotedString,         css: 'string' },        // single quoted strings\r
78                 { regex: /\#[a-fA-F0-9]{3,6}/g,                                                         css: 'value' },         // html colors\r
79                 { regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g,                           css: 'value' },         // sizes\r
80                 { regex: /!important/g,                                                                         css: 'color3' },        // !important\r
81                 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'),            css: 'keyword' },       // keywords\r
82                 { regex: new RegExp(getValuesCSS(values), 'g'),                         css: 'value' },         // values\r
83                 { regex: new RegExp(this.getKeywords(fonts), 'g'),                      css: 'color1' }         // fonts\r
84                 ];\r
86         this.forHtmlScript({ \r
87                 left: /(&lt;|<)\s*style.*?(&gt;|>)/gi, \r
88                 right: /(&lt;|<)\/\s*style\s*(&gt;|>)/gi \r
89                 });\r
90 };\r
92 SyntaxHighlighter.brushes.CSS.prototype = new SyntaxHighlighter.Highlighter();\r
93 SyntaxHighlighter.brushes.CSS.aliases   = ['css'];\r