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

web-interface.assets.84abf03cc94d264bb38020b4ac5f76e1.js Maven / Gradle / Ivy

There is a newer version: 6.1.4
Show newest version
(()=>{var v=(l,u)=>()=>(u||l((u={exports:{}}).exports,u),u.exports);var R=v((k,m)=>{ace.define("ace/mode/turtle_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(l,u,x){"use strict";var f=l("../lib/oop"),c=l("./text_highlight_rules").TextHighlightRules,g=function(){this.$rules={start:[{include:"#comments"},{include:"#strings"},{include:"#base-prefix-declarations"},{include:"#string-language-suffixes"},{include:"#string-datatype-suffixes"},{include:"#relative-urls"},{include:"#xml-schema-types"},{include:"#rdf-schema-types"},{include:"#owl-types"},{include:"#qnames"},{include:"#punctuation-operators"}],"#base-prefix-declarations":[{token:"keyword.other.prefix.turtle",regex:/@(?:base|prefix)/}],"#comments":[{token:["punctuation.definition.comment.turtle","comment.line.hash.turtle"],regex:/(#)(.*$)/}],"#owl-types":[{token:"support.type.datatype.owl.turtle",regex:/owl:[a-zA-Z]+/}],"#punctuation-operators":[{token:"keyword.operator.punctuation.turtle",regex:/;|,|\.|\(|\)|\[|\]/}],"#qnames":[{token:"entity.name.other.qname.turtle",regex:/(?:[a-zA-Z][-_a-zA-Z0-9]*)?:(?:[_a-zA-Z][-_a-zA-Z0-9]*)?/}],"#rdf-schema-types":[{token:"support.type.datatype.rdf.schema.turtle",regex:/rdfs?:[a-zA-Z]+|(?:^|\s)a(?:\s|$)/}],"#relative-urls":[{token:"string.quoted.other.relative.url.turtle",regex://,next:"pop"},{defaultToken:"string.quoted.other.relative.url.turtle"}]}],"#string-datatype-suffixes":[{token:"keyword.operator.datatype.suffix.turtle",regex:/\^\^/}],"#string-language-suffixes":[{token:["keyword.operator.language.suffix.turtle","constant.language.suffix.turtle"],regex:/(?!")(@)([a-z]+(?:\-[a-z0-9]+)*)/}],"#strings":[{token:"string.quoted.triple.turtle",regex:/"""/,push:[{token:"string.quoted.triple.turtle",regex:/"""/,next:"pop"},{defaultToken:"string.quoted.triple.turtle"}]},{token:"string.quoted.double.turtle",regex:/"/,push:[{token:"string.quoted.double.turtle",regex:/"/,next:"pop"},{token:"invalid.string.newline",regex:/$/},{token:"constant.character.escape.turtle",regex:/\\./},{defaultToken:"string.quoted.double.turtle"}]}],"#xml-schema-types":[{token:"support.type.datatype.xml.schema.turtle",regex:/xsd?:[a-z][a-zA-Z]+/}]},this.normalizeRules()};g.metaData={fileTypes:["ttl","nt"],name:"Turtle",scopeName:"source.turtle"},f.inherits(g,c),u.TurtleHighlightRules=g});ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(l,u,x){"use strict";var f=l("../../lib/oop"),c=l("../../range").Range,g=l("./fold_mode").FoldMode,p=u.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(p,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,r){var o=e.getLine(r);if(this.singleLineBlockCommentRe.test(o)&&!this.startRegionRe.test(o)&&!this.tripleStarBlockCommentRe.test(o))return"";var n=this._getFoldWidgetBase(e,t,r);return!n&&this.startRegionRe.test(o)?"start":n},this.getFoldWidgetRange=function(e,t,r,o){var n=e.getLine(r);if(this.startRegionRe.test(n))return this.getCommentRegionBlock(e,n,r);var i=n.match(this.foldingStartMarker);if(i){var s=i.index;if(i[1])return this.openingBracketBlock(e,i[1],r,s);var a=e.getCommentFoldRange(r,s+i[0].length,1);return a&&!a.isMultiLine()&&(o?a=this.getSectionRange(e,r):t!="all"&&(a=null)),a}if(t!=="markbegin"){var i=n.match(this.foldingStopMarker);if(i){var s=i.index+i[0].length;return i[1]?this.closingBracketBlock(e,i[1],r,s):e.getCommentFoldRange(r,s,-1)}}},this.getSectionRange=function(e,t){var r=e.getLine(t),o=r.search(/\S/),n=t,s=r.length;t=t+1;for(var a=t,i=e.getLength();++th)break;var d=this.getFoldWidgetRange(e,"all",t);if(d){if(d.start.row<=n)break;if(d.isMultiLine())t=d.end.row;else if(o==h)break}a=t}}return new c(n,s,a,e.getLine(a).length)},this.getCommentRegionBlock=function(e,t,r){for(var o=t.search(/\s*$/),n=e.getLength(),s=r,a=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,i=1;++rs)return new c(s,o,d,t.length)}}).call(p.prototype)});ace.define("ace/mode/turtle",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/turtle_highlight_rules","ace/mode/folding/cstyle"],function(l,u,x){"use strict";var f=l("../lib/oop"),c=l("./text").Mode,g=l("./turtle_highlight_rules").TurtleHighlightRules,p=l("./folding/cstyle").FoldMode,e=function(){this.HighlightRules=g,this.foldingRules=new p};f.inherits(e,c),(function(){this.$id="ace/mode/turtle"}).call(e.prototype),u.Mode=e});(function(){ace.require(["ace/mode/turtle"],function(l){typeof m=="object"&&typeof k=="object"&&m&&(m.exports=l)})})()});R();})();

//# sourceMappingURL=84abf03cc94d264bb38020b4ac5f76e1.js.map




© 2015 - 2024 Weber Informatics LLC | Privacy Policy