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.08d12eee2127dc573b757f69752c6704.js Maven / Gradle / Ivy

The newest version!
(()=>{var F=(r,i)=>()=>(i||r((i={exports:{}}).exports,i),i.exports);var S=F((R,y)=>{ace.define("ace/mode/sh_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(r,i,_){"use strict";var c=r("../lib/oop"),h=r("./text_highlight_rules").TextHighlightRules,d=i.reservedKeywords="!|{|}|case|do|done|elif|else|esac|fi|for|if|in|then|until|while|&|;|export|local|read|typeset|unset|elif|select|set|function|declare|readonly",s=i.languageConstructs="[|]|alias|bg|bind|break|builtin|cd|command|compgen|complete|continue|dirs|disown|echo|enable|eval|exec|exit|fc|fg|getopts|hash|help|history|jobs|kill|let|logout|popd|printf|pushd|pwd|return|set|shift|shopt|source|suspend|test|times|trap|type|ulimit|umask|unalias|wait",e=function(){var $=this.createKeywordMapper({keyword:d,"support.function.builtin":s,"invalid.deprecated":"debugger"},"identifier"),t="(?:(?:[1-9]\\d*)|(?:0))",g="(?:\\.\\d+)",n="(?:\\d+)",a="(?:(?:"+n+"?"+g+")|(?:"+n+"\\.))",f="(?:(?:"+a+"|"+n+"))",l="(?:"+f+"|"+a+")",p="(?:&"+n+")",m="[a-zA-Z_][a-zA-Z0-9_]*",x="(?:"+m+"(?==))",b="(?:\\$(?:SHLVL|\\$|\\!|\\?))",M="(?:"+m+"\\s*\\(\\))";this.$rules={start:[{token:"constant",regex:/\\./},{token:["text","comment"],regex:/(^|\s)(#.*)$/},{token:"string.start",regex:'"',push:[{token:"constant.language.escape",regex:/\\(?:[$`"\\]|$)/},{include:"variables"},{token:"keyword.operator",regex:/`/},{token:"string.end",regex:'"',next:"pop"},{defaultToken:"string"}]},{token:"string",regex:"\\$'",push:[{token:"constant.language.escape",regex:/\\(?:[abeEfnrtv\\'"]|x[a-fA-F\d]{1,2}|u[a-fA-F\d]{4}([a-fA-F\d]{4})?|c.|\d{1,3})/},{token:"string",regex:"'",next:"pop"},{defaultToken:"string"}]},{regex:"<<<",token:"keyword.operator"},{stateName:"heredoc",regex:"(<<-?)(\\s*)(['\"`]?)([\\w\\-]+)(['\"`]?)",onMatch:function(u,v,o){var H=u[2]=="-"?"indentedHeredoc":"heredoc",k=u.split(this.splitRegex);return o.push(H,k[4]),[{type:"constant",value:k[1]},{type:"text",value:k[2]},{type:"string",value:k[3]},{type:"support.class",value:k[4]},{type:"string",value:k[5]}]},rules:{heredoc:[{onMatch:function(u,v,o){return u===o[1]?(o.shift(),o.shift(),this.next=o[0]||"start","support.class"):(this.next="","string")},regex:".*$",next:"start"}],indentedHeredoc:[{token:"string",regex:"^	+"},{onMatch:function(u,v,o){return u===o[1]?(o.shift(),o.shift(),this.next=o[0]||"start","support.class"):(this.next="","string")},regex:".*$",next:"start"}]}},{regex:"$",token:"empty",next:function(u,v){return v[0]==="heredoc"||v[0]==="indentedHeredoc"?v[0]:u}},{token:["keyword","text","text","text","variable"],regex:/(declare|local|readonly)(\s+)(?:(-[fixar]+)(\s+))?([a-zA-Z_][a-zA-Z0-9_]*\b)/},{token:"variable.language",regex:b},{token:"variable",regex:x},{include:"variables"},{token:"support.function",regex:M},{token:"support.function",regex:p},{token:"string",start:"'",end:"'"},{token:"constant.numeric",regex:l},{token:"constant.numeric",regex:t+"\\b"},{token:$,regex:"[a-zA-Z_][a-zA-Z0-9_]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|~|<|>|<=|=>|=|!=|[%&|`]"},{token:"punctuation.operator",regex:";"},{token:"paren.lparen",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]]"},{token:"paren.rparen",regex:"[\\)\\}]",next:"pop"}],variables:[{token:"variable",regex:/(\$)(\w+)/},{token:["variable","paren.lparen"],regex:/(\$)(\()/,push:"start"},{token:["variable","paren.lparen","keyword.operator","variable","keyword.operator"],regex:/(\$)(\{)([#!]?)(\w+|[*@#?\-$!0_])(:[?+\-=]?|##?|%%?|,,?\/|\^\^?)?/,push:"start"},{token:"variable",regex:/\$[*@#?\-$!0_]/},{token:["variable","paren.lparen"],regex:/(\$)(\{)/,push:"start"}]},this.normalizeRules()};c.inherits(e,h),i.ShHighlightRules=e});ace.define("ace/mode/makefile_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules","ace/mode/sh_highlight_rules"],function(r,i,_){"use strict";var c=r("../lib/oop"),h=r("./text_highlight_rules").TextHighlightRules,d=r("./sh_highlight_rules"),s=function(){var e=this.createKeywordMapper({keyword:d.reservedKeywords,"support.function.builtin":d.languageConstructs,"invalid.deprecated":"debugger"},"string");this.$rules={start:[{token:"string.interpolated.backtick.makefile",regex:"`",next:"shell-start"},{token:"punctuation.definition.comment.makefile",regex:/#(?=.)/,next:"comment"},{token:["keyword.control.makefile"],regex:"^(?:\\s*\\b)(\\-??include|ifeq|ifneq|ifdef|ifndef|else|endif|vpath|export|unexport|define|endef|override)(?:\\b)"},{token:["entity.name.function.makefile","text"],regex:"^([^\\t ]+(?:\\s[^\\t ]+)*:)(\\s*.*)"}],comment:[{token:"punctuation.definition.comment.makefile",regex:/.+\\/},{token:"punctuation.definition.comment.makefile",regex:".+",next:"start"}],"shell-start":[{token:e,regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"string",regex:"\\w+"},{token:"string.interpolated.backtick.makefile",regex:"`",next:"start"}]}};c.inherits(s,h),i.MakefileHighlightRules=s});ace.define("ace/mode/folding/coffee",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode","ace/range"],function(r,i,_){"use strict";var c=r("../../lib/oop"),h=r("./fold_mode").FoldMode,d=r("../../range").Range,s=i.FoldMode=function(){};c.inherits(s,h),function(){this.getFoldWidgetRange=function(e,$,t){var g=this.indentationBlock(e,t);if(g)return g;var n=/\S/,a=e.getLine(t),f=a.search(n);if(!(f==-1||a[f]!="#")){for(var l=a.length,p=e.getLength(),m=t,x=t;++tm){var M=e.getLine(x).length;return new d(m,l,x,M)}}},this.getFoldWidget=function(e,$,t){var g=e.getLine(t),n=g.search(/\S/),a=e.getLine(t+1),f=e.getLine(t-1),l=f.search(/\S/),p=a.search(/\S/);if(n==-1)return e.foldWidgets[t-1]=l!=-1&&l




© 2015 - 2024 Weber Informatics LLC | Privacy Policy