All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ber-security.graylog.graylog-plugin-alert-wizard.5.2.1.source-code.4816d92f4fbed14925ed1946f4135365.js Maven / Gradle / Ivy

The newest version!
(()=>{var x=(r,s)=>()=>(s||r((s={exports:{}}).exports,s),s.exports);var R=x((p,k)=>{ace.define("ace/mode/json_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(r,s,v){"use strict";var f=r("../lib/oop"),u=r("./text_highlight_rules").TextHighlightRules,g=function(){this.$rules={start:[{token:"variable",regex:'["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]\\s*(?=:)'},{token:"string",regex:'"',next:"string"},{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:"text",regex:"['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"},{token:"comment",regex:"\\/\\/.*$"},{token:"comment.start",regex:"\\/\\*",next:"comment"},{token:"paren.lparen",regex:"[[({]"},{token:"paren.rparen",regex:"[\\])}]"},{token:"punctuation.operator",regex:/[,]/},{token:"text",regex:"\\s+"}],string:[{token:"constant.language.escape",regex:/\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|["\\\/bfnrt])/},{token:"string",regex:'"|$',next:"start"},{defaultToken:"string"}],comment:[{token:"comment.end",regex:"\\*\\/",next:"start"},{defaultToken:"comment"}]}};f.inherits(g,u),s.JsonHighlightRules=g});ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(r,s,v){"use strict";var f=r("../range").Range,u=function(){};(function(){this.checkOutdent=function(g,h){return/^\s+$/.test(g)?/^\s*\}/.test(h):!1},this.autoOutdent=function(g,h){var e=g.getLine(h),t=e.match(/^(\s*\})/);if(!t)return 0;var n=t[1].length,c=g.findMatchingBracket({row:h,column:n});if(!c||c.row==h)return 0;var i=this.$getIndent(g.getLine(c.row));g.replace(new f(h,0,h,n-1),i)},this.$getIndent=function(g){return g.match(/^\s*/)[0]}}).call(u.prototype),s.MatchingBraceOutdent=u});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(r,s,v){"use strict";var f=r("../../lib/oop"),u=r("../../range").Range,g=r("./fold_mode").FoldMode,h=s.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};f.inherits(h,g),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,t,n){var c=e.getLine(n);if(this.singleLineBlockCommentRe.test(c)&&!this.startRegionRe.test(c)&&!this.tripleStarBlockCommentRe.test(c))return"";var i=this._getFoldWidgetBase(e,t,n);return!i&&this.startRegionRe.test(c)?"start":i},this.getFoldWidgetRange=function(e,t,n,c){var i=e.getLine(n);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,n);var a=i.match(this.foldingStartMarker);if(a){var o=a.index;if(a[1])return this.openingBracketBlock(e,a[1],n,o);var l=e.getCommentFoldRange(n,o+a[0].length,1);return l&&!l.isMultiLine()&&(c?l=this.getSectionRange(e,n):t!="all"&&(l=null)),l}if(t!=="markbegin"){var a=i.match(this.foldingStopMarker);if(a){var o=a.index+a[0].length;return a[1]?this.closingBracketBlock(e,a[1],n,o):e.getCommentFoldRange(n,o,-1)}}},this.getSectionRange=function(e,t){var n=e.getLine(t),c=n.search(/\S/),i=t,o=n.length;t=t+1;for(var l=t,a=e.getLength();++td)break;var m=this.getFoldWidgetRange(e,"all",t);if(m){if(m.start.row<=i)break;if(m.isMultiLine())t=m.end.row;else if(c==d)break}l=t}}return new u(i,o,l,e.getLine(l).length)},this.getCommentRegionBlock=function(e,t,n){for(var c=t.search(/\s*$/),i=e.getLength(),o=n,l=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,a=1;++no)return new u(o,c,m,t.length)}}.call(h.prototype)});ace.define("ace/mode/json",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/json_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle","ace/worker/worker_client"],function(r,s,v){"use strict";var f=r("../lib/oop"),u=r("./text").Mode,g=r("./json_highlight_rules").JsonHighlightRules,h=r("./matching_brace_outdent").MatchingBraceOutdent,e=r("./behaviour/cstyle").CstyleBehaviour,t=r("./folding/cstyle").FoldMode,n=r("../worker/worker_client").WorkerClient,c=function(){this.HighlightRules=g,this.$outdent=new h,this.$behaviour=new e,this.foldingRules=new t};f.inherits(c,u),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(i,o,l){var a=this.$getIndent(o);if(i=="start"){var d=o.match(/^.*[\{\(\[]\s*$/);d&&(a+=l)}return a},this.checkOutdent=function(i,o,l){return this.$outdent.checkOutdent(o,l)},this.autoOutdent=function(i,o,l){this.$outdent.autoOutdent(o,l)},this.createWorker=function(i){var o=new n(["ace"],"ace/mode/json_worker","JsonWorker");return o.attachToDocument(i.getDocument()),o.on("annotate",function(l){i.setAnnotations(l.data)}),o.on("terminate",function(){i.clearAnnotations()}),o},this.$id="ace/mode/json"}.call(c.prototype),s.Mode=c});(function(){ace.require(["ace/mode/json"],function(r){typeof k=="object"&&typeof p=="object"&&k&&(k.exports=r)})})()});R();})();

//# sourceMappingURL=4816d92f4fbed14925ed1946f4135365.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy