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.54a7b0b5248e428a4a703329f36e286f.js Maven / Gradle / Ivy

There is a newer version: 6.1.1
Show newest version
(()=>{var v=(a,g)=>()=>(g||a((g={exports:{}}).exports,g),g.exports);var b=v((x,p)=>{ace.define("ace/mode/ion_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(a,g,k){"use strict";var h=a("../lib/oop"),s=a("./text_highlight_rules").TextHighlightRules,c=function(){var u="TRUE|FALSE",e=u,n="NULL.NULL|NULL.BOOL|NULL.INT|NULL.FLOAT|NULL.DECIMAL|NULL.TIMESTAMP|NULL.STRING|NULL.SYMBOL|NULL.BLOB|NULL.CLOB|NULL.STRUCT|NULL.LIST|NULL.SEXP|NULL",t=n,o=this.createKeywordMapper({"constant.language.bool.ion":e,"constant.language.null.ion":t},"constant.other.symbol.identifier.ion",!0),i={token:o,regex:"\\b\\w+(?:\\.\\w+)?\\b"};this.$rules={start:[{include:"value"}],value:[{include:"whitespace"},{include:"comment"},{include:"annotation"},{include:"string"},{include:"number"},{include:"keywords"},{include:"symbol"},{include:"clob"},{include:"blob"},{include:"struct"},{include:"list"},{include:"sexp"}],sexp:[{token:"punctuation.definition.sexp.begin.ion",regex:"\\(",push:[{token:"punctuation.definition.sexp.end.ion",regex:"\\)",next:"pop"},{include:"comment"},{include:"value"},{token:"storage.type.symbol.operator.ion",regex:"[\\!\\#\\%\\&\\*\\+\\-\\./\\;\\<\\=\\>\\?\\@\\^\\`\\|\\~]+"}]}],comment:[{token:"comment.line.ion",regex:"//[^\\n]*"},{token:"comment.block.ion",regex:"/\\*",push:[{token:"comment.block.ion",regex:"[*]/",next:"pop"},{token:"comment.block.ion",regex:"[^*/]+"},{token:"comment.block.ion",regex:"[*/]+"}]}],list:[{token:"punctuation.definition.list.begin.ion",regex:"\\[",push:[{token:"punctuation.definition.list.end.ion",regex:"\\]",next:"pop"},{include:"comment"},{include:"value"},{token:"punctuation.definition.list.separator.ion",regex:","}]}],struct:[{token:"punctuation.definition.struct.begin.ion",regex:"\\{",push:[{token:"punctuation.definition.struct.end.ion",regex:"\\}",next:"pop"},{include:"comment"},{include:"value"},{token:"punctuation.definition.struct.separator.ion",regex:",|:"}]}],blob:[{token:["punctuation.definition.blob.begin.ion","string.other.blob.ion","punctuation.definition.blob.end.ion"],regex:'(\\{\\{)([^"]*)(\\}\\})'}],clob:[{token:["punctuation.definition.clob.begin.ion","string.other.clob.ion","punctuation.definition.clob.end.ion"],regex:'(\\{\\{)("[^"]*")(\\}\\})'}],symbol:[{token:"storage.type.symbol.quoted.ion",regex:"(['])((?:(?:\\\\')|(?:[^']))*?)(['])"},{token:"storage.type.symbol.identifier.ion",regex:"[\\$_a-zA-Z][\\$_a-zA-Z0-9]*"}],number:[{token:"constant.numeric.timestamp.ion",regex:"\\d{4}(?:-\\d{2})?(?:-\\d{2})?T(?:\\d{2}:\\d{2})(?::\\d{2})?(?:\\.\\d+)?(?:Z|[-+]\\d{2}:\\d{2})?"},{token:"constant.numeric.timestamp.ion",regex:"\\d{4}-\\d{2}-\\d{2}T?"},{token:"constant.numeric.integer.binary.ion",regex:"-?0[bB][01](?:_?[01])*"},{token:"constant.numeric.integer.hex.ion",regex:"-?0[xX][0-9a-fA-F](?:_?[0-9a-fA-F])*"},{token:"constant.numeric.float.ion",regex:"-?(?:0|[1-9](?:_?\\d)*)(?:\\.(?:\\d(?:_?\\d)*)?)?(?:[eE][+-]?\\d+)"},{token:"constant.numeric.float.ion",regex:"(?:[-+]inf)|(?:nan)"},{token:"constant.numeric.decimal.ion",regex:"-?(?:0|[1-9](?:_?\\d)*)(?:(?:(?:\\.(?:\\d(?:_?\\d)*)?)(?:[dD][+-]?\\d+)|\\.(?:\\d(?:_?\\d)*)?)|(?:[dD][+-]?\\d+))"},{token:"constant.numeric.integer.ion",regex:"-?(?:0|[1-9](?:_?\\d)*)"}],string:[{token:["punctuation.definition.string.begin.ion","string.quoted.double.ion","punctuation.definition.string.end.ion"],regex:'(["])((?:(?:\\\\")|(?:[^"]))*?)(["])'},{token:"punctuation.definition.string.begin.ion",regex:"'{3}",push:[{token:"punctuation.definition.string.end.ion",regex:"'{3}",next:"pop"},{token:"string.quoted.triple.ion",regex:"(?:\\\\'|[^'])+"},{token:"string.quoted.triple.ion",regex:"'"}]}],annotation:[{token:["variable.language.annotation.ion","punctuation.definition.annotation.ion"],regex:"('(?:[^']|\\\\\\\\|\\\\')*')\\s*(::)"},{token:["variable.language.annotation.ion","punctuation.definition.annotation.ion"],regex:"([\\$_a-zA-Z][\\$_a-zA-Z0-9]*)\\s*(::)"}],whitespace:[{token:"text.ion",regex:"\\s+"}]},this.$rules.keywords=[i],this.normalizeRules()};h.inherits(c,s),g.IonHighlightRules=c});ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,g,k){"use strict";var h=a("../range").Range,s=function(){};(function(){this.checkOutdent=function(c,u){return/^\s+$/.test(c)?/^\s*\}/.test(u):!1},this.autoOutdent=function(c,u){var e=c.getLine(u),n=e.match(/^(\s*\})/);if(!n)return 0;var t=n[1].length,o=c.findMatchingBracket({row:u,column:t});if(!o||o.row==u)return 0;var i=this.$getIndent(c.getLine(o.row));c.replace(new h(u,0,u,t-1),i)},this.$getIndent=function(c){return c.match(/^\s*/)[0]}}).call(s.prototype),g.MatchingBraceOutdent=s});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(a,g,k){"use strict";var h=a("../../lib/oop"),s=a("../../range").Range,c=a("./fold_mode").FoldMode,u=g.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};h.inherits(u,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 o=e.getLine(t);if(this.singleLineBlockCommentRe.test(o)&&!this.startRegionRe.test(o)&&!this.tripleStarBlockCommentRe.test(o))return"";var i=this._getFoldWidgetBase(e,n,t);return!i&&this.startRegionRe.test(o)?"start":i},this.getFoldWidgetRange=function(e,n,t,o){var i=e.getLine(t);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,t);var r=i.match(this.foldingStartMarker);if(r){var l=r.index;if(r[1])return this.openingBracketBlock(e,r[1],t,l);var d=e.getCommentFoldRange(t,l+r[0].length,1);return d&&!d.isMultiLine()&&(o?d=this.getSectionRange(e,t):n!="all"&&(d=null)),d}if(n!=="markbegin"){var r=i.match(this.foldingStopMarker);if(r){var l=r.index+r[0].length;return r[1]?this.closingBracketBlock(e,r[1],t,l):e.getCommentFoldRange(t,l,-1)}}},this.getSectionRange=function(e,n){var t=e.getLine(n),o=t.search(/\S/),i=n,l=t.length;n=n+1;for(var d=n,r=e.getLength();++nm)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(o==m)break}d=n}}return new s(i,l,d,e.getLine(d).length)},this.getCommentRegionBlock=function(e,n,t){for(var o=n.search(/\s*$/),i=e.getLength(),l=t,d=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,r=1;++tl)return new s(l,o,f,n.length)}}.call(u.prototype)});ace.define("ace/mode/ion",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/ion_highlight_rules","ace/mode/matching_brace_outdent","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"],function(a,g,k){"use strict";var h=a("../lib/oop"),s=a("./text").Mode,c=a("./ion_highlight_rules").IonHighlightRules,u=a("./matching_brace_outdent").MatchingBraceOutdent,e=a("./behaviour/cstyle").CstyleBehaviour,n=a("./folding/cstyle").FoldMode,t=function(){this.HighlightRules=c,this.$outdent=new u,this.$behaviour=new e,this.foldingRules=new n};h.inherits(t,s),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(o,i,l){var d=this.$getIndent(i);if(o=="start"){var r=i.match(/^.*[\{\(\[]\s*$/);r&&(d+=l)}return d},this.checkOutdent=function(o,i,l){return this.$outdent.checkOutdent(i,l)},this.autoOutdent=function(o,i,l){this.$outdent.autoOutdent(i,l)},this.$id="ace/mode/ion"}.call(t.prototype),g.Mode=t});(function(){ace.require(["ace/mode/ion"],function(a){typeof p=="object"&&typeof x=="object"&&p&&(p.exports=a)})})()});b();})();

//# sourceMappingURL=54a7b0b5248e428a4a703329f36e286f.js.map




© 2015 - 2025 Weber Informatics LLC | Privacy Policy