Zamiana skryptu edytora z editArea na CodeMirror.
[redakcja.git] / project / static / js / reg_syntax / java.js
diff --git a/project/static/js/reg_syntax/java.js b/project/static/js/reg_syntax/java.js
deleted file mode 100755 (executable)
index bf48b53..0000000
+++ /dev/null
@@ -1,56 +0,0 @@
-editAreaLoader.load_syntax["java"] = {\r
-'COMMENT_SINGLE': { 1: '//', 2: '@' }\r
-       , 'COMMENT_MULTI': { '/*': '*/' }\r
-       , 'QUOTEMARKS': { 1: "'", 2: '"' }\r
-       , 'KEYWORD_CASE_SENSITIVE': true\r
-       , 'KEYWORDS': {\r
-           'constants': [\r
-                       'null', 'false', 'true'\r
-               ]\r
-               , 'types': [\r
-                       'String', 'int', 'short', 'long', 'char', 'double', 'byte',\r
-                       'float', 'static', 'void', 'private', 'boolean', 'protected',\r
-                       'public', 'const', 'class', 'final', 'abstract', 'volatile',\r
-                       'enum', 'transient', 'interface'\r
-               ]\r
-               , 'statements': [\r
-            'this', 'extends', 'if', 'do', 'while', 'try', 'catch', 'finally',\r
-            'throw', 'throws', 'else', 'for', 'switch', 'continue', 'implements',\r
-            'break', 'case', 'default', 'goto'\r
-               ]\r
-               , 'keywords': [\r
-           'new', 'return', 'import', 'native', 'super', 'package', 'assert', 'synchronized',\r
-           'instanceof', 'strictfp'\r
-               ]\r
-       }\r
-       , 'OPERATORS': [\r
-               '+', '-', '/', '*', '=', '<', '>', '%', '!', '?', ':', '&'\r
-       ]\r
-       , 'DELIMITERS': [\r
-               '(', ')', '[', ']', '{', '}'\r
-       ]\r
-       , 'REGEXPS': {\r
-           'precompiler': {\r
-               'search': '()(#[^\r\n]*)()'\r
-                       , 'class': 'precompiler'\r
-                       , 'modifiers': 'g'\r
-                       , 'execute': 'before'\r
-           }\r
-       }\r
-       , 'STYLES': {\r
-           'COMMENTS': 'color: #AAAAAA;'\r
-               , 'QUOTESMARKS': 'color: #6381F8;'\r
-               , 'KEYWORDS': {\r
-                   'constants': 'color: #EE0000;'\r
-                       , 'types': 'color: #0000EE;'\r
-                       , 'statements': 'color: #60CA00;'\r
-                       , 'keywords': 'color: #48BDDF;'\r
-               }\r
-               , 'OPERATORS': 'color: #FF00FF;'\r
-               , 'DELIMITERS': 'color: #0038E1;'\r
-               , 'REGEXPS': {\r
-                   'precompiler': 'color: #009900;'\r
-                       , 'precompilerstring': 'color: #994400;'\r
-               }\r
-       }\r
-};\r