mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 10:18:38 +00:00
Update CodeMirror to version 5.49.0 (#8381)
* Update CodeMirror to version 5.49.0 * Update CodeMirror versions in librejs and VERSIONS
This commit is contained in:
committed by
Lauris BH
parent
6fa14ac3c8
commit
1e9b330525
@@ -9,7 +9,7 @@
|
||||
<script src="mscgen.js"></script>
|
||||
<style>.CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}</style>
|
||||
<div id=nav>
|
||||
<a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
|
||||
<a href="https://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
|
||||
<ul>
|
||||
<li><a href="../../index.html">Home</a>
|
||||
<li><a href="../../doc/manual.html">Manual</a>
|
||||
@@ -59,7 +59,7 @@ msc {
|
||||
# Xù - expansions to MscGen to support inline expressions
|
||||
# https://github.com/sverweij/mscgen_js/blob/master/wikum/xu.md
|
||||
# More samples: https://sverweij.github.io/mscgen_js
|
||||
msc {
|
||||
xu {
|
||||
hscale="0.8",
|
||||
width="700";
|
||||
|
||||
|
@@ -1,5 +1,5 @@
|
||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
||||
|
||||
// mode(s) for the sequence chart dsl's mscgen, xù and msgenny
|
||||
// For more information on mscgen, see the site of the original author:
|
||||
@@ -23,6 +23,7 @@
|
||||
mscgen: {
|
||||
"keywords" : ["msc"],
|
||||
"options" : ["hscale", "width", "arcgradient", "wordwraparcs"],
|
||||
"constants" : ["true", "false", "on", "off"],
|
||||
"attributes" : ["label", "idurl", "id", "url", "linecolor", "linecolour", "textcolor", "textcolour", "textbgcolor", "textbgcolour", "arclinecolor", "arclinecolour", "arctextcolor", "arctextcolour", "arctextbgcolor", "arctextbgcolour", "arcskip"],
|
||||
"brackets" : ["\\{", "\\}"], // [ and ] are brackets too, but these get handled in with lists
|
||||
"arcsWords" : ["note", "abox", "rbox", "box"],
|
||||
@@ -31,9 +32,10 @@
|
||||
"operators" : ["="]
|
||||
},
|
||||
xu: {
|
||||
"keywords" : ["msc"],
|
||||
"options" : ["hscale", "width", "arcgradient", "wordwraparcs", "watermark"],
|
||||
"attributes" : ["label", "idurl", "id", "url", "linecolor", "linecolour", "textcolor", "textcolour", "textbgcolor", "textbgcolour", "arclinecolor", "arclinecolour", "arctextcolor", "arctextcolour", "arctextbgcolor", "arctextbgcolour", "arcskip"],
|
||||
"keywords" : ["msc", "xu"],
|
||||
"options" : ["hscale", "width", "arcgradient", "wordwraparcs", "wordwrapentities", "watermark"],
|
||||
"constants" : ["true", "false", "on", "off", "auto"],
|
||||
"attributes" : ["label", "idurl", "id", "url", "linecolor", "linecolour", "textcolor", "textcolour", "textbgcolor", "textbgcolour", "arclinecolor", "arclinecolour", "arctextcolor", "arctextcolour", "arctextbgcolor", "arctextbgcolour", "arcskip", "title", "deactivate", "activate", "activation"],
|
||||
"brackets" : ["\\{", "\\}"], // [ and ] are brackets too, but these get handled in with lists
|
||||
"arcsWords" : ["note", "abox", "rbox", "box", "alt", "else", "opt", "break", "par", "seq", "strict", "neg", "critical", "ignore", "consider", "assert", "loop", "ref", "exc"],
|
||||
"arcsOthers" : ["\\|\\|\\|", "\\.\\.\\.", "---", "--", "<->", "==", "<<=>>", "<=>", "\\.\\.", "<<>>", "::", "<:>", "->", "=>>", "=>", ">>", ":>", "<-", "<<=", "<=", "<<", "<:", "x-", "-x"],
|
||||
@@ -42,7 +44,8 @@
|
||||
},
|
||||
msgenny: {
|
||||
"keywords" : null,
|
||||
"options" : ["hscale", "width", "arcgradient", "wordwraparcs", "watermark"],
|
||||
"options" : ["hscale", "width", "arcgradient", "wordwraparcs", "wordwrapentities", "watermark"],
|
||||
"constants" : ["true", "false", "on", "off", "auto"],
|
||||
"attributes" : null,
|
||||
"brackets" : ["\\{", "\\}"],
|
||||
"arcsWords" : ["note", "abox", "rbox", "box", "alt", "else", "opt", "break", "par", "seq", "strict", "neg", "critical", "ignore", "consider", "assert", "loop", "ref", "exc"],
|
||||
@@ -146,6 +149,9 @@
|
||||
if (!!pConfig.operators && pStream.match(wordRegexp(pConfig.operators), true, true))
|
||||
return "operator";
|
||||
|
||||
if (!!pConfig.constants && pStream.match(wordRegexp(pConfig.constants), true, true))
|
||||
return "variable";
|
||||
|
||||
/* attribute lists */
|
||||
if (!pConfig.inAttributeList && !!pConfig.attributes && pStream.match(/\[/, true, true)) {
|
||||
pConfig.inAttributeList = true;
|
||||
|
@@ -1,5 +1,5 @@
|
||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
||||
|
||||
(function() {
|
||||
var mode = CodeMirror.getMode({indentUnit: 2}, "mscgen");
|
||||
@@ -26,9 +26,18 @@
|
||||
|
||||
MT("xù/ msgenny keywords classify as 'base'",
|
||||
"[base watermark]",
|
||||
"[base wordwrapentities]",
|
||||
"[base alt loop opt ref else break par seq assert]"
|
||||
);
|
||||
|
||||
MT("xù/ msgenny constants classify as 'base'",
|
||||
"[base auto]"
|
||||
);
|
||||
|
||||
MT("mscgen constants classify as 'variable'",
|
||||
"[variable true]", "[variable false]", "[variable on]", "[variable off]"
|
||||
);
|
||||
|
||||
MT("mscgen options classify as keyword",
|
||||
"[keyword hscale]", "[keyword width]", "[keyword arcgradient]", "[keyword wordwraparcs]"
|
||||
);
|
||||
@@ -63,7 +72,7 @@
|
||||
MT("a typical program",
|
||||
"[comment # typical mscgen program]",
|
||||
"[keyword msc][base ][bracket {]",
|
||||
"[keyword wordwraparcs][operator =][string \"true\"][base , ][keyword hscale][operator =][string \"0.8\"][keyword arcgradient][operator =][base 30;]",
|
||||
"[keyword wordwraparcs][operator =][variable true][base , ][keyword hscale][operator =][string \"0.8\"][base , ][keyword arcgradient][operator =][base 30;]",
|
||||
"[base a][bracket [[][attribute label][operator =][string \"Entity A\"][bracket ]]][base ,]",
|
||||
"[base b][bracket [[][attribute label][operator =][string \"Entity B\"][bracket ]]][base ,]",
|
||||
"[base c][bracket [[][attribute label][operator =][string \"Entity C\"][bracket ]]][base ;]",
|
||||
|
@@ -1,5 +1,5 @@
|
||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
||||
|
||||
(function() {
|
||||
var mode = CodeMirror.getMode({indentUnit: 2}, "text/x-msgenny");
|
||||
@@ -20,9 +20,15 @@
|
||||
|
||||
MT("xù/ msgenny keywords classify as 'keyword'",
|
||||
"[keyword watermark]",
|
||||
"[keyword wordwrapentities]",
|
||||
"[keyword alt]","[keyword loop]","[keyword opt]","[keyword ref]","[keyword else]","[keyword break]","[keyword par]","[keyword seq]","[keyword assert]"
|
||||
);
|
||||
|
||||
MT("xù/ msgenny constants classify as 'variable'",
|
||||
"[variable auto]",
|
||||
"[variable true]", "[variable false]", "[variable on]", "[variable off]"
|
||||
);
|
||||
|
||||
MT("mscgen options classify as keyword",
|
||||
"[keyword hscale]", "[keyword width]", "[keyword arcgradient]", "[keyword wordwraparcs]"
|
||||
);
|
||||
@@ -56,7 +62,7 @@
|
||||
|
||||
MT("a typical program",
|
||||
"[comment # typical msgenny program]",
|
||||
"[keyword wordwraparcs][operator =][string \"true\"][base , ][keyword hscale][operator =][string \"0.8\"][base , ][keyword arcgradient][operator =][base 30;]",
|
||||
"[keyword wordwraparcs][operator =][variable true][base , ][keyword hscale][operator =][string \"0.8\"][base , ][keyword arcgradient][operator =][base 30;]",
|
||||
"[base a : ][string \"Entity A\"][base ,]",
|
||||
"[base b : Entity B,]",
|
||||
"[base c : Entity C;]",
|
||||
|
@@ -1,5 +1,5 @@
|
||||
// CodeMirror, copyright (c) by Marijn Haverbeke and others
|
||||
// Distributed under an MIT license: http://codemirror.net/LICENSE
|
||||
// Distributed under an MIT license: https://codemirror.net/LICENSE
|
||||
|
||||
(function() {
|
||||
var mode = CodeMirror.getMode({indentUnit: 2}, "text/x-xu");
|
||||
@@ -9,7 +9,13 @@
|
||||
"[keyword msc][bracket {]",
|
||||
"[base ]",
|
||||
"[bracket }]"
|
||||
);
|
||||
);
|
||||
|
||||
MT("empty chart",
|
||||
"[keyword xu][bracket {]",
|
||||
"[base ]",
|
||||
"[bracket }]"
|
||||
);
|
||||
|
||||
MT("comments",
|
||||
"[comment // a single line comment]",
|
||||
@@ -29,6 +35,11 @@
|
||||
"[keyword alt]","[keyword loop]","[keyword opt]","[keyword ref]","[keyword else]","[keyword break]","[keyword par]","[keyword seq]","[keyword assert]"
|
||||
);
|
||||
|
||||
MT("xù/ msgenny constants classify as 'variable'",
|
||||
"[variable auto]",
|
||||
"[variable true]", "[variable false]", "[variable on]", "[variable off]"
|
||||
);
|
||||
|
||||
MT("mscgen options classify as keyword",
|
||||
"[keyword hscale]", "[keyword width]", "[keyword arcgradient]", "[keyword wordwraparcs]"
|
||||
);
|
||||
@@ -49,7 +60,8 @@
|
||||
"[attribute id]","[attribute url]","[attribute idurl]",
|
||||
"[attribute linecolor]","[attribute linecolour]","[attribute textcolor]","[attribute textcolour]","[attribute textbgcolor]","[attribute textbgcolour]",
|
||||
"[attribute arclinecolor]","[attribute arclinecolour]","[attribute arctextcolor]","[attribute arctextcolour]","[attribute arctextbgcolor]","[attribute arctextbgcolour]",
|
||||
"[attribute arcskip][bracket ]]]"
|
||||
"[attribute arcskip]","[attribute title]",
|
||||
"[attribute activate]","[attribute deactivate]","[attribute activation][bracket ]]]"
|
||||
);
|
||||
|
||||
MT("outside an attribute list, attributes classify as base",
|
||||
@@ -57,18 +69,18 @@
|
||||
"[base id]","[base url]","[base idurl]",
|
||||
"[base linecolor]","[base linecolour]","[base textcolor]","[base textcolour]","[base textbgcolor]","[base textbgcolour]",
|
||||
"[base arclinecolor]","[base arclinecolour]","[base arctextcolor]","[base arctextcolour]","[base arctextbgcolor]","[base arctextbgcolour]",
|
||||
"[base arcskip]"
|
||||
"[base arcskip]", "[base title]"
|
||||
);
|
||||
|
||||
MT("a typical program",
|
||||
"[comment # typical mscgen program]",
|
||||
"[keyword msc][base ][bracket {]",
|
||||
"[keyword wordwraparcs][operator =][string \"true\"][keyword hscale][operator =][string \"0.8\"][keyword arcgradient][operator =][base 30;]",
|
||||
"[comment # typical xu program]",
|
||||
"[keyword xu][base ][bracket {]",
|
||||
"[keyword wordwraparcs][operator =][string \"true\"][base , ][keyword hscale][operator =][string \"0.8\"][base , ][keyword arcgradient][operator =][base 30, ][keyword width][operator =][variable auto][base ;]",
|
||||
"[base a][bracket [[][attribute label][operator =][string \"Entity A\"][bracket ]]][base ,]",
|
||||
"[base b][bracket [[][attribute label][operator =][string \"Entity B\"][bracket ]]][base ,]",
|
||||
"[base c][bracket [[][attribute label][operator =][string \"Entity C\"][bracket ]]][base ;]",
|
||||
"[base a ][keyword =>>][base b][bracket [[][attribute label][operator =][string \"Hello entity B\"][bracket ]]][base ;]",
|
||||
"[base a ][keyword <<][base b][bracket [[][attribute label][operator =][string \"Here's an answer dude!\"][bracket ]]][base ;]",
|
||||
"[base a ][keyword <<][base b][bracket [[][attribute label][operator =][string \"Here's an answer dude!\"][base , ][attribute title][operator =][string \"This is a title for this message\"][bracket ]]][base ;]",
|
||||
"[base c ][keyword :>][base *][bracket [[][attribute label][operator =][string \"What about me?\"][base , ][attribute textcolor][operator =][base red][bracket ]]][base ;]",
|
||||
"[bracket }]"
|
||||
);
|
||||
|
Reference in New Issue
Block a user