aboutsummaryrefslogtreecommitdiffstats
path: root/BSF/plugins/LocalFilesEditor/editarea/reg_syntax/html.js
diff options
context:
space:
mode:
authorvdigital <vdigital@piwigo.org>2008-05-23 22:38:14 +0000
committervdigital <vdigital@piwigo.org>2008-05-23 22:38:14 +0000
commitc55dbbc995e152af3f2c88662101b0643d2e171a (patch)
tree3862effd5384b7c39295ed6690c9ccafd1677e54 /BSF/plugins/LocalFilesEditor/editarea/reg_syntax/html.js
parent77fd1f51a3c5f5a52f72ef8a299fe368228e2285 (diff)
Removed file/folder
git-svn-id: http://piwigo.org/svn/trunk@2358 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'BSF/plugins/LocalFilesEditor/editarea/reg_syntax/html.js')
-rw-r--r--BSF/plugins/LocalFilesEditor/editarea/reg_syntax/html.js50
1 files changed, 0 insertions, 50 deletions
diff --git a/BSF/plugins/LocalFilesEditor/editarea/reg_syntax/html.js b/BSF/plugins/LocalFilesEditor/editarea/reg_syntax/html.js
deleted file mode 100644
index cc2a90e6e..000000000
--- a/BSF/plugins/LocalFilesEditor/editarea/reg_syntax/html.js
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
-* last update: 2006-08-24
-*/
-
-editAreaLoader.load_syntax["html"] = {
- 'COMMENT_SINGLE' : {}
- ,'COMMENT_MULTI' : {'<!--' : '-->'}
- ,'QUOTEMARKS' : {1: "'", 2: '"'}
- ,'KEYWORD_CASE_SENSITIVE' : false
- ,'KEYWORDS' : {
- }
- ,'OPERATORS' :[
- ]
- ,'DELIMITERS' :[
- ]
- ,'REGEXPS' : {
- 'doctype' : {
- 'search' : '()(<!DOCTYPE[^>]*>)()'
- ,'class' : 'doctype'
- ,'modifiers' : ''
- ,'execute' : 'before' // before or after
- }
- ,'tags' : {
- 'search' : '(<)(/?[a-z][^ \r\n\t>]*)([^>]*>)'
- ,'class' : 'tags'
- ,'modifiers' : 'gi'
- ,'execute' : 'before' // before or after
- }
- ,'attributes' : {
- 'search' : '( |\n|\r|\t)([^ \r\n\t=]+)(=)'
- ,'class' : 'attributes'
- ,'modifiers' : 'g'
- ,'execute' : 'before' // before or after
- }
- }
- ,'STYLES' : {
- 'COMMENTS': 'color: #AAAAAA;'
- ,'QUOTESMARKS': 'color: #6381F8;'
- ,'KEYWORDS' : {
- }
- ,'OPERATORS' : 'color: #E775F0;'
- ,'DELIMITERS' : ''
- ,'REGEXPS' : {
- 'attributes': 'color: #B1AC41;'
- ,'tags': 'color: #E62253;'
- ,'doctype': 'color: #8DCFB5;'
- ,'test': 'color: #00FF00;'
- }
- }
-};