mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/AbuseFilter.git
synced 2024-11-14 09:44:44 +00:00
f07bf610c0
- eslint-config-wikimedia 0.12.0 → 0.13.1 - grunt-banana-checker 0.7.0 → 0.7.1 - grunt-eslint 21.0.0 → 22.0.0 - grunt-stylelint 0.10.1 → 0.11.0 - stylelint 9.9.0 → 10.1.0 Also npm audit (fix) them afterwards. Addresses CVE-2019-10744. Change-Id: I3153e269decab7f2637e2a41934e0ee07a5df760
129 lines
3.4 KiB
JavaScript
129 lines
3.4 KiB
JavaScript
/* global ace */
|
|
ace.define( 'ace/mode/abusefilter_highlight_rules', [ 'require', 'exports', 'module', 'ace/lib/oop', 'ace/mode/text_highlight_rules' ], function ( require, exports ) {
|
|
'use strict';
|
|
|
|
var oop = require( 'ace/lib/oop' ),
|
|
TextHighlightRules = require( './text_highlight_rules' ).TextHighlightRules,
|
|
AFHighlightRules = function () {
|
|
var cfg = mw.config.get( 'aceConfig' ),
|
|
constants = ( 'true|false|null' ),
|
|
keywords = this.createKeywordMapper(
|
|
{
|
|
keyword: cfg.keywords,
|
|
'support.function': cfg.functions,
|
|
'constant.language': constants
|
|
},
|
|
// Null as default used in isKeywordOrVariable
|
|
null
|
|
),
|
|
variables = this.createKeywordMapper(
|
|
{
|
|
'variable.language': cfg.variables,
|
|
'invalid.deprecated': cfg.deprecated,
|
|
'invalid.illegal': cfg.disabled
|
|
},
|
|
'identifier',
|
|
true
|
|
),
|
|
isKeywordOrVariable = function ( value ) {
|
|
if ( keywords( value ) !== null ) {
|
|
return keywords( value );
|
|
} else {
|
|
return variables( value );
|
|
}
|
|
},
|
|
integer = '(?:(?:[1-9]\\d*)|(?:0))',
|
|
fraction = '(?:\\.\\d+)',
|
|
intPart = '(?:\\d+)',
|
|
pointFloat = '(?:(?:' + intPart + '?' + fraction + ')|(?:' + intPart + '\\.))',
|
|
floatNumber = '(?:' + pointFloat + ')',
|
|
singleQuoteString = '\'(?:[^\\\\]|\\\\.)*?\'',
|
|
doubleQuoteString = '"(?:[^\\\\]|\\\\.)*?"';
|
|
|
|
this.$rules = {
|
|
start: [ {
|
|
token: 'comment',
|
|
regex: '\\/\\*',
|
|
next: 'comment'
|
|
}, {
|
|
token: 'string',
|
|
regex: doubleQuoteString
|
|
}, {
|
|
token: 'string',
|
|
regex: singleQuoteString
|
|
}, {
|
|
token: 'constant.numeric',
|
|
regex: floatNumber
|
|
}, {
|
|
token: 'constant.numeric',
|
|
regex: integer + '\\b'
|
|
}, {
|
|
token: isKeywordOrVariable,
|
|
regex: '[a-zA-Z_][a-zA-Z0-9_]*\\b'
|
|
}, {
|
|
token: 'keyword.operator',
|
|
regex: cfg.operators
|
|
}, {
|
|
token: 'paren.lparen',
|
|
regex: '[\\[\\(]'
|
|
}, {
|
|
token: 'paren.rparen',
|
|
regex: '[\\]\\)]'
|
|
}, {
|
|
token: 'text',
|
|
regex: '\\s+|\\w+'
|
|
} ],
|
|
comment: [ {
|
|
token: 'comment',
|
|
regex: '\\*\\/',
|
|
next: 'start'
|
|
}, {
|
|
defaultToken: 'comment'
|
|
} ]
|
|
};
|
|
|
|
this.normalizeRules();
|
|
};
|
|
|
|
oop.inherits( AFHighlightRules, TextHighlightRules );
|
|
|
|
exports.AFHighlightRules = AFHighlightRules;
|
|
} );
|
|
|
|
ace.define( 'ace/mode/abusefilter', [ 'require', 'exports', 'module', 'ace/lib/oop', 'ace/mode/text', 'ace/mode/abusefilter_highlight_rules' ], function ( require, exports ) {
|
|
'use strict';
|
|
|
|
var oop = require( 'ace/lib/oop' ),
|
|
TextMode = require( './text' ).Mode,
|
|
AFHighlightRules = require( './abusefilter_highlight_rules' ).AFHighlightRules,
|
|
MatchingBraceOutdent = require( './matching_brace_outdent' ).MatchingBraceOutdent,
|
|
Mode = function () {
|
|
this.HighlightRules = AFHighlightRules;
|
|
this.$behaviour = this.$defaultBehaviour;
|
|
this.$outdent = new MatchingBraceOutdent();
|
|
};
|
|
oop.inherits( Mode, TextMode );
|
|
|
|
( function () {
|
|
this.blockComment = {
|
|
start: '/*',
|
|
end: '*/'
|
|
};
|
|
this.getNextLineIndent = function ( state, line ) {
|
|
var indent = this.$getIndent( line );
|
|
return indent;
|
|
};
|
|
this.checkOutdent = function ( state, line, input ) {
|
|
return this.$outdent.checkOutdent( line, input );
|
|
};
|
|
this.autoOutdent = function ( state, doc, row ) {
|
|
this.$outdent.autoOutdent( doc, row );
|
|
};
|
|
|
|
this.$id = 'ace/mode/abusefilter';
|
|
} )
|
|
.call( Mode.prototype );
|
|
|
|
exports.Mode = Mode;
|
|
} );
|