package
This commit is contained in:
parent
baaf719506
commit
253d1621e0
70 changed files with 533 additions and 1465 deletions
15
.gitmodules
vendored
15
.gitmodules
vendored
|
|
@ -1,15 +1,12 @@
|
|||
[submodule "support/cockpit"]
|
||||
path = support/cockpit
|
||||
[submodule "node_modules/cockpit"]
|
||||
path = node_modules/cockpit
|
||||
url = git://github.com/ajaxorg/cockpit.git
|
||||
[submodule "support/pilot"]
|
||||
path = support/pilot
|
||||
[submodule "node_modules/pilot"]
|
||||
path = node_modules/pilot
|
||||
url = git://github.com/ajaxorg/pilot.git
|
||||
[submodule "support/dryice"]
|
||||
path = support/dryice
|
||||
[submodule "node_modules/dryice"]
|
||||
path = node_modules/dryice
|
||||
url = git://github.com/ajaxorg/dryice.git
|
||||
[submodule "doc/wiki"]
|
||||
path = doc/wiki
|
||||
url = git://github.com/ajaxorg/ace.wiki.git
|
||||
[submodule "support/jsdom"]
|
||||
path = support/jsdom
|
||||
url = git://github.com/ajaxorg/jsdom.git
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because it is too large
Load diff
1
build/demo/kitchen-sink/kitchen-sink.js
Normal file
1
build/demo/kitchen-sink/kitchen-sink.js
Normal file
File diff suppressed because one or more lines are too long
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 16 KiB |
|
|
@ -6,18 +6,18 @@
|
|||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title>Ace Kitchen Sink</title>
|
||||
<meta name="author" content="Fabian Jakobs">
|
||||
<link rel="stylesheet" href="demo/styles.css" type="text/css" media="screen" charset="utf-8">
|
||||
<link rel="stylesheet" href="demo/kitchen-sink/styles.css" type="text/css" media="screen" charset="utf-8">
|
||||
<!--
|
||||
|
||||
Ace
|
||||
version 0.2.0
|
||||
commit 6d4df6c5208b7ed4b10caf48dfd3d8c806406d04
|
||||
commit baaf719506b4c35c7b278d8631fab7217ab3f346
|
||||
|
||||
|
||||
-->
|
||||
</head>
|
||||
<body>
|
||||
<img id="logo" src="demo/logo.png">
|
||||
<img id="logo" src="demo/kitchen-sink/logo.png">
|
||||
<table id="controls">
|
||||
<tr>
|
||||
<td>
|
||||
|
|
@ -190,20 +190,20 @@
|
|||
<script type="text/javascript">
|
||||
var require = {
|
||||
paths: {
|
||||
demo: "../demo",
|
||||
ace: "../lib/ace",
|
||||
cockpit: "../support/cockpit/lib/cockpit",
|
||||
pilot: "../support/pilot/lib/pilot"
|
||||
demo: "..",
|
||||
ace: "../../lib/ace",
|
||||
cockpit: "../../node_modules/cockpit/lib/cockpit",
|
||||
pilot: "../../node_modules/pilot/lib/pilot"
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<script src="demo/require.js" data-main="demo/boot" type="text/javascript" charset="utf-8"></script>
|
||||
<script src="demo/kitchen-sink/require.js" data-main="demo/kitchen-sink/boot" type="text/javascript" charset="utf-8"></script>
|
||||
-->
|
||||
|
||||
|
||||
<script src="demo/kitchen-sink-uncompressed.js" data-ace-base="src" type="text/javascript" charset="utf-8"></script>
|
||||
<script src="demo/kitchen-sink/kitchen-sink-uncompressed.js" data-ace-base="src" type="text/javascript" charset="utf-8"></script>
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
require("demo/boot");
|
||||
require("demo/kitchen-sink/boot");
|
||||
</script>
|
||||
<!--
|
||||
|
||||
|
|
|
|||
|
|
@ -5347,11 +5347,11 @@ exports.setCssClass = function(node, className, include) {
|
|||
}
|
||||
};
|
||||
|
||||
function hasCssString(id, doc) {
|
||||
exports.hasCssString = function(id, doc) {
|
||||
var index = 0, sheets;
|
||||
doc = doc || document
|
||||
doc = doc || document;
|
||||
|
||||
if ((sheets = doc.styleSheets)) {
|
||||
if (doc.createStyleSheet && (sheets = doc.styleSheets)) {
|
||||
while (index < sheets.length)
|
||||
if (sheets[index++].title === id) return true;
|
||||
} else if ((sheets = doc.getElementsByTagName("style"))) {
|
||||
|
|
@ -5360,24 +5360,29 @@ function hasCssString(id, doc) {
|
|||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
exports.hasCssString = hasCssString;
|
||||
};
|
||||
|
||||
exports.importCssString = function importCssString(cssText, id, doc) {
|
||||
doc = doc || document;
|
||||
// If style is already imported return immediately.
|
||||
if (id && hasCssString(id, doc)) return null;
|
||||
if (id && exports.hasCssString(id, doc))
|
||||
return null;
|
||||
|
||||
var style;
|
||||
|
||||
if (doc.createStyleSheet) {
|
||||
var sheet = doc.createStyleSheet();
|
||||
sheet.cssText = cssText;
|
||||
if (id) sheet.title = id;
|
||||
style = doc.createStyleSheet();
|
||||
style.cssText = cssText;
|
||||
if (id)
|
||||
style.title = id;
|
||||
} else {
|
||||
var style = doc.createElementNS ?
|
||||
style = doc.createElementNS ?
|
||||
doc.createElementNS(XHTML_NS, "style") :
|
||||
doc.createElement("style");
|
||||
|
||||
if (id) style.id = id;
|
||||
style.appendChild(doc.createTextNode(cssText));
|
||||
if (id)
|
||||
style.id = id;
|
||||
|
||||
var head = doc.getElementsByTagName("head")[0] || doc.documentElement;
|
||||
head.appendChild(style);
|
||||
|
|
@ -5678,7 +5683,7 @@ if (document.documentElement.setCapture) {
|
|||
|
||||
if (!called) {
|
||||
called = true;
|
||||
releaseCaptureHandler();
|
||||
releaseCaptureHandler(e);
|
||||
}
|
||||
|
||||
exports.removeListener(el, "mousemove", eventHandler);
|
||||
|
|
@ -5703,7 +5708,7 @@ else {
|
|||
|
||||
function onMouseUp(e) {
|
||||
eventHandler && eventHandler(e);
|
||||
releaseCaptureHandler && releaseCaptureHandler();
|
||||
releaseCaptureHandler && releaseCaptureHandler(e);
|
||||
|
||||
document.removeEventListener("mousemove", onMouseMove, true);
|
||||
document.removeEventListener("mouseup", onMouseUp, true);
|
||||
|
|
@ -15819,20 +15824,11 @@ var RenderLoop = function(onRender, window) {
|
|||
var changes = _self.changes;
|
||||
_self.changes = 0;
|
||||
_self.onRender(changes);
|
||||
})
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
this.setTimeoutZero = window.requestAnimationFrame ||
|
||||
window.webkitRequestAnimationFrame ||
|
||||
window.mozRequestAnimationFrame ||
|
||||
window.oRequestAnimationFrame ||
|
||||
window.msRequestAnimationFrame;
|
||||
|
||||
if (this.setTimeoutZero) {
|
||||
this.setTimeoutZero = this.setTimeoutZero;
|
||||
} else if (window.postMessage) {
|
||||
|
||||
if (window.postMessage) {
|
||||
this.setTimeoutZero = (function(messageName, attached, listener) {
|
||||
return function setTimeoutZero(callback) {
|
||||
// Set up listener if not listening already.
|
||||
|
|
@ -15850,12 +15846,11 @@ var RenderLoop = function(onRender, window) {
|
|||
this.postMessage(messageName, "*");
|
||||
};
|
||||
})("zero-timeout-message", false, null);
|
||||
|
||||
} else {
|
||||
|
||||
}
|
||||
else {
|
||||
this.setTimeoutZero = function(callback) {
|
||||
this.setTimeout(callback, 0);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}).call(RenderLoop.prototype);
|
||||
|
|
@ -16302,7 +16297,30 @@ define("text!ace/css/editor.css", [], "@import url(//fonts.googleapis.com/css?fa
|
|||
"}\n" +
|
||||
"");
|
||||
|
||||
define("text!build/demo/styles.css", [], "html {\n" +
|
||||
define("text!ace/ext/static.css", [], ".ace_editor {\n" +
|
||||
" font-family: 'Monaco', 'Menlo', 'Droid Sans Mono', 'Courier New', monospace;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace_editor .ace_gutter { \n" +
|
||||
" width: 25px !important;\n" +
|
||||
" display: block;\n" +
|
||||
" float: left;\n" +
|
||||
" text-align: right; \n" +
|
||||
" padding: 0 3px 0 0; \n" +
|
||||
" margin-right: 3px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace-row { clear: both; }\n" +
|
||||
"\n" +
|
||||
"*.ace_gutter-cell {\n" +
|
||||
" -moz-user-select: -moz-none;\n" +
|
||||
" -khtml-user-select: none;\n" +
|
||||
" -webkit-user-select: none;\n" +
|
||||
" user-select: none;\n" +
|
||||
"}");
|
||||
|
||||
define("text!build/demo/kitchen-sink/styles.css", [], "html {\n" +
|
||||
" height: 100%;\n" +
|
||||
" width: 100%;\n" +
|
||||
" overflow: hidden;\n" +
|
||||
|
|
@ -16578,13 +16596,13 @@ define("text!build_support/style.css", [], "body {\n" +
|
|||
"\n" +
|
||||
"");
|
||||
|
||||
define("text!demo/docs/css.css", [], ".text-layer {\n" +
|
||||
define("text!demo/kitchen-sink/docs/css.css", [], ".text-layer {\n" +
|
||||
" font-family: Monaco, \"Courier New\", monospace;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
" cursor: text;\n" +
|
||||
"}");
|
||||
|
||||
define("text!demo/styles.css", [], "html {\n" +
|
||||
define("text!demo/kitchen-sink/styles.css", [], "html {\n" +
|
||||
" height: 100%;\n" +
|
||||
" width: 100%;\n" +
|
||||
" overflow: hidden;\n" +
|
||||
|
|
@ -17108,6 +17126,128 @@ define("text!lib/ace/css/editor.css", [], "@import url(//fonts.googleapis.com/cs
|
|||
"}\n" +
|
||||
"");
|
||||
|
||||
define("text!lib/ace/ext/static.css", [], ".ace_editor {\n" +
|
||||
" font-family: 'Monaco', 'Menlo', 'Droid Sans Mono', 'Courier New', monospace;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace_editor .ace_gutter { \n" +
|
||||
" width: 25px !important;\n" +
|
||||
" display: block;\n" +
|
||||
" float: left;\n" +
|
||||
" text-align: right; \n" +
|
||||
" padding: 0 3px 0 0; \n" +
|
||||
" margin-right: 3px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace-row { clear: both; }\n" +
|
||||
"\n" +
|
||||
"*.ace_gutter-cell {\n" +
|
||||
" -moz-user-select: -moz-none;\n" +
|
||||
" -khtml-user-select: none;\n" +
|
||||
" -webkit-user-select: none;\n" +
|
||||
" user-select: none;\n" +
|
||||
"}");
|
||||
|
||||
define("text!node_modules/cockpit/lib/gcli/ui/arg_fetch.css", [], "\n" +
|
||||
".gcliCmdDesc { font-weight: bold; text-align: center; }\n" +
|
||||
"\n" +
|
||||
".gcliAssignment.gcliGroupHidden .gcliGroupRow { display: none; }\n" +
|
||||
"\n" +
|
||||
".gcliParamGroup { font-weight: bold; }\n" +
|
||||
".gcliParamDescr { font-size: 80%; color: #999; }\n" +
|
||||
".gcliParamName { text-align: right; }\n" +
|
||||
".gcliParamError { font-size: 80%; color: #900; }\n" +
|
||||
".gcliParamSubmit { text-align: center; }\n" +
|
||||
"");
|
||||
|
||||
define("text!node_modules/cockpit/lib/gcli/ui/hinter.css", [], "\n" +
|
||||
".gcliHintParent {\n" +
|
||||
" color: #000;\n" +
|
||||
" background: rgba(250, 250, 250, 0.8);\n" +
|
||||
" border: 1px solid #AAA;\n" +
|
||||
" border-top-right-radius: 5px;\n" +
|
||||
" border-top-left-radius: 5px;\n" +
|
||||
" margin-left: 10px;\n" +
|
||||
" margin-right: 10px;\n" +
|
||||
" display: inline-block;\n" +
|
||||
" overflow: hidden;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".gcliHints {\n" +
|
||||
" overflow: auto;\n" +
|
||||
" padding: 10px;\n" +
|
||||
" display: inline-block;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".gcliHints ul { margin: 0; padding: 0 15px; }\n" +
|
||||
"");
|
||||
|
||||
define("text!node_modules/cockpit/lib/gcli/ui/inputter.css", [], "\n" +
|
||||
".gcliCompletion { padding: 0; position: absolute; z-index: -1000; }\n" +
|
||||
".gcliCompletion.VALID { background-color: #FFF; }\n" +
|
||||
".gcliCompletion.INCOMPLETE { background-color: #DDD; }\n" +
|
||||
".gcliCompletion.ERROR { background-color: #DDD; }\n" +
|
||||
".gcliCompletion span { color: #FFF; }\n" +
|
||||
".gcliCompletion span.INCOMPLETE { color: #DDD; border-bottom: 2px dotted #999; }\n" +
|
||||
".gcliCompletion span.ERROR { color: #DDD; border-bottom: 2px dotted #F00; }\n" +
|
||||
"span.gcliPrompt { color: #66F; font-weight: bold; }\n" +
|
||||
"span.gcliCompl { color: #999; }\n" +
|
||||
"");
|
||||
|
||||
define("text!node_modules/cockpit/lib/gcli/ui/menu.css", [], "\n" +
|
||||
"/* The items in a menu. Used primarily for the command menu */\n" +
|
||||
".gcliOption { overflow: hidden; white-space: nowrap; cursor: pointer; }\n" +
|
||||
".gcliOption:hover { background-color: rgb(230, 230, 230) }\n" +
|
||||
".gcliOptName { padding-right: 5px; }\n" +
|
||||
".gcliOptDesc { font-size: 80%; color: #999; }\n" +
|
||||
"");
|
||||
|
||||
define("text!node_modules/cockpit/lib/gcli/ui/request_view.css", [], "\n" +
|
||||
".gcliReports { overflow: auto; }\n" +
|
||||
"\n" +
|
||||
".gcliRowIn {\n" +
|
||||
" display: box; display: -moz-box; display: -webkit-box;\n" +
|
||||
" box-orient: horizontal; -moz-box-orient: horizontal; -webkit-box-orient: horizontal;\n" +
|
||||
" box-align: center; -moz-box-align: center; -webkit-box-align: center;\n" +
|
||||
" color: #333;\n" +
|
||||
" background-color: #EEE;\n" +
|
||||
" width: 100%;\n" +
|
||||
" font-family: consolas, courier, monospace;\n" +
|
||||
"}\n" +
|
||||
".gcliRowIn > * { padding-left: 2px; padding-right: 2px; }\n" +
|
||||
".gcliRowIn > img { cursor: pointer; }\n" +
|
||||
".gcliHover { display: none; }\n" +
|
||||
".gcliRowIn:hover > .gcliHover { display: block; }\n" +
|
||||
".gcliRowIn:hover > .gcliHover.gcliHidden { display: none; }\n" +
|
||||
".gcliOutTyped {\n" +
|
||||
" box-flex: 1; -moz-box-flex: 1; -webkit-box-flex: 1;\n" +
|
||||
" font-weight: bold; color: #000; font-size: 120%;\n" +
|
||||
"}\n" +
|
||||
".gcliRowOutput { padding-left: 10px; line-height: 1.2em; }\n" +
|
||||
".gcliRowOutput strong,\n" +
|
||||
".gcliRowOutput b,\n" +
|
||||
".gcliRowOutput th,\n" +
|
||||
".gcliRowOutput h1,\n" +
|
||||
".gcliRowOutput h2,\n" +
|
||||
".gcliRowOutput h3 { color: #000; }\n" +
|
||||
".gcliRowOutput a { font-weight: bold; color: #666; text-decoration: none; }\n" +
|
||||
".gcliRowOutput a: hover { text-decoration: underline; cursor: pointer; }\n" +
|
||||
".gcliRowOutput input[type=password],\n" +
|
||||
".gcliRowOutput input[type=text],\n" +
|
||||
".gcliRowOutput textarea {\n" +
|
||||
" color: #000; font-size: 120%;\n" +
|
||||
" background: transparent; padding: 3px;\n" +
|
||||
" border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;\n" +
|
||||
"}\n" +
|
||||
".gcliRowOutput table,\n" +
|
||||
".gcliRowOutput td,\n" +
|
||||
".gcliRowOutput th { border: 0; padding: 0 2px; }\n" +
|
||||
".gcliRowOutput .right { text-align: right; }\n" +
|
||||
"\n" +
|
||||
".gcliGt { font-weight: bold; font-size: 120%; }\n" +
|
||||
"");
|
||||
|
||||
define("text!node_modules/uglify-js/docstyle.css", [], "html { font-family: \"Lucida Grande\",\"Trebuchet MS\",sans-serif; font-size: 12pt; }\n" +
|
||||
"body { max-width: 60em; }\n" +
|
||||
".title { text-align: center; }\n" +
|
||||
|
|
@ -17185,83 +17325,6 @@ define("text!node_modules/uglify-js/docstyle.css", [], "html { font-family: \"Lu
|
|||
"}\n" +
|
||||
"");
|
||||
|
||||
define("text!support/cockpit/lib/cockpit/ui/cli_view.css", [], "\n" +
|
||||
"#cockpitInput { padding-left: 16px; }\n" +
|
||||
"\n" +
|
||||
".cptOutput { overflow: auto; position: absolute; z-index: 999; display: none; }\n" +
|
||||
"\n" +
|
||||
".cptCompletion { padding: 0; position: absolute; z-index: -1000; }\n" +
|
||||
".cptCompletion.VALID { background: #FFF; }\n" +
|
||||
".cptCompletion.INCOMPLETE { background: #DDD; }\n" +
|
||||
".cptCompletion.INVALID { background: #DDD; }\n" +
|
||||
".cptCompletion span { color: #FFF; }\n" +
|
||||
".cptCompletion span.INCOMPLETE { color: #DDD; border-bottom: 2px dotted #F80; }\n" +
|
||||
".cptCompletion span.INVALID { color: #DDD; border-bottom: 2px dotted #F00; }\n" +
|
||||
"span.cptPrompt { color: #66F; font-weight: bold; }\n" +
|
||||
"\n" +
|
||||
"\n" +
|
||||
".cptHints {\n" +
|
||||
" color: #000;\n" +
|
||||
" position: absolute;\n" +
|
||||
" border: 1px solid rgba(230, 230, 230, 0.8);\n" +
|
||||
" background: rgba(250, 250, 250, 0.8);\n" +
|
||||
" -moz-border-radius-topleft: 10px;\n" +
|
||||
" -moz-border-radius-topright: 10px;\n" +
|
||||
" border-top-left-radius: 10px; border-top-right-radius: 10px;\n" +
|
||||
" z-index: 1000;\n" +
|
||||
" padding: 8px;\n" +
|
||||
" display: none;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".cptFocusPopup { display: block; }\n" +
|
||||
".cptFocusPopup.cptNoPopup { display: none; }\n" +
|
||||
"\n" +
|
||||
".cptHints ul { margin: 0; padding: 0 15px; }\n" +
|
||||
"\n" +
|
||||
".cptGt { font-weight: bold; font-size: 120%; }\n" +
|
||||
"");
|
||||
|
||||
define("text!support/cockpit/lib/cockpit/ui/request_view.css", [], "\n" +
|
||||
".cptRowIn {\n" +
|
||||
" display: box; display: -moz-box; display: -webkit-box;\n" +
|
||||
" box-orient: horizontal; -moz-box-orient: horizontal; -webkit-box-orient: horizontal;\n" +
|
||||
" box-align: center; -moz-box-align: center; -webkit-box-align: center;\n" +
|
||||
" color: #333;\n" +
|
||||
" background-color: #EEE;\n" +
|
||||
" width: 100%;\n" +
|
||||
" font-family: consolas, courier, monospace;\n" +
|
||||
"}\n" +
|
||||
".cptRowIn > * { padding-left: 2px; padding-right: 2px; }\n" +
|
||||
".cptRowIn > img { cursor: pointer; }\n" +
|
||||
".cptHover { display: none; }\n" +
|
||||
".cptRowIn:hover > .cptHover { display: block; }\n" +
|
||||
".cptRowIn:hover > .cptHover.cptHidden { display: none; }\n" +
|
||||
".cptOutTyped {\n" +
|
||||
" box-flex: 1; -moz-box-flex: 1; -webkit-box-flex: 1;\n" +
|
||||
" font-weight: bold; color: #000; font-size: 120%;\n" +
|
||||
"}\n" +
|
||||
".cptRowOutput { padding-left: 10px; line-height: 1.2em; }\n" +
|
||||
".cptRowOutput strong,\n" +
|
||||
".cptRowOutput b,\n" +
|
||||
".cptRowOutput th,\n" +
|
||||
".cptRowOutput h1,\n" +
|
||||
".cptRowOutput h2,\n" +
|
||||
".cptRowOutput h3 { color: #000; }\n" +
|
||||
".cptRowOutput a { font-weight: bold; color: #666; text-decoration: none; }\n" +
|
||||
".cptRowOutput a: hover { text-decoration: underline; cursor: pointer; }\n" +
|
||||
".cptRowOutput input[type=password],\n" +
|
||||
".cptRowOutput input[type=text],\n" +
|
||||
".cptRowOutput textarea {\n" +
|
||||
" color: #000; font-size: 120%;\n" +
|
||||
" background: transparent; padding: 3px;\n" +
|
||||
" border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;\n" +
|
||||
"}\n" +
|
||||
".cptRowOutput table,\n" +
|
||||
".cptRowOutput td,\n" +
|
||||
".cptRowOutput th { border: 0; padding: 0 2px; }\n" +
|
||||
".cptRowOutput .right { text-align: right; }\n" +
|
||||
"");
|
||||
|
||||
define("text!tool/Theme.tmpl.css", [], ".%cssClass% .ace_editor {\n" +
|
||||
" border: 2px solid rgb(159, 159, 159);\n" +
|
||||
"}\n" +
|
||||
|
|
@ -17475,56 +17538,6 @@ define("text!tool/Theme.tmpl.css", [], ".%cssClass% .ace_editor {\n" +
|
|||
" %collab.user1% \n" +
|
||||
"}");
|
||||
|
||||
define("text!docs/css.css", [], ".text-layer {\n" +
|
||||
" font-family: Monaco, \"Courier New\", monospace;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
" cursor: text;\n" +
|
||||
"}");
|
||||
|
||||
define("text!styles.css", [], "html {\n" +
|
||||
" height: 100%;\n" +
|
||||
" width: 100%;\n" +
|
||||
" overflow: hidden;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
"body {\n" +
|
||||
" overflow: hidden;\n" +
|
||||
" margin: 0;\n" +
|
||||
" padding: 0;\n" +
|
||||
" height: 100%;\n" +
|
||||
" width: 100%;\n" +
|
||||
" font-family: Arial, Helvetica, sans-serif, Tahoma, Verdana, sans-serif;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
" background: rgb(14, 98, 165);\n" +
|
||||
" color: white;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
"#logo {\n" +
|
||||
" padding: 15px;\n" +
|
||||
" margin-left: 70px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
"#editor {\n" +
|
||||
" position: absolute;\n" +
|
||||
" top: 0px;\n" +
|
||||
" left: 300px;\n" +
|
||||
" bottom: 0px;\n" +
|
||||
" right: 0px;\n" +
|
||||
" background: white;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
"#controls {\n" +
|
||||
" padding: 5px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
"#controls td {\n" +
|
||||
" text-align: right;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
"#controls td + td {\n" +
|
||||
" text-align: left;\n" +
|
||||
"}");
|
||||
|
||||
/* ***** BEGIN LICENSE BLOCK *****
|
||||
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
*
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
define("ace/mode/python",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/python_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/python_highlight_rules").PythonHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules())};d.inherits(j,e),function(){this.toggleCommentLines=function(a,b,c,d){var e=!0,f=[],g=/^(\s*)#/;for(var h=c;h<=d;h++)if(!g.test(b.getLine(h))){e=!1;break}if(e){var j=new i(0,0,0,0);for(var h=c;h<=d;h++){var k=b.getLine(h),l=k.match(g);j.start.row=h,j.end.row=h,j.end.column=l[0].length,b.replace(j,l[1])}}else b.indentRows(c,d,"#")},this.getNextLineIndent=function(a,b,c){var d=this.$getIndent(b),e=this.$tokenizer.getLineTokens(b,a),f=e.tokens,g=e.state;if(f.length&&f[f.length-1].type=="comment")return d;if(a=="start"){var h=b.match(/^.*[\{\(\[\:]\s*$/);h&&(d+=c)}return d};var a={pass:1,"return":1,raise:1,"break":1,"continue":1};this.checkOutdent=function(b,c,d){if(d!=="\r\n"&&d!=="\r"&&d!=="\n")return!1;var e=this.$tokenizer.getLineTokens(c.trim(),b).tokens;if(!e)return!1;do var f=e.pop();while(f&&(f.type=="comment"||f.type=="text"&&f.value.match(/^\s+$/)));return f?f.type=="keyword"&&a[f.value]:!1},this.autoOutdent=function(a,b,c){c+=1;var d=this.$getIndent(b.getLine(c)),e=b.getTabString();d.slice(-e.length)==e&&b.remove(new i(c,d.length-e.length,c,d.length))}}.call(j.prototype),b.Mode=j}),define("ace/mode/python_highlight_rules",["require","exports","module","pilot/oop","pilot/lang","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("pilot/lang"),f=a("ace/mode/text_highlight_rules").TextHighlightRules,g=function(){var a=e.arrayToMap("and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield".split("|")),b=e.arrayToMap("True|False|None|NotImplemented|Ellipsis|__debug__".split("|")),c=e.arrayToMap("abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|binfile|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|set|apply|delattr|help|next|setattr|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern".split("|")),d=e.arrayToMap("".split("|")),f="(?:r|u|ur|R|U|UR|Ur|uR)?",g="(?:(?:[1-9]\\d*)|(?:0))",h="(?:0[oO]?[0-7]+)",i="(?:0[xX][\\dA-Fa-f]+)",j="(?:0[bB][01]+)",k="(?:"+g+"|"+h+"|"+i+"|"+j+")",l="(?:[eE][+-]?\\d+)",m="(?:\\.\\d+)",n="(?:\\d+)",o="(?:(?:"+n+"?"+m+")|(?:"+n+"\\.))",p="(?:(?:"+o+"|"+n+")"+l+")",q="(?:"+p+"|"+o+")";this.$rules={start:[{token:"comment",regex:"#.*$"},{token:"string",regex:f+'"{3}(?:[^\\\\]|\\\\.)*?"{3}'},{token:"string",merge:!0,regex:f+'"{3}.*$',next:"qqstring"},{token:"string",regex:f+'"(?:[^\\\\]|\\\\.)*?"'},{token:"string",regex:f+"'{3}(?:[^\\\\]|\\\\.)*?'{3}"},{token:"string",merge:!0,regex:f+"'{3}.*$",next:"qstring"},{token:"string",regex:f+"'(?:[^\\\\]|\\\\.)*?'"},{token:"constant.numeric",regex:"(?:"+q+"|\\d+)[jJ]\\b"},{token:"constant.numeric",regex:q},{token:"constant.numeric",regex:k+"[lL]\\b"},{token:"constant.numeric",regex:k+"\\b"},{token:function(e){return a.hasOwnProperty(e)?"keyword":b.hasOwnProperty(e)?"constant.language":d.hasOwnProperty(e)?"invalid.illegal":c.hasOwnProperty(e)?"support.function":e=="debugger"?"invalid.deprecated":"identifier"},regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|%|<<|>>|&|\\||\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"lparen.paren",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]\\)\\}]"},{token:"text",regex:"\\s+"}],qqstring:[{token:"string",regex:'(?:[^\\\\]|\\\\.)*?"{3}',next:"start"},{token:"string",merge:!0,regex:".+"}],qstring:[{token:"string",regex:"(?:[^\\\\]|\\\\.)*?'{3}",next:"start"},{token:"string",merge:!0,regex:".+"}]}};d.inherits(g,f),b.PythonHighlightRules=g}),define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};(function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}}).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
define("ace/mode/python",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/python_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/python_highlight_rules").PythonHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules())};d.inherits(j,e),function(){this.toggleCommentLines=function(a,b,c,d){var e=!0,f=[],g=/^(\s*)#/;for(var h=c;h<=d;h++)if(!g.test(b.getLine(h))){e=!1;break}if(e){var j=new i(0,0,0,0);for(var h=c;h<=d;h++){var k=b.getLine(h),l=k.match(g);j.start.row=h,j.end.row=h,j.end.column=l[0].length,b.replace(j,l[1])}}else b.indentRows(c,d,"#")},this.getNextLineIndent=function(a,b,c){var d=this.$getIndent(b),e=this.$tokenizer.getLineTokens(b,a),f=e.tokens,g=e.state;if(f.length&&f[f.length-1].type=="comment")return d;if(a=="start"){var h=b.match(/^.*[\{\(\[\:]\s*$/);h&&(d+=c)}return d};var a={pass:1,"return":1,raise:1,"break":1,"continue":1};this.checkOutdent=function(b,c,d){if(d!=="\r\n"&&d!=="\r"&&d!=="\n")return!1;var e=this.$tokenizer.getLineTokens(c.trim(),b).tokens;if(!e)return!1;do var f=e.pop();while(f&&(f.type=="comment"||f.type=="text"&&f.value.match(/^\s+$/)));return f?f.type=="keyword"&&a[f.value]:!1},this.autoOutdent=function(a,b,c){c+=1;var d=this.$getIndent(b.getLine(c)),e=b.getTabString();d.slice(-e.length)==e&&b.remove(new i(c,d.length-e.length,c,d.length))}}.call(j.prototype),b.Mode=j}),define("ace/mode/python_highlight_rules",["require","exports","module","pilot/oop","pilot/lang","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("pilot/lang"),f=a("ace/mode/text_highlight_rules").TextHighlightRules,g=function(){var a=e.arrayToMap("and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield".split("|")),b=e.arrayToMap("True|False|None|NotImplemented|Ellipsis|__debug__".split("|")),c=e.arrayToMap("abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|binfile|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|set|apply|delattr|help|next|setattr|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern".split("|")),d=e.arrayToMap("".split("|")),f="(?:r|u|ur|R|U|UR|Ur|uR)?",g="(?:(?:[1-9]\\d*)|(?:0))",h="(?:0[oO]?[0-7]+)",i="(?:0[xX][\\dA-Fa-f]+)",j="(?:0[bB][01]+)",k="(?:"+g+"|"+h+"|"+i+"|"+j+")",l="(?:[eE][+-]?\\d+)",m="(?:\\.\\d+)",n="(?:\\d+)",o="(?:(?:"+n+"?"+m+")|(?:"+n+"\\.))",p="(?:(?:"+o+"|"+n+")"+l+")",q="(?:"+p+"|"+o+")";this.$rules={start:[{token:"comment",regex:"#.*$"},{token:"string",regex:f+'"{3}(?:[^\\\\]|\\\\.)*?"{3}'},{token:"string",merge:!0,regex:f+'"{3}.*$',next:"qqstring"},{token:"string",regex:f+'"(?:[^\\\\]|\\\\.)*?"'},{token:"string",regex:f+"'{3}(?:[^\\\\]|\\\\.)*?'{3}"},{token:"string",merge:!0,regex:f+"'{3}.*$",next:"qstring"},{token:"string",regex:f+"'(?:[^\\\\]|\\\\.)*?'"},{token:"constant.numeric",regex:"(?:"+q+"|\\d+)[jJ]\\b"},{token:"constant.numeric",regex:q},{token:"constant.numeric",regex:k+"[lL]\\b"},{token:"constant.numeric",regex:k+"\\b"},{token:function(e){return a.hasOwnProperty(e)?"keyword":b.hasOwnProperty(e)?"constant.language":d.hasOwnProperty(e)?"invalid.illegal":c.hasOwnProperty(e)?"support.function":e=="debugger"?"invalid.deprecated":"identifier"},regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|%|<<|>>|&|\\||\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"lparen.paren",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]\\)\\}]"},{token:"text",regex:"\\s+"}],qqstring:[{token:"string",regex:'(?:[^\\\\]|\\\\.)*?"{3}',next:"start"},{token:"string",merge:!0,regex:".+"}],qstring:[{token:"string",regex:"(?:[^\\\\]|\\\\.)*?'{3}",next:"start"},{token:"string",merge:!0,regex:".+"}]}};d.inherits(g,f),b.PythonHighlightRules=g}),define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};((function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}})).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
define("ace/mode/textile",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/textile_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/textile_highlight_rules").TextileHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules()),this.$outdent=new h};d.inherits(j,e),function(){this.getNextLineIndent=function(a,b,c){return a=="intag"?c:""},this.checkOutdent=function(a,b,c){return this.$outdent.checkOutdent(b,c)},this.autoOutdent=function(a,b,c){this.$outdent.autoOutdent(b,c)}}.call(j.prototype),b.Mode=j}),define("ace/mode/textile_highlight_rules",["require","exports","module","pilot/oop","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text_highlight_rules").TextHighlightRules,f=function(){this.$rules={start:[{token:"keyword",token:function(a){return a.match(/^h\d$/)?"markup.heading."+a.charAt(1):"markup.heading"},regex:"h1|h2|h3|h4|h5|h6|bq|p|bc|pre",next:"blocktag"},{token:"keyword",regex:"[\\*]+|[#]+"},{token:"text",regex:".+"}],blocktag:[{token:"keyword",regex:"\\. ",next:"start"},{token:"keyword",regex:"\\(",next:"blocktagproperties"}],blocktagproperties:[{token:"keyword",regex:"\\)",next:"blocktag"},{token:"string",regex:"[a-zA-Z0-9\\-_]+"},{token:"keyword",regex:"#"}]}};d.inherits(f,e),b.TextileHighlightRules=f}),define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};(function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}}).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
define("ace/mode/textile",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/textile_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/textile_highlight_rules").TextileHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules()),this.$outdent=new h};d.inherits(j,e),function(){this.getNextLineIndent=function(a,b,c){return a=="intag"?c:""},this.checkOutdent=function(a,b,c){return this.$outdent.checkOutdent(b,c)},this.autoOutdent=function(a,b,c){this.$outdent.autoOutdent(b,c)}}.call(j.prototype),b.Mode=j}),define("ace/mode/textile_highlight_rules",["require","exports","module","pilot/oop","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text_highlight_rules").TextHighlightRules,f=function(){this.$rules={start:[{token:"keyword",token:function(a){return a.match(/^h\d$/)?"markup.heading."+a.charAt(1):"markup.heading"},regex:"h1|h2|h3|h4|h5|h6|bq|p|bc|pre",next:"blocktag"},{token:"keyword",regex:"[\\*]+|[#]+"},{token:"text",regex:".+"}],blocktag:[{token:"keyword",regex:"\\. ",next:"start"},{token:"keyword",regex:"\\(",next:"blocktagproperties"}],blocktagproperties:[{token:"keyword",regex:"\\)",next:"blocktag"},{token:"string",regex:"[a-zA-Z0-9\\-_]+"},{token:"keyword",regex:"#"}]}};d.inherits(f,e),b.TextileHighlightRules=f}),define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};((function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}})).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
|
|
@ -1 +1 @@
|
|||
define("ace/theme/tomorrow",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow .ace_scroller { background-color: #FFFFFF;}.ace-tomorrow .ace_text-layer { cursor: text; color: #4D4D4C;}.ace-tomorrow .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow .ace_marker-layer .ace_selection { background: #D6D6D6;}.ace-tomorrow .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #D1D1D1;}.ace-tomorrow .ace_marker-layer .ace_active_line { background: #EFEFEF;} .ace-tomorrow .ace_invisible { color: #D1D1D1;}.ace-tomorrow .ace_keyword { color:#8959A8;}.ace-tomorrow .ace_keyword.ace_operator { color:#3E999F;}.ace-tomorrow .ace_constant { }.ace-tomorrow .ace_constant.ace_language { color:#F5871F;}.ace-tomorrow .ace_constant.ace_library { }.ace-tomorrow .ace_constant.ace_numeric { color:#F5871F;}.ace-tomorrow .ace_invalid { color:#FFFFFF;background-color:#C82829;}.ace-tomorrow .ace_invalid.ace_illegal { }.ace-tomorrow .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#8959A8;}.ace-tomorrow .ace_support { }.ace-tomorrow .ace_support.ace_function { color:#4271AE;}.ace-tomorrow .ace_function.ace_buildin { }.ace-tomorrow .ace_string { color:#718C00;}.ace-tomorrow .ace_string.ace_regexp { color:#C82829;}.ace-tomorrow .ace_comment { color:#8E908C;}.ace-tomorrow .ace_comment.ace_doc { }.ace-tomorrow .ace_comment.ace_doc.ace_tag { }.ace-tomorrow .ace_variable { color:#C82829;}.ace-tomorrow .ace_variable.ace_language { }.ace-tomorrow .ace_xml_pe { }.ace-tomorrow .ace_meta { }.ace-tomorrow .ace_meta.ace_tag { color:#C82829;}.ace-tomorrow .ace_meta.ace_tag.ace_input { }.ace-tomorrow .ace_entity.ace_other.ace_attribute-name { color:#C82829;}.ace-tomorrow .ace_entity.ace_name { }.ace-tomorrow .ace_entity.ace_name.ace_function { color:#4271AE;}.ace-tomorrow .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow .ace_markup.ace_heading { color:#718C00;}.ace-tomorrow .ace_markup.ace_heading.ace_1 { }.ace-tomorrow .ace_markup.ace_heading.ace_2 { }.ace-tomorrow .ace_markup.ace_heading.ace_3 { }.ace-tomorrow .ace_markup.ace_heading.ace_4 { }.ace-tomorrow .ace_markup.ace_heading.ace_5 { }.ace-tomorrow .ace_markup.ace_heading.ace_6 { }.ace-tomorrow .ace_markup.ace_list { }.ace-tomorrow .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow"})
|
||||
define("ace/theme/tomorrow",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow .ace_scroller { background-color: #FFFFFF;}.ace-tomorrow .ace_text-layer { cursor: text; color: #4D4D4C;}.ace-tomorrow .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow .ace_marker-layer .ace_selection { background: #D6D6D6;}.ace-tomorrow .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #D1D1D1;}.ace-tomorrow .ace_marker-layer .ace_active_line { background: #EFEFEF;} .ace-tomorrow .ace_invisible { color: #D1D1D1;}.ace-tomorrow .ace_keyword { color:#8959A8;}.ace-tomorrow .ace_keyword.ace_operator { color:#3E999F;}.ace-tomorrow .ace_constant { }.ace-tomorrow .ace_constant.ace_language { color:#F5871F;}.ace-tomorrow .ace_constant.ace_library { }.ace-tomorrow .ace_constant.ace_numeric { color:#F5871F;}.ace-tomorrow .ace_invalid { color:#FFFFFF;background-color:#C82829;}.ace-tomorrow .ace_invalid.ace_illegal { }.ace-tomorrow .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#8959A8;}.ace-tomorrow .ace_support { }.ace-tomorrow .ace_support.ace_function { color:#4271AE;}.ace-tomorrow .ace_function.ace_buildin { }.ace-tomorrow .ace_string { color:#718C00;}.ace-tomorrow .ace_string.ace_regexp { color:#C82829;}.ace-tomorrow .ace_comment { color:#8E908C;}.ace-tomorrow .ace_comment.ace_doc { }.ace-tomorrow .ace_comment.ace_doc.ace_tag { }.ace-tomorrow .ace_variable { color:#C82829;}.ace-tomorrow .ace_variable.ace_language { }.ace-tomorrow .ace_xml_pe { }.ace-tomorrow .ace_meta { }.ace-tomorrow .ace_meta.ace_tag { color:#C82829;}.ace-tomorrow .ace_meta.ace_tag.ace_input { }.ace-tomorrow .ace_entity.ace_other.ace_attribute-name { color:#C82829;}.ace-tomorrow .ace_entity.ace_name { }.ace-tomorrow .ace_entity.ace_name.ace_function { color:#4271AE;}.ace-tomorrow .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow .ace_markup.ace_heading { color:#718C00;}.ace-tomorrow .ace_markup.ace_heading.ace_1 { }.ace-tomorrow .ace_markup.ace_heading.ace_2 { }.ace-tomorrow .ace_markup.ace_heading.ace_3 { }.ace-tomorrow .ace_markup.ace_heading.ace_4 { }.ace-tomorrow .ace_markup.ace_heading.ace_5 { }.ace-tomorrow .ace_markup.ace_heading.ace_6 { }.ace-tomorrow .ace_markup.ace_list { }.ace-tomorrow .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow"})
|
||||
|
|
@ -1 +1 @@
|
|||
define("ace/theme/tomorrow_night",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night .ace_scroller { background-color: #1D1F21;}.ace-tomorrow-night .ace_text-layer { cursor: text; color: #C5C8C6;}.ace-tomorrow-night .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow-night .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow-night .ace_marker-layer .ace_selection { background: #373B41;}.ace-tomorrow-night .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #4B4E55;}.ace-tomorrow-night .ace_marker-layer .ace_active_line { background: #282A2E;} .ace-tomorrow-night .ace_invisible { color: #4B4E55;}.ace-tomorrow-night .ace_keyword { color:#B294BB;}.ace-tomorrow-night .ace_keyword.ace_operator { color:#8ABEB7;}.ace-tomorrow-night .ace_constant { }.ace-tomorrow-night .ace_constant.ace_language { color:#DE935F;}.ace-tomorrow-night .ace_constant.ace_library { }.ace-tomorrow-night .ace_constant.ace_numeric { color:#DE935F;}.ace-tomorrow-night .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night .ace_invalid.ace_illegal { }.ace-tomorrow-night .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night .ace_support { }.ace-tomorrow-night .ace_support.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_function.ace_buildin { }.ace-tomorrow-night .ace_string { color:#B5BD68;}.ace-tomorrow-night .ace_string.ace_regexp { color:#CC6666;}.ace-tomorrow-night .ace_comment { color:#969896;}.ace-tomorrow-night .ace_comment.ace_doc { }.ace-tomorrow-night .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night .ace_variable { color:#CC6666;}.ace-tomorrow-night .ace_variable.ace_language { }.ace-tomorrow-night .ace_xml_pe { }.ace-tomorrow-night .ace_meta { }.ace-tomorrow-night .ace_meta.ace_tag { color:#CC6666;}.ace-tomorrow-night .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night .ace_entity.ace_other.ace_attribute-name { color:#CC6666;}.ace-tomorrow-night .ace_entity.ace_name { }.ace-tomorrow-night .ace_entity.ace_name.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night .ace_markup.ace_heading { color:#B5BD68;}.ace-tomorrow-night .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night .ace_markup.ace_list { }.ace-tomorrow-night .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night"})
|
||||
define("ace/theme/tomorrow_night",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night .ace_scroller { background-color: #1D1F21;}.ace-tomorrow-night .ace_text-layer { cursor: text; color: #C5C8C6;}.ace-tomorrow-night .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow-night .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow-night .ace_marker-layer .ace_selection { background: #373B41;}.ace-tomorrow-night .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #4B4E55;}.ace-tomorrow-night .ace_marker-layer .ace_active_line { background: #282A2E;} .ace-tomorrow-night .ace_invisible { color: #4B4E55;}.ace-tomorrow-night .ace_keyword { color:#B294BB;}.ace-tomorrow-night .ace_keyword.ace_operator { color:#8ABEB7;}.ace-tomorrow-night .ace_constant { }.ace-tomorrow-night .ace_constant.ace_language { color:#DE935F;}.ace-tomorrow-night .ace_constant.ace_library { }.ace-tomorrow-night .ace_constant.ace_numeric { color:#DE935F;}.ace-tomorrow-night .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night .ace_invalid.ace_illegal { }.ace-tomorrow-night .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night .ace_support { }.ace-tomorrow-night .ace_support.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_function.ace_buildin { }.ace-tomorrow-night .ace_string { color:#B5BD68;}.ace-tomorrow-night .ace_string.ace_regexp { color:#CC6666;}.ace-tomorrow-night .ace_comment { color:#969896;}.ace-tomorrow-night .ace_comment.ace_doc { }.ace-tomorrow-night .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night .ace_variable { color:#CC6666;}.ace-tomorrow-night .ace_variable.ace_language { }.ace-tomorrow-night .ace_xml_pe { }.ace-tomorrow-night .ace_meta { }.ace-tomorrow-night .ace_meta.ace_tag { color:#CC6666;}.ace-tomorrow-night .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night .ace_entity.ace_other.ace_attribute-name { color:#CC6666;}.ace-tomorrow-night .ace_entity.ace_name { }.ace-tomorrow-night .ace_entity.ace_name.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night .ace_markup.ace_heading { color:#B5BD68;}.ace-tomorrow-night .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night .ace_markup.ace_list { }.ace-tomorrow-night .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night"})
|
||||
|
|
@ -1 +1 @@
|
|||
define("ace/theme/tomorrow_night_blue",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night-blue .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-blue .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-blue .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-blue .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-blue .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-blue .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-blue .ace_scroller { background-color: #002451;}.ace-tomorrow-night-blue .ace_text-layer { cursor: text; color: #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor { border-left: 2px solid #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #FFFFFF;} .ace-tomorrow-night-blue .ace_marker-layer .ace_selection { background: #003F8E;}.ace-tomorrow-night-blue .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-blue .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #404F7D;}.ace-tomorrow-night-blue .ace_marker-layer .ace_active_line { background: #00346E;} .ace-tomorrow-night-blue .ace_invisible { color: #404F7D;}.ace-tomorrow-night-blue .ace_keyword { color:#EBBBFF;}.ace-tomorrow-night-blue .ace_keyword.ace_operator { color:#99FFFF;}.ace-tomorrow-night-blue .ace_constant { }.ace-tomorrow-night-blue .ace_constant.ace_language { color:#FFC58F;}.ace-tomorrow-night-blue .ace_constant.ace_library { }.ace-tomorrow-night-blue .ace_constant.ace_numeric { color:#FFC58F;}.ace-tomorrow-night-blue .ace_invalid { color:#FFFFFF;background-color:#F99DA5;}.ace-tomorrow-night-blue .ace_invalid.ace_illegal { }.ace-tomorrow-night-blue .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#EBBBFF;}.ace-tomorrow-night-blue .ace_support { }.ace-tomorrow-night-blue .ace_support.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_function.ace_buildin { }.ace-tomorrow-night-blue .ace_string { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_string.ace_regexp { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_comment { color:#7285B7;}.ace-tomorrow-night-blue .ace_comment.ace_doc { }.ace-tomorrow-night-blue .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-blue .ace_variable { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_variable.ace_language { }.ace-tomorrow-night-blue .ace_xml_pe { }.ace-tomorrow-night-blue .ace_meta { }.ace-tomorrow-night-blue .ace_meta.ace_tag { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-blue .ace_entity.ace_other.ace_attribute-name { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_entity.ace_name { }.ace-tomorrow-night-blue .ace_entity.ace_name.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-blue .ace_markup.ace_heading { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-blue .ace_markup.ace_list { }.ace-tomorrow-night-blue .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night-blue"})
|
||||
define("ace/theme/tomorrow_night_blue",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night-blue .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-blue .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-blue .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-blue .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-blue .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-blue .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-blue .ace_scroller { background-color: #002451;}.ace-tomorrow-night-blue .ace_text-layer { cursor: text; color: #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor { border-left: 2px solid #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #FFFFFF;} .ace-tomorrow-night-blue .ace_marker-layer .ace_selection { background: #003F8E;}.ace-tomorrow-night-blue .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-blue .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #404F7D;}.ace-tomorrow-night-blue .ace_marker-layer .ace_active_line { background: #00346E;} .ace-tomorrow-night-blue .ace_invisible { color: #404F7D;}.ace-tomorrow-night-blue .ace_keyword { color:#EBBBFF;}.ace-tomorrow-night-blue .ace_keyword.ace_operator { color:#99FFFF;}.ace-tomorrow-night-blue .ace_constant { }.ace-tomorrow-night-blue .ace_constant.ace_language { color:#FFC58F;}.ace-tomorrow-night-blue .ace_constant.ace_library { }.ace-tomorrow-night-blue .ace_constant.ace_numeric { color:#FFC58F;}.ace-tomorrow-night-blue .ace_invalid { color:#FFFFFF;background-color:#F99DA5;}.ace-tomorrow-night-blue .ace_invalid.ace_illegal { }.ace-tomorrow-night-blue .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#EBBBFF;}.ace-tomorrow-night-blue .ace_support { }.ace-tomorrow-night-blue .ace_support.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_function.ace_buildin { }.ace-tomorrow-night-blue .ace_string { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_string.ace_regexp { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_comment { color:#7285B7;}.ace-tomorrow-night-blue .ace_comment.ace_doc { }.ace-tomorrow-night-blue .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-blue .ace_variable { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_variable.ace_language { }.ace-tomorrow-night-blue .ace_xml_pe { }.ace-tomorrow-night-blue .ace_meta { }.ace-tomorrow-night-blue .ace_meta.ace_tag { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-blue .ace_entity.ace_other.ace_attribute-name { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_entity.ace_name { }.ace-tomorrow-night-blue .ace_entity.ace_name.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-blue .ace_markup.ace_heading { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-blue .ace_markup.ace_list { }.ace-tomorrow-night-blue .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night-blue"})
|
||||
|
|
@ -1 +1 @@
|
|||
define("ace/theme/tomorrow_night_bright",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night-bright .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-bright .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-bright .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-bright .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-bright .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-bright .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-bright .ace_scroller { background-color: #000000;}.ace-tomorrow-night-bright .ace_text-layer { cursor: text; color: #DEDEDE;}.ace-tomorrow-night-bright .ace_cursor { border-left: 2px solid #9F9F9F;}.ace-tomorrow-night-bright .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #9F9F9F;} .ace-tomorrow-night-bright .ace_marker-layer .ace_selection { background: #424242;}.ace-tomorrow-night-bright .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-bright .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #343434;}.ace-tomorrow-night-bright .ace_marker-layer .ace_active_line { background: #2A2A2A;} .ace-tomorrow-night-bright .ace_invisible { color: #343434;}.ace-tomorrow-night-bright .ace_keyword { color:#C397D8;}.ace-tomorrow-night-bright .ace_keyword.ace_operator { color:#70C0B1;}.ace-tomorrow-night-bright .ace_constant { }.ace-tomorrow-night-bright .ace_constant.ace_language { color:#E78C45;}.ace-tomorrow-night-bright .ace_constant.ace_library { }.ace-tomorrow-night-bright .ace_constant.ace_numeric { color:#E78C45;}.ace-tomorrow-night-bright .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night-bright .ace_invalid.ace_illegal { }.ace-tomorrow-night-bright .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night-bright .ace_support { }.ace-tomorrow-night-bright .ace_support.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_function.ace_buildin { }.ace-tomorrow-night-bright .ace_string { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_string.ace_regexp { color:#D54E53;}.ace-tomorrow-night-bright .ace_comment { color:#969896;}.ace-tomorrow-night-bright .ace_comment.ace_doc { }.ace-tomorrow-night-bright .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-bright .ace_variable { color:#D54E53;}.ace-tomorrow-night-bright .ace_variable.ace_language { }.ace-tomorrow-night-bright .ace_xml_pe { }.ace-tomorrow-night-bright .ace_meta { }.ace-tomorrow-night-bright .ace_meta.ace_tag { color:#D54E53;}.ace-tomorrow-night-bright .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name { color:#D54E53;}.ace-tomorrow-night-bright .ace_entity.ace_name { }.ace-tomorrow-night-bright .ace_entity.ace_name.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-bright .ace_markup.ace_heading { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-bright .ace_markup.ace_list { }.ace-tomorrow-night-bright .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night-bright"})
|
||||
define("ace/theme/tomorrow_night_bright",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night-bright .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-bright .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-bright .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-bright .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-bright .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-bright .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-bright .ace_scroller { background-color: #000000;}.ace-tomorrow-night-bright .ace_text-layer { cursor: text; color: #DEDEDE;}.ace-tomorrow-night-bright .ace_cursor { border-left: 2px solid #9F9F9F;}.ace-tomorrow-night-bright .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #9F9F9F;} .ace-tomorrow-night-bright .ace_marker-layer .ace_selection { background: #424242;}.ace-tomorrow-night-bright .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-bright .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #343434;}.ace-tomorrow-night-bright .ace_marker-layer .ace_active_line { background: #2A2A2A;} .ace-tomorrow-night-bright .ace_invisible { color: #343434;}.ace-tomorrow-night-bright .ace_keyword { color:#C397D8;}.ace-tomorrow-night-bright .ace_keyword.ace_operator { color:#70C0B1;}.ace-tomorrow-night-bright .ace_constant { }.ace-tomorrow-night-bright .ace_constant.ace_language { color:#E78C45;}.ace-tomorrow-night-bright .ace_constant.ace_library { }.ace-tomorrow-night-bright .ace_constant.ace_numeric { color:#E78C45;}.ace-tomorrow-night-bright .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night-bright .ace_invalid.ace_illegal { }.ace-tomorrow-night-bright .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night-bright .ace_support { }.ace-tomorrow-night-bright .ace_support.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_function.ace_buildin { }.ace-tomorrow-night-bright .ace_string { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_string.ace_regexp { color:#D54E53;}.ace-tomorrow-night-bright .ace_comment { color:#969896;}.ace-tomorrow-night-bright .ace_comment.ace_doc { }.ace-tomorrow-night-bright .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-bright .ace_variable { color:#D54E53;}.ace-tomorrow-night-bright .ace_variable.ace_language { }.ace-tomorrow-night-bright .ace_xml_pe { }.ace-tomorrow-night-bright .ace_meta { }.ace-tomorrow-night-bright .ace_meta.ace_tag { color:#D54E53;}.ace-tomorrow-night-bright .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name { color:#D54E53;}.ace-tomorrow-night-bright .ace_entity.ace_name { }.ace-tomorrow-night-bright .ace_entity.ace_name.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-bright .ace_markup.ace_heading { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-bright .ace_markup.ace_list { }.ace-tomorrow-night-bright .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night-bright"})
|
||||
|
|
@ -1 +1 @@
|
|||
define("ace/theme/tomorrow_night_eighties",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night-eighties .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-eighties .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-eighties .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-eighties .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-eighties .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-eighties .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-eighties .ace_scroller { background-color: #2D2D2D;}.ace-tomorrow-night-eighties .ace_text-layer { cursor: text; color: #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor { border-left: 2px solid #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #CCCCCC;} .ace-tomorrow-night-eighties .ace_marker-layer .ace_selection { background: #515151;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-eighties .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #6A6A6A;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_active_line { background: #393939;} .ace-tomorrow-night-eighties .ace_invisible { color: #6A6A6A;}.ace-tomorrow-night-eighties .ace_keyword { color:#CC99CC;}.ace-tomorrow-night-eighties .ace_keyword.ace_operator { color:#66CCCC;}.ace-tomorrow-night-eighties .ace_constant { }.ace-tomorrow-night-eighties .ace_constant.ace_language { color:#F99157;}.ace-tomorrow-night-eighties .ace_constant.ace_library { }.ace-tomorrow-night-eighties .ace_constant.ace_numeric { color:#F99157;}.ace-tomorrow-night-eighties .ace_invalid { color:#CDCDCD;background-color:#F2777A;}.ace-tomorrow-night-eighties .ace_invalid.ace_illegal { }.ace-tomorrow-night-eighties .ace_invalid.ace_deprecated { color:#CDCDCD;background-color:#CC99CC;}.ace-tomorrow-night-eighties .ace_support { }.ace-tomorrow-night-eighties .ace_support.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_function.ace_buildin { }.ace-tomorrow-night-eighties .ace_string { color:#99CC99;}.ace-tomorrow-night-eighties .ace_string.ace_regexp { }.ace-tomorrow-night-eighties .ace_comment { color:#999999;}.ace-tomorrow-night-eighties .ace_comment.ace_doc { }.ace-tomorrow-night-eighties .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-eighties .ace_variable { color:#F2777A;}.ace-tomorrow-night-eighties .ace_variable.ace_language { }.ace-tomorrow-night-eighties .ace_xml_pe { }.ace-tomorrow-night-eighties .ace_meta { }.ace-tomorrow-night-eighties .ace_meta.ace_tag { color:#F2777A;}.ace-tomorrow-night-eighties .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-eighties .ace_entity.ace_other.ace_attribute-name { color:#F2777A;}.ace-tomorrow-night-eighties .ace_entity.ace_name { }.ace-tomorrow-night-eighties .ace_entity.ace_name.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-eighties .ace_markup.ace_heading { color:#99CC99;}.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-eighties .ace_markup.ace_list { }.ace-tomorrow-night-eighties .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night-eighties"})
|
||||
define("ace/theme/tomorrow_night_eighties",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night-eighties .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-eighties .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-eighties .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-eighties .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-eighties .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-eighties .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-eighties .ace_scroller { background-color: #2D2D2D;}.ace-tomorrow-night-eighties .ace_text-layer { cursor: text; color: #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor { border-left: 2px solid #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #CCCCCC;} .ace-tomorrow-night-eighties .ace_marker-layer .ace_selection { background: #515151;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-eighties .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #6A6A6A;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_active_line { background: #393939;} .ace-tomorrow-night-eighties .ace_invisible { color: #6A6A6A;}.ace-tomorrow-night-eighties .ace_keyword { color:#CC99CC;}.ace-tomorrow-night-eighties .ace_keyword.ace_operator { color:#66CCCC;}.ace-tomorrow-night-eighties .ace_constant { }.ace-tomorrow-night-eighties .ace_constant.ace_language { color:#F99157;}.ace-tomorrow-night-eighties .ace_constant.ace_library { }.ace-tomorrow-night-eighties .ace_constant.ace_numeric { color:#F99157;}.ace-tomorrow-night-eighties .ace_invalid { color:#CDCDCD;background-color:#F2777A;}.ace-tomorrow-night-eighties .ace_invalid.ace_illegal { }.ace-tomorrow-night-eighties .ace_invalid.ace_deprecated { color:#CDCDCD;background-color:#CC99CC;}.ace-tomorrow-night-eighties .ace_support { }.ace-tomorrow-night-eighties .ace_support.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_function.ace_buildin { }.ace-tomorrow-night-eighties .ace_string { color:#99CC99;}.ace-tomorrow-night-eighties .ace_string.ace_regexp { }.ace-tomorrow-night-eighties .ace_comment { color:#999999;}.ace-tomorrow-night-eighties .ace_comment.ace_doc { }.ace-tomorrow-night-eighties .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-eighties .ace_variable { color:#F2777A;}.ace-tomorrow-night-eighties .ace_variable.ace_language { }.ace-tomorrow-night-eighties .ace_xml_pe { }.ace-tomorrow-night-eighties .ace_meta { }.ace-tomorrow-night-eighties .ace_meta.ace_tag { color:#F2777A;}.ace-tomorrow-night-eighties .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-eighties .ace_entity.ace_other.ace_attribute-name { color:#F2777A;}.ace-tomorrow-night-eighties .ace_entity.ace_name { }.ace-tomorrow-night-eighties .ace_entity.ace_name.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-eighties .ace_markup.ace_heading { color:#99CC99;}.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-eighties .ace_markup.ace_list { }.ace-tomorrow-night-eighties .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night-eighties"})
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -5339,11 +5339,11 @@ exports.setCssClass = function(node, className, include) {
|
|||
}
|
||||
};
|
||||
|
||||
function hasCssString(id, doc) {
|
||||
exports.hasCssString = function(id, doc) {
|
||||
var index = 0, sheets;
|
||||
doc = doc || document
|
||||
doc = doc || document;
|
||||
|
||||
if ((sheets = doc.styleSheets)) {
|
||||
if (doc.createStyleSheet && (sheets = doc.styleSheets)) {
|
||||
while (index < sheets.length)
|
||||
if (sheets[index++].title === id) return true;
|
||||
} else if ((sheets = doc.getElementsByTagName("style"))) {
|
||||
|
|
@ -5352,24 +5352,29 @@ function hasCssString(id, doc) {
|
|||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
exports.hasCssString = hasCssString;
|
||||
};
|
||||
|
||||
exports.importCssString = function importCssString(cssText, id, doc) {
|
||||
doc = doc || document;
|
||||
// If style is already imported return immediately.
|
||||
if (id && hasCssString(id, doc)) return null;
|
||||
if (id && exports.hasCssString(id, doc))
|
||||
return null;
|
||||
|
||||
var style;
|
||||
|
||||
if (doc.createStyleSheet) {
|
||||
var sheet = doc.createStyleSheet();
|
||||
sheet.cssText = cssText;
|
||||
if (id) sheet.title = id;
|
||||
style = doc.createStyleSheet();
|
||||
style.cssText = cssText;
|
||||
if (id)
|
||||
style.title = id;
|
||||
} else {
|
||||
var style = doc.createElementNS ?
|
||||
style = doc.createElementNS ?
|
||||
doc.createElementNS(XHTML_NS, "style") :
|
||||
doc.createElement("style");
|
||||
|
||||
if (id) style.id = id;
|
||||
style.appendChild(doc.createTextNode(cssText));
|
||||
if (id)
|
||||
style.id = id;
|
||||
|
||||
var head = doc.getElementsByTagName("head")[0] || doc.documentElement;
|
||||
head.appendChild(style);
|
||||
|
|
@ -5670,7 +5675,7 @@ if (document.documentElement.setCapture) {
|
|||
|
||||
if (!called) {
|
||||
called = true;
|
||||
releaseCaptureHandler();
|
||||
releaseCaptureHandler(e);
|
||||
}
|
||||
|
||||
exports.removeListener(el, "mousemove", eventHandler);
|
||||
|
|
@ -5695,7 +5700,7 @@ else {
|
|||
|
||||
function onMouseUp(e) {
|
||||
eventHandler && eventHandler(e);
|
||||
releaseCaptureHandler && releaseCaptureHandler();
|
||||
releaseCaptureHandler && releaseCaptureHandler(e);
|
||||
|
||||
document.removeEventListener("mousemove", onMouseMove, true);
|
||||
document.removeEventListener("mouseup", onMouseUp, true);
|
||||
|
|
@ -15811,20 +15816,11 @@ var RenderLoop = function(onRender, window) {
|
|||
var changes = _self.changes;
|
||||
_self.changes = 0;
|
||||
_self.onRender(changes);
|
||||
})
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
this.setTimeoutZero = window.requestAnimationFrame ||
|
||||
window.webkitRequestAnimationFrame ||
|
||||
window.mozRequestAnimationFrame ||
|
||||
window.oRequestAnimationFrame ||
|
||||
window.msRequestAnimationFrame;
|
||||
|
||||
if (this.setTimeoutZero) {
|
||||
this.setTimeoutZero = this.setTimeoutZero;
|
||||
} else if (window.postMessage) {
|
||||
|
||||
if (window.postMessage) {
|
||||
this.setTimeoutZero = (function(messageName, attached, listener) {
|
||||
return function setTimeoutZero(callback) {
|
||||
// Set up listener if not listening already.
|
||||
|
|
@ -15842,12 +15838,11 @@ var RenderLoop = function(onRender, window) {
|
|||
this.postMessage(messageName, "*");
|
||||
};
|
||||
})("zero-timeout-message", false, null);
|
||||
|
||||
} else {
|
||||
|
||||
}
|
||||
else {
|
||||
this.setTimeoutZero = function(callback) {
|
||||
this.setTimeout(callback, 0);
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
}).call(RenderLoop.prototype);
|
||||
|
|
@ -16294,7 +16289,30 @@ __ace_shadowed__.define("text!ace/css/editor.css", [], "@import url(//fonts.goog
|
|||
"}\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!build/demo/styles.css", [], "html {\n" +
|
||||
__ace_shadowed__.define("text!ace/ext/static.css", [], ".ace_editor {\n" +
|
||||
" font-family: 'Monaco', 'Menlo', 'Droid Sans Mono', 'Courier New', monospace;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace_editor .ace_gutter { \n" +
|
||||
" width: 25px !important;\n" +
|
||||
" display: block;\n" +
|
||||
" float: left;\n" +
|
||||
" text-align: right; \n" +
|
||||
" padding: 0 3px 0 0; \n" +
|
||||
" margin-right: 3px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace-row { clear: both; }\n" +
|
||||
"\n" +
|
||||
"*.ace_gutter-cell {\n" +
|
||||
" -moz-user-select: -moz-none;\n" +
|
||||
" -khtml-user-select: none;\n" +
|
||||
" -webkit-user-select: none;\n" +
|
||||
" user-select: none;\n" +
|
||||
"}");
|
||||
|
||||
__ace_shadowed__.define("text!build/demo/kitchen-sink/styles.css", [], "html {\n" +
|
||||
" height: 100%;\n" +
|
||||
" width: 100%;\n" +
|
||||
" overflow: hidden;\n" +
|
||||
|
|
@ -16802,13 +16820,13 @@ __ace_shadowed__.define("text!build_support/style.css", [], "body {\n" +
|
|||
"\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!demo/docs/css.css", [], ".text-layer {\n" +
|
||||
__ace_shadowed__.define("text!demo/kitchen-sink/docs/css.css", [], ".text-layer {\n" +
|
||||
" font-family: Monaco, \"Courier New\", monospace;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
" cursor: text;\n" +
|
||||
"}");
|
||||
|
||||
__ace_shadowed__.define("text!demo/styles.css", [], "html {\n" +
|
||||
__ace_shadowed__.define("text!demo/kitchen-sink/styles.css", [], "html {\n" +
|
||||
" height: 100%;\n" +
|
||||
" width: 100%;\n" +
|
||||
" overflow: hidden;\n" +
|
||||
|
|
@ -17332,6 +17350,128 @@ __ace_shadowed__.define("text!lib/ace/css/editor.css", [], "@import url(//fonts.
|
|||
"}\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!lib/ace/ext/static.css", [], ".ace_editor {\n" +
|
||||
" font-family: 'Monaco', 'Menlo', 'Droid Sans Mono', 'Courier New', monospace;\n" +
|
||||
" font-size: 12px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace_editor .ace_gutter { \n" +
|
||||
" width: 25px !important;\n" +
|
||||
" display: block;\n" +
|
||||
" float: left;\n" +
|
||||
" text-align: right; \n" +
|
||||
" padding: 0 3px 0 0; \n" +
|
||||
" margin-right: 3px;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".ace-row { clear: both; }\n" +
|
||||
"\n" +
|
||||
"*.ace_gutter-cell {\n" +
|
||||
" -moz-user-select: -moz-none;\n" +
|
||||
" -khtml-user-select: none;\n" +
|
||||
" -webkit-user-select: none;\n" +
|
||||
" user-select: none;\n" +
|
||||
"}");
|
||||
|
||||
__ace_shadowed__.define("text!node_modules/cockpit/lib/gcli/ui/arg_fetch.css", [], "\n" +
|
||||
".gcliCmdDesc { font-weight: bold; text-align: center; }\n" +
|
||||
"\n" +
|
||||
".gcliAssignment.gcliGroupHidden .gcliGroupRow { display: none; }\n" +
|
||||
"\n" +
|
||||
".gcliParamGroup { font-weight: bold; }\n" +
|
||||
".gcliParamDescr { font-size: 80%; color: #999; }\n" +
|
||||
".gcliParamName { text-align: right; }\n" +
|
||||
".gcliParamError { font-size: 80%; color: #900; }\n" +
|
||||
".gcliParamSubmit { text-align: center; }\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!node_modules/cockpit/lib/gcli/ui/hinter.css", [], "\n" +
|
||||
".gcliHintParent {\n" +
|
||||
" color: #000;\n" +
|
||||
" background: rgba(250, 250, 250, 0.8);\n" +
|
||||
" border: 1px solid #AAA;\n" +
|
||||
" border-top-right-radius: 5px;\n" +
|
||||
" border-top-left-radius: 5px;\n" +
|
||||
" margin-left: 10px;\n" +
|
||||
" margin-right: 10px;\n" +
|
||||
" display: inline-block;\n" +
|
||||
" overflow: hidden;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".gcliHints {\n" +
|
||||
" overflow: auto;\n" +
|
||||
" padding: 10px;\n" +
|
||||
" display: inline-block;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".gcliHints ul { margin: 0; padding: 0 15px; }\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!node_modules/cockpit/lib/gcli/ui/inputter.css", [], "\n" +
|
||||
".gcliCompletion { padding: 0; position: absolute; z-index: -1000; }\n" +
|
||||
".gcliCompletion.VALID { background-color: #FFF; }\n" +
|
||||
".gcliCompletion.INCOMPLETE { background-color: #DDD; }\n" +
|
||||
".gcliCompletion.ERROR { background-color: #DDD; }\n" +
|
||||
".gcliCompletion span { color: #FFF; }\n" +
|
||||
".gcliCompletion span.INCOMPLETE { color: #DDD; border-bottom: 2px dotted #999; }\n" +
|
||||
".gcliCompletion span.ERROR { color: #DDD; border-bottom: 2px dotted #F00; }\n" +
|
||||
"span.gcliPrompt { color: #66F; font-weight: bold; }\n" +
|
||||
"span.gcliCompl { color: #999; }\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!node_modules/cockpit/lib/gcli/ui/menu.css", [], "\n" +
|
||||
"/* The items in a menu. Used primarily for the command menu */\n" +
|
||||
".gcliOption { overflow: hidden; white-space: nowrap; cursor: pointer; }\n" +
|
||||
".gcliOption:hover { background-color: rgb(230, 230, 230) }\n" +
|
||||
".gcliOptName { padding-right: 5px; }\n" +
|
||||
".gcliOptDesc { font-size: 80%; color: #999; }\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!node_modules/cockpit/lib/gcli/ui/request_view.css", [], "\n" +
|
||||
".gcliReports { overflow: auto; }\n" +
|
||||
"\n" +
|
||||
".gcliRowIn {\n" +
|
||||
" display: box; display: -moz-box; display: -webkit-box;\n" +
|
||||
" box-orient: horizontal; -moz-box-orient: horizontal; -webkit-box-orient: horizontal;\n" +
|
||||
" box-align: center; -moz-box-align: center; -webkit-box-align: center;\n" +
|
||||
" color: #333;\n" +
|
||||
" background-color: #EEE;\n" +
|
||||
" width: 100%;\n" +
|
||||
" font-family: consolas, courier, monospace;\n" +
|
||||
"}\n" +
|
||||
".gcliRowIn > * { padding-left: 2px; padding-right: 2px; }\n" +
|
||||
".gcliRowIn > img { cursor: pointer; }\n" +
|
||||
".gcliHover { display: none; }\n" +
|
||||
".gcliRowIn:hover > .gcliHover { display: block; }\n" +
|
||||
".gcliRowIn:hover > .gcliHover.gcliHidden { display: none; }\n" +
|
||||
".gcliOutTyped {\n" +
|
||||
" box-flex: 1; -moz-box-flex: 1; -webkit-box-flex: 1;\n" +
|
||||
" font-weight: bold; color: #000; font-size: 120%;\n" +
|
||||
"}\n" +
|
||||
".gcliRowOutput { padding-left: 10px; line-height: 1.2em; }\n" +
|
||||
".gcliRowOutput strong,\n" +
|
||||
".gcliRowOutput b,\n" +
|
||||
".gcliRowOutput th,\n" +
|
||||
".gcliRowOutput h1,\n" +
|
||||
".gcliRowOutput h2,\n" +
|
||||
".gcliRowOutput h3 { color: #000; }\n" +
|
||||
".gcliRowOutput a { font-weight: bold; color: #666; text-decoration: none; }\n" +
|
||||
".gcliRowOutput a: hover { text-decoration: underline; cursor: pointer; }\n" +
|
||||
".gcliRowOutput input[type=password],\n" +
|
||||
".gcliRowOutput input[type=text],\n" +
|
||||
".gcliRowOutput textarea {\n" +
|
||||
" color: #000; font-size: 120%;\n" +
|
||||
" background: transparent; padding: 3px;\n" +
|
||||
" border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;\n" +
|
||||
"}\n" +
|
||||
".gcliRowOutput table,\n" +
|
||||
".gcliRowOutput td,\n" +
|
||||
".gcliRowOutput th { border: 0; padding: 0 2px; }\n" +
|
||||
".gcliRowOutput .right { text-align: right; }\n" +
|
||||
"\n" +
|
||||
".gcliGt { font-weight: bold; font-size: 120%; }\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!node_modules/uglify-js/docstyle.css", [], "html { font-family: \"Lucida Grande\",\"Trebuchet MS\",sans-serif; font-size: 12pt; }\n" +
|
||||
"body { max-width: 60em; }\n" +
|
||||
".title { text-align: center; }\n" +
|
||||
|
|
@ -17409,83 +17549,6 @@ __ace_shadowed__.define("text!node_modules/uglify-js/docstyle.css", [], "html {
|
|||
"}\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!support/cockpit/lib/cockpit/ui/cli_view.css", [], "\n" +
|
||||
"#cockpitInput { padding-left: 16px; }\n" +
|
||||
"\n" +
|
||||
".cptOutput { overflow: auto; position: absolute; z-index: 999; display: none; }\n" +
|
||||
"\n" +
|
||||
".cptCompletion { padding: 0; position: absolute; z-index: -1000; }\n" +
|
||||
".cptCompletion.VALID { background: #FFF; }\n" +
|
||||
".cptCompletion.INCOMPLETE { background: #DDD; }\n" +
|
||||
".cptCompletion.INVALID { background: #DDD; }\n" +
|
||||
".cptCompletion span { color: #FFF; }\n" +
|
||||
".cptCompletion span.INCOMPLETE { color: #DDD; border-bottom: 2px dotted #F80; }\n" +
|
||||
".cptCompletion span.INVALID { color: #DDD; border-bottom: 2px dotted #F00; }\n" +
|
||||
"span.cptPrompt { color: #66F; font-weight: bold; }\n" +
|
||||
"\n" +
|
||||
"\n" +
|
||||
".cptHints {\n" +
|
||||
" color: #000;\n" +
|
||||
" position: absolute;\n" +
|
||||
" border: 1px solid rgba(230, 230, 230, 0.8);\n" +
|
||||
" background: rgba(250, 250, 250, 0.8);\n" +
|
||||
" -moz-border-radius-topleft: 10px;\n" +
|
||||
" -moz-border-radius-topright: 10px;\n" +
|
||||
" border-top-left-radius: 10px; border-top-right-radius: 10px;\n" +
|
||||
" z-index: 1000;\n" +
|
||||
" padding: 8px;\n" +
|
||||
" display: none;\n" +
|
||||
"}\n" +
|
||||
"\n" +
|
||||
".cptFocusPopup { display: block; }\n" +
|
||||
".cptFocusPopup.cptNoPopup { display: none; }\n" +
|
||||
"\n" +
|
||||
".cptHints ul { margin: 0; padding: 0 15px; }\n" +
|
||||
"\n" +
|
||||
".cptGt { font-weight: bold; font-size: 120%; }\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!support/cockpit/lib/cockpit/ui/request_view.css", [], "\n" +
|
||||
".cptRowIn {\n" +
|
||||
" display: box; display: -moz-box; display: -webkit-box;\n" +
|
||||
" box-orient: horizontal; -moz-box-orient: horizontal; -webkit-box-orient: horizontal;\n" +
|
||||
" box-align: center; -moz-box-align: center; -webkit-box-align: center;\n" +
|
||||
" color: #333;\n" +
|
||||
" background-color: #EEE;\n" +
|
||||
" width: 100%;\n" +
|
||||
" font-family: consolas, courier, monospace;\n" +
|
||||
"}\n" +
|
||||
".cptRowIn > * { padding-left: 2px; padding-right: 2px; }\n" +
|
||||
".cptRowIn > img { cursor: pointer; }\n" +
|
||||
".cptHover { display: none; }\n" +
|
||||
".cptRowIn:hover > .cptHover { display: block; }\n" +
|
||||
".cptRowIn:hover > .cptHover.cptHidden { display: none; }\n" +
|
||||
".cptOutTyped {\n" +
|
||||
" box-flex: 1; -moz-box-flex: 1; -webkit-box-flex: 1;\n" +
|
||||
" font-weight: bold; color: #000; font-size: 120%;\n" +
|
||||
"}\n" +
|
||||
".cptRowOutput { padding-left: 10px; line-height: 1.2em; }\n" +
|
||||
".cptRowOutput strong,\n" +
|
||||
".cptRowOutput b,\n" +
|
||||
".cptRowOutput th,\n" +
|
||||
".cptRowOutput h1,\n" +
|
||||
".cptRowOutput h2,\n" +
|
||||
".cptRowOutput h3 { color: #000; }\n" +
|
||||
".cptRowOutput a { font-weight: bold; color: #666; text-decoration: none; }\n" +
|
||||
".cptRowOutput a: hover { text-decoration: underline; cursor: pointer; }\n" +
|
||||
".cptRowOutput input[type=password],\n" +
|
||||
".cptRowOutput input[type=text],\n" +
|
||||
".cptRowOutput textarea {\n" +
|
||||
" color: #000; font-size: 120%;\n" +
|
||||
" background: transparent; padding: 3px;\n" +
|
||||
" border-radius: 5px; -moz-border-radius: 5px; -webkit-border-radius: 5px;\n" +
|
||||
"}\n" +
|
||||
".cptRowOutput table,\n" +
|
||||
".cptRowOutput td,\n" +
|
||||
".cptRowOutput th { border: 0; padding: 0 2px; }\n" +
|
||||
".cptRowOutput .right { text-align: right; }\n" +
|
||||
"");
|
||||
|
||||
__ace_shadowed__.define("text!tool/Theme.tmpl.css", [], ".%cssClass% .ace_editor {\n" +
|
||||
" border: 2px solid rgb(159, 159, 159);\n" +
|
||||
"}\n" +
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
__ace_shadowed__.define("ace/mode/python",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/python_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/python_highlight_rules").PythonHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules())};d.inherits(j,e),function(){this.toggleCommentLines=function(a,b,c,d){var e=!0,f=[],g=/^(\s*)#/;for(var h=c;h<=d;h++)if(!g.test(b.getLine(h))){e=!1;break}if(e){var j=new i(0,0,0,0);for(var h=c;h<=d;h++){var k=b.getLine(h),l=k.match(g);j.start.row=h,j.end.row=h,j.end.column=l[0].length,b.replace(j,l[1])}}else b.indentRows(c,d,"#")},this.getNextLineIndent=function(a,b,c){var d=this.$getIndent(b),e=this.$tokenizer.getLineTokens(b,a),f=e.tokens,g=e.state;if(f.length&&f[f.length-1].type=="comment")return d;if(a=="start"){var h=b.match(/^.*[\{\(\[\:]\s*$/);h&&(d+=c)}return d};var a={pass:1,"return":1,raise:1,"break":1,"continue":1};this.checkOutdent=function(b,c,d){if(d!=="\r\n"&&d!=="\r"&&d!=="\n")return!1;var e=this.$tokenizer.getLineTokens(c.trim(),b).tokens;if(!e)return!1;do var f=e.pop();while(f&&(f.type=="comment"||f.type=="text"&&f.value.match(/^\s+$/)));return f?f.type=="keyword"&&a[f.value]:!1},this.autoOutdent=function(a,b,c){c+=1;var d=this.$getIndent(b.getLine(c)),e=b.getTabString();d.slice(-e.length)==e&&b.remove(new i(c,d.length-e.length,c,d.length))}}.call(j.prototype),b.Mode=j}),__ace_shadowed__.define("ace/mode/python_highlight_rules",["require","exports","module","pilot/oop","pilot/lang","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("pilot/lang"),f=a("ace/mode/text_highlight_rules").TextHighlightRules,g=function(){var a=e.arrayToMap("and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield".split("|")),b=e.arrayToMap("True|False|None|NotImplemented|Ellipsis|__debug__".split("|")),c=e.arrayToMap("abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|binfile|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|set|apply|delattr|help|next|setattr|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern".split("|")),d=e.arrayToMap("".split("|")),f="(?:r|u|ur|R|U|UR|Ur|uR)?",g="(?:(?:[1-9]\\d*)|(?:0))",h="(?:0[oO]?[0-7]+)",i="(?:0[xX][\\dA-Fa-f]+)",j="(?:0[bB][01]+)",k="(?:"+g+"|"+h+"|"+i+"|"+j+")",l="(?:[eE][+-]?\\d+)",m="(?:\\.\\d+)",n="(?:\\d+)",o="(?:(?:"+n+"?"+m+")|(?:"+n+"\\.))",p="(?:(?:"+o+"|"+n+")"+l+")",q="(?:"+p+"|"+o+")";this.$rules={start:[{token:"comment",regex:"#.*$"},{token:"string",regex:f+'"{3}(?:[^\\\\]|\\\\.)*?"{3}'},{token:"string",merge:!0,regex:f+'"{3}.*$',next:"qqstring"},{token:"string",regex:f+'"(?:[^\\\\]|\\\\.)*?"'},{token:"string",regex:f+"'{3}(?:[^\\\\]|\\\\.)*?'{3}"},{token:"string",merge:!0,regex:f+"'{3}.*$",next:"qstring"},{token:"string",regex:f+"'(?:[^\\\\]|\\\\.)*?'"},{token:"constant.numeric",regex:"(?:"+q+"|\\d+)[jJ]\\b"},{token:"constant.numeric",regex:q},{token:"constant.numeric",regex:k+"[lL]\\b"},{token:"constant.numeric",regex:k+"\\b"},{token:function(e){return a.hasOwnProperty(e)?"keyword":b.hasOwnProperty(e)?"constant.language":d.hasOwnProperty(e)?"invalid.illegal":c.hasOwnProperty(e)?"support.function":e=="debugger"?"invalid.deprecated":"identifier"},regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|%|<<|>>|&|\\||\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"lparen.paren",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]\\)\\}]"},{token:"text",regex:"\\s+"}],qqstring:[{token:"string",regex:'(?:[^\\\\]|\\\\.)*?"{3}',next:"start"},{token:"string",merge:!0,regex:".+"}],qstring:[{token:"string",regex:"(?:[^\\\\]|\\\\.)*?'{3}",next:"start"},{token:"string",merge:!0,regex:".+"}]}};d.inherits(g,f),b.PythonHighlightRules=g}),__ace_shadowed__.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};(function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}}).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
__ace_shadowed__.define("ace/mode/python",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/python_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/python_highlight_rules").PythonHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules())};d.inherits(j,e),function(){this.toggleCommentLines=function(a,b,c,d){var e=!0,f=[],g=/^(\s*)#/;for(var h=c;h<=d;h++)if(!g.test(b.getLine(h))){e=!1;break}if(e){var j=new i(0,0,0,0);for(var h=c;h<=d;h++){var k=b.getLine(h),l=k.match(g);j.start.row=h,j.end.row=h,j.end.column=l[0].length,b.replace(j,l[1])}}else b.indentRows(c,d,"#")},this.getNextLineIndent=function(a,b,c){var d=this.$getIndent(b),e=this.$tokenizer.getLineTokens(b,a),f=e.tokens,g=e.state;if(f.length&&f[f.length-1].type=="comment")return d;if(a=="start"){var h=b.match(/^.*[\{\(\[\:]\s*$/);h&&(d+=c)}return d};var a={pass:1,"return":1,raise:1,"break":1,"continue":1};this.checkOutdent=function(b,c,d){if(d!=="\r\n"&&d!=="\r"&&d!=="\n")return!1;var e=this.$tokenizer.getLineTokens(c.trim(),b).tokens;if(!e)return!1;do var f=e.pop();while(f&&(f.type=="comment"||f.type=="text"&&f.value.match(/^\s+$/)));return f?f.type=="keyword"&&a[f.value]:!1},this.autoOutdent=function(a,b,c){c+=1;var d=this.$getIndent(b.getLine(c)),e=b.getTabString();d.slice(-e.length)==e&&b.remove(new i(c,d.length-e.length,c,d.length))}}.call(j.prototype),b.Mode=j}),__ace_shadowed__.define("ace/mode/python_highlight_rules",["require","exports","module","pilot/oop","pilot/lang","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("pilot/lang"),f=a("ace/mode/text_highlight_rules").TextHighlightRules,g=function(){var a=e.arrayToMap("and|as|assert|break|class|continue|def|del|elif|else|except|exec|finally|for|from|global|if|import|in|is|lambda|not|or|pass|print|raise|return|try|while|with|yield".split("|")),b=e.arrayToMap("True|False|None|NotImplemented|Ellipsis|__debug__".split("|")),c=e.arrayToMap("abs|divmod|input|open|staticmethod|all|enumerate|int|ord|str|any|eval|isinstance|pow|sum|basestring|execfile|issubclass|print|super|binfile|iter|property|tuple|bool|filter|len|range|type|bytearray|float|list|raw_input|unichr|callable|format|locals|reduce|unicode|chr|frozenset|long|reload|vars|classmethod|getattr|map|repr|xrange|cmp|globals|max|reversed|zip|compile|hasattr|memoryview|round|__import__|complex|hash|min|set|apply|delattr|help|next|setattr|buffer|dict|hex|object|slice|coerce|dir|id|oct|sorted|intern".split("|")),d=e.arrayToMap("".split("|")),f="(?:r|u|ur|R|U|UR|Ur|uR)?",g="(?:(?:[1-9]\\d*)|(?:0))",h="(?:0[oO]?[0-7]+)",i="(?:0[xX][\\dA-Fa-f]+)",j="(?:0[bB][01]+)",k="(?:"+g+"|"+h+"|"+i+"|"+j+")",l="(?:[eE][+-]?\\d+)",m="(?:\\.\\d+)",n="(?:\\d+)",o="(?:(?:"+n+"?"+m+")|(?:"+n+"\\.))",p="(?:(?:"+o+"|"+n+")"+l+")",q="(?:"+p+"|"+o+")";this.$rules={start:[{token:"comment",regex:"#.*$"},{token:"string",regex:f+'"{3}(?:[^\\\\]|\\\\.)*?"{3}'},{token:"string",merge:!0,regex:f+'"{3}.*$',next:"qqstring"},{token:"string",regex:f+'"(?:[^\\\\]|\\\\.)*?"'},{token:"string",regex:f+"'{3}(?:[^\\\\]|\\\\.)*?'{3}"},{token:"string",merge:!0,regex:f+"'{3}.*$",next:"qstring"},{token:"string",regex:f+"'(?:[^\\\\]|\\\\.)*?'"},{token:"constant.numeric",regex:"(?:"+q+"|\\d+)[jJ]\\b"},{token:"constant.numeric",regex:q},{token:"constant.numeric",regex:k+"[lL]\\b"},{token:"constant.numeric",regex:k+"\\b"},{token:function(e){return a.hasOwnProperty(e)?"keyword":b.hasOwnProperty(e)?"constant.language":d.hasOwnProperty(e)?"invalid.illegal":c.hasOwnProperty(e)?"support.function":e=="debugger"?"invalid.deprecated":"identifier"},regex:"[a-zA-Z_$][a-zA-Z0-9_$]*\\b"},{token:"keyword.operator",regex:"\\+|\\-|\\*|\\*\\*|\\/|\\/\\/|%|<<|>>|&|\\||\\^|~|<|>|<=|=>|==|!=|<>|="},{token:"lparen.paren",regex:"[\\[\\(\\{]"},{token:"paren.rparen",regex:"[\\]\\)\\}]"},{token:"text",regex:"\\s+"}],qqstring:[{token:"string",regex:'(?:[^\\\\]|\\\\.)*?"{3}',next:"start"},{token:"string",merge:!0,regex:".+"}],qstring:[{token:"string",regex:"(?:[^\\\\]|\\\\.)*?'{3}",next:"start"},{token:"string",merge:!0,regex:".+"}]}};d.inherits(g,f),b.PythonHighlightRules=g}),__ace_shadowed__.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};((function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}})).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -1 +1 @@
|
|||
__ace_shadowed__.define("ace/mode/textile",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/textile_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/textile_highlight_rules").TextileHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules()),this.$outdent=new h};d.inherits(j,e),function(){this.getNextLineIndent=function(a,b,c){return a=="intag"?c:""},this.checkOutdent=function(a,b,c){return this.$outdent.checkOutdent(b,c)},this.autoOutdent=function(a,b,c){this.$outdent.autoOutdent(b,c)}}.call(j.prototype),b.Mode=j}),__ace_shadowed__.define("ace/mode/textile_highlight_rules",["require","exports","module","pilot/oop","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text_highlight_rules").TextHighlightRules,f=function(){this.$rules={start:[{token:"keyword",token:function(a){return a.match(/^h\d$/)?"markup.heading."+a.charAt(1):"markup.heading"},regex:"h1|h2|h3|h4|h5|h6|bq|p|bc|pre",next:"blocktag"},{token:"keyword",regex:"[\\*]+|[#]+"},{token:"text",regex:".+"}],blocktag:[{token:"keyword",regex:"\\. ",next:"start"},{token:"keyword",regex:"\\(",next:"blocktagproperties"}],blocktagproperties:[{token:"keyword",regex:"\\)",next:"blocktag"},{token:"string",regex:"[a-zA-Z0-9\\-_]+"},{token:"keyword",regex:"#"}]}};d.inherits(f,e),b.TextileHighlightRules=f}),__ace_shadowed__.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};(function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}}).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
__ace_shadowed__.define("ace/mode/textile",["require","exports","module","pilot/oop","ace/mode/text","ace/tokenizer","ace/mode/textile_highlight_rules","ace/mode/matching_brace_outdent","ace/range"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text").Mode,f=a("ace/tokenizer").Tokenizer,g=a("ace/mode/textile_highlight_rules").TextileHighlightRules,h=a("ace/mode/matching_brace_outdent").MatchingBraceOutdent,i=a("ace/range").Range,j=function(){this.$tokenizer=new f((new g).getRules()),this.$outdent=new h};d.inherits(j,e),function(){this.getNextLineIndent=function(a,b,c){return a=="intag"?c:""},this.checkOutdent=function(a,b,c){return this.$outdent.checkOutdent(b,c)},this.autoOutdent=function(a,b,c){this.$outdent.autoOutdent(b,c)}}.call(j.prototype),b.Mode=j}),__ace_shadowed__.define("ace/mode/textile_highlight_rules",["require","exports","module","pilot/oop","ace/mode/text_highlight_rules"],function(a,b,c){var d=a("pilot/oop"),e=a("ace/mode/text_highlight_rules").TextHighlightRules,f=function(){this.$rules={start:[{token:"keyword",token:function(a){return a.match(/^h\d$/)?"markup.heading."+a.charAt(1):"markup.heading"},regex:"h1|h2|h3|h4|h5|h6|bq|p|bc|pre",next:"blocktag"},{token:"keyword",regex:"[\\*]+|[#]+"},{token:"text",regex:".+"}],blocktag:[{token:"keyword",regex:"\\. ",next:"start"},{token:"keyword",regex:"\\(",next:"blocktagproperties"}],blocktagproperties:[{token:"keyword",regex:"\\)",next:"blocktag"},{token:"string",regex:"[a-zA-Z0-9\\-_]+"},{token:"keyword",regex:"#"}]}};d.inherits(f,e),b.TextileHighlightRules=f}),__ace_shadowed__.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(a,b,c){var d=a("ace/range").Range,e=function(){};((function(){this.checkOutdent=function(a,b){return/^\s+$/.test(a)?/^\s*\}/.test(b):!1},this.autoOutdent=function(a,b){var c=a.getLine(b),e=c.match(/^(\s*\})/);if(!e)return 0;var f=e[1].length,g=a.findMatchingBracket({row:b,column:f});if(!g||g.row==b)return 0;var h=this.$getIndent(a.getLine(g.row));a.replace(new d(b,0,b,f-1),h)},this.$getIndent=function(a){var b=a.match(/^(\s+)/);return b?b[1]:""}})).call(e.prototype),b.MatchingBraceOutdent=e})
|
||||
|
|
@ -1 +1 @@
|
|||
__ace_shadowed__.define("ace/theme/tomorrow",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow .ace_scroller { background-color: #FFFFFF;}.ace-tomorrow .ace_text-layer { cursor: text; color: #4D4D4C;}.ace-tomorrow .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow .ace_marker-layer .ace_selection { background: #D6D6D6;}.ace-tomorrow .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #D1D1D1;}.ace-tomorrow .ace_marker-layer .ace_active_line { background: #EFEFEF;} .ace-tomorrow .ace_invisible { color: #D1D1D1;}.ace-tomorrow .ace_keyword { color:#8959A8;}.ace-tomorrow .ace_keyword.ace_operator { color:#3E999F;}.ace-tomorrow .ace_constant { }.ace-tomorrow .ace_constant.ace_language { color:#F5871F;}.ace-tomorrow .ace_constant.ace_library { }.ace-tomorrow .ace_constant.ace_numeric { color:#F5871F;}.ace-tomorrow .ace_invalid { color:#FFFFFF;background-color:#C82829;}.ace-tomorrow .ace_invalid.ace_illegal { }.ace-tomorrow .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#8959A8;}.ace-tomorrow .ace_support { }.ace-tomorrow .ace_support.ace_function { color:#4271AE;}.ace-tomorrow .ace_function.ace_buildin { }.ace-tomorrow .ace_string { color:#718C00;}.ace-tomorrow .ace_string.ace_regexp { color:#C82829;}.ace-tomorrow .ace_comment { color:#8E908C;}.ace-tomorrow .ace_comment.ace_doc { }.ace-tomorrow .ace_comment.ace_doc.ace_tag { }.ace-tomorrow .ace_variable { color:#C82829;}.ace-tomorrow .ace_variable.ace_language { }.ace-tomorrow .ace_xml_pe { }.ace-tomorrow .ace_meta { }.ace-tomorrow .ace_meta.ace_tag { color:#C82829;}.ace-tomorrow .ace_meta.ace_tag.ace_input { }.ace-tomorrow .ace_entity.ace_other.ace_attribute-name { color:#C82829;}.ace-tomorrow .ace_entity.ace_name { }.ace-tomorrow .ace_entity.ace_name.ace_function { color:#4271AE;}.ace-tomorrow .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow .ace_markup.ace_heading { color:#718C00;}.ace-tomorrow .ace_markup.ace_heading.ace_1 { }.ace-tomorrow .ace_markup.ace_heading.ace_2 { }.ace-tomorrow .ace_markup.ace_heading.ace_3 { }.ace-tomorrow .ace_markup.ace_heading.ace_4 { }.ace-tomorrow .ace_markup.ace_heading.ace_5 { }.ace-tomorrow .ace_markup.ace_heading.ace_6 { }.ace-tomorrow .ace_markup.ace_list { }.ace-tomorrow .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow"})
|
||||
__ace_shadowed__.define("ace/theme/tomorrow",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow .ace_scroller { background-color: #FFFFFF;}.ace-tomorrow .ace_text-layer { cursor: text; color: #4D4D4C;}.ace-tomorrow .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow .ace_marker-layer .ace_selection { background: #D6D6D6;}.ace-tomorrow .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #D1D1D1;}.ace-tomorrow .ace_marker-layer .ace_active_line { background: #EFEFEF;} .ace-tomorrow .ace_invisible { color: #D1D1D1;}.ace-tomorrow .ace_keyword { color:#8959A8;}.ace-tomorrow .ace_keyword.ace_operator { color:#3E999F;}.ace-tomorrow .ace_constant { }.ace-tomorrow .ace_constant.ace_language { color:#F5871F;}.ace-tomorrow .ace_constant.ace_library { }.ace-tomorrow .ace_constant.ace_numeric { color:#F5871F;}.ace-tomorrow .ace_invalid { color:#FFFFFF;background-color:#C82829;}.ace-tomorrow .ace_invalid.ace_illegal { }.ace-tomorrow .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#8959A8;}.ace-tomorrow .ace_support { }.ace-tomorrow .ace_support.ace_function { color:#4271AE;}.ace-tomorrow .ace_function.ace_buildin { }.ace-tomorrow .ace_string { color:#718C00;}.ace-tomorrow .ace_string.ace_regexp { color:#C82829;}.ace-tomorrow .ace_comment { color:#8E908C;}.ace-tomorrow .ace_comment.ace_doc { }.ace-tomorrow .ace_comment.ace_doc.ace_tag { }.ace-tomorrow .ace_variable { color:#C82829;}.ace-tomorrow .ace_variable.ace_language { }.ace-tomorrow .ace_xml_pe { }.ace-tomorrow .ace_meta { }.ace-tomorrow .ace_meta.ace_tag { color:#C82829;}.ace-tomorrow .ace_meta.ace_tag.ace_input { }.ace-tomorrow .ace_entity.ace_other.ace_attribute-name { color:#C82829;}.ace-tomorrow .ace_entity.ace_name { }.ace-tomorrow .ace_entity.ace_name.ace_function { color:#4271AE;}.ace-tomorrow .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow .ace_markup.ace_heading { color:#718C00;}.ace-tomorrow .ace_markup.ace_heading.ace_1 { }.ace-tomorrow .ace_markup.ace_heading.ace_2 { }.ace-tomorrow .ace_markup.ace_heading.ace_3 { }.ace-tomorrow .ace_markup.ace_heading.ace_4 { }.ace-tomorrow .ace_markup.ace_heading.ace_5 { }.ace-tomorrow .ace_markup.ace_heading.ace_6 { }.ace-tomorrow .ace_markup.ace_list { }.ace-tomorrow .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow"})
|
||||
|
|
@ -1 +1 @@
|
|||
__ace_shadowed__.define("ace/theme/tomorrow_night",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night .ace_scroller { background-color: #1D1F21;}.ace-tomorrow-night .ace_text-layer { cursor: text; color: #C5C8C6;}.ace-tomorrow-night .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow-night .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow-night .ace_marker-layer .ace_selection { background: #373B41;}.ace-tomorrow-night .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #4B4E55;}.ace-tomorrow-night .ace_marker-layer .ace_active_line { background: #282A2E;} .ace-tomorrow-night .ace_invisible { color: #4B4E55;}.ace-tomorrow-night .ace_keyword { color:#B294BB;}.ace-tomorrow-night .ace_keyword.ace_operator { color:#8ABEB7;}.ace-tomorrow-night .ace_constant { }.ace-tomorrow-night .ace_constant.ace_language { color:#DE935F;}.ace-tomorrow-night .ace_constant.ace_library { }.ace-tomorrow-night .ace_constant.ace_numeric { color:#DE935F;}.ace-tomorrow-night .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night .ace_invalid.ace_illegal { }.ace-tomorrow-night .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night .ace_support { }.ace-tomorrow-night .ace_support.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_function.ace_buildin { }.ace-tomorrow-night .ace_string { color:#B5BD68;}.ace-tomorrow-night .ace_string.ace_regexp { color:#CC6666;}.ace-tomorrow-night .ace_comment { color:#969896;}.ace-tomorrow-night .ace_comment.ace_doc { }.ace-tomorrow-night .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night .ace_variable { color:#CC6666;}.ace-tomorrow-night .ace_variable.ace_language { }.ace-tomorrow-night .ace_xml_pe { }.ace-tomorrow-night .ace_meta { }.ace-tomorrow-night .ace_meta.ace_tag { color:#CC6666;}.ace-tomorrow-night .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night .ace_entity.ace_other.ace_attribute-name { color:#CC6666;}.ace-tomorrow-night .ace_entity.ace_name { }.ace-tomorrow-night .ace_entity.ace_name.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night .ace_markup.ace_heading { color:#B5BD68;}.ace-tomorrow-night .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night .ace_markup.ace_list { }.ace-tomorrow-night .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night"})
|
||||
__ace_shadowed__.define("ace/theme/tomorrow_night",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night .ace_scroller { background-color: #1D1F21;}.ace-tomorrow-night .ace_text-layer { cursor: text; color: #C5C8C6;}.ace-tomorrow-night .ace_cursor { border-left: 2px solid #AEAFAD;}.ace-tomorrow-night .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #AEAFAD;} .ace-tomorrow-night .ace_marker-layer .ace_selection { background: #373B41;}.ace-tomorrow-night .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #4B4E55;}.ace-tomorrow-night .ace_marker-layer .ace_active_line { background: #282A2E;} .ace-tomorrow-night .ace_invisible { color: #4B4E55;}.ace-tomorrow-night .ace_keyword { color:#B294BB;}.ace-tomorrow-night .ace_keyword.ace_operator { color:#8ABEB7;}.ace-tomorrow-night .ace_constant { }.ace-tomorrow-night .ace_constant.ace_language { color:#DE935F;}.ace-tomorrow-night .ace_constant.ace_library { }.ace-tomorrow-night .ace_constant.ace_numeric { color:#DE935F;}.ace-tomorrow-night .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night .ace_invalid.ace_illegal { }.ace-tomorrow-night .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night .ace_support { }.ace-tomorrow-night .ace_support.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_function.ace_buildin { }.ace-tomorrow-night .ace_string { color:#B5BD68;}.ace-tomorrow-night .ace_string.ace_regexp { color:#CC6666;}.ace-tomorrow-night .ace_comment { color:#969896;}.ace-tomorrow-night .ace_comment.ace_doc { }.ace-tomorrow-night .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night .ace_variable { color:#CC6666;}.ace-tomorrow-night .ace_variable.ace_language { }.ace-tomorrow-night .ace_xml_pe { }.ace-tomorrow-night .ace_meta { }.ace-tomorrow-night .ace_meta.ace_tag { color:#CC6666;}.ace-tomorrow-night .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night .ace_entity.ace_other.ace_attribute-name { color:#CC6666;}.ace-tomorrow-night .ace_entity.ace_name { }.ace-tomorrow-night .ace_entity.ace_name.ace_function { color:#81A2BE;}.ace-tomorrow-night .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night .ace_markup.ace_heading { color:#B5BD68;}.ace-tomorrow-night .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night .ace_markup.ace_list { }.ace-tomorrow-night .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night"})
|
||||
|
|
@ -1 +1 @@
|
|||
__ace_shadowed__.define("ace/theme/tomorrow_night_blue",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night-blue .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-blue .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-blue .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-blue .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-blue .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-blue .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-blue .ace_scroller { background-color: #002451;}.ace-tomorrow-night-blue .ace_text-layer { cursor: text; color: #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor { border-left: 2px solid #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #FFFFFF;} .ace-tomorrow-night-blue .ace_marker-layer .ace_selection { background: #003F8E;}.ace-tomorrow-night-blue .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-blue .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #404F7D;}.ace-tomorrow-night-blue .ace_marker-layer .ace_active_line { background: #00346E;} .ace-tomorrow-night-blue .ace_invisible { color: #404F7D;}.ace-tomorrow-night-blue .ace_keyword { color:#EBBBFF;}.ace-tomorrow-night-blue .ace_keyword.ace_operator { color:#99FFFF;}.ace-tomorrow-night-blue .ace_constant { }.ace-tomorrow-night-blue .ace_constant.ace_language { color:#FFC58F;}.ace-tomorrow-night-blue .ace_constant.ace_library { }.ace-tomorrow-night-blue .ace_constant.ace_numeric { color:#FFC58F;}.ace-tomorrow-night-blue .ace_invalid { color:#FFFFFF;background-color:#F99DA5;}.ace-tomorrow-night-blue .ace_invalid.ace_illegal { }.ace-tomorrow-night-blue .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#EBBBFF;}.ace-tomorrow-night-blue .ace_support { }.ace-tomorrow-night-blue .ace_support.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_function.ace_buildin { }.ace-tomorrow-night-blue .ace_string { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_string.ace_regexp { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_comment { color:#7285B7;}.ace-tomorrow-night-blue .ace_comment.ace_doc { }.ace-tomorrow-night-blue .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-blue .ace_variable { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_variable.ace_language { }.ace-tomorrow-night-blue .ace_xml_pe { }.ace-tomorrow-night-blue .ace_meta { }.ace-tomorrow-night-blue .ace_meta.ace_tag { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-blue .ace_entity.ace_other.ace_attribute-name { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_entity.ace_name { }.ace-tomorrow-night-blue .ace_entity.ace_name.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-blue .ace_markup.ace_heading { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-blue .ace_markup.ace_list { }.ace-tomorrow-night-blue .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night-blue"})
|
||||
__ace_shadowed__.define("ace/theme/tomorrow_night_blue",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night-blue .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-blue .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-blue .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-blue .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-blue .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-blue .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-blue .ace_scroller { background-color: #002451;}.ace-tomorrow-night-blue .ace_text-layer { cursor: text; color: #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor { border-left: 2px solid #FFFFFF;}.ace-tomorrow-night-blue .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #FFFFFF;} .ace-tomorrow-night-blue .ace_marker-layer .ace_selection { background: #003F8E;}.ace-tomorrow-night-blue .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-blue .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #404F7D;}.ace-tomorrow-night-blue .ace_marker-layer .ace_active_line { background: #00346E;} .ace-tomorrow-night-blue .ace_invisible { color: #404F7D;}.ace-tomorrow-night-blue .ace_keyword { color:#EBBBFF;}.ace-tomorrow-night-blue .ace_keyword.ace_operator { color:#99FFFF;}.ace-tomorrow-night-blue .ace_constant { }.ace-tomorrow-night-blue .ace_constant.ace_language { color:#FFC58F;}.ace-tomorrow-night-blue .ace_constant.ace_library { }.ace-tomorrow-night-blue .ace_constant.ace_numeric { color:#FFC58F;}.ace-tomorrow-night-blue .ace_invalid { color:#FFFFFF;background-color:#F99DA5;}.ace-tomorrow-night-blue .ace_invalid.ace_illegal { }.ace-tomorrow-night-blue .ace_invalid.ace_deprecated { color:#FFFFFF;background-color:#EBBBFF;}.ace-tomorrow-night-blue .ace_support { }.ace-tomorrow-night-blue .ace_support.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_function.ace_buildin { }.ace-tomorrow-night-blue .ace_string { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_string.ace_regexp { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_comment { color:#7285B7;}.ace-tomorrow-night-blue .ace_comment.ace_doc { }.ace-tomorrow-night-blue .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-blue .ace_variable { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_variable.ace_language { }.ace-tomorrow-night-blue .ace_xml_pe { }.ace-tomorrow-night-blue .ace_meta { }.ace-tomorrow-night-blue .ace_meta.ace_tag { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-blue .ace_entity.ace_other.ace_attribute-name { color:#FF9DA4;}.ace-tomorrow-night-blue .ace_entity.ace_name { }.ace-tomorrow-night-blue .ace_entity.ace_name.ace_function { color:#BBDAFF;}.ace-tomorrow-night-blue .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-blue .ace_markup.ace_heading { color:#D1F1A9;}.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-blue .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-blue .ace_markup.ace_list { }.ace-tomorrow-night-blue .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night-blue"})
|
||||
|
|
@ -1 +1 @@
|
|||
__ace_shadowed__.define("ace/theme/tomorrow_night_bright",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night-bright .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-bright .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-bright .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-bright .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-bright .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-bright .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-bright .ace_scroller { background-color: #000000;}.ace-tomorrow-night-bright .ace_text-layer { cursor: text; color: #DEDEDE;}.ace-tomorrow-night-bright .ace_cursor { border-left: 2px solid #9F9F9F;}.ace-tomorrow-night-bright .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #9F9F9F;} .ace-tomorrow-night-bright .ace_marker-layer .ace_selection { background: #424242;}.ace-tomorrow-night-bright .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-bright .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #343434;}.ace-tomorrow-night-bright .ace_marker-layer .ace_active_line { background: #2A2A2A;} .ace-tomorrow-night-bright .ace_invisible { color: #343434;}.ace-tomorrow-night-bright .ace_keyword { color:#C397D8;}.ace-tomorrow-night-bright .ace_keyword.ace_operator { color:#70C0B1;}.ace-tomorrow-night-bright .ace_constant { }.ace-tomorrow-night-bright .ace_constant.ace_language { color:#E78C45;}.ace-tomorrow-night-bright .ace_constant.ace_library { }.ace-tomorrow-night-bright .ace_constant.ace_numeric { color:#E78C45;}.ace-tomorrow-night-bright .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night-bright .ace_invalid.ace_illegal { }.ace-tomorrow-night-bright .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night-bright .ace_support { }.ace-tomorrow-night-bright .ace_support.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_function.ace_buildin { }.ace-tomorrow-night-bright .ace_string { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_string.ace_regexp { color:#D54E53;}.ace-tomorrow-night-bright .ace_comment { color:#969896;}.ace-tomorrow-night-bright .ace_comment.ace_doc { }.ace-tomorrow-night-bright .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-bright .ace_variable { color:#D54E53;}.ace-tomorrow-night-bright .ace_variable.ace_language { }.ace-tomorrow-night-bright .ace_xml_pe { }.ace-tomorrow-night-bright .ace_meta { }.ace-tomorrow-night-bright .ace_meta.ace_tag { color:#D54E53;}.ace-tomorrow-night-bright .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name { color:#D54E53;}.ace-tomorrow-night-bright .ace_entity.ace_name { }.ace-tomorrow-night-bright .ace_entity.ace_name.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-bright .ace_markup.ace_heading { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-bright .ace_markup.ace_list { }.ace-tomorrow-night-bright .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night-bright"})
|
||||
__ace_shadowed__.define("ace/theme/tomorrow_night_bright",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night-bright .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-bright .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-bright .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-bright .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-bright .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-bright .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-bright .ace_scroller { background-color: #000000;}.ace-tomorrow-night-bright .ace_text-layer { cursor: text; color: #DEDEDE;}.ace-tomorrow-night-bright .ace_cursor { border-left: 2px solid #9F9F9F;}.ace-tomorrow-night-bright .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #9F9F9F;} .ace-tomorrow-night-bright .ace_marker-layer .ace_selection { background: #424242;}.ace-tomorrow-night-bright .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-bright .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #343434;}.ace-tomorrow-night-bright .ace_marker-layer .ace_active_line { background: #2A2A2A;} .ace-tomorrow-night-bright .ace_invisible { color: #343434;}.ace-tomorrow-night-bright .ace_keyword { color:#C397D8;}.ace-tomorrow-night-bright .ace_keyword.ace_operator { color:#70C0B1;}.ace-tomorrow-night-bright .ace_constant { }.ace-tomorrow-night-bright .ace_constant.ace_language { color:#E78C45;}.ace-tomorrow-night-bright .ace_constant.ace_library { }.ace-tomorrow-night-bright .ace_constant.ace_numeric { color:#E78C45;}.ace-tomorrow-night-bright .ace_invalid { color:#CED2CF;background-color:#DF5F5F;}.ace-tomorrow-night-bright .ace_invalid.ace_illegal { }.ace-tomorrow-night-bright .ace_invalid.ace_deprecated { color:#CED2CF;background-color:#B798BF;}.ace-tomorrow-night-bright .ace_support { }.ace-tomorrow-night-bright .ace_support.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_function.ace_buildin { }.ace-tomorrow-night-bright .ace_string { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_string.ace_regexp { color:#D54E53;}.ace-tomorrow-night-bright .ace_comment { color:#969896;}.ace-tomorrow-night-bright .ace_comment.ace_doc { }.ace-tomorrow-night-bright .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-bright .ace_variable { color:#D54E53;}.ace-tomorrow-night-bright .ace_variable.ace_language { }.ace-tomorrow-night-bright .ace_xml_pe { }.ace-tomorrow-night-bright .ace_meta { }.ace-tomorrow-night-bright .ace_meta.ace_tag { color:#D54E53;}.ace-tomorrow-night-bright .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-bright .ace_entity.ace_other.ace_attribute-name { color:#D54E53;}.ace-tomorrow-night-bright .ace_entity.ace_name { }.ace-tomorrow-night-bright .ace_entity.ace_name.ace_function { color:#7AA6DA;}.ace-tomorrow-night-bright .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-bright .ace_markup.ace_heading { color:#B9CA4A;}.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-bright .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-bright .ace_markup.ace_list { }.ace-tomorrow-night-bright .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night-bright"})
|
||||
|
|
@ -1 +1 @@
|
|||
__ace_shadowed__.define("ace/theme/tomorrow_night_eighties",["require","exports","module"],function(a,b,c){var d=a("pilot/dom"),e=".ace-tomorrow-night-eighties .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-eighties .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-eighties .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-eighties .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-eighties .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-eighties .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-eighties .ace_scroller { background-color: #2D2D2D;}.ace-tomorrow-night-eighties .ace_text-layer { cursor: text; color: #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor { border-left: 2px solid #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #CCCCCC;} .ace-tomorrow-night-eighties .ace_marker-layer .ace_selection { background: #515151;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-eighties .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #6A6A6A;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_active_line { background: #393939;} .ace-tomorrow-night-eighties .ace_invisible { color: #6A6A6A;}.ace-tomorrow-night-eighties .ace_keyword { color:#CC99CC;}.ace-tomorrow-night-eighties .ace_keyword.ace_operator { color:#66CCCC;}.ace-tomorrow-night-eighties .ace_constant { }.ace-tomorrow-night-eighties .ace_constant.ace_language { color:#F99157;}.ace-tomorrow-night-eighties .ace_constant.ace_library { }.ace-tomorrow-night-eighties .ace_constant.ace_numeric { color:#F99157;}.ace-tomorrow-night-eighties .ace_invalid { color:#CDCDCD;background-color:#F2777A;}.ace-tomorrow-night-eighties .ace_invalid.ace_illegal { }.ace-tomorrow-night-eighties .ace_invalid.ace_deprecated { color:#CDCDCD;background-color:#CC99CC;}.ace-tomorrow-night-eighties .ace_support { }.ace-tomorrow-night-eighties .ace_support.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_function.ace_buildin { }.ace-tomorrow-night-eighties .ace_string { color:#99CC99;}.ace-tomorrow-night-eighties .ace_string.ace_regexp { }.ace-tomorrow-night-eighties .ace_comment { color:#999999;}.ace-tomorrow-night-eighties .ace_comment.ace_doc { }.ace-tomorrow-night-eighties .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-eighties .ace_variable { color:#F2777A;}.ace-tomorrow-night-eighties .ace_variable.ace_language { }.ace-tomorrow-night-eighties .ace_xml_pe { }.ace-tomorrow-night-eighties .ace_meta { }.ace-tomorrow-night-eighties .ace_meta.ace_tag { color:#F2777A;}.ace-tomorrow-night-eighties .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-eighties .ace_entity.ace_other.ace_attribute-name { color:#F2777A;}.ace-tomorrow-night-eighties .ace_entity.ace_name { }.ace-tomorrow-night-eighties .ace_entity.ace_name.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-eighties .ace_markup.ace_heading { color:#99CC99;}.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-eighties .ace_markup.ace_list { }.ace-tomorrow-night-eighties .ace_collab.ace_user1 { }";d.importCssString(e),b.cssClass="ace-tomorrow-night-eighties"})
|
||||
__ace_shadowed__.define("ace/theme/tomorrow_night_eighties",["require","exports","module"],function(a,b,c){b.cssText=".ace-tomorrow-night-eighties .ace_editor { border: 2px solid rgb(159, 159, 159);}.ace-tomorrow-night-eighties .ace_editor.ace_focus { border: 2px solid #327fbd;}.ace-tomorrow-night-eighties .ace_gutter { width: 50px; background: #e8e8e8; color: #333; overflow : hidden;}.ace-tomorrow-night-eighties .ace_gutter-layer { width: 100%; text-align: right;}.ace-tomorrow-night-eighties .ace_gutter-layer .ace_gutter-cell { padding-right: 6px;}.ace-tomorrow-night-eighties .ace_print_margin { width: 1px; background: #e8e8e8;}.ace-tomorrow-night-eighties .ace_scroller { background-color: #2D2D2D;}.ace-tomorrow-night-eighties .ace_text-layer { cursor: text; color: #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor { border-left: 2px solid #CCCCCC;}.ace-tomorrow-night-eighties .ace_cursor.ace_overwrite { border-left: 0px; border-bottom: 1px solid #CCCCCC;} .ace-tomorrow-night-eighties .ace_marker-layer .ace_selection { background: #515151;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_step { background: rgb(198, 219, 174);}.ace-tomorrow-night-eighties .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid #6A6A6A;}.ace-tomorrow-night-eighties .ace_marker-layer .ace_active_line { background: #393939;} .ace-tomorrow-night-eighties .ace_invisible { color: #6A6A6A;}.ace-tomorrow-night-eighties .ace_keyword { color:#CC99CC;}.ace-tomorrow-night-eighties .ace_keyword.ace_operator { color:#66CCCC;}.ace-tomorrow-night-eighties .ace_constant { }.ace-tomorrow-night-eighties .ace_constant.ace_language { color:#F99157;}.ace-tomorrow-night-eighties .ace_constant.ace_library { }.ace-tomorrow-night-eighties .ace_constant.ace_numeric { color:#F99157;}.ace-tomorrow-night-eighties .ace_invalid { color:#CDCDCD;background-color:#F2777A;}.ace-tomorrow-night-eighties .ace_invalid.ace_illegal { }.ace-tomorrow-night-eighties .ace_invalid.ace_deprecated { color:#CDCDCD;background-color:#CC99CC;}.ace-tomorrow-night-eighties .ace_support { }.ace-tomorrow-night-eighties .ace_support.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_function.ace_buildin { }.ace-tomorrow-night-eighties .ace_string { color:#99CC99;}.ace-tomorrow-night-eighties .ace_string.ace_regexp { }.ace-tomorrow-night-eighties .ace_comment { color:#999999;}.ace-tomorrow-night-eighties .ace_comment.ace_doc { }.ace-tomorrow-night-eighties .ace_comment.ace_doc.ace_tag { }.ace-tomorrow-night-eighties .ace_variable { color:#F2777A;}.ace-tomorrow-night-eighties .ace_variable.ace_language { }.ace-tomorrow-night-eighties .ace_xml_pe { }.ace-tomorrow-night-eighties .ace_meta { }.ace-tomorrow-night-eighties .ace_meta.ace_tag { color:#F2777A;}.ace-tomorrow-night-eighties .ace_meta.ace_tag.ace_input { }.ace-tomorrow-night-eighties .ace_entity.ace_other.ace_attribute-name { color:#F2777A;}.ace-tomorrow-night-eighties .ace_entity.ace_name { }.ace-tomorrow-night-eighties .ace_entity.ace_name.ace_function { color:#6699CC;}.ace-tomorrow-night-eighties .ace_markup.ace_underline { text-decoration:underline;}.ace-tomorrow-night-eighties .ace_markup.ace_heading { color:#99CC99;}.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_1 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_2 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_3 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_4 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_5 { }.ace-tomorrow-night-eighties .ace_markup.ace_heading.ace_6 { }.ace-tomorrow-night-eighties .ace_markup.ace_list { }.ace-tomorrow-night-eighties .ace_collab.ace_user1 { }",b.cssClass="ace-tomorrow-night-eighties"})
|
||||
Loading…
Add table
Add a link
Reference in a new issue