ber-security.graylog.graylog-plugin-alert-wizard.5.2.1.source-code.52fd09d1713345d9ee64dc7daea9fd6f.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 v=(i,c)=>()=>(c||i((c={exports:{}}).exports,c),c.exports);var R=v((y,k)=>{ace.define("ace/mode/maze_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(i,c,p){"use strict";var u=i("../lib/oop"),m=i("./text_highlight_rules").TextHighlightRules,d=function(){this.$rules={start:[{token:"keyword.control",regex:/##|``/,comment:"Wall"},{token:"entity.name.tag",regex:/\.\./,comment:"Path"},{token:"keyword.control",regex:/<>/,comment:"Splitter"},{token:"entity.name.tag",regex:/\*[\*A-Za-z0-9]/,comment:"Signal"},{token:"constant.numeric",regex:/[0-9]{2}/,comment:"Pause"},{token:"keyword.control",regex:/\^\^/,comment:"Start"},{token:"keyword.control",regex:/\(\)/,comment:"Hole"},{token:"support.function",regex:/>>/,comment:"Out"},{token:"support.function",regex:/>\//,comment:"Ln Out"},{token:"support.function",regex:/<,comment:"In"},{token:"keyword.control",regex:/--/,comment:"One use"},{token:"constant.language",regex:/%[LRUDNlrudn]/,comment:"Direction"},{token:["entity.name.function","keyword.other","keyword.operator","keyword.other","keyword.operator","constant.numeric","keyword.operator","keyword.other","keyword.operator","constant.numeric","string.quoted.double","string.quoted.single"],regex:/([A-Za-z][A-Za-z0-9])( *-> *)(?:([-+*\/]=)( *)((?:-)?)([0-9]+)|(=)( *)(?:((?:-)?)([0-9]+)|("[^"]*")|('[^']*')))/,comment:"Assignment function"},{token:["entity.name.function","keyword.other","keyword.control","keyword.other","keyword.operator","keyword.other","keyword.operator","constant.numeric","entity.name.tag","keyword.other","keyword.control","keyword.other","constant.language","keyword.other","keyword.control","keyword.other","constant.language"],regex:/([A-Za-z][A-Za-z0-9])( *-> *)(IF|if)( *)(?:([<>]=?|==)( *)((?:-)?)([0-9]+)|(\*[\*A-Za-z0-9]))( *)(THEN|then)( *)(%[LRUDNlrudn])(?:( *)(ELSE|else)( *)(%[LRUDNlrudn]))?/,comment:"Equality Function"},{token:"entity.name.function",regex:/[A-Za-z][A-Za-z0-9]/,comment:"Function cell"},{token:"comment.line.double-slash",regex:/ *\/\/.*/,comment:"Comment"}]},this.normalizeRules()};d.metaData={fileTypes:["mz"],name:"Maze",scopeName:"source.maze"},u.inherits(d,m),c.MazeHighlightRules=d});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(i,c,p){"use strict";var u=i("../../lib/oop"),m=i("../../range").Range,d=i("./fold_mode").FoldMode,f=c.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};u.inherits(f,d),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,o){var a=e.getLine(o);if(this.singleLineBlockCommentRe.test(a)&&!this.startRegionRe.test(a)&&!this.tripleStarBlockCommentRe.test(a))return"";var r=this._getFoldWidgetBase(e,t,o);return!r&&this.startRegionRe.test(a)?"start":r},this.getFoldWidgetRange=function(e,t,o,a){var r=e.getLine(o);if(this.startRegionRe.test(r))return this.getCommentRegionBlock(e,r,o);var n=r.match(this.foldingStartMarker);if(n){var g=n.index;if(n[1])return this.openingBracketBlock(e,n[1],o,g);var l=e.getCommentFoldRange(o,g+n[0].length,1);return l&&!l.isMultiLine()&&(a?l=this.getSectionRange(e,o):t!="all"&&(l=null)),l}if(t!=="markbegin"){var n=r.match(this.foldingStopMarker);if(n){var g=n.index+n[0].length;return n[1]?this.closingBracketBlock(e,n[1],o,g):e.getCommentFoldRange(o,g,-1)}}},this.getSectionRange=function(e,t){var o=e.getLine(t),a=o.search(/\S/),r=t,g=o.length;t=t+1;for(var l=t,n=e.getLength();++ts)break;var h=this.getFoldWidgetRange(e,"all",t);if(h){if(h.start.row<=r)break;if(h.isMultiLine())t=h.end.row;else if(a==s)break}l=t}}return new m(r,g,l,e.getLine(l).length)},this.getCommentRegionBlock=function(e,t,o){for(var a=t.search(/\s*$/),r=e.getLength(),g=o,l=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,n=1;++og)return new m(g,a,h,t.length)}}.call(f.prototype)});ace.define("ace/mode/maze",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/maze_highlight_rules","ace/mode/folding/cstyle"],function(i,c,p){"use strict";var u=i("../lib/oop"),m=i("./text").Mode,d=i("./maze_highlight_rules").MazeHighlightRules,f=i("./folding/cstyle").FoldMode,e=function(){this.HighlightRules=d,this.foldingRules=new f,this.$behaviour=this.$defaultBehaviour};u.inherits(e,m),function(){this.lineCommentStart="//",this.$id="ace/mode/maze",this.snippetFileId="ace/snippets/maze"}.call(e.prototype),c.Mode=e});(function(){ace.require(["ace/mode/maze"],function(i){typeof k=="object"&&typeof y=="object"&&k&&(k.exports=i)})})()});R();})();
//# sourceMappingURL=52fd09d1713345d9ee64dc7daea9fd6f.js.map