From 1c5685d68f1b73270fb814fe04cbb490eb90ba5f Mon Sep 17 00:00:00 2001 From: mensonge Date: Fri, 14 Nov 2008 15:39:19 +0000 Subject: Minor fix: Remove DOJO library (60Mo) replaced by link to Google CDN (online DOJO library) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@159 b3834d28-1941-0410-a4f8-b48e95affb8f --- includes/js/dojox/highlight/languages/css.js | 96 ---------------------------- 1 file changed, 96 deletions(-) delete mode 100644 includes/js/dojox/highlight/languages/css.js (limited to 'includes/js/dojox/highlight/languages/css.js') diff --git a/includes/js/dojox/highlight/languages/css.js b/includes/js/dojox/highlight/languages/css.js deleted file mode 100644 index 7dfead0..0000000 --- a/includes/js/dojox/highlight/languages/css.js +++ /dev/null @@ -1,96 +0,0 @@ -if(!dojo._hasResource["dojox.highlight.languages.css"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dojox.highlight.languages.css"] = true; -dojo.provide("dojox.highlight.languages.css"); - -dojo.require("dojox.highlight._base"); -dojo.require("dojox.highlight.languages.html"); - -(function(){ - var dh = dojox.highlight, dhc = dh.constants, dhl = dh.languages; - dhl.css = { - defaultMode: { - contains: ['id', 'class', 'attr_selector', 'rules', 'comment'], - keywords: dhl.html.HTML_TAGS, - lexems: [dhc.IDENT_RE], - illegal: '=' - }, - case_insensitive: true, - modes: [ - { - className: 'id', - begin: '\\#[A-Za-z0-9_-]+', end: '^' - }, - { - className: 'class', - begin: '\\.[A-Za-z0-9_-]+', end: '^', - relevance: 0 - }, - { - className: 'attr_selector', - begin: '\\[', end: '\\]', - illegal: '$' - }, - { - className: 'rules', - begin: '{', end: '}', - lexems: ['[A-Za-z-]+'], - keywords: { - 'play-during': 1, 'counter-reset': 1, - 'counter-increment': 1, 'min-height': 1, 'quotes': 1, - 'border-top': 1, 'pitch': 1, 'font': 1, 'pause': 1, - 'list-style-image': 1, 'border-width': 1, 'cue': 1, - 'outline-width': 1, 'border-left': 1, 'elevation': 1, - 'richness': 1, 'speech-rate': 1, 'border-bottom': 1, - 'border-spacing': 1, 'background': 1, 'list-style-type': 1, - 'text-align': 1, 'page-break-inside': 1, 'orphans': 1, - 'page-break-before': 1, 'text-transform': 1, - 'line-height': 1, 'padding-left': 1, 'font-size': 1, - 'right': 1, 'word-spacing': 1, 'padding-top': 1, - 'outline-style': 1, 'bottom': 1, 'content': 1, - 'border-right-style': 1, 'padding-right': 1, - 'border-left-style': 1, 'voice-family': 1, - 'background-color': 1, 'border-bottom-color': 1, - 'outline-color': 1, 'unicode-bidi': 1, 'max-width': 1, - 'font-family': 1, 'caption-side': 1, - 'border-right-width': 1, 'pause-before': 1, - 'border-top-style': 1, 'color': 1, 'border-collapse': 1, - 'border-bottom-width': 1, 'float': 1, 'height': 1, - 'max-height': 1, 'margin-right': 1, 'border-top-width': 1, - 'speak': 1, 'speak-header': 1, 'top': 1, 'cue-before': 1, - 'min-width': 1, 'width': 1, 'font-variant': 1, - 'border-top-color': 1, 'background-position': 1, - 'empty-cells': 1, 'direction': 1, 'border-right': 1, - 'visibility': 1, 'padding': 1, 'border-style': 1, - 'background-attachment': 1, 'overflow': 1, - 'border-bottom-style': 1, 'cursor': 1, 'margin': 1, - 'display': 1, 'border-left-width': 1, 'letter-spacing': 1, - 'vertical-align': 1, 'clip': 1, 'border-color': 1, - 'list-style': 1, 'padding-bottom': 1, 'pause-after': 1, - 'speak-numeral': 1, 'margin-left': 1, 'widows': 1, - 'border': 1, 'font-style': 1, 'border-left-color': 1, - 'pitch-range': 1, 'background-repeat': 1, - 'table-layout': 1, 'margin-bottom': 1, - 'speak-punctuation': 1, 'font-weight': 1, - 'border-right-color': 1, 'page-break-after': 1, - 'position': 1, 'white-space': 1, 'text-indent': 1, - 'background-image': 1, 'volume': 1, 'stress': 1, - 'outline': 1, 'clear': 1, 'z-index': 1, - 'text-decoration': 1, 'margin-top': 1, 'azimuth': 1, - 'cue-after': 1, 'left': 1, 'list-style-position': 1 - }, - contains: ['comment', 'value'] - }, - dhc.C_BLOCK_COMMENT_MODE, - { - className: 'value', - begin: ':', - end: ';', - endsWithParent: true, - excludeBegin: true, - excludeEnd: true - } - ] - }; -})(); - -} -- cgit v1.2.3-54-g00ecf