##// END OF EJS Templates
repositories: allow updating repository settings for users without store-in-root permissions...
repositories: allow updating repository settings for users without store-in-root permissions in case repository name didn't change. - when an user owns repository in root location, and isn't allow to create repositories in root before we failed to allow this user to update such repository settings due to this validation. We'll now check if name didn't change and in this case allow to update since this doesn't store any new data in root location.

File last commit:

r4105:10488616 default
r4415:fc1f6c1b default
Show More
htmlmixed.js
152 lines | 5.5 KiB | application/javascript | JavascriptLexer
project: added all source files and assets
r1 // CodeMirror, copyright (c) by Marijn Haverbeke and others
codemirror: bumped to version 5.49.2
r4105 // Distributed under an MIT license: https://codemirror.net/LICENSE
project: added all source files and assets
r1
(function(mod) {
if (typeof exports == "object" && typeof module == "object") // CommonJS
mod(require("../../lib/codemirror"), require("../xml/xml"), require("../javascript/javascript"), require("../css/css"));
else if (typeof define == "function" && define.amd) // AMD
define(["../../lib/codemirror", "../xml/xml", "../javascript/javascript", "../css/css"], mod);
else // Plain browser env
mod(CodeMirror);
})(function(CodeMirror) {
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 "use strict";
project: added all source files and assets
r1
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 var defaultTags = {
script: [
["lang", /(javascript|babel)/i, "javascript"],
codemirror: bumped to version 5.49.2
r4105 ["type", /^(?:text|application)\/(?:x-)?(?:java|ecma)script$|^module$|^$/i, "javascript"],
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 ["type", /./, "text/plain"],
[null, null, "javascript"]
],
style: [
["lang", /^css$/i, "css"],
["type", /^(text\/)?(x-)?(stylesheet|css)$/i, "css"],
["type", /./, "text/plain"],
[null, null, "css"]
]
};
project: added all source files and assets
r1 function maybeBackup(stream, pat, style) {
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 var cur = stream.current(), close = cur.search(pat);
if (close > -1) {
stream.backUp(cur.length - close);
} else if (cur.match(/<\/?$/)) {
project: added all source files and assets
r1 stream.backUp(cur.length);
if (!stream.match(pat, false)) stream.match(cur);
}
return style;
}
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346
var attrRegexpCache = {};
function getAttrRegexp(attr) {
var regexp = attrRegexpCache[attr];
if (regexp) return regexp;
return attrRegexpCache[attr] = new RegExp("\\s+" + attr + "\\s*=\\s*('|\")?([^'\"]+)('|\")?\\s*");
}
codemirror: bumped to version 5.49.2
r4105 function getAttrValue(text, attr) {
var match = text.match(getAttrRegexp(attr))
return match ? /^\s*(.*?)\s*$/.exec(match[2])[1] : ""
project: added all source files and assets
r1 }
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346
function getTagRegexp(tagName, anchored) {
return new RegExp((anchored ? "^" : "") + "<\/\s*" + tagName + "\s*>", "i");
}
function addTags(from, to) {
for (var tag in from) {
var dest = to[tag] || (to[tag] = []);
var source = from[tag];
for (var i = source.length - 1; i >= 0; i--)
dest.unshift(source[i])
project: added all source files and assets
r1 }
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 }
codemirror: bumped to version 5.49.2
r4105 function findMatchingMode(tagInfo, tagText) {
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 for (var i = 0; i < tagInfo.length; i++) {
var spec = tagInfo[i];
codemirror: bumped to version 5.49.2
r4105 if (!spec[0] || spec[1].test(getAttrValue(tagText, spec[0]))) return spec[2];
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 }
project: added all source files and assets
r1 }
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 CodeMirror.defineMode("htmlmixed", function (config, parserConfig) {
var htmlMode = CodeMirror.getMode(config, {
name: "xml",
htmlMode: true,
multilineTagIndentFactor: parserConfig.multilineTagIndentFactor,
multilineTagIndentPastTag: parserConfig.multilineTagIndentPastTag
});
project: added all source files and assets
r1
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 var tags = {};
var configTags = parserConfig && parserConfig.tags, configScript = parserConfig && parserConfig.scriptTypes;
addTags(defaultTags, tags);
if (configTags) addTags(configTags, tags);
if (configScript) for (var i = configScript.length - 1; i >= 0; i--)
tags.script.unshift(["type", configScript[i].matches, configScript[i].mode])
project: added all source files and assets
r1
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 function html(stream, state) {
codemirror: bumped to version 5.49.2
r4105 var style = htmlMode.token(stream, state.htmlState), tag = /\btag\b/.test(style), tagName
if (tag && !/[<>\s\/]/.test(stream.current()) &&
(tagName = state.htmlState.tagName && state.htmlState.tagName.toLowerCase()) &&
tags.hasOwnProperty(tagName)) {
state.inTag = tagName + " "
} else if (state.inTag && tag && />$/.test(stream.current())) {
var inTag = /^([\S]+) (.*)/.exec(state.inTag)
state.inTag = null
var modeSpec = stream.current() == ">" && findMatchingMode(tags[inTag[1]], inTag[2])
var mode = CodeMirror.getMode(config, modeSpec)
var endTagA = getTagRegexp(inTag[1], true), endTag = getTagRegexp(inTag[1], false);
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 state.token = function (stream, state) {
if (stream.match(endTagA, false)) {
state.token = html;
state.localState = state.localMode = null;
return null;
}
return maybeBackup(stream, endTag, state.localMode.token(stream, state.localState));
};
state.localMode = mode;
codemirror: bumped to version 5.49.2
r4105 state.localState = CodeMirror.startState(mode, htmlMode.indent(state.htmlState, "", ""));
} else if (state.inTag) {
state.inTag += stream.current()
if (stream.eol()) state.inTag += " "
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 }
return style;
};
return {
startState: function () {
codemirror: bumped to version 5.49.2
r4105 var state = CodeMirror.startState(htmlMode);
return {token: html, inTag: null, localMode: null, localState: null, htmlState: state};
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 },
project: added all source files and assets
r1
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 copyState: function (state) {
var local;
if (state.localState) {
local = CodeMirror.copyState(state.localMode, state.localState);
}
codemirror: bumped to version 5.49.2
r4105 return {token: state.token, inTag: state.inTag,
localMode: state.localMode, localState: local,
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 htmlState: CodeMirror.copyState(htmlMode, state.htmlState)};
},
token: function (stream, state) {
return state.token(stream, state);
},
project: added all source files and assets
r1
codemirror: bumped to version 5.49.2
r4105 indent: function (state, textAfter, line) {
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 if (!state.localMode || /^\s*<\//.test(textAfter))
codemirror: bumped to version 5.49.2
r4105 return htmlMode.indent(state.htmlState, textAfter, line);
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 else if (state.localMode.indent)
codemirror: bumped to version 5.49.2
r4105 return state.localMode.indent(state.localState, textAfter, line);
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 else
return CodeMirror.Pass;
},
project: added all source files and assets
r1
codemirror: update from 5.4.0 to 5.11.0, fixes #3154
r346 innerMode: function (state) {
return {state: state.localState || state.htmlState, mode: state.localMode || htmlMode};
}
};
}, "xml", "javascript", "css");
CodeMirror.defineMIME("text/html", "htmlmixed");
project: added all source files and assets
r1 });