ber-security.graylog.graylog-plugin-alert-wizard.5.2.1.source-code.039ae6f160cd9781bcbb003484e23cdc.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graylog-plugin-alert-wizard Show documentation
Show all versions of graylog-plugin-alert-wizard Show documentation
Graylog ${project.artifactId} plugin.
The newest version!
(()=>{var x=(r,h)=>()=>(h||r((h={exports:{}}).exports,h),h.exports);var R=x((k,v)=>{ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(r,h,p){"use strict";var m=r("../lib/oop"),d=r("./text_highlight_rules").TextHighlightRules,c=function(){this.$rules={start:[{token:"comment.doc.tag",regex:"@[\\w\\d_]+"},c.getTagRule(),{defaultToken:"comment.doc",caseInsensitive:!0}]}};m.inherits(c,d),c.getTagRule=function(s){return{token:"comment.doc.tag.storage.type",regex:"\\b(?:TODO|FIXME|XXX|HACK)\\b"}},c.getStartRule=function(s){return{token:"comment.doc",regex:"\\/\\*(?=\\*)",next:s}},c.getEndRule=function(s){return{token:"comment.doc",regex:"\\*\\/",next:s}},h.DocCommentHighlightRules=c});ace.define("ace/mode/csharp_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"],function(r,h,p){"use strict";var m=r("../lib/oop"),d=r("./doc_comment_highlight_rules").DocCommentHighlightRules,c=r("./text_highlight_rules").TextHighlightRules,s=function(){var e=this.createKeywordMapper({"variable.language":"this",keyword:"abstract|async|await|event|new|struct|as|explicit|null|switch|base|extern|object|this|bool|false|operator|throw|break|finally|out|true|byte|fixed|override|try|case|float|params|typeof|catch|for|private|uint|char|foreach|protected|ulong|checked|goto|public|unchecked|class|if|readonly|unsafe|const|implicit|ref|ushort|continue|in|return|using|decimal|int|sbyte|virtual|default|interface|sealed|volatile|delegate|internal|partial|short|void|do|is|sizeof|while|double|lock|stackalloc|else|long|static|enum|namespace|string|var|dynamic","constant.language":"null|true|false"},"identifier");this.$rules={start:[{token:"comment",regex:"\\/\\/.*$"},d.getStartRule("doc-start"),{token:"comment",regex:"\\/\\*",next:"comment"},{token:"string",regex:/'(?:.|\\(:?u[\da-fA-F]+|x[\da-fA-F]+|[tbrf'"n]))?'/},{token:"string",start:'"',end:'"|$',next:[{token:"constant.language.escape",regex:/\\(:?u[\da-fA-F]+|x[\da-fA-F]+|[tbrf'"n])/},{token:"invalid",regex:/\\./}]},{token:"string",start:'@"',end:'"',next:[{token:"constant.language.escape",regex:'""'}]},{token:"string",start:/\$"/,end:'"|$',next:[{token:"constant.language.escape",regex:/\\(:?$)|{{/},{token:"constant.language.escape",regex:/\\(:?u[\da-fA-F]+|x[\da-fA-F]+|[tbrf'"n])/},{token:"invalid",regex:/\\./}]},{token:"constant.numeric",regex:"0[xX][0-9a-fA-F]+\\b"},{token:"constant.numeric",regex:"[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"},{token:"constant.language.boolean",regex:"(?:true|false)\\b"},{token:e,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"!|\\$|%|&|\\*|\\-\\-|\\-|\\+\\+|\\+|~|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\\|\\||\\?\\:|\\*=|%=|\\+=|\\-=|&=|\\^=|\\b(?:in|instanceof|new|delete|typeof|void)"},{token:"keyword",regex:"^\\s*#(if|else|elif|endif|define|undef|warning|error|line|region|endregion|pragma)"},{token:"punctuation.operator",regex:"\\?|\\:|\\,|\\;|\\."},{token:"paren.lparen",regex:"[[({]"},{token:"paren.rparen",regex:"[\\])}]"},{token:"text",regex:"\\s+"}],comment:[{token:"comment",regex:"\\*\\/",next:"start"},{defaultToken:"comment"}]},this.embedRules(d,"doc-",[d.getEndRule("start")]),this.normalizeRules()};m.inherits(s,c),h.CSharpHighlightRules=s});ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(r,h,p){"use strict";var m=r("../range").Range,d=function(){};(function(){this.checkOutdent=function(c,s){return/^\s+$/.test(c)?/^\s*\}/.test(s):!1},this.autoOutdent=function(c,s){var e=c.getLine(s),n=e.match(/^(\s*\})/);if(!n)return 0;var t=n[1].length,a=c.findMatchingBracket({row:s,column:t});if(!a||a.row==s)return 0;var i=this.$getIndent(c.getLine(a.row));c.replace(new m(s,0,s,t-1),i)},this.$getIndent=function(c){return c.match(/^\s*/)[0]}}).call(d.prototype),h.MatchingBraceOutdent=d});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(r,h,p){"use strict";var m=r("../../lib/oop"),d=r("../../range").Range,c=r("./fold_mode").FoldMode,s=h.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};m.inherits(s,c),function(){this.foldingStartMarker=/([\{\[\(])[^\}\]\)]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{\(]*([\}\]\)])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,n,t){var a=e.getLine(t);if(this.singleLineBlockCommentRe.test(a)&&!this.startRegionRe.test(a)&&!this.tripleStarBlockCommentRe.test(a))return"";var i=this._getFoldWidgetBase(e,n,t);return!i&&this.startRegionRe.test(a)?"start":i},this.getFoldWidgetRange=function(e,n,t,a){var i=e.getLine(t);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,t);var o=i.match(this.foldingStartMarker);if(o){var g=o.index;if(o[1])return this.openingBracketBlock(e,o[1],t,g);var l=e.getCommentFoldRange(t,g+o[0].length,1);return l&&!l.isMultiLine()&&(a?l=this.getSectionRange(e,t):n!="all"&&(l=null)),l}if(n!=="markbegin"){var o=i.match(this.foldingStopMarker);if(o){var g=o.index+o[0].length;return o[1]?this.closingBracketBlock(e,o[1],t,g):e.getCommentFoldRange(t,g,-1)}}},this.getSectionRange=function(e,n){var t=e.getLine(n),a=t.search(/\S/),i=n,g=t.length;n=n+1;for(var l=n,o=e.getLength();++nu)break;var f=this.getFoldWidgetRange(e,"all",n);if(f){if(f.start.row<=i)break;if(f.isMultiLine())n=f.end.row;else if(a==u)break}l=n}}return new d(i,g,l,e.getLine(l).length)},this.getCommentRegionBlock=function(e,n,t){for(var a=n.search(/\s*$/),i=e.getLength(),g=t,l=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,o=1;++tg)return new d(g,a,f,n.length)}}.call(s.prototype)});ace.define("ace/mode/folding/csharp",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/cstyle"],function(r,h,p){"use strict";var m=r("../../lib/oop"),d=r("../../range").Range,c=r("./cstyle").FoldMode,s=h.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};m.inherits(s,c),function(){this.usingRe=/^\s*using \S/,this.getFoldWidgetRangeBase=this.getFoldWidgetRange,this.getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,n,t){var a=this.getFoldWidgetBase(e,n,t);if(!a){var i=e.getLine(t);if(/^\s*#region\b/.test(i))return"start";var g=this.usingRe;if(g.test(i)){var l=e.getLine(t-1),o=e.getLine(t+1);if(!g.test(l)&&g.test(o))return"start"}}return a},this.getFoldWidgetRange=function(e,n,t){var a=this.getFoldWidgetRangeBase(e,n,t);if(a)return a;var i=e.getLine(t);if(this.usingRe.test(i))return this.getUsingStatementBlock(e,i,t);if(/^\s*#region\b/.test(i))return this.getRegionBlock(e,i,t)},this.getUsingStatementBlock=function(e,n,t){for(var a=n.match(this.usingRe)[0].length-1,i=e.getLength(),g=t,l=t;++tg){var o=e.getLine(l).length;return new d(g,a,l,o)}},this.getRegionBlock=function(e,n,t){for(var a=n.search(/\s*$/),i=e.getLength(),g=t,l=/^\s*#(end)?region\b/,o=1;++tg)return new d(g,a,f,n.length)}}.call(s.prototype)});ace.define("ace/mode/csharp",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/csharp_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/cstyle","ace/mode/folding/csharp"],function(r,h,p){"use strict";var m=r("../lib/oop"),d=r("./text").Mode,c=r("./csharp_highlight_rules").CSharpHighlightRules,s=r("./matching_brace_outdent").MatchingBraceOutdent,e=r("./behaviour/cstyle").CstyleBehaviour,n=r("./folding/csharp").FoldMode,t=function(){this.HighlightRules=c,this.$outdent=new s,this.$behaviour=new e,this.foldingRules=new n};m.inherits(t,d),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(a,i,g){var l=this.$getIndent(i),o=this.getTokenizer().getLineTokens(i,a),u=o.tokens;if(u.length&&u[u.length-1].type=="comment")return l;if(a=="start"){var f=i.match(/^.*[\{\(\[]\s*$/);f&&(l+=g)}return l},this.checkOutdent=function(a,i,g){return this.$outdent.checkOutdent(i,g)},this.autoOutdent=function(a,i,g){this.$outdent.autoOutdent(i,g)},this.createWorker=function(a){return null},this.$id="ace/mode/csharp"}.call(t.prototype),h.Mode=t});(function(){ace.require(["ace/mode/csharp"],function(r){typeof v=="object"&&typeof k=="object"&&v&&(v.exports=r)})})()});R();})();
//# sourceMappingURL=039ae6f160cd9781bcbb003484e23cdc.js.map