mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/CodeEditor
synced 2024-12-11 06:46:10 +00:00
7847555702
Updates ACE to commit: 4949e18f00e4dbf34fc8a213909ef6ae3e1a1015
This includes fixes for IE7/8 support, which was broken in the last ACE
release. Specifically
051128c16f (diff-502b909e9de186749df3051f8d4bfa42L137)
Bug: 64559
Change-Id: I0765c5f95de81a5ce9632f6eb5422b98c02941ff
68 lines
2 KiB
JavaScript
68 lines
2 KiB
JavaScript
define('ace/mode/lucene', ['require', 'exports', 'module' , 'ace/lib/oop', 'ace/mode/text', 'ace/mode/lucene_highlight_rules'], function(require, exports, module) {
|
|
|
|
|
|
var oop = require("../lib/oop");
|
|
var TextMode = require("./text").Mode;
|
|
var LuceneHighlightRules = require("./lucene_highlight_rules").LuceneHighlightRules;
|
|
|
|
var Mode = function() {
|
|
this.HighlightRules = LuceneHighlightRules;
|
|
};
|
|
|
|
oop.inherits(Mode, TextMode);
|
|
|
|
(function() {
|
|
this.$id = "ace/mode/lucene";
|
|
}).call(Mode.prototype);
|
|
|
|
exports.Mode = Mode;
|
|
});define('ace/mode/lucene_highlight_rules', ['require', 'exports', 'module' , 'ace/lib/oop', 'ace/lib/lang', 'ace/mode/text_highlight_rules'], function(require, exports, module) {
|
|
|
|
|
|
var oop = require("../lib/oop");
|
|
var lang = require("../lib/lang");
|
|
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
|
|
var LuceneHighlightRules = function() {
|
|
this.$rules = {
|
|
"start" : [
|
|
{
|
|
token : "constant.character.negation",
|
|
regex : "[\\-]"
|
|
}, {
|
|
token : "constant.character.interro",
|
|
regex : "[\\?]"
|
|
}, {
|
|
token : "constant.character.asterisk",
|
|
regex : "[\\*]"
|
|
}, {
|
|
token: 'constant.character.proximity',
|
|
regex: '~[0-9]+\\b'
|
|
}, {
|
|
token : 'keyword.operator',
|
|
regex: '(?:AND|OR|NOT)\\b'
|
|
}, {
|
|
token : "paren.lparen",
|
|
regex : "[\\(]"
|
|
}, {
|
|
token : "paren.rparen",
|
|
regex : "[\\)]"
|
|
}, {
|
|
token : "keyword",
|
|
regex : "[\\S]+:"
|
|
}, {
|
|
token : "string", // " string
|
|
regex : '".*?"'
|
|
}, {
|
|
token : "text",
|
|
regex : "\\s+"
|
|
}
|
|
]
|
|
};
|
|
};
|
|
|
|
oop.inherits(LuceneHighlightRules, TextHighlightRules);
|
|
|
|
exports.LuceneHighlightRules = LuceneHighlightRules;
|
|
});
|