|
@@ -1,21333 +1,17 @@
|
|
|
-/* ***** BEGIN LICENSE BLOCK *****
|
|
|
- * Distributed under the BSD license:
|
|
|
- *
|
|
|
- * Copyright (c) 2010, Ajax.org B.V.
|
|
|
- * All rights reserved.
|
|
|
- *
|
|
|
- * Redistribution and use in source and binary forms, with or without
|
|
|
- * modification, are permitted provided that the following conditions are met:
|
|
|
- * * Redistributions of source code must retain the above copyright
|
|
|
- * notice, this list of conditions and the following disclaimer.
|
|
|
- * * Redistributions in binary form must reproduce the above copyright
|
|
|
- * notice, this list of conditions and the following disclaimer in the
|
|
|
- * documentation and/or other materials provided with the distribution.
|
|
|
- * * Neither the name of Ajax.org B.V. nor the
|
|
|
- * names of its contributors may be used to endorse or promote products
|
|
|
- * derived from this software without specific prior written permission.
|
|
|
- *
|
|
|
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
|
|
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
- * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
|
|
|
- * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
|
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
- *
|
|
|
- * ***** END LICENSE BLOCK ***** */
|
|
|
-
|
|
|
-/**
|
|
|
- * Define a module along with a payload
|
|
|
- * @param module a name for the payload
|
|
|
- * @param payload a function to call with (require, exports, module) params
|
|
|
- */
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
-var ACE_NAMESPACE = "";
|
|
|
-
|
|
|
-var global = (function() { return this; })();
|
|
|
-if (!global && typeof window != "undefined") global = window; // strict mode
|
|
|
-
|
|
|
-
|
|
|
-if (!ACE_NAMESPACE && typeof requirejs !== "undefined")
|
|
|
- return;
|
|
|
-
|
|
|
-
|
|
|
-var define = function(module, deps, payload) {
|
|
|
- if (typeof module !== "string") {
|
|
|
- if (define.original)
|
|
|
- define.original.apply(this, arguments);
|
|
|
- else {
|
|
|
- console.error("dropping module because define wasn\'t a string.");
|
|
|
- console.trace();
|
|
|
- }
|
|
|
- return;
|
|
|
- }
|
|
|
- if (arguments.length == 2)
|
|
|
- payload = deps;
|
|
|
- if (!define.modules[module]) {
|
|
|
- define.payloads[module] = payload;
|
|
|
- define.modules[module] = null;
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-define.modules = {};
|
|
|
-define.payloads = {};
|
|
|
-
|
|
|
-/**
|
|
|
- * Get at functionality define()ed using the function above
|
|
|
- */
|
|
|
-var _require = function(parentId, module, callback) {
|
|
|
- if (typeof module === "string") {
|
|
|
- var payload = lookup(parentId, module);
|
|
|
- if (payload != undefined) {
|
|
|
- callback && callback();
|
|
|
- return payload;
|
|
|
- }
|
|
|
- } else if (Object.prototype.toString.call(module) === "[object Array]") {
|
|
|
- var params = [];
|
|
|
- for (var i = 0, l = module.length; i < l; ++i) {
|
|
|
- var dep = lookup(parentId, module[i]);
|
|
|
- if (dep == undefined && require.original)
|
|
|
- return;
|
|
|
- params.push(dep);
|
|
|
- }
|
|
|
- return callback && callback.apply(null, params) || true;
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-var require = function(module, callback) {
|
|
|
- var packagedModule = _require("", module, callback);
|
|
|
- if (packagedModule == undefined && require.original)
|
|
|
- return require.original.apply(this, arguments);
|
|
|
- return packagedModule;
|
|
|
-};
|
|
|
-
|
|
|
-var normalizeModule = function(parentId, moduleName) {
|
|
|
- // normalize plugin requires
|
|
|
- if (moduleName.indexOf("!") !== -1) {
|
|
|
- var chunks = moduleName.split("!");
|
|
|
- return normalizeModule(parentId, chunks[0]) + "!" + normalizeModule(parentId, chunks[1]);
|
|
|
- }
|
|
|
- // normalize relative requires
|
|
|
- if (moduleName.charAt(0) == ".") {
|
|
|
- var base = parentId.split("/").slice(0, -1).join("/");
|
|
|
- moduleName = base + "/" + moduleName;
|
|
|
-
|
|
|
- while(moduleName.indexOf(".") !== -1 && previous != moduleName) {
|
|
|
- var previous = moduleName;
|
|
|
- moduleName = moduleName.replace(/\/\.\//, "/").replace(/[^\/]+\/\.\.\//, "");
|
|
|
- }
|
|
|
- }
|
|
|
- return moduleName;
|
|
|
-};
|
|
|
-
|
|
|
-/**
|
|
|
- * Internal function to lookup moduleNames and resolve them by calling the
|
|
|
- * definition function if needed.
|
|
|
- */
|
|
|
-var lookup = function(parentId, moduleName) {
|
|
|
- moduleName = normalizeModule(parentId, moduleName);
|
|
|
-
|
|
|
- var module = define.modules[moduleName];
|
|
|
- if (!module) {
|
|
|
- module = define.payloads[moduleName];
|
|
|
- if (typeof module === 'function') {
|
|
|
- var exports = {};
|
|
|
- var mod = {
|
|
|
- id: moduleName,
|
|
|
- uri: '',
|
|
|
- exports: exports,
|
|
|
- packaged: true
|
|
|
- };
|
|
|
-
|
|
|
- var req = function(module, callback) {
|
|
|
- return _require(moduleName, module, callback);
|
|
|
- };
|
|
|
-
|
|
|
- var returnValue = module(req, exports, mod);
|
|
|
- exports = returnValue || mod.exports;
|
|
|
- define.modules[moduleName] = exports;
|
|
|
- delete define.payloads[moduleName];
|
|
|
- }
|
|
|
- module = define.modules[moduleName] = exports || module;
|
|
|
- }
|
|
|
- return module;
|
|
|
-};
|
|
|
-
|
|
|
-function exportAce(ns) {
|
|
|
- var root = global;
|
|
|
- if (ns) {
|
|
|
- if (!global[ns])
|
|
|
- global[ns] = {};
|
|
|
- root = global[ns];
|
|
|
- }
|
|
|
-
|
|
|
- if (!root.define || !root.define.packaged) {
|
|
|
- define.original = root.define;
|
|
|
- root.define = define;
|
|
|
- root.define.packaged = true;
|
|
|
- }
|
|
|
-
|
|
|
- if (!root.require || !root.require.packaged) {
|
|
|
- require.original = root.require;
|
|
|
- root.require = require;
|
|
|
- root.require.packaged = true;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-exportAce(ACE_NAMESPACE);
|
|
|
-
|
|
|
-})();
|
|
|
-
|
|
|
-define("ace/lib/regexp",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
- var real = {
|
|
|
- exec: RegExp.prototype.exec,
|
|
|
- test: RegExp.prototype.test,
|
|
|
- match: String.prototype.match,
|
|
|
- replace: String.prototype.replace,
|
|
|
- split: String.prototype.split
|
|
|
- },
|
|
|
- compliantExecNpcg = real.exec.call(/()??/, "")[1] === undefined, // check `exec` handling of nonparticipating capturing groups
|
|
|
- compliantLastIndexIncrement = function () {
|
|
|
- var x = /^/g;
|
|
|
- real.test.call(x, "");
|
|
|
- return !x.lastIndex;
|
|
|
- }();
|
|
|
-
|
|
|
- if (compliantLastIndexIncrement && compliantExecNpcg)
|
|
|
- return;
|
|
|
- RegExp.prototype.exec = function (str) {
|
|
|
- var match = real.exec.apply(this, arguments),
|
|
|
- name, r2;
|
|
|
- if ( typeof(str) == 'string' && match) {
|
|
|
- if (!compliantExecNpcg && match.length > 1 && indexOf(match, "") > -1) {
|
|
|
- r2 = RegExp(this.source, real.replace.call(getNativeFlags(this), "g", ""));
|
|
|
- real.replace.call(str.slice(match.index), r2, function () {
|
|
|
- for (var i = 1; i < arguments.length - 2; i++) {
|
|
|
- if (arguments[i] === undefined)
|
|
|
- match[i] = undefined;
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- if (this._xregexp && this._xregexp.captureNames) {
|
|
|
- for (var i = 1; i < match.length; i++) {
|
|
|
- name = this._xregexp.captureNames[i - 1];
|
|
|
- if (name)
|
|
|
- match[name] = match[i];
|
|
|
- }
|
|
|
- }
|
|
|
- if (!compliantLastIndexIncrement && this.global && !match[0].length && (this.lastIndex > match.index))
|
|
|
- this.lastIndex--;
|
|
|
- }
|
|
|
- return match;
|
|
|
- };
|
|
|
- if (!compliantLastIndexIncrement) {
|
|
|
- RegExp.prototype.test = function (str) {
|
|
|
- var match = real.exec.call(this, str);
|
|
|
- if (match && this.global && !match[0].length && (this.lastIndex > match.index))
|
|
|
- this.lastIndex--;
|
|
|
- return !!match;
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- function getNativeFlags (regex) {
|
|
|
- return (regex.global ? "g" : "") +
|
|
|
- (regex.ignoreCase ? "i" : "") +
|
|
|
- (regex.multiline ? "m" : "") +
|
|
|
- (regex.extended ? "x" : "") + // Proposed for ES4; included in AS3
|
|
|
- (regex.sticky ? "y" : "");
|
|
|
- }
|
|
|
-
|
|
|
- function indexOf (array, item, from) {
|
|
|
- if (Array.prototype.indexOf) // Use the native array method if available
|
|
|
- return array.indexOf(item, from);
|
|
|
- for (var i = from || 0; i < array.length; i++) {
|
|
|
- if (array[i] === item)
|
|
|
- return i;
|
|
|
- }
|
|
|
- return -1;
|
|
|
- }
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/es5-shim",["require","exports","module"], function(require, exports, module) {
|
|
|
-
|
|
|
-function Empty() {}
|
|
|
-
|
|
|
-if (!Function.prototype.bind) {
|
|
|
- Function.prototype.bind = function bind(that) { // .length is 1
|
|
|
- var target = this;
|
|
|
- if (typeof target != "function") {
|
|
|
- throw new TypeError("Function.prototype.bind called on incompatible " + target);
|
|
|
- }
|
|
|
- var args = slice.call(arguments, 1); // for normal call
|
|
|
- var bound = function () {
|
|
|
-
|
|
|
- if (this instanceof bound) {
|
|
|
-
|
|
|
- var result = target.apply(
|
|
|
- this,
|
|
|
- args.concat(slice.call(arguments))
|
|
|
- );
|
|
|
- if (Object(result) === result) {
|
|
|
- return result;
|
|
|
- }
|
|
|
- return this;
|
|
|
-
|
|
|
- } else {
|
|
|
- return target.apply(
|
|
|
- that,
|
|
|
- args.concat(slice.call(arguments))
|
|
|
- );
|
|
|
-
|
|
|
- }
|
|
|
-
|
|
|
- };
|
|
|
- if(target.prototype) {
|
|
|
- Empty.prototype = target.prototype;
|
|
|
- bound.prototype = new Empty();
|
|
|
- Empty.prototype = null;
|
|
|
- }
|
|
|
- return bound;
|
|
|
- };
|
|
|
-}
|
|
|
-var call = Function.prototype.call;
|
|
|
-var prototypeOfArray = Array.prototype;
|
|
|
-var prototypeOfObject = Object.prototype;
|
|
|
-var slice = prototypeOfArray.slice;
|
|
|
-var _toString = call.bind(prototypeOfObject.toString);
|
|
|
-var owns = call.bind(prototypeOfObject.hasOwnProperty);
|
|
|
-var defineGetter;
|
|
|
-var defineSetter;
|
|
|
-var lookupGetter;
|
|
|
-var lookupSetter;
|
|
|
-var supportsAccessors;
|
|
|
-if ((supportsAccessors = owns(prototypeOfObject, "__defineGetter__"))) {
|
|
|
- defineGetter = call.bind(prototypeOfObject.__defineGetter__);
|
|
|
- defineSetter = call.bind(prototypeOfObject.__defineSetter__);
|
|
|
- lookupGetter = call.bind(prototypeOfObject.__lookupGetter__);
|
|
|
- lookupSetter = call.bind(prototypeOfObject.__lookupSetter__);
|
|
|
-}
|
|
|
-if ([1,2].splice(0).length != 2) {
|
|
|
- if(function() { // test IE < 9 to splice bug - see issue #138
|
|
|
- function makeArray(l) {
|
|
|
- var a = new Array(l+2);
|
|
|
- a[0] = a[1] = 0;
|
|
|
- return a;
|
|
|
- }
|
|
|
- var array = [], lengthBefore;
|
|
|
-
|
|
|
- array.splice.apply(array, makeArray(20));
|
|
|
- array.splice.apply(array, makeArray(26));
|
|
|
-
|
|
|
- lengthBefore = array.length; //46
|
|
|
- array.splice(5, 0, "XXX"); // add one element
|
|
|
-
|
|
|
- lengthBefore + 1 == array.length
|
|
|
-
|
|
|
- if (lengthBefore + 1 == array.length) {
|
|
|
- return true;// has right splice implementation without bugs
|
|
|
- }
|
|
|
- }()) {//IE 6/7
|
|
|
- var array_splice = Array.prototype.splice;
|
|
|
- Array.prototype.splice = function(start, deleteCount) {
|
|
|
- if (!arguments.length) {
|
|
|
- return [];
|
|
|
- } else {
|
|
|
- return array_splice.apply(this, [
|
|
|
- start === void 0 ? 0 : start,
|
|
|
- deleteCount === void 0 ? (this.length - start) : deleteCount
|
|
|
- ].concat(slice.call(arguments, 2)))
|
|
|
- }
|
|
|
- };
|
|
|
- } else {//IE8
|
|
|
- Array.prototype.splice = function(pos, removeCount){
|
|
|
- var length = this.length;
|
|
|
- if (pos > 0) {
|
|
|
- if (pos > length)
|
|
|
- pos = length;
|
|
|
- } else if (pos == void 0) {
|
|
|
- pos = 0;
|
|
|
- } else if (pos < 0) {
|
|
|
- pos = Math.max(length + pos, 0);
|
|
|
- }
|
|
|
-
|
|
|
- if (!(pos+removeCount < length))
|
|
|
- removeCount = length - pos;
|
|
|
-
|
|
|
- var removed = this.slice(pos, pos+removeCount);
|
|
|
- var insert = slice.call(arguments, 2);
|
|
|
- var add = insert.length;
|
|
|
- if (pos === length) {
|
|
|
- if (add) {
|
|
|
- this.push.apply(this, insert);
|
|
|
- }
|
|
|
- } else {
|
|
|
- var remove = Math.min(removeCount, length - pos);
|
|
|
- var tailOldPos = pos + remove;
|
|
|
- var tailNewPos = tailOldPos + add - remove;
|
|
|
- var tailCount = length - tailOldPos;
|
|
|
- var lengthAfterRemove = length - remove;
|
|
|
-
|
|
|
- if (tailNewPos < tailOldPos) { // case A
|
|
|
- for (var i = 0; i < tailCount; ++i) {
|
|
|
- this[tailNewPos+i] = this[tailOldPos+i];
|
|
|
- }
|
|
|
- } else if (tailNewPos > tailOldPos) { // case B
|
|
|
- for (i = tailCount; i--; ) {
|
|
|
- this[tailNewPos+i] = this[tailOldPos+i];
|
|
|
- }
|
|
|
- } // else, add == remove (nothing to do)
|
|
|
-
|
|
|
- if (add && pos === lengthAfterRemove) {
|
|
|
- this.length = lengthAfterRemove; // truncate array
|
|
|
- this.push.apply(this, insert);
|
|
|
- } else {
|
|
|
- this.length = lengthAfterRemove + add; // reserves space
|
|
|
- for (i = 0; i < add; ++i) {
|
|
|
- this[pos+i] = insert[i];
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return removed;
|
|
|
- };
|
|
|
- }
|
|
|
-}
|
|
|
-if (!Array.isArray) {
|
|
|
- Array.isArray = function isArray(obj) {
|
|
|
- return _toString(obj) == "[object Array]";
|
|
|
- };
|
|
|
-}
|
|
|
-var boxedString = Object("a"),
|
|
|
- splitString = boxedString[0] != "a" || !(0 in boxedString);
|
|
|
-
|
|
|
-if (!Array.prototype.forEach) {
|
|
|
- Array.prototype.forEach = function forEach(fun /*, thisp*/) {
|
|
|
- var object = toObject(this),
|
|
|
- self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- object,
|
|
|
- thisp = arguments[1],
|
|
|
- i = -1,
|
|
|
- length = self.length >>> 0;
|
|
|
- if (_toString(fun) != "[object Function]") {
|
|
|
- throw new TypeError(); // TODO message
|
|
|
- }
|
|
|
-
|
|
|
- while (++i < length) {
|
|
|
- if (i in self) {
|
|
|
- fun.call(thisp, self[i], i, object);
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.map) {
|
|
|
- Array.prototype.map = function map(fun /*, thisp*/) {
|
|
|
- var object = toObject(this),
|
|
|
- self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- object,
|
|
|
- length = self.length >>> 0,
|
|
|
- result = Array(length),
|
|
|
- thisp = arguments[1];
|
|
|
- if (_toString(fun) != "[object Function]") {
|
|
|
- throw new TypeError(fun + " is not a function");
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < length; i++) {
|
|
|
- if (i in self)
|
|
|
- result[i] = fun.call(thisp, self[i], i, object);
|
|
|
- }
|
|
|
- return result;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.filter) {
|
|
|
- Array.prototype.filter = function filter(fun /*, thisp */) {
|
|
|
- var object = toObject(this),
|
|
|
- self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- object,
|
|
|
- length = self.length >>> 0,
|
|
|
- result = [],
|
|
|
- value,
|
|
|
- thisp = arguments[1];
|
|
|
- if (_toString(fun) != "[object Function]") {
|
|
|
- throw new TypeError(fun + " is not a function");
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < length; i++) {
|
|
|
- if (i in self) {
|
|
|
- value = self[i];
|
|
|
- if (fun.call(thisp, value, i, object)) {
|
|
|
- result.push(value);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return result;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.every) {
|
|
|
- Array.prototype.every = function every(fun /*, thisp */) {
|
|
|
- var object = toObject(this),
|
|
|
- self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- object,
|
|
|
- length = self.length >>> 0,
|
|
|
- thisp = arguments[1];
|
|
|
- if (_toString(fun) != "[object Function]") {
|
|
|
- throw new TypeError(fun + " is not a function");
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < length; i++) {
|
|
|
- if (i in self && !fun.call(thisp, self[i], i, object)) {
|
|
|
- return false;
|
|
|
- }
|
|
|
- }
|
|
|
- return true;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.some) {
|
|
|
- Array.prototype.some = function some(fun /*, thisp */) {
|
|
|
- var object = toObject(this),
|
|
|
- self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- object,
|
|
|
- length = self.length >>> 0,
|
|
|
- thisp = arguments[1];
|
|
|
- if (_toString(fun) != "[object Function]") {
|
|
|
- throw new TypeError(fun + " is not a function");
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < length; i++) {
|
|
|
- if (i in self && fun.call(thisp, self[i], i, object)) {
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
- return false;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.reduce) {
|
|
|
- Array.prototype.reduce = function reduce(fun /*, initial*/) {
|
|
|
- var object = toObject(this),
|
|
|
- self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- object,
|
|
|
- length = self.length >>> 0;
|
|
|
- if (_toString(fun) != "[object Function]") {
|
|
|
- throw new TypeError(fun + " is not a function");
|
|
|
- }
|
|
|
- if (!length && arguments.length == 1) {
|
|
|
- throw new TypeError("reduce of empty array with no initial value");
|
|
|
- }
|
|
|
-
|
|
|
- var i = 0;
|
|
|
- var result;
|
|
|
- if (arguments.length >= 2) {
|
|
|
- result = arguments[1];
|
|
|
- } else {
|
|
|
- do {
|
|
|
- if (i in self) {
|
|
|
- result = self[i++];
|
|
|
- break;
|
|
|
- }
|
|
|
- if (++i >= length) {
|
|
|
- throw new TypeError("reduce of empty array with no initial value");
|
|
|
- }
|
|
|
- } while (true);
|
|
|
- }
|
|
|
-
|
|
|
- for (; i < length; i++) {
|
|
|
- if (i in self) {
|
|
|
- result = fun.call(void 0, result, self[i], i, object);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return result;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.reduceRight) {
|
|
|
- Array.prototype.reduceRight = function reduceRight(fun /*, initial*/) {
|
|
|
- var object = toObject(this),
|
|
|
- self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- object,
|
|
|
- length = self.length >>> 0;
|
|
|
- if (_toString(fun) != "[object Function]") {
|
|
|
- throw new TypeError(fun + " is not a function");
|
|
|
- }
|
|
|
- if (!length && arguments.length == 1) {
|
|
|
- throw new TypeError("reduceRight of empty array with no initial value");
|
|
|
- }
|
|
|
-
|
|
|
- var result, i = length - 1;
|
|
|
- if (arguments.length >= 2) {
|
|
|
- result = arguments[1];
|
|
|
- } else {
|
|
|
- do {
|
|
|
- if (i in self) {
|
|
|
- result = self[i--];
|
|
|
- break;
|
|
|
- }
|
|
|
- if (--i < 0) {
|
|
|
- throw new TypeError("reduceRight of empty array with no initial value");
|
|
|
- }
|
|
|
- } while (true);
|
|
|
- }
|
|
|
-
|
|
|
- do {
|
|
|
- if (i in this) {
|
|
|
- result = fun.call(void 0, result, self[i], i, object);
|
|
|
- }
|
|
|
- } while (i--);
|
|
|
-
|
|
|
- return result;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.indexOf || ([0, 1].indexOf(1, 2) != -1)) {
|
|
|
- Array.prototype.indexOf = function indexOf(sought /*, fromIndex */ ) {
|
|
|
- var self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- toObject(this),
|
|
|
- length = self.length >>> 0;
|
|
|
-
|
|
|
- if (!length) {
|
|
|
- return -1;
|
|
|
- }
|
|
|
-
|
|
|
- var i = 0;
|
|
|
- if (arguments.length > 1) {
|
|
|
- i = toInteger(arguments[1]);
|
|
|
- }
|
|
|
- i = i >= 0 ? i : Math.max(0, length + i);
|
|
|
- for (; i < length; i++) {
|
|
|
- if (i in self && self[i] === sought) {
|
|
|
- return i;
|
|
|
- }
|
|
|
- }
|
|
|
- return -1;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Array.prototype.lastIndexOf || ([0, 1].lastIndexOf(0, -3) != -1)) {
|
|
|
- Array.prototype.lastIndexOf = function lastIndexOf(sought /*, fromIndex */) {
|
|
|
- var self = splitString && _toString(this) == "[object String]" ?
|
|
|
- this.split("") :
|
|
|
- toObject(this),
|
|
|
- length = self.length >>> 0;
|
|
|
-
|
|
|
- if (!length) {
|
|
|
- return -1;
|
|
|
- }
|
|
|
- var i = length - 1;
|
|
|
- if (arguments.length > 1) {
|
|
|
- i = Math.min(i, toInteger(arguments[1]));
|
|
|
- }
|
|
|
- i = i >= 0 ? i : length - Math.abs(i);
|
|
|
- for (; i >= 0; i--) {
|
|
|
- if (i in self && sought === self[i]) {
|
|
|
- return i;
|
|
|
- }
|
|
|
- }
|
|
|
- return -1;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.getPrototypeOf) {
|
|
|
- Object.getPrototypeOf = function getPrototypeOf(object) {
|
|
|
- return object.__proto__ || (
|
|
|
- object.constructor ?
|
|
|
- object.constructor.prototype :
|
|
|
- prototypeOfObject
|
|
|
- );
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.getOwnPropertyDescriptor) {
|
|
|
- var ERR_NON_OBJECT = "Object.getOwnPropertyDescriptor called on a " +
|
|
|
- "non-object: ";
|
|
|
- Object.getOwnPropertyDescriptor = function getOwnPropertyDescriptor(object, property) {
|
|
|
- if ((typeof object != "object" && typeof object != "function") || object === null)
|
|
|
- throw new TypeError(ERR_NON_OBJECT + object);
|
|
|
- if (!owns(object, property))
|
|
|
- return;
|
|
|
-
|
|
|
- var descriptor, getter, setter;
|
|
|
- descriptor = { enumerable: true, configurable: true };
|
|
|
- if (supportsAccessors) {
|
|
|
- var prototype = object.__proto__;
|
|
|
- object.__proto__ = prototypeOfObject;
|
|
|
-
|
|
|
- var getter = lookupGetter(object, property);
|
|
|
- var setter = lookupSetter(object, property);
|
|
|
- object.__proto__ = prototype;
|
|
|
-
|
|
|
- if (getter || setter) {
|
|
|
- if (getter) descriptor.get = getter;
|
|
|
- if (setter) descriptor.set = setter;
|
|
|
- return descriptor;
|
|
|
- }
|
|
|
- }
|
|
|
- descriptor.value = object[property];
|
|
|
- return descriptor;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.getOwnPropertyNames) {
|
|
|
- Object.getOwnPropertyNames = function getOwnPropertyNames(object) {
|
|
|
- return Object.keys(object);
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.create) {
|
|
|
- var createEmpty;
|
|
|
- if (Object.prototype.__proto__ === null) {
|
|
|
- createEmpty = function () {
|
|
|
- return { "__proto__": null };
|
|
|
- };
|
|
|
- } else {
|
|
|
- createEmpty = function () {
|
|
|
- var empty = {};
|
|
|
- for (var i in empty)
|
|
|
- empty[i] = null;
|
|
|
- empty.constructor =
|
|
|
- empty.hasOwnProperty =
|
|
|
- empty.propertyIsEnumerable =
|
|
|
- empty.isPrototypeOf =
|
|
|
- empty.toLocaleString =
|
|
|
- empty.toString =
|
|
|
- empty.valueOf =
|
|
|
- empty.__proto__ = null;
|
|
|
- return empty;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- Object.create = function create(prototype, properties) {
|
|
|
- var object;
|
|
|
- if (prototype === null) {
|
|
|
- object = createEmpty();
|
|
|
- } else {
|
|
|
- if (typeof prototype != "object")
|
|
|
- throw new TypeError("typeof prototype["+(typeof prototype)+"] != 'object'");
|
|
|
- var Type = function () {};
|
|
|
- Type.prototype = prototype;
|
|
|
- object = new Type();
|
|
|
- object.__proto__ = prototype;
|
|
|
- }
|
|
|
- if (properties !== void 0)
|
|
|
- Object.defineProperties(object, properties);
|
|
|
- return object;
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-function doesDefinePropertyWork(object) {
|
|
|
- try {
|
|
|
- Object.defineProperty(object, "sentinel", {});
|
|
|
- return "sentinel" in object;
|
|
|
- } catch (exception) {
|
|
|
- }
|
|
|
-}
|
|
|
-if (Object.defineProperty) {
|
|
|
- var definePropertyWorksOnObject = doesDefinePropertyWork({});
|
|
|
- var definePropertyWorksOnDom = typeof document == "undefined" ||
|
|
|
- doesDefinePropertyWork(document.createElement("div"));
|
|
|
- if (!definePropertyWorksOnObject || !definePropertyWorksOnDom) {
|
|
|
- var definePropertyFallback = Object.defineProperty;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-if (!Object.defineProperty || definePropertyFallback) {
|
|
|
- var ERR_NON_OBJECT_DESCRIPTOR = "Property description must be an object: ";
|
|
|
- var ERR_NON_OBJECT_TARGET = "Object.defineProperty called on non-object: "
|
|
|
- var ERR_ACCESSORS_NOT_SUPPORTED = "getters & setters can not be defined " +
|
|
|
- "on this javascript engine";
|
|
|
-
|
|
|
- Object.defineProperty = function defineProperty(object, property, descriptor) {
|
|
|
- if ((typeof object != "object" && typeof object != "function") || object === null)
|
|
|
- throw new TypeError(ERR_NON_OBJECT_TARGET + object);
|
|
|
- if ((typeof descriptor != "object" && typeof descriptor != "function") || descriptor === null)
|
|
|
- throw new TypeError(ERR_NON_OBJECT_DESCRIPTOR + descriptor);
|
|
|
- if (definePropertyFallback) {
|
|
|
- try {
|
|
|
- return definePropertyFallback.call(Object, object, property, descriptor);
|
|
|
- } catch (exception) {
|
|
|
- }
|
|
|
- }
|
|
|
- if (owns(descriptor, "value")) {
|
|
|
-
|
|
|
- if (supportsAccessors && (lookupGetter(object, property) ||
|
|
|
- lookupSetter(object, property)))
|
|
|
- {
|
|
|
- var prototype = object.__proto__;
|
|
|
- object.__proto__ = prototypeOfObject;
|
|
|
- delete object[property];
|
|
|
- object[property] = descriptor.value;
|
|
|
- object.__proto__ = prototype;
|
|
|
- } else {
|
|
|
- object[property] = descriptor.value;
|
|
|
- }
|
|
|
- } else {
|
|
|
- if (!supportsAccessors)
|
|
|
- throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
|
|
|
- if (owns(descriptor, "get"))
|
|
|
- defineGetter(object, property, descriptor.get);
|
|
|
- if (owns(descriptor, "set"))
|
|
|
- defineSetter(object, property, descriptor.set);
|
|
|
- }
|
|
|
-
|
|
|
- return object;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.defineProperties) {
|
|
|
- Object.defineProperties = function defineProperties(object, properties) {
|
|
|
- for (var property in properties) {
|
|
|
- if (owns(properties, property))
|
|
|
- Object.defineProperty(object, property, properties[property]);
|
|
|
- }
|
|
|
- return object;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.seal) {
|
|
|
- Object.seal = function seal(object) {
|
|
|
- return object;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.freeze) {
|
|
|
- Object.freeze = function freeze(object) {
|
|
|
- return object;
|
|
|
- };
|
|
|
-}
|
|
|
-try {
|
|
|
- Object.freeze(function () {});
|
|
|
-} catch (exception) {
|
|
|
- Object.freeze = (function freeze(freezeObject) {
|
|
|
- return function freeze(object) {
|
|
|
- if (typeof object == "function") {
|
|
|
- return object;
|
|
|
- } else {
|
|
|
- return freezeObject(object);
|
|
|
- }
|
|
|
- };
|
|
|
- })(Object.freeze);
|
|
|
-}
|
|
|
-if (!Object.preventExtensions) {
|
|
|
- Object.preventExtensions = function preventExtensions(object) {
|
|
|
- return object;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.isSealed) {
|
|
|
- Object.isSealed = function isSealed(object) {
|
|
|
- return false;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.isFrozen) {
|
|
|
- Object.isFrozen = function isFrozen(object) {
|
|
|
- return false;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.isExtensible) {
|
|
|
- Object.isExtensible = function isExtensible(object) {
|
|
|
- if (Object(object) === object) {
|
|
|
- throw new TypeError(); // TODO message
|
|
|
- }
|
|
|
- var name = '';
|
|
|
- while (owns(object, name)) {
|
|
|
- name += '?';
|
|
|
- }
|
|
|
- object[name] = true;
|
|
|
- var returnValue = owns(object, name);
|
|
|
- delete object[name];
|
|
|
- return returnValue;
|
|
|
- };
|
|
|
-}
|
|
|
-if (!Object.keys) {
|
|
|
- var hasDontEnumBug = true,
|
|
|
- dontEnums = [
|
|
|
- "toString",
|
|
|
- "toLocaleString",
|
|
|
- "valueOf",
|
|
|
- "hasOwnProperty",
|
|
|
- "isPrototypeOf",
|
|
|
- "propertyIsEnumerable",
|
|
|
- "constructor"
|
|
|
- ],
|
|
|
- dontEnumsLength = dontEnums.length;
|
|
|
-
|
|
|
- for (var key in {"toString": null}) {
|
|
|
- hasDontEnumBug = false;
|
|
|
- }
|
|
|
-
|
|
|
- Object.keys = function keys(object) {
|
|
|
-
|
|
|
- if (
|
|
|
- (typeof object != "object" && typeof object != "function") ||
|
|
|
- object === null
|
|
|
- ) {
|
|
|
- throw new TypeError("Object.keys called on a non-object");
|
|
|
- }
|
|
|
-
|
|
|
- var keys = [];
|
|
|
- for (var name in object) {
|
|
|
- if (owns(object, name)) {
|
|
|
- keys.push(name);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (hasDontEnumBug) {
|
|
|
- for (var i = 0, ii = dontEnumsLength; i < ii; i++) {
|
|
|
- var dontEnum = dontEnums[i];
|
|
|
- if (owns(object, dontEnum)) {
|
|
|
- keys.push(dontEnum);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- return keys;
|
|
|
- };
|
|
|
-
|
|
|
-}
|
|
|
-if (!Date.now) {
|
|
|
- Date.now = function now() {
|
|
|
- return new Date().getTime();
|
|
|
- };
|
|
|
-}
|
|
|
-var ws = "\x09\x0A\x0B\x0C\x0D\x20\xA0\u1680\u180E\u2000\u2001\u2002\u2003" +
|
|
|
- "\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028" +
|
|
|
- "\u2029\uFEFF";
|
|
|
-if (!String.prototype.trim || ws.trim()) {
|
|
|
- ws = "[" + ws + "]";
|
|
|
- var trimBeginRegexp = new RegExp("^" + ws + ws + "*"),
|
|
|
- trimEndRegexp = new RegExp(ws + ws + "*$");
|
|
|
- String.prototype.trim = function trim() {
|
|
|
- return String(this).replace(trimBeginRegexp, "").replace(trimEndRegexp, "");
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-function toInteger(n) {
|
|
|
- n = +n;
|
|
|
- if (n !== n) { // isNaN
|
|
|
- n = 0;
|
|
|
- } else if (n !== 0 && n !== (1/0) && n !== -(1/0)) {
|
|
|
- n = (n > 0 || -1) * Math.floor(Math.abs(n));
|
|
|
- }
|
|
|
- return n;
|
|
|
-}
|
|
|
-
|
|
|
-function isPrimitive(input) {
|
|
|
- var type = typeof input;
|
|
|
- return (
|
|
|
- input === null ||
|
|
|
- type === "undefined" ||
|
|
|
- type === "boolean" ||
|
|
|
- type === "number" ||
|
|
|
- type === "string"
|
|
|
- );
|
|
|
-}
|
|
|
-
|
|
|
-function toPrimitive(input) {
|
|
|
- var val, valueOf, toString;
|
|
|
- if (isPrimitive(input)) {
|
|
|
- return input;
|
|
|
- }
|
|
|
- valueOf = input.valueOf;
|
|
|
- if (typeof valueOf === "function") {
|
|
|
- val = valueOf.call(input);
|
|
|
- if (isPrimitive(val)) {
|
|
|
- return val;
|
|
|
- }
|
|
|
- }
|
|
|
- toString = input.toString;
|
|
|
- if (typeof toString === "function") {
|
|
|
- val = toString.call(input);
|
|
|
- if (isPrimitive(val)) {
|
|
|
- return val;
|
|
|
- }
|
|
|
- }
|
|
|
- throw new TypeError();
|
|
|
-}
|
|
|
-var toObject = function (o) {
|
|
|
- if (o == null) { // this matches both null and undefined
|
|
|
- throw new TypeError("can't convert "+o+" to object");
|
|
|
- }
|
|
|
- return Object(o);
|
|
|
-};
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/fixoldbrowsers",["require","exports","module","ace/lib/regexp","ace/lib/es5-shim"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-require("./regexp");
|
|
|
-require("./es5-shim");
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/dom",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var XHTML_NS = "http://www.w3.org/1999/xhtml";
|
|
|
-
|
|
|
-exports.getDocumentHead = function(doc) {
|
|
|
- if (!doc)
|
|
|
- doc = document;
|
|
|
- return doc.head || doc.getElementsByTagName("head")[0] || doc.documentElement;
|
|
|
-}
|
|
|
-
|
|
|
-exports.createElement = function(tag, ns) {
|
|
|
- return document.createElementNS ?
|
|
|
- document.createElementNS(ns || XHTML_NS, tag) :
|
|
|
- document.createElement(tag);
|
|
|
-};
|
|
|
-
|
|
|
-exports.hasCssClass = function(el, name) {
|
|
|
- var classes = (el.className || "").split(/\s+/g);
|
|
|
- return classes.indexOf(name) !== -1;
|
|
|
-};
|
|
|
-exports.addCssClass = function(el, name) {
|
|
|
- if (!exports.hasCssClass(el, name)) {
|
|
|
- el.className += " " + name;
|
|
|
- }
|
|
|
-};
|
|
|
-exports.removeCssClass = function(el, name) {
|
|
|
- var classes = el.className.split(/\s+/g);
|
|
|
- while (true) {
|
|
|
- var index = classes.indexOf(name);
|
|
|
- if (index == -1) {
|
|
|
- break;
|
|
|
- }
|
|
|
- classes.splice(index, 1);
|
|
|
- }
|
|
|
- el.className = classes.join(" ");
|
|
|
-};
|
|
|
-
|
|
|
-exports.toggleCssClass = function(el, name) {
|
|
|
- var classes = el.className.split(/\s+/g), add = true;
|
|
|
- while (true) {
|
|
|
- var index = classes.indexOf(name);
|
|
|
- if (index == -1) {
|
|
|
- break;
|
|
|
- }
|
|
|
- add = false;
|
|
|
- classes.splice(index, 1);
|
|
|
- }
|
|
|
- if(add)
|
|
|
- classes.push(name);
|
|
|
-
|
|
|
- el.className = classes.join(" ");
|
|
|
- return add;
|
|
|
-};
|
|
|
-exports.setCssClass = function(node, className, include) {
|
|
|
- if (include) {
|
|
|
- exports.addCssClass(node, className);
|
|
|
- } else {
|
|
|
- exports.removeCssClass(node, className);
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.hasCssString = function(id, doc) {
|
|
|
- var index = 0, sheets;
|
|
|
- doc = doc || document;
|
|
|
-
|
|
|
- if (doc.createStyleSheet && (sheets = doc.styleSheets)) {
|
|
|
- while (index < sheets.length)
|
|
|
- if (sheets[index++].owningElement.id === id) return true;
|
|
|
- } else if ((sheets = doc.getElementsByTagName("style"))) {
|
|
|
- while (index < sheets.length)
|
|
|
- if (sheets[index++].id === id) return true;
|
|
|
- }
|
|
|
-
|
|
|
- return false;
|
|
|
-};
|
|
|
-
|
|
|
-exports.importCssString = function importCssString(cssText, id, doc) {
|
|
|
- doc = doc || document;
|
|
|
- if (id && exports.hasCssString(id, doc))
|
|
|
- return null;
|
|
|
-
|
|
|
- var style;
|
|
|
-
|
|
|
- if (id)
|
|
|
- cssText += "\n/*# sourceURL=ace/css/" + id + " */";
|
|
|
-
|
|
|
- if (doc.createStyleSheet) {
|
|
|
- style = doc.createStyleSheet();
|
|
|
- style.cssText = cssText;
|
|
|
- if (id)
|
|
|
- style.owningElement.id = id;
|
|
|
- } else {
|
|
|
- style = doc.createElementNS
|
|
|
- ? doc.createElementNS(XHTML_NS, "style")
|
|
|
- : doc.createElement("style");
|
|
|
-
|
|
|
- style.appendChild(doc.createTextNode(cssText));
|
|
|
- if (id)
|
|
|
- style.id = id;
|
|
|
-
|
|
|
- exports.getDocumentHead(doc).appendChild(style);
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.importCssStylsheet = function(uri, doc) {
|
|
|
- if (doc.createStyleSheet) {
|
|
|
- doc.createStyleSheet(uri);
|
|
|
- } else {
|
|
|
- var link = exports.createElement('link');
|
|
|
- link.rel = 'stylesheet';
|
|
|
- link.href = uri;
|
|
|
-
|
|
|
- exports.getDocumentHead(doc).appendChild(link);
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.getInnerWidth = function(element) {
|
|
|
- return (
|
|
|
- parseInt(exports.computedStyle(element, "paddingLeft"), 10) +
|
|
|
- parseInt(exports.computedStyle(element, "paddingRight"), 10) +
|
|
|
- element.clientWidth
|
|
|
- );
|
|
|
-};
|
|
|
-
|
|
|
-exports.getInnerHeight = function(element) {
|
|
|
- return (
|
|
|
- parseInt(exports.computedStyle(element, "paddingTop"), 10) +
|
|
|
- parseInt(exports.computedStyle(element, "paddingBottom"), 10) +
|
|
|
- element.clientHeight
|
|
|
- );
|
|
|
-};
|
|
|
-
|
|
|
-exports.scrollbarWidth = function(document) {
|
|
|
- var inner = exports.createElement("ace_inner");
|
|
|
- inner.style.width = "100%";
|
|
|
- inner.style.minWidth = "0px";
|
|
|
- inner.style.height = "200px";
|
|
|
- inner.style.display = "block";
|
|
|
-
|
|
|
- var outer = exports.createElement("ace_outer");
|
|
|
- var style = outer.style;
|
|
|
-
|
|
|
- style.position = "absolute";
|
|
|
- style.left = "-10000px";
|
|
|
- style.overflow = "hidden";
|
|
|
- style.width = "200px";
|
|
|
- style.minWidth = "0px";
|
|
|
- style.height = "150px";
|
|
|
- style.display = "block";
|
|
|
-
|
|
|
- outer.appendChild(inner);
|
|
|
-
|
|
|
- var body = document.documentElement;
|
|
|
- body.appendChild(outer);
|
|
|
-
|
|
|
- var noScrollbar = inner.offsetWidth;
|
|
|
-
|
|
|
- style.overflow = "scroll";
|
|
|
- var withScrollbar = inner.offsetWidth;
|
|
|
-
|
|
|
- if (noScrollbar == withScrollbar) {
|
|
|
- withScrollbar = outer.clientWidth;
|
|
|
- }
|
|
|
-
|
|
|
- body.removeChild(outer);
|
|
|
-
|
|
|
- return noScrollbar-withScrollbar;
|
|
|
-};
|
|
|
-
|
|
|
-if (typeof document == "undefined") {
|
|
|
- exports.importCssString = function() {};
|
|
|
- return;
|
|
|
-}
|
|
|
-
|
|
|
-if (window.pageYOffset !== undefined) {
|
|
|
- exports.getPageScrollTop = function() {
|
|
|
- return window.pageYOffset;
|
|
|
- };
|
|
|
-
|
|
|
- exports.getPageScrollLeft = function() {
|
|
|
- return window.pageXOffset;
|
|
|
- };
|
|
|
-}
|
|
|
-else {
|
|
|
- exports.getPageScrollTop = function() {
|
|
|
- return document.body.scrollTop;
|
|
|
- };
|
|
|
-
|
|
|
- exports.getPageScrollLeft = function() {
|
|
|
- return document.body.scrollLeft;
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-if (window.getComputedStyle)
|
|
|
- exports.computedStyle = function(element, style) {
|
|
|
- if (style)
|
|
|
- return (window.getComputedStyle(element, "") || {})[style] || "";
|
|
|
- return window.getComputedStyle(element, "") || {};
|
|
|
- };
|
|
|
-else
|
|
|
- exports.computedStyle = function(element, style) {
|
|
|
- if (style)
|
|
|
- return element.currentStyle[style];
|
|
|
- return element.currentStyle;
|
|
|
- };
|
|
|
-exports.setInnerHtml = function(el, innerHtml) {
|
|
|
- var element = el.cloneNode(false);//document.createElement("div");
|
|
|
- element.innerHTML = innerHtml;
|
|
|
- el.parentNode.replaceChild(element, el);
|
|
|
- return element;
|
|
|
-};
|
|
|
-
|
|
|
-if ("textContent" in document.documentElement) {
|
|
|
- exports.setInnerText = function(el, innerText) {
|
|
|
- el.textContent = innerText;
|
|
|
- };
|
|
|
-
|
|
|
- exports.getInnerText = function(el) {
|
|
|
- return el.textContent;
|
|
|
- };
|
|
|
-}
|
|
|
-else {
|
|
|
- exports.setInnerText = function(el, innerText) {
|
|
|
- el.innerText = innerText;
|
|
|
- };
|
|
|
-
|
|
|
- exports.getInnerText = function(el) {
|
|
|
- return el.innerText;
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-exports.getParentWindow = function(document) {
|
|
|
- return document.defaultView || document.parentWindow;
|
|
|
-};
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/oop",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-exports.inherits = function(ctor, superCtor) {
|
|
|
- ctor.super_ = superCtor;
|
|
|
- ctor.prototype = Object.create(superCtor.prototype, {
|
|
|
- constructor: {
|
|
|
- value: ctor,
|
|
|
- enumerable: false,
|
|
|
- writable: true,
|
|
|
- configurable: true
|
|
|
- }
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-exports.mixin = function(obj, mixin) {
|
|
|
- for (var key in mixin) {
|
|
|
- obj[key] = mixin[key];
|
|
|
- }
|
|
|
- return obj;
|
|
|
-};
|
|
|
-
|
|
|
-exports.implement = function(proto, mixin) {
|
|
|
- exports.mixin(proto, mixin);
|
|
|
-};
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/keys",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-require("./fixoldbrowsers");
|
|
|
-
|
|
|
-var oop = require("./oop");
|
|
|
-var Keys = (function() {
|
|
|
- var ret = {
|
|
|
- MODIFIER_KEYS: {
|
|
|
- 16: 'Shift', 17: 'Ctrl', 18: 'Alt', 224: 'Meta'
|
|
|
- },
|
|
|
-
|
|
|
- KEY_MODS: {
|
|
|
- "ctrl": 1, "alt": 2, "option" : 2, "shift": 4,
|
|
|
- "super": 8, "meta": 8, "command": 8, "cmd": 8
|
|
|
- },
|
|
|
-
|
|
|
- FUNCTION_KEYS : {
|
|
|
- 8 : "Backspace",
|
|
|
- 9 : "Tab",
|
|
|
- 13 : "Return",
|
|
|
- 19 : "Pause",
|
|
|
- 27 : "Esc",
|
|
|
- 32 : "Space",
|
|
|
- 33 : "PageUp",
|
|
|
- 34 : "PageDown",
|
|
|
- 35 : "End",
|
|
|
- 36 : "Home",
|
|
|
- 37 : "Left",
|
|
|
- 38 : "Up",
|
|
|
- 39 : "Right",
|
|
|
- 40 : "Down",
|
|
|
- 44 : "Print",
|
|
|
- 45 : "Insert",
|
|
|
- 46 : "Delete",
|
|
|
- 96 : "Numpad0",
|
|
|
- 97 : "Numpad1",
|
|
|
- 98 : "Numpad2",
|
|
|
- 99 : "Numpad3",
|
|
|
- 100: "Numpad4",
|
|
|
- 101: "Numpad5",
|
|
|
- 102: "Numpad6",
|
|
|
- 103: "Numpad7",
|
|
|
- 104: "Numpad8",
|
|
|
- 105: "Numpad9",
|
|
|
- '-13': "NumpadEnter",
|
|
|
- 112: "F1",
|
|
|
- 113: "F2",
|
|
|
- 114: "F3",
|
|
|
- 115: "F4",
|
|
|
- 116: "F5",
|
|
|
- 117: "F6",
|
|
|
- 118: "F7",
|
|
|
- 119: "F8",
|
|
|
- 120: "F9",
|
|
|
- 121: "F10",
|
|
|
- 122: "F11",
|
|
|
- 123: "F12",
|
|
|
- 144: "Numlock",
|
|
|
- 145: "Scrolllock"
|
|
|
- },
|
|
|
-
|
|
|
- PRINTABLE_KEYS: {
|
|
|
- 32: ' ', 48: '0', 49: '1', 50: '2', 51: '3', 52: '4', 53: '5',
|
|
|
- 54: '6', 55: '7', 56: '8', 57: '9', 59: ';', 61: '=', 65: 'a',
|
|
|
- 66: 'b', 67: 'c', 68: 'd', 69: 'e', 70: 'f', 71: 'g', 72: 'h',
|
|
|
- 73: 'i', 74: 'j', 75: 'k', 76: 'l', 77: 'm', 78: 'n', 79: 'o',
|
|
|
- 80: 'p', 81: 'q', 82: 'r', 83: 's', 84: 't', 85: 'u', 86: 'v',
|
|
|
- 87: 'w', 88: 'x', 89: 'y', 90: 'z', 107: '+', 109: '-', 110: '.',
|
|
|
- 186: ';', 187: '=', 188: ',', 189: '-', 190: '.', 191: '/', 192: '`',
|
|
|
- 219: '[', 220: '\\',221: ']', 222: '\''
|
|
|
- }
|
|
|
- };
|
|
|
- var name, i;
|
|
|
- for (i in ret.FUNCTION_KEYS) {
|
|
|
- name = ret.FUNCTION_KEYS[i].toLowerCase();
|
|
|
- ret[name] = parseInt(i, 10);
|
|
|
- }
|
|
|
- for (i in ret.PRINTABLE_KEYS) {
|
|
|
- name = ret.PRINTABLE_KEYS[i].toLowerCase();
|
|
|
- ret[name] = parseInt(i, 10);
|
|
|
- }
|
|
|
- oop.mixin(ret, ret.MODIFIER_KEYS);
|
|
|
- oop.mixin(ret, ret.PRINTABLE_KEYS);
|
|
|
- oop.mixin(ret, ret.FUNCTION_KEYS);
|
|
|
- ret.enter = ret["return"];
|
|
|
- ret.escape = ret.esc;
|
|
|
- ret.del = ret["delete"];
|
|
|
- ret[173] = '-';
|
|
|
-
|
|
|
- (function() {
|
|
|
- var mods = ["cmd", "ctrl", "alt", "shift"];
|
|
|
- for (var i = Math.pow(2, mods.length); i--;) {
|
|
|
- ret.KEY_MODS[i] = mods.filter(function(x) {
|
|
|
- return i & ret.KEY_MODS[x];
|
|
|
- }).join("-") + "-";
|
|
|
- }
|
|
|
- })();
|
|
|
-
|
|
|
- ret.KEY_MODS[0] = "";
|
|
|
- ret.KEY_MODS[-1] = "input-";
|
|
|
-
|
|
|
- return ret;
|
|
|
-})();
|
|
|
-oop.mixin(exports, Keys);
|
|
|
-
|
|
|
-exports.keyCodeToString = function(keyCode) {
|
|
|
- var keyString = Keys[keyCode];
|
|
|
- if (typeof keyString != "string")
|
|
|
- keyString = String.fromCharCode(keyCode);
|
|
|
- return keyString.toLowerCase();
|
|
|
-};
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/useragent",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-exports.OS = {
|
|
|
- LINUX: "LINUX",
|
|
|
- MAC: "MAC",
|
|
|
- WINDOWS: "WINDOWS"
|
|
|
-};
|
|
|
-exports.getOS = function() {
|
|
|
- if (exports.isMac) {
|
|
|
- return exports.OS.MAC;
|
|
|
- } else if (exports.isLinux) {
|
|
|
- return exports.OS.LINUX;
|
|
|
- } else {
|
|
|
- return exports.OS.WINDOWS;
|
|
|
- }
|
|
|
-};
|
|
|
-if (typeof navigator != "object")
|
|
|
- return;
|
|
|
-
|
|
|
-var os = (navigator.platform.match(/mac|win|linux/i) || ["other"])[0].toLowerCase();
|
|
|
-var ua = navigator.userAgent;
|
|
|
-exports.isWin = (os == "win");
|
|
|
-exports.isMac = (os == "mac");
|
|
|
-exports.isLinux = (os == "linux");
|
|
|
-exports.isIE =
|
|
|
- (navigator.appName == "Microsoft Internet Explorer" || navigator.appName.indexOf("MSAppHost") >= 0)
|
|
|
- ? parseFloat((ua.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1])
|
|
|
- : parseFloat((ua.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]); // for ie
|
|
|
-
|
|
|
-exports.isOldIE = exports.isIE && exports.isIE < 9;
|
|
|
-exports.isGecko = exports.isMozilla = (window.Controllers || window.controllers) && window.navigator.product === "Gecko";
|
|
|
-exports.isOldGecko = exports.isGecko && parseInt((ua.match(/rv\:(\d+)/)||[])[1], 10) < 4;
|
|
|
-exports.isOpera = window.opera && Object.prototype.toString.call(window.opera) == "[object Opera]";
|
|
|
-exports.isWebKit = parseFloat(ua.split("WebKit/")[1]) || undefined;
|
|
|
-
|
|
|
-exports.isChrome = parseFloat(ua.split(" Chrome/")[1]) || undefined;
|
|
|
-
|
|
|
-exports.isAIR = ua.indexOf("AdobeAIR") >= 0;
|
|
|
-
|
|
|
-exports.isIPad = ua.indexOf("iPad") >= 0;
|
|
|
-
|
|
|
-exports.isTouchPad = ua.indexOf("TouchPad") >= 0;
|
|
|
-
|
|
|
-exports.isChromeOS = ua.indexOf(" CrOS ") >= 0;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var keys = require("./keys");
|
|
|
-var useragent = require("./useragent");
|
|
|
-
|
|
|
-exports.addListener = function(elem, type, callback) {
|
|
|
- if (elem.addEventListener) {
|
|
|
- return elem.addEventListener(type, callback, false);
|
|
|
- }
|
|
|
- if (elem.attachEvent) {
|
|
|
- var wrapper = function() {
|
|
|
- callback.call(elem, window.event);
|
|
|
- };
|
|
|
- callback._wrapper = wrapper;
|
|
|
- elem.attachEvent("on" + type, wrapper);
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.removeListener = function(elem, type, callback) {
|
|
|
- if (elem.removeEventListener) {
|
|
|
- return elem.removeEventListener(type, callback, false);
|
|
|
- }
|
|
|
- if (elem.detachEvent) {
|
|
|
- elem.detachEvent("on" + type, callback._wrapper || callback);
|
|
|
- }
|
|
|
-};
|
|
|
-exports.stopEvent = function(e) {
|
|
|
- exports.stopPropagation(e);
|
|
|
- exports.preventDefault(e);
|
|
|
- return false;
|
|
|
-};
|
|
|
-
|
|
|
-exports.stopPropagation = function(e) {
|
|
|
- if (e.stopPropagation)
|
|
|
- e.stopPropagation();
|
|
|
- else
|
|
|
- e.cancelBubble = true;
|
|
|
-};
|
|
|
-
|
|
|
-exports.preventDefault = function(e) {
|
|
|
- if (e.preventDefault)
|
|
|
- e.preventDefault();
|
|
|
- else
|
|
|
- e.returnValue = false;
|
|
|
-};
|
|
|
-exports.getButton = function(e) {
|
|
|
- if (e.type == "dblclick")
|
|
|
- return 0;
|
|
|
- if (e.type == "contextmenu" || (useragent.isMac && (e.ctrlKey && !e.altKey && !e.shiftKey)))
|
|
|
- return 2;
|
|
|
- if (e.preventDefault) {
|
|
|
- return e.button;
|
|
|
- }
|
|
|
- else {
|
|
|
- return {1:0, 2:2, 4:1}[e.button];
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.capture = function(el, eventHandler, releaseCaptureHandler) {
|
|
|
- function onMouseUp(e) {
|
|
|
- eventHandler && eventHandler(e);
|
|
|
- releaseCaptureHandler && releaseCaptureHandler(e);
|
|
|
-
|
|
|
- exports.removeListener(document, "mousemove", eventHandler, true);
|
|
|
- exports.removeListener(document, "mouseup", onMouseUp, true);
|
|
|
- exports.removeListener(document, "dragstart", onMouseUp, true);
|
|
|
- }
|
|
|
-
|
|
|
- exports.addListener(document, "mousemove", eventHandler, true);
|
|
|
- exports.addListener(document, "mouseup", onMouseUp, true);
|
|
|
- exports.addListener(document, "dragstart", onMouseUp, true);
|
|
|
-
|
|
|
- return onMouseUp;
|
|
|
-};
|
|
|
-
|
|
|
-exports.addTouchMoveListener = function (el, callback) {
|
|
|
- if ("ontouchmove" in el) {
|
|
|
- var startx, starty;
|
|
|
- exports.addListener(el, "touchstart", function (e) {
|
|
|
- var touchObj = e.changedTouches[0];
|
|
|
- startx = touchObj.clientX;
|
|
|
- starty = touchObj.clientY;
|
|
|
- });
|
|
|
- exports.addListener(el, "touchmove", function (e) {
|
|
|
- var factor = 1,
|
|
|
- touchObj = e.changedTouches[0];
|
|
|
-
|
|
|
- e.wheelX = -(touchObj.clientX - startx) / factor;
|
|
|
- e.wheelY = -(touchObj.clientY - starty) / factor;
|
|
|
-
|
|
|
- startx = touchObj.clientX;
|
|
|
- starty = touchObj.clientY;
|
|
|
-
|
|
|
- callback(e);
|
|
|
- });
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.addMouseWheelListener = function(el, callback) {
|
|
|
- if ("onmousewheel" in el) {
|
|
|
- exports.addListener(el, "mousewheel", function(e) {
|
|
|
- var factor = 8;
|
|
|
- if (e.wheelDeltaX !== undefined) {
|
|
|
- e.wheelX = -e.wheelDeltaX / factor;
|
|
|
- e.wheelY = -e.wheelDeltaY / factor;
|
|
|
- } else {
|
|
|
- e.wheelX = 0;
|
|
|
- e.wheelY = -e.wheelDelta / factor;
|
|
|
- }
|
|
|
- callback(e);
|
|
|
- });
|
|
|
- } else if ("onwheel" in el) {
|
|
|
- exports.addListener(el, "wheel", function(e) {
|
|
|
- var factor = 0.35;
|
|
|
- switch (e.deltaMode) {
|
|
|
- case e.DOM_DELTA_PIXEL:
|
|
|
- e.wheelX = e.deltaX * factor || 0;
|
|
|
- e.wheelY = e.deltaY * factor || 0;
|
|
|
- break;
|
|
|
- case e.DOM_DELTA_LINE:
|
|
|
- case e.DOM_DELTA_PAGE:
|
|
|
- e.wheelX = (e.deltaX || 0) * 5;
|
|
|
- e.wheelY = (e.deltaY || 0) * 5;
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- callback(e);
|
|
|
- });
|
|
|
- } else {
|
|
|
- exports.addListener(el, "DOMMouseScroll", function(e) {
|
|
|
- if (e.axis && e.axis == e.HORIZONTAL_AXIS) {
|
|
|
- e.wheelX = (e.detail || 0) * 5;
|
|
|
- e.wheelY = 0;
|
|
|
- } else {
|
|
|
- e.wheelX = 0;
|
|
|
- e.wheelY = (e.detail || 0) * 5;
|
|
|
- }
|
|
|
- callback(e);
|
|
|
- });
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.addMultiMouseDownListener = function(el, timeouts, eventHandler, callbackName) {
|
|
|
- var clicks = 0;
|
|
|
- var startX, startY, timer;
|
|
|
- var eventNames = {
|
|
|
- 2: "dblclick",
|
|
|
- 3: "tripleclick",
|
|
|
- 4: "quadclick"
|
|
|
- };
|
|
|
-
|
|
|
- exports.addListener(el, "mousedown", function(e) {
|
|
|
- if (exports.getButton(e) !== 0) {
|
|
|
- clicks = 0;
|
|
|
- } else if (e.detail > 1) {
|
|
|
- clicks++;
|
|
|
- if (clicks > 4)
|
|
|
- clicks = 1;
|
|
|
- } else {
|
|
|
- clicks = 1;
|
|
|
- }
|
|
|
- if (useragent.isIE) {
|
|
|
- var isNewClick = Math.abs(e.clientX - startX) > 5 || Math.abs(e.clientY - startY) > 5;
|
|
|
- if (!timer || isNewClick)
|
|
|
- clicks = 1;
|
|
|
- if (timer)
|
|
|
- clearTimeout(timer);
|
|
|
- timer = setTimeout(function() {timer = null}, timeouts[clicks - 1] || 600);
|
|
|
-
|
|
|
- if (clicks == 1) {
|
|
|
- startX = e.clientX;
|
|
|
- startY = e.clientY;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- e._clicks = clicks;
|
|
|
-
|
|
|
- eventHandler[callbackName]("mousedown", e);
|
|
|
-
|
|
|
- if (clicks > 4)
|
|
|
- clicks = 0;
|
|
|
- else if (clicks > 1)
|
|
|
- return eventHandler[callbackName](eventNames[clicks], e);
|
|
|
- });
|
|
|
-
|
|
|
- if (useragent.isOldIE) {
|
|
|
- exports.addListener(el, "dblclick", function(e) {
|
|
|
- clicks = 2;
|
|
|
- if (timer)
|
|
|
- clearTimeout(timer);
|
|
|
- timer = setTimeout(function() {timer = null}, timeouts[clicks - 1] || 600);
|
|
|
- eventHandler[callbackName]("mousedown", e);
|
|
|
- eventHandler[callbackName](eventNames[clicks], e);
|
|
|
- });
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-var getModifierHash = useragent.isMac && useragent.isOpera && !("KeyboardEvent" in window)
|
|
|
- ? function(e) {
|
|
|
- return 0 | (e.metaKey ? 1 : 0) | (e.altKey ? 2 : 0) | (e.shiftKey ? 4 : 0) | (e.ctrlKey ? 8 : 0);
|
|
|
- }
|
|
|
- : function(e) {
|
|
|
- return 0 | (e.ctrlKey ? 1 : 0) | (e.altKey ? 2 : 0) | (e.shiftKey ? 4 : 0) | (e.metaKey ? 8 : 0);
|
|
|
- };
|
|
|
-
|
|
|
-exports.getModifierString = function(e) {
|
|
|
- return keys.KEY_MODS[getModifierHash(e)];
|
|
|
-};
|
|
|
-
|
|
|
-function normalizeCommandKeys(callback, e, keyCode) {
|
|
|
- var hashId = getModifierHash(e);
|
|
|
-
|
|
|
- if (!useragent.isMac && pressedKeys) {
|
|
|
- if (pressedKeys[91] || pressedKeys[92])
|
|
|
- hashId |= 8;
|
|
|
- if (pressedKeys.altGr) {
|
|
|
- if ((3 & hashId) != 3)
|
|
|
- pressedKeys.altGr = 0;
|
|
|
- else
|
|
|
- return;
|
|
|
- }
|
|
|
- if (keyCode === 18 || keyCode === 17) {
|
|
|
- var location = "location" in e ? e.location : e.keyLocation;
|
|
|
- if (keyCode === 17 && location === 1) {
|
|
|
- if (pressedKeys[keyCode] == 1)
|
|
|
- ts = e.timeStamp;
|
|
|
- } else if (keyCode === 18 && hashId === 3 && location === 2) {
|
|
|
- var dt = e.timeStamp - ts;
|
|
|
- if (dt < 50)
|
|
|
- pressedKeys.altGr = true;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (keyCode in keys.MODIFIER_KEYS) {
|
|
|
- keyCode = -1;
|
|
|
- }
|
|
|
-
|
|
|
- if (hashId & 8 && (keyCode === 91 || keyCode === 93)) {
|
|
|
- keyCode = -1;
|
|
|
- }
|
|
|
-
|
|
|
- if (!hashId && keyCode === 13) {
|
|
|
- var location = "location" in e ? e.location : e.keyLocation;
|
|
|
- if (location === 3) {
|
|
|
- callback(e, hashId, -keyCode);
|
|
|
- if (e.defaultPrevented)
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (useragent.isChromeOS && hashId & 8) {
|
|
|
- callback(e, hashId, keyCode);
|
|
|
- if (e.defaultPrevented)
|
|
|
- return;
|
|
|
- else
|
|
|
- hashId &= ~8;
|
|
|
- }
|
|
|
- if (!hashId && !(keyCode in keys.FUNCTION_KEYS) && !(keyCode in keys.PRINTABLE_KEYS)) {
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- return callback(e, hashId, keyCode);
|
|
|
-}
|
|
|
-
|
|
|
-var pressedKeys = null;
|
|
|
-var ts = 0;
|
|
|
-exports.addCommandKeyListener = function(el, callback) {
|
|
|
- var addListener = exports.addListener;
|
|
|
- if (useragent.isOldGecko || (useragent.isOpera && !("KeyboardEvent" in window))) {
|
|
|
- var lastKeyDownKeyCode = null;
|
|
|
- addListener(el, "keydown", function(e) {
|
|
|
- lastKeyDownKeyCode = e.keyCode;
|
|
|
- });
|
|
|
- addListener(el, "keypress", function(e) {
|
|
|
- return normalizeCommandKeys(callback, e, lastKeyDownKeyCode);
|
|
|
- });
|
|
|
- } else {
|
|
|
- var lastDefaultPrevented = null;
|
|
|
-
|
|
|
- addListener(el, "keydown", function(e) {
|
|
|
- pressedKeys[e.keyCode] = (pressedKeys[e.keyCode] || 0) + 1;
|
|
|
- var result = normalizeCommandKeys(callback, e, e.keyCode);
|
|
|
- lastDefaultPrevented = e.defaultPrevented;
|
|
|
- return result;
|
|
|
- });
|
|
|
-
|
|
|
- addListener(el, "keypress", function(e) {
|
|
|
- if (lastDefaultPrevented && (e.ctrlKey || e.altKey || e.shiftKey || e.metaKey)) {
|
|
|
- exports.stopEvent(e);
|
|
|
- lastDefaultPrevented = null;
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- addListener(el, "keyup", function(e) {
|
|
|
- pressedKeys[e.keyCode] = null;
|
|
|
- });
|
|
|
-
|
|
|
- if (!pressedKeys) {
|
|
|
- resetPressedKeys();
|
|
|
- addListener(window, "focus", resetPressedKeys);
|
|
|
- }
|
|
|
- }
|
|
|
-};
|
|
|
-function resetPressedKeys(e) {
|
|
|
- pressedKeys = Object.create(null);
|
|
|
-}
|
|
|
-
|
|
|
-if (typeof window == "object" && window.postMessage && !useragent.isOldIE) {
|
|
|
- var postMessageId = 1;
|
|
|
- exports.nextTick = function(callback, win) {
|
|
|
- win = win || window;
|
|
|
- var messageName = "zero-timeout-message-" + postMessageId;
|
|
|
- exports.addListener(win, "message", function listener(e) {
|
|
|
- if (e.data == messageName) {
|
|
|
- exports.stopPropagation(e);
|
|
|
- exports.removeListener(win, "message", listener);
|
|
|
- callback();
|
|
|
- }
|
|
|
- });
|
|
|
- win.postMessage(messageName, "*");
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-exports.nextFrame = typeof window == "object" && (window.requestAnimationFrame
|
|
|
- || window.mozRequestAnimationFrame
|
|
|
- || window.webkitRequestAnimationFrame
|
|
|
- || window.msRequestAnimationFrame
|
|
|
- || window.oRequestAnimationFrame);
|
|
|
-
|
|
|
-if (exports.nextFrame)
|
|
|
- exports.nextFrame = exports.nextFrame.bind(window);
|
|
|
-else
|
|
|
- exports.nextFrame = function(callback) {
|
|
|
- setTimeout(callback, 17);
|
|
|
- };
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/lang",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-exports.last = function(a) {
|
|
|
- return a[a.length - 1];
|
|
|
-};
|
|
|
-
|
|
|
-exports.stringReverse = function(string) {
|
|
|
- return string.split("").reverse().join("");
|
|
|
-};
|
|
|
-
|
|
|
-exports.stringRepeat = function (string, count) {
|
|
|
- var result = '';
|
|
|
- while (count > 0) {
|
|
|
- if (count & 1)
|
|
|
- result += string;
|
|
|
-
|
|
|
- if (count >>= 1)
|
|
|
- string += string;
|
|
|
- }
|
|
|
- return result;
|
|
|
-};
|
|
|
-
|
|
|
-var trimBeginRegexp = /^\s\s*/;
|
|
|
-var trimEndRegexp = /\s\s*$/;
|
|
|
-
|
|
|
-exports.stringTrimLeft = function (string) {
|
|
|
- return string.replace(trimBeginRegexp, '');
|
|
|
-};
|
|
|
-
|
|
|
-exports.stringTrimRight = function (string) {
|
|
|
- return string.replace(trimEndRegexp, '');
|
|
|
-};
|
|
|
-
|
|
|
-exports.copyObject = function(obj) {
|
|
|
- var copy = {};
|
|
|
- for (var key in obj) {
|
|
|
- copy[key] = obj[key];
|
|
|
- }
|
|
|
- return copy;
|
|
|
-};
|
|
|
-
|
|
|
-exports.copyArray = function(array){
|
|
|
- var copy = [];
|
|
|
- for (var i=0, l=array.length; i<l; i++) {
|
|
|
- if (array[i] && typeof array[i] == "object")
|
|
|
- copy[i] = this.copyObject( array[i] );
|
|
|
- else
|
|
|
- copy[i] = array[i];
|
|
|
- }
|
|
|
- return copy;
|
|
|
-};
|
|
|
-
|
|
|
-exports.deepCopy = function deepCopy(obj) {
|
|
|
- if (typeof obj !== "object" || !obj)
|
|
|
- return obj;
|
|
|
- var copy;
|
|
|
- if (Array.isArray(obj)) {
|
|
|
- copy = [];
|
|
|
- for (var key = 0; key < obj.length; key++) {
|
|
|
- copy[key] = deepCopy(obj[key]);
|
|
|
- }
|
|
|
- return copy;
|
|
|
- }
|
|
|
- var cons = obj.constructor;
|
|
|
- if (cons === RegExp)
|
|
|
- return obj;
|
|
|
-
|
|
|
- copy = cons();
|
|
|
- for (var key in obj) {
|
|
|
- copy[key] = deepCopy(obj[key]);
|
|
|
- }
|
|
|
- return copy;
|
|
|
-};
|
|
|
-
|
|
|
-exports.arrayToMap = function(arr) {
|
|
|
- var map = {};
|
|
|
- for (var i=0; i<arr.length; i++) {
|
|
|
- map[arr[i]] = 1;
|
|
|
- }
|
|
|
- return map;
|
|
|
-
|
|
|
-};
|
|
|
-
|
|
|
-exports.createMap = function(props) {
|
|
|
- var map = Object.create(null);
|
|
|
- for (var i in props) {
|
|
|
- map[i] = props[i];
|
|
|
- }
|
|
|
- return map;
|
|
|
-};
|
|
|
-exports.arrayRemove = function(array, value) {
|
|
|
- for (var i = 0; i <= array.length; i++) {
|
|
|
- if (value === array[i]) {
|
|
|
- array.splice(i, 1);
|
|
|
- }
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-exports.escapeRegExp = function(str) {
|
|
|
- return str.replace(/([.*+?^${}()|[\]\/\\])/g, '\\$1');
|
|
|
-};
|
|
|
-
|
|
|
-exports.escapeHTML = function(str) {
|
|
|
- return str.replace(/&/g, "&").replace(/"/g, """).replace(/'/g, "'").replace(/</g, "<");
|
|
|
-};
|
|
|
-
|
|
|
-exports.getMatchOffsets = function(string, regExp) {
|
|
|
- var matches = [];
|
|
|
-
|
|
|
- string.replace(regExp, function(str) {
|
|
|
- matches.push({
|
|
|
- offset: arguments[arguments.length-2],
|
|
|
- length: str.length
|
|
|
- });
|
|
|
- });
|
|
|
-
|
|
|
- return matches;
|
|
|
-};
|
|
|
-exports.deferredCall = function(fcn) {
|
|
|
- var timer = null;
|
|
|
- var callback = function() {
|
|
|
- timer = null;
|
|
|
- fcn();
|
|
|
- };
|
|
|
-
|
|
|
- var deferred = function(timeout) {
|
|
|
- deferred.cancel();
|
|
|
- timer = setTimeout(callback, timeout || 0);
|
|
|
- return deferred;
|
|
|
- };
|
|
|
-
|
|
|
- deferred.schedule = deferred;
|
|
|
-
|
|
|
- deferred.call = function() {
|
|
|
- this.cancel();
|
|
|
- fcn();
|
|
|
- return deferred;
|
|
|
- };
|
|
|
-
|
|
|
- deferred.cancel = function() {
|
|
|
- clearTimeout(timer);
|
|
|
- timer = null;
|
|
|
- return deferred;
|
|
|
- };
|
|
|
-
|
|
|
- deferred.isPending = function() {
|
|
|
- return timer;
|
|
|
- };
|
|
|
-
|
|
|
- return deferred;
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-exports.delayedCall = function(fcn, defaultTimeout) {
|
|
|
- var timer = null;
|
|
|
- var callback = function() {
|
|
|
- timer = null;
|
|
|
- fcn();
|
|
|
- };
|
|
|
-
|
|
|
- var _self = function(timeout) {
|
|
|
- if (timer == null)
|
|
|
- timer = setTimeout(callback, timeout || defaultTimeout);
|
|
|
- };
|
|
|
-
|
|
|
- _self.delay = function(timeout) {
|
|
|
- timer && clearTimeout(timer);
|
|
|
- timer = setTimeout(callback, timeout || defaultTimeout);
|
|
|
- };
|
|
|
- _self.schedule = _self;
|
|
|
-
|
|
|
- _self.call = function() {
|
|
|
- this.cancel();
|
|
|
- fcn();
|
|
|
- };
|
|
|
-
|
|
|
- _self.cancel = function() {
|
|
|
- timer && clearTimeout(timer);
|
|
|
- timer = null;
|
|
|
- };
|
|
|
-
|
|
|
- _self.isPending = function() {
|
|
|
- return timer;
|
|
|
- };
|
|
|
-
|
|
|
- return _self;
|
|
|
-};
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var event = require("../lib/event");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var BROKEN_SETDATA = useragent.isChrome < 18;
|
|
|
-var USE_IE_MIME_TYPE = useragent.isIE;
|
|
|
-
|
|
|
-var TextInput = function(parentNode, host) {
|
|
|
- var text = dom.createElement("textarea");
|
|
|
- text.className = "ace_text-input";
|
|
|
-
|
|
|
- if (useragent.isTouchPad)
|
|
|
- text.setAttribute("x-palm-disable-auto-cap", true);
|
|
|
-
|
|
|
- text.setAttribute("wrap", "off");
|
|
|
- text.setAttribute("autocorrect", "off");
|
|
|
- text.setAttribute("autocapitalize", "off");
|
|
|
- text.setAttribute("spellcheck", false);
|
|
|
-
|
|
|
- text.style.opacity = "0";
|
|
|
- if (useragent.isOldIE) text.style.top = "-1000px";
|
|
|
- parentNode.insertBefore(text, parentNode.firstChild);
|
|
|
-
|
|
|
- var PLACEHOLDER = "\x01\x01";
|
|
|
-
|
|
|
- var copied = false;
|
|
|
- var pasted = false;
|
|
|
- var inComposition = false;
|
|
|
- var tempStyle = '';
|
|
|
- var isSelectionEmpty = true;
|
|
|
- try { var isFocused = document.activeElement === text; } catch(e) {}
|
|
|
-
|
|
|
- event.addListener(text, "blur", function(e) {
|
|
|
- host.onBlur(e);
|
|
|
- isFocused = false;
|
|
|
- });
|
|
|
- event.addListener(text, "focus", function(e) {
|
|
|
- isFocused = true;
|
|
|
- host.onFocus(e);
|
|
|
- resetSelection();
|
|
|
- });
|
|
|
- this.focus = function() {
|
|
|
- if (tempStyle) return text.focus();
|
|
|
- var top = text.style.top;
|
|
|
- text.style.position = "fixed";
|
|
|
- text.style.top = "-1000px";
|
|
|
- text.focus();
|
|
|
- setTimeout(function() {
|
|
|
- text.style.position = "";
|
|
|
- if (text.style.top == "-1000px")
|
|
|
- text.style.top = top;
|
|
|
- }, 0);
|
|
|
- };
|
|
|
- this.blur = function() {
|
|
|
- text.blur();
|
|
|
- };
|
|
|
- this.isFocused = function() {
|
|
|
- return isFocused;
|
|
|
- };
|
|
|
- var syncSelection = lang.delayedCall(function() {
|
|
|
- isFocused && resetSelection(isSelectionEmpty);
|
|
|
- });
|
|
|
- var syncValue = lang.delayedCall(function() {
|
|
|
- if (!inComposition) {
|
|
|
- text.value = PLACEHOLDER;
|
|
|
- isFocused && resetSelection();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- function resetSelection(isEmpty) {
|
|
|
- if (inComposition)
|
|
|
- return;
|
|
|
- inComposition = true;
|
|
|
-
|
|
|
- if (inputHandler) {
|
|
|
- selectionStart = 0;
|
|
|
- selectionEnd = isEmpty ? 0 : text.value.length - 1;
|
|
|
- } else {
|
|
|
- var selectionStart = isEmpty ? 2 : 1;
|
|
|
- var selectionEnd = 2;
|
|
|
- }
|
|
|
- try {
|
|
|
- text.setSelectionRange(selectionStart, selectionEnd);
|
|
|
- } catch(e){}
|
|
|
-
|
|
|
- inComposition = false;
|
|
|
- }
|
|
|
-
|
|
|
- function resetValue() {
|
|
|
- if (inComposition)
|
|
|
- return;
|
|
|
- text.value = PLACEHOLDER;
|
|
|
- if (useragent.isWebKit)
|
|
|
- syncValue.schedule();
|
|
|
- }
|
|
|
-
|
|
|
- useragent.isWebKit || host.addEventListener('changeSelection', function() {
|
|
|
- if (host.selection.isEmpty() != isSelectionEmpty) {
|
|
|
- isSelectionEmpty = !isSelectionEmpty;
|
|
|
- syncSelection.schedule();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- resetValue();
|
|
|
- if (isFocused)
|
|
|
- host.onFocus();
|
|
|
-
|
|
|
-
|
|
|
- var isAllSelected = function(text) {
|
|
|
- return text.selectionStart === 0 && text.selectionEnd === text.value.length;
|
|
|
- };
|
|
|
- if (!text.setSelectionRange && text.createTextRange) {
|
|
|
- text.setSelectionRange = function(selectionStart, selectionEnd) {
|
|
|
- var range = this.createTextRange();
|
|
|
- range.collapse(true);
|
|
|
- range.moveStart('character', selectionStart);
|
|
|
- range.moveEnd('character', selectionEnd);
|
|
|
- range.select();
|
|
|
- };
|
|
|
- isAllSelected = function(text) {
|
|
|
- try {
|
|
|
- var range = text.ownerDocument.selection.createRange();
|
|
|
- }catch(e) {}
|
|
|
- if (!range || range.parentElement() != text) return false;
|
|
|
- return range.text == text.value;
|
|
|
- }
|
|
|
- }
|
|
|
- if (useragent.isOldIE) {
|
|
|
- var inPropertyChange = false;
|
|
|
- var onPropertyChange = function(e){
|
|
|
- if (inPropertyChange)
|
|
|
- return;
|
|
|
- var data = text.value;
|
|
|
- if (inComposition || !data || data == PLACEHOLDER)
|
|
|
- return;
|
|
|
- if (e && data == PLACEHOLDER[0])
|
|
|
- return syncProperty.schedule();
|
|
|
-
|
|
|
- sendText(data);
|
|
|
- inPropertyChange = true;
|
|
|
- resetValue();
|
|
|
- inPropertyChange = false;
|
|
|
- };
|
|
|
- var syncProperty = lang.delayedCall(onPropertyChange);
|
|
|
- event.addListener(text, "propertychange", onPropertyChange);
|
|
|
-
|
|
|
- var keytable = { 13:1, 27:1 };
|
|
|
- event.addListener(text, "keyup", function (e) {
|
|
|
- if (inComposition && (!text.value || keytable[e.keyCode]))
|
|
|
- setTimeout(onCompositionEnd, 0);
|
|
|
- if ((text.value.charCodeAt(0)||0) < 129) {
|
|
|
- return syncProperty.call();
|
|
|
- }
|
|
|
- inComposition ? onCompositionUpdate() : onCompositionStart();
|
|
|
- });
|
|
|
- event.addListener(text, "keydown", function (e) {
|
|
|
- syncProperty.schedule(50);
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- var onSelect = function(e) {
|
|
|
- if (copied) {
|
|
|
- copied = false;
|
|
|
- } else if (isAllSelected(text)) {
|
|
|
- host.selectAll();
|
|
|
- resetSelection();
|
|
|
- } else if (inputHandler) {
|
|
|
- resetSelection(host.selection.isEmpty());
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- var inputHandler = null;
|
|
|
- this.setInputHandler = function(cb) {inputHandler = cb};
|
|
|
- this.getInputHandler = function() {return inputHandler};
|
|
|
- var afterContextMenu = false;
|
|
|
-
|
|
|
- var sendText = function(data) {
|
|
|
- if (inputHandler) {
|
|
|
- data = inputHandler(data);
|
|
|
- inputHandler = null;
|
|
|
- }
|
|
|
- if (pasted) {
|
|
|
- resetSelection();
|
|
|
- if (data)
|
|
|
- host.onPaste(data);
|
|
|
- pasted = false;
|
|
|
- } else if (data == PLACEHOLDER.charAt(0)) {
|
|
|
- if (afterContextMenu)
|
|
|
- host.execCommand("del", {source: "ace"});
|
|
|
- else // some versions of android do not fire keydown when pressing backspace
|
|
|
- host.execCommand("backspace", {source: "ace"});
|
|
|
- } else {
|
|
|
- if (data.substring(0, 2) == PLACEHOLDER)
|
|
|
- data = data.substr(2);
|
|
|
- else if (data.charAt(0) == PLACEHOLDER.charAt(0))
|
|
|
- data = data.substr(1);
|
|
|
- else if (data.charAt(data.length - 1) == PLACEHOLDER.charAt(0))
|
|
|
- data = data.slice(0, -1);
|
|
|
- if (data.charAt(data.length - 1) == PLACEHOLDER.charAt(0))
|
|
|
- data = data.slice(0, -1);
|
|
|
-
|
|
|
- if (data)
|
|
|
- host.onTextInput(data);
|
|
|
- }
|
|
|
- if (afterContextMenu)
|
|
|
- afterContextMenu = false;
|
|
|
- };
|
|
|
- var onInput = function(e) {
|
|
|
- if (inComposition)
|
|
|
- return;
|
|
|
- var data = text.value;
|
|
|
- sendText(data);
|
|
|
- resetValue();
|
|
|
- };
|
|
|
-
|
|
|
- var handleClipboardData = function(e, data) {
|
|
|
- var clipboardData = e.clipboardData || window.clipboardData;
|
|
|
- if (!clipboardData || BROKEN_SETDATA)
|
|
|
- return;
|
|
|
- var mime = USE_IE_MIME_TYPE ? "Text" : "text/plain";
|
|
|
- if (data) {
|
|
|
- return clipboardData.setData(mime, data) !== false;
|
|
|
- } else {
|
|
|
- return clipboardData.getData(mime);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- var doCopy = function(e, isCut) {
|
|
|
- var data = host.getCopyText();
|
|
|
- if (!data)
|
|
|
- return event.preventDefault(e);
|
|
|
-
|
|
|
- if (handleClipboardData(e, data)) {
|
|
|
- isCut ? host.onCut() : host.onCopy();
|
|
|
- event.preventDefault(e);
|
|
|
- } else {
|
|
|
- copied = true;
|
|
|
- text.value = data;
|
|
|
- text.select();
|
|
|
- setTimeout(function(){
|
|
|
- copied = false;
|
|
|
- resetValue();
|
|
|
- resetSelection();
|
|
|
- isCut ? host.onCut() : host.onCopy();
|
|
|
- });
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- var onCut = function(e) {
|
|
|
- doCopy(e, true);
|
|
|
- };
|
|
|
-
|
|
|
- var onCopy = function(e) {
|
|
|
- doCopy(e, false);
|
|
|
- };
|
|
|
-
|
|
|
- var onPaste = function(e) {
|
|
|
- var data = handleClipboardData(e);
|
|
|
- if (typeof data == "string") {
|
|
|
- if (data)
|
|
|
- host.onPaste(data, e);
|
|
|
- if (useragent.isIE)
|
|
|
- setTimeout(resetSelection);
|
|
|
- event.preventDefault(e);
|
|
|
- }
|
|
|
- else {
|
|
|
- text.value = "";
|
|
|
- pasted = true;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- event.addCommandKeyListener(text, host.onCommandKey.bind(host));
|
|
|
-
|
|
|
- event.addListener(text, "select", onSelect);
|
|
|
-
|
|
|
- event.addListener(text, "input", onInput);
|
|
|
-
|
|
|
- event.addListener(text, "cut", onCut);
|
|
|
- event.addListener(text, "copy", onCopy);
|
|
|
- event.addListener(text, "paste", onPaste);
|
|
|
- if (!('oncut' in text) || !('oncopy' in text) || !('onpaste' in text)){
|
|
|
- event.addListener(parentNode, "keydown", function(e) {
|
|
|
- if ((useragent.isMac && !e.metaKey) || !e.ctrlKey)
|
|
|
- return;
|
|
|
-
|
|
|
- switch (e.keyCode) {
|
|
|
- case 67:
|
|
|
- onCopy(e);
|
|
|
- break;
|
|
|
- case 86:
|
|
|
- onPaste(e);
|
|
|
- break;
|
|
|
- case 88:
|
|
|
- onCut(e);
|
|
|
- break;
|
|
|
- }
|
|
|
- });
|
|
|
- }
|
|
|
- var onCompositionStart = function(e) {
|
|
|
- if (inComposition || !host.onCompositionStart || host.$readOnly)
|
|
|
- return;
|
|
|
- inComposition = {};
|
|
|
- host.onCompositionStart();
|
|
|
- setTimeout(onCompositionUpdate, 0);
|
|
|
- host.on("mousedown", onCompositionEnd);
|
|
|
- if (!host.selection.isEmpty()) {
|
|
|
- host.insert("");
|
|
|
- host.session.markUndoGroup();
|
|
|
- host.selection.clearSelection();
|
|
|
- }
|
|
|
- host.session.markUndoGroup();
|
|
|
- };
|
|
|
-
|
|
|
- var onCompositionUpdate = function() {
|
|
|
- if (!inComposition || !host.onCompositionUpdate || host.$readOnly)
|
|
|
- return;
|
|
|
- var val = text.value.replace(/\x01/g, "");
|
|
|
- if (inComposition.lastValue === val) return;
|
|
|
-
|
|
|
- host.onCompositionUpdate(val);
|
|
|
- if (inComposition.lastValue)
|
|
|
- host.undo();
|
|
|
- inComposition.lastValue = val;
|
|
|
- if (inComposition.lastValue) {
|
|
|
- var r = host.selection.getRange();
|
|
|
- host.insert(inComposition.lastValue);
|
|
|
- host.session.markUndoGroup();
|
|
|
- inComposition.range = host.selection.getRange();
|
|
|
- host.selection.setRange(r);
|
|
|
- host.selection.clearSelection();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- var onCompositionEnd = function(e) {
|
|
|
- if (!host.onCompositionEnd || host.$readOnly) return;
|
|
|
- var c = inComposition;
|
|
|
- inComposition = false;
|
|
|
- var timer = setTimeout(function() {
|
|
|
- timer = null;
|
|
|
- var str = text.value.replace(/\x01/g, "");
|
|
|
- if (inComposition)
|
|
|
- return;
|
|
|
- else if (str == c.lastValue)
|
|
|
- resetValue();
|
|
|
- else if (!c.lastValue && str) {
|
|
|
- resetValue();
|
|
|
- sendText(str);
|
|
|
- }
|
|
|
- });
|
|
|
- inputHandler = function compositionInputHandler(str) {
|
|
|
- if (timer)
|
|
|
- clearTimeout(timer);
|
|
|
- str = str.replace(/\x01/g, "");
|
|
|
- if (str == c.lastValue)
|
|
|
- return "";
|
|
|
- if (c.lastValue && timer)
|
|
|
- host.undo();
|
|
|
- return str;
|
|
|
- };
|
|
|
- host.onCompositionEnd();
|
|
|
- host.removeListener("mousedown", onCompositionEnd);
|
|
|
- if (e.type == "compositionend" && c.range) {
|
|
|
- host.selection.setRange(c.range);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- var syncComposition = lang.delayedCall(onCompositionUpdate, 50);
|
|
|
-
|
|
|
- event.addListener(text, "compositionstart", onCompositionStart);
|
|
|
- if (useragent.isGecko) {
|
|
|
- event.addListener(text, "text", function(){syncComposition.schedule()});
|
|
|
- } else {
|
|
|
- event.addListener(text, "keyup", function(){syncComposition.schedule()});
|
|
|
- event.addListener(text, "keydown", function(){syncComposition.schedule()});
|
|
|
- }
|
|
|
- event.addListener(text, "compositionend", onCompositionEnd);
|
|
|
-
|
|
|
- this.getElement = function() {
|
|
|
- return text;
|
|
|
- };
|
|
|
-
|
|
|
- this.setReadOnly = function(readOnly) {
|
|
|
- text.readOnly = readOnly;
|
|
|
- };
|
|
|
-
|
|
|
- this.onContextMenu = function(e) {
|
|
|
- afterContextMenu = true;
|
|
|
- resetSelection(host.selection.isEmpty());
|
|
|
- host._emit("nativecontextmenu", {target: host, domEvent: e});
|
|
|
- this.moveToMouse(e, true);
|
|
|
- };
|
|
|
-
|
|
|
- this.moveToMouse = function(e, bringToFront) {
|
|
|
- if (!bringToFront && useragent.isOldIE)
|
|
|
- return;
|
|
|
- if (!tempStyle)
|
|
|
- tempStyle = text.style.cssText;
|
|
|
- text.style.cssText = (bringToFront ? "z-index:100000;" : "")
|
|
|
- + "height:" + text.style.height + ";"
|
|
|
- + (useragent.isIE ? "opacity:0.1;" : "");
|
|
|
-
|
|
|
- var rect = host.container.getBoundingClientRect();
|
|
|
- var style = dom.computedStyle(host.container);
|
|
|
- var top = rect.top + (parseInt(style.borderTopWidth) || 0);
|
|
|
- var left = rect.left + (parseInt(rect.borderLeftWidth) || 0);
|
|
|
- var maxTop = rect.bottom - top - text.clientHeight -2;
|
|
|
- var move = function(e) {
|
|
|
- text.style.left = e.clientX - left - 2 + "px";
|
|
|
- text.style.top = Math.min(e.clientY - top - 2, maxTop) + "px";
|
|
|
- };
|
|
|
- move(e);
|
|
|
-
|
|
|
- if (e.type != "mousedown")
|
|
|
- return;
|
|
|
-
|
|
|
- if (host.renderer.$keepTextAreaAtCursor)
|
|
|
- host.renderer.$keepTextAreaAtCursor = null;
|
|
|
- if (useragent.isWin && !useragent.isOldIE)
|
|
|
- event.capture(host.container, move, onContextMenuClose);
|
|
|
- };
|
|
|
-
|
|
|
- this.onContextMenuClose = onContextMenuClose;
|
|
|
- var closeTimeout;
|
|
|
- function onContextMenuClose() {
|
|
|
- clearTimeout(closeTimeout);
|
|
|
- closeTimeout = setTimeout(function () {
|
|
|
- if (tempStyle) {
|
|
|
- text.style.cssText = tempStyle;
|
|
|
- tempStyle = '';
|
|
|
- }
|
|
|
- if (host.renderer.$keepTextAreaAtCursor == null) {
|
|
|
- host.renderer.$keepTextAreaAtCursor = true;
|
|
|
- host.renderer.$moveTextAreaToCursor();
|
|
|
- }
|
|
|
- }, useragent.isOldIE ? 200 : 0);
|
|
|
- }
|
|
|
-
|
|
|
- var onContextMenu = function(e) {
|
|
|
- host.textInput.onContextMenu(e);
|
|
|
- onContextMenuClose();
|
|
|
- };
|
|
|
- event.addListener(host.renderer.scroller, "contextmenu", onContextMenu);
|
|
|
- event.addListener(text, "contextmenu", onContextMenu);
|
|
|
-};
|
|
|
-
|
|
|
-exports.TextInput = TextInput;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mouse/default_handlers",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var event = require("../lib/event");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-
|
|
|
-var DRAG_OFFSET = 0; // pixels
|
|
|
-
|
|
|
-function DefaultHandlers(mouseHandler) {
|
|
|
- mouseHandler.$clickSelection = null;
|
|
|
-
|
|
|
- var editor = mouseHandler.editor;
|
|
|
- editor.setDefaultHandler("mousedown", this.onMouseDown.bind(mouseHandler));
|
|
|
- editor.setDefaultHandler("dblclick", this.onDoubleClick.bind(mouseHandler));
|
|
|
- editor.setDefaultHandler("tripleclick", this.onTripleClick.bind(mouseHandler));
|
|
|
- editor.setDefaultHandler("quadclick", this.onQuadClick.bind(mouseHandler));
|
|
|
- editor.setDefaultHandler("mousewheel", this.onMouseWheel.bind(mouseHandler));
|
|
|
- editor.setDefaultHandler("touchmove", this.onTouchMove.bind(mouseHandler));
|
|
|
-
|
|
|
- var exports = ["select", "startSelect", "selectEnd", "selectAllEnd", "selectByWordsEnd",
|
|
|
- "selectByLinesEnd", "dragWait", "dragWaitEnd", "focusWait"];
|
|
|
-
|
|
|
- exports.forEach(function(x) {
|
|
|
- mouseHandler[x] = this[x];
|
|
|
- }, this);
|
|
|
-
|
|
|
- mouseHandler.selectByLines = this.extendSelectionBy.bind(mouseHandler, "getLineRange");
|
|
|
- mouseHandler.selectByWords = this.extendSelectionBy.bind(mouseHandler, "getWordRange");
|
|
|
-}
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.onMouseDown = function(ev) {
|
|
|
- var inSelection = ev.inSelection();
|
|
|
- var pos = ev.getDocumentPosition();
|
|
|
- this.mousedownEvent = ev;
|
|
|
- var editor = this.editor;
|
|
|
-
|
|
|
- var button = ev.getButton();
|
|
|
- if (button !== 0) {
|
|
|
- var selectionRange = editor.getSelectionRange();
|
|
|
- var selectionEmpty = selectionRange.isEmpty();
|
|
|
- editor.$blockScrolling++;
|
|
|
- if (selectionEmpty)
|
|
|
- editor.selection.moveToPosition(pos);
|
|
|
- editor.$blockScrolling--;
|
|
|
- editor.textInput.onContextMenu(ev.domEvent);
|
|
|
- return; // stopping event here breaks contextmenu on ff mac
|
|
|
- }
|
|
|
-
|
|
|
- this.mousedownEvent.time = Date.now();
|
|
|
- if (inSelection && !editor.isFocused()) {
|
|
|
- editor.focus();
|
|
|
- if (this.$focusTimout && !this.$clickSelection && !editor.inMultiSelectMode) {
|
|
|
- this.setState("focusWait");
|
|
|
- this.captureMouse(ev);
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- this.captureMouse(ev);
|
|
|
- this.startSelect(pos, ev.domEvent._clicks > 1);
|
|
|
- return ev.preventDefault();
|
|
|
- };
|
|
|
-
|
|
|
- this.startSelect = function(pos, waitForClickSelection) {
|
|
|
- pos = pos || this.editor.renderer.screenToTextCoordinates(this.x, this.y);
|
|
|
- var editor = this.editor;
|
|
|
- editor.$blockScrolling++;
|
|
|
- if (this.mousedownEvent.getShiftKey())
|
|
|
- editor.selection.selectToPosition(pos);
|
|
|
- else if (!waitForClickSelection)
|
|
|
- editor.selection.moveToPosition(pos);
|
|
|
- if (!waitForClickSelection)
|
|
|
- this.select();
|
|
|
- if (editor.renderer.scroller.setCapture) {
|
|
|
- editor.renderer.scroller.setCapture();
|
|
|
- }
|
|
|
- editor.setStyle("ace_selecting");
|
|
|
- this.setState("select");
|
|
|
- editor.$blockScrolling--;
|
|
|
- };
|
|
|
-
|
|
|
- this.select = function() {
|
|
|
- var anchor, editor = this.editor;
|
|
|
- var cursor = editor.renderer.screenToTextCoordinates(this.x, this.y);
|
|
|
- editor.$blockScrolling++;
|
|
|
- if (this.$clickSelection) {
|
|
|
- var cmp = this.$clickSelection.comparePoint(cursor);
|
|
|
-
|
|
|
- if (cmp == -1) {
|
|
|
- anchor = this.$clickSelection.end;
|
|
|
- } else if (cmp == 1) {
|
|
|
- anchor = this.$clickSelection.start;
|
|
|
- } else {
|
|
|
- var orientedRange = calcRangeOrientation(this.$clickSelection, cursor);
|
|
|
- cursor = orientedRange.cursor;
|
|
|
- anchor = orientedRange.anchor;
|
|
|
- }
|
|
|
- editor.selection.setSelectionAnchor(anchor.row, anchor.column);
|
|
|
- }
|
|
|
- editor.selection.selectToPosition(cursor);
|
|
|
- editor.$blockScrolling--;
|
|
|
- editor.renderer.scrollCursorIntoView();
|
|
|
- };
|
|
|
-
|
|
|
- this.extendSelectionBy = function(unitName) {
|
|
|
- var anchor, editor = this.editor;
|
|
|
- var cursor = editor.renderer.screenToTextCoordinates(this.x, this.y);
|
|
|
- var range = editor.selection[unitName](cursor.row, cursor.column);
|
|
|
- editor.$blockScrolling++;
|
|
|
- if (this.$clickSelection) {
|
|
|
- var cmpStart = this.$clickSelection.comparePoint(range.start);
|
|
|
- var cmpEnd = this.$clickSelection.comparePoint(range.end);
|
|
|
-
|
|
|
- if (cmpStart == -1 && cmpEnd <= 0) {
|
|
|
- anchor = this.$clickSelection.end;
|
|
|
- if (range.end.row != cursor.row || range.end.column != cursor.column)
|
|
|
- cursor = range.start;
|
|
|
- } else if (cmpEnd == 1 && cmpStart >= 0) {
|
|
|
- anchor = this.$clickSelection.start;
|
|
|
- if (range.start.row != cursor.row || range.start.column != cursor.column)
|
|
|
- cursor = range.end;
|
|
|
- } else if (cmpStart == -1 && cmpEnd == 1) {
|
|
|
- cursor = range.end;
|
|
|
- anchor = range.start;
|
|
|
- } else {
|
|
|
- var orientedRange = calcRangeOrientation(this.$clickSelection, cursor);
|
|
|
- cursor = orientedRange.cursor;
|
|
|
- anchor = orientedRange.anchor;
|
|
|
- }
|
|
|
- editor.selection.setSelectionAnchor(anchor.row, anchor.column);
|
|
|
- }
|
|
|
- editor.selection.selectToPosition(cursor);
|
|
|
- editor.$blockScrolling--;
|
|
|
- editor.renderer.scrollCursorIntoView();
|
|
|
- };
|
|
|
-
|
|
|
- this.selectEnd =
|
|
|
- this.selectAllEnd =
|
|
|
- this.selectByWordsEnd =
|
|
|
- this.selectByLinesEnd = function() {
|
|
|
- this.$clickSelection = null;
|
|
|
- this.editor.unsetStyle("ace_selecting");
|
|
|
- if (this.editor.renderer.scroller.releaseCapture) {
|
|
|
- this.editor.renderer.scroller.releaseCapture();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.focusWait = function() {
|
|
|
- var distance = calcDistance(this.mousedownEvent.x, this.mousedownEvent.y, this.x, this.y);
|
|
|
- var time = Date.now();
|
|
|
-
|
|
|
- if (distance > DRAG_OFFSET || time - this.mousedownEvent.time > this.$focusTimout)
|
|
|
- this.startSelect(this.mousedownEvent.getDocumentPosition());
|
|
|
- };
|
|
|
-
|
|
|
- this.onDoubleClick = function(ev) {
|
|
|
- var pos = ev.getDocumentPosition();
|
|
|
- var editor = this.editor;
|
|
|
- var session = editor.session;
|
|
|
-
|
|
|
- var range = session.getBracketRange(pos);
|
|
|
- if (range) {
|
|
|
- if (range.isEmpty()) {
|
|
|
- range.start.column--;
|
|
|
- range.end.column++;
|
|
|
- }
|
|
|
- this.setState("select");
|
|
|
- } else {
|
|
|
- range = editor.selection.getWordRange(pos.row, pos.column);
|
|
|
- this.setState("selectByWords");
|
|
|
- }
|
|
|
- this.$clickSelection = range;
|
|
|
- this.select();
|
|
|
- };
|
|
|
-
|
|
|
- this.onTripleClick = function(ev) {
|
|
|
- var pos = ev.getDocumentPosition();
|
|
|
- var editor = this.editor;
|
|
|
-
|
|
|
- this.setState("selectByLines");
|
|
|
- var range = editor.getSelectionRange();
|
|
|
- if (range.isMultiLine() && range.contains(pos.row, pos.column)) {
|
|
|
- this.$clickSelection = editor.selection.getLineRange(range.start.row);
|
|
|
- this.$clickSelection.end = editor.selection.getLineRange(range.end.row).end;
|
|
|
- } else {
|
|
|
- this.$clickSelection = editor.selection.getLineRange(pos.row);
|
|
|
- }
|
|
|
- this.select();
|
|
|
- };
|
|
|
-
|
|
|
- this.onQuadClick = function(ev) {
|
|
|
- var editor = this.editor;
|
|
|
-
|
|
|
- editor.selectAll();
|
|
|
- this.$clickSelection = editor.getSelectionRange();
|
|
|
- this.setState("selectAll");
|
|
|
- };
|
|
|
-
|
|
|
- this.onMouseWheel = function(ev) {
|
|
|
- if (ev.getAccelKey())
|
|
|
- return;
|
|
|
- if (ev.getShiftKey() && ev.wheelY && !ev.wheelX) {
|
|
|
- ev.wheelX = ev.wheelY;
|
|
|
- ev.wheelY = 0;
|
|
|
- }
|
|
|
-
|
|
|
- var t = ev.domEvent.timeStamp;
|
|
|
- var dt = t - (this.$lastScrollTime||0);
|
|
|
-
|
|
|
- var editor = this.editor;
|
|
|
- var isScrolable = editor.renderer.isScrollableBy(ev.wheelX * ev.speed, ev.wheelY * ev.speed);
|
|
|
- if (isScrolable || dt < 200) {
|
|
|
- this.$lastScrollTime = t;
|
|
|
- editor.renderer.scrollBy(ev.wheelX * ev.speed, ev.wheelY * ev.speed);
|
|
|
- return ev.stop();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.onTouchMove = function (ev) {
|
|
|
- var t = ev.domEvent.timeStamp;
|
|
|
- var dt = t - (this.$lastScrollTime || 0);
|
|
|
-
|
|
|
- var editor = this.editor;
|
|
|
- var isScrolable = editor.renderer.isScrollableBy(ev.wheelX * ev.speed, ev.wheelY * ev.speed);
|
|
|
- if (isScrolable || dt < 200) {
|
|
|
- this.$lastScrollTime = t;
|
|
|
- editor.renderer.scrollBy(ev.wheelX * ev.speed, ev.wheelY * ev.speed);
|
|
|
- return ev.stop();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(DefaultHandlers.prototype);
|
|
|
-
|
|
|
-exports.DefaultHandlers = DefaultHandlers;
|
|
|
-
|
|
|
-function calcDistance(ax, ay, bx, by) {
|
|
|
- return Math.sqrt(Math.pow(bx - ax, 2) + Math.pow(by - ay, 2));
|
|
|
-}
|
|
|
-
|
|
|
-function calcRangeOrientation(range, cursor) {
|
|
|
- if (range.start.row == range.end.row)
|
|
|
- var cmp = 2 * cursor.column - range.start.column - range.end.column;
|
|
|
- else if (range.start.row == range.end.row - 1 && !range.start.column && !range.end.column)
|
|
|
- var cmp = cursor.column - 4;
|
|
|
- else
|
|
|
- var cmp = 2 * cursor.row - range.start.row - range.end.row;
|
|
|
-
|
|
|
- if (cmp < 0)
|
|
|
- return {cursor: range.start, anchor: range.end};
|
|
|
- else
|
|
|
- return {cursor: range.end, anchor: range.start};
|
|
|
-}
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/tooltip",["require","exports","module","ace/lib/oop","ace/lib/dom"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var dom = require("./lib/dom");
|
|
|
-function Tooltip (parentNode) {
|
|
|
- this.isOpen = false;
|
|
|
- this.$element = null;
|
|
|
- this.$parentNode = parentNode;
|
|
|
-}
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.$init = function() {
|
|
|
- this.$element = dom.createElement("div");
|
|
|
- this.$element.className = "ace_tooltip";
|
|
|
- this.$element.style.display = "none";
|
|
|
- this.$parentNode.appendChild(this.$element);
|
|
|
- return this.$element;
|
|
|
- };
|
|
|
- this.getElement = function() {
|
|
|
- return this.$element || this.$init();
|
|
|
- };
|
|
|
- this.setText = function(text) {
|
|
|
- dom.setInnerText(this.getElement(), text);
|
|
|
- };
|
|
|
- this.setHtml = function(html) {
|
|
|
- this.getElement().innerHTML = html;
|
|
|
- };
|
|
|
- this.setPosition = function(x, y) {
|
|
|
- this.getElement().style.left = x + "px";
|
|
|
- this.getElement().style.top = y + "px";
|
|
|
- };
|
|
|
- this.setClassName = function(className) {
|
|
|
- dom.addCssClass(this.getElement(), className);
|
|
|
- };
|
|
|
- this.show = function(text, x, y) {
|
|
|
- if (text != null)
|
|
|
- this.setText(text);
|
|
|
- if (x != null && y != null)
|
|
|
- this.setPosition(x, y);
|
|
|
- if (!this.isOpen) {
|
|
|
- this.getElement().style.display = "block";
|
|
|
- this.isOpen = true;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.hide = function() {
|
|
|
- if (this.isOpen) {
|
|
|
- this.getElement().style.display = "none";
|
|
|
- this.isOpen = false;
|
|
|
- }
|
|
|
- };
|
|
|
- this.getHeight = function() {
|
|
|
- return this.getElement().offsetHeight;
|
|
|
- };
|
|
|
- this.getWidth = function() {
|
|
|
- return this.getElement().offsetWidth;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Tooltip.prototype);
|
|
|
-
|
|
|
-exports.Tooltip = Tooltip;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event","ace/tooltip"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var event = require("../lib/event");
|
|
|
-var Tooltip = require("../tooltip").Tooltip;
|
|
|
-
|
|
|
-function GutterHandler(mouseHandler) {
|
|
|
- var editor = mouseHandler.editor;
|
|
|
- var gutter = editor.renderer.$gutterLayer;
|
|
|
- var tooltip = new GutterTooltip(editor.container);
|
|
|
-
|
|
|
- mouseHandler.editor.setDefaultHandler("guttermousedown", function(e) {
|
|
|
- if (!editor.isFocused() || e.getButton() != 0)
|
|
|
- return;
|
|
|
- var gutterRegion = gutter.getRegion(e);
|
|
|
-
|
|
|
- if (gutterRegion == "foldWidgets")
|
|
|
- return;
|
|
|
-
|
|
|
- var row = e.getDocumentPosition().row;
|
|
|
- var selection = editor.session.selection;
|
|
|
-
|
|
|
- if (e.getShiftKey())
|
|
|
- selection.selectTo(row, 0);
|
|
|
- else {
|
|
|
- if (e.domEvent.detail == 2) {
|
|
|
- editor.selectAll();
|
|
|
- return e.preventDefault();
|
|
|
- }
|
|
|
- mouseHandler.$clickSelection = editor.selection.getLineRange(row);
|
|
|
- }
|
|
|
- mouseHandler.setState("selectByLines");
|
|
|
- mouseHandler.captureMouse(e);
|
|
|
- return e.preventDefault();
|
|
|
- });
|
|
|
-
|
|
|
-
|
|
|
- var tooltipTimeout, mouseEvent, tooltipAnnotation;
|
|
|
-
|
|
|
- function showTooltip() {
|
|
|
- var row = mouseEvent.getDocumentPosition().row;
|
|
|
- var annotation = gutter.$annotations[row];
|
|
|
- if (!annotation)
|
|
|
- return hideTooltip();
|
|
|
-
|
|
|
- var maxRow = editor.session.getLength();
|
|
|
- if (row == maxRow) {
|
|
|
- var screenRow = editor.renderer.pixelToScreenCoordinates(0, mouseEvent.y).row;
|
|
|
- var pos = mouseEvent.$pos;
|
|
|
- if (screenRow > editor.session.documentToScreenRow(pos.row, pos.column))
|
|
|
- return hideTooltip();
|
|
|
- }
|
|
|
-
|
|
|
- if (tooltipAnnotation == annotation)
|
|
|
- return;
|
|
|
- tooltipAnnotation = annotation.text.join("<br/>");
|
|
|
-
|
|
|
- tooltip.setHtml(tooltipAnnotation);
|
|
|
- tooltip.show();
|
|
|
- editor.on("mousewheel", hideTooltip);
|
|
|
-
|
|
|
- if (mouseHandler.$tooltipFollowsMouse) {
|
|
|
- moveTooltip(mouseEvent);
|
|
|
- } else {
|
|
|
- var gutterElement = gutter.$cells[editor.session.documentToScreenRow(row, 0)].element;
|
|
|
- var rect = gutterElement.getBoundingClientRect();
|
|
|
- var style = tooltip.getElement().style;
|
|
|
- style.left = rect.right + "px";
|
|
|
- style.top = rect.bottom + "px";
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- function hideTooltip() {
|
|
|
- if (tooltipTimeout)
|
|
|
- tooltipTimeout = clearTimeout(tooltipTimeout);
|
|
|
- if (tooltipAnnotation) {
|
|
|
- tooltip.hide();
|
|
|
- tooltipAnnotation = null;
|
|
|
- editor.removeEventListener("mousewheel", hideTooltip);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- function moveTooltip(e) {
|
|
|
- tooltip.setPosition(e.x, e.y);
|
|
|
- }
|
|
|
-
|
|
|
- mouseHandler.editor.setDefaultHandler("guttermousemove", function(e) {
|
|
|
- var target = e.domEvent.target || e.domEvent.srcElement;
|
|
|
- if (dom.hasCssClass(target, "ace_fold-widget"))
|
|
|
- return hideTooltip();
|
|
|
-
|
|
|
- if (tooltipAnnotation && mouseHandler.$tooltipFollowsMouse)
|
|
|
- moveTooltip(e);
|
|
|
-
|
|
|
- mouseEvent = e;
|
|
|
- if (tooltipTimeout)
|
|
|
- return;
|
|
|
- tooltipTimeout = setTimeout(function() {
|
|
|
- tooltipTimeout = null;
|
|
|
- if (mouseEvent && !mouseHandler.isMousePressed)
|
|
|
- showTooltip();
|
|
|
- else
|
|
|
- hideTooltip();
|
|
|
- }, 50);
|
|
|
- });
|
|
|
-
|
|
|
- event.addListener(editor.renderer.$gutter, "mouseout", function(e) {
|
|
|
- mouseEvent = null;
|
|
|
- if (!tooltipAnnotation || tooltipTimeout)
|
|
|
- return;
|
|
|
-
|
|
|
- tooltipTimeout = setTimeout(function() {
|
|
|
- tooltipTimeout = null;
|
|
|
- hideTooltip();
|
|
|
- }, 50);
|
|
|
- });
|
|
|
-
|
|
|
- editor.on("changeSession", hideTooltip);
|
|
|
-}
|
|
|
-
|
|
|
-function GutterTooltip(parentNode) {
|
|
|
- Tooltip.call(this, parentNode);
|
|
|
-}
|
|
|
-
|
|
|
-oop.inherits(GutterTooltip, Tooltip);
|
|
|
-
|
|
|
-(function(){
|
|
|
- this.setPosition = function(x, y) {
|
|
|
- var windowWidth = window.innerWidth || document.documentElement.clientWidth;
|
|
|
- var windowHeight = window.innerHeight || document.documentElement.clientHeight;
|
|
|
- var width = this.getWidth();
|
|
|
- var height = this.getHeight();
|
|
|
- x += 15;
|
|
|
- y += 15;
|
|
|
- if (x + width > windowWidth) {
|
|
|
- x -= (x + width) - windowWidth;
|
|
|
- }
|
|
|
- if (y + height > windowHeight) {
|
|
|
- y -= 20 + height;
|
|
|
- }
|
|
|
- Tooltip.prototype.setPosition.call(this, x, y);
|
|
|
- };
|
|
|
-
|
|
|
-}).call(GutterTooltip.prototype);
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-exports.GutterHandler = GutterHandler;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var event = require("../lib/event");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-var MouseEvent = exports.MouseEvent = function(domEvent, editor) {
|
|
|
- this.domEvent = domEvent;
|
|
|
- this.editor = editor;
|
|
|
-
|
|
|
- this.x = this.clientX = domEvent.clientX;
|
|
|
- this.y = this.clientY = domEvent.clientY;
|
|
|
-
|
|
|
- this.$pos = null;
|
|
|
- this.$inSelection = null;
|
|
|
-
|
|
|
- this.propagationStopped = false;
|
|
|
- this.defaultPrevented = false;
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.stopPropagation = function() {
|
|
|
- event.stopPropagation(this.domEvent);
|
|
|
- this.propagationStopped = true;
|
|
|
- };
|
|
|
-
|
|
|
- this.preventDefault = function() {
|
|
|
- event.preventDefault(this.domEvent);
|
|
|
- this.defaultPrevented = true;
|
|
|
- };
|
|
|
-
|
|
|
- this.stop = function() {
|
|
|
- this.stopPropagation();
|
|
|
- this.preventDefault();
|
|
|
- };
|
|
|
- this.getDocumentPosition = function() {
|
|
|
- if (this.$pos)
|
|
|
- return this.$pos;
|
|
|
-
|
|
|
- this.$pos = this.editor.renderer.screenToTextCoordinates(this.clientX, this.clientY);
|
|
|
- return this.$pos;
|
|
|
- };
|
|
|
- this.inSelection = function() {
|
|
|
- if (this.$inSelection !== null)
|
|
|
- return this.$inSelection;
|
|
|
-
|
|
|
- var editor = this.editor;
|
|
|
-
|
|
|
-
|
|
|
- var selectionRange = editor.getSelectionRange();
|
|
|
- if (selectionRange.isEmpty())
|
|
|
- this.$inSelection = false;
|
|
|
- else {
|
|
|
- var pos = this.getDocumentPosition();
|
|
|
- this.$inSelection = selectionRange.contains(pos.row, pos.column);
|
|
|
- }
|
|
|
-
|
|
|
- return this.$inSelection;
|
|
|
- };
|
|
|
- this.getButton = function() {
|
|
|
- return event.getButton(this.domEvent);
|
|
|
- };
|
|
|
- this.getShiftKey = function() {
|
|
|
- return this.domEvent.shiftKey;
|
|
|
- };
|
|
|
-
|
|
|
- this.getAccelKey = useragent.isMac
|
|
|
- ? function() { return this.domEvent.metaKey; }
|
|
|
- : function() { return this.domEvent.ctrlKey; };
|
|
|
-
|
|
|
-}).call(MouseEvent.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var event = require("../lib/event");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-
|
|
|
-var AUTOSCROLL_DELAY = 200;
|
|
|
-var SCROLL_CURSOR_DELAY = 200;
|
|
|
-var SCROLL_CURSOR_HYSTERESIS = 5;
|
|
|
-
|
|
|
-function DragdropHandler(mouseHandler) {
|
|
|
-
|
|
|
- var editor = mouseHandler.editor;
|
|
|
-
|
|
|
- var blankImage = dom.createElement("img");
|
|
|
- blankImage.src = "data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==";
|
|
|
- if (useragent.isOpera)
|
|
|
- blankImage.style.cssText = "width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;";
|
|
|
-
|
|
|
- var exports = ["dragWait", "dragWaitEnd", "startDrag", "dragReadyEnd", "onMouseDrag"];
|
|
|
-
|
|
|
- exports.forEach(function(x) {
|
|
|
- mouseHandler[x] = this[x];
|
|
|
- }, this);
|
|
|
- editor.addEventListener("mousedown", this.onMouseDown.bind(mouseHandler));
|
|
|
-
|
|
|
-
|
|
|
- var mouseTarget = editor.container;
|
|
|
- var dragSelectionMarker, x, y;
|
|
|
- var timerId, range;
|
|
|
- var dragCursor, counter = 0;
|
|
|
- var dragOperation;
|
|
|
- var isInternal;
|
|
|
- var autoScrollStartTime;
|
|
|
- var cursorMovedTime;
|
|
|
- var cursorPointOnCaretMoved;
|
|
|
-
|
|
|
- this.onDragStart = function(e) {
|
|
|
- if (this.cancelDrag || !mouseTarget.draggable) {
|
|
|
- var self = this;
|
|
|
- setTimeout(function(){
|
|
|
- self.startSelect();
|
|
|
- self.captureMouse(e);
|
|
|
- }, 0);
|
|
|
- return e.preventDefault();
|
|
|
- }
|
|
|
- range = editor.getSelectionRange();
|
|
|
-
|
|
|
- var dataTransfer = e.dataTransfer;
|
|
|
- dataTransfer.effectAllowed = editor.getReadOnly() ? "copy" : "copyMove";
|
|
|
- if (useragent.isOpera) {
|
|
|
- editor.container.appendChild(blankImage);
|
|
|
- blankImage.scrollTop = 0;
|
|
|
- }
|
|
|
- dataTransfer.setDragImage && dataTransfer.setDragImage(blankImage, 0, 0);
|
|
|
- if (useragent.isOpera) {
|
|
|
- editor.container.removeChild(blankImage);
|
|
|
- }
|
|
|
- dataTransfer.clearData();
|
|
|
- dataTransfer.setData("Text", editor.session.getTextRange());
|
|
|
-
|
|
|
- isInternal = true;
|
|
|
- this.setState("drag");
|
|
|
- };
|
|
|
-
|
|
|
- this.onDragEnd = function(e) {
|
|
|
- mouseTarget.draggable = false;
|
|
|
- isInternal = false;
|
|
|
- this.setState(null);
|
|
|
- if (!editor.getReadOnly()) {
|
|
|
- var dropEffect = e.dataTransfer.dropEffect;
|
|
|
- if (!dragOperation && dropEffect == "move")
|
|
|
- editor.session.remove(editor.getSelectionRange());
|
|
|
- editor.renderer.$cursorLayer.setBlinking(true);
|
|
|
- }
|
|
|
- this.editor.unsetStyle("ace_dragging");
|
|
|
- this.editor.renderer.setCursorStyle("");
|
|
|
- };
|
|
|
-
|
|
|
- this.onDragEnter = function(e) {
|
|
|
- if (editor.getReadOnly() || !canAccept(e.dataTransfer))
|
|
|
- return;
|
|
|
- x = e.clientX;
|
|
|
- y = e.clientY;
|
|
|
- if (!dragSelectionMarker)
|
|
|
- addDragMarker();
|
|
|
- counter++;
|
|
|
- e.dataTransfer.dropEffect = dragOperation = getDropEffect(e);
|
|
|
- return event.preventDefault(e);
|
|
|
- };
|
|
|
-
|
|
|
- this.onDragOver = function(e) {
|
|
|
- if (editor.getReadOnly() || !canAccept(e.dataTransfer))
|
|
|
- return;
|
|
|
- x = e.clientX;
|
|
|
- y = e.clientY;
|
|
|
- if (!dragSelectionMarker) {
|
|
|
- addDragMarker();
|
|
|
- counter++;
|
|
|
- }
|
|
|
- if (onMouseMoveTimer !== null)
|
|
|
- onMouseMoveTimer = null;
|
|
|
-
|
|
|
- e.dataTransfer.dropEffect = dragOperation = getDropEffect(e);
|
|
|
- return event.preventDefault(e);
|
|
|
- };
|
|
|
-
|
|
|
- this.onDragLeave = function(e) {
|
|
|
- counter--;
|
|
|
- if (counter <= 0 && dragSelectionMarker) {
|
|
|
- clearDragMarker();
|
|
|
- dragOperation = null;
|
|
|
- return event.preventDefault(e);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.onDrop = function(e) {
|
|
|
- if (!dragCursor)
|
|
|
- return;
|
|
|
- var dataTransfer = e.dataTransfer;
|
|
|
- if (isInternal) {
|
|
|
- switch (dragOperation) {
|
|
|
- case "move":
|
|
|
- if (range.contains(dragCursor.row, dragCursor.column)) {
|
|
|
- range = {
|
|
|
- start: dragCursor,
|
|
|
- end: dragCursor
|
|
|
- };
|
|
|
- } else {
|
|
|
- range = editor.moveText(range, dragCursor);
|
|
|
- }
|
|
|
- break;
|
|
|
- case "copy":
|
|
|
- range = editor.moveText(range, dragCursor, true);
|
|
|
- break;
|
|
|
- }
|
|
|
- } else {
|
|
|
- var dropData = dataTransfer.getData('Text');
|
|
|
- range = {
|
|
|
- start: dragCursor,
|
|
|
- end: editor.session.insert(dragCursor, dropData)
|
|
|
- };
|
|
|
- editor.focus();
|
|
|
- dragOperation = null;
|
|
|
- }
|
|
|
- clearDragMarker();
|
|
|
- return event.preventDefault(e);
|
|
|
- };
|
|
|
-
|
|
|
- event.addListener(mouseTarget, "dragstart", this.onDragStart.bind(mouseHandler));
|
|
|
- event.addListener(mouseTarget, "dragend", this.onDragEnd.bind(mouseHandler));
|
|
|
- event.addListener(mouseTarget, "dragenter", this.onDragEnter.bind(mouseHandler));
|
|
|
- event.addListener(mouseTarget, "dragover", this.onDragOver.bind(mouseHandler));
|
|
|
- event.addListener(mouseTarget, "dragleave", this.onDragLeave.bind(mouseHandler));
|
|
|
- event.addListener(mouseTarget, "drop", this.onDrop.bind(mouseHandler));
|
|
|
-
|
|
|
- function scrollCursorIntoView(cursor, prevCursor) {
|
|
|
- var now = Date.now();
|
|
|
- var vMovement = !prevCursor || cursor.row != prevCursor.row;
|
|
|
- var hMovement = !prevCursor || cursor.column != prevCursor.column;
|
|
|
- if (!cursorMovedTime || vMovement || hMovement) {
|
|
|
- editor.$blockScrolling += 1;
|
|
|
- editor.moveCursorToPosition(cursor);
|
|
|
- editor.$blockScrolling -= 1;
|
|
|
- cursorMovedTime = now;
|
|
|
- cursorPointOnCaretMoved = {x: x, y: y};
|
|
|
- } else {
|
|
|
- var distance = calcDistance(cursorPointOnCaretMoved.x, cursorPointOnCaretMoved.y, x, y);
|
|
|
- if (distance > SCROLL_CURSOR_HYSTERESIS) {
|
|
|
- cursorMovedTime = null;
|
|
|
- } else if (now - cursorMovedTime >= SCROLL_CURSOR_DELAY) {
|
|
|
- editor.renderer.scrollCursorIntoView();
|
|
|
- cursorMovedTime = null;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- function autoScroll(cursor, prevCursor) {
|
|
|
- var now = Date.now();
|
|
|
- var lineHeight = editor.renderer.layerConfig.lineHeight;
|
|
|
- var characterWidth = editor.renderer.layerConfig.characterWidth;
|
|
|
- var editorRect = editor.renderer.scroller.getBoundingClientRect();
|
|
|
- var offsets = {
|
|
|
- x: {
|
|
|
- left: x - editorRect.left,
|
|
|
- right: editorRect.right - x
|
|
|
- },
|
|
|
- y: {
|
|
|
- top: y - editorRect.top,
|
|
|
- bottom: editorRect.bottom - y
|
|
|
- }
|
|
|
- };
|
|
|
- var nearestXOffset = Math.min(offsets.x.left, offsets.x.right);
|
|
|
- var nearestYOffset = Math.min(offsets.y.top, offsets.y.bottom);
|
|
|
- var scrollCursor = {row: cursor.row, column: cursor.column};
|
|
|
- if (nearestXOffset / characterWidth <= 2) {
|
|
|
- scrollCursor.column += (offsets.x.left < offsets.x.right ? -3 : +2);
|
|
|
- }
|
|
|
- if (nearestYOffset / lineHeight <= 1) {
|
|
|
- scrollCursor.row += (offsets.y.top < offsets.y.bottom ? -1 : +1);
|
|
|
- }
|
|
|
- var vScroll = cursor.row != scrollCursor.row;
|
|
|
- var hScroll = cursor.column != scrollCursor.column;
|
|
|
- var vMovement = !prevCursor || cursor.row != prevCursor.row;
|
|
|
- if (vScroll || (hScroll && !vMovement)) {
|
|
|
- if (!autoScrollStartTime)
|
|
|
- autoScrollStartTime = now;
|
|
|
- else if (now - autoScrollStartTime >= AUTOSCROLL_DELAY)
|
|
|
- editor.renderer.scrollCursorIntoView(scrollCursor);
|
|
|
- } else {
|
|
|
- autoScrollStartTime = null;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- function onDragInterval() {
|
|
|
- var prevCursor = dragCursor;
|
|
|
- dragCursor = editor.renderer.screenToTextCoordinates(x, y);
|
|
|
- scrollCursorIntoView(dragCursor, prevCursor);
|
|
|
- autoScroll(dragCursor, prevCursor);
|
|
|
- }
|
|
|
-
|
|
|
- function addDragMarker() {
|
|
|
- range = editor.selection.toOrientedRange();
|
|
|
- dragSelectionMarker = editor.session.addMarker(range, "ace_selection", editor.getSelectionStyle());
|
|
|
- editor.clearSelection();
|
|
|
- if (editor.isFocused())
|
|
|
- editor.renderer.$cursorLayer.setBlinking(false);
|
|
|
- clearInterval(timerId);
|
|
|
- onDragInterval();
|
|
|
- timerId = setInterval(onDragInterval, 20);
|
|
|
- counter = 0;
|
|
|
- event.addListener(document, "mousemove", onMouseMove);
|
|
|
- }
|
|
|
-
|
|
|
- function clearDragMarker() {
|
|
|
- clearInterval(timerId);
|
|
|
- editor.session.removeMarker(dragSelectionMarker);
|
|
|
- dragSelectionMarker = null;
|
|
|
- editor.$blockScrolling += 1;
|
|
|
- editor.selection.fromOrientedRange(range);
|
|
|
- editor.$blockScrolling -= 1;
|
|
|
- if (editor.isFocused() && !isInternal)
|
|
|
- editor.renderer.$cursorLayer.setBlinking(!editor.getReadOnly());
|
|
|
- range = null;
|
|
|
- dragCursor = null;
|
|
|
- counter = 0;
|
|
|
- autoScrollStartTime = null;
|
|
|
- cursorMovedTime = null;
|
|
|
- event.removeListener(document, "mousemove", onMouseMove);
|
|
|
- }
|
|
|
- var onMouseMoveTimer = null;
|
|
|
- function onMouseMove() {
|
|
|
- if (onMouseMoveTimer == null) {
|
|
|
- onMouseMoveTimer = setTimeout(function() {
|
|
|
- if (onMouseMoveTimer != null && dragSelectionMarker)
|
|
|
- clearDragMarker();
|
|
|
- }, 20);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- function canAccept(dataTransfer) {
|
|
|
- var types = dataTransfer.types;
|
|
|
- return !types || Array.prototype.some.call(types, function(type) {
|
|
|
- return type == 'text/plain' || type == 'Text';
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- function getDropEffect(e) {
|
|
|
- var copyAllowed = ['copy', 'copymove', 'all', 'uninitialized'];
|
|
|
- var moveAllowed = ['move', 'copymove', 'linkmove', 'all', 'uninitialized'];
|
|
|
-
|
|
|
- var copyModifierState = useragent.isMac ? e.altKey : e.ctrlKey;
|
|
|
- var effectAllowed = "uninitialized";
|
|
|
- try {
|
|
|
- effectAllowed = e.dataTransfer.effectAllowed.toLowerCase();
|
|
|
- } catch (e) {}
|
|
|
- var dropEffect = "none";
|
|
|
-
|
|
|
- if (copyModifierState && copyAllowed.indexOf(effectAllowed) >= 0)
|
|
|
- dropEffect = "copy";
|
|
|
- else if (moveAllowed.indexOf(effectAllowed) >= 0)
|
|
|
- dropEffect = "move";
|
|
|
- else if (copyAllowed.indexOf(effectAllowed) >= 0)
|
|
|
- dropEffect = "copy";
|
|
|
-
|
|
|
- return dropEffect;
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.dragWait = function() {
|
|
|
- var interval = Date.now() - this.mousedownEvent.time;
|
|
|
- if (interval > this.editor.getDragDelay())
|
|
|
- this.startDrag();
|
|
|
- };
|
|
|
-
|
|
|
- this.dragWaitEnd = function() {
|
|
|
- var target = this.editor.container;
|
|
|
- target.draggable = false;
|
|
|
- this.startSelect(this.mousedownEvent.getDocumentPosition());
|
|
|
- this.selectEnd();
|
|
|
- };
|
|
|
-
|
|
|
- this.dragReadyEnd = function(e) {
|
|
|
- this.editor.renderer.$cursorLayer.setBlinking(!this.editor.getReadOnly());
|
|
|
- this.editor.unsetStyle("ace_dragging");
|
|
|
- this.editor.renderer.setCursorStyle("");
|
|
|
- this.dragWaitEnd();
|
|
|
- };
|
|
|
-
|
|
|
- this.startDrag = function(){
|
|
|
- this.cancelDrag = false;
|
|
|
- var editor = this.editor;
|
|
|
- var target = editor.container;
|
|
|
- target.draggable = true;
|
|
|
- editor.renderer.$cursorLayer.setBlinking(false);
|
|
|
- editor.setStyle("ace_dragging");
|
|
|
- var cursorStyle = useragent.isWin ? "default" : "move";
|
|
|
- editor.renderer.setCursorStyle(cursorStyle);
|
|
|
- this.setState("dragReady");
|
|
|
- };
|
|
|
-
|
|
|
- this.onMouseDrag = function(e) {
|
|
|
- var target = this.editor.container;
|
|
|
- if (useragent.isIE && this.state == "dragReady") {
|
|
|
- var distance = calcDistance(this.mousedownEvent.x, this.mousedownEvent.y, this.x, this.y);
|
|
|
- if (distance > 3)
|
|
|
- target.dragDrop();
|
|
|
- }
|
|
|
- if (this.state === "dragWait") {
|
|
|
- var distance = calcDistance(this.mousedownEvent.x, this.mousedownEvent.y, this.x, this.y);
|
|
|
- if (distance > 0) {
|
|
|
- target.draggable = false;
|
|
|
- this.startSelect(this.mousedownEvent.getDocumentPosition());
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.onMouseDown = function(e) {
|
|
|
- if (!this.$dragEnabled)
|
|
|
- return;
|
|
|
- this.mousedownEvent = e;
|
|
|
- var editor = this.editor;
|
|
|
-
|
|
|
- var inSelection = e.inSelection();
|
|
|
- var button = e.getButton();
|
|
|
- var clickCount = e.domEvent.detail || 1;
|
|
|
- if (clickCount === 1 && button === 0 && inSelection) {
|
|
|
- if (e.editor.inMultiSelectMode && (e.getAccelKey() || e.getShiftKey()))
|
|
|
- return;
|
|
|
- this.mousedownEvent.time = Date.now();
|
|
|
- var eventTarget = e.domEvent.target || e.domEvent.srcElement;
|
|
|
- if ("unselectable" in eventTarget)
|
|
|
- eventTarget.unselectable = "on";
|
|
|
- if (editor.getDragDelay()) {
|
|
|
- if (useragent.isWebKit) {
|
|
|
- this.cancelDrag = true;
|
|
|
- var mouseTarget = editor.container;
|
|
|
- mouseTarget.draggable = true;
|
|
|
- }
|
|
|
- this.setState("dragWait");
|
|
|
- } else {
|
|
|
- this.startDrag();
|
|
|
- }
|
|
|
- this.captureMouse(e, this.onMouseDrag.bind(this));
|
|
|
- e.defaultPrevented = true;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(DragdropHandler.prototype);
|
|
|
-
|
|
|
-
|
|
|
-function calcDistance(ax, ay, bx, by) {
|
|
|
- return Math.sqrt(Math.pow(bx - ax, 2) + Math.pow(by - ay, 2));
|
|
|
-}
|
|
|
-
|
|
|
-exports.DragdropHandler = DragdropHandler;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/net",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-var dom = require("./dom");
|
|
|
-
|
|
|
-exports.get = function (url, callback) {
|
|
|
- var xhr = new XMLHttpRequest();
|
|
|
- xhr.open('GET', url, true);
|
|
|
- xhr.onreadystatechange = function () {
|
|
|
- if (xhr.readyState === 4) {
|
|
|
- callback(xhr.responseText);
|
|
|
- }
|
|
|
- };
|
|
|
- xhr.send(null);
|
|
|
-};
|
|
|
-
|
|
|
-exports.loadScript = function(path, callback) {
|
|
|
- var head = dom.getDocumentHead();
|
|
|
- var s = document.createElement('script');
|
|
|
-
|
|
|
- s.src = path;
|
|
|
- head.appendChild(s);
|
|
|
-
|
|
|
- s.onload = s.onreadystatechange = function(_, isAbort) {
|
|
|
- if (isAbort || !s.readyState || s.readyState == "loaded" || s.readyState == "complete") {
|
|
|
- s = s.onload = s.onreadystatechange = null;
|
|
|
- if (!isAbort)
|
|
|
- callback();
|
|
|
- }
|
|
|
- };
|
|
|
-};
|
|
|
-exports.qualifyURL = function(url) {
|
|
|
- var a = document.createElement('a');
|
|
|
- a.href = url;
|
|
|
- return a.href;
|
|
|
-}
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/event_emitter",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var EventEmitter = {};
|
|
|
-var stopPropagation = function() { this.propagationStopped = true; };
|
|
|
-var preventDefault = function() { this.defaultPrevented = true; };
|
|
|
-
|
|
|
-EventEmitter._emit =
|
|
|
-EventEmitter._dispatchEvent = function(eventName, e) {
|
|
|
- this._eventRegistry || (this._eventRegistry = {});
|
|
|
- this._defaultHandlers || (this._defaultHandlers = {});
|
|
|
-
|
|
|
- var listeners = this._eventRegistry[eventName] || [];
|
|
|
- var defaultHandler = this._defaultHandlers[eventName];
|
|
|
- if (!listeners.length && !defaultHandler)
|
|
|
- return;
|
|
|
-
|
|
|
- if (typeof e != "object" || !e)
|
|
|
- e = {};
|
|
|
-
|
|
|
- if (!e.type)
|
|
|
- e.type = eventName;
|
|
|
- if (!e.stopPropagation)
|
|
|
- e.stopPropagation = stopPropagation;
|
|
|
- if (!e.preventDefault)
|
|
|
- e.preventDefault = preventDefault;
|
|
|
-
|
|
|
- listeners = listeners.slice();
|
|
|
- for (var i=0; i<listeners.length; i++) {
|
|
|
- listeners[i](e, this);
|
|
|
- if (e.propagationStopped)
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if (defaultHandler && !e.defaultPrevented)
|
|
|
- return defaultHandler(e, this);
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-EventEmitter._signal = function(eventName, e) {
|
|
|
- var listeners = (this._eventRegistry || {})[eventName];
|
|
|
- if (!listeners)
|
|
|
- return;
|
|
|
- listeners = listeners.slice();
|
|
|
- for (var i=0; i<listeners.length; i++)
|
|
|
- listeners[i](e, this);
|
|
|
-};
|
|
|
-
|
|
|
-EventEmitter.once = function(eventName, callback) {
|
|
|
- var _self = this;
|
|
|
- callback && this.addEventListener(eventName, function newCallback() {
|
|
|
- _self.removeEventListener(eventName, newCallback);
|
|
|
- callback.apply(null, arguments);
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-EventEmitter.setDefaultHandler = function(eventName, callback) {
|
|
|
- var handlers = this._defaultHandlers
|
|
|
- if (!handlers)
|
|
|
- handlers = this._defaultHandlers = {_disabled_: {}};
|
|
|
-
|
|
|
- if (handlers[eventName]) {
|
|
|
- var old = handlers[eventName];
|
|
|
- var disabled = handlers._disabled_[eventName];
|
|
|
- if (!disabled)
|
|
|
- handlers._disabled_[eventName] = disabled = [];
|
|
|
- disabled.push(old);
|
|
|
- var i = disabled.indexOf(callback);
|
|
|
- if (i != -1)
|
|
|
- disabled.splice(i, 1);
|
|
|
- }
|
|
|
- handlers[eventName] = callback;
|
|
|
-};
|
|
|
-EventEmitter.removeDefaultHandler = function(eventName, callback) {
|
|
|
- var handlers = this._defaultHandlers
|
|
|
- if (!handlers)
|
|
|
- return;
|
|
|
- var disabled = handlers._disabled_[eventName];
|
|
|
-
|
|
|
- if (handlers[eventName] == callback) {
|
|
|
- var old = handlers[eventName];
|
|
|
- if (disabled)
|
|
|
- this.setDefaultHandler(eventName, disabled.pop());
|
|
|
- } else if (disabled) {
|
|
|
- var i = disabled.indexOf(callback);
|
|
|
- if (i != -1)
|
|
|
- disabled.splice(i, 1);
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-EventEmitter.on =
|
|
|
-EventEmitter.addEventListener = function(eventName, callback, capturing) {
|
|
|
- this._eventRegistry = this._eventRegistry || {};
|
|
|
-
|
|
|
- var listeners = this._eventRegistry[eventName];
|
|
|
- if (!listeners)
|
|
|
- listeners = this._eventRegistry[eventName] = [];
|
|
|
-
|
|
|
- if (listeners.indexOf(callback) == -1)
|
|
|
- listeners[capturing ? "unshift" : "push"](callback);
|
|
|
- return callback;
|
|
|
-};
|
|
|
-
|
|
|
-EventEmitter.off =
|
|
|
-EventEmitter.removeListener =
|
|
|
-EventEmitter.removeEventListener = function(eventName, callback) {
|
|
|
- this._eventRegistry = this._eventRegistry || {};
|
|
|
-
|
|
|
- var listeners = this._eventRegistry[eventName];
|
|
|
- if (!listeners)
|
|
|
- return;
|
|
|
-
|
|
|
- var index = listeners.indexOf(callback);
|
|
|
- if (index !== -1)
|
|
|
- listeners.splice(index, 1);
|
|
|
-};
|
|
|
-
|
|
|
-EventEmitter.removeAllListeners = function(eventName) {
|
|
|
- if (this._eventRegistry) this._eventRegistry[eventName] = [];
|
|
|
-};
|
|
|
-
|
|
|
-exports.EventEmitter = EventEmitter;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/lib/app_config",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"no use strict";
|
|
|
-
|
|
|
-var oop = require("./oop");
|
|
|
-var EventEmitter = require("./event_emitter").EventEmitter;
|
|
|
-
|
|
|
-var optionsProvider = {
|
|
|
- setOptions: function(optList) {
|
|
|
- Object.keys(optList).forEach(function(key) {
|
|
|
- this.setOption(key, optList[key]);
|
|
|
- }, this);
|
|
|
- },
|
|
|
- getOptions: function(optionNames) {
|
|
|
- var result = {};
|
|
|
- if (!optionNames) {
|
|
|
- optionNames = Object.keys(this.$options);
|
|
|
- } else if (!Array.isArray(optionNames)) {
|
|
|
- result = optionNames;
|
|
|
- optionNames = Object.keys(result);
|
|
|
- }
|
|
|
- optionNames.forEach(function(key) {
|
|
|
- result[key] = this.getOption(key);
|
|
|
- }, this);
|
|
|
- return result;
|
|
|
- },
|
|
|
- setOption: function(name, value) {
|
|
|
- if (this["$" + name] === value)
|
|
|
- return;
|
|
|
- var opt = this.$options[name];
|
|
|
- if (!opt) {
|
|
|
- return warn('misspelled option "' + name + '"');
|
|
|
- }
|
|
|
- if (opt.forwardTo)
|
|
|
- return this[opt.forwardTo] && this[opt.forwardTo].setOption(name, value);
|
|
|
-
|
|
|
- if (!opt.handlesSet)
|
|
|
- this["$" + name] = value;
|
|
|
- if (opt && opt.set)
|
|
|
- opt.set.call(this, value);
|
|
|
- },
|
|
|
- getOption: function(name) {
|
|
|
- var opt = this.$options[name];
|
|
|
- if (!opt) {
|
|
|
- return warn('misspelled option "' + name + '"');
|
|
|
- }
|
|
|
- if (opt.forwardTo)
|
|
|
- return this[opt.forwardTo] && this[opt.forwardTo].getOption(name);
|
|
|
- return opt && opt.get ? opt.get.call(this) : this["$" + name];
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-function warn(message) {
|
|
|
- if (typeof console != "undefined" && console.warn)
|
|
|
- console.warn.apply(console, arguments);
|
|
|
-}
|
|
|
-
|
|
|
-function reportError(msg, data) {
|
|
|
- var e = new Error(msg);
|
|
|
- e.data = data;
|
|
|
- if (typeof console == "object" && console.error)
|
|
|
- console.error(e);
|
|
|
- setTimeout(function() { throw e; });
|
|
|
-}
|
|
|
-
|
|
|
-var AppConfig = function() {
|
|
|
- this.$defaultOptions = {};
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
- this.defineOptions = function(obj, path, options) {
|
|
|
- if (!obj.$options)
|
|
|
- this.$defaultOptions[path] = obj.$options = {};
|
|
|
-
|
|
|
- Object.keys(options).forEach(function(key) {
|
|
|
- var opt = options[key];
|
|
|
- if (typeof opt == "string")
|
|
|
- opt = {forwardTo: opt};
|
|
|
-
|
|
|
- opt.name || (opt.name = key);
|
|
|
- obj.$options[opt.name] = opt;
|
|
|
- if ("initialValue" in opt)
|
|
|
- obj["$" + opt.name] = opt.initialValue;
|
|
|
- });
|
|
|
- oop.implement(obj, optionsProvider);
|
|
|
-
|
|
|
- return this;
|
|
|
- };
|
|
|
-
|
|
|
- this.resetOptions = function(obj) {
|
|
|
- Object.keys(obj.$options).forEach(function(key) {
|
|
|
- var opt = obj.$options[key];
|
|
|
- if ("value" in opt)
|
|
|
- obj.setOption(key, opt.value);
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- this.setDefaultValue = function(path, name, value) {
|
|
|
- var opts = this.$defaultOptions[path] || (this.$defaultOptions[path] = {});
|
|
|
- if (opts[name]) {
|
|
|
- if (opts.forwardTo)
|
|
|
- this.setDefaultValue(opts.forwardTo, name, value);
|
|
|
- else
|
|
|
- opts[name].value = value;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.setDefaultValues = function(path, optionHash) {
|
|
|
- Object.keys(optionHash).forEach(function(key) {
|
|
|
- this.setDefaultValue(path, key, optionHash[key]);
|
|
|
- }, this);
|
|
|
- };
|
|
|
-
|
|
|
- this.warn = warn;
|
|
|
- this.reportError = reportError;
|
|
|
-
|
|
|
-}).call(AppConfig.prototype);
|
|
|
-
|
|
|
-exports.AppConfig = AppConfig;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/config",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/lib/net","ace/lib/app_config"], function(require, exports, module) {
|
|
|
-"no use strict";
|
|
|
-
|
|
|
-var lang = require("./lib/lang");
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var net = require("./lib/net");
|
|
|
-var AppConfig = require("./lib/app_config").AppConfig;
|
|
|
-
|
|
|
-module.exports = exports = new AppConfig();
|
|
|
-
|
|
|
-var global = (function() {
|
|
|
- return this || typeof window != "undefined" && window;
|
|
|
-})();
|
|
|
-
|
|
|
-var options = {
|
|
|
- packaged: false,
|
|
|
- workerPath: null,
|
|
|
- modePath: null,
|
|
|
- themePath: null,
|
|
|
- basePath: "",
|
|
|
- suffix: ".js",
|
|
|
- $moduleUrls: {}
|
|
|
-};
|
|
|
-
|
|
|
-exports.get = function(key) {
|
|
|
- if (!options.hasOwnProperty(key))
|
|
|
- throw new Error("Unknown config key: " + key);
|
|
|
-
|
|
|
- return options[key];
|
|
|
-};
|
|
|
-
|
|
|
-exports.set = function(key, value) {
|
|
|
- if (!options.hasOwnProperty(key))
|
|
|
- throw new Error("Unknown config key: " + key);
|
|
|
-
|
|
|
- options[key] = value;
|
|
|
-};
|
|
|
-
|
|
|
-exports.all = function() {
|
|
|
- return lang.copyObject(options);
|
|
|
-};
|
|
|
-exports.moduleUrl = function(name, component) {
|
|
|
- if (options.$moduleUrls[name])
|
|
|
- return options.$moduleUrls[name];
|
|
|
-
|
|
|
- var parts = name.split("/");
|
|
|
- component = component || parts[parts.length - 2] || "";
|
|
|
- var sep = component == "snippets" ? "/" : "-";
|
|
|
- var base = parts[parts.length - 1];
|
|
|
- if (component == "worker" && sep == "-") {
|
|
|
- var re = new RegExp("^" + component + "[\\-_]|[\\-_]" + component + "$", "g");
|
|
|
- base = base.replace(re, "");
|
|
|
- }
|
|
|
-
|
|
|
- if ((!base || base == component) && parts.length > 1)
|
|
|
- base = parts[parts.length - 2];
|
|
|
- var path = options[component + "Path"];
|
|
|
- if (path == null) {
|
|
|
- path = options.basePath;
|
|
|
- } else if (sep == "/") {
|
|
|
- component = sep = "";
|
|
|
- }
|
|
|
- if (path && path.slice(-1) != "/")
|
|
|
- path += "/";
|
|
|
- return path + component + sep + base + this.get("suffix");
|
|
|
-};
|
|
|
-
|
|
|
-exports.setModuleUrl = function(name, subst) {
|
|
|
- return options.$moduleUrls[name] = subst;
|
|
|
-};
|
|
|
-
|
|
|
-exports.$loading = {};
|
|
|
-exports.loadModule = function(moduleName, onLoad) {
|
|
|
- var module, moduleType;
|
|
|
- if (Array.isArray(moduleName)) {
|
|
|
- moduleType = moduleName[0];
|
|
|
- moduleName = moduleName[1];
|
|
|
- }
|
|
|
-
|
|
|
- try {
|
|
|
- module = require(moduleName);
|
|
|
- } catch (e) {}
|
|
|
- if (module && !exports.$loading[moduleName])
|
|
|
- return onLoad && onLoad(module);
|
|
|
-
|
|
|
- if (!exports.$loading[moduleName])
|
|
|
- exports.$loading[moduleName] = [];
|
|
|
-
|
|
|
- exports.$loading[moduleName].push(onLoad);
|
|
|
-
|
|
|
- if (exports.$loading[moduleName].length > 1)
|
|
|
- return;
|
|
|
-
|
|
|
- var afterLoad = function() {
|
|
|
- require([moduleName], function(module) {
|
|
|
- exports._emit("load.module", {name: moduleName, module: module});
|
|
|
- var listeners = exports.$loading[moduleName];
|
|
|
- exports.$loading[moduleName] = null;
|
|
|
- listeners.forEach(function(onLoad) {
|
|
|
- onLoad && onLoad(module);
|
|
|
- });
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- if (!exports.get("packaged"))
|
|
|
- return afterLoad();
|
|
|
- net.loadScript(exports.moduleUrl(moduleName, moduleType), afterLoad);
|
|
|
-};
|
|
|
-init(true);function init(packaged) {
|
|
|
-
|
|
|
- options.packaged = packaged || require.packaged || module.packaged || (global.define && define.packaged);
|
|
|
-
|
|
|
- if (!global.document)
|
|
|
- return "";
|
|
|
-
|
|
|
- var scriptOptions = {};
|
|
|
- var scriptUrl = "";
|
|
|
- var currentScript = (document.currentScript || document._currentScript ); // native or polyfill
|
|
|
- var currentDocument = currentScript && currentScript.ownerDocument || document;
|
|
|
-
|
|
|
- var scripts = currentDocument.getElementsByTagName("script");
|
|
|
- for (var i=0; i<scripts.length; i++) {
|
|
|
- var script = scripts[i];
|
|
|
-
|
|
|
- var src = script.src || script.getAttribute("src");
|
|
|
- if (!src)
|
|
|
- continue;
|
|
|
-
|
|
|
- var attributes = script.attributes;
|
|
|
- for (var j=0, l=attributes.length; j < l; j++) {
|
|
|
- var attr = attributes[j];
|
|
|
- if (attr.name.indexOf("data-ace-") === 0) {
|
|
|
- scriptOptions[deHyphenate(attr.name.replace(/^data-ace-/, ""))] = attr.value;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- var m = src.match(/^(.*)\/ace(\-\w+)?\.js(\?|$)/);
|
|
|
- if (m)
|
|
|
- scriptUrl = m[1];
|
|
|
- }
|
|
|
-
|
|
|
- if (scriptUrl) {
|
|
|
- scriptOptions.base = scriptOptions.base || scriptUrl;
|
|
|
- scriptOptions.packaged = true;
|
|
|
- }
|
|
|
-
|
|
|
- scriptOptions.basePath = scriptOptions.base;
|
|
|
- scriptOptions.workerPath = scriptOptions.workerPath || scriptOptions.base;
|
|
|
- scriptOptions.modePath = scriptOptions.modePath || scriptOptions.base;
|
|
|
- scriptOptions.themePath = scriptOptions.themePath || scriptOptions.base;
|
|
|
- delete scriptOptions.base;
|
|
|
-
|
|
|
- for (var key in scriptOptions)
|
|
|
- if (typeof scriptOptions[key] !== "undefined")
|
|
|
- exports.set(key, scriptOptions[key]);
|
|
|
-};
|
|
|
-
|
|
|
-exports.init = init;
|
|
|
-
|
|
|
-function deHyphenate(str) {
|
|
|
- return str.replace(/-(.)/g, function(m, m1) { return m1.toUpperCase(); });
|
|
|
-}
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/config"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var event = require("../lib/event");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-var DefaultHandlers = require("./default_handlers").DefaultHandlers;
|
|
|
-var DefaultGutterHandler = require("./default_gutter_handler").GutterHandler;
|
|
|
-var MouseEvent = require("./mouse_event").MouseEvent;
|
|
|
-var DragdropHandler = require("./dragdrop_handler").DragdropHandler;
|
|
|
-var config = require("../config");
|
|
|
-
|
|
|
-var MouseHandler = function(editor) {
|
|
|
- var _self = this;
|
|
|
- this.editor = editor;
|
|
|
-
|
|
|
- new DefaultHandlers(this);
|
|
|
- new DefaultGutterHandler(this);
|
|
|
- new DragdropHandler(this);
|
|
|
-
|
|
|
- var focusEditor = function(e) {
|
|
|
- if (!document.hasFocus || !document.hasFocus())
|
|
|
- window.focus();
|
|
|
- editor.focus();
|
|
|
- };
|
|
|
-
|
|
|
- var mouseTarget = editor.renderer.getMouseEventTarget();
|
|
|
- event.addListener(mouseTarget, "click", this.onMouseEvent.bind(this, "click"));
|
|
|
- event.addListener(mouseTarget, "mousemove", this.onMouseMove.bind(this, "mousemove"));
|
|
|
- event.addMultiMouseDownListener(mouseTarget, [400, 300, 250], this, "onMouseEvent");
|
|
|
- if (editor.renderer.scrollBarV) {
|
|
|
- event.addMultiMouseDownListener(editor.renderer.scrollBarV.inner, [400, 300, 250], this, "onMouseEvent");
|
|
|
- event.addMultiMouseDownListener(editor.renderer.scrollBarH.inner, [400, 300, 250], this, "onMouseEvent");
|
|
|
- if (useragent.isIE) {
|
|
|
- event.addListener(editor.renderer.scrollBarV.element, "mousedown", focusEditor);
|
|
|
- event.addListener(editor.renderer.scrollBarH.element, "mousedown", focusEditor);
|
|
|
- }
|
|
|
- }
|
|
|
- event.addMouseWheelListener(editor.container, this.onMouseWheel.bind(this, "mousewheel"));
|
|
|
- event.addTouchMoveListener(editor.container, this.onTouchMove.bind(this, "touchmove"));
|
|
|
-
|
|
|
- var gutterEl = editor.renderer.$gutter;
|
|
|
- event.addListener(gutterEl, "mousedown", this.onMouseEvent.bind(this, "guttermousedown"));
|
|
|
- event.addListener(gutterEl, "click", this.onMouseEvent.bind(this, "gutterclick"));
|
|
|
- event.addListener(gutterEl, "dblclick", this.onMouseEvent.bind(this, "gutterdblclick"));
|
|
|
- event.addListener(gutterEl, "mousemove", this.onMouseEvent.bind(this, "guttermousemove"));
|
|
|
-
|
|
|
- event.addListener(mouseTarget, "mousedown", focusEditor);
|
|
|
-
|
|
|
- event.addListener(gutterEl, "mousedown", function(e) {
|
|
|
- editor.focus();
|
|
|
- return event.preventDefault(e);
|
|
|
- });
|
|
|
-
|
|
|
- editor.on("mousemove", function(e){
|
|
|
- if (_self.state || _self.$dragDelay || !_self.$dragEnabled)
|
|
|
- return;
|
|
|
-
|
|
|
- var character = editor.renderer.screenToTextCoordinates(e.x, e.y);
|
|
|
- var range = editor.session.selection.getRange();
|
|
|
- var renderer = editor.renderer;
|
|
|
-
|
|
|
- if (!range.isEmpty() && range.insideStart(character.row, character.column)) {
|
|
|
- renderer.setCursorStyle("default");
|
|
|
- } else {
|
|
|
- renderer.setCursorStyle("");
|
|
|
- }
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.onMouseEvent = function(name, e) {
|
|
|
- this.editor._emit(name, new MouseEvent(e, this.editor));
|
|
|
- };
|
|
|
-
|
|
|
- this.onMouseMove = function(name, e) {
|
|
|
- var listeners = this.editor._eventRegistry && this.editor._eventRegistry.mousemove;
|
|
|
- if (!listeners || !listeners.length)
|
|
|
- return;
|
|
|
-
|
|
|
- this.editor._emit(name, new MouseEvent(e, this.editor));
|
|
|
- };
|
|
|
-
|
|
|
- this.onMouseWheel = function(name, e) {
|
|
|
- var mouseEvent = new MouseEvent(e, this.editor);
|
|
|
- mouseEvent.speed = this.$scrollSpeed * 2;
|
|
|
- mouseEvent.wheelX = e.wheelX;
|
|
|
- mouseEvent.wheelY = e.wheelY;
|
|
|
-
|
|
|
- this.editor._emit(name, mouseEvent);
|
|
|
- };
|
|
|
-
|
|
|
- this.onTouchMove = function (name, e) {
|
|
|
- var mouseEvent = new MouseEvent(e, this.editor);
|
|
|
- mouseEvent.speed = 1;//this.$scrollSpeed * 2;
|
|
|
- mouseEvent.wheelX = e.wheelX;
|
|
|
- mouseEvent.wheelY = e.wheelY;
|
|
|
- this.editor._emit(name, mouseEvent);
|
|
|
- };
|
|
|
-
|
|
|
- this.setState = function(state) {
|
|
|
- this.state = state;
|
|
|
- };
|
|
|
-
|
|
|
- this.captureMouse = function(ev, mouseMoveHandler) {
|
|
|
- this.x = ev.x;
|
|
|
- this.y = ev.y;
|
|
|
-
|
|
|
- this.isMousePressed = true;
|
|
|
- var renderer = this.editor.renderer;
|
|
|
- if (renderer.$keepTextAreaAtCursor)
|
|
|
- renderer.$keepTextAreaAtCursor = null;
|
|
|
-
|
|
|
- var self = this;
|
|
|
- var onMouseMove = function(e) {
|
|
|
- if (!e) return;
|
|
|
- if (useragent.isWebKit && !e.which && self.releaseMouse)
|
|
|
- return self.releaseMouse();
|
|
|
-
|
|
|
- self.x = e.clientX;
|
|
|
- self.y = e.clientY;
|
|
|
- mouseMoveHandler && mouseMoveHandler(e);
|
|
|
- self.mouseEvent = new MouseEvent(e, self.editor);
|
|
|
- self.$mouseMoved = true;
|
|
|
- };
|
|
|
-
|
|
|
- var onCaptureEnd = function(e) {
|
|
|
- clearInterval(timerId);
|
|
|
- onCaptureInterval();
|
|
|
- self[self.state + "End"] && self[self.state + "End"](e);
|
|
|
- self.state = "";
|
|
|
- if (renderer.$keepTextAreaAtCursor == null) {
|
|
|
- renderer.$keepTextAreaAtCursor = true;
|
|
|
- renderer.$moveTextAreaToCursor();
|
|
|
- }
|
|
|
- self.isMousePressed = false;
|
|
|
- self.$onCaptureMouseMove = self.releaseMouse = null;
|
|
|
- e && self.onMouseEvent("mouseup", e);
|
|
|
- };
|
|
|
-
|
|
|
- var onCaptureInterval = function() {
|
|
|
- self[self.state] && self[self.state]();
|
|
|
- self.$mouseMoved = false;
|
|
|
- };
|
|
|
-
|
|
|
- if (useragent.isOldIE && ev.domEvent.type == "dblclick") {
|
|
|
- return setTimeout(function() {onCaptureEnd(ev);});
|
|
|
- }
|
|
|
-
|
|
|
- self.$onCaptureMouseMove = onMouseMove;
|
|
|
- self.releaseMouse = event.capture(this.editor.container, onMouseMove, onCaptureEnd);
|
|
|
- var timerId = setInterval(onCaptureInterval, 20);
|
|
|
- };
|
|
|
- this.releaseMouse = null;
|
|
|
- this.cancelContextMenu = function() {
|
|
|
- var stop = function(e) {
|
|
|
- if (e && e.domEvent && e.domEvent.type != "contextmenu")
|
|
|
- return;
|
|
|
- this.editor.off("nativecontextmenu", stop);
|
|
|
- if (e && e.domEvent)
|
|
|
- event.stopEvent(e.domEvent);
|
|
|
- }.bind(this);
|
|
|
- setTimeout(stop, 10);
|
|
|
- this.editor.on("nativecontextmenu", stop);
|
|
|
- };
|
|
|
-}).call(MouseHandler.prototype);
|
|
|
-
|
|
|
-config.defineOptions(MouseHandler.prototype, "mouseHandler", {
|
|
|
- scrollSpeed: {initialValue: 2},
|
|
|
- dragDelay: {initialValue: (useragent.isMac ? 150 : 0)},
|
|
|
- dragEnabled: {initialValue: true},
|
|
|
- focusTimout: {initialValue: 0},
|
|
|
- tooltipFollowsMouse: {initialValue: true}
|
|
|
-});
|
|
|
-
|
|
|
-
|
|
|
-exports.MouseHandler = MouseHandler;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mouse/fold_handler",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-function FoldHandler(editor) {
|
|
|
-
|
|
|
- editor.on("click", function(e) {
|
|
|
- var position = e.getDocumentPosition();
|
|
|
- var session = editor.session;
|
|
|
- var fold = session.getFoldAt(position.row, position.column, 1);
|
|
|
- if (fold) {
|
|
|
- if (e.getAccelKey())
|
|
|
- session.removeFold(fold);
|
|
|
- else
|
|
|
- session.expandFold(fold);
|
|
|
-
|
|
|
- e.stop();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- editor.on("gutterclick", function(e) {
|
|
|
- var gutterRegion = editor.renderer.$gutterLayer.getRegion(e);
|
|
|
-
|
|
|
- if (gutterRegion == "foldWidgets") {
|
|
|
- var row = e.getDocumentPosition().row;
|
|
|
- var session = editor.session;
|
|
|
- if (session.foldWidgets && session.foldWidgets[row])
|
|
|
- editor.session.onFoldWidgetClick(row, e);
|
|
|
- if (!editor.isFocused())
|
|
|
- editor.focus();
|
|
|
- e.stop();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- editor.on("gutterdblclick", function(e) {
|
|
|
- var gutterRegion = editor.renderer.$gutterLayer.getRegion(e);
|
|
|
-
|
|
|
- if (gutterRegion == "foldWidgets") {
|
|
|
- var row = e.getDocumentPosition().row;
|
|
|
- var session = editor.session;
|
|
|
- var data = session.getParentFoldRangeData(row, true);
|
|
|
- var range = data.range || data.firstRange;
|
|
|
-
|
|
|
- if (range) {
|
|
|
- row = range.start.row;
|
|
|
- var fold = session.getFoldAt(row, session.getLine(row).length, 1);
|
|
|
-
|
|
|
- if (fold) {
|
|
|
- session.removeFold(fold);
|
|
|
- } else {
|
|
|
- session.addFold("...", range);
|
|
|
- editor.renderer.scrollCursorIntoView({row: range.start.row, column: 0});
|
|
|
- }
|
|
|
- }
|
|
|
- e.stop();
|
|
|
- }
|
|
|
- });
|
|
|
-}
|
|
|
-
|
|
|
-exports.FoldHandler = FoldHandler;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var keyUtil = require("../lib/keys");
|
|
|
-var event = require("../lib/event");
|
|
|
-
|
|
|
-var KeyBinding = function(editor) {
|
|
|
- this.$editor = editor;
|
|
|
- this.$data = {editor: editor};
|
|
|
- this.$handlers = [];
|
|
|
- this.setDefaultHandler(editor.commands);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.setDefaultHandler = function(kb) {
|
|
|
- this.removeKeyboardHandler(this.$defaultHandler);
|
|
|
- this.$defaultHandler = kb;
|
|
|
- this.addKeyboardHandler(kb, 0);
|
|
|
- };
|
|
|
-
|
|
|
- this.setKeyboardHandler = function(kb) {
|
|
|
- var h = this.$handlers;
|
|
|
- if (h[h.length - 1] == kb)
|
|
|
- return;
|
|
|
-
|
|
|
- while (h[h.length - 1] && h[h.length - 1] != this.$defaultHandler)
|
|
|
- this.removeKeyboardHandler(h[h.length - 1]);
|
|
|
-
|
|
|
- this.addKeyboardHandler(kb, 1);
|
|
|
- };
|
|
|
-
|
|
|
- this.addKeyboardHandler = function(kb, pos) {
|
|
|
- if (!kb)
|
|
|
- return;
|
|
|
- if (typeof kb == "function" && !kb.handleKeyboard)
|
|
|
- kb.handleKeyboard = kb;
|
|
|
- var i = this.$handlers.indexOf(kb);
|
|
|
- if (i != -1)
|
|
|
- this.$handlers.splice(i, 1);
|
|
|
-
|
|
|
- if (pos == undefined)
|
|
|
- this.$handlers.push(kb);
|
|
|
- else
|
|
|
- this.$handlers.splice(pos, 0, kb);
|
|
|
-
|
|
|
- if (i == -1 && kb.attach)
|
|
|
- kb.attach(this.$editor);
|
|
|
- };
|
|
|
-
|
|
|
- this.removeKeyboardHandler = function(kb) {
|
|
|
- var i = this.$handlers.indexOf(kb);
|
|
|
- if (i == -1)
|
|
|
- return false;
|
|
|
- this.$handlers.splice(i, 1);
|
|
|
- kb.detach && kb.detach(this.$editor);
|
|
|
- return true;
|
|
|
- };
|
|
|
-
|
|
|
- this.getKeyboardHandler = function() {
|
|
|
- return this.$handlers[this.$handlers.length - 1];
|
|
|
- };
|
|
|
-
|
|
|
- this.getStatusText = function() {
|
|
|
- var data = this.$data;
|
|
|
- var editor = data.editor;
|
|
|
- return this.$handlers.map(function(h) {
|
|
|
- return h.getStatusText && h.getStatusText(editor, data) || "";
|
|
|
- }).filter(Boolean).join(" ");
|
|
|
- };
|
|
|
-
|
|
|
- this.$callKeyboardHandlers = function(hashId, keyString, keyCode, e) {
|
|
|
- var toExecute;
|
|
|
- var success = false;
|
|
|
- var commands = this.$editor.commands;
|
|
|
-
|
|
|
- for (var i = this.$handlers.length; i--;) {
|
|
|
- toExecute = this.$handlers[i].handleKeyboard(
|
|
|
- this.$data, hashId, keyString, keyCode, e
|
|
|
- );
|
|
|
- if (!toExecute || !toExecute.command)
|
|
|
- continue;
|
|
|
- if (toExecute.command == "null") {
|
|
|
- success = true;
|
|
|
- } else {
|
|
|
- success = commands.exec(toExecute.command, this.$editor, toExecute.args, e);
|
|
|
- }
|
|
|
- if (success && e && hashId != -1 &&
|
|
|
- toExecute.passEvent != true && toExecute.command.passEvent != true
|
|
|
- ) {
|
|
|
- event.stopEvent(e);
|
|
|
- }
|
|
|
- if (success)
|
|
|
- break;
|
|
|
- }
|
|
|
- return success;
|
|
|
- };
|
|
|
-
|
|
|
- this.onCommandKey = function(e, hashId, keyCode) {
|
|
|
- var keyString = keyUtil.keyCodeToString(keyCode);
|
|
|
- this.$callKeyboardHandlers(hashId, keyString, keyCode, e);
|
|
|
- };
|
|
|
-
|
|
|
- this.onTextInput = function(text) {
|
|
|
- var success = this.$callKeyboardHandlers(-1, text);
|
|
|
- if (!success)
|
|
|
- this.$editor.commands.exec("insertstring", this.$editor, text);
|
|
|
- };
|
|
|
-
|
|
|
-}).call(KeyBinding.prototype);
|
|
|
-
|
|
|
-exports.KeyBinding = KeyBinding;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/range",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-var comparePoints = function(p1, p2) {
|
|
|
- return p1.row - p2.row || p1.column - p2.column;
|
|
|
-};
|
|
|
-var Range = function(startRow, startColumn, endRow, endColumn) {
|
|
|
- this.start = {
|
|
|
- row: startRow,
|
|
|
- column: startColumn
|
|
|
- };
|
|
|
-
|
|
|
- this.end = {
|
|
|
- row: endRow,
|
|
|
- column: endColumn
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.isEqual = function(range) {
|
|
|
- return this.start.row === range.start.row &&
|
|
|
- this.end.row === range.end.row &&
|
|
|
- this.start.column === range.start.column &&
|
|
|
- this.end.column === range.end.column;
|
|
|
- };
|
|
|
- this.toString = function() {
|
|
|
- return ("Range: [" + this.start.row + "/" + this.start.column +
|
|
|
- "] -> [" + this.end.row + "/" + this.end.column + "]");
|
|
|
- };
|
|
|
-
|
|
|
- this.contains = function(row, column) {
|
|
|
- return this.compare(row, column) == 0;
|
|
|
- };
|
|
|
- this.compareRange = function(range) {
|
|
|
- var cmp,
|
|
|
- end = range.end,
|
|
|
- start = range.start;
|
|
|
-
|
|
|
- cmp = this.compare(end.row, end.column);
|
|
|
- if (cmp == 1) {
|
|
|
- cmp = this.compare(start.row, start.column);
|
|
|
- if (cmp == 1) {
|
|
|
- return 2;
|
|
|
- } else if (cmp == 0) {
|
|
|
- return 1;
|
|
|
- } else {
|
|
|
- return 0;
|
|
|
- }
|
|
|
- } else if (cmp == -1) {
|
|
|
- return -2;
|
|
|
- } else {
|
|
|
- cmp = this.compare(start.row, start.column);
|
|
|
- if (cmp == -1) {
|
|
|
- return -1;
|
|
|
- } else if (cmp == 1) {
|
|
|
- return 42;
|
|
|
- } else {
|
|
|
- return 0;
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- this.comparePoint = function(p) {
|
|
|
- return this.compare(p.row, p.column);
|
|
|
- };
|
|
|
- this.containsRange = function(range) {
|
|
|
- return this.comparePoint(range.start) == 0 && this.comparePoint(range.end) == 0;
|
|
|
- };
|
|
|
- this.intersects = function(range) {
|
|
|
- var cmp = this.compareRange(range);
|
|
|
- return (cmp == -1 || cmp == 0 || cmp == 1);
|
|
|
- };
|
|
|
- this.isEnd = function(row, column) {
|
|
|
- return this.end.row == row && this.end.column == column;
|
|
|
- };
|
|
|
- this.isStart = function(row, column) {
|
|
|
- return this.start.row == row && this.start.column == column;
|
|
|
- };
|
|
|
- this.setStart = function(row, column) {
|
|
|
- if (typeof row == "object") {
|
|
|
- this.start.column = row.column;
|
|
|
- this.start.row = row.row;
|
|
|
- } else {
|
|
|
- this.start.row = row;
|
|
|
- this.start.column = column;
|
|
|
- }
|
|
|
- };
|
|
|
- this.setEnd = function(row, column) {
|
|
|
- if (typeof row == "object") {
|
|
|
- this.end.column = row.column;
|
|
|
- this.end.row = row.row;
|
|
|
- } else {
|
|
|
- this.end.row = row;
|
|
|
- this.end.column = column;
|
|
|
- }
|
|
|
- };
|
|
|
- this.inside = function(row, column) {
|
|
|
- if (this.compare(row, column) == 0) {
|
|
|
- if (this.isEnd(row, column) || this.isStart(row, column)) {
|
|
|
- return false;
|
|
|
- } else {
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
- return false;
|
|
|
- };
|
|
|
- this.insideStart = function(row, column) {
|
|
|
- if (this.compare(row, column) == 0) {
|
|
|
- if (this.isEnd(row, column)) {
|
|
|
- return false;
|
|
|
- } else {
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
- return false;
|
|
|
- };
|
|
|
- this.insideEnd = function(row, column) {
|
|
|
- if (this.compare(row, column) == 0) {
|
|
|
- if (this.isStart(row, column)) {
|
|
|
- return false;
|
|
|
- } else {
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
- return false;
|
|
|
- };
|
|
|
- this.compare = function(row, column) {
|
|
|
- if (!this.isMultiLine()) {
|
|
|
- if (row === this.start.row) {
|
|
|
- return column < this.start.column ? -1 : (column > this.end.column ? 1 : 0);
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- if (row < this.start.row)
|
|
|
- return -1;
|
|
|
-
|
|
|
- if (row > this.end.row)
|
|
|
- return 1;
|
|
|
-
|
|
|
- if (this.start.row === row)
|
|
|
- return column >= this.start.column ? 0 : -1;
|
|
|
-
|
|
|
- if (this.end.row === row)
|
|
|
- return column <= this.end.column ? 0 : 1;
|
|
|
-
|
|
|
- return 0;
|
|
|
- };
|
|
|
- this.compareStart = function(row, column) {
|
|
|
- if (this.start.row == row && this.start.column == column) {
|
|
|
- return -1;
|
|
|
- } else {
|
|
|
- return this.compare(row, column);
|
|
|
- }
|
|
|
- };
|
|
|
- this.compareEnd = function(row, column) {
|
|
|
- if (this.end.row == row && this.end.column == column) {
|
|
|
- return 1;
|
|
|
- } else {
|
|
|
- return this.compare(row, column);
|
|
|
- }
|
|
|
- };
|
|
|
- this.compareInside = function(row, column) {
|
|
|
- if (this.end.row == row && this.end.column == column) {
|
|
|
- return 1;
|
|
|
- } else if (this.start.row == row && this.start.column == column) {
|
|
|
- return -1;
|
|
|
- } else {
|
|
|
- return this.compare(row, column);
|
|
|
- }
|
|
|
- };
|
|
|
- this.clipRows = function(firstRow, lastRow) {
|
|
|
- if (this.end.row > lastRow)
|
|
|
- var end = {row: lastRow + 1, column: 0};
|
|
|
- else if (this.end.row < firstRow)
|
|
|
- var end = {row: firstRow, column: 0};
|
|
|
-
|
|
|
- if (this.start.row > lastRow)
|
|
|
- var start = {row: lastRow + 1, column: 0};
|
|
|
- else if (this.start.row < firstRow)
|
|
|
- var start = {row: firstRow, column: 0};
|
|
|
-
|
|
|
- return Range.fromPoints(start || this.start, end || this.end);
|
|
|
- };
|
|
|
- this.extend = function(row, column) {
|
|
|
- var cmp = this.compare(row, column);
|
|
|
-
|
|
|
- if (cmp == 0)
|
|
|
- return this;
|
|
|
- else if (cmp == -1)
|
|
|
- var start = {row: row, column: column};
|
|
|
- else
|
|
|
- var end = {row: row, column: column};
|
|
|
-
|
|
|
- return Range.fromPoints(start || this.start, end || this.end);
|
|
|
- };
|
|
|
-
|
|
|
- this.isEmpty = function() {
|
|
|
- return (this.start.row === this.end.row && this.start.column === this.end.column);
|
|
|
- };
|
|
|
- this.isMultiLine = function() {
|
|
|
- return (this.start.row !== this.end.row);
|
|
|
- };
|
|
|
- this.clone = function() {
|
|
|
- return Range.fromPoints(this.start, this.end);
|
|
|
- };
|
|
|
- this.collapseRows = function() {
|
|
|
- if (this.end.column == 0)
|
|
|
- return new Range(this.start.row, 0, Math.max(this.start.row, this.end.row-1), 0)
|
|
|
- else
|
|
|
- return new Range(this.start.row, 0, this.end.row, 0)
|
|
|
- };
|
|
|
- this.toScreenRange = function(session) {
|
|
|
- var screenPosStart = session.documentToScreenPosition(this.start);
|
|
|
- var screenPosEnd = session.documentToScreenPosition(this.end);
|
|
|
-
|
|
|
- return new Range(
|
|
|
- screenPosStart.row, screenPosStart.column,
|
|
|
- screenPosEnd.row, screenPosEnd.column
|
|
|
- );
|
|
|
- };
|
|
|
- this.moveBy = function(row, column) {
|
|
|
- this.start.row += row;
|
|
|
- this.start.column += column;
|
|
|
- this.end.row += row;
|
|
|
- this.end.column += column;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Range.prototype);
|
|
|
-Range.fromPoints = function(start, end) {
|
|
|
- return new Range(start.row, start.column, end.row, end.column);
|
|
|
-};
|
|
|
-Range.comparePoints = comparePoints;
|
|
|
-
|
|
|
-Range.comparePoints = function(p1, p2) {
|
|
|
- return p1.row - p2.row || p1.column - p2.column;
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-exports.Range = Range;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var lang = require("./lib/lang");
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-var Range = require("./range").Range;
|
|
|
-var Selection = function(session) {
|
|
|
- this.session = session;
|
|
|
- this.doc = session.getDocument();
|
|
|
-
|
|
|
- this.clearSelection();
|
|
|
- this.lead = this.selectionLead = this.doc.createAnchor(0, 0);
|
|
|
- this.anchor = this.selectionAnchor = this.doc.createAnchor(0, 0);
|
|
|
-
|
|
|
- var self = this;
|
|
|
- this.lead.on("change", function(e) {
|
|
|
- self._emit("changeCursor");
|
|
|
- if (!self.$isEmpty)
|
|
|
- self._emit("changeSelection");
|
|
|
- if (!self.$keepDesiredColumnOnChange && e.old.column != e.value.column)
|
|
|
- self.$desiredColumn = null;
|
|
|
- });
|
|
|
-
|
|
|
- this.selectionAnchor.on("change", function() {
|
|
|
- if (!self.$isEmpty)
|
|
|
- self._emit("changeSelection");
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
- this.isEmpty = function() {
|
|
|
- return (this.$isEmpty || (
|
|
|
- this.anchor.row == this.lead.row &&
|
|
|
- this.anchor.column == this.lead.column
|
|
|
- ));
|
|
|
- };
|
|
|
- this.isMultiLine = function() {
|
|
|
- if (this.isEmpty()) {
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- return this.getRange().isMultiLine();
|
|
|
- };
|
|
|
- this.getCursor = function() {
|
|
|
- return this.lead.getPosition();
|
|
|
- };
|
|
|
- this.setSelectionAnchor = function(row, column) {
|
|
|
- this.anchor.setPosition(row, column);
|
|
|
-
|
|
|
- if (this.$isEmpty) {
|
|
|
- this.$isEmpty = false;
|
|
|
- this._emit("changeSelection");
|
|
|
- }
|
|
|
- };
|
|
|
- this.getSelectionAnchor = function() {
|
|
|
- if (this.$isEmpty)
|
|
|
- return this.getSelectionLead();
|
|
|
- else
|
|
|
- return this.anchor.getPosition();
|
|
|
- };
|
|
|
- this.getSelectionLead = function() {
|
|
|
- return this.lead.getPosition();
|
|
|
- };
|
|
|
- this.shiftSelection = function(columns) {
|
|
|
- if (this.$isEmpty) {
|
|
|
- this.moveCursorTo(this.lead.row, this.lead.column + columns);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var anchor = this.getSelectionAnchor();
|
|
|
- var lead = this.getSelectionLead();
|
|
|
-
|
|
|
- var isBackwards = this.isBackwards();
|
|
|
-
|
|
|
- if (!isBackwards || anchor.column !== 0)
|
|
|
- this.setSelectionAnchor(anchor.row, anchor.column + columns);
|
|
|
-
|
|
|
- if (isBackwards || lead.column !== 0) {
|
|
|
- this.$moveSelection(function() {
|
|
|
- this.moveCursorTo(lead.row, lead.column + columns);
|
|
|
- });
|
|
|
- }
|
|
|
- };
|
|
|
- this.isBackwards = function() {
|
|
|
- var anchor = this.anchor;
|
|
|
- var lead = this.lead;
|
|
|
- return (anchor.row > lead.row || (anchor.row == lead.row && anchor.column > lead.column));
|
|
|
- };
|
|
|
- this.getRange = function() {
|
|
|
- var anchor = this.anchor;
|
|
|
- var lead = this.lead;
|
|
|
-
|
|
|
- if (this.isEmpty())
|
|
|
- return Range.fromPoints(lead, lead);
|
|
|
-
|
|
|
- if (this.isBackwards()) {
|
|
|
- return Range.fromPoints(lead, anchor);
|
|
|
- }
|
|
|
- else {
|
|
|
- return Range.fromPoints(anchor, lead);
|
|
|
- }
|
|
|
- };
|
|
|
- this.clearSelection = function() {
|
|
|
- if (!this.$isEmpty) {
|
|
|
- this.$isEmpty = true;
|
|
|
- this._emit("changeSelection");
|
|
|
- }
|
|
|
- };
|
|
|
- this.selectAll = function() {
|
|
|
- var lastRow = this.doc.getLength() - 1;
|
|
|
- this.setSelectionAnchor(0, 0);
|
|
|
- this.moveCursorTo(lastRow, this.doc.getLine(lastRow).length);
|
|
|
- };
|
|
|
- this.setRange =
|
|
|
- this.setSelectionRange = function(range, reverse) {
|
|
|
- if (reverse) {
|
|
|
- this.setSelectionAnchor(range.end.row, range.end.column);
|
|
|
- this.selectTo(range.start.row, range.start.column);
|
|
|
- } else {
|
|
|
- this.setSelectionAnchor(range.start.row, range.start.column);
|
|
|
- this.selectTo(range.end.row, range.end.column);
|
|
|
- }
|
|
|
- if (this.getRange().isEmpty())
|
|
|
- this.$isEmpty = true;
|
|
|
- this.$desiredColumn = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.$moveSelection = function(mover) {
|
|
|
- var lead = this.lead;
|
|
|
- if (this.$isEmpty)
|
|
|
- this.setSelectionAnchor(lead.row, lead.column);
|
|
|
-
|
|
|
- mover.call(this);
|
|
|
- };
|
|
|
- this.selectTo = function(row, column) {
|
|
|
- this.$moveSelection(function() {
|
|
|
- this.moveCursorTo(row, column);
|
|
|
- });
|
|
|
- };
|
|
|
- this.selectToPosition = function(pos) {
|
|
|
- this.$moveSelection(function() {
|
|
|
- this.moveCursorToPosition(pos);
|
|
|
- });
|
|
|
- };
|
|
|
- this.moveTo = function(row, column) {
|
|
|
- this.clearSelection();
|
|
|
- this.moveCursorTo(row, column);
|
|
|
- };
|
|
|
- this.moveToPosition = function(pos) {
|
|
|
- this.clearSelection();
|
|
|
- this.moveCursorToPosition(pos);
|
|
|
- };
|
|
|
- this.selectUp = function() {
|
|
|
- this.$moveSelection(this.moveCursorUp);
|
|
|
- };
|
|
|
- this.selectDown = function() {
|
|
|
- this.$moveSelection(this.moveCursorDown);
|
|
|
- };
|
|
|
- this.selectRight = function() {
|
|
|
- this.$moveSelection(this.moveCursorRight);
|
|
|
- };
|
|
|
- this.selectLeft = function() {
|
|
|
- this.$moveSelection(this.moveCursorLeft);
|
|
|
- };
|
|
|
- this.selectLineStart = function() {
|
|
|
- this.$moveSelection(this.moveCursorLineStart);
|
|
|
- };
|
|
|
- this.selectLineEnd = function() {
|
|
|
- this.$moveSelection(this.moveCursorLineEnd);
|
|
|
- };
|
|
|
- this.selectFileEnd = function() {
|
|
|
- this.$moveSelection(this.moveCursorFileEnd);
|
|
|
- };
|
|
|
- this.selectFileStart = function() {
|
|
|
- this.$moveSelection(this.moveCursorFileStart);
|
|
|
- };
|
|
|
- this.selectWordRight = function() {
|
|
|
- this.$moveSelection(this.moveCursorWordRight);
|
|
|
- };
|
|
|
- this.selectWordLeft = function() {
|
|
|
- this.$moveSelection(this.moveCursorWordLeft);
|
|
|
- };
|
|
|
- this.getWordRange = function(row, column) {
|
|
|
- if (typeof column == "undefined") {
|
|
|
- var cursor = row || this.lead;
|
|
|
- row = cursor.row;
|
|
|
- column = cursor.column;
|
|
|
- }
|
|
|
- return this.session.getWordRange(row, column);
|
|
|
- };
|
|
|
- this.selectWord = function() {
|
|
|
- this.setSelectionRange(this.getWordRange());
|
|
|
- };
|
|
|
- this.selectAWord = function() {
|
|
|
- var cursor = this.getCursor();
|
|
|
- var range = this.session.getAWordRange(cursor.row, cursor.column);
|
|
|
- this.setSelectionRange(range);
|
|
|
- };
|
|
|
-
|
|
|
- this.getLineRange = function(row, excludeLastChar) {
|
|
|
- var rowStart = typeof row == "number" ? row : this.lead.row;
|
|
|
- var rowEnd;
|
|
|
-
|
|
|
- var foldLine = this.session.getFoldLine(rowStart);
|
|
|
- if (foldLine) {
|
|
|
- rowStart = foldLine.start.row;
|
|
|
- rowEnd = foldLine.end.row;
|
|
|
- } else {
|
|
|
- rowEnd = rowStart;
|
|
|
- }
|
|
|
- if (excludeLastChar === true)
|
|
|
- return new Range(rowStart, 0, rowEnd, this.session.getLine(rowEnd).length);
|
|
|
- else
|
|
|
- return new Range(rowStart, 0, rowEnd + 1, 0);
|
|
|
- };
|
|
|
- this.selectLine = function() {
|
|
|
- this.setSelectionRange(this.getLineRange());
|
|
|
- };
|
|
|
- this.moveCursorUp = function() {
|
|
|
- this.moveCursorBy(-1, 0);
|
|
|
- };
|
|
|
- this.moveCursorDown = function() {
|
|
|
- this.moveCursorBy(1, 0);
|
|
|
- };
|
|
|
- this.moveCursorLeft = function() {
|
|
|
- var cursor = this.lead.getPosition(),
|
|
|
- fold;
|
|
|
-
|
|
|
- if (fold = this.session.getFoldAt(cursor.row, cursor.column, -1)) {
|
|
|
- this.moveCursorTo(fold.start.row, fold.start.column);
|
|
|
- } else if (cursor.column === 0) {
|
|
|
- if (cursor.row > 0) {
|
|
|
- this.moveCursorTo(cursor.row - 1, this.doc.getLine(cursor.row - 1).length);
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- var tabSize = this.session.getTabSize();
|
|
|
- if (this.session.isTabStop(cursor) && this.doc.getLine(cursor.row).slice(cursor.column-tabSize, cursor.column).split(" ").length-1 == tabSize)
|
|
|
- this.moveCursorBy(0, -tabSize);
|
|
|
- else
|
|
|
- this.moveCursorBy(0, -1);
|
|
|
- }
|
|
|
- };
|
|
|
- this.moveCursorRight = function() {
|
|
|
- var cursor = this.lead.getPosition(),
|
|
|
- fold;
|
|
|
- if (fold = this.session.getFoldAt(cursor.row, cursor.column, 1)) {
|
|
|
- this.moveCursorTo(fold.end.row, fold.end.column);
|
|
|
- }
|
|
|
- else if (this.lead.column == this.doc.getLine(this.lead.row).length) {
|
|
|
- if (this.lead.row < this.doc.getLength() - 1) {
|
|
|
- this.moveCursorTo(this.lead.row + 1, 0);
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- var tabSize = this.session.getTabSize();
|
|
|
- var cursor = this.lead;
|
|
|
- if (this.session.isTabStop(cursor) && this.doc.getLine(cursor.row).slice(cursor.column, cursor.column+tabSize).split(" ").length-1 == tabSize)
|
|
|
- this.moveCursorBy(0, tabSize);
|
|
|
- else
|
|
|
- this.moveCursorBy(0, 1);
|
|
|
- }
|
|
|
- };
|
|
|
- this.moveCursorLineStart = function() {
|
|
|
- var row = this.lead.row;
|
|
|
- var column = this.lead.column;
|
|
|
- var screenRow = this.session.documentToScreenRow(row, column);
|
|
|
- var firstColumnPosition = this.session.screenToDocumentPosition(screenRow, 0);
|
|
|
- var beforeCursor = this.session.getDisplayLine(
|
|
|
- row, null, firstColumnPosition.row,
|
|
|
- firstColumnPosition.column
|
|
|
- );
|
|
|
-
|
|
|
- var leadingSpace = beforeCursor.match(/^\s*/);
|
|
|
- if (leadingSpace[0].length != column && !this.session.$useEmacsStyleLineStart)
|
|
|
- firstColumnPosition.column += leadingSpace[0].length;
|
|
|
- this.moveCursorToPosition(firstColumnPosition);
|
|
|
- };
|
|
|
- this.moveCursorLineEnd = function() {
|
|
|
- var lead = this.lead;
|
|
|
- var lineEnd = this.session.getDocumentLastRowColumnPosition(lead.row, lead.column);
|
|
|
- if (this.lead.column == lineEnd.column) {
|
|
|
- var line = this.session.getLine(lineEnd.row);
|
|
|
- if (lineEnd.column == line.length) {
|
|
|
- var textEnd = line.search(/\s+$/);
|
|
|
- if (textEnd > 0)
|
|
|
- lineEnd.column = textEnd;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- this.moveCursorTo(lineEnd.row, lineEnd.column);
|
|
|
- };
|
|
|
- this.moveCursorFileEnd = function() {
|
|
|
- var row = this.doc.getLength() - 1;
|
|
|
- var column = this.doc.getLine(row).length;
|
|
|
- this.moveCursorTo(row, column);
|
|
|
- };
|
|
|
- this.moveCursorFileStart = function() {
|
|
|
- this.moveCursorTo(0, 0);
|
|
|
- };
|
|
|
- this.moveCursorLongWordRight = function() {
|
|
|
- var row = this.lead.row;
|
|
|
- var column = this.lead.column;
|
|
|
- var line = this.doc.getLine(row);
|
|
|
- var rightOfCursor = line.substring(column);
|
|
|
-
|
|
|
- var match;
|
|
|
- this.session.nonTokenRe.lastIndex = 0;
|
|
|
- this.session.tokenRe.lastIndex = 0;
|
|
|
- var fold = this.session.getFoldAt(row, column, 1);
|
|
|
- if (fold) {
|
|
|
- this.moveCursorTo(fold.end.row, fold.end.column);
|
|
|
- return;
|
|
|
- }
|
|
|
- if (match = this.session.nonTokenRe.exec(rightOfCursor)) {
|
|
|
- column += this.session.nonTokenRe.lastIndex;
|
|
|
- this.session.nonTokenRe.lastIndex = 0;
|
|
|
- rightOfCursor = line.substring(column);
|
|
|
- }
|
|
|
- if (column >= line.length) {
|
|
|
- this.moveCursorTo(row, line.length);
|
|
|
- this.moveCursorRight();
|
|
|
- if (row < this.doc.getLength() - 1)
|
|
|
- this.moveCursorWordRight();
|
|
|
- return;
|
|
|
- }
|
|
|
- if (match = this.session.tokenRe.exec(rightOfCursor)) {
|
|
|
- column += this.session.tokenRe.lastIndex;
|
|
|
- this.session.tokenRe.lastIndex = 0;
|
|
|
- }
|
|
|
-
|
|
|
- this.moveCursorTo(row, column);
|
|
|
- };
|
|
|
- this.moveCursorLongWordLeft = function() {
|
|
|
- var row = this.lead.row;
|
|
|
- var column = this.lead.column;
|
|
|
- var fold;
|
|
|
- if (fold = this.session.getFoldAt(row, column, -1)) {
|
|
|
- this.moveCursorTo(fold.start.row, fold.start.column);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var str = this.session.getFoldStringAt(row, column, -1);
|
|
|
- if (str == null) {
|
|
|
- str = this.doc.getLine(row).substring(0, column);
|
|
|
- }
|
|
|
-
|
|
|
- var leftOfCursor = lang.stringReverse(str);
|
|
|
- var match;
|
|
|
- this.session.nonTokenRe.lastIndex = 0;
|
|
|
- this.session.tokenRe.lastIndex = 0;
|
|
|
- if (match = this.session.nonTokenRe.exec(leftOfCursor)) {
|
|
|
- column -= this.session.nonTokenRe.lastIndex;
|
|
|
- leftOfCursor = leftOfCursor.slice(this.session.nonTokenRe.lastIndex);
|
|
|
- this.session.nonTokenRe.lastIndex = 0;
|
|
|
- }
|
|
|
- if (column <= 0) {
|
|
|
- this.moveCursorTo(row, 0);
|
|
|
- this.moveCursorLeft();
|
|
|
- if (row > 0)
|
|
|
- this.moveCursorWordLeft();
|
|
|
- return;
|
|
|
- }
|
|
|
- if (match = this.session.tokenRe.exec(leftOfCursor)) {
|
|
|
- column -= this.session.tokenRe.lastIndex;
|
|
|
- this.session.tokenRe.lastIndex = 0;
|
|
|
- }
|
|
|
-
|
|
|
- this.moveCursorTo(row, column);
|
|
|
- };
|
|
|
-
|
|
|
- this.$shortWordEndIndex = function(rightOfCursor) {
|
|
|
- var match, index = 0, ch;
|
|
|
- var whitespaceRe = /\s/;
|
|
|
- var tokenRe = this.session.tokenRe;
|
|
|
-
|
|
|
- tokenRe.lastIndex = 0;
|
|
|
- if (match = this.session.tokenRe.exec(rightOfCursor)) {
|
|
|
- index = this.session.tokenRe.lastIndex;
|
|
|
- } else {
|
|
|
- while ((ch = rightOfCursor[index]) && whitespaceRe.test(ch))
|
|
|
- index ++;
|
|
|
-
|
|
|
- if (index < 1) {
|
|
|
- tokenRe.lastIndex = 0;
|
|
|
- while ((ch = rightOfCursor[index]) && !tokenRe.test(ch)) {
|
|
|
- tokenRe.lastIndex = 0;
|
|
|
- index ++;
|
|
|
- if (whitespaceRe.test(ch)) {
|
|
|
- if (index > 2) {
|
|
|
- index--;
|
|
|
- break;
|
|
|
- } else {
|
|
|
- while ((ch = rightOfCursor[index]) && whitespaceRe.test(ch))
|
|
|
- index ++;
|
|
|
- if (index > 2)
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- tokenRe.lastIndex = 0;
|
|
|
-
|
|
|
- return index;
|
|
|
- };
|
|
|
-
|
|
|
- this.moveCursorShortWordRight = function() {
|
|
|
- var row = this.lead.row;
|
|
|
- var column = this.lead.column;
|
|
|
- var line = this.doc.getLine(row);
|
|
|
- var rightOfCursor = line.substring(column);
|
|
|
-
|
|
|
- var fold = this.session.getFoldAt(row, column, 1);
|
|
|
- if (fold)
|
|
|
- return this.moveCursorTo(fold.end.row, fold.end.column);
|
|
|
-
|
|
|
- if (column == line.length) {
|
|
|
- var l = this.doc.getLength();
|
|
|
- do {
|
|
|
- row++;
|
|
|
- rightOfCursor = this.doc.getLine(row);
|
|
|
- } while (row < l && /^\s*$/.test(rightOfCursor));
|
|
|
-
|
|
|
- if (!/^\s+/.test(rightOfCursor))
|
|
|
- rightOfCursor = "";
|
|
|
- column = 0;
|
|
|
- }
|
|
|
-
|
|
|
- var index = this.$shortWordEndIndex(rightOfCursor);
|
|
|
-
|
|
|
- this.moveCursorTo(row, column + index);
|
|
|
- };
|
|
|
-
|
|
|
- this.moveCursorShortWordLeft = function() {
|
|
|
- var row = this.lead.row;
|
|
|
- var column = this.lead.column;
|
|
|
-
|
|
|
- var fold;
|
|
|
- if (fold = this.session.getFoldAt(row, column, -1))
|
|
|
- return this.moveCursorTo(fold.start.row, fold.start.column);
|
|
|
-
|
|
|
- var line = this.session.getLine(row).substring(0, column);
|
|
|
- if (column === 0) {
|
|
|
- do {
|
|
|
- row--;
|
|
|
- line = this.doc.getLine(row);
|
|
|
- } while (row > 0 && /^\s*$/.test(line));
|
|
|
-
|
|
|
- column = line.length;
|
|
|
- if (!/\s+$/.test(line))
|
|
|
- line = "";
|
|
|
- }
|
|
|
-
|
|
|
- var leftOfCursor = lang.stringReverse(line);
|
|
|
- var index = this.$shortWordEndIndex(leftOfCursor);
|
|
|
-
|
|
|
- return this.moveCursorTo(row, column - index);
|
|
|
- };
|
|
|
-
|
|
|
- this.moveCursorWordRight = function() {
|
|
|
- if (this.session.$selectLongWords)
|
|
|
- this.moveCursorLongWordRight();
|
|
|
- else
|
|
|
- this.moveCursorShortWordRight();
|
|
|
- };
|
|
|
-
|
|
|
- this.moveCursorWordLeft = function() {
|
|
|
- if (this.session.$selectLongWords)
|
|
|
- this.moveCursorLongWordLeft();
|
|
|
- else
|
|
|
- this.moveCursorShortWordLeft();
|
|
|
- };
|
|
|
- this.moveCursorBy = function(rows, chars) {
|
|
|
- var screenPos = this.session.documentToScreenPosition(
|
|
|
- this.lead.row,
|
|
|
- this.lead.column
|
|
|
- );
|
|
|
-
|
|
|
- if (chars === 0) {
|
|
|
- if (this.$desiredColumn)
|
|
|
- screenPos.column = this.$desiredColumn;
|
|
|
- else
|
|
|
- this.$desiredColumn = screenPos.column;
|
|
|
- }
|
|
|
-
|
|
|
- var docPos = this.session.screenToDocumentPosition(screenPos.row + rows, screenPos.column);
|
|
|
-
|
|
|
- if (rows !== 0 && chars === 0 && docPos.row === this.lead.row && docPos.column === this.lead.column) {
|
|
|
- if (this.session.lineWidgets && this.session.lineWidgets[docPos.row])
|
|
|
- docPos.row++;
|
|
|
- }
|
|
|
- this.moveCursorTo(docPos.row, docPos.column + chars, chars === 0);
|
|
|
- };
|
|
|
- this.moveCursorToPosition = function(position) {
|
|
|
- this.moveCursorTo(position.row, position.column);
|
|
|
- };
|
|
|
- this.moveCursorTo = function(row, column, keepDesiredColumn) {
|
|
|
- var fold = this.session.getFoldAt(row, column, 1);
|
|
|
- if (fold) {
|
|
|
- row = fold.start.row;
|
|
|
- column = fold.start.column;
|
|
|
- }
|
|
|
-
|
|
|
- this.$keepDesiredColumnOnChange = true;
|
|
|
- this.lead.setPosition(row, column);
|
|
|
- this.$keepDesiredColumnOnChange = false;
|
|
|
-
|
|
|
- if (!keepDesiredColumn)
|
|
|
- this.$desiredColumn = null;
|
|
|
- };
|
|
|
- this.moveCursorToScreen = function(row, column, keepDesiredColumn) {
|
|
|
- var pos = this.session.screenToDocumentPosition(row, column);
|
|
|
- this.moveCursorTo(pos.row, pos.column, keepDesiredColumn);
|
|
|
- };
|
|
|
- this.detach = function() {
|
|
|
- this.lead.detach();
|
|
|
- this.anchor.detach();
|
|
|
- this.session = this.doc = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.fromOrientedRange = function(range) {
|
|
|
- this.setSelectionRange(range, range.cursor == range.start);
|
|
|
- this.$desiredColumn = range.desiredColumn || this.$desiredColumn;
|
|
|
- };
|
|
|
-
|
|
|
- this.toOrientedRange = function(range) {
|
|
|
- var r = this.getRange();
|
|
|
- if (range) {
|
|
|
- range.start.column = r.start.column;
|
|
|
- range.start.row = r.start.row;
|
|
|
- range.end.column = r.end.column;
|
|
|
- range.end.row = r.end.row;
|
|
|
- } else {
|
|
|
- range = r;
|
|
|
- }
|
|
|
-
|
|
|
- range.cursor = this.isBackwards() ? range.start : range.end;
|
|
|
- range.desiredColumn = this.$desiredColumn;
|
|
|
- return range;
|
|
|
- };
|
|
|
- this.getRangeOfMovements = function(func) {
|
|
|
- var start = this.getCursor();
|
|
|
- try {
|
|
|
- func.call(null, this);
|
|
|
- var end = this.getCursor();
|
|
|
- return Range.fromPoints(start,end);
|
|
|
- } catch(e) {
|
|
|
- return Range.fromPoints(start,start);
|
|
|
- } finally {
|
|
|
- this.moveCursorToPosition(start);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.toJSON = function() {
|
|
|
- if (this.rangeCount) {
|
|
|
- var data = this.ranges.map(function(r) {
|
|
|
- var r1 = r.clone();
|
|
|
- r1.isBackwards = r.cursor == r.start;
|
|
|
- return r1;
|
|
|
- });
|
|
|
- } else {
|
|
|
- var data = this.getRange();
|
|
|
- data.isBackwards = this.isBackwards();
|
|
|
- }
|
|
|
- return data;
|
|
|
- };
|
|
|
-
|
|
|
- this.fromJSON = function(data) {
|
|
|
- if (data.start == undefined) {
|
|
|
- if (this.rangeList) {
|
|
|
- this.toSingleRange(data[0]);
|
|
|
- for (var i = data.length; i--; ) {
|
|
|
- var r = Range.fromPoints(data[i].start, data[i].end);
|
|
|
- if (data[i].isBackwards)
|
|
|
- r.cursor = r.start;
|
|
|
- this.addRange(r, true);
|
|
|
- }
|
|
|
- return;
|
|
|
- } else
|
|
|
- data = data[0];
|
|
|
- }
|
|
|
- if (this.rangeList)
|
|
|
- this.toSingleRange(data);
|
|
|
- this.setSelectionRange(data, data.isBackwards);
|
|
|
- };
|
|
|
-
|
|
|
- this.isEqual = function(data) {
|
|
|
- if ((data.length || this.rangeCount) && data.length != this.rangeCount)
|
|
|
- return false;
|
|
|
- if (!data.length || !this.ranges)
|
|
|
- return this.getRange().isEqual(data);
|
|
|
-
|
|
|
- for (var i = this.ranges.length; i--; ) {
|
|
|
- if (!this.ranges[i].isEqual(data[i]))
|
|
|
- return false;
|
|
|
- }
|
|
|
- return true;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Selection.prototype);
|
|
|
-
|
|
|
-exports.Selection = Selection;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/tokenizer",["require","exports","module","ace/config"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var config = require("./config");
|
|
|
-var MAX_TOKEN_COUNT = 2000;
|
|
|
-var Tokenizer = function(rules) {
|
|
|
- this.states = rules;
|
|
|
-
|
|
|
- this.regExps = {};
|
|
|
- this.matchMappings = {};
|
|
|
- for (var key in this.states) {
|
|
|
- var state = this.states[key];
|
|
|
- var ruleRegExps = [];
|
|
|
- var matchTotal = 0;
|
|
|
- var mapping = this.matchMappings[key] = {defaultToken: "text"};
|
|
|
- var flag = "g";
|
|
|
-
|
|
|
- var splitterRurles = [];
|
|
|
- for (var i = 0; i < state.length; i++) {
|
|
|
- var rule = state[i];
|
|
|
- if (rule.defaultToken)
|
|
|
- mapping.defaultToken = rule.defaultToken;
|
|
|
- if (rule.caseInsensitive)
|
|
|
- flag = "gi";
|
|
|
- if (rule.regex == null)
|
|
|
- continue;
|
|
|
-
|
|
|
- if (rule.regex instanceof RegExp)
|
|
|
- rule.regex = rule.regex.toString().slice(1, -1);
|
|
|
- var adjustedregex = rule.regex;
|
|
|
- var matchcount = new RegExp("(?:(" + adjustedregex + ")|(.))").exec("a").length - 2;
|
|
|
- if (Array.isArray(rule.token)) {
|
|
|
- if (rule.token.length == 1 || matchcount == 1) {
|
|
|
- rule.token = rule.token[0];
|
|
|
- } else if (matchcount - 1 != rule.token.length) {
|
|
|
- this.reportError("number of classes and regexp groups doesn't match", {
|
|
|
- rule: rule,
|
|
|
- groupCount: matchcount - 1
|
|
|
- });
|
|
|
- rule.token = rule.token[0];
|
|
|
- } else {
|
|
|
- rule.tokenArray = rule.token;
|
|
|
- rule.token = null;
|
|
|
- rule.onMatch = this.$arrayTokens;
|
|
|
- }
|
|
|
- } else if (typeof rule.token == "function" && !rule.onMatch) {
|
|
|
- if (matchcount > 1)
|
|
|
- rule.onMatch = this.$applyToken;
|
|
|
- else
|
|
|
- rule.onMatch = rule.token;
|
|
|
- }
|
|
|
-
|
|
|
- if (matchcount > 1) {
|
|
|
- if (/\\\d/.test(rule.regex)) {
|
|
|
- adjustedregex = rule.regex.replace(/\\([0-9]+)/g, function(match, digit) {
|
|
|
- return "\\" + (parseInt(digit, 10) + matchTotal + 1);
|
|
|
- });
|
|
|
- } else {
|
|
|
- matchcount = 1;
|
|
|
- adjustedregex = this.removeCapturingGroups(rule.regex);
|
|
|
- }
|
|
|
- if (!rule.splitRegex && typeof rule.token != "string")
|
|
|
- splitterRurles.push(rule); // flag will be known only at the very end
|
|
|
- }
|
|
|
-
|
|
|
- mapping[matchTotal] = i;
|
|
|
- matchTotal += matchcount;
|
|
|
-
|
|
|
- ruleRegExps.push(adjustedregex);
|
|
|
- if (!rule.onMatch)
|
|
|
- rule.onMatch = null;
|
|
|
- }
|
|
|
-
|
|
|
- if (!ruleRegExps.length) {
|
|
|
- mapping[0] = 0;
|
|
|
- ruleRegExps.push("$");
|
|
|
- }
|
|
|
-
|
|
|
- splitterRurles.forEach(function(rule) {
|
|
|
- rule.splitRegex = this.createSplitterRegexp(rule.regex, flag);
|
|
|
- }, this);
|
|
|
-
|
|
|
- this.regExps[key] = new RegExp("(" + ruleRegExps.join(")|(") + ")|($)", flag);
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.$setMaxTokenCount = function(m) {
|
|
|
- MAX_TOKEN_COUNT = m | 0;
|
|
|
- };
|
|
|
-
|
|
|
- this.$applyToken = function(str) {
|
|
|
- var values = this.splitRegex.exec(str).slice(1);
|
|
|
- var types = this.token.apply(this, values);
|
|
|
- if (typeof types === "string")
|
|
|
- return [{type: types, value: str}];
|
|
|
-
|
|
|
- var tokens = [];
|
|
|
- for (var i = 0, l = types.length; i < l; i++) {
|
|
|
- if (values[i])
|
|
|
- tokens[tokens.length] = {
|
|
|
- type: types[i],
|
|
|
- value: values[i]
|
|
|
- };
|
|
|
- }
|
|
|
- return tokens;
|
|
|
- },
|
|
|
-
|
|
|
- this.$arrayTokens = function(str) {
|
|
|
- if (!str)
|
|
|
- return [];
|
|
|
- var values = this.splitRegex.exec(str);
|
|
|
- if (!values)
|
|
|
- return "text";
|
|
|
- var tokens = [];
|
|
|
- var types = this.tokenArray;
|
|
|
- for (var i = 0, l = types.length; i < l; i++) {
|
|
|
- if (values[i + 1])
|
|
|
- tokens[tokens.length] = {
|
|
|
- type: types[i],
|
|
|
- value: values[i + 1]
|
|
|
- };
|
|
|
- }
|
|
|
- return tokens;
|
|
|
- };
|
|
|
-
|
|
|
- this.removeCapturingGroups = function(src) {
|
|
|
- var r = src.replace(
|
|
|
- /\[(?:\\.|[^\]])*?\]|\\.|\(\?[:=!]|(\()/g,
|
|
|
- function(x, y) {return y ? "(?:" : x;}
|
|
|
- );
|
|
|
- return r;
|
|
|
- };
|
|
|
-
|
|
|
- this.createSplitterRegexp = function(src, flag) {
|
|
|
- if (src.indexOf("(?=") != -1) {
|
|
|
- var stack = 0;
|
|
|
- var inChClass = false;
|
|
|
- var lastCapture = {};
|
|
|
- src.replace(/(\\.)|(\((?:\?[=!])?)|(\))|([\[\]])/g, function(
|
|
|
- m, esc, parenOpen, parenClose, square, index
|
|
|
- ) {
|
|
|
- if (inChClass) {
|
|
|
- inChClass = square != "]";
|
|
|
- } else if (square) {
|
|
|
- inChClass = true;
|
|
|
- } else if (parenClose) {
|
|
|
- if (stack == lastCapture.stack) {
|
|
|
- lastCapture.end = index+1;
|
|
|
- lastCapture.stack = -1;
|
|
|
- }
|
|
|
- stack--;
|
|
|
- } else if (parenOpen) {
|
|
|
- stack++;
|
|
|
- if (parenOpen.length != 1) {
|
|
|
- lastCapture.stack = stack
|
|
|
- lastCapture.start = index;
|
|
|
- }
|
|
|
- }
|
|
|
- return m;
|
|
|
- });
|
|
|
-
|
|
|
- if (lastCapture.end != null && /^\)*$/.test(src.substr(lastCapture.end)))
|
|
|
- src = src.substring(0, lastCapture.start) + src.substr(lastCapture.end);
|
|
|
- }
|
|
|
- return new RegExp(src, (flag||"").replace("g", ""));
|
|
|
- };
|
|
|
- this.getLineTokens = function(line, startState) {
|
|
|
- if (startState && typeof startState != "string") {
|
|
|
- var stack = startState.slice(0);
|
|
|
- startState = stack[0];
|
|
|
- if (startState === "#tmp") {
|
|
|
- stack.shift()
|
|
|
- startState = stack.shift()
|
|
|
- }
|
|
|
- } else
|
|
|
- var stack = [];
|
|
|
-
|
|
|
- var currentState = startState || "start";
|
|
|
- var state = this.states[currentState];
|
|
|
- if (!state) {
|
|
|
- currentState = "start";
|
|
|
- state = this.states[currentState];
|
|
|
- }
|
|
|
- var mapping = this.matchMappings[currentState];
|
|
|
- var re = this.regExps[currentState];
|
|
|
- re.lastIndex = 0;
|
|
|
-
|
|
|
- var match, tokens = [];
|
|
|
- var lastIndex = 0;
|
|
|
- var matchAttempts = 0;
|
|
|
-
|
|
|
- var token = {type: null, value: ""};
|
|
|
-
|
|
|
- while (match = re.exec(line)) {
|
|
|
- var type = mapping.defaultToken;
|
|
|
- var rule = null;
|
|
|
- var value = match[0];
|
|
|
- var index = re.lastIndex;
|
|
|
-
|
|
|
- if (index - value.length > lastIndex) {
|
|
|
- var skipped = line.substring(lastIndex, index - value.length);
|
|
|
- if (token.type == type) {
|
|
|
- token.value += skipped;
|
|
|
- } else {
|
|
|
- if (token.type)
|
|
|
- tokens.push(token);
|
|
|
- token = {type: type, value: skipped};
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < match.length-2; i++) {
|
|
|
- if (match[i + 1] === undefined)
|
|
|
- continue;
|
|
|
-
|
|
|
- rule = state[mapping[i]];
|
|
|
-
|
|
|
- if (rule.onMatch)
|
|
|
- type = rule.onMatch(value, currentState, stack);
|
|
|
- else
|
|
|
- type = rule.token;
|
|
|
-
|
|
|
- if (rule.next) {
|
|
|
- if (typeof rule.next == "string") {
|
|
|
- currentState = rule.next;
|
|
|
- } else {
|
|
|
- currentState = rule.next(currentState, stack);
|
|
|
- }
|
|
|
-
|
|
|
- state = this.states[currentState];
|
|
|
- if (!state) {
|
|
|
- this.reportError("state doesn't exist", currentState);
|
|
|
- currentState = "start";
|
|
|
- state = this.states[currentState];
|
|
|
- }
|
|
|
- mapping = this.matchMappings[currentState];
|
|
|
- lastIndex = index;
|
|
|
- re = this.regExps[currentState];
|
|
|
- re.lastIndex = index;
|
|
|
- }
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- if (value) {
|
|
|
- if (typeof type === "string") {
|
|
|
- if ((!rule || rule.merge !== false) && token.type === type) {
|
|
|
- token.value += value;
|
|
|
- } else {
|
|
|
- if (token.type)
|
|
|
- tokens.push(token);
|
|
|
- token = {type: type, value: value};
|
|
|
- }
|
|
|
- } else if (type) {
|
|
|
- if (token.type)
|
|
|
- tokens.push(token);
|
|
|
- token = {type: null, value: ""};
|
|
|
- for (var i = 0; i < type.length; i++)
|
|
|
- tokens.push(type[i]);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (lastIndex == line.length)
|
|
|
- break;
|
|
|
-
|
|
|
- lastIndex = index;
|
|
|
-
|
|
|
- if (matchAttempts++ > MAX_TOKEN_COUNT) {
|
|
|
- if (matchAttempts > 2 * line.length) {
|
|
|
- this.reportError("infinite loop with in ace tokenizer", {
|
|
|
- startState: startState,
|
|
|
- line: line
|
|
|
- });
|
|
|
- }
|
|
|
- while (lastIndex < line.length) {
|
|
|
- if (token.type)
|
|
|
- tokens.push(token);
|
|
|
- token = {
|
|
|
- value: line.substring(lastIndex, lastIndex += 2000),
|
|
|
- type: "overflow"
|
|
|
- };
|
|
|
- }
|
|
|
- currentState = "start";
|
|
|
- stack = [];
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (token.type)
|
|
|
- tokens.push(token);
|
|
|
-
|
|
|
- if (stack.length > 1) {
|
|
|
- if (stack[0] !== currentState)
|
|
|
- stack.unshift("#tmp", currentState);
|
|
|
- }
|
|
|
- return {
|
|
|
- tokens : tokens,
|
|
|
- state : stack.length ? stack : currentState
|
|
|
- };
|
|
|
- };
|
|
|
-
|
|
|
- this.reportError = config.reportError;
|
|
|
-
|
|
|
-}).call(Tokenizer.prototype);
|
|
|
-
|
|
|
-exports.Tokenizer = Tokenizer;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var lang = require("../lib/lang");
|
|
|
-
|
|
|
-var TextHighlightRules = function() {
|
|
|
-
|
|
|
- this.$rules = {
|
|
|
- "start" : [{
|
|
|
- token : "empty_line",
|
|
|
- regex : '^$'
|
|
|
- }, {
|
|
|
- defaultToken : "text"
|
|
|
- }]
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.addRules = function(rules, prefix) {
|
|
|
- if (!prefix) {
|
|
|
- for (var key in rules)
|
|
|
- this.$rules[key] = rules[key];
|
|
|
- return;
|
|
|
- }
|
|
|
- for (var key in rules) {
|
|
|
- var state = rules[key];
|
|
|
- for (var i = 0; i < state.length; i++) {
|
|
|
- var rule = state[i];
|
|
|
- if (rule.next || rule.onMatch) {
|
|
|
- if (typeof rule.next != "string") {
|
|
|
- if (rule.nextState && rule.nextState.indexOf(prefix) !== 0)
|
|
|
- rule.nextState = prefix + rule.nextState;
|
|
|
- } else {
|
|
|
- if (rule.next.indexOf(prefix) !== 0)
|
|
|
- rule.next = prefix + rule.next;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- this.$rules[prefix + key] = state;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.getRules = function() {
|
|
|
- return this.$rules;
|
|
|
- };
|
|
|
-
|
|
|
- this.embedRules = function (HighlightRules, prefix, escapeRules, states, append) {
|
|
|
- var embedRules = typeof HighlightRules == "function"
|
|
|
- ? new HighlightRules().getRules()
|
|
|
- : HighlightRules;
|
|
|
- if (states) {
|
|
|
- for (var i = 0; i < states.length; i++)
|
|
|
- states[i] = prefix + states[i];
|
|
|
- } else {
|
|
|
- states = [];
|
|
|
- for (var key in embedRules)
|
|
|
- states.push(prefix + key);
|
|
|
- }
|
|
|
-
|
|
|
- this.addRules(embedRules, prefix);
|
|
|
-
|
|
|
- if (escapeRules) {
|
|
|
- var addRules = Array.prototype[append ? "push" : "unshift"];
|
|
|
- for (var i = 0; i < states.length; i++)
|
|
|
- addRules.apply(this.$rules[states[i]], lang.deepCopy(escapeRules));
|
|
|
- }
|
|
|
-
|
|
|
- if (!this.$embeds)
|
|
|
- this.$embeds = [];
|
|
|
- this.$embeds.push(prefix);
|
|
|
- };
|
|
|
-
|
|
|
- this.getEmbeds = function() {
|
|
|
- return this.$embeds;
|
|
|
- };
|
|
|
-
|
|
|
- var pushState = function(currentState, stack) {
|
|
|
- if (currentState != "start" || stack.length)
|
|
|
- stack.unshift(this.nextState, currentState);
|
|
|
- return this.nextState;
|
|
|
- };
|
|
|
- var popState = function(currentState, stack) {
|
|
|
- stack.shift();
|
|
|
- return stack.shift() || "start";
|
|
|
- };
|
|
|
-
|
|
|
- this.normalizeRules = function() {
|
|
|
- var id = 0;
|
|
|
- var rules = this.$rules;
|
|
|
- function processState(key) {
|
|
|
- var state = rules[key];
|
|
|
- state.processed = true;
|
|
|
- for (var i = 0; i < state.length; i++) {
|
|
|
- var rule = state[i];
|
|
|
- if (!rule.regex && rule.start) {
|
|
|
- rule.regex = rule.start;
|
|
|
- if (!rule.next)
|
|
|
- rule.next = [];
|
|
|
- rule.next.push({
|
|
|
- defaultToken: rule.token
|
|
|
- }, {
|
|
|
- token: rule.token + ".end",
|
|
|
- regex: rule.end || rule.start,
|
|
|
- next: "pop"
|
|
|
- });
|
|
|
- rule.token = rule.token + ".start";
|
|
|
- rule.push = true;
|
|
|
- }
|
|
|
- var next = rule.next || rule.push;
|
|
|
- if (next && Array.isArray(next)) {
|
|
|
- var stateName = rule.stateName;
|
|
|
- if (!stateName) {
|
|
|
- stateName = rule.token;
|
|
|
- if (typeof stateName != "string")
|
|
|
- stateName = stateName[0] || "";
|
|
|
- if (rules[stateName])
|
|
|
- stateName += id++;
|
|
|
- }
|
|
|
- rules[stateName] = next;
|
|
|
- rule.next = stateName;
|
|
|
- processState(stateName);
|
|
|
- } else if (next == "pop") {
|
|
|
- rule.next = popState;
|
|
|
- }
|
|
|
-
|
|
|
- if (rule.push) {
|
|
|
- rule.nextState = rule.next || rule.push;
|
|
|
- rule.next = pushState;
|
|
|
- delete rule.push;
|
|
|
- }
|
|
|
-
|
|
|
- if (rule.rules) {
|
|
|
- for (var r in rule.rules) {
|
|
|
- if (rules[r]) {
|
|
|
- if (rules[r].push)
|
|
|
- rules[r].push.apply(rules[r], rule.rules[r]);
|
|
|
- } else {
|
|
|
- rules[r] = rule.rules[r];
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if (rule.include || typeof rule == "string") {
|
|
|
- var includeName = rule.include || rule;
|
|
|
- var toInsert = rules[includeName];
|
|
|
- } else if (Array.isArray(rule))
|
|
|
- toInsert = rule;
|
|
|
-
|
|
|
- if (toInsert) {
|
|
|
- var args = [i, 1].concat(toInsert);
|
|
|
- if (rule.noEscape)
|
|
|
- args = args.filter(function(x) {return !x.next;});
|
|
|
- state.splice.apply(state, args);
|
|
|
- i--;
|
|
|
- toInsert = null;
|
|
|
- }
|
|
|
-
|
|
|
- if (rule.keywordMap) {
|
|
|
- rule.token = this.createKeywordMapper(
|
|
|
- rule.keywordMap, rule.defaultToken || "text", rule.caseInsensitive
|
|
|
- );
|
|
|
- delete rule.defaultToken;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- Object.keys(rules).forEach(processState, this);
|
|
|
- };
|
|
|
-
|
|
|
- this.createKeywordMapper = function(map, defaultToken, ignoreCase, splitChar) {
|
|
|
- var keywords = Object.create(null);
|
|
|
- Object.keys(map).forEach(function(className) {
|
|
|
- var a = map[className];
|
|
|
- if (ignoreCase)
|
|
|
- a = a.toLowerCase();
|
|
|
- var list = a.split(splitChar || "|");
|
|
|
- for (var i = list.length; i--; )
|
|
|
- keywords[list[i]] = className;
|
|
|
- });
|
|
|
- if (Object.getPrototypeOf(keywords)) {
|
|
|
- keywords.__proto__ = null;
|
|
|
- }
|
|
|
- this.$keywordList = Object.keys(keywords);
|
|
|
- map = null;
|
|
|
- return ignoreCase
|
|
|
- ? function(value) {return keywords[value.toLowerCase()] || defaultToken }
|
|
|
- : function(value) {return keywords[value] || defaultToken };
|
|
|
- };
|
|
|
-
|
|
|
- this.getKeywords = function() {
|
|
|
- return this.$keywords;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(TextHighlightRules.prototype);
|
|
|
-
|
|
|
-exports.TextHighlightRules = TextHighlightRules;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/behaviour",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Behaviour = function() {
|
|
|
- this.$behaviours = {};
|
|
|
-};
|
|
|
-
|
|
|
-(function () {
|
|
|
-
|
|
|
- this.add = function (name, action, callback) {
|
|
|
- switch (undefined) {
|
|
|
- case this.$behaviours:
|
|
|
- this.$behaviours = {};
|
|
|
- case this.$behaviours[name]:
|
|
|
- this.$behaviours[name] = {};
|
|
|
- }
|
|
|
- this.$behaviours[name][action] = callback;
|
|
|
- }
|
|
|
-
|
|
|
- this.addBehaviours = function (behaviours) {
|
|
|
- for (var key in behaviours) {
|
|
|
- for (var action in behaviours[key]) {
|
|
|
- this.add(key, action, behaviours[key][action]);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- this.remove = function (name) {
|
|
|
- if (this.$behaviours && this.$behaviours[name]) {
|
|
|
- delete this.$behaviours[name];
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- this.inherit = function (mode, filter) {
|
|
|
- if (typeof mode === "function") {
|
|
|
- var behaviours = new mode().getBehaviours(filter);
|
|
|
- } else {
|
|
|
- var behaviours = mode.getBehaviours(filter);
|
|
|
- }
|
|
|
- this.addBehaviours(behaviours);
|
|
|
- }
|
|
|
-
|
|
|
- this.getBehaviours = function (filter) {
|
|
|
- if (!filter) {
|
|
|
- return this.$behaviours;
|
|
|
- } else {
|
|
|
- var ret = {}
|
|
|
- for (var i = 0; i < filter.length; i++) {
|
|
|
- if (this.$behaviours[filter[i]]) {
|
|
|
- ret[filter[i]] = this.$behaviours[filter[i]];
|
|
|
- }
|
|
|
- }
|
|
|
- return ret;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
-}).call(Behaviour.prototype);
|
|
|
-
|
|
|
-exports.Behaviour = Behaviour;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/unicode",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-exports.packages = {};
|
|
|
-
|
|
|
-addUnicodePackage({
|
|
|
- L: "0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",
|
|
|
- Ll: "0061-007A00AA00B500BA00DF-00F600F8-00FF01010103010501070109010B010D010F01110113011501170119011B011D011F01210123012501270129012B012D012F01310133013501370138013A013C013E014001420144014601480149014B014D014F01510153015501570159015B015D015F01610163016501670169016B016D016F0171017301750177017A017C017E-0180018301850188018C018D019201950199-019B019E01A101A301A501A801AA01AB01AD01B001B401B601B901BA01BD-01BF01C601C901CC01CE01D001D201D401D601D801DA01DC01DD01DF01E101E301E501E701E901EB01ED01EF01F001F301F501F901FB01FD01FF02010203020502070209020B020D020F02110213021502170219021B021D021F02210223022502270229022B022D022F02310233-0239023C023F0240024202470249024B024D024F-02930295-02AF037103730377037B-037D039003AC-03CE03D003D103D5-03D703D903DB03DD03DF03E103E303E503E703E903EB03ED03EF-03F303F503F803FB03FC0430-045F04610463046504670469046B046D046F04710473047504770479047B047D047F0481048B048D048F04910493049504970499049B049D049F04A104A304A504A704A904AB04AD04AF04B104B304B504B704B904BB04BD04BF04C204C404C604C804CA04CC04CE04CF04D104D304D504D704D904DB04DD04DF04E104E304E504E704E904EB04ED04EF04F104F304F504F704F904FB04FD04FF05010503050505070509050B050D050F05110513051505170519051B051D051F0521052305250561-05871D00-1D2B1D62-1D771D79-1D9A1E011E031E051E071E091E0B1E0D1E0F1E111E131E151E171E191E1B1E1D1E1F1E211E231E251E271E291E2B1E2D1E2F1E311E331E351E371E391E3B1E3D1E3F1E411E431E451E471E491E4B1E4D1E4F1E511E531E551E571E591E5B1E5D1E5F1E611E631E651E671E691E6B1E6D1E6F1E711E731E751E771E791E7B1E7D1E7F1E811E831E851E871E891E8B1E8D1E8F1E911E931E95-1E9D1E9F1EA11EA31EA51EA71EA91EAB1EAD1EAF1EB11EB31EB51EB71EB91EBB1EBD1EBF1EC11EC31EC51EC71EC91ECB1ECD1ECF1ED11ED31ED51ED71ED91EDB1EDD1EDF1EE11EE31EE51EE71EE91EEB1EED1EEF1EF11EF31EF51EF71EF91EFB1EFD1EFF-1F071F10-1F151F20-1F271F30-1F371F40-1F451F50-1F571F60-1F671F70-1F7D1F80-1F871F90-1F971FA0-1FA71FB0-1FB41FB61FB71FBE1FC2-1FC41FC61FC71FD0-1FD31FD61FD71FE0-1FE71FF2-1FF41FF61FF7210A210E210F2113212F21342139213C213D2146-2149214E21842C30-2C5E2C612C652C662C682C6A2C6C2C712C732C742C76-2C7C2C812C832C852C872C892C8B2C8D2C8F2C912C932C952C972C992C9B2C9D2C9F2CA12CA32CA52CA72CA92CAB2CAD2CAF2CB12CB32CB52CB72CB92CBB2CBD2CBF2CC12CC32CC52CC72CC92CCB2CCD2CCF2CD12CD32CD52CD72CD92CDB2CDD2CDF2CE12CE32CE42CEC2CEE2D00-2D25A641A643A645A647A649A64BA64DA64FA651A653A655A657A659A65BA65DA65FA663A665A667A669A66BA66DA681A683A685A687A689A68BA68DA68FA691A693A695A697A723A725A727A729A72BA72DA72F-A731A733A735A737A739A73BA73DA73FA741A743A745A747A749A74BA74DA74FA751A753A755A757A759A75BA75DA75FA761A763A765A767A769A76BA76DA76FA771-A778A77AA77CA77FA781A783A785A787A78CFB00-FB06FB13-FB17FF41-FF5A",
|
|
|
- Lu: "0041-005A00C0-00D600D8-00DE01000102010401060108010A010C010E01100112011401160118011A011C011E01200122012401260128012A012C012E01300132013401360139013B013D013F0141014301450147014A014C014E01500152015401560158015A015C015E01600162016401660168016A016C016E017001720174017601780179017B017D018101820184018601870189-018B018E-0191019301940196-0198019C019D019F01A001A201A401A601A701A901AC01AE01AF01B1-01B301B501B701B801BC01C401C701CA01CD01CF01D101D301D501D701D901DB01DE01E001E201E401E601E801EA01EC01EE01F101F401F6-01F801FA01FC01FE02000202020402060208020A020C020E02100212021402160218021A021C021E02200222022402260228022A022C022E02300232023A023B023D023E02410243-02460248024A024C024E03700372037603860388-038A038C038E038F0391-03A103A3-03AB03CF03D2-03D403D803DA03DC03DE03E003E203E403E603E803EA03EC03EE03F403F703F903FA03FD-042F04600462046404660468046A046C046E04700472047404760478047A047C047E0480048A048C048E04900492049404960498049A049C049E04A004A204A404A604A804AA04AC04AE04B004B204B404B604B804BA04BC04BE04C004C104C304C504C704C904CB04CD04D004D204D404D604D804DA04DC04DE04E004E204E404E604E804EA04EC04EE04F004F204F404F604F804FA04FC04FE05000502050405060508050A050C050E05100512051405160518051A051C051E0520052205240531-055610A0-10C51E001E021E041E061E081E0A1E0C1E0E1E101E121E141E161E181E1A1E1C1E1E1E201E221E241E261E281E2A1E2C1E2E1E301E321E341E361E381E3A1E3C1E3E1E401E421E441E461E481E4A1E4C1E4E1E501E521E541E561E581E5A1E5C1E5E1E601E621E641E661E681E6A1E6C1E6E1E701E721E741E761E781E7A1E7C1E7E1E801E821E841E861E881E8A1E8C1E8E1E901E921E941E9E1EA01EA21EA41EA61EA81EAA1EAC1EAE1EB01EB21EB41EB61EB81EBA1EBC1EBE1EC01EC21EC41EC61EC81ECA1ECC1ECE1ED01ED21ED41ED61ED81EDA1EDC1EDE1EE01EE21EE41EE61EE81EEA1EEC1EEE1EF01EF21EF41EF61EF81EFA1EFC1EFE1F08-1F0F1F18-1F1D1F28-1F2F1F38-1F3F1F48-1F4D1F591F5B1F5D1F5F1F68-1F6F1FB8-1FBB1FC8-1FCB1FD8-1FDB1FE8-1FEC1FF8-1FFB21022107210B-210D2110-211221152119-211D212421262128212A-212D2130-2133213E213F214521832C00-2C2E2C602C62-2C642C672C692C6B2C6D-2C702C722C752C7E-2C802C822C842C862C882C8A2C8C2C8E2C902C922C942C962C982C9A2C9C2C9E2CA02CA22CA42CA62CA82CAA2CAC2CAE2CB02CB22CB42CB62CB82CBA2CBC2CBE2CC02CC22CC42CC62CC82CCA2CCC2CCE2CD02CD22CD42CD62CD82CDA2CDC2CDE2CE02CE22CEB2CEDA640A642A644A646A648A64AA64CA64EA650A652A654A656A658A65AA65CA65EA662A664A666A668A66AA66CA680A682A684A686A688A68AA68CA68EA690A692A694A696A722A724A726A728A72AA72CA72EA732A734A736A738A73AA73CA73EA740A742A744A746A748A74AA74CA74EA750A752A754A756A758A75AA75CA75EA760A762A764A766A768A76AA76CA76EA779A77BA77DA77EA780A782A784A786A78BFF21-FF3A",
|
|
|
- Lt: "01C501C801CB01F21F88-1F8F1F98-1F9F1FA8-1FAF1FBC1FCC1FFC",
|
|
|
- Lm: "02B0-02C102C6-02D102E0-02E402EC02EE0374037A0559064006E506E607F407F507FA081A0824082809710E460EC610FC17D718431AA71C78-1C7D1D2C-1D611D781D9B-1DBF2071207F2090-20942C7D2D6F2E2F30053031-3035303B309D309E30FC-30FEA015A4F8-A4FDA60CA67FA717-A71FA770A788A9CFAA70AADDFF70FF9EFF9F",
|
|
|
- Lo: "01BB01C0-01C3029405D0-05EA05F0-05F20621-063F0641-064A066E066F0671-06D306D506EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA0800-08150904-0939093D09500958-096109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E450E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10D0-10FA1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317DC1820-18421844-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C771CE9-1CEC1CEE-1CF12135-21382D30-2D652D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE3006303C3041-3096309F30A1-30FA30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A014A016-A48CA4D0-A4F7A500-A60BA610-A61FA62AA62BA66EA6A0-A6E5A7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2AA00-AA28AA40-AA42AA44-AA4BAA60-AA6FAA71-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADBAADCABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF66-FF6FFF71-FF9DFFA0-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",
|
|
|
- M: "0300-036F0483-04890591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DE-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0903093C093E-094E0951-0955096209630981-098309BC09BE-09C409C709C809CB-09CD09D709E209E30A01-0A030A3C0A3E-0A420A470A480A4B-0A4D0A510A700A710A750A81-0A830ABC0ABE-0AC50AC7-0AC90ACB-0ACD0AE20AE30B01-0B030B3C0B3E-0B440B470B480B4B-0B4D0B560B570B620B630B820BBE-0BC20BC6-0BC80BCA-0BCD0BD70C01-0C030C3E-0C440C46-0C480C4A-0C4D0C550C560C620C630C820C830CBC0CBE-0CC40CC6-0CC80CCA-0CCD0CD50CD60CE20CE30D020D030D3E-0D440D46-0D480D4A-0D4D0D570D620D630D820D830DCA0DCF-0DD40DD60DD8-0DDF0DF20DF30E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F3E0F3F0F71-0F840F860F870F90-0F970F99-0FBC0FC6102B-103E1056-1059105E-10601062-10641067-106D1071-10741082-108D108F109A-109D135F1712-17141732-1734175217531772177317B6-17D317DD180B-180D18A91920-192B1930-193B19B0-19C019C819C91A17-1A1B1A55-1A5E1A60-1A7C1A7F1B00-1B041B34-1B441B6B-1B731B80-1B821BA1-1BAA1C24-1C371CD0-1CD21CD4-1CE81CED1CF21DC0-1DE61DFD-1DFF20D0-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66F-A672A67CA67DA6F0A6F1A802A806A80BA823-A827A880A881A8B4-A8C4A8E0-A8F1A926-A92DA947-A953A980-A983A9B3-A9C0AA29-AA36AA43AA4CAA4DAA7BAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE3-ABEAABECABEDFB1EFE00-FE0FFE20-FE26",
|
|
|
- Mn: "0300-036F0483-04870591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DF-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0902093C0941-0948094D0951-095509620963098109BC09C1-09C409CD09E209E30A010A020A3C0A410A420A470A480A4B-0A4D0A510A700A710A750A810A820ABC0AC1-0AC50AC70AC80ACD0AE20AE30B010B3C0B3F0B41-0B440B4D0B560B620B630B820BC00BCD0C3E-0C400C46-0C480C4A-0C4D0C550C560C620C630CBC0CBF0CC60CCC0CCD0CE20CE30D41-0D440D4D0D620D630DCA0DD2-0DD40DD60E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F71-0F7E0F80-0F840F860F870F90-0F970F99-0FBC0FC6102D-10301032-10371039103A103D103E10581059105E-10601071-1074108210851086108D109D135F1712-17141732-1734175217531772177317B7-17BD17C617C9-17D317DD180B-180D18A91920-19221927192819321939-193B1A171A181A561A58-1A5E1A601A621A65-1A6C1A73-1A7C1A7F1B00-1B031B341B36-1B3A1B3C1B421B6B-1B731B801B811BA2-1BA51BA81BA91C2C-1C331C361C371CD0-1CD21CD4-1CE01CE2-1CE81CED1DC0-1DE61DFD-1DFF20D0-20DC20E120E5-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66FA67CA67DA6F0A6F1A802A806A80BA825A826A8C4A8E0-A8F1A926-A92DA947-A951A980-A982A9B3A9B6-A9B9A9BCAA29-AA2EAA31AA32AA35AA36AA43AA4CAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE5ABE8ABEDFB1EFE00-FE0FFE20-FE26",
|
|
|
- Mc: "0903093E-09400949-094C094E0982098309BE-09C009C709C809CB09CC09D70A030A3E-0A400A830ABE-0AC00AC90ACB0ACC0B020B030B3E0B400B470B480B4B0B4C0B570BBE0BBF0BC10BC20BC6-0BC80BCA-0BCC0BD70C01-0C030C41-0C440C820C830CBE0CC0-0CC40CC70CC80CCA0CCB0CD50CD60D020D030D3E-0D400D46-0D480D4A-0D4C0D570D820D830DCF-0DD10DD8-0DDF0DF20DF30F3E0F3F0F7F102B102C10311038103B103C105610571062-10641067-106D108310841087-108C108F109A-109C17B617BE-17C517C717C81923-19261929-192B193019311933-193819B0-19C019C819C91A19-1A1B1A551A571A611A631A641A6D-1A721B041B351B3B1B3D-1B411B431B441B821BA11BA61BA71BAA1C24-1C2B1C341C351CE11CF2A823A824A827A880A881A8B4-A8C3A952A953A983A9B4A9B5A9BAA9BBA9BD-A9C0AA2FAA30AA33AA34AA4DAA7BABE3ABE4ABE6ABE7ABE9ABEAABEC",
|
|
|
- Me: "0488048906DE20DD-20E020E2-20E4A670-A672",
|
|
|
- N: "0030-003900B200B300B900BC-00BE0660-066906F0-06F907C0-07C90966-096F09E6-09EF09F4-09F90A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BF20C66-0C6F0C78-0C7E0CE6-0CEF0D66-0D750E50-0E590ED0-0ED90F20-0F331040-10491090-10991369-137C16EE-16F017E0-17E917F0-17F91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C5920702074-20792080-20892150-21822185-21892460-249B24EA-24FF2776-27932CFD30073021-30293038-303A3192-31953220-32293251-325F3280-328932B1-32BFA620-A629A6E6-A6EFA830-A835A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",
|
|
|
- Nd: "0030-00390660-066906F0-06F907C0-07C90966-096F09E6-09EF0A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BEF0C66-0C6F0CE6-0CEF0D66-0D6F0E50-0E590ED0-0ED90F20-0F291040-10491090-109917E0-17E91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C59A620-A629A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",
|
|
|
- Nl: "16EE-16F02160-21822185-218830073021-30293038-303AA6E6-A6EF",
|
|
|
- No: "00B200B300B900BC-00BE09F4-09F90BF0-0BF20C78-0C7E0D70-0D750F2A-0F331369-137C17F0-17F920702074-20792080-20892150-215F21892460-249B24EA-24FF2776-27932CFD3192-31953220-32293251-325F3280-328932B1-32BFA830-A835",
|
|
|
- P: "0021-00230025-002A002C-002F003A003B003F0040005B-005D005F007B007D00A100AB00B700BB00BF037E0387055A-055F0589058A05BE05C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F3A-0F3D0F850FD0-0FD4104A-104F10FB1361-13681400166D166E169B169C16EB-16ED1735173617D4-17D617D8-17DA1800-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD32010-20272030-20432045-20512053-205E207D207E208D208E2329232A2768-277527C527C627E6-27EF2983-299829D8-29DB29FC29FD2CF9-2CFC2CFE2CFF2E00-2E2E2E302E313001-30033008-30113014-301F3030303D30A030FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFD3EFD3FFE10-FE19FE30-FE52FE54-FE61FE63FE68FE6AFE6BFF01-FF03FF05-FF0AFF0C-FF0FFF1AFF1BFF1FFF20FF3B-FF3DFF3FFF5BFF5DFF5F-FF65",
|
|
|
- Pd: "002D058A05BE140018062010-20152E172E1A301C303030A0FE31FE32FE58FE63FF0D",
|
|
|
- Ps: "0028005B007B0F3A0F3C169B201A201E2045207D208D23292768276A276C276E27702772277427C527E627E827EA27EC27EE2983298529872989298B298D298F299129932995299729D829DA29FC2E222E242E262E283008300A300C300E3010301430163018301A301DFD3EFE17FE35FE37FE39FE3BFE3DFE3FFE41FE43FE47FE59FE5BFE5DFF08FF3BFF5BFF5FFF62",
|
|
|
- Pe: "0029005D007D0F3B0F3D169C2046207E208E232A2769276B276D276F27712773277527C627E727E927EB27ED27EF298429862988298A298C298E2990299229942996299829D929DB29FD2E232E252E272E293009300B300D300F3011301530173019301B301E301FFD3FFE18FE36FE38FE3AFE3CFE3EFE40FE42FE44FE48FE5AFE5CFE5EFF09FF3DFF5DFF60FF63",
|
|
|
- Pi: "00AB2018201B201C201F20392E022E042E092E0C2E1C2E20",
|
|
|
- Pf: "00BB2019201D203A2E032E052E0A2E0D2E1D2E21",
|
|
|
- Pc: "005F203F20402054FE33FE34FE4D-FE4FFF3F",
|
|
|
- Po: "0021-00230025-0027002A002C002E002F003A003B003F0040005C00A100B700BF037E0387055A-055F058905C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F850FD0-0FD4104A-104F10FB1361-1368166D166E16EB-16ED1735173617D4-17D617D8-17DA1800-18051807-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD3201620172020-20272030-2038203B-203E2041-20432047-205120532055-205E2CF9-2CFC2CFE2CFF2E002E012E06-2E082E0B2E0E-2E162E182E192E1B2E1E2E1F2E2A-2E2E2E302E313001-3003303D30FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFE10-FE16FE19FE30FE45FE46FE49-FE4CFE50-FE52FE54-FE57FE5F-FE61FE68FE6AFE6BFF01-FF03FF05-FF07FF0AFF0CFF0EFF0FFF1AFF1BFF1FFF20FF3CFF61FF64FF65",
|
|
|
- S: "0024002B003C-003E005E0060007C007E00A2-00A900AC00AE-00B100B400B600B800D700F702C2-02C502D2-02DF02E5-02EB02ED02EF-02FF03750384038503F604820606-0608060B060E060F06E906FD06FE07F609F209F309FA09FB0AF10B700BF3-0BFA0C7F0CF10CF20D790E3F0F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-139917DB194019E0-19FF1B61-1B6A1B74-1B7C1FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE20442052207A-207C208A-208C20A0-20B8210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B2140-2144214A-214D214F2190-2328232B-23E82400-24262440-244A249C-24E92500-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE27C0-27C427C7-27CA27CC27D0-27E527F0-29822999-29D729DC-29FB29FE-2B4C2B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F309B309C319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A700-A716A720A721A789A78AA828-A82BA836-A839AA77-AA79FB29FDFCFDFDFE62FE64-FE66FE69FF04FF0BFF1C-FF1EFF3EFF40FF5CFF5EFFE0-FFE6FFE8-FFEEFFFCFFFD",
|
|
|
- Sm: "002B003C-003E007C007E00AC00B100D700F703F60606-060820442052207A-207C208A-208C2140-2144214B2190-2194219A219B21A021A321A621AE21CE21CF21D221D421F4-22FF2308-230B23202321237C239B-23B323DC-23E125B725C125F8-25FF266F27C0-27C427C7-27CA27CC27D0-27E527F0-27FF2900-29822999-29D729DC-29FB29FE-2AFF2B30-2B442B47-2B4CFB29FE62FE64-FE66FF0BFF1C-FF1EFF5CFF5EFFE2FFE9-FFEC",
|
|
|
- Sc: "002400A2-00A5060B09F209F309FB0AF10BF90E3F17DB20A0-20B8A838FDFCFE69FF04FFE0FFE1FFE5FFE6",
|
|
|
- Sk: "005E006000A800AF00B400B802C2-02C502D2-02DF02E5-02EB02ED02EF-02FF0375038403851FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE309B309CA700-A716A720A721A789A78AFF3EFF40FFE3",
|
|
|
- So: "00A600A700A900AE00B000B60482060E060F06E906FD06FE07F609FA0B700BF3-0BF80BFA0C7F0CF10CF20D790F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-1399194019E0-19FF1B61-1B6A1B74-1B7C210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B214A214C214D214F2195-2199219C-219F21A121A221A421A521A7-21AD21AF-21CD21D021D121D321D5-21F32300-2307230C-231F2322-2328232B-237B237D-239A23B4-23DB23E2-23E82400-24262440-244A249C-24E92500-25B625B8-25C025C2-25F72600-266E2670-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE2800-28FF2B00-2B2F2B452B462B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A828-A82BA836A837A839AA77-AA79FDFDFFE4FFE8FFEDFFEEFFFCFFFD",
|
|
|
- Z: "002000A01680180E2000-200A20282029202F205F3000",
|
|
|
- Zs: "002000A01680180E2000-200A202F205F3000",
|
|
|
- Zl: "2028",
|
|
|
- Zp: "2029",
|
|
|
- C: "0000-001F007F-009F00AD03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-0605061C061D0620065F06DD070E070F074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17B417B517DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF200B-200F202A-202E2060-206F20722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-F8FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFD-FF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFFBFFFEFFFF",
|
|
|
- Cc: "0000-001F007F-009F",
|
|
|
- Cf: "00AD0600-060306DD070F17B417B5200B-200F202A-202E2060-2064206A-206FFEFFFFF9-FFFB",
|
|
|
- Co: "E000-F8FF",
|
|
|
- Cs: "D800-DFFF",
|
|
|
- Cn: "03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-05FF06040605061C061D0620065F070E074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF2065-206920722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-D7FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFDFEFEFF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFF8FFFEFFFF"
|
|
|
-});
|
|
|
-
|
|
|
-function addUnicodePackage (pack) {
|
|
|
- var codePoint = /\w{4}/g;
|
|
|
- for (var name in pack)
|
|
|
- exports.packages[name] = pack[name].replace(codePoint, "\\u$&");
|
|
|
-};
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/token_iterator",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-var TokenIterator = function(session, initialRow, initialColumn) {
|
|
|
- this.$session = session;
|
|
|
- this.$row = initialRow;
|
|
|
- this.$rowTokens = session.getTokens(initialRow);
|
|
|
-
|
|
|
- var token = session.getTokenAt(initialRow, initialColumn);
|
|
|
- this.$tokenIndex = token ? token.index : -1;
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.stepBackward = function() {
|
|
|
- this.$tokenIndex -= 1;
|
|
|
-
|
|
|
- while (this.$tokenIndex < 0) {
|
|
|
- this.$row -= 1;
|
|
|
- if (this.$row < 0) {
|
|
|
- this.$row = 0;
|
|
|
- return null;
|
|
|
- }
|
|
|
-
|
|
|
- this.$rowTokens = this.$session.getTokens(this.$row);
|
|
|
- this.$tokenIndex = this.$rowTokens.length - 1;
|
|
|
- }
|
|
|
-
|
|
|
- return this.$rowTokens[this.$tokenIndex];
|
|
|
- };
|
|
|
- this.stepForward = function() {
|
|
|
- this.$tokenIndex += 1;
|
|
|
- var rowCount;
|
|
|
- while (this.$tokenIndex >= this.$rowTokens.length) {
|
|
|
- this.$row += 1;
|
|
|
- if (!rowCount)
|
|
|
- rowCount = this.$session.getLength();
|
|
|
- if (this.$row >= rowCount) {
|
|
|
- this.$row = rowCount - 1;
|
|
|
- return null;
|
|
|
- }
|
|
|
-
|
|
|
- this.$rowTokens = this.$session.getTokens(this.$row);
|
|
|
- this.$tokenIndex = 0;
|
|
|
- }
|
|
|
-
|
|
|
- return this.$rowTokens[this.$tokenIndex];
|
|
|
- };
|
|
|
- this.getCurrentToken = function () {
|
|
|
- return this.$rowTokens[this.$tokenIndex];
|
|
|
- };
|
|
|
- this.getCurrentTokenRow = function () {
|
|
|
- return this.$row;
|
|
|
- };
|
|
|
- this.getCurrentTokenColumn = function() {
|
|
|
- var rowTokens = this.$rowTokens;
|
|
|
- var tokenIndex = this.$tokenIndex;
|
|
|
- var column = rowTokens[tokenIndex].start;
|
|
|
- if (column !== undefined)
|
|
|
- return column;
|
|
|
-
|
|
|
- column = 0;
|
|
|
- while (tokenIndex > 0) {
|
|
|
- tokenIndex -= 1;
|
|
|
- column += rowTokens[tokenIndex].value.length;
|
|
|
- }
|
|
|
-
|
|
|
- return column;
|
|
|
- };
|
|
|
- this.getCurrentTokenPosition = function() {
|
|
|
- return {row: this.$row, column: this.getCurrentTokenColumn()};
|
|
|
- };
|
|
|
-
|
|
|
-}).call(TokenIterator.prototype);
|
|
|
-
|
|
|
-exports.TokenIterator = TokenIterator;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/text",["require","exports","module","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Tokenizer = require("../tokenizer").Tokenizer;
|
|
|
-var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
|
-var Behaviour = require("./behaviour").Behaviour;
|
|
|
-var unicode = require("../unicode");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var TokenIterator = require("../token_iterator").TokenIterator;
|
|
|
-var Range = require("../range").Range;
|
|
|
-
|
|
|
-var Mode = function() {
|
|
|
- this.HighlightRules = TextHighlightRules;
|
|
|
- this.$behaviour = new Behaviour();
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.tokenRe = new RegExp("^["
|
|
|
- + unicode.packages.L
|
|
|
- + unicode.packages.Mn + unicode.packages.Mc
|
|
|
- + unicode.packages.Nd
|
|
|
- + unicode.packages.Pc + "\\$_]+", "g"
|
|
|
- );
|
|
|
-
|
|
|
- this.nonTokenRe = new RegExp("^(?:[^"
|
|
|
- + unicode.packages.L
|
|
|
- + unicode.packages.Mn + unicode.packages.Mc
|
|
|
- + unicode.packages.Nd
|
|
|
- + unicode.packages.Pc + "\\$_]|\\s])+", "g"
|
|
|
- );
|
|
|
-
|
|
|
- this.getTokenizer = function() {
|
|
|
- if (!this.$tokenizer) {
|
|
|
- this.$highlightRules = this.$highlightRules || new this.HighlightRules();
|
|
|
- this.$tokenizer = new Tokenizer(this.$highlightRules.getRules());
|
|
|
- }
|
|
|
- return this.$tokenizer;
|
|
|
- };
|
|
|
-
|
|
|
- this.lineCommentStart = "";
|
|
|
- this.blockComment = "";
|
|
|
-
|
|
|
- this.toggleCommentLines = function(state, session, startRow, endRow) {
|
|
|
- var doc = session.doc;
|
|
|
-
|
|
|
- var ignoreBlankLines = true;
|
|
|
- var shouldRemove = true;
|
|
|
- var minIndent = Infinity;
|
|
|
- var tabSize = session.getTabSize();
|
|
|
- var insertAtTabStop = false;
|
|
|
-
|
|
|
- if (!this.lineCommentStart) {
|
|
|
- if (!this.blockComment)
|
|
|
- return false;
|
|
|
- var lineCommentStart = this.blockComment.start;
|
|
|
- var lineCommentEnd = this.blockComment.end;
|
|
|
- var regexpStart = new RegExp("^(\\s*)(?:" + lang.escapeRegExp(lineCommentStart) + ")");
|
|
|
- var regexpEnd = new RegExp("(?:" + lang.escapeRegExp(lineCommentEnd) + ")\\s*$");
|
|
|
-
|
|
|
- var comment = function(line, i) {
|
|
|
- if (testRemove(line, i))
|
|
|
- return;
|
|
|
- if (!ignoreBlankLines || /\S/.test(line)) {
|
|
|
- doc.insertInLine({row: i, column: line.length}, lineCommentEnd);
|
|
|
- doc.insertInLine({row: i, column: minIndent}, lineCommentStart);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- var uncomment = function(line, i) {
|
|
|
- var m;
|
|
|
- if (m = line.match(regexpEnd))
|
|
|
- doc.removeInLine(i, line.length - m[0].length, line.length);
|
|
|
- if (m = line.match(regexpStart))
|
|
|
- doc.removeInLine(i, m[1].length, m[0].length);
|
|
|
- };
|
|
|
-
|
|
|
- var testRemove = function(line, row) {
|
|
|
- if (regexpStart.test(line))
|
|
|
- return true;
|
|
|
- var tokens = session.getTokens(row);
|
|
|
- for (var i = 0; i < tokens.length; i++) {
|
|
|
- if (tokens[i].type === 'comment')
|
|
|
- return true;
|
|
|
- }
|
|
|
- };
|
|
|
- } else {
|
|
|
- if (Array.isArray(this.lineCommentStart)) {
|
|
|
- var regexpStart = this.lineCommentStart.map(lang.escapeRegExp).join("|");
|
|
|
- var lineCommentStart = this.lineCommentStart[0];
|
|
|
- } else {
|
|
|
- var regexpStart = lang.escapeRegExp(this.lineCommentStart);
|
|
|
- var lineCommentStart = this.lineCommentStart;
|
|
|
- }
|
|
|
- regexpStart = new RegExp("^(\\s*)(?:" + regexpStart + ") ?");
|
|
|
-
|
|
|
- insertAtTabStop = session.getUseSoftTabs();
|
|
|
-
|
|
|
- var uncomment = function(line, i) {
|
|
|
- var m = line.match(regexpStart);
|
|
|
- if (!m) return;
|
|
|
- var start = m[1].length, end = m[0].length;
|
|
|
- if (!shouldInsertSpace(line, start, end) && m[0][end - 1] == " ")
|
|
|
- end--;
|
|
|
- doc.removeInLine(i, start, end);
|
|
|
- };
|
|
|
- var commentWithSpace = lineCommentStart + " ";
|
|
|
- var comment = function(line, i) {
|
|
|
- if (!ignoreBlankLines || /\S/.test(line)) {
|
|
|
- if (shouldInsertSpace(line, minIndent, minIndent))
|
|
|
- doc.insertInLine({row: i, column: minIndent}, commentWithSpace);
|
|
|
- else
|
|
|
- doc.insertInLine({row: i, column: minIndent}, lineCommentStart);
|
|
|
- }
|
|
|
- };
|
|
|
- var testRemove = function(line, i) {
|
|
|
- return regexpStart.test(line);
|
|
|
- };
|
|
|
-
|
|
|
- var shouldInsertSpace = function(line, before, after) {
|
|
|
- var spaces = 0;
|
|
|
- while (before-- && line.charAt(before) == " ")
|
|
|
- spaces++;
|
|
|
- if (spaces % tabSize != 0)
|
|
|
- return false;
|
|
|
- var spaces = 0;
|
|
|
- while (line.charAt(after++) == " ")
|
|
|
- spaces++;
|
|
|
- if (tabSize > 2)
|
|
|
- return spaces % tabSize != tabSize - 1;
|
|
|
- else
|
|
|
- return spaces % tabSize == 0;
|
|
|
- return true;
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- function iter(fun) {
|
|
|
- for (var i = startRow; i <= endRow; i++)
|
|
|
- fun(doc.getLine(i), i);
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- var minEmptyLength = Infinity;
|
|
|
- iter(function(line, i) {
|
|
|
- var indent = line.search(/\S/);
|
|
|
- if (indent !== -1) {
|
|
|
- if (indent < minIndent)
|
|
|
- minIndent = indent;
|
|
|
- if (shouldRemove && !testRemove(line, i))
|
|
|
- shouldRemove = false;
|
|
|
- } else if (minEmptyLength > line.length) {
|
|
|
- minEmptyLength = line.length;
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- if (minIndent == Infinity) {
|
|
|
- minIndent = minEmptyLength;
|
|
|
- ignoreBlankLines = false;
|
|
|
- shouldRemove = false;
|
|
|
- }
|
|
|
-
|
|
|
- if (insertAtTabStop && minIndent % tabSize != 0)
|
|
|
- minIndent = Math.floor(minIndent / tabSize) * tabSize;
|
|
|
-
|
|
|
- iter(shouldRemove ? uncomment : comment);
|
|
|
- };
|
|
|
-
|
|
|
- this.toggleBlockComment = function(state, session, range, cursor) {
|
|
|
- var comment = this.blockComment;
|
|
|
- if (!comment)
|
|
|
- return;
|
|
|
- if (!comment.start && comment[0])
|
|
|
- comment = comment[0];
|
|
|
-
|
|
|
- var iterator = new TokenIterator(session, cursor.row, cursor.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
-
|
|
|
- var sel = session.selection;
|
|
|
- var initialRange = session.selection.toOrientedRange();
|
|
|
- var startRow, colDiff;
|
|
|
-
|
|
|
- if (token && /comment/.test(token.type)) {
|
|
|
- var startRange, endRange;
|
|
|
- while (token && /comment/.test(token.type)) {
|
|
|
- var i = token.value.indexOf(comment.start);
|
|
|
- if (i != -1) {
|
|
|
- var row = iterator.getCurrentTokenRow();
|
|
|
- var column = iterator.getCurrentTokenColumn() + i;
|
|
|
- startRange = new Range(row, column, row, column + comment.start.length);
|
|
|
- break;
|
|
|
- }
|
|
|
- token = iterator.stepBackward();
|
|
|
- }
|
|
|
-
|
|
|
- var iterator = new TokenIterator(session, cursor.row, cursor.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- while (token && /comment/.test(token.type)) {
|
|
|
- var i = token.value.indexOf(comment.end);
|
|
|
- if (i != -1) {
|
|
|
- var row = iterator.getCurrentTokenRow();
|
|
|
- var column = iterator.getCurrentTokenColumn() + i;
|
|
|
- endRange = new Range(row, column, row, column + comment.end.length);
|
|
|
- break;
|
|
|
- }
|
|
|
- token = iterator.stepForward();
|
|
|
- }
|
|
|
- if (endRange)
|
|
|
- session.remove(endRange);
|
|
|
- if (startRange) {
|
|
|
- session.remove(startRange);
|
|
|
- startRow = startRange.start.row;
|
|
|
- colDiff = -comment.start.length;
|
|
|
- }
|
|
|
- } else {
|
|
|
- colDiff = comment.start.length;
|
|
|
- startRow = range.start.row;
|
|
|
- session.insert(range.end, comment.end);
|
|
|
- session.insert(range.start, comment.start);
|
|
|
- }
|
|
|
- if (initialRange.start.row == startRow)
|
|
|
- initialRange.start.column += colDiff;
|
|
|
- if (initialRange.end.row == startRow)
|
|
|
- initialRange.end.column += colDiff;
|
|
|
- session.selection.fromOrientedRange(initialRange);
|
|
|
- };
|
|
|
-
|
|
|
- this.getNextLineIndent = function(state, line, tab) {
|
|
|
- return this.$getIndent(line);
|
|
|
- };
|
|
|
-
|
|
|
- this.checkOutdent = function(state, line, input) {
|
|
|
- return false;
|
|
|
- };
|
|
|
-
|
|
|
- this.autoOutdent = function(state, doc, row) {
|
|
|
- };
|
|
|
-
|
|
|
- this.$getIndent = function(line) {
|
|
|
- return line.match(/^\s*/)[0];
|
|
|
- };
|
|
|
-
|
|
|
- this.createWorker = function(session) {
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this.createModeDelegates = function (mapping) {
|
|
|
- this.$embeds = [];
|
|
|
- this.$modes = {};
|
|
|
- for (var i in mapping) {
|
|
|
- if (mapping[i]) {
|
|
|
- this.$embeds.push(i);
|
|
|
- this.$modes[i] = new mapping[i]();
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- var delegations = ['toggleBlockComment', 'toggleCommentLines', 'getNextLineIndent',
|
|
|
- 'checkOutdent', 'autoOutdent', 'transformAction', 'getCompletions'];
|
|
|
-
|
|
|
- for (var i = 0; i < delegations.length; i++) {
|
|
|
- (function(scope) {
|
|
|
- var functionName = delegations[i];
|
|
|
- var defaultHandler = scope[functionName];
|
|
|
- scope[delegations[i]] = function() {
|
|
|
- return this.$delegator(functionName, arguments, defaultHandler);
|
|
|
- };
|
|
|
- } (this));
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$delegator = function(method, args, defaultHandler) {
|
|
|
- var state = args[0];
|
|
|
- if (typeof state != "string")
|
|
|
- state = state[0];
|
|
|
- for (var i = 0; i < this.$embeds.length; i++) {
|
|
|
- if (!this.$modes[this.$embeds[i]]) continue;
|
|
|
-
|
|
|
- var split = state.split(this.$embeds[i]);
|
|
|
- if (!split[0] && split[1]) {
|
|
|
- args[0] = split[1];
|
|
|
- var mode = this.$modes[this.$embeds[i]];
|
|
|
- return mode[method].apply(mode, args);
|
|
|
- }
|
|
|
- }
|
|
|
- var ret = defaultHandler.apply(this, args);
|
|
|
- return defaultHandler ? ret : undefined;
|
|
|
- };
|
|
|
-
|
|
|
- this.transformAction = function(state, action, editor, session, param) {
|
|
|
- if (this.$behaviour) {
|
|
|
- var behaviours = this.$behaviour.getBehaviours();
|
|
|
- for (var key in behaviours) {
|
|
|
- if (behaviours[key][action]) {
|
|
|
- var ret = behaviours[key][action].apply(this, arguments);
|
|
|
- if (ret) {
|
|
|
- return ret;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.getKeywords = function(append) {
|
|
|
- if (!this.completionKeywords) {
|
|
|
- var rules = this.$tokenizer.rules;
|
|
|
- var completionKeywords = [];
|
|
|
- for (var rule in rules) {
|
|
|
- var ruleItr = rules[rule];
|
|
|
- for (var r = 0, l = ruleItr.length; r < l; r++) {
|
|
|
- if (typeof ruleItr[r].token === "string") {
|
|
|
- if (/keyword|support|storage/.test(ruleItr[r].token))
|
|
|
- completionKeywords.push(ruleItr[r].regex);
|
|
|
- }
|
|
|
- else if (typeof ruleItr[r].token === "object") {
|
|
|
- for (var a = 0, aLength = ruleItr[r].token.length; a < aLength; a++) {
|
|
|
- if (/keyword|support|storage/.test(ruleItr[r].token[a])) {
|
|
|
- var rule = ruleItr[r].regex.match(/\(.+?\)/g)[a];
|
|
|
- completionKeywords.push(rule.substr(1, rule.length - 2));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- this.completionKeywords = completionKeywords;
|
|
|
- }
|
|
|
- if (!append)
|
|
|
- return this.$keywordList;
|
|
|
- return completionKeywords.concat(this.$keywordList || []);
|
|
|
- };
|
|
|
-
|
|
|
- this.$createKeywordList = function() {
|
|
|
- if (!this.$highlightRules)
|
|
|
- this.getTokenizer();
|
|
|
- return this.$keywordList = this.$highlightRules.$keywordList || [];
|
|
|
- };
|
|
|
-
|
|
|
- this.getCompletions = function(state, session, pos, prefix) {
|
|
|
- var keywords = this.$keywordList || this.$createKeywordList();
|
|
|
- return keywords.map(function(word) {
|
|
|
- return {
|
|
|
- name: word,
|
|
|
- value: word,
|
|
|
- score: 0,
|
|
|
- meta: "keyword"
|
|
|
- };
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- this.$id = "ace/mode/text";
|
|
|
-}).call(Mode.prototype);
|
|
|
-
|
|
|
-exports.Mode = Mode;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/apply_delta",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-function throwDeltaError(delta, errorText){
|
|
|
- console.log("Invalid Delta:", delta);
|
|
|
- throw "Invalid Delta: " + errorText;
|
|
|
-}
|
|
|
-
|
|
|
-function positionInDocument(docLines, position) {
|
|
|
- return position.row >= 0 && position.row < docLines.length &&
|
|
|
- position.column >= 0 && position.column <= docLines[position.row].length;
|
|
|
-}
|
|
|
-
|
|
|
-function validateDelta(docLines, delta) {
|
|
|
- if (delta.action != "insert" && delta.action != "remove")
|
|
|
- throwDeltaError(delta, "delta.action must be 'insert' or 'remove'");
|
|
|
- if (!(delta.lines instanceof Array))
|
|
|
- throwDeltaError(delta, "delta.lines must be an Array");
|
|
|
- if (!delta.start || !delta.end)
|
|
|
- throwDeltaError(delta, "delta.start/end must be an present");
|
|
|
- var start = delta.start;
|
|
|
- if (!positionInDocument(docLines, delta.start))
|
|
|
- throwDeltaError(delta, "delta.start must be contained in document");
|
|
|
- var end = delta.end;
|
|
|
- if (delta.action == "remove" && !positionInDocument(docLines, end))
|
|
|
- throwDeltaError(delta, "delta.end must contained in document for 'remove' actions");
|
|
|
- var numRangeRows = end.row - start.row;
|
|
|
- var numRangeLastLineChars = (end.column - (numRangeRows == 0 ? start.column : 0));
|
|
|
- if (numRangeRows != delta.lines.length - 1 || delta.lines[numRangeRows].length != numRangeLastLineChars)
|
|
|
- throwDeltaError(delta, "delta.range must match delta lines");
|
|
|
-}
|
|
|
-
|
|
|
-exports.applyDelta = function(docLines, delta, doNotValidate) {
|
|
|
-
|
|
|
- var row = delta.start.row;
|
|
|
- var startColumn = delta.start.column;
|
|
|
- var line = docLines[row] || "";
|
|
|
- switch (delta.action) {
|
|
|
- case "insert":
|
|
|
- var lines = delta.lines;
|
|
|
- if (lines.length === 1) {
|
|
|
- docLines[row] = line.substring(0, startColumn) + delta.lines[0] + line.substring(startColumn);
|
|
|
- } else {
|
|
|
- var args = [row, 1].concat(delta.lines);
|
|
|
- docLines.splice.apply(docLines, args);
|
|
|
- docLines[row] = line.substring(0, startColumn) + docLines[row];
|
|
|
- docLines[row + delta.lines.length - 1] += line.substring(startColumn);
|
|
|
- }
|
|
|
- break;
|
|
|
- case "remove":
|
|
|
- var endColumn = delta.end.column;
|
|
|
- var endRow = delta.end.row;
|
|
|
- if (row === endRow) {
|
|
|
- docLines[row] = line.substring(0, startColumn) + line.substring(endColumn);
|
|
|
- } else {
|
|
|
- docLines.splice(
|
|
|
- row, endRow - row + 1,
|
|
|
- line.substring(0, startColumn) + docLines[endRow].substring(endColumn)
|
|
|
- );
|
|
|
- }
|
|
|
- break;
|
|
|
- }
|
|
|
-}
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-
|
|
|
-var Anchor = exports.Anchor = function(doc, row, column) {
|
|
|
- this.$onChange = this.onChange.bind(this);
|
|
|
- this.attach(doc);
|
|
|
-
|
|
|
- if (typeof column == "undefined")
|
|
|
- this.setPosition(row.row, row.column);
|
|
|
- else
|
|
|
- this.setPosition(row, column);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
- this.getPosition = function() {
|
|
|
- return this.$clipPositionToDocument(this.row, this.column);
|
|
|
- };
|
|
|
- this.getDocument = function() {
|
|
|
- return this.document;
|
|
|
- };
|
|
|
- this.$insertRight = false;
|
|
|
- this.onChange = function(delta) {
|
|
|
- if (delta.start.row == delta.end.row && delta.start.row != this.row)
|
|
|
- return;
|
|
|
-
|
|
|
- if (delta.start.row > this.row)
|
|
|
- return;
|
|
|
-
|
|
|
- var point = $getTransformedPoint(delta, {row: this.row, column: this.column}, this.$insertRight);
|
|
|
- this.setPosition(point.row, point.column, true);
|
|
|
- };
|
|
|
-
|
|
|
- function $pointsInOrder(point1, point2, equalPointsInOrder) {
|
|
|
- var bColIsAfter = equalPointsInOrder ? point1.column <= point2.column : point1.column < point2.column;
|
|
|
- return (point1.row < point2.row) || (point1.row == point2.row && bColIsAfter);
|
|
|
- }
|
|
|
-
|
|
|
- function $getTransformedPoint(delta, point, moveIfEqual) {
|
|
|
- var deltaIsInsert = delta.action == "insert";
|
|
|
- var deltaRowShift = (deltaIsInsert ? 1 : -1) * (delta.end.row - delta.start.row);
|
|
|
- var deltaColShift = (deltaIsInsert ? 1 : -1) * (delta.end.column - delta.start.column);
|
|
|
- var deltaStart = delta.start;
|
|
|
- var deltaEnd = deltaIsInsert ? deltaStart : delta.end; // Collapse insert range.
|
|
|
- if ($pointsInOrder(point, deltaStart, moveIfEqual)) {
|
|
|
- return {
|
|
|
- row: point.row,
|
|
|
- column: point.column
|
|
|
- };
|
|
|
- }
|
|
|
- if ($pointsInOrder(deltaEnd, point, !moveIfEqual)) {
|
|
|
- return {
|
|
|
- row: point.row + deltaRowShift,
|
|
|
- column: point.column + (point.row == deltaEnd.row ? deltaColShift : 0)
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- return {
|
|
|
- row: deltaStart.row,
|
|
|
- column: deltaStart.column
|
|
|
- };
|
|
|
- }
|
|
|
- this.setPosition = function(row, column, noClip) {
|
|
|
- var pos;
|
|
|
- if (noClip) {
|
|
|
- pos = {
|
|
|
- row: row,
|
|
|
- column: column
|
|
|
- };
|
|
|
- } else {
|
|
|
- pos = this.$clipPositionToDocument(row, column);
|
|
|
- }
|
|
|
-
|
|
|
- if (this.row == pos.row && this.column == pos.column)
|
|
|
- return;
|
|
|
-
|
|
|
- var old = {
|
|
|
- row: this.row,
|
|
|
- column: this.column
|
|
|
- };
|
|
|
-
|
|
|
- this.row = pos.row;
|
|
|
- this.column = pos.column;
|
|
|
- this._signal("change", {
|
|
|
- old: old,
|
|
|
- value: pos
|
|
|
- });
|
|
|
- };
|
|
|
- this.detach = function() {
|
|
|
- this.document.removeEventListener("change", this.$onChange);
|
|
|
- };
|
|
|
- this.attach = function(doc) {
|
|
|
- this.document = doc || this.document;
|
|
|
- this.document.on("change", this.$onChange);
|
|
|
- };
|
|
|
- this.$clipPositionToDocument = function(row, column) {
|
|
|
- var pos = {};
|
|
|
-
|
|
|
- if (row >= this.document.getLength()) {
|
|
|
- pos.row = Math.max(0, this.document.getLength() - 1);
|
|
|
- pos.column = this.document.getLine(pos.row).length;
|
|
|
- }
|
|
|
- else if (row < 0) {
|
|
|
- pos.row = 0;
|
|
|
- pos.column = 0;
|
|
|
- }
|
|
|
- else {
|
|
|
- pos.row = row;
|
|
|
- pos.column = Math.min(this.document.getLine(pos.row).length, Math.max(0, column));
|
|
|
- }
|
|
|
-
|
|
|
- if (column < 0)
|
|
|
- pos.column = 0;
|
|
|
-
|
|
|
- return pos;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Anchor.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var applyDelta = require("./apply_delta").applyDelta;
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-var Range = require("./range").Range;
|
|
|
-var Anchor = require("./anchor").Anchor;
|
|
|
-
|
|
|
-var Document = function(textOrLines) {
|
|
|
- this.$lines = [""];
|
|
|
- if (textOrLines.length === 0) {
|
|
|
- this.$lines = [""];
|
|
|
- } else if (Array.isArray(textOrLines)) {
|
|
|
- this.insertMergedLines({row: 0, column: 0}, textOrLines);
|
|
|
- } else {
|
|
|
- this.insert({row: 0, column:0}, textOrLines);
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
- this.setValue = function(text) {
|
|
|
- var len = this.getLength() - 1;
|
|
|
- this.remove(new Range(0, 0, len, this.getLine(len).length));
|
|
|
- this.insert({row: 0, column: 0}, text);
|
|
|
- };
|
|
|
- this.getValue = function() {
|
|
|
- return this.getAllLines().join(this.getNewLineCharacter());
|
|
|
- };
|
|
|
- this.createAnchor = function(row, column) {
|
|
|
- return new Anchor(this, row, column);
|
|
|
- };
|
|
|
- if ("aaa".split(/a/).length === 0) {
|
|
|
- this.$split = function(text) {
|
|
|
- return text.replace(/\r\n|\r/g, "\n").split("\n");
|
|
|
- };
|
|
|
- } else {
|
|
|
- this.$split = function(text) {
|
|
|
- return text.split(/\r\n|\r|\n/);
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- this.$detectNewLine = function(text) {
|
|
|
- var match = text.match(/^.*?(\r\n|\r|\n)/m);
|
|
|
- this.$autoNewLine = match ? match[1] : "\n";
|
|
|
- this._signal("changeNewLineMode");
|
|
|
- };
|
|
|
- this.getNewLineCharacter = function() {
|
|
|
- switch (this.$newLineMode) {
|
|
|
- case "windows":
|
|
|
- return "\r\n";
|
|
|
- case "unix":
|
|
|
- return "\n";
|
|
|
- default:
|
|
|
- return this.$autoNewLine || "\n";
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$autoNewLine = "";
|
|
|
- this.$newLineMode = "auto";
|
|
|
- this.setNewLineMode = function(newLineMode) {
|
|
|
- if (this.$newLineMode === newLineMode)
|
|
|
- return;
|
|
|
-
|
|
|
- this.$newLineMode = newLineMode;
|
|
|
- this._signal("changeNewLineMode");
|
|
|
- };
|
|
|
- this.getNewLineMode = function() {
|
|
|
- return this.$newLineMode;
|
|
|
- };
|
|
|
- this.isNewLine = function(text) {
|
|
|
- return (text == "\r\n" || text == "\r" || text == "\n");
|
|
|
- };
|
|
|
- this.getLine = function(row) {
|
|
|
- return this.$lines[row] || "";
|
|
|
- };
|
|
|
- this.getLines = function(firstRow, lastRow) {
|
|
|
- return this.$lines.slice(firstRow, lastRow + 1);
|
|
|
- };
|
|
|
- this.getAllLines = function() {
|
|
|
- return this.getLines(0, this.getLength());
|
|
|
- };
|
|
|
- this.getLength = function() {
|
|
|
- return this.$lines.length;
|
|
|
- };
|
|
|
- this.getTextRange = function(range) {
|
|
|
- return this.getLinesForRange(range).join(this.getNewLineCharacter());
|
|
|
- };
|
|
|
- this.getLinesForRange = function(range) {
|
|
|
- var lines;
|
|
|
- if (range.start.row === range.end.row) {
|
|
|
- lines = [this.getLine(range.start.row).substring(range.start.column, range.end.column)];
|
|
|
- } else {
|
|
|
- lines = this.getLines(range.start.row, range.end.row);
|
|
|
- lines[0] = (lines[0] || "").substring(range.start.column);
|
|
|
- var l = lines.length - 1;
|
|
|
- if (range.end.row - range.start.row == l)
|
|
|
- lines[l] = lines[l].substring(0, range.end.column);
|
|
|
- }
|
|
|
- return lines;
|
|
|
- };
|
|
|
- this.insertLines = function(row, lines) {
|
|
|
- console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead.");
|
|
|
- return this.insertFullLines(row, lines);
|
|
|
- };
|
|
|
- this.removeLines = function(firstRow, lastRow) {
|
|
|
- console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead.");
|
|
|
- return this.removeFullLines(firstRow, lastRow);
|
|
|
- };
|
|
|
- this.insertNewLine = function(position) {
|
|
|
- console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, [\'\', \'\']) instead.");
|
|
|
- return this.insertMergedLines(position, ["", ""]);
|
|
|
- };
|
|
|
- this.insert = function(position, text) {
|
|
|
- if (this.getLength() <= 1)
|
|
|
- this.$detectNewLine(text);
|
|
|
-
|
|
|
- return this.insertMergedLines(position, this.$split(text));
|
|
|
- };
|
|
|
- this.insertInLine = function(position, text) {
|
|
|
- var start = this.clippedPos(position.row, position.column);
|
|
|
- var end = this.pos(position.row, position.column + text.length);
|
|
|
-
|
|
|
- this.applyDelta({
|
|
|
- start: start,
|
|
|
- end: end,
|
|
|
- action: "insert",
|
|
|
- lines: [text]
|
|
|
- }, true);
|
|
|
-
|
|
|
- return this.clonePos(end);
|
|
|
- };
|
|
|
-
|
|
|
- this.clippedPos = function(row, column) {
|
|
|
- var length = this.getLength();
|
|
|
- if (row === undefined) {
|
|
|
- row = length;
|
|
|
- } else if (row < 0) {
|
|
|
- row = 0;
|
|
|
- } else if (row >= length) {
|
|
|
- row = length - 1;
|
|
|
- column = undefined;
|
|
|
- }
|
|
|
- var line = this.getLine(row);
|
|
|
- if (column == undefined)
|
|
|
- column = line.length;
|
|
|
- column = Math.min(Math.max(column, 0), line.length);
|
|
|
- return {row: row, column: column};
|
|
|
- };
|
|
|
-
|
|
|
- this.clonePos = function(pos) {
|
|
|
- return {row: pos.row, column: pos.column};
|
|
|
- };
|
|
|
-
|
|
|
- this.pos = function(row, column) {
|
|
|
- return {row: row, column: column};
|
|
|
- };
|
|
|
-
|
|
|
- this.$clipPosition = function(position) {
|
|
|
- var length = this.getLength();
|
|
|
- if (position.row >= length) {
|
|
|
- position.row = Math.max(0, length - 1);
|
|
|
- position.column = this.getLine(length - 1).length;
|
|
|
- } else {
|
|
|
- position.row = Math.max(0, position.row);
|
|
|
- position.column = Math.min(Math.max(position.column, 0), this.getLine(position.row).length);
|
|
|
- }
|
|
|
- return position;
|
|
|
- };
|
|
|
- this.insertFullLines = function(row, lines) {
|
|
|
- row = Math.min(Math.max(row, 0), this.getLength());
|
|
|
- var column = 0;
|
|
|
- if (row < this.getLength()) {
|
|
|
- lines = lines.concat([""]);
|
|
|
- column = 0;
|
|
|
- } else {
|
|
|
- lines = [""].concat(lines);
|
|
|
- row--;
|
|
|
- column = this.$lines[row].length;
|
|
|
- }
|
|
|
- this.insertMergedLines({row: row, column: column}, lines);
|
|
|
- };
|
|
|
- this.insertMergedLines = function(position, lines) {
|
|
|
- var start = this.clippedPos(position.row, position.column);
|
|
|
- var end = {
|
|
|
- row: start.row + lines.length - 1,
|
|
|
- column: (lines.length == 1 ? start.column : 0) + lines[lines.length - 1].length
|
|
|
- };
|
|
|
-
|
|
|
- this.applyDelta({
|
|
|
- start: start,
|
|
|
- end: end,
|
|
|
- action: "insert",
|
|
|
- lines: lines
|
|
|
- });
|
|
|
-
|
|
|
- return this.clonePos(end);
|
|
|
- };
|
|
|
- this.remove = function(range) {
|
|
|
- var start = this.clippedPos(range.start.row, range.start.column);
|
|
|
- var end = this.clippedPos(range.end.row, range.end.column);
|
|
|
- this.applyDelta({
|
|
|
- start: start,
|
|
|
- end: end,
|
|
|
- action: "remove",
|
|
|
- lines: this.getLinesForRange({start: start, end: end})
|
|
|
- });
|
|
|
- return this.clonePos(start);
|
|
|
- };
|
|
|
- this.removeInLine = function(row, startColumn, endColumn) {
|
|
|
- var start = this.clippedPos(row, startColumn);
|
|
|
- var end = this.clippedPos(row, endColumn);
|
|
|
-
|
|
|
- this.applyDelta({
|
|
|
- start: start,
|
|
|
- end: end,
|
|
|
- action: "remove",
|
|
|
- lines: this.getLinesForRange({start: start, end: end})
|
|
|
- }, true);
|
|
|
-
|
|
|
- return this.clonePos(start);
|
|
|
- };
|
|
|
- this.removeFullLines = function(firstRow, lastRow) {
|
|
|
- firstRow = Math.min(Math.max(0, firstRow), this.getLength() - 1);
|
|
|
- lastRow = Math.min(Math.max(0, lastRow ), this.getLength() - 1);
|
|
|
- var deleteFirstNewLine = lastRow == this.getLength() - 1 && firstRow > 0;
|
|
|
- var deleteLastNewLine = lastRow < this.getLength() - 1;
|
|
|
- var startRow = ( deleteFirstNewLine ? firstRow - 1 : firstRow );
|
|
|
- var startCol = ( deleteFirstNewLine ? this.getLine(startRow).length : 0 );
|
|
|
- var endRow = ( deleteLastNewLine ? lastRow + 1 : lastRow );
|
|
|
- var endCol = ( deleteLastNewLine ? 0 : this.getLine(endRow).length );
|
|
|
- var range = new Range(startRow, startCol, endRow, endCol);
|
|
|
- var deletedLines = this.$lines.slice(firstRow, lastRow + 1);
|
|
|
-
|
|
|
- this.applyDelta({
|
|
|
- start: range.start,
|
|
|
- end: range.end,
|
|
|
- action: "remove",
|
|
|
- lines: this.getLinesForRange(range)
|
|
|
- });
|
|
|
- return deletedLines;
|
|
|
- };
|
|
|
- this.removeNewLine = function(row) {
|
|
|
- if (row < this.getLength() - 1 && row >= 0) {
|
|
|
- this.applyDelta({
|
|
|
- start: this.pos(row, this.getLine(row).length),
|
|
|
- end: this.pos(row + 1, 0),
|
|
|
- action: "remove",
|
|
|
- lines: ["", ""]
|
|
|
- });
|
|
|
- }
|
|
|
- };
|
|
|
- this.replace = function(range, text) {
|
|
|
- if (!range instanceof Range)
|
|
|
- range = Range.fromPoints(range.start, range.end);
|
|
|
- if (text.length === 0 && range.isEmpty())
|
|
|
- return range.start;
|
|
|
- if (text == this.getTextRange(range))
|
|
|
- return range.end;
|
|
|
-
|
|
|
- this.remove(range);
|
|
|
- var end;
|
|
|
- if (text) {
|
|
|
- end = this.insert(range.start, text);
|
|
|
- }
|
|
|
- else {
|
|
|
- end = range.start;
|
|
|
- }
|
|
|
-
|
|
|
- return end;
|
|
|
- };
|
|
|
- this.applyDeltas = function(deltas) {
|
|
|
- for (var i=0; i<deltas.length; i++) {
|
|
|
- this.applyDelta(deltas[i]);
|
|
|
- }
|
|
|
- };
|
|
|
- this.revertDeltas = function(deltas) {
|
|
|
- for (var i=deltas.length-1; i>=0; i--) {
|
|
|
- this.revertDelta(deltas[i]);
|
|
|
- }
|
|
|
- };
|
|
|
- this.applyDelta = function(delta, doNotValidate) {
|
|
|
- var isInsert = delta.action == "insert";
|
|
|
- if (isInsert ? delta.lines.length <= 1 && !delta.lines[0]
|
|
|
- : !Range.comparePoints(delta.start, delta.end)) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (isInsert && delta.lines.length > 20000)
|
|
|
- this.$splitAndapplyLargeDelta(delta, 20000);
|
|
|
- applyDelta(this.$lines, delta, doNotValidate);
|
|
|
- this._signal("change", delta);
|
|
|
- };
|
|
|
-
|
|
|
- this.$splitAndapplyLargeDelta = function(delta, MAX) {
|
|
|
- var lines = delta.lines;
|
|
|
- var l = lines.length;
|
|
|
- var row = delta.start.row;
|
|
|
- var column = delta.start.column;
|
|
|
- var from = 0, to = 0;
|
|
|
- do {
|
|
|
- from = to;
|
|
|
- to += MAX - 1;
|
|
|
- var chunk = lines.slice(from, to);
|
|
|
- if (to > l) {
|
|
|
- delta.lines = chunk;
|
|
|
- delta.start.row = row + from;
|
|
|
- delta.start.column = column;
|
|
|
- break;
|
|
|
- }
|
|
|
- chunk.push("");
|
|
|
- this.applyDelta({
|
|
|
- start: this.pos(row + from, column),
|
|
|
- end: this.pos(row + to, column = 0),
|
|
|
- action: delta.action,
|
|
|
- lines: chunk
|
|
|
- }, true);
|
|
|
- } while(true);
|
|
|
- };
|
|
|
- this.revertDelta = function(delta) {
|
|
|
- this.applyDelta({
|
|
|
- start: this.clonePos(delta.start),
|
|
|
- end: this.clonePos(delta.end),
|
|
|
- action: (delta.action == "insert" ? "remove" : "insert"),
|
|
|
- lines: delta.lines.slice()
|
|
|
- });
|
|
|
- };
|
|
|
- this.indexToPosition = function(index, startRow) {
|
|
|
- var lines = this.$lines || this.getAllLines();
|
|
|
- var newlineLength = this.getNewLineCharacter().length;
|
|
|
- for (var i = startRow || 0, l = lines.length; i < l; i++) {
|
|
|
- index -= lines[i].length + newlineLength;
|
|
|
- if (index < 0)
|
|
|
- return {row: i, column: index + lines[i].length + newlineLength};
|
|
|
- }
|
|
|
- return {row: l-1, column: lines[l-1].length};
|
|
|
- };
|
|
|
- this.positionToIndex = function(pos, startRow) {
|
|
|
- var lines = this.$lines || this.getAllLines();
|
|
|
- var newlineLength = this.getNewLineCharacter().length;
|
|
|
- var index = 0;
|
|
|
- var row = Math.min(pos.row, lines.length);
|
|
|
- for (var i = startRow || 0; i < row; ++i)
|
|
|
- index += lines[i].length + newlineLength;
|
|
|
-
|
|
|
- return index + pos.column;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Document.prototype);
|
|
|
-
|
|
|
-exports.Document = Document;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/background_tokenizer",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-
|
|
|
-var BackgroundTokenizer = function(tokenizer, editor) {
|
|
|
- this.running = false;
|
|
|
- this.lines = [];
|
|
|
- this.states = [];
|
|
|
- this.currentLine = 0;
|
|
|
- this.tokenizer = tokenizer;
|
|
|
-
|
|
|
- var self = this;
|
|
|
-
|
|
|
- this.$worker = function() {
|
|
|
- if (!self.running) { return; }
|
|
|
-
|
|
|
- var workerStart = new Date();
|
|
|
- var currentLine = self.currentLine;
|
|
|
- var endLine = -1;
|
|
|
- var doc = self.doc;
|
|
|
-
|
|
|
- var startLine = currentLine;
|
|
|
- while (self.lines[currentLine])
|
|
|
- currentLine++;
|
|
|
-
|
|
|
- var len = doc.getLength();
|
|
|
- var processedLines = 0;
|
|
|
- self.running = false;
|
|
|
- while (currentLine < len) {
|
|
|
- self.$tokenizeRow(currentLine);
|
|
|
- endLine = currentLine;
|
|
|
- do {
|
|
|
- currentLine++;
|
|
|
- } while (self.lines[currentLine]);
|
|
|
- processedLines ++;
|
|
|
- if ((processedLines % 5 === 0) && (new Date() - workerStart) > 20) {
|
|
|
- self.running = setTimeout(self.$worker, 20);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- self.currentLine = currentLine;
|
|
|
-
|
|
|
- if (startLine <= endLine)
|
|
|
- self.fireUpdateEvent(startLine, endLine);
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-(function(){
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
- this.setTokenizer = function(tokenizer) {
|
|
|
- this.tokenizer = tokenizer;
|
|
|
- this.lines = [];
|
|
|
- this.states = [];
|
|
|
-
|
|
|
- this.start(0);
|
|
|
- };
|
|
|
- this.setDocument = function(doc) {
|
|
|
- this.doc = doc;
|
|
|
- this.lines = [];
|
|
|
- this.states = [];
|
|
|
-
|
|
|
- this.stop();
|
|
|
- };
|
|
|
- this.fireUpdateEvent = function(firstRow, lastRow) {
|
|
|
- var data = {
|
|
|
- first: firstRow,
|
|
|
- last: lastRow
|
|
|
- };
|
|
|
- this._signal("update", {data: data});
|
|
|
- };
|
|
|
- this.start = function(startRow) {
|
|
|
- this.currentLine = Math.min(startRow || 0, this.currentLine, this.doc.getLength());
|
|
|
- this.lines.splice(this.currentLine, this.lines.length);
|
|
|
- this.states.splice(this.currentLine, this.states.length);
|
|
|
-
|
|
|
- this.stop();
|
|
|
- this.running = setTimeout(this.$worker, 700);
|
|
|
- };
|
|
|
-
|
|
|
- this.scheduleStart = function() {
|
|
|
- if (!this.running)
|
|
|
- this.running = setTimeout(this.$worker, 700);
|
|
|
- }
|
|
|
-
|
|
|
- this.$updateOnChange = function(delta) {
|
|
|
- var startRow = delta.start.row;
|
|
|
- var len = delta.end.row - startRow;
|
|
|
-
|
|
|
- if (len === 0) {
|
|
|
- this.lines[startRow] = null;
|
|
|
- } else if (delta.action == "remove") {
|
|
|
- this.lines.splice(startRow, len + 1, null);
|
|
|
- this.states.splice(startRow, len + 1, null);
|
|
|
- } else {
|
|
|
- var args = Array(len + 1);
|
|
|
- args.unshift(startRow, 1);
|
|
|
- this.lines.splice.apply(this.lines, args);
|
|
|
- this.states.splice.apply(this.states, args);
|
|
|
- }
|
|
|
-
|
|
|
- this.currentLine = Math.min(startRow, this.currentLine, this.doc.getLength());
|
|
|
-
|
|
|
- this.stop();
|
|
|
- };
|
|
|
- this.stop = function() {
|
|
|
- if (this.running)
|
|
|
- clearTimeout(this.running);
|
|
|
- this.running = false;
|
|
|
- };
|
|
|
- this.getTokens = function(row) {
|
|
|
- return this.lines[row] || this.$tokenizeRow(row);
|
|
|
- };
|
|
|
- this.getState = function(row) {
|
|
|
- if (this.currentLine == row)
|
|
|
- this.$tokenizeRow(row);
|
|
|
- return this.states[row] || "start";
|
|
|
- };
|
|
|
-
|
|
|
- this.$tokenizeRow = function(row) {
|
|
|
- var line = this.doc.getLine(row);
|
|
|
- var state = this.states[row - 1];
|
|
|
-
|
|
|
- var data = this.tokenizer.getLineTokens(line, state, row);
|
|
|
-
|
|
|
- if (this.states[row] + "" !== data.state + "") {
|
|
|
- this.states[row] = data.state;
|
|
|
- this.lines[row + 1] = null;
|
|
|
- if (this.currentLine > row + 1)
|
|
|
- this.currentLine = row + 1;
|
|
|
- } else if (this.currentLine == row) {
|
|
|
- this.currentLine = row + 1;
|
|
|
- }
|
|
|
-
|
|
|
- return this.lines[row] = data.tokens;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(BackgroundTokenizer.prototype);
|
|
|
-
|
|
|
-exports.BackgroundTokenizer = BackgroundTokenizer;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var lang = require("./lib/lang");
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var Range = require("./range").Range;
|
|
|
-
|
|
|
-var SearchHighlight = function(regExp, clazz, type) {
|
|
|
- this.setRegexp(regExp);
|
|
|
- this.clazz = clazz;
|
|
|
- this.type = type || "text";
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.MAX_RANGES = 500;
|
|
|
-
|
|
|
- this.setRegexp = function(regExp) {
|
|
|
- if (this.regExp+"" == regExp+"")
|
|
|
- return;
|
|
|
- this.regExp = regExp;
|
|
|
- this.cache = [];
|
|
|
- };
|
|
|
-
|
|
|
- this.update = function(html, markerLayer, session, config) {
|
|
|
- if (!this.regExp)
|
|
|
- return;
|
|
|
- var start = config.firstRow, end = config.lastRow;
|
|
|
-
|
|
|
- for (var i = start; i <= end; i++) {
|
|
|
- var ranges = this.cache[i];
|
|
|
- if (ranges == null) {
|
|
|
- ranges = lang.getMatchOffsets(session.getLine(i), this.regExp);
|
|
|
- if (ranges.length > this.MAX_RANGES)
|
|
|
- ranges = ranges.slice(0, this.MAX_RANGES);
|
|
|
- ranges = ranges.map(function(match) {
|
|
|
- return new Range(i, match.offset, i, match.offset + match.length);
|
|
|
- });
|
|
|
- this.cache[i] = ranges.length ? ranges : "";
|
|
|
- }
|
|
|
-
|
|
|
- for (var j = ranges.length; j --; ) {
|
|
|
- markerLayer.drawSingleLineMarker(
|
|
|
- html, ranges[j].toScreenRange(session), this.clazz, config);
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(SearchHighlight.prototype);
|
|
|
-
|
|
|
-exports.SearchHighlight = SearchHighlight;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/edit_session/fold_line",["require","exports","module","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Range = require("../range").Range;
|
|
|
-function FoldLine(foldData, folds) {
|
|
|
- this.foldData = foldData;
|
|
|
- if (Array.isArray(folds)) {
|
|
|
- this.folds = folds;
|
|
|
- } else {
|
|
|
- folds = this.folds = [ folds ];
|
|
|
- }
|
|
|
-
|
|
|
- var last = folds[folds.length - 1];
|
|
|
- this.range = new Range(folds[0].start.row, folds[0].start.column,
|
|
|
- last.end.row, last.end.column);
|
|
|
- this.start = this.range.start;
|
|
|
- this.end = this.range.end;
|
|
|
-
|
|
|
- this.folds.forEach(function(fold) {
|
|
|
- fold.setFoldLine(this);
|
|
|
- }, this);
|
|
|
-}
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.shiftRow = function(shift) {
|
|
|
- this.start.row += shift;
|
|
|
- this.end.row += shift;
|
|
|
- this.folds.forEach(function(fold) {
|
|
|
- fold.start.row += shift;
|
|
|
- fold.end.row += shift;
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- this.addFold = function(fold) {
|
|
|
- if (fold.sameRow) {
|
|
|
- if (fold.start.row < this.startRow || fold.endRow > this.endRow) {
|
|
|
- throw new Error("Can't add a fold to this FoldLine as it has no connection");
|
|
|
- }
|
|
|
- this.folds.push(fold);
|
|
|
- this.folds.sort(function(a, b) {
|
|
|
- return -a.range.compareEnd(b.start.row, b.start.column);
|
|
|
- });
|
|
|
- if (this.range.compareEnd(fold.start.row, fold.start.column) > 0) {
|
|
|
- this.end.row = fold.end.row;
|
|
|
- this.end.column = fold.end.column;
|
|
|
- } else if (this.range.compareStart(fold.end.row, fold.end.column) < 0) {
|
|
|
- this.start.row = fold.start.row;
|
|
|
- this.start.column = fold.start.column;
|
|
|
- }
|
|
|
- } else if (fold.start.row == this.end.row) {
|
|
|
- this.folds.push(fold);
|
|
|
- this.end.row = fold.end.row;
|
|
|
- this.end.column = fold.end.column;
|
|
|
- } else if (fold.end.row == this.start.row) {
|
|
|
- this.folds.unshift(fold);
|
|
|
- this.start.row = fold.start.row;
|
|
|
- this.start.column = fold.start.column;
|
|
|
- } else {
|
|
|
- throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");
|
|
|
- }
|
|
|
- fold.foldLine = this;
|
|
|
- };
|
|
|
-
|
|
|
- this.containsRow = function(row) {
|
|
|
- return row >= this.start.row && row <= this.end.row;
|
|
|
- };
|
|
|
-
|
|
|
- this.walk = function(callback, endRow, endColumn) {
|
|
|
- var lastEnd = 0,
|
|
|
- folds = this.folds,
|
|
|
- fold,
|
|
|
- cmp, stop, isNewRow = true;
|
|
|
-
|
|
|
- if (endRow == null) {
|
|
|
- endRow = this.end.row;
|
|
|
- endColumn = this.end.column;
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < folds.length; i++) {
|
|
|
- fold = folds[i];
|
|
|
-
|
|
|
- cmp = fold.range.compareStart(endRow, endColumn);
|
|
|
- if (cmp == -1) {
|
|
|
- callback(null, endRow, endColumn, lastEnd, isNewRow);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- stop = callback(null, fold.start.row, fold.start.column, lastEnd, isNewRow);
|
|
|
- stop = !stop && callback(fold.placeholder, fold.start.row, fold.start.column, lastEnd);
|
|
|
- if (stop || cmp === 0) {
|
|
|
- return;
|
|
|
- }
|
|
|
- isNewRow = !fold.sameRow;
|
|
|
- lastEnd = fold.end.column;
|
|
|
- }
|
|
|
- callback(null, endRow, endColumn, lastEnd, isNewRow);
|
|
|
- };
|
|
|
-
|
|
|
- this.getNextFoldTo = function(row, column) {
|
|
|
- var fold, cmp;
|
|
|
- for (var i = 0; i < this.folds.length; i++) {
|
|
|
- fold = this.folds[i];
|
|
|
- cmp = fold.range.compareEnd(row, column);
|
|
|
- if (cmp == -1) {
|
|
|
- return {
|
|
|
- fold: fold,
|
|
|
- kind: "after"
|
|
|
- };
|
|
|
- } else if (cmp === 0) {
|
|
|
- return {
|
|
|
- fold: fold,
|
|
|
- kind: "inside"
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this.addRemoveChars = function(row, column, len) {
|
|
|
- var ret = this.getNextFoldTo(row, column),
|
|
|
- fold, folds;
|
|
|
- if (ret) {
|
|
|
- fold = ret.fold;
|
|
|
- if (ret.kind == "inside"
|
|
|
- && fold.start.column != column
|
|
|
- && fold.start.row != row)
|
|
|
- {
|
|
|
- window.console && window.console.log(row, column, fold);
|
|
|
- } else if (fold.start.row == row) {
|
|
|
- folds = this.folds;
|
|
|
- var i = folds.indexOf(fold);
|
|
|
- if (i === 0) {
|
|
|
- this.start.column += len;
|
|
|
- }
|
|
|
- for (i; i < folds.length; i++) {
|
|
|
- fold = folds[i];
|
|
|
- fold.start.column += len;
|
|
|
- if (!fold.sameRow) {
|
|
|
- return;
|
|
|
- }
|
|
|
- fold.end.column += len;
|
|
|
- }
|
|
|
- this.end.column += len;
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.split = function(row, column) {
|
|
|
- var pos = this.getNextFoldTo(row, column);
|
|
|
-
|
|
|
- if (!pos || pos.kind == "inside")
|
|
|
- return null;
|
|
|
-
|
|
|
- var fold = pos.fold;
|
|
|
- var folds = this.folds;
|
|
|
- var foldData = this.foldData;
|
|
|
-
|
|
|
- var i = folds.indexOf(fold);
|
|
|
- var foldBefore = folds[i - 1];
|
|
|
- this.end.row = foldBefore.end.row;
|
|
|
- this.end.column = foldBefore.end.column;
|
|
|
- folds = folds.splice(i, folds.length - i);
|
|
|
-
|
|
|
- var newFoldLine = new FoldLine(foldData, folds);
|
|
|
- foldData.splice(foldData.indexOf(this) + 1, 0, newFoldLine);
|
|
|
- return newFoldLine;
|
|
|
- };
|
|
|
-
|
|
|
- this.merge = function(foldLineNext) {
|
|
|
- var folds = foldLineNext.folds;
|
|
|
- for (var i = 0; i < folds.length; i++) {
|
|
|
- this.addFold(folds[i]);
|
|
|
- }
|
|
|
- var foldData = this.foldData;
|
|
|
- foldData.splice(foldData.indexOf(foldLineNext), 1);
|
|
|
- };
|
|
|
-
|
|
|
- this.toString = function() {
|
|
|
- var ret = [this.range.toString() + ": [" ];
|
|
|
-
|
|
|
- this.folds.forEach(function(fold) {
|
|
|
- ret.push(" " + fold.toString());
|
|
|
- });
|
|
|
- ret.push("]");
|
|
|
- return ret.join("\n");
|
|
|
- };
|
|
|
-
|
|
|
- this.idxToPosition = function(idx) {
|
|
|
- var lastFoldEndColumn = 0;
|
|
|
-
|
|
|
- for (var i = 0; i < this.folds.length; i++) {
|
|
|
- var fold = this.folds[i];
|
|
|
-
|
|
|
- idx -= fold.start.column - lastFoldEndColumn;
|
|
|
- if (idx < 0) {
|
|
|
- return {
|
|
|
- row: fold.start.row,
|
|
|
- column: fold.start.column + idx
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- idx -= fold.placeholder.length;
|
|
|
- if (idx < 0) {
|
|
|
- return fold.start;
|
|
|
- }
|
|
|
-
|
|
|
- lastFoldEndColumn = fold.end.column;
|
|
|
- }
|
|
|
-
|
|
|
- return {
|
|
|
- row: this.end.row,
|
|
|
- column: this.end.column + idx
|
|
|
- };
|
|
|
- };
|
|
|
-}).call(FoldLine.prototype);
|
|
|
-
|
|
|
-exports.FoldLine = FoldLine;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/range_list",["require","exports","module","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-var Range = require("./range").Range;
|
|
|
-var comparePoints = Range.comparePoints;
|
|
|
-
|
|
|
-var RangeList = function() {
|
|
|
- this.ranges = [];
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.comparePoints = comparePoints;
|
|
|
-
|
|
|
- this.pointIndex = function(pos, excludeEdges, startIndex) {
|
|
|
- var list = this.ranges;
|
|
|
-
|
|
|
- for (var i = startIndex || 0; i < list.length; i++) {
|
|
|
- var range = list[i];
|
|
|
- var cmpEnd = comparePoints(pos, range.end);
|
|
|
- if (cmpEnd > 0)
|
|
|
- continue;
|
|
|
- var cmpStart = comparePoints(pos, range.start);
|
|
|
- if (cmpEnd === 0)
|
|
|
- return excludeEdges && cmpStart !== 0 ? -i-2 : i;
|
|
|
- if (cmpStart > 0 || (cmpStart === 0 && !excludeEdges))
|
|
|
- return i;
|
|
|
-
|
|
|
- return -i-1;
|
|
|
- }
|
|
|
- return -i - 1;
|
|
|
- };
|
|
|
-
|
|
|
- this.add = function(range) {
|
|
|
- var excludeEdges = !range.isEmpty();
|
|
|
- var startIndex = this.pointIndex(range.start, excludeEdges);
|
|
|
- if (startIndex < 0)
|
|
|
- startIndex = -startIndex - 1;
|
|
|
-
|
|
|
- var endIndex = this.pointIndex(range.end, excludeEdges, startIndex);
|
|
|
-
|
|
|
- if (endIndex < 0)
|
|
|
- endIndex = -endIndex - 1;
|
|
|
- else
|
|
|
- endIndex++;
|
|
|
- return this.ranges.splice(startIndex, endIndex - startIndex, range);
|
|
|
- };
|
|
|
-
|
|
|
- this.addList = function(list) {
|
|
|
- var removed = [];
|
|
|
- for (var i = list.length; i--; ) {
|
|
|
- removed.push.call(removed, this.add(list[i]));
|
|
|
- }
|
|
|
- return removed;
|
|
|
- };
|
|
|
-
|
|
|
- this.substractPoint = function(pos) {
|
|
|
- var i = this.pointIndex(pos);
|
|
|
-
|
|
|
- if (i >= 0)
|
|
|
- return this.ranges.splice(i, 1);
|
|
|
- };
|
|
|
- this.merge = function() {
|
|
|
- var removed = [];
|
|
|
- var list = this.ranges;
|
|
|
-
|
|
|
- list = list.sort(function(a, b) {
|
|
|
- return comparePoints(a.start, b.start);
|
|
|
- });
|
|
|
-
|
|
|
- var next = list[0], range;
|
|
|
- for (var i = 1; i < list.length; i++) {
|
|
|
- range = next;
|
|
|
- next = list[i];
|
|
|
- var cmp = comparePoints(range.end, next.start);
|
|
|
- if (cmp < 0)
|
|
|
- continue;
|
|
|
-
|
|
|
- if (cmp == 0 && !range.isEmpty() && !next.isEmpty())
|
|
|
- continue;
|
|
|
-
|
|
|
- if (comparePoints(range.end, next.end) < 0) {
|
|
|
- range.end.row = next.end.row;
|
|
|
- range.end.column = next.end.column;
|
|
|
- }
|
|
|
-
|
|
|
- list.splice(i, 1);
|
|
|
- removed.push(next);
|
|
|
- next = range;
|
|
|
- i--;
|
|
|
- }
|
|
|
-
|
|
|
- this.ranges = list;
|
|
|
-
|
|
|
- return removed;
|
|
|
- };
|
|
|
-
|
|
|
- this.contains = function(row, column) {
|
|
|
- return this.pointIndex({row: row, column: column}) >= 0;
|
|
|
- };
|
|
|
-
|
|
|
- this.containsPoint = function(pos) {
|
|
|
- return this.pointIndex(pos) >= 0;
|
|
|
- };
|
|
|
-
|
|
|
- this.rangeAtPoint = function(pos) {
|
|
|
- var i = this.pointIndex(pos);
|
|
|
- if (i >= 0)
|
|
|
- return this.ranges[i];
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.clipRows = function(startRow, endRow) {
|
|
|
- var list = this.ranges;
|
|
|
- if (list[0].start.row > endRow || list[list.length - 1].start.row < startRow)
|
|
|
- return [];
|
|
|
-
|
|
|
- var startIndex = this.pointIndex({row: startRow, column: 0});
|
|
|
- if (startIndex < 0)
|
|
|
- startIndex = -startIndex - 1;
|
|
|
- var endIndex = this.pointIndex({row: endRow, column: 0}, startIndex);
|
|
|
- if (endIndex < 0)
|
|
|
- endIndex = -endIndex - 1;
|
|
|
-
|
|
|
- var clipped = [];
|
|
|
- for (var i = startIndex; i < endIndex; i++) {
|
|
|
- clipped.push(list[i]);
|
|
|
- }
|
|
|
- return clipped;
|
|
|
- };
|
|
|
-
|
|
|
- this.removeAll = function() {
|
|
|
- return this.ranges.splice(0, this.ranges.length);
|
|
|
- };
|
|
|
-
|
|
|
- this.attach = function(session) {
|
|
|
- if (this.session)
|
|
|
- this.detach();
|
|
|
-
|
|
|
- this.session = session;
|
|
|
- this.onChange = this.$onChange.bind(this);
|
|
|
-
|
|
|
- this.session.on('change', this.onChange);
|
|
|
- };
|
|
|
-
|
|
|
- this.detach = function() {
|
|
|
- if (!this.session)
|
|
|
- return;
|
|
|
- this.session.removeListener('change', this.onChange);
|
|
|
- this.session = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.$onChange = function(delta) {
|
|
|
- if (delta.action == "insert"){
|
|
|
- var start = delta.start;
|
|
|
- var end = delta.end;
|
|
|
- } else {
|
|
|
- var end = delta.start;
|
|
|
- var start = delta.end;
|
|
|
- }
|
|
|
- var startRow = start.row;
|
|
|
- var endRow = end.row;
|
|
|
- var lineDif = endRow - startRow;
|
|
|
-
|
|
|
- var colDiff = -start.column + end.column;
|
|
|
- var ranges = this.ranges;
|
|
|
-
|
|
|
- for (var i = 0, n = ranges.length; i < n; i++) {
|
|
|
- var r = ranges[i];
|
|
|
- if (r.end.row < startRow)
|
|
|
- continue;
|
|
|
- if (r.start.row > startRow)
|
|
|
- break;
|
|
|
-
|
|
|
- if (r.start.row == startRow && r.start.column >= start.column ) {
|
|
|
- if (r.start.column == start.column && this.$insertRight) {
|
|
|
- } else {
|
|
|
- r.start.column += colDiff;
|
|
|
- r.start.row += lineDif;
|
|
|
- }
|
|
|
- }
|
|
|
- if (r.end.row == startRow && r.end.column >= start.column) {
|
|
|
- if (r.end.column == start.column && this.$insertRight) {
|
|
|
- continue;
|
|
|
- }
|
|
|
- if (r.end.column == start.column && colDiff > 0 && i < n - 1) {
|
|
|
- if (r.end.column > r.start.column && r.end.column == ranges[i+1].start.column)
|
|
|
- r.end.column -= colDiff;
|
|
|
- }
|
|
|
- r.end.column += colDiff;
|
|
|
- r.end.row += lineDif;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (lineDif != 0 && i < n) {
|
|
|
- for (; i < n; i++) {
|
|
|
- var r = ranges[i];
|
|
|
- r.start.row += lineDif;
|
|
|
- r.end.row += lineDif;
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(RangeList.prototype);
|
|
|
-
|
|
|
-exports.RangeList = RangeList;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/edit_session/fold",["require","exports","module","ace/range","ace/range_list","ace/lib/oop"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Range = require("../range").Range;
|
|
|
-var RangeList = require("../range_list").RangeList;
|
|
|
-var oop = require("../lib/oop")
|
|
|
-var Fold = exports.Fold = function(range, placeholder) {
|
|
|
- this.foldLine = null;
|
|
|
- this.placeholder = placeholder;
|
|
|
- this.range = range;
|
|
|
- this.start = range.start;
|
|
|
- this.end = range.end;
|
|
|
-
|
|
|
- this.sameRow = range.start.row == range.end.row;
|
|
|
- this.subFolds = this.ranges = [];
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(Fold, RangeList);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.toString = function() {
|
|
|
- return '"' + this.placeholder + '" ' + this.range.toString();
|
|
|
- };
|
|
|
-
|
|
|
- this.setFoldLine = function(foldLine) {
|
|
|
- this.foldLine = foldLine;
|
|
|
- this.subFolds.forEach(function(fold) {
|
|
|
- fold.setFoldLine(foldLine);
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- this.clone = function() {
|
|
|
- var range = this.range.clone();
|
|
|
- var fold = new Fold(range, this.placeholder);
|
|
|
- this.subFolds.forEach(function(subFold) {
|
|
|
- fold.subFolds.push(subFold.clone());
|
|
|
- });
|
|
|
- fold.collapseChildren = this.collapseChildren;
|
|
|
- return fold;
|
|
|
- };
|
|
|
-
|
|
|
- this.addSubFold = function(fold) {
|
|
|
- if (this.range.isEqual(fold))
|
|
|
- return;
|
|
|
-
|
|
|
- if (!this.range.containsRange(fold))
|
|
|
- throw new Error("A fold can't intersect already existing fold" + fold.range + this.range);
|
|
|
- consumeRange(fold, this.start);
|
|
|
-
|
|
|
- var row = fold.start.row, column = fold.start.column;
|
|
|
- for (var i = 0, cmp = -1; i < this.subFolds.length; i++) {
|
|
|
- cmp = this.subFolds[i].range.compare(row, column);
|
|
|
- if (cmp != 1)
|
|
|
- break;
|
|
|
- }
|
|
|
- var afterStart = this.subFolds[i];
|
|
|
-
|
|
|
- if (cmp == 0)
|
|
|
- return afterStart.addSubFold(fold);
|
|
|
- var row = fold.range.end.row, column = fold.range.end.column;
|
|
|
- for (var j = i, cmp = -1; j < this.subFolds.length; j++) {
|
|
|
- cmp = this.subFolds[j].range.compare(row, column);
|
|
|
- if (cmp != 1)
|
|
|
- break;
|
|
|
- }
|
|
|
- var afterEnd = this.subFolds[j];
|
|
|
-
|
|
|
- if (cmp == 0)
|
|
|
- throw new Error("A fold can't intersect already existing fold" + fold.range + this.range);
|
|
|
-
|
|
|
- var consumedFolds = this.subFolds.splice(i, j - i, fold);
|
|
|
- fold.setFoldLine(this.foldLine);
|
|
|
-
|
|
|
- return fold;
|
|
|
- };
|
|
|
-
|
|
|
- this.restoreRange = function(range) {
|
|
|
- return restoreRange(range, this.start);
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Fold.prototype);
|
|
|
-
|
|
|
-function consumePoint(point, anchor) {
|
|
|
- point.row -= anchor.row;
|
|
|
- if (point.row == 0)
|
|
|
- point.column -= anchor.column;
|
|
|
-}
|
|
|
-function consumeRange(range, anchor) {
|
|
|
- consumePoint(range.start, anchor);
|
|
|
- consumePoint(range.end, anchor);
|
|
|
-}
|
|
|
-function restorePoint(point, anchor) {
|
|
|
- if (point.row == 0)
|
|
|
- point.column += anchor.column;
|
|
|
- point.row += anchor.row;
|
|
|
-}
|
|
|
-function restoreRange(range, anchor) {
|
|
|
- restorePoint(range.start, anchor);
|
|
|
- restorePoint(range.end, anchor);
|
|
|
-}
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/edit_session/folding",["require","exports","module","ace/range","ace/edit_session/fold_line","ace/edit_session/fold","ace/token_iterator"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Range = require("../range").Range;
|
|
|
-var FoldLine = require("./fold_line").FoldLine;
|
|
|
-var Fold = require("./fold").Fold;
|
|
|
-var TokenIterator = require("../token_iterator").TokenIterator;
|
|
|
-
|
|
|
-function Folding() {
|
|
|
- this.getFoldAt = function(row, column, side) {
|
|
|
- var foldLine = this.getFoldLine(row);
|
|
|
- if (!foldLine)
|
|
|
- return null;
|
|
|
-
|
|
|
- var folds = foldLine.folds;
|
|
|
- for (var i = 0; i < folds.length; i++) {
|
|
|
- var fold = folds[i];
|
|
|
- if (fold.range.contains(row, column)) {
|
|
|
- if (side == 1 && fold.range.isEnd(row, column)) {
|
|
|
- continue;
|
|
|
- } else if (side == -1 && fold.range.isStart(row, column)) {
|
|
|
- continue;
|
|
|
- }
|
|
|
- return fold;
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- this.getFoldsInRange = function(range) {
|
|
|
- var start = range.start;
|
|
|
- var end = range.end;
|
|
|
- var foldLines = this.$foldData;
|
|
|
- var foundFolds = [];
|
|
|
-
|
|
|
- start.column += 1;
|
|
|
- end.column -= 1;
|
|
|
-
|
|
|
- for (var i = 0; i < foldLines.length; i++) {
|
|
|
- var cmp = foldLines[i].range.compareRange(range);
|
|
|
- if (cmp == 2) {
|
|
|
- continue;
|
|
|
- }
|
|
|
- else if (cmp == -2) {
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- var folds = foldLines[i].folds;
|
|
|
- for (var j = 0; j < folds.length; j++) {
|
|
|
- var fold = folds[j];
|
|
|
- cmp = fold.range.compareRange(range);
|
|
|
- if (cmp == -2) {
|
|
|
- break;
|
|
|
- } else if (cmp == 2) {
|
|
|
- continue;
|
|
|
- } else
|
|
|
- if (cmp == 42) {
|
|
|
- break;
|
|
|
- }
|
|
|
- foundFolds.push(fold);
|
|
|
- }
|
|
|
- }
|
|
|
- start.column -= 1;
|
|
|
- end.column += 1;
|
|
|
-
|
|
|
- return foundFolds;
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldsInRangeList = function(ranges) {
|
|
|
- if (Array.isArray(ranges)) {
|
|
|
- var folds = [];
|
|
|
- ranges.forEach(function(range) {
|
|
|
- folds = folds.concat(this.getFoldsInRange(range));
|
|
|
- }, this);
|
|
|
- } else {
|
|
|
- var folds = this.getFoldsInRange(ranges);
|
|
|
- }
|
|
|
- return folds;
|
|
|
- }
|
|
|
- this.getAllFolds = function() {
|
|
|
- var folds = [];
|
|
|
- var foldLines = this.$foldData;
|
|
|
-
|
|
|
- for (var i = 0; i < foldLines.length; i++)
|
|
|
- for (var j = 0; j < foldLines[i].folds.length; j++)
|
|
|
- folds.push(foldLines[i].folds[j]);
|
|
|
-
|
|
|
- return folds;
|
|
|
- };
|
|
|
- this.getFoldStringAt = function(row, column, trim, foldLine) {
|
|
|
- foldLine = foldLine || this.getFoldLine(row);
|
|
|
- if (!foldLine)
|
|
|
- return null;
|
|
|
-
|
|
|
- var lastFold = {
|
|
|
- end: { column: 0 }
|
|
|
- };
|
|
|
- var str, fold;
|
|
|
- for (var i = 0; i < foldLine.folds.length; i++) {
|
|
|
- fold = foldLine.folds[i];
|
|
|
- var cmp = fold.range.compareEnd(row, column);
|
|
|
- if (cmp == -1) {
|
|
|
- str = this
|
|
|
- .getLine(fold.start.row)
|
|
|
- .substring(lastFold.end.column, fold.start.column);
|
|
|
- break;
|
|
|
- }
|
|
|
- else if (cmp === 0) {
|
|
|
- return null;
|
|
|
- }
|
|
|
- lastFold = fold;
|
|
|
- }
|
|
|
- if (!str)
|
|
|
- str = this.getLine(fold.start.row).substring(lastFold.end.column);
|
|
|
-
|
|
|
- if (trim == -1)
|
|
|
- return str.substring(0, column - lastFold.end.column);
|
|
|
- else if (trim == 1)
|
|
|
- return str.substring(column - lastFold.end.column);
|
|
|
- else
|
|
|
- return str;
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldLine = function(docRow, startFoldLine) {
|
|
|
- var foldData = this.$foldData;
|
|
|
- var i = 0;
|
|
|
- if (startFoldLine)
|
|
|
- i = foldData.indexOf(startFoldLine);
|
|
|
- if (i == -1)
|
|
|
- i = 0;
|
|
|
- for (i; i < foldData.length; i++) {
|
|
|
- var foldLine = foldData[i];
|
|
|
- if (foldLine.start.row <= docRow && foldLine.end.row >= docRow) {
|
|
|
- return foldLine;
|
|
|
- } else if (foldLine.end.row > docRow) {
|
|
|
- return null;
|
|
|
- }
|
|
|
- }
|
|
|
- return null;
|
|
|
- };
|
|
|
- this.getNextFoldLine = function(docRow, startFoldLine) {
|
|
|
- var foldData = this.$foldData;
|
|
|
- var i = 0;
|
|
|
- if (startFoldLine)
|
|
|
- i = foldData.indexOf(startFoldLine);
|
|
|
- if (i == -1)
|
|
|
- i = 0;
|
|
|
- for (i; i < foldData.length; i++) {
|
|
|
- var foldLine = foldData[i];
|
|
|
- if (foldLine.end.row >= docRow) {
|
|
|
- return foldLine;
|
|
|
- }
|
|
|
- }
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldedRowCount = function(first, last) {
|
|
|
- var foldData = this.$foldData, rowCount = last-first+1;
|
|
|
- for (var i = 0; i < foldData.length; i++) {
|
|
|
- var foldLine = foldData[i],
|
|
|
- end = foldLine.end.row,
|
|
|
- start = foldLine.start.row;
|
|
|
- if (end >= last) {
|
|
|
- if(start < last) {
|
|
|
- if(start >= first)
|
|
|
- rowCount -= last-start;
|
|
|
- else
|
|
|
- rowCount = 0;//in one fold
|
|
|
- }
|
|
|
- break;
|
|
|
- } else if(end >= first){
|
|
|
- if (start >= first) //fold inside range
|
|
|
- rowCount -= end-start;
|
|
|
- else
|
|
|
- rowCount -= end-first+1;
|
|
|
- }
|
|
|
- }
|
|
|
- return rowCount;
|
|
|
- };
|
|
|
-
|
|
|
- this.$addFoldLine = function(foldLine) {
|
|
|
- this.$foldData.push(foldLine);
|
|
|
- this.$foldData.sort(function(a, b) {
|
|
|
- return a.start.row - b.start.row;
|
|
|
- });
|
|
|
- return foldLine;
|
|
|
- };
|
|
|
- this.addFold = function(placeholder, range) {
|
|
|
- var foldData = this.$foldData;
|
|
|
- var added = false;
|
|
|
- var fold;
|
|
|
-
|
|
|
- if (placeholder instanceof Fold)
|
|
|
- fold = placeholder;
|
|
|
- else {
|
|
|
- fold = new Fold(range, placeholder);
|
|
|
- fold.collapseChildren = range.collapseChildren;
|
|
|
- }
|
|
|
- this.$clipRangeToDocument(fold.range);
|
|
|
-
|
|
|
- var startRow = fold.start.row;
|
|
|
- var startColumn = fold.start.column;
|
|
|
- var endRow = fold.end.row;
|
|
|
- var endColumn = fold.end.column;
|
|
|
- if (!(startRow < endRow ||
|
|
|
- startRow == endRow && startColumn <= endColumn - 2))
|
|
|
- throw new Error("The range has to be at least 2 characters width");
|
|
|
-
|
|
|
- var startFold = this.getFoldAt(startRow, startColumn, 1);
|
|
|
- var endFold = this.getFoldAt(endRow, endColumn, -1);
|
|
|
- if (startFold && endFold == startFold)
|
|
|
- return startFold.addSubFold(fold);
|
|
|
-
|
|
|
- if (startFold && !startFold.range.isStart(startRow, startColumn))
|
|
|
- this.removeFold(startFold);
|
|
|
-
|
|
|
- if (endFold && !endFold.range.isEnd(endRow, endColumn))
|
|
|
- this.removeFold(endFold);
|
|
|
- var folds = this.getFoldsInRange(fold.range);
|
|
|
- if (folds.length > 0) {
|
|
|
- this.removeFolds(folds);
|
|
|
- folds.forEach(function(subFold) {
|
|
|
- fold.addSubFold(subFold);
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < foldData.length; i++) {
|
|
|
- var foldLine = foldData[i];
|
|
|
- if (endRow == foldLine.start.row) {
|
|
|
- foldLine.addFold(fold);
|
|
|
- added = true;
|
|
|
- break;
|
|
|
- } else if (startRow == foldLine.end.row) {
|
|
|
- foldLine.addFold(fold);
|
|
|
- added = true;
|
|
|
- if (!fold.sameRow) {
|
|
|
- var foldLineNext = foldData[i + 1];
|
|
|
- if (foldLineNext && foldLineNext.start.row == endRow) {
|
|
|
- foldLine.merge(foldLineNext);
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- break;
|
|
|
- } else if (endRow <= foldLine.start.row) {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (!added)
|
|
|
- foldLine = this.$addFoldLine(new FoldLine(this.$foldData, fold));
|
|
|
-
|
|
|
- if (this.$useWrapMode)
|
|
|
- this.$updateWrapData(foldLine.start.row, foldLine.start.row);
|
|
|
- else
|
|
|
- this.$updateRowLengthCache(foldLine.start.row, foldLine.start.row);
|
|
|
- this.$modified = true;
|
|
|
- this._emit("changeFold", { data: fold, action: "add" });
|
|
|
-
|
|
|
- return fold;
|
|
|
- };
|
|
|
-
|
|
|
- this.addFolds = function(folds) {
|
|
|
- folds.forEach(function(fold) {
|
|
|
- this.addFold(fold);
|
|
|
- }, this);
|
|
|
- };
|
|
|
-
|
|
|
- this.removeFold = function(fold) {
|
|
|
- var foldLine = fold.foldLine;
|
|
|
- var startRow = foldLine.start.row;
|
|
|
- var endRow = foldLine.end.row;
|
|
|
-
|
|
|
- var foldLines = this.$foldData;
|
|
|
- var folds = foldLine.folds;
|
|
|
- if (folds.length == 1) {
|
|
|
- foldLines.splice(foldLines.indexOf(foldLine), 1);
|
|
|
- } else
|
|
|
- if (foldLine.range.isEnd(fold.end.row, fold.end.column)) {
|
|
|
- folds.pop();
|
|
|
- foldLine.end.row = folds[folds.length - 1].end.row;
|
|
|
- foldLine.end.column = folds[folds.length - 1].end.column;
|
|
|
- } else
|
|
|
- if (foldLine.range.isStart(fold.start.row, fold.start.column)) {
|
|
|
- folds.shift();
|
|
|
- foldLine.start.row = folds[0].start.row;
|
|
|
- foldLine.start.column = folds[0].start.column;
|
|
|
- } else
|
|
|
- if (fold.sameRow) {
|
|
|
- folds.splice(folds.indexOf(fold), 1);
|
|
|
- } else
|
|
|
- {
|
|
|
- var newFoldLine = foldLine.split(fold.start.row, fold.start.column);
|
|
|
- folds = newFoldLine.folds;
|
|
|
- folds.shift();
|
|
|
- newFoldLine.start.row = folds[0].start.row;
|
|
|
- newFoldLine.start.column = folds[0].start.column;
|
|
|
- }
|
|
|
-
|
|
|
- if (!this.$updating) {
|
|
|
- if (this.$useWrapMode)
|
|
|
- this.$updateWrapData(startRow, endRow);
|
|
|
- else
|
|
|
- this.$updateRowLengthCache(startRow, endRow);
|
|
|
- }
|
|
|
- this.$modified = true;
|
|
|
- this._emit("changeFold", { data: fold, action: "remove" });
|
|
|
- };
|
|
|
-
|
|
|
- this.removeFolds = function(folds) {
|
|
|
- var cloneFolds = [];
|
|
|
- for (var i = 0; i < folds.length; i++) {
|
|
|
- cloneFolds.push(folds[i]);
|
|
|
- }
|
|
|
-
|
|
|
- cloneFolds.forEach(function(fold) {
|
|
|
- this.removeFold(fold);
|
|
|
- }, this);
|
|
|
- this.$modified = true;
|
|
|
- };
|
|
|
-
|
|
|
- this.expandFold = function(fold) {
|
|
|
- this.removeFold(fold);
|
|
|
- fold.subFolds.forEach(function(subFold) {
|
|
|
- fold.restoreRange(subFold);
|
|
|
- this.addFold(subFold);
|
|
|
- }, this);
|
|
|
- if (fold.collapseChildren > 0) {
|
|
|
- this.foldAll(fold.start.row+1, fold.end.row, fold.collapseChildren-1);
|
|
|
- }
|
|
|
- fold.subFolds = [];
|
|
|
- };
|
|
|
-
|
|
|
- this.expandFolds = function(folds) {
|
|
|
- folds.forEach(function(fold) {
|
|
|
- this.expandFold(fold);
|
|
|
- }, this);
|
|
|
- };
|
|
|
-
|
|
|
- this.unfold = function(location, expandInner) {
|
|
|
- var range, folds;
|
|
|
- if (location == null) {
|
|
|
- range = new Range(0, 0, this.getLength(), 0);
|
|
|
- expandInner = true;
|
|
|
- } else if (typeof location == "number")
|
|
|
- range = new Range(location, 0, location, this.getLine(location).length);
|
|
|
- else if ("row" in location)
|
|
|
- range = Range.fromPoints(location, location);
|
|
|
- else
|
|
|
- range = location;
|
|
|
-
|
|
|
- folds = this.getFoldsInRangeList(range);
|
|
|
- if (expandInner) {
|
|
|
- this.removeFolds(folds);
|
|
|
- } else {
|
|
|
- var subFolds = folds;
|
|
|
- while (subFolds.length) {
|
|
|
- this.expandFolds(subFolds);
|
|
|
- subFolds = this.getFoldsInRangeList(range);
|
|
|
- }
|
|
|
- }
|
|
|
- if (folds.length)
|
|
|
- return folds;
|
|
|
- };
|
|
|
- this.isRowFolded = function(docRow, startFoldRow) {
|
|
|
- return !!this.getFoldLine(docRow, startFoldRow);
|
|
|
- };
|
|
|
-
|
|
|
- this.getRowFoldEnd = function(docRow, startFoldRow) {
|
|
|
- var foldLine = this.getFoldLine(docRow, startFoldRow);
|
|
|
- return foldLine ? foldLine.end.row : docRow;
|
|
|
- };
|
|
|
-
|
|
|
- this.getRowFoldStart = function(docRow, startFoldRow) {
|
|
|
- var foldLine = this.getFoldLine(docRow, startFoldRow);
|
|
|
- return foldLine ? foldLine.start.row : docRow;
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldDisplayLine = function(foldLine, endRow, endColumn, startRow, startColumn) {
|
|
|
- if (startRow == null)
|
|
|
- startRow = foldLine.start.row;
|
|
|
- if (startColumn == null)
|
|
|
- startColumn = 0;
|
|
|
- if (endRow == null)
|
|
|
- endRow = foldLine.end.row;
|
|
|
- if (endColumn == null)
|
|
|
- endColumn = this.getLine(endRow).length;
|
|
|
- var doc = this.doc;
|
|
|
- var textLine = "";
|
|
|
-
|
|
|
- foldLine.walk(function(placeholder, row, column, lastColumn) {
|
|
|
- if (row < startRow)
|
|
|
- return;
|
|
|
- if (row == startRow) {
|
|
|
- if (column < startColumn)
|
|
|
- return;
|
|
|
- lastColumn = Math.max(startColumn, lastColumn);
|
|
|
- }
|
|
|
-
|
|
|
- if (placeholder != null) {
|
|
|
- textLine += placeholder;
|
|
|
- } else {
|
|
|
- textLine += doc.getLine(row).substring(lastColumn, column);
|
|
|
- }
|
|
|
- }, endRow, endColumn);
|
|
|
- return textLine;
|
|
|
- };
|
|
|
-
|
|
|
- this.getDisplayLine = function(row, endColumn, startRow, startColumn) {
|
|
|
- var foldLine = this.getFoldLine(row);
|
|
|
-
|
|
|
- if (!foldLine) {
|
|
|
- var line;
|
|
|
- line = this.doc.getLine(row);
|
|
|
- return line.substring(startColumn || 0, endColumn || line.length);
|
|
|
- } else {
|
|
|
- return this.getFoldDisplayLine(
|
|
|
- foldLine, row, endColumn, startRow, startColumn);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$cloneFoldData = function() {
|
|
|
- var fd = [];
|
|
|
- fd = this.$foldData.map(function(foldLine) {
|
|
|
- var folds = foldLine.folds.map(function(fold) {
|
|
|
- return fold.clone();
|
|
|
- });
|
|
|
- return new FoldLine(fd, folds);
|
|
|
- });
|
|
|
-
|
|
|
- return fd;
|
|
|
- };
|
|
|
-
|
|
|
- this.toggleFold = function(tryToUnfold) {
|
|
|
- var selection = this.selection;
|
|
|
- var range = selection.getRange();
|
|
|
- var fold;
|
|
|
- var bracketPos;
|
|
|
-
|
|
|
- if (range.isEmpty()) {
|
|
|
- var cursor = range.start;
|
|
|
- fold = this.getFoldAt(cursor.row, cursor.column);
|
|
|
-
|
|
|
- if (fold) {
|
|
|
- this.expandFold(fold);
|
|
|
- return;
|
|
|
- } else if (bracketPos = this.findMatchingBracket(cursor)) {
|
|
|
- if (range.comparePoint(bracketPos) == 1) {
|
|
|
- range.end = bracketPos;
|
|
|
- } else {
|
|
|
- range.start = bracketPos;
|
|
|
- range.start.column++;
|
|
|
- range.end.column--;
|
|
|
- }
|
|
|
- } else if (bracketPos = this.findMatchingBracket({row: cursor.row, column: cursor.column + 1})) {
|
|
|
- if (range.comparePoint(bracketPos) == 1)
|
|
|
- range.end = bracketPos;
|
|
|
- else
|
|
|
- range.start = bracketPos;
|
|
|
-
|
|
|
- range.start.column++;
|
|
|
- } else {
|
|
|
- range = this.getCommentFoldRange(cursor.row, cursor.column) || range;
|
|
|
- }
|
|
|
- } else {
|
|
|
- var folds = this.getFoldsInRange(range);
|
|
|
- if (tryToUnfold && folds.length) {
|
|
|
- this.expandFolds(folds);
|
|
|
- return;
|
|
|
- } else if (folds.length == 1 ) {
|
|
|
- fold = folds[0];
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (!fold)
|
|
|
- fold = this.getFoldAt(range.start.row, range.start.column);
|
|
|
-
|
|
|
- if (fold && fold.range.toString() == range.toString()) {
|
|
|
- this.expandFold(fold);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var placeholder = "...";
|
|
|
- if (!range.isMultiLine()) {
|
|
|
- placeholder = this.getTextRange(range);
|
|
|
- if(placeholder.length < 4)
|
|
|
- return;
|
|
|
- placeholder = placeholder.trim().substring(0, 2) + "..";
|
|
|
- }
|
|
|
-
|
|
|
- this.addFold(placeholder, range);
|
|
|
- };
|
|
|
-
|
|
|
- this.getCommentFoldRange = function(row, column, dir) {
|
|
|
- var iterator = new TokenIterator(this, row, column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- if (token && /^comment|string/.test(token.type)) {
|
|
|
- var range = new Range();
|
|
|
- var re = new RegExp(token.type.replace(/\..*/, "\\."));
|
|
|
- if (dir != 1) {
|
|
|
- do {
|
|
|
- token = iterator.stepBackward();
|
|
|
- } while(token && re.test(token.type));
|
|
|
- iterator.stepForward();
|
|
|
- }
|
|
|
-
|
|
|
- range.start.row = iterator.getCurrentTokenRow();
|
|
|
- range.start.column = iterator.getCurrentTokenColumn() + 2;
|
|
|
-
|
|
|
- iterator = new TokenIterator(this, row, column);
|
|
|
-
|
|
|
- if (dir != -1) {
|
|
|
- do {
|
|
|
- token = iterator.stepForward();
|
|
|
- } while(token && re.test(token.type));
|
|
|
- token = iterator.stepBackward();
|
|
|
- } else
|
|
|
- token = iterator.getCurrentToken();
|
|
|
-
|
|
|
- range.end.row = iterator.getCurrentTokenRow();
|
|
|
- range.end.column = iterator.getCurrentTokenColumn() + token.value.length - 2;
|
|
|
- return range;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.foldAll = function(startRow, endRow, depth) {
|
|
|
- if (depth == undefined)
|
|
|
- depth = 100000; // JSON.stringify doesn't hanle Infinity
|
|
|
- var foldWidgets = this.foldWidgets;
|
|
|
- if (!foldWidgets)
|
|
|
- return; // mode doesn't support folding
|
|
|
- endRow = endRow || this.getLength();
|
|
|
- startRow = startRow || 0;
|
|
|
- for (var row = startRow; row < endRow; row++) {
|
|
|
- if (foldWidgets[row] == null)
|
|
|
- foldWidgets[row] = this.getFoldWidget(row);
|
|
|
- if (foldWidgets[row] != "start")
|
|
|
- continue;
|
|
|
-
|
|
|
- var range = this.getFoldWidgetRange(row);
|
|
|
- if (range && range.isMultiLine()
|
|
|
- && range.end.row <= endRow
|
|
|
- && range.start.row >= startRow
|
|
|
- ) {
|
|
|
- row = range.end.row;
|
|
|
- try {
|
|
|
- var fold = this.addFold("...", range);
|
|
|
- if (fold)
|
|
|
- fold.collapseChildren = depth;
|
|
|
- } catch(e) {}
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- this.$foldStyles = {
|
|
|
- "manual": 1,
|
|
|
- "markbegin": 1,
|
|
|
- "markbeginend": 1
|
|
|
- };
|
|
|
- this.$foldStyle = "markbegin";
|
|
|
- this.setFoldStyle = function(style) {
|
|
|
- if (!this.$foldStyles[style])
|
|
|
- throw new Error("invalid fold style: " + style + "[" + Object.keys(this.$foldStyles).join(", ") + "]");
|
|
|
-
|
|
|
- if (this.$foldStyle == style)
|
|
|
- return;
|
|
|
-
|
|
|
- this.$foldStyle = style;
|
|
|
-
|
|
|
- if (style == "manual")
|
|
|
- this.unfold();
|
|
|
- var mode = this.$foldMode;
|
|
|
- this.$setFolding(null);
|
|
|
- this.$setFolding(mode);
|
|
|
- };
|
|
|
-
|
|
|
- this.$setFolding = function(foldMode) {
|
|
|
- if (this.$foldMode == foldMode)
|
|
|
- return;
|
|
|
-
|
|
|
- this.$foldMode = foldMode;
|
|
|
-
|
|
|
- this.off('change', this.$updateFoldWidgets);
|
|
|
- this.off('tokenizerUpdate', this.$tokenizerUpdateFoldWidgets);
|
|
|
- this._emit("changeAnnotation");
|
|
|
-
|
|
|
- if (!foldMode || this.$foldStyle == "manual") {
|
|
|
- this.foldWidgets = null;
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- this.foldWidgets = [];
|
|
|
- this.getFoldWidget = foldMode.getFoldWidget.bind(foldMode, this, this.$foldStyle);
|
|
|
- this.getFoldWidgetRange = foldMode.getFoldWidgetRange.bind(foldMode, this, this.$foldStyle);
|
|
|
-
|
|
|
- this.$updateFoldWidgets = this.updateFoldWidgets.bind(this);
|
|
|
- this.$tokenizerUpdateFoldWidgets = this.tokenizerUpdateFoldWidgets.bind(this);
|
|
|
- this.on('change', this.$updateFoldWidgets);
|
|
|
- this.on('tokenizerUpdate', this.$tokenizerUpdateFoldWidgets);
|
|
|
- };
|
|
|
-
|
|
|
- this.getParentFoldRangeData = function (row, ignoreCurrent) {
|
|
|
- var fw = this.foldWidgets;
|
|
|
- if (!fw || (ignoreCurrent && fw[row]))
|
|
|
- return {};
|
|
|
-
|
|
|
- var i = row - 1, firstRange;
|
|
|
- while (i >= 0) {
|
|
|
- var c = fw[i];
|
|
|
- if (c == null)
|
|
|
- c = fw[i] = this.getFoldWidget(i);
|
|
|
-
|
|
|
- if (c == "start") {
|
|
|
- var range = this.getFoldWidgetRange(i);
|
|
|
- if (!firstRange)
|
|
|
- firstRange = range;
|
|
|
- if (range && range.end.row >= row)
|
|
|
- break;
|
|
|
- }
|
|
|
- i--;
|
|
|
- }
|
|
|
-
|
|
|
- return {
|
|
|
- range: i !== -1 && range,
|
|
|
- firstRange: firstRange
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- this.onFoldWidgetClick = function(row, e) {
|
|
|
- e = e.domEvent;
|
|
|
- var options = {
|
|
|
- children: e.shiftKey,
|
|
|
- all: e.ctrlKey || e.metaKey,
|
|
|
- siblings: e.altKey
|
|
|
- };
|
|
|
-
|
|
|
- var range = this.$toggleFoldWidget(row, options);
|
|
|
- if (!range) {
|
|
|
- var el = (e.target || e.srcElement)
|
|
|
- if (el && /ace_fold-widget/.test(el.className))
|
|
|
- el.className += " ace_invalid";
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$toggleFoldWidget = function(row, options) {
|
|
|
- if (!this.getFoldWidget)
|
|
|
- return;
|
|
|
- var type = this.getFoldWidget(row);
|
|
|
- var line = this.getLine(row);
|
|
|
-
|
|
|
- var dir = type === "end" ? -1 : 1;
|
|
|
- var fold = this.getFoldAt(row, dir === -1 ? 0 : line.length, dir);
|
|
|
-
|
|
|
- if (fold) {
|
|
|
- if (options.children || options.all)
|
|
|
- this.removeFold(fold);
|
|
|
- else
|
|
|
- this.expandFold(fold);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var range = this.getFoldWidgetRange(row, true);
|
|
|
- if (range && !range.isMultiLine()) {
|
|
|
- fold = this.getFoldAt(range.start.row, range.start.column, 1);
|
|
|
- if (fold && range.isEqual(fold.range)) {
|
|
|
- this.removeFold(fold);
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (options.siblings) {
|
|
|
- var data = this.getParentFoldRangeData(row);
|
|
|
- if (data.range) {
|
|
|
- var startRow = data.range.start.row + 1;
|
|
|
- var endRow = data.range.end.row;
|
|
|
- }
|
|
|
- this.foldAll(startRow, endRow, options.all ? 10000 : 0);
|
|
|
- } else if (options.children) {
|
|
|
- endRow = range ? range.end.row : this.getLength();
|
|
|
- this.foldAll(row + 1, endRow, options.all ? 10000 : 0);
|
|
|
- } else if (range) {
|
|
|
- if (options.all)
|
|
|
- range.collapseChildren = 10000;
|
|
|
- this.addFold("...", range);
|
|
|
- }
|
|
|
-
|
|
|
- return range;
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- this.toggleFoldWidget = function(toggleParent) {
|
|
|
- var row = this.selection.getCursor().row;
|
|
|
- row = this.getRowFoldStart(row);
|
|
|
- var range = this.$toggleFoldWidget(row, {});
|
|
|
-
|
|
|
- if (range)
|
|
|
- return;
|
|
|
- var data = this.getParentFoldRangeData(row, true);
|
|
|
- range = data.range || data.firstRange;
|
|
|
-
|
|
|
- if (range) {
|
|
|
- row = range.start.row;
|
|
|
- var fold = this.getFoldAt(row, this.getLine(row).length, 1);
|
|
|
-
|
|
|
- if (fold) {
|
|
|
- this.removeFold(fold);
|
|
|
- } else {
|
|
|
- this.addFold("...", range);
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.updateFoldWidgets = function(delta) {
|
|
|
- var firstRow = delta.start.row;
|
|
|
- var len = delta.end.row - firstRow;
|
|
|
-
|
|
|
- if (len === 0) {
|
|
|
- this.foldWidgets[firstRow] = null;
|
|
|
- } else if (delta.action == 'remove') {
|
|
|
- this.foldWidgets.splice(firstRow, len + 1, null);
|
|
|
- } else {
|
|
|
- var args = Array(len + 1);
|
|
|
- args.unshift(firstRow, 1);
|
|
|
- this.foldWidgets.splice.apply(this.foldWidgets, args);
|
|
|
- }
|
|
|
- };
|
|
|
- this.tokenizerUpdateFoldWidgets = function(e) {
|
|
|
- var rows = e.data;
|
|
|
- if (rows.first != rows.last) {
|
|
|
- if (this.foldWidgets.length > rows.first)
|
|
|
- this.foldWidgets.splice(rows.first, this.foldWidgets.length);
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-exports.Folding = Folding;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var TokenIterator = require("../token_iterator").TokenIterator;
|
|
|
-var Range = require("../range").Range;
|
|
|
-
|
|
|
-
|
|
|
-function BracketMatch() {
|
|
|
-
|
|
|
- this.findMatchingBracket = function(position, chr) {
|
|
|
- if (position.column == 0) return null;
|
|
|
-
|
|
|
- var charBeforeCursor = chr || this.getLine(position.row).charAt(position.column-1);
|
|
|
- if (charBeforeCursor == "") return null;
|
|
|
-
|
|
|
- var match = charBeforeCursor.match(/([\(\[\{])|([\)\]\}])/);
|
|
|
- if (!match)
|
|
|
- return null;
|
|
|
-
|
|
|
- if (match[1])
|
|
|
- return this.$findClosingBracket(match[1], position);
|
|
|
- else
|
|
|
- return this.$findOpeningBracket(match[2], position);
|
|
|
- };
|
|
|
-
|
|
|
- this.getBracketRange = function(pos) {
|
|
|
- var line = this.getLine(pos.row);
|
|
|
- var before = true, range;
|
|
|
-
|
|
|
- var chr = line.charAt(pos.column-1);
|
|
|
- var match = chr && chr.match(/([\(\[\{])|([\)\]\}])/);
|
|
|
- if (!match) {
|
|
|
- chr = line.charAt(pos.column);
|
|
|
- pos = {row: pos.row, column: pos.column + 1};
|
|
|
- match = chr && chr.match(/([\(\[\{])|([\)\]\}])/);
|
|
|
- before = false;
|
|
|
- }
|
|
|
- if (!match)
|
|
|
- return null;
|
|
|
-
|
|
|
- if (match[1]) {
|
|
|
- var bracketPos = this.$findClosingBracket(match[1], pos);
|
|
|
- if (!bracketPos)
|
|
|
- return null;
|
|
|
- range = Range.fromPoints(pos, bracketPos);
|
|
|
- if (!before) {
|
|
|
- range.end.column++;
|
|
|
- range.start.column--;
|
|
|
- }
|
|
|
- range.cursor = range.end;
|
|
|
- } else {
|
|
|
- var bracketPos = this.$findOpeningBracket(match[2], pos);
|
|
|
- if (!bracketPos)
|
|
|
- return null;
|
|
|
- range = Range.fromPoints(bracketPos, pos);
|
|
|
- if (!before) {
|
|
|
- range.start.column++;
|
|
|
- range.end.column--;
|
|
|
- }
|
|
|
- range.cursor = range.start;
|
|
|
- }
|
|
|
-
|
|
|
- return range;
|
|
|
- };
|
|
|
-
|
|
|
- this.$brackets = {
|
|
|
- ")": "(",
|
|
|
- "(": ")",
|
|
|
- "]": "[",
|
|
|
- "[": "]",
|
|
|
- "{": "}",
|
|
|
- "}": "{"
|
|
|
- };
|
|
|
-
|
|
|
- this.$findOpeningBracket = function(bracket, position, typeRe) {
|
|
|
- var openBracket = this.$brackets[bracket];
|
|
|
- var depth = 1;
|
|
|
-
|
|
|
- var iterator = new TokenIterator(this, position.row, position.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- if (!token)
|
|
|
- token = iterator.stepForward();
|
|
|
- if (!token)
|
|
|
- return;
|
|
|
-
|
|
|
- if (!typeRe){
|
|
|
- typeRe = new RegExp(
|
|
|
- "(\\.?" +
|
|
|
- token.type.replace(".", "\\.").replace("rparen", ".paren")
|
|
|
- .replace(/\b(?:end)\b/, "(?:start|begin|end)")
|
|
|
- + ")+"
|
|
|
- );
|
|
|
- }
|
|
|
- var valueIndex = position.column - iterator.getCurrentTokenColumn() - 2;
|
|
|
- var value = token.value;
|
|
|
-
|
|
|
- while (true) {
|
|
|
-
|
|
|
- while (valueIndex >= 0) {
|
|
|
- var chr = value.charAt(valueIndex);
|
|
|
- if (chr == openBracket) {
|
|
|
- depth -= 1;
|
|
|
- if (depth == 0) {
|
|
|
- return {row: iterator.getCurrentTokenRow(),
|
|
|
- column: valueIndex + iterator.getCurrentTokenColumn()};
|
|
|
- }
|
|
|
- }
|
|
|
- else if (chr == bracket) {
|
|
|
- depth += 1;
|
|
|
- }
|
|
|
- valueIndex -= 1;
|
|
|
- }
|
|
|
- do {
|
|
|
- token = iterator.stepBackward();
|
|
|
- } while (token && !typeRe.test(token.type));
|
|
|
-
|
|
|
- if (token == null)
|
|
|
- break;
|
|
|
-
|
|
|
- value = token.value;
|
|
|
- valueIndex = value.length - 1;
|
|
|
- }
|
|
|
-
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this.$findClosingBracket = function(bracket, position, typeRe) {
|
|
|
- var closingBracket = this.$brackets[bracket];
|
|
|
- var depth = 1;
|
|
|
-
|
|
|
- var iterator = new TokenIterator(this, position.row, position.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- if (!token)
|
|
|
- token = iterator.stepForward();
|
|
|
- if (!token)
|
|
|
- return;
|
|
|
-
|
|
|
- if (!typeRe){
|
|
|
- typeRe = new RegExp(
|
|
|
- "(\\.?" +
|
|
|
- token.type.replace(".", "\\.").replace("lparen", ".paren")
|
|
|
- .replace(/\b(?:start|begin)\b/, "(?:start|begin|end)")
|
|
|
- + ")+"
|
|
|
- );
|
|
|
- }
|
|
|
- var valueIndex = position.column - iterator.getCurrentTokenColumn();
|
|
|
-
|
|
|
- while (true) {
|
|
|
-
|
|
|
- var value = token.value;
|
|
|
- var valueLength = value.length;
|
|
|
- while (valueIndex < valueLength) {
|
|
|
- var chr = value.charAt(valueIndex);
|
|
|
- if (chr == closingBracket) {
|
|
|
- depth -= 1;
|
|
|
- if (depth == 0) {
|
|
|
- return {row: iterator.getCurrentTokenRow(),
|
|
|
- column: valueIndex + iterator.getCurrentTokenColumn()};
|
|
|
- }
|
|
|
- }
|
|
|
- else if (chr == bracket) {
|
|
|
- depth += 1;
|
|
|
- }
|
|
|
- valueIndex += 1;
|
|
|
- }
|
|
|
- do {
|
|
|
- token = iterator.stepForward();
|
|
|
- } while (token && !typeRe.test(token.type));
|
|
|
-
|
|
|
- if (token == null)
|
|
|
- break;
|
|
|
-
|
|
|
- valueIndex = 0;
|
|
|
- }
|
|
|
-
|
|
|
- return null;
|
|
|
- };
|
|
|
-}
|
|
|
-exports.BracketMatch = BracketMatch;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/edit_session",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/config","ace/lib/event_emitter","ace/selection","ace/mode/text","ace/range","ace/document","ace/background_tokenizer","ace/search_highlight","ace/edit_session/folding","ace/edit_session/bracket_match"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var lang = require("./lib/lang");
|
|
|
-var config = require("./config");
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-var Selection = require("./selection").Selection;
|
|
|
-var TextMode = require("./mode/text").Mode;
|
|
|
-var Range = require("./range").Range;
|
|
|
-var Document = require("./document").Document;
|
|
|
-var BackgroundTokenizer = require("./background_tokenizer").BackgroundTokenizer;
|
|
|
-var SearchHighlight = require("./search_highlight").SearchHighlight;
|
|
|
-
|
|
|
-var EditSession = function(text, mode) {
|
|
|
- this.$breakpoints = [];
|
|
|
- this.$decorations = [];
|
|
|
- this.$frontMarkers = {};
|
|
|
- this.$backMarkers = {};
|
|
|
- this.$markerId = 1;
|
|
|
- this.$undoSelect = true;
|
|
|
-
|
|
|
- this.$foldData = [];
|
|
|
- this.$foldData.toString = function() {
|
|
|
- return this.join("\n");
|
|
|
- };
|
|
|
- this.on("changeFold", this.onChangeFold.bind(this));
|
|
|
- this.$onChange = this.onChange.bind(this);
|
|
|
-
|
|
|
- if (typeof text != "object" || !text.getLine)
|
|
|
- text = new Document(text);
|
|
|
-
|
|
|
- this.setDocument(text);
|
|
|
- this.selection = new Selection(this);
|
|
|
-
|
|
|
- config.resetOptions(this);
|
|
|
- this.setMode(mode);
|
|
|
- config._signal("session", this);
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
- this.setDocument = function(doc) {
|
|
|
- if (this.doc)
|
|
|
- this.doc.removeListener("change", this.$onChange);
|
|
|
-
|
|
|
- this.doc = doc;
|
|
|
- doc.on("change", this.$onChange);
|
|
|
-
|
|
|
- if (this.bgTokenizer)
|
|
|
- this.bgTokenizer.setDocument(this.getDocument());
|
|
|
-
|
|
|
- this.resetCaches();
|
|
|
- };
|
|
|
- this.getDocument = function() {
|
|
|
- return this.doc;
|
|
|
- };
|
|
|
- this.$resetRowCache = function(docRow) {
|
|
|
- if (!docRow) {
|
|
|
- this.$docRowCache = [];
|
|
|
- this.$screenRowCache = [];
|
|
|
- return;
|
|
|
- }
|
|
|
- var l = this.$docRowCache.length;
|
|
|
- var i = this.$getRowCacheIndex(this.$docRowCache, docRow) + 1;
|
|
|
- if (l > i) {
|
|
|
- this.$docRowCache.splice(i, l);
|
|
|
- this.$screenRowCache.splice(i, l);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$getRowCacheIndex = function(cacheArray, val) {
|
|
|
- var low = 0;
|
|
|
- var hi = cacheArray.length - 1;
|
|
|
-
|
|
|
- while (low <= hi) {
|
|
|
- var mid = (low + hi) >> 1;
|
|
|
- var c = cacheArray[mid];
|
|
|
-
|
|
|
- if (val > c)
|
|
|
- low = mid + 1;
|
|
|
- else if (val < c)
|
|
|
- hi = mid - 1;
|
|
|
- else
|
|
|
- return mid;
|
|
|
- }
|
|
|
-
|
|
|
- return low -1;
|
|
|
- };
|
|
|
-
|
|
|
- this.resetCaches = function() {
|
|
|
- this.$modified = true;
|
|
|
- this.$wrapData = [];
|
|
|
- this.$rowLengthCache = [];
|
|
|
- this.$resetRowCache(0);
|
|
|
- if (this.bgTokenizer)
|
|
|
- this.bgTokenizer.start(0);
|
|
|
- };
|
|
|
-
|
|
|
- this.onChangeFold = function(e) {
|
|
|
- var fold = e.data;
|
|
|
- this.$resetRowCache(fold.start.row);
|
|
|
- };
|
|
|
-
|
|
|
- this.onChange = function(delta) {
|
|
|
- this.$modified = true;
|
|
|
-
|
|
|
- this.$resetRowCache(delta.start.row);
|
|
|
-
|
|
|
- var removedFolds = this.$updateInternalDataOnChange(delta);
|
|
|
- if (!this.$fromUndo && this.$undoManager && !delta.ignore) {
|
|
|
- this.$deltasDoc.push(delta);
|
|
|
- if (removedFolds && removedFolds.length != 0) {
|
|
|
- this.$deltasFold.push({
|
|
|
- action: "removeFolds",
|
|
|
- folds: removedFolds
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- this.$informUndoManager.schedule();
|
|
|
- }
|
|
|
-
|
|
|
- this.bgTokenizer && this.bgTokenizer.$updateOnChange(delta);
|
|
|
- this._signal("change", delta);
|
|
|
- };
|
|
|
- this.setValue = function(text) {
|
|
|
- this.doc.setValue(text);
|
|
|
- this.selection.moveTo(0, 0);
|
|
|
-
|
|
|
- this.$resetRowCache(0);
|
|
|
- this.$deltas = [];
|
|
|
- this.$deltasDoc = [];
|
|
|
- this.$deltasFold = [];
|
|
|
- this.setUndoManager(this.$undoManager);
|
|
|
- this.getUndoManager().reset();
|
|
|
- };
|
|
|
- this.getValue =
|
|
|
- this.toString = function() {
|
|
|
- return this.doc.getValue();
|
|
|
- };
|
|
|
- this.getSelection = function() {
|
|
|
- return this.selection;
|
|
|
- };
|
|
|
- this.getState = function(row) {
|
|
|
- return this.bgTokenizer.getState(row);
|
|
|
- };
|
|
|
- this.getTokens = function(row) {
|
|
|
- return this.bgTokenizer.getTokens(row);
|
|
|
- };
|
|
|
- this.getTokenAt = function(row, column) {
|
|
|
- var tokens = this.bgTokenizer.getTokens(row);
|
|
|
- var token, c = 0;
|
|
|
- if (column == null) {
|
|
|
- i = tokens.length - 1;
|
|
|
- c = this.getLine(row).length;
|
|
|
- } else {
|
|
|
- for (var i = 0; i < tokens.length; i++) {
|
|
|
- c += tokens[i].value.length;
|
|
|
- if (c >= column)
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- token = tokens[i];
|
|
|
- if (!token)
|
|
|
- return null;
|
|
|
- token.index = i;
|
|
|
- token.start = c - token.value.length;
|
|
|
- return token;
|
|
|
- };
|
|
|
- this.setUndoManager = function(undoManager) {
|
|
|
- this.$undoManager = undoManager;
|
|
|
- this.$deltas = [];
|
|
|
- this.$deltasDoc = [];
|
|
|
- this.$deltasFold = [];
|
|
|
-
|
|
|
- if (this.$informUndoManager)
|
|
|
- this.$informUndoManager.cancel();
|
|
|
-
|
|
|
- if (undoManager) {
|
|
|
- var self = this;
|
|
|
-
|
|
|
- this.$syncInformUndoManager = function() {
|
|
|
- self.$informUndoManager.cancel();
|
|
|
-
|
|
|
- if (self.$deltasFold.length) {
|
|
|
- self.$deltas.push({
|
|
|
- group: "fold",
|
|
|
- deltas: self.$deltasFold
|
|
|
- });
|
|
|
- self.$deltasFold = [];
|
|
|
- }
|
|
|
-
|
|
|
- if (self.$deltasDoc.length) {
|
|
|
- self.$deltas.push({
|
|
|
- group: "doc",
|
|
|
- deltas: self.$deltasDoc
|
|
|
- });
|
|
|
- self.$deltasDoc = [];
|
|
|
- }
|
|
|
-
|
|
|
- if (self.$deltas.length > 0) {
|
|
|
- undoManager.execute({
|
|
|
- action: "aceupdate",
|
|
|
- args: [self.$deltas, self],
|
|
|
- merge: self.mergeUndoDeltas
|
|
|
- });
|
|
|
- }
|
|
|
- self.mergeUndoDeltas = false;
|
|
|
- self.$deltas = [];
|
|
|
- };
|
|
|
- this.$informUndoManager = lang.delayedCall(this.$syncInformUndoManager);
|
|
|
- }
|
|
|
- };
|
|
|
- this.markUndoGroup = function() {
|
|
|
- if (this.$syncInformUndoManager)
|
|
|
- this.$syncInformUndoManager();
|
|
|
- };
|
|
|
-
|
|
|
- this.$defaultUndoManager = {
|
|
|
- undo: function() {},
|
|
|
- redo: function() {},
|
|
|
- reset: function() {}
|
|
|
- };
|
|
|
- this.getUndoManager = function() {
|
|
|
- return this.$undoManager || this.$defaultUndoManager;
|
|
|
- };
|
|
|
- this.getTabString = function() {
|
|
|
- if (this.getUseSoftTabs()) {
|
|
|
- return lang.stringRepeat(" ", this.getTabSize());
|
|
|
- } else {
|
|
|
- return "\t";
|
|
|
- }
|
|
|
- };
|
|
|
- this.setUseSoftTabs = function(val) {
|
|
|
- this.setOption("useSoftTabs", val);
|
|
|
- };
|
|
|
- this.getUseSoftTabs = function() {
|
|
|
- return this.$useSoftTabs && !this.$mode.$indentWithTabs;
|
|
|
- };
|
|
|
- this.setTabSize = function(tabSize) {
|
|
|
- this.setOption("tabSize", tabSize);
|
|
|
- };
|
|
|
- this.getTabSize = function() {
|
|
|
- return this.$tabSize;
|
|
|
- };
|
|
|
- this.isTabStop = function(position) {
|
|
|
- return this.$useSoftTabs && (position.column % this.$tabSize === 0);
|
|
|
- };
|
|
|
-
|
|
|
- this.$overwrite = false;
|
|
|
- this.setOverwrite = function(overwrite) {
|
|
|
- this.setOption("overwrite", overwrite);
|
|
|
- };
|
|
|
- this.getOverwrite = function() {
|
|
|
- return this.$overwrite;
|
|
|
- };
|
|
|
- this.toggleOverwrite = function() {
|
|
|
- this.setOverwrite(!this.$overwrite);
|
|
|
- };
|
|
|
- this.addGutterDecoration = function(row, className) {
|
|
|
- if (!this.$decorations[row])
|
|
|
- this.$decorations[row] = "";
|
|
|
- this.$decorations[row] += " " + className;
|
|
|
- this._signal("changeBreakpoint", {});
|
|
|
- };
|
|
|
- this.removeGutterDecoration = function(row, className) {
|
|
|
- this.$decorations[row] = (this.$decorations[row] || "").replace(" " + className, "");
|
|
|
- this._signal("changeBreakpoint", {});
|
|
|
- };
|
|
|
- this.getBreakpoints = function() {
|
|
|
- return this.$breakpoints;
|
|
|
- };
|
|
|
- this.setBreakpoints = function(rows) {
|
|
|
- this.$breakpoints = [];
|
|
|
- for (var i=0; i<rows.length; i++) {
|
|
|
- this.$breakpoints[rows[i]] = "ace_breakpoint";
|
|
|
- }
|
|
|
- this._signal("changeBreakpoint", {});
|
|
|
- };
|
|
|
- this.clearBreakpoints = function() {
|
|
|
- this.$breakpoints = [];
|
|
|
- this._signal("changeBreakpoint", {});
|
|
|
- };
|
|
|
- this.setBreakpoint = function(row, className) {
|
|
|
- if (className === undefined)
|
|
|
- className = "ace_breakpoint";
|
|
|
- if (className)
|
|
|
- this.$breakpoints[row] = className;
|
|
|
- else
|
|
|
- delete this.$breakpoints[row];
|
|
|
- this._signal("changeBreakpoint", {});
|
|
|
- };
|
|
|
- this.clearBreakpoint = function(row) {
|
|
|
- delete this.$breakpoints[row];
|
|
|
- this._signal("changeBreakpoint", {});
|
|
|
- };
|
|
|
- this.addMarker = function(range, clazz, type, inFront) {
|
|
|
- var id = this.$markerId++;
|
|
|
-
|
|
|
- var marker = {
|
|
|
- range : range,
|
|
|
- type : type || "line",
|
|
|
- renderer: typeof type == "function" ? type : null,
|
|
|
- clazz : clazz,
|
|
|
- inFront: !!inFront,
|
|
|
- id: id
|
|
|
- };
|
|
|
-
|
|
|
- if (inFront) {
|
|
|
- this.$frontMarkers[id] = marker;
|
|
|
- this._signal("changeFrontMarker");
|
|
|
- } else {
|
|
|
- this.$backMarkers[id] = marker;
|
|
|
- this._signal("changeBackMarker");
|
|
|
- }
|
|
|
-
|
|
|
- return id;
|
|
|
- };
|
|
|
- this.addDynamicMarker = function(marker, inFront) {
|
|
|
- if (!marker.update)
|
|
|
- return;
|
|
|
- var id = this.$markerId++;
|
|
|
- marker.id = id;
|
|
|
- marker.inFront = !!inFront;
|
|
|
-
|
|
|
- if (inFront) {
|
|
|
- this.$frontMarkers[id] = marker;
|
|
|
- this._signal("changeFrontMarker");
|
|
|
- } else {
|
|
|
- this.$backMarkers[id] = marker;
|
|
|
- this._signal("changeBackMarker");
|
|
|
- }
|
|
|
-
|
|
|
- return marker;
|
|
|
- };
|
|
|
- this.removeMarker = function(markerId) {
|
|
|
- var marker = this.$frontMarkers[markerId] || this.$backMarkers[markerId];
|
|
|
- if (!marker)
|
|
|
- return;
|
|
|
-
|
|
|
- var markers = marker.inFront ? this.$frontMarkers : this.$backMarkers;
|
|
|
- if (marker) {
|
|
|
- delete (markers[markerId]);
|
|
|
- this._signal(marker.inFront ? "changeFrontMarker" : "changeBackMarker");
|
|
|
- }
|
|
|
- };
|
|
|
- this.getMarkers = function(inFront) {
|
|
|
- return inFront ? this.$frontMarkers : this.$backMarkers;
|
|
|
- };
|
|
|
-
|
|
|
- this.highlight = function(re) {
|
|
|
- if (!this.$searchHighlight) {
|
|
|
- var highlight = new SearchHighlight(null, "ace_selected-word", "text");
|
|
|
- this.$searchHighlight = this.addDynamicMarker(highlight);
|
|
|
- }
|
|
|
- this.$searchHighlight.setRegexp(re);
|
|
|
- };
|
|
|
- this.highlightLines = function(startRow, endRow, clazz, inFront) {
|
|
|
- if (typeof endRow != "number") {
|
|
|
- clazz = endRow;
|
|
|
- endRow = startRow;
|
|
|
- }
|
|
|
- if (!clazz)
|
|
|
- clazz = "ace_step";
|
|
|
-
|
|
|
- var range = new Range(startRow, 0, endRow, Infinity);
|
|
|
- range.id = this.addMarker(range, clazz, "fullLine", inFront);
|
|
|
- return range;
|
|
|
- };
|
|
|
- this.setAnnotations = function(annotations) {
|
|
|
- this.$annotations = annotations;
|
|
|
- this._signal("changeAnnotation", {});
|
|
|
- };
|
|
|
- this.getAnnotations = function() {
|
|
|
- return this.$annotations || [];
|
|
|
- };
|
|
|
- this.clearAnnotations = function() {
|
|
|
- this.setAnnotations([]);
|
|
|
- };
|
|
|
- this.$detectNewLine = function(text) {
|
|
|
- var match = text.match(/^.*?(\r?\n)/m);
|
|
|
- if (match) {
|
|
|
- this.$autoNewLine = match[1];
|
|
|
- } else {
|
|
|
- this.$autoNewLine = "\n";
|
|
|
- }
|
|
|
- };
|
|
|
- this.getWordRange = function(row, column) {
|
|
|
- var line = this.getLine(row);
|
|
|
-
|
|
|
- var inToken = false;
|
|
|
- if (column > 0)
|
|
|
- inToken = !!line.charAt(column - 1).match(this.tokenRe);
|
|
|
-
|
|
|
- if (!inToken)
|
|
|
- inToken = !!line.charAt(column).match(this.tokenRe);
|
|
|
-
|
|
|
- if (inToken)
|
|
|
- var re = this.tokenRe;
|
|
|
- else if (/^\s+$/.test(line.slice(column-1, column+1)))
|
|
|
- var re = /\s/;
|
|
|
- else
|
|
|
- var re = this.nonTokenRe;
|
|
|
-
|
|
|
- var start = column;
|
|
|
- if (start > 0) {
|
|
|
- do {
|
|
|
- start--;
|
|
|
- }
|
|
|
- while (start >= 0 && line.charAt(start).match(re));
|
|
|
- start++;
|
|
|
- }
|
|
|
-
|
|
|
- var end = column;
|
|
|
- while (end < line.length && line.charAt(end).match(re)) {
|
|
|
- end++;
|
|
|
- }
|
|
|
-
|
|
|
- return new Range(row, start, row, end);
|
|
|
- };
|
|
|
- this.getAWordRange = function(row, column) {
|
|
|
- var wordRange = this.getWordRange(row, column);
|
|
|
- var line = this.getLine(wordRange.end.row);
|
|
|
-
|
|
|
- while (line.charAt(wordRange.end.column).match(/[ \t]/)) {
|
|
|
- wordRange.end.column += 1;
|
|
|
- }
|
|
|
- return wordRange;
|
|
|
- };
|
|
|
- this.setNewLineMode = function(newLineMode) {
|
|
|
- this.doc.setNewLineMode(newLineMode);
|
|
|
- };
|
|
|
- this.getNewLineMode = function() {
|
|
|
- return this.doc.getNewLineMode();
|
|
|
- };
|
|
|
- this.setUseWorker = function(useWorker) { this.setOption("useWorker", useWorker); };
|
|
|
- this.getUseWorker = function() { return this.$useWorker; };
|
|
|
- this.onReloadTokenizer = function(e) {
|
|
|
- var rows = e.data;
|
|
|
- this.bgTokenizer.start(rows.first);
|
|
|
- this._signal("tokenizerUpdate", e);
|
|
|
- };
|
|
|
-
|
|
|
- this.$modes = {};
|
|
|
- this.$mode = null;
|
|
|
- this.$modeId = null;
|
|
|
- this.setMode = function(mode, cb) {
|
|
|
- if (mode && typeof mode === "object") {
|
|
|
- if (mode.getTokenizer)
|
|
|
- return this.$onChangeMode(mode);
|
|
|
- var options = mode;
|
|
|
- var path = options.path;
|
|
|
- } else {
|
|
|
- path = mode || "ace/mode/text";
|
|
|
- }
|
|
|
- if (!this.$modes["ace/mode/text"])
|
|
|
- this.$modes["ace/mode/text"] = new TextMode();
|
|
|
-
|
|
|
- if (this.$modes[path] && !options) {
|
|
|
- this.$onChangeMode(this.$modes[path]);
|
|
|
- cb && cb();
|
|
|
- return;
|
|
|
- }
|
|
|
- this.$modeId = path;
|
|
|
- config.loadModule(["mode", path], function(m) {
|
|
|
- if (this.$modeId !== path)
|
|
|
- return cb && cb();
|
|
|
- if (this.$modes[path] && !options) {
|
|
|
- this.$onChangeMode(this.$modes[path]);
|
|
|
- } else if (m && m.Mode) {
|
|
|
- m = new m.Mode(options);
|
|
|
- if (!options) {
|
|
|
- this.$modes[path] = m;
|
|
|
- m.$id = path;
|
|
|
- }
|
|
|
- this.$onChangeMode(m);
|
|
|
- }
|
|
|
- cb && cb();
|
|
|
- }.bind(this));
|
|
|
- if (!this.$mode)
|
|
|
- this.$onChangeMode(this.$modes["ace/mode/text"], true);
|
|
|
- };
|
|
|
-
|
|
|
- this.$onChangeMode = function(mode, $isPlaceholder) {
|
|
|
- if (!$isPlaceholder)
|
|
|
- this.$modeId = mode.$id;
|
|
|
- if (this.$mode === mode)
|
|
|
- return;
|
|
|
-
|
|
|
- this.$mode = mode;
|
|
|
-
|
|
|
- this.$stopWorker();
|
|
|
-
|
|
|
- if (this.$useWorker)
|
|
|
- this.$startWorker();
|
|
|
-
|
|
|
- var tokenizer = mode.getTokenizer();
|
|
|
-
|
|
|
- if(tokenizer.addEventListener !== undefined) {
|
|
|
- var onReloadTokenizer = this.onReloadTokenizer.bind(this);
|
|
|
- tokenizer.addEventListener("update", onReloadTokenizer);
|
|
|
- }
|
|
|
-
|
|
|
- if (!this.bgTokenizer) {
|
|
|
- this.bgTokenizer = new BackgroundTokenizer(tokenizer);
|
|
|
- var _self = this;
|
|
|
- this.bgTokenizer.addEventListener("update", function(e) {
|
|
|
- _self._signal("tokenizerUpdate", e);
|
|
|
- });
|
|
|
- } else {
|
|
|
- this.bgTokenizer.setTokenizer(tokenizer);
|
|
|
- }
|
|
|
-
|
|
|
- this.bgTokenizer.setDocument(this.getDocument());
|
|
|
-
|
|
|
- this.tokenRe = mode.tokenRe;
|
|
|
- this.nonTokenRe = mode.nonTokenRe;
|
|
|
-
|
|
|
-
|
|
|
- if (!$isPlaceholder) {
|
|
|
- if (mode.attachToSession)
|
|
|
- mode.attachToSession(this);
|
|
|
- this.$options.wrapMethod.set.call(this, this.$wrapMethod);
|
|
|
- this.$setFolding(mode.foldingRules);
|
|
|
- this.bgTokenizer.start(0);
|
|
|
- this._emit("changeMode");
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$stopWorker = function() {
|
|
|
- if (this.$worker) {
|
|
|
- this.$worker.terminate();
|
|
|
- this.$worker = null;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$startWorker = function() {
|
|
|
- try {
|
|
|
- this.$worker = this.$mode.createWorker(this);
|
|
|
- } catch (e) {
|
|
|
- config.warn("Could not load worker", e);
|
|
|
- this.$worker = null;
|
|
|
- }
|
|
|
- };
|
|
|
- this.getMode = function() {
|
|
|
- return this.$mode;
|
|
|
- };
|
|
|
-
|
|
|
- this.$scrollTop = 0;
|
|
|
- this.setScrollTop = function(scrollTop) {
|
|
|
- if (this.$scrollTop === scrollTop || isNaN(scrollTop))
|
|
|
- return;
|
|
|
-
|
|
|
- this.$scrollTop = scrollTop;
|
|
|
- this._signal("changeScrollTop", scrollTop);
|
|
|
- };
|
|
|
- this.getScrollTop = function() {
|
|
|
- return this.$scrollTop;
|
|
|
- };
|
|
|
-
|
|
|
- this.$scrollLeft = 0;
|
|
|
- this.setScrollLeft = function(scrollLeft) {
|
|
|
- if (this.$scrollLeft === scrollLeft || isNaN(scrollLeft))
|
|
|
- return;
|
|
|
-
|
|
|
- this.$scrollLeft = scrollLeft;
|
|
|
- this._signal("changeScrollLeft", scrollLeft);
|
|
|
- };
|
|
|
- this.getScrollLeft = function() {
|
|
|
- return this.$scrollLeft;
|
|
|
- };
|
|
|
- this.getScreenWidth = function() {
|
|
|
- this.$computeWidth();
|
|
|
- if (this.lineWidgets)
|
|
|
- return Math.max(this.getLineWidgetMaxWidth(), this.screenWidth);
|
|
|
- return this.screenWidth;
|
|
|
- };
|
|
|
-
|
|
|
- this.getLineWidgetMaxWidth = function() {
|
|
|
- if (this.lineWidgetsWidth != null) return this.lineWidgetsWidth;
|
|
|
- var width = 0;
|
|
|
- this.lineWidgets.forEach(function(w) {
|
|
|
- if (w && w.screenWidth > width)
|
|
|
- width = w.screenWidth;
|
|
|
- });
|
|
|
- return this.lineWidgetWidth = width;
|
|
|
- };
|
|
|
-
|
|
|
- this.$computeWidth = function(force) {
|
|
|
- if (this.$modified || force) {
|
|
|
- this.$modified = false;
|
|
|
-
|
|
|
- if (this.$useWrapMode)
|
|
|
- return this.screenWidth = this.$wrapLimit;
|
|
|
-
|
|
|
- var lines = this.doc.getAllLines();
|
|
|
- var cache = this.$rowLengthCache;
|
|
|
- var longestScreenLine = 0;
|
|
|
- var foldIndex = 0;
|
|
|
- var foldLine = this.$foldData[foldIndex];
|
|
|
- var foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
- var len = lines.length;
|
|
|
-
|
|
|
- for (var i = 0; i < len; i++) {
|
|
|
- if (i > foldStart) {
|
|
|
- i = foldLine.end.row + 1;
|
|
|
- if (i >= len)
|
|
|
- break;
|
|
|
- foldLine = this.$foldData[foldIndex++];
|
|
|
- foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
- }
|
|
|
-
|
|
|
- if (cache[i] == null)
|
|
|
- cache[i] = this.$getStringScreenWidth(lines[i])[0];
|
|
|
-
|
|
|
- if (cache[i] > longestScreenLine)
|
|
|
- longestScreenLine = cache[i];
|
|
|
- }
|
|
|
- this.screenWidth = longestScreenLine;
|
|
|
- }
|
|
|
- };
|
|
|
- this.getLine = function(row) {
|
|
|
- return this.doc.getLine(row);
|
|
|
- };
|
|
|
- this.getLines = function(firstRow, lastRow) {
|
|
|
- return this.doc.getLines(firstRow, lastRow);
|
|
|
- };
|
|
|
- this.getLength = function() {
|
|
|
- return this.doc.getLength();
|
|
|
- };
|
|
|
- this.getTextRange = function(range) {
|
|
|
- return this.doc.getTextRange(range || this.selection.getRange());
|
|
|
- };
|
|
|
- this.insert = function(position, text) {
|
|
|
- return this.doc.insert(position, text);
|
|
|
- };
|
|
|
- this.remove = function(range) {
|
|
|
- return this.doc.remove(range);
|
|
|
- };
|
|
|
- this.removeFullLines = function(firstRow, lastRow){
|
|
|
- return this.doc.removeFullLines(firstRow, lastRow);
|
|
|
- };
|
|
|
- this.undoChanges = function(deltas, dontSelect) {
|
|
|
- if (!deltas.length)
|
|
|
- return;
|
|
|
-
|
|
|
- this.$fromUndo = true;
|
|
|
- var lastUndoRange = null;
|
|
|
- for (var i = deltas.length - 1; i != -1; i--) {
|
|
|
- var delta = deltas[i];
|
|
|
- if (delta.group == "doc") {
|
|
|
- this.doc.revertDeltas(delta.deltas);
|
|
|
- lastUndoRange =
|
|
|
- this.$getUndoSelection(delta.deltas, true, lastUndoRange);
|
|
|
- } else {
|
|
|
- delta.deltas.forEach(function(foldDelta) {
|
|
|
- this.addFolds(foldDelta.folds);
|
|
|
- }, this);
|
|
|
- }
|
|
|
- }
|
|
|
- this.$fromUndo = false;
|
|
|
- lastUndoRange &&
|
|
|
- this.$undoSelect &&
|
|
|
- !dontSelect &&
|
|
|
- this.selection.setSelectionRange(lastUndoRange);
|
|
|
- return lastUndoRange;
|
|
|
- };
|
|
|
- this.redoChanges = function(deltas, dontSelect) {
|
|
|
- if (!deltas.length)
|
|
|
- return;
|
|
|
-
|
|
|
- this.$fromUndo = true;
|
|
|
- var lastUndoRange = null;
|
|
|
- for (var i = 0; i < deltas.length; i++) {
|
|
|
- var delta = deltas[i];
|
|
|
- if (delta.group == "doc") {
|
|
|
- this.doc.applyDeltas(delta.deltas);
|
|
|
- lastUndoRange =
|
|
|
- this.$getUndoSelection(delta.deltas, false, lastUndoRange);
|
|
|
- }
|
|
|
- }
|
|
|
- this.$fromUndo = false;
|
|
|
- lastUndoRange &&
|
|
|
- this.$undoSelect &&
|
|
|
- !dontSelect &&
|
|
|
- this.selection.setSelectionRange(lastUndoRange);
|
|
|
- return lastUndoRange;
|
|
|
- };
|
|
|
- this.setUndoSelect = function(enable) {
|
|
|
- this.$undoSelect = enable;
|
|
|
- };
|
|
|
-
|
|
|
- this.$getUndoSelection = function(deltas, isUndo, lastUndoRange) {
|
|
|
- function isInsert(delta) {
|
|
|
- return isUndo ? delta.action !== "insert" : delta.action === "insert";
|
|
|
- }
|
|
|
-
|
|
|
- var delta = deltas[0];
|
|
|
- var range, point;
|
|
|
- var lastDeltaIsInsert = false;
|
|
|
- if (isInsert(delta)) {
|
|
|
- range = Range.fromPoints(delta.start, delta.end);
|
|
|
- lastDeltaIsInsert = true;
|
|
|
- } else {
|
|
|
- range = Range.fromPoints(delta.start, delta.start);
|
|
|
- lastDeltaIsInsert = false;
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 1; i < deltas.length; i++) {
|
|
|
- delta = deltas[i];
|
|
|
- if (isInsert(delta)) {
|
|
|
- point = delta.start;
|
|
|
- if (range.compare(point.row, point.column) == -1) {
|
|
|
- range.setStart(point);
|
|
|
- }
|
|
|
- point = delta.end;
|
|
|
- if (range.compare(point.row, point.column) == 1) {
|
|
|
- range.setEnd(point);
|
|
|
- }
|
|
|
- lastDeltaIsInsert = true;
|
|
|
- } else {
|
|
|
- point = delta.start;
|
|
|
- if (range.compare(point.row, point.column) == -1) {
|
|
|
- range = Range.fromPoints(delta.start, delta.start);
|
|
|
- }
|
|
|
- lastDeltaIsInsert = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (lastUndoRange != null) {
|
|
|
- if (Range.comparePoints(lastUndoRange.start, range.start) === 0) {
|
|
|
- lastUndoRange.start.column += range.end.column - range.start.column;
|
|
|
- lastUndoRange.end.column += range.end.column - range.start.column;
|
|
|
- }
|
|
|
-
|
|
|
- var cmp = lastUndoRange.compareRange(range);
|
|
|
- if (cmp == 1) {
|
|
|
- range.setStart(lastUndoRange.start);
|
|
|
- } else if (cmp == -1) {
|
|
|
- range.setEnd(lastUndoRange.end);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return range;
|
|
|
- };
|
|
|
- this.replace = function(range, text) {
|
|
|
- return this.doc.replace(range, text);
|
|
|
- };
|
|
|
- this.moveText = function(fromRange, toPosition, copy) {
|
|
|
- var text = this.getTextRange(fromRange);
|
|
|
- var folds = this.getFoldsInRange(fromRange);
|
|
|
-
|
|
|
- var toRange = Range.fromPoints(toPosition, toPosition);
|
|
|
- if (!copy) {
|
|
|
- this.remove(fromRange);
|
|
|
- var rowDiff = fromRange.start.row - fromRange.end.row;
|
|
|
- var collDiff = rowDiff ? -fromRange.end.column : fromRange.start.column - fromRange.end.column;
|
|
|
- if (collDiff) {
|
|
|
- if (toRange.start.row == fromRange.end.row && toRange.start.column > fromRange.end.column)
|
|
|
- toRange.start.column += collDiff;
|
|
|
- if (toRange.end.row == fromRange.end.row && toRange.end.column > fromRange.end.column)
|
|
|
- toRange.end.column += collDiff;
|
|
|
- }
|
|
|
- if (rowDiff && toRange.start.row >= fromRange.end.row) {
|
|
|
- toRange.start.row += rowDiff;
|
|
|
- toRange.end.row += rowDiff;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- toRange.end = this.insert(toRange.start, text);
|
|
|
- if (folds.length) {
|
|
|
- var oldStart = fromRange.start;
|
|
|
- var newStart = toRange.start;
|
|
|
- var rowDiff = newStart.row - oldStart.row;
|
|
|
- var collDiff = newStart.column - oldStart.column;
|
|
|
- this.addFolds(folds.map(function(x) {
|
|
|
- x = x.clone();
|
|
|
- if (x.start.row == oldStart.row)
|
|
|
- x.start.column += collDiff;
|
|
|
- if (x.end.row == oldStart.row)
|
|
|
- x.end.column += collDiff;
|
|
|
- x.start.row += rowDiff;
|
|
|
- x.end.row += rowDiff;
|
|
|
- return x;
|
|
|
- }));
|
|
|
- }
|
|
|
-
|
|
|
- return toRange;
|
|
|
- };
|
|
|
- this.indentRows = function(startRow, endRow, indentString) {
|
|
|
- indentString = indentString.replace(/\t/g, this.getTabString());
|
|
|
- for (var row=startRow; row<=endRow; row++)
|
|
|
- this.doc.insertInLine({row: row, column: 0}, indentString);
|
|
|
- };
|
|
|
- this.outdentRows = function (range) {
|
|
|
- var rowRange = range.collapseRows();
|
|
|
- var deleteRange = new Range(0, 0, 0, 0);
|
|
|
- var size = this.getTabSize();
|
|
|
-
|
|
|
- for (var i = rowRange.start.row; i <= rowRange.end.row; ++i) {
|
|
|
- var line = this.getLine(i);
|
|
|
-
|
|
|
- deleteRange.start.row = i;
|
|
|
- deleteRange.end.row = i;
|
|
|
- for (var j = 0; j < size; ++j)
|
|
|
- if (line.charAt(j) != ' ')
|
|
|
- break;
|
|
|
- if (j < size && line.charAt(j) == '\t') {
|
|
|
- deleteRange.start.column = j;
|
|
|
- deleteRange.end.column = j + 1;
|
|
|
- } else {
|
|
|
- deleteRange.start.column = 0;
|
|
|
- deleteRange.end.column = j;
|
|
|
- }
|
|
|
- this.remove(deleteRange);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$moveLines = function(firstRow, lastRow, dir) {
|
|
|
- firstRow = this.getRowFoldStart(firstRow);
|
|
|
- lastRow = this.getRowFoldEnd(lastRow);
|
|
|
- if (dir < 0) {
|
|
|
- var row = this.getRowFoldStart(firstRow + dir);
|
|
|
- if (row < 0) return 0;
|
|
|
- var diff = row-firstRow;
|
|
|
- } else if (dir > 0) {
|
|
|
- var row = this.getRowFoldEnd(lastRow + dir);
|
|
|
- if (row > this.doc.getLength()-1) return 0;
|
|
|
- var diff = row-lastRow;
|
|
|
- } else {
|
|
|
- firstRow = this.$clipRowToDocument(firstRow);
|
|
|
- lastRow = this.$clipRowToDocument(lastRow);
|
|
|
- var diff = lastRow - firstRow + 1;
|
|
|
- }
|
|
|
-
|
|
|
- var range = new Range(firstRow, 0, lastRow, Number.MAX_VALUE);
|
|
|
- var folds = this.getFoldsInRange(range).map(function(x){
|
|
|
- x = x.clone();
|
|
|
- x.start.row += diff;
|
|
|
- x.end.row += diff;
|
|
|
- return x;
|
|
|
- });
|
|
|
-
|
|
|
- var lines = dir == 0
|
|
|
- ? this.doc.getLines(firstRow, lastRow)
|
|
|
- : this.doc.removeFullLines(firstRow, lastRow);
|
|
|
- this.doc.insertFullLines(firstRow+diff, lines);
|
|
|
- folds.length && this.addFolds(folds);
|
|
|
- return diff;
|
|
|
- };
|
|
|
- this.moveLinesUp = function(firstRow, lastRow) {
|
|
|
- return this.$moveLines(firstRow, lastRow, -1);
|
|
|
- };
|
|
|
- this.moveLinesDown = function(firstRow, lastRow) {
|
|
|
- return this.$moveLines(firstRow, lastRow, 1);
|
|
|
- };
|
|
|
- this.duplicateLines = function(firstRow, lastRow) {
|
|
|
- return this.$moveLines(firstRow, lastRow, 0);
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.$clipRowToDocument = function(row) {
|
|
|
- return Math.max(0, Math.min(row, this.doc.getLength()-1));
|
|
|
- };
|
|
|
-
|
|
|
- this.$clipColumnToRow = function(row, column) {
|
|
|
- if (column < 0)
|
|
|
- return 0;
|
|
|
- return Math.min(this.doc.getLine(row).length, column);
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.$clipPositionToDocument = function(row, column) {
|
|
|
- column = Math.max(0, column);
|
|
|
-
|
|
|
- if (row < 0) {
|
|
|
- row = 0;
|
|
|
- column = 0;
|
|
|
- } else {
|
|
|
- var len = this.doc.getLength();
|
|
|
- if (row >= len) {
|
|
|
- row = len - 1;
|
|
|
- column = this.doc.getLine(len-1).length;
|
|
|
- } else {
|
|
|
- column = Math.min(this.doc.getLine(row).length, column);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return {
|
|
|
- row: row,
|
|
|
- column: column
|
|
|
- };
|
|
|
- };
|
|
|
-
|
|
|
- this.$clipRangeToDocument = function(range) {
|
|
|
- if (range.start.row < 0) {
|
|
|
- range.start.row = 0;
|
|
|
- range.start.column = 0;
|
|
|
- } else {
|
|
|
- range.start.column = this.$clipColumnToRow(
|
|
|
- range.start.row,
|
|
|
- range.start.column
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- var len = this.doc.getLength() - 1;
|
|
|
- if (range.end.row > len) {
|
|
|
- range.end.row = len;
|
|
|
- range.end.column = this.doc.getLine(len).length;
|
|
|
- } else {
|
|
|
- range.end.column = this.$clipColumnToRow(
|
|
|
- range.end.row,
|
|
|
- range.end.column
|
|
|
- );
|
|
|
- }
|
|
|
- return range;
|
|
|
- };
|
|
|
- this.$wrapLimit = 80;
|
|
|
- this.$useWrapMode = false;
|
|
|
- this.$wrapLimitRange = {
|
|
|
- min : null,
|
|
|
- max : null
|
|
|
- };
|
|
|
- this.setUseWrapMode = function(useWrapMode) {
|
|
|
- if (useWrapMode != this.$useWrapMode) {
|
|
|
- this.$useWrapMode = useWrapMode;
|
|
|
- this.$modified = true;
|
|
|
- this.$resetRowCache(0);
|
|
|
- if (useWrapMode) {
|
|
|
- var len = this.getLength();
|
|
|
- this.$wrapData = Array(len);
|
|
|
- this.$updateWrapData(0, len - 1);
|
|
|
- }
|
|
|
-
|
|
|
- this._signal("changeWrapMode");
|
|
|
- }
|
|
|
- };
|
|
|
- this.getUseWrapMode = function() {
|
|
|
- return this.$useWrapMode;
|
|
|
- };
|
|
|
- this.setWrapLimitRange = function(min, max) {
|
|
|
- if (this.$wrapLimitRange.min !== min || this.$wrapLimitRange.max !== max) {
|
|
|
- this.$wrapLimitRange = { min: min, max: max };
|
|
|
- this.$modified = true;
|
|
|
- if (this.$useWrapMode)
|
|
|
- this._signal("changeWrapMode");
|
|
|
- }
|
|
|
- };
|
|
|
- this.adjustWrapLimit = function(desiredLimit, $printMargin) {
|
|
|
- var limits = this.$wrapLimitRange;
|
|
|
- if (limits.max < 0)
|
|
|
- limits = {min: $printMargin, max: $printMargin};
|
|
|
- var wrapLimit = this.$constrainWrapLimit(desiredLimit, limits.min, limits.max);
|
|
|
- if (wrapLimit != this.$wrapLimit && wrapLimit > 1) {
|
|
|
- this.$wrapLimit = wrapLimit;
|
|
|
- this.$modified = true;
|
|
|
- if (this.$useWrapMode) {
|
|
|
- this.$updateWrapData(0, this.getLength() - 1);
|
|
|
- this.$resetRowCache(0);
|
|
|
- this._signal("changeWrapLimit");
|
|
|
- }
|
|
|
- return true;
|
|
|
- }
|
|
|
- return false;
|
|
|
- };
|
|
|
-
|
|
|
- this.$constrainWrapLimit = function(wrapLimit, min, max) {
|
|
|
- if (min)
|
|
|
- wrapLimit = Math.max(min, wrapLimit);
|
|
|
-
|
|
|
- if (max)
|
|
|
- wrapLimit = Math.min(max, wrapLimit);
|
|
|
-
|
|
|
- return wrapLimit;
|
|
|
- };
|
|
|
- this.getWrapLimit = function() {
|
|
|
- return this.$wrapLimit;
|
|
|
- };
|
|
|
- this.setWrapLimit = function (limit) {
|
|
|
- this.setWrapLimitRange(limit, limit);
|
|
|
- };
|
|
|
- this.getWrapLimitRange = function() {
|
|
|
- return {
|
|
|
- min : this.$wrapLimitRange.min,
|
|
|
- max : this.$wrapLimitRange.max
|
|
|
- };
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateInternalDataOnChange = function(delta) {
|
|
|
- var useWrapMode = this.$useWrapMode;
|
|
|
- var action = delta.action;
|
|
|
- var start = delta.start;
|
|
|
- var end = delta.end;
|
|
|
- var firstRow = start.row;
|
|
|
- var lastRow = end.row;
|
|
|
- var len = lastRow - firstRow;
|
|
|
- var removedFolds = null;
|
|
|
-
|
|
|
- this.$updating = true;
|
|
|
- if (len != 0) {
|
|
|
- if (action === "remove") {
|
|
|
- this[useWrapMode ? "$wrapData" : "$rowLengthCache"].splice(firstRow, len);
|
|
|
-
|
|
|
- var foldLines = this.$foldData;
|
|
|
- removedFolds = this.getFoldsInRange(delta);
|
|
|
- this.removeFolds(removedFolds);
|
|
|
-
|
|
|
- var foldLine = this.getFoldLine(end.row);
|
|
|
- var idx = 0;
|
|
|
- if (foldLine) {
|
|
|
- foldLine.addRemoveChars(end.row, end.column, start.column - end.column);
|
|
|
- foldLine.shiftRow(-len);
|
|
|
-
|
|
|
- var foldLineBefore = this.getFoldLine(firstRow);
|
|
|
- if (foldLineBefore && foldLineBefore !== foldLine) {
|
|
|
- foldLineBefore.merge(foldLine);
|
|
|
- foldLine = foldLineBefore;
|
|
|
- }
|
|
|
- idx = foldLines.indexOf(foldLine) + 1;
|
|
|
- }
|
|
|
-
|
|
|
- for (idx; idx < foldLines.length; idx++) {
|
|
|
- var foldLine = foldLines[idx];
|
|
|
- if (foldLine.start.row >= end.row) {
|
|
|
- foldLine.shiftRow(-len);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- lastRow = firstRow;
|
|
|
- } else {
|
|
|
- var args = Array(len);
|
|
|
- args.unshift(firstRow, 0);
|
|
|
- var arr = useWrapMode ? this.$wrapData : this.$rowLengthCache
|
|
|
- arr.splice.apply(arr, args);
|
|
|
- var foldLines = this.$foldData;
|
|
|
- var foldLine = this.getFoldLine(firstRow);
|
|
|
- var idx = 0;
|
|
|
- if (foldLine) {
|
|
|
- var cmp = foldLine.range.compareInside(start.row, start.column);
|
|
|
- if (cmp == 0) {
|
|
|
- foldLine = foldLine.split(start.row, start.column);
|
|
|
- if (foldLine) {
|
|
|
- foldLine.shiftRow(len);
|
|
|
- foldLine.addRemoveChars(lastRow, 0, end.column - start.column);
|
|
|
- }
|
|
|
- } else
|
|
|
- if (cmp == -1) {
|
|
|
- foldLine.addRemoveChars(firstRow, 0, end.column - start.column);
|
|
|
- foldLine.shiftRow(len);
|
|
|
- }
|
|
|
- idx = foldLines.indexOf(foldLine) + 1;
|
|
|
- }
|
|
|
-
|
|
|
- for (idx; idx < foldLines.length; idx++) {
|
|
|
- var foldLine = foldLines[idx];
|
|
|
- if (foldLine.start.row >= firstRow) {
|
|
|
- foldLine.shiftRow(len);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- } else {
|
|
|
- len = Math.abs(delta.start.column - delta.end.column);
|
|
|
- if (action === "remove") {
|
|
|
- removedFolds = this.getFoldsInRange(delta);
|
|
|
- this.removeFolds(removedFolds);
|
|
|
-
|
|
|
- len = -len;
|
|
|
- }
|
|
|
- var foldLine = this.getFoldLine(firstRow);
|
|
|
- if (foldLine) {
|
|
|
- foldLine.addRemoveChars(firstRow, start.column, len);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (useWrapMode && this.$wrapData.length != this.doc.getLength()) {
|
|
|
- console.error("doc.getLength() and $wrapData.length have to be the same!");
|
|
|
- }
|
|
|
- this.$updating = false;
|
|
|
-
|
|
|
- if (useWrapMode)
|
|
|
- this.$updateWrapData(firstRow, lastRow);
|
|
|
- else
|
|
|
- this.$updateRowLengthCache(firstRow, lastRow);
|
|
|
-
|
|
|
- return removedFolds;
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateRowLengthCache = function(firstRow, lastRow, b) {
|
|
|
- this.$rowLengthCache[firstRow] = null;
|
|
|
- this.$rowLengthCache[lastRow] = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateWrapData = function(firstRow, lastRow) {
|
|
|
- var lines = this.doc.getAllLines();
|
|
|
- var tabSize = this.getTabSize();
|
|
|
- var wrapData = this.$wrapData;
|
|
|
- var wrapLimit = this.$wrapLimit;
|
|
|
- var tokens;
|
|
|
- var foldLine;
|
|
|
-
|
|
|
- var row = firstRow;
|
|
|
- lastRow = Math.min(lastRow, lines.length - 1);
|
|
|
- while (row <= lastRow) {
|
|
|
- foldLine = this.getFoldLine(row, foldLine);
|
|
|
- if (!foldLine) {
|
|
|
- tokens = this.$getDisplayTokens(lines[row]);
|
|
|
- wrapData[row] = this.$computeWrapSplits(tokens, wrapLimit, tabSize);
|
|
|
- row ++;
|
|
|
- } else {
|
|
|
- tokens = [];
|
|
|
- foldLine.walk(function(placeholder, row, column, lastColumn) {
|
|
|
- var walkTokens;
|
|
|
- if (placeholder != null) {
|
|
|
- walkTokens = this.$getDisplayTokens(
|
|
|
- placeholder, tokens.length);
|
|
|
- walkTokens[0] = PLACEHOLDER_START;
|
|
|
- for (var i = 1; i < walkTokens.length; i++) {
|
|
|
- walkTokens[i] = PLACEHOLDER_BODY;
|
|
|
- }
|
|
|
- } else {
|
|
|
- walkTokens = this.$getDisplayTokens(
|
|
|
- lines[row].substring(lastColumn, column),
|
|
|
- tokens.length);
|
|
|
- }
|
|
|
- tokens = tokens.concat(walkTokens);
|
|
|
- }.bind(this),
|
|
|
- foldLine.end.row,
|
|
|
- lines[foldLine.end.row].length + 1
|
|
|
- );
|
|
|
-
|
|
|
- wrapData[foldLine.start.row] = this.$computeWrapSplits(tokens, wrapLimit, tabSize);
|
|
|
- row = foldLine.end.row + 1;
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- var CHAR = 1,
|
|
|
- CHAR_EXT = 2,
|
|
|
- PLACEHOLDER_START = 3,
|
|
|
- PLACEHOLDER_BODY = 4,
|
|
|
- PUNCTUATION = 9,
|
|
|
- SPACE = 10,
|
|
|
- TAB = 11,
|
|
|
- TAB_SPACE = 12;
|
|
|
-
|
|
|
-
|
|
|
- this.$computeWrapSplits = function(tokens, wrapLimit, tabSize) {
|
|
|
- if (tokens.length == 0) {
|
|
|
- return [];
|
|
|
- }
|
|
|
-
|
|
|
- var splits = [];
|
|
|
- var displayLength = tokens.length;
|
|
|
- var lastSplit = 0, lastDocSplit = 0;
|
|
|
-
|
|
|
- var isCode = this.$wrapAsCode;
|
|
|
-
|
|
|
- var indentedSoftWrap = this.$indentedSoftWrap;
|
|
|
- var maxIndent = wrapLimit <= Math.max(2 * tabSize, 8)
|
|
|
- || indentedSoftWrap === false ? 0 : Math.floor(wrapLimit / 2);
|
|
|
-
|
|
|
- function getWrapIndent() {
|
|
|
- var indentation = 0;
|
|
|
- if (maxIndent === 0)
|
|
|
- return indentation;
|
|
|
- if (indentedSoftWrap) {
|
|
|
- for (var i = 0; i < tokens.length; i++) {
|
|
|
- var token = tokens[i];
|
|
|
- if (token == SPACE)
|
|
|
- indentation += 1;
|
|
|
- else if (token == TAB)
|
|
|
- indentation += tabSize;
|
|
|
- else if (token == TAB_SPACE)
|
|
|
- continue;
|
|
|
- else
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- if (isCode && indentedSoftWrap !== false)
|
|
|
- indentation += tabSize;
|
|
|
- return Math.min(indentation, maxIndent);
|
|
|
- }
|
|
|
- function addSplit(screenPos) {
|
|
|
- var displayed = tokens.slice(lastSplit, screenPos);
|
|
|
- var len = displayed.length;
|
|
|
- displayed.join("").
|
|
|
- replace(/12/g, function() {
|
|
|
- len -= 1;
|
|
|
- }).
|
|
|
- replace(/2/g, function() {
|
|
|
- len -= 1;
|
|
|
- });
|
|
|
-
|
|
|
- if (!splits.length) {
|
|
|
- indent = getWrapIndent();
|
|
|
- splits.indent = indent;
|
|
|
- }
|
|
|
- lastDocSplit += len;
|
|
|
- splits.push(lastDocSplit);
|
|
|
- lastSplit = screenPos;
|
|
|
- }
|
|
|
- var indent = 0;
|
|
|
- while (displayLength - lastSplit > wrapLimit - indent) {
|
|
|
- var split = lastSplit + wrapLimit - indent;
|
|
|
- if (tokens[split - 1] >= SPACE && tokens[split] >= SPACE) {
|
|
|
- addSplit(split);
|
|
|
- continue;
|
|
|
- }
|
|
|
- if (tokens[split] == PLACEHOLDER_START || tokens[split] == PLACEHOLDER_BODY) {
|
|
|
- for (split; split != lastSplit - 1; split--) {
|
|
|
- if (tokens[split] == PLACEHOLDER_START) {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- if (split > lastSplit) {
|
|
|
- addSplit(split);
|
|
|
- continue;
|
|
|
- }
|
|
|
- split = lastSplit + wrapLimit;
|
|
|
- for (split; split < tokens.length; split++) {
|
|
|
- if (tokens[split] != PLACEHOLDER_BODY) {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- if (split == tokens.length) {
|
|
|
- break; // Breaks the while-loop.
|
|
|
- }
|
|
|
- addSplit(split);
|
|
|
- continue;
|
|
|
- }
|
|
|
- var minSplit = Math.max(split - (wrapLimit -(wrapLimit>>2)), lastSplit - 1);
|
|
|
- while (split > minSplit && tokens[split] < PLACEHOLDER_START) {
|
|
|
- split --;
|
|
|
- }
|
|
|
- if (isCode) {
|
|
|
- while (split > minSplit && tokens[split] < PLACEHOLDER_START) {
|
|
|
- split --;
|
|
|
- }
|
|
|
- while (split > minSplit && tokens[split] == PUNCTUATION) {
|
|
|
- split --;
|
|
|
- }
|
|
|
- } else {
|
|
|
- while (split > minSplit && tokens[split] < SPACE) {
|
|
|
- split --;
|
|
|
- }
|
|
|
- }
|
|
|
- if (split > minSplit) {
|
|
|
- addSplit(++split);
|
|
|
- continue;
|
|
|
- }
|
|
|
- split = lastSplit + wrapLimit;
|
|
|
- if (tokens[split] == CHAR_EXT)
|
|
|
- split--;
|
|
|
- addSplit(split - indent);
|
|
|
- }
|
|
|
- return splits;
|
|
|
- };
|
|
|
- this.$getDisplayTokens = function(str, offset) {
|
|
|
- var arr = [];
|
|
|
- var tabSize;
|
|
|
- offset = offset || 0;
|
|
|
-
|
|
|
- for (var i = 0; i < str.length; i++) {
|
|
|
- var c = str.charCodeAt(i);
|
|
|
- if (c == 9) {
|
|
|
- tabSize = this.getScreenTabSize(arr.length + offset);
|
|
|
- arr.push(TAB);
|
|
|
- for (var n = 1; n < tabSize; n++) {
|
|
|
- arr.push(TAB_SPACE);
|
|
|
- }
|
|
|
- }
|
|
|
- else if (c == 32) {
|
|
|
- arr.push(SPACE);
|
|
|
- } else if((c > 39 && c < 48) || (c > 57 && c < 64)) {
|
|
|
- arr.push(PUNCTUATION);
|
|
|
- }
|
|
|
- else if (c >= 0x1100 && isFullWidth(c)) {
|
|
|
- arr.push(CHAR, CHAR_EXT);
|
|
|
- } else {
|
|
|
- arr.push(CHAR);
|
|
|
- }
|
|
|
- }
|
|
|
- return arr;
|
|
|
- };
|
|
|
- this.$getStringScreenWidth = function(str, maxScreenColumn, screenColumn) {
|
|
|
- if (maxScreenColumn == 0)
|
|
|
- return [0, 0];
|
|
|
- if (maxScreenColumn == null)
|
|
|
- maxScreenColumn = Infinity;
|
|
|
- screenColumn = screenColumn || 0;
|
|
|
-
|
|
|
- var c, column;
|
|
|
- for (column = 0; column < str.length; column++) {
|
|
|
- c = str.charCodeAt(column);
|
|
|
- if (c == 9) {
|
|
|
- screenColumn += this.getScreenTabSize(screenColumn);
|
|
|
- }
|
|
|
- else if (c >= 0x1100 && isFullWidth(c)) {
|
|
|
- screenColumn += 2;
|
|
|
- } else {
|
|
|
- screenColumn += 1;
|
|
|
- }
|
|
|
- if (screenColumn > maxScreenColumn) {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return [screenColumn, column];
|
|
|
- };
|
|
|
-
|
|
|
- this.lineWidgets = null;
|
|
|
- this.getRowLength = function(row) {
|
|
|
- if (this.lineWidgets)
|
|
|
- var h = this.lineWidgets[row] && this.lineWidgets[row].rowCount || 0;
|
|
|
- else
|
|
|
- h = 0
|
|
|
- if (!this.$useWrapMode || !this.$wrapData[row]) {
|
|
|
- return 1 + h;
|
|
|
- } else {
|
|
|
- return this.$wrapData[row].length + 1 + h;
|
|
|
- }
|
|
|
- };
|
|
|
- this.getRowLineCount = function(row) {
|
|
|
- if (!this.$useWrapMode || !this.$wrapData[row]) {
|
|
|
- return 1;
|
|
|
- } else {
|
|
|
- return this.$wrapData[row].length + 1;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.getRowWrapIndent = function(screenRow) {
|
|
|
- if (this.$useWrapMode) {
|
|
|
- var pos = this.screenToDocumentPosition(screenRow, Number.MAX_VALUE);
|
|
|
- var splits = this.$wrapData[pos.row];
|
|
|
- return splits.length && splits[0] < pos.column ? splits.indent : 0;
|
|
|
- } else {
|
|
|
- return 0;
|
|
|
- }
|
|
|
- }
|
|
|
- this.getScreenLastRowColumn = function(screenRow) {
|
|
|
- var pos = this.screenToDocumentPosition(screenRow, Number.MAX_VALUE);
|
|
|
- return this.documentToScreenColumn(pos.row, pos.column);
|
|
|
- };
|
|
|
- this.getDocumentLastRowColumn = function(docRow, docColumn) {
|
|
|
- var screenRow = this.documentToScreenRow(docRow, docColumn);
|
|
|
- return this.getScreenLastRowColumn(screenRow);
|
|
|
- };
|
|
|
- this.getDocumentLastRowColumnPosition = function(docRow, docColumn) {
|
|
|
- var screenRow = this.documentToScreenRow(docRow, docColumn);
|
|
|
- return this.screenToDocumentPosition(screenRow, Number.MAX_VALUE / 10);
|
|
|
- };
|
|
|
- this.getRowSplitData = function(row) {
|
|
|
- if (!this.$useWrapMode) {
|
|
|
- return undefined;
|
|
|
- } else {
|
|
|
- return this.$wrapData[row];
|
|
|
- }
|
|
|
- };
|
|
|
- this.getScreenTabSize = function(screenColumn) {
|
|
|
- return this.$tabSize - screenColumn % this.$tabSize;
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.screenToDocumentRow = function(screenRow, screenColumn) {
|
|
|
- return this.screenToDocumentPosition(screenRow, screenColumn).row;
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.screenToDocumentColumn = function(screenRow, screenColumn) {
|
|
|
- return this.screenToDocumentPosition(screenRow, screenColumn).column;
|
|
|
- };
|
|
|
- this.screenToDocumentPosition = function(screenRow, screenColumn) {
|
|
|
- if (screenRow < 0)
|
|
|
- return {row: 0, column: 0};
|
|
|
-
|
|
|
- var line;
|
|
|
- var docRow = 0;
|
|
|
- var docColumn = 0;
|
|
|
- var column;
|
|
|
- var row = 0;
|
|
|
- var rowLength = 0;
|
|
|
-
|
|
|
- var rowCache = this.$screenRowCache;
|
|
|
- var i = this.$getRowCacheIndex(rowCache, screenRow);
|
|
|
- var l = rowCache.length;
|
|
|
- if (l && i >= 0) {
|
|
|
- var row = rowCache[i];
|
|
|
- var docRow = this.$docRowCache[i];
|
|
|
- var doCache = screenRow > rowCache[l - 1];
|
|
|
- } else {
|
|
|
- var doCache = !l;
|
|
|
- }
|
|
|
-
|
|
|
- var maxRow = this.getLength() - 1;
|
|
|
- var foldLine = this.getNextFoldLine(docRow);
|
|
|
- var foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
-
|
|
|
- while (row <= screenRow) {
|
|
|
- rowLength = this.getRowLength(docRow);
|
|
|
- if (row + rowLength > screenRow || docRow >= maxRow) {
|
|
|
- break;
|
|
|
- } else {
|
|
|
- row += rowLength;
|
|
|
- docRow++;
|
|
|
- if (docRow > foldStart) {
|
|
|
- docRow = foldLine.end.row+1;
|
|
|
- foldLine = this.getNextFoldLine(docRow, foldLine);
|
|
|
- foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (doCache) {
|
|
|
- this.$docRowCache.push(docRow);
|
|
|
- this.$screenRowCache.push(row);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (foldLine && foldLine.start.row <= docRow) {
|
|
|
- line = this.getFoldDisplayLine(foldLine);
|
|
|
- docRow = foldLine.start.row;
|
|
|
- } else if (row + rowLength <= screenRow || docRow > maxRow) {
|
|
|
- return {
|
|
|
- row: maxRow,
|
|
|
- column: this.getLine(maxRow).length
|
|
|
- };
|
|
|
- } else {
|
|
|
- line = this.getLine(docRow);
|
|
|
- foldLine = null;
|
|
|
- }
|
|
|
- var wrapIndent = 0;
|
|
|
- if (this.$useWrapMode) {
|
|
|
- var splits = this.$wrapData[docRow];
|
|
|
- if (splits) {
|
|
|
- var splitIndex = Math.floor(screenRow - row);
|
|
|
- column = splits[splitIndex];
|
|
|
- if(splitIndex > 0 && splits.length) {
|
|
|
- wrapIndent = splits.indent;
|
|
|
- docColumn = splits[splitIndex - 1] || splits[splits.length - 1];
|
|
|
- line = line.substring(docColumn);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- docColumn += this.$getStringScreenWidth(line, screenColumn - wrapIndent)[1];
|
|
|
- if (this.$useWrapMode && docColumn >= column)
|
|
|
- docColumn = column - 1;
|
|
|
-
|
|
|
- if (foldLine)
|
|
|
- return foldLine.idxToPosition(docColumn);
|
|
|
-
|
|
|
- return {row: docRow, column: docColumn};
|
|
|
- };
|
|
|
- this.documentToScreenPosition = function(docRow, docColumn) {
|
|
|
- if (typeof docColumn === "undefined")
|
|
|
- var pos = this.$clipPositionToDocument(docRow.row, docRow.column);
|
|
|
- else
|
|
|
- pos = this.$clipPositionToDocument(docRow, docColumn);
|
|
|
-
|
|
|
- docRow = pos.row;
|
|
|
- docColumn = pos.column;
|
|
|
-
|
|
|
- var screenRow = 0;
|
|
|
- var foldStartRow = null;
|
|
|
- var fold = null;
|
|
|
- fold = this.getFoldAt(docRow, docColumn, 1);
|
|
|
- if (fold) {
|
|
|
- docRow = fold.start.row;
|
|
|
- docColumn = fold.start.column;
|
|
|
- }
|
|
|
-
|
|
|
- var rowEnd, row = 0;
|
|
|
-
|
|
|
-
|
|
|
- var rowCache = this.$docRowCache;
|
|
|
- var i = this.$getRowCacheIndex(rowCache, docRow);
|
|
|
- var l = rowCache.length;
|
|
|
- if (l && i >= 0) {
|
|
|
- var row = rowCache[i];
|
|
|
- var screenRow = this.$screenRowCache[i];
|
|
|
- var doCache = docRow > rowCache[l - 1];
|
|
|
- } else {
|
|
|
- var doCache = !l;
|
|
|
- }
|
|
|
-
|
|
|
- var foldLine = this.getNextFoldLine(row);
|
|
|
- var foldStart = foldLine ?foldLine.start.row :Infinity;
|
|
|
-
|
|
|
- while (row < docRow) {
|
|
|
- if (row >= foldStart) {
|
|
|
- rowEnd = foldLine.end.row + 1;
|
|
|
- if (rowEnd > docRow)
|
|
|
- break;
|
|
|
- foldLine = this.getNextFoldLine(rowEnd, foldLine);
|
|
|
- foldStart = foldLine ?foldLine.start.row :Infinity;
|
|
|
- }
|
|
|
- else {
|
|
|
- rowEnd = row + 1;
|
|
|
- }
|
|
|
-
|
|
|
- screenRow += this.getRowLength(row);
|
|
|
- row = rowEnd;
|
|
|
-
|
|
|
- if (doCache) {
|
|
|
- this.$docRowCache.push(row);
|
|
|
- this.$screenRowCache.push(screenRow);
|
|
|
- }
|
|
|
- }
|
|
|
- var textLine = "";
|
|
|
- if (foldLine && row >= foldStart) {
|
|
|
- textLine = this.getFoldDisplayLine(foldLine, docRow, docColumn);
|
|
|
- foldStartRow = foldLine.start.row;
|
|
|
- } else {
|
|
|
- textLine = this.getLine(docRow).substring(0, docColumn);
|
|
|
- foldStartRow = docRow;
|
|
|
- }
|
|
|
- var wrapIndent = 0;
|
|
|
- if (this.$useWrapMode) {
|
|
|
- var wrapRow = this.$wrapData[foldStartRow];
|
|
|
- if (wrapRow) {
|
|
|
- var screenRowOffset = 0;
|
|
|
- while (textLine.length >= wrapRow[screenRowOffset]) {
|
|
|
- screenRow ++;
|
|
|
- screenRowOffset++;
|
|
|
- }
|
|
|
- textLine = textLine.substring(
|
|
|
- wrapRow[screenRowOffset - 1] || 0, textLine.length
|
|
|
- );
|
|
|
- wrapIndent = screenRowOffset > 0 ? wrapRow.indent : 0;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return {
|
|
|
- row: screenRow,
|
|
|
- column: wrapIndent + this.$getStringScreenWidth(textLine)[0]
|
|
|
- };
|
|
|
- };
|
|
|
- this.documentToScreenColumn = function(row, docColumn) {
|
|
|
- return this.documentToScreenPosition(row, docColumn).column;
|
|
|
- };
|
|
|
- this.documentToScreenRow = function(docRow, docColumn) {
|
|
|
- return this.documentToScreenPosition(docRow, docColumn).row;
|
|
|
- };
|
|
|
- this.getScreenLength = function() {
|
|
|
- var screenRows = 0;
|
|
|
- var fold = null;
|
|
|
- if (!this.$useWrapMode) {
|
|
|
- screenRows = this.getLength();
|
|
|
- var foldData = this.$foldData;
|
|
|
- for (var i = 0; i < foldData.length; i++) {
|
|
|
- fold = foldData[i];
|
|
|
- screenRows -= fold.end.row - fold.start.row;
|
|
|
- }
|
|
|
- } else {
|
|
|
- var lastRow = this.$wrapData.length;
|
|
|
- var row = 0, i = 0;
|
|
|
- var fold = this.$foldData[i++];
|
|
|
- var foldStart = fold ? fold.start.row :Infinity;
|
|
|
-
|
|
|
- while (row < lastRow) {
|
|
|
- var splits = this.$wrapData[row];
|
|
|
- screenRows += splits ? splits.length + 1 : 1;
|
|
|
- row ++;
|
|
|
- if (row > foldStart) {
|
|
|
- row = fold.end.row+1;
|
|
|
- fold = this.$foldData[i++];
|
|
|
- foldStart = fold ?fold.start.row :Infinity;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if (this.lineWidgets)
|
|
|
- screenRows += this.$getWidgetScreenLength();
|
|
|
-
|
|
|
- return screenRows;
|
|
|
- };
|
|
|
- this.$setFontMetrics = function(fm) {
|
|
|
- };
|
|
|
-
|
|
|
- this.destroy = function() {
|
|
|
- if (this.bgTokenizer) {
|
|
|
- this.bgTokenizer.setDocument(null);
|
|
|
- this.bgTokenizer = null;
|
|
|
- }
|
|
|
- this.$stopWorker();
|
|
|
- };
|
|
|
- function isFullWidth(c) {
|
|
|
- if (c < 0x1100)
|
|
|
- return false;
|
|
|
- return c >= 0x1100 && c <= 0x115F ||
|
|
|
- c >= 0x11A3 && c <= 0x11A7 ||
|
|
|
- c >= 0x11FA && c <= 0x11FF ||
|
|
|
- c >= 0x2329 && c <= 0x232A ||
|
|
|
- c >= 0x2E80 && c <= 0x2E99 ||
|
|
|
- c >= 0x2E9B && c <= 0x2EF3 ||
|
|
|
- c >= 0x2F00 && c <= 0x2FD5 ||
|
|
|
- c >= 0x2FF0 && c <= 0x2FFB ||
|
|
|
- c >= 0x3000 && c <= 0x303E ||
|
|
|
- c >= 0x3041 && c <= 0x3096 ||
|
|
|
- c >= 0x3099 && c <= 0x30FF ||
|
|
|
- c >= 0x3105 && c <= 0x312D ||
|
|
|
- c >= 0x3131 && c <= 0x318E ||
|
|
|
- c >= 0x3190 && c <= 0x31BA ||
|
|
|
- c >= 0x31C0 && c <= 0x31E3 ||
|
|
|
- c >= 0x31F0 && c <= 0x321E ||
|
|
|
- c >= 0x3220 && c <= 0x3247 ||
|
|
|
- c >= 0x3250 && c <= 0x32FE ||
|
|
|
- c >= 0x3300 && c <= 0x4DBF ||
|
|
|
- c >= 0x4E00 && c <= 0xA48C ||
|
|
|
- c >= 0xA490 && c <= 0xA4C6 ||
|
|
|
- c >= 0xA960 && c <= 0xA97C ||
|
|
|
- c >= 0xAC00 && c <= 0xD7A3 ||
|
|
|
- c >= 0xD7B0 && c <= 0xD7C6 ||
|
|
|
- c >= 0xD7CB && c <= 0xD7FB ||
|
|
|
- c >= 0xF900 && c <= 0xFAFF ||
|
|
|
- c >= 0xFE10 && c <= 0xFE19 ||
|
|
|
- c >= 0xFE30 && c <= 0xFE52 ||
|
|
|
- c >= 0xFE54 && c <= 0xFE66 ||
|
|
|
- c >= 0xFE68 && c <= 0xFE6B ||
|
|
|
- c >= 0xFF01 && c <= 0xFF60 ||
|
|
|
- c >= 0xFFE0 && c <= 0xFFE6;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(EditSession.prototype);
|
|
|
-
|
|
|
-require("./edit_session/folding").Folding.call(EditSession.prototype);
|
|
|
-require("./edit_session/bracket_match").BracketMatch.call(EditSession.prototype);
|
|
|
-
|
|
|
-
|
|
|
-config.defineOptions(EditSession.prototype, "session", {
|
|
|
- wrap: {
|
|
|
- set: function(value) {
|
|
|
- if (!value || value == "off")
|
|
|
- value = false;
|
|
|
- else if (value == "free")
|
|
|
- value = true;
|
|
|
- else if (value == "printMargin")
|
|
|
- value = -1;
|
|
|
- else if (typeof value == "string")
|
|
|
- value = parseInt(value, 10) || false;
|
|
|
-
|
|
|
- if (this.$wrap == value)
|
|
|
- return;
|
|
|
- this.$wrap = value;
|
|
|
- if (!value) {
|
|
|
- this.setUseWrapMode(false);
|
|
|
- } else {
|
|
|
- var col = typeof value == "number" ? value : null;
|
|
|
- this.setWrapLimitRange(col, col);
|
|
|
- this.setUseWrapMode(true);
|
|
|
- }
|
|
|
- },
|
|
|
- get: function() {
|
|
|
- if (this.getUseWrapMode()) {
|
|
|
- if (this.$wrap == -1)
|
|
|
- return "printMargin";
|
|
|
- if (!this.getWrapLimitRange().min)
|
|
|
- return "free";
|
|
|
- return this.$wrap;
|
|
|
- }
|
|
|
- return "off";
|
|
|
- },
|
|
|
- handlesSet: true
|
|
|
- },
|
|
|
- wrapMethod: {
|
|
|
- set: function(val) {
|
|
|
- val = val == "auto"
|
|
|
- ? this.$mode.type != "text"
|
|
|
- : val != "text";
|
|
|
- if (val != this.$wrapAsCode) {
|
|
|
- this.$wrapAsCode = val;
|
|
|
- if (this.$useWrapMode) {
|
|
|
- this.$modified = true;
|
|
|
- this.$resetRowCache(0);
|
|
|
- this.$updateWrapData(0, this.getLength() - 1);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
- initialValue: "auto"
|
|
|
- },
|
|
|
- indentedSoftWrap: { initialValue: true },
|
|
|
- firstLineNumber: {
|
|
|
- set: function() {this._signal("changeBreakpoint");},
|
|
|
- initialValue: 1
|
|
|
- },
|
|
|
- useWorker: {
|
|
|
- set: function(useWorker) {
|
|
|
- this.$useWorker = useWorker;
|
|
|
-
|
|
|
- this.$stopWorker();
|
|
|
- if (useWorker)
|
|
|
- this.$startWorker();
|
|
|
- },
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- useSoftTabs: {initialValue: true},
|
|
|
- tabSize: {
|
|
|
- set: function(tabSize) {
|
|
|
- if (isNaN(tabSize) || this.$tabSize === tabSize) return;
|
|
|
-
|
|
|
- this.$modified = true;
|
|
|
- this.$rowLengthCache = [];
|
|
|
- this.$tabSize = tabSize;
|
|
|
- this._signal("changeTabSize");
|
|
|
- },
|
|
|
- initialValue: 4,
|
|
|
- handlesSet: true
|
|
|
- },
|
|
|
- overwrite: {
|
|
|
- set: function(val) {this._signal("changeOverwrite");},
|
|
|
- initialValue: false
|
|
|
- },
|
|
|
- newLineMode: {
|
|
|
- set: function(val) {this.doc.setNewLineMode(val)},
|
|
|
- get: function() {return this.doc.getNewLineMode()},
|
|
|
- handlesSet: true
|
|
|
- },
|
|
|
- mode: {
|
|
|
- set: function(val) { this.setMode(val) },
|
|
|
- get: function() { return this.$modeId }
|
|
|
- }
|
|
|
-});
|
|
|
-
|
|
|
-exports.EditSession = EditSession;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var lang = require("./lib/lang");
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var Range = require("./range").Range;
|
|
|
-
|
|
|
-var Search = function() {
|
|
|
- this.$options = {};
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.set = function(options) {
|
|
|
- oop.mixin(this.$options, options);
|
|
|
- return this;
|
|
|
- };
|
|
|
- this.getOptions = function() {
|
|
|
- return lang.copyObject(this.$options);
|
|
|
- };
|
|
|
- this.setOptions = function(options) {
|
|
|
- this.$options = options;
|
|
|
- };
|
|
|
- this.find = function(session) {
|
|
|
- var options = this.$options;
|
|
|
- var iterator = this.$matchIterator(session, options);
|
|
|
- if (!iterator)
|
|
|
- return false;
|
|
|
-
|
|
|
- var firstRange = null;
|
|
|
- iterator.forEach(function(range, row, offset) {
|
|
|
- if (!range.start) {
|
|
|
- var column = range.offset + (offset || 0);
|
|
|
- firstRange = new Range(row, column, row, column + range.length);
|
|
|
- if (!range.length && options.start && options.start.start
|
|
|
- && options.skipCurrent != false && firstRange.isEqual(options.start)
|
|
|
- ) {
|
|
|
- firstRange = null;
|
|
|
- return false;
|
|
|
- }
|
|
|
- } else
|
|
|
- firstRange = range;
|
|
|
- return true;
|
|
|
- });
|
|
|
-
|
|
|
- return firstRange;
|
|
|
- };
|
|
|
- this.findAll = function(session) {
|
|
|
- var options = this.$options;
|
|
|
- if (!options.needle)
|
|
|
- return [];
|
|
|
- this.$assembleRegExp(options);
|
|
|
-
|
|
|
- var range = options.range;
|
|
|
- var lines = range
|
|
|
- ? session.getLines(range.start.row, range.end.row)
|
|
|
- : session.doc.getAllLines();
|
|
|
-
|
|
|
- var ranges = [];
|
|
|
- var re = options.re;
|
|
|
- if (options.$isMultiLine) {
|
|
|
- var len = re.length;
|
|
|
- var maxRow = lines.length - len;
|
|
|
- var prevRange;
|
|
|
- outer: for (var row = re.offset || 0; row <= maxRow; row++) {
|
|
|
- for (var j = 0; j < len; j++)
|
|
|
- if (lines[row + j].search(re[j]) == -1)
|
|
|
- continue outer;
|
|
|
-
|
|
|
- var startLine = lines[row];
|
|
|
- var line = lines[row + len - 1];
|
|
|
- var startIndex = startLine.length - startLine.match(re[0])[0].length;
|
|
|
- var endIndex = line.match(re[len - 1])[0].length;
|
|
|
-
|
|
|
- if (prevRange && prevRange.end.row === row &&
|
|
|
- prevRange.end.column > startIndex
|
|
|
- ) {
|
|
|
- continue;
|
|
|
- }
|
|
|
- ranges.push(prevRange = new Range(
|
|
|
- row, startIndex, row + len - 1, endIndex
|
|
|
- ));
|
|
|
- if (len > 2)
|
|
|
- row = row + len - 2;
|
|
|
- }
|
|
|
- } else {
|
|
|
- for (var i = 0; i < lines.length; i++) {
|
|
|
- var matches = lang.getMatchOffsets(lines[i], re);
|
|
|
- for (var j = 0; j < matches.length; j++) {
|
|
|
- var match = matches[j];
|
|
|
- ranges.push(new Range(i, match.offset, i, match.offset + match.length));
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (range) {
|
|
|
- var startColumn = range.start.column;
|
|
|
- var endColumn = range.start.column;
|
|
|
- var i = 0, j = ranges.length - 1;
|
|
|
- while (i < j && ranges[i].start.column < startColumn && ranges[i].start.row == range.start.row)
|
|
|
- i++;
|
|
|
-
|
|
|
- while (i < j && ranges[j].end.column > endColumn && ranges[j].end.row == range.end.row)
|
|
|
- j--;
|
|
|
-
|
|
|
- ranges = ranges.slice(i, j + 1);
|
|
|
- for (i = 0, j = ranges.length; i < j; i++) {
|
|
|
- ranges[i].start.row += range.start.row;
|
|
|
- ranges[i].end.row += range.start.row;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return ranges;
|
|
|
- };
|
|
|
- this.replace = function(input, replacement) {
|
|
|
- var options = this.$options;
|
|
|
-
|
|
|
- var re = this.$assembleRegExp(options);
|
|
|
- if (options.$isMultiLine)
|
|
|
- return replacement;
|
|
|
-
|
|
|
- if (!re)
|
|
|
- return;
|
|
|
-
|
|
|
- var match = re.exec(input);
|
|
|
- if (!match || match[0].length != input.length)
|
|
|
- return null;
|
|
|
-
|
|
|
- replacement = input.replace(re, replacement);
|
|
|
- if (options.preserveCase) {
|
|
|
- replacement = replacement.split("");
|
|
|
- for (var i = Math.min(input.length, input.length); i--; ) {
|
|
|
- var ch = input[i];
|
|
|
- if (ch && ch.toLowerCase() != ch)
|
|
|
- replacement[i] = replacement[i].toUpperCase();
|
|
|
- else
|
|
|
- replacement[i] = replacement[i].toLowerCase();
|
|
|
- }
|
|
|
- replacement = replacement.join("");
|
|
|
- }
|
|
|
-
|
|
|
- return replacement;
|
|
|
- };
|
|
|
-
|
|
|
- this.$matchIterator = function(session, options) {
|
|
|
- var re = this.$assembleRegExp(options);
|
|
|
- if (!re)
|
|
|
- return false;
|
|
|
-
|
|
|
- var callback;
|
|
|
- if (options.$isMultiLine) {
|
|
|
- var len = re.length;
|
|
|
- var matchIterator = function(line, row, offset) {
|
|
|
- var startIndex = line.search(re[0]);
|
|
|
- if (startIndex == -1)
|
|
|
- return;
|
|
|
- for (var i = 1; i < len; i++) {
|
|
|
- line = session.getLine(row + i);
|
|
|
- if (line.search(re[i]) == -1)
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var endIndex = line.match(re[len - 1])[0].length;
|
|
|
-
|
|
|
- var range = new Range(row, startIndex, row + len - 1, endIndex);
|
|
|
- if (re.offset == 1) {
|
|
|
- range.start.row--;
|
|
|
- range.start.column = Number.MAX_VALUE;
|
|
|
- } else if (offset)
|
|
|
- range.start.column += offset;
|
|
|
-
|
|
|
- if (callback(range))
|
|
|
- return true;
|
|
|
- };
|
|
|
- } else if (options.backwards) {
|
|
|
- var matchIterator = function(line, row, startIndex) {
|
|
|
- var matches = lang.getMatchOffsets(line, re);
|
|
|
- for (var i = matches.length-1; i >= 0; i--)
|
|
|
- if (callback(matches[i], row, startIndex))
|
|
|
- return true;
|
|
|
- };
|
|
|
- } else {
|
|
|
- var matchIterator = function(line, row, startIndex) {
|
|
|
- var matches = lang.getMatchOffsets(line, re);
|
|
|
- for (var i = 0; i < matches.length; i++)
|
|
|
- if (callback(matches[i], row, startIndex))
|
|
|
- return true;
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- var lineIterator = this.$lineIterator(session, options);
|
|
|
-
|
|
|
- return {
|
|
|
- forEach: function(_callback) {
|
|
|
- callback = _callback;
|
|
|
- lineIterator.forEach(matchIterator);
|
|
|
- }
|
|
|
- };
|
|
|
- };
|
|
|
-
|
|
|
- this.$assembleRegExp = function(options, $disableFakeMultiline) {
|
|
|
- if (options.needle instanceof RegExp)
|
|
|
- return options.re = options.needle;
|
|
|
-
|
|
|
- var needle = options.needle;
|
|
|
-
|
|
|
- if (!options.needle)
|
|
|
- return options.re = false;
|
|
|
-
|
|
|
- if (!options.regExp)
|
|
|
- needle = lang.escapeRegExp(needle);
|
|
|
-
|
|
|
- if (options.wholeWord)
|
|
|
- needle = "\\b" + needle + "\\b";
|
|
|
-
|
|
|
- var modifier = options.caseSensitive ? "gm" : "gmi";
|
|
|
-
|
|
|
- options.$isMultiLine = !$disableFakeMultiline && /[\n\r]/.test(needle);
|
|
|
- if (options.$isMultiLine)
|
|
|
- return options.re = this.$assembleMultilineRegExp(needle, modifier);
|
|
|
-
|
|
|
- try {
|
|
|
- var re = new RegExp(needle, modifier);
|
|
|
- } catch(e) {
|
|
|
- re = false;
|
|
|
- }
|
|
|
- return options.re = re;
|
|
|
- };
|
|
|
-
|
|
|
- this.$assembleMultilineRegExp = function(needle, modifier) {
|
|
|
- var parts = needle.replace(/\r\n|\r|\n/g, "$\n^").split("\n");
|
|
|
- var re = [];
|
|
|
- for (var i = 0; i < parts.length; i++) try {
|
|
|
- re.push(new RegExp(parts[i], modifier));
|
|
|
- } catch(e) {
|
|
|
- return false;
|
|
|
- }
|
|
|
- if (parts[0] == "") {
|
|
|
- re.shift();
|
|
|
- re.offset = 1;
|
|
|
- } else {
|
|
|
- re.offset = 0;
|
|
|
- }
|
|
|
- return re;
|
|
|
- };
|
|
|
-
|
|
|
- this.$lineIterator = function(session, options) {
|
|
|
- var backwards = options.backwards == true;
|
|
|
- var skipCurrent = options.skipCurrent != false;
|
|
|
-
|
|
|
- var range = options.range;
|
|
|
- var start = options.start;
|
|
|
- if (!start)
|
|
|
- start = range ? range[backwards ? "end" : "start"] : session.selection.getRange();
|
|
|
-
|
|
|
- if (start.start)
|
|
|
- start = start[skipCurrent != backwards ? "end" : "start"];
|
|
|
-
|
|
|
- var firstRow = range ? range.start.row : 0;
|
|
|
- var lastRow = range ? range.end.row : session.getLength() - 1;
|
|
|
-
|
|
|
- var forEach = backwards ? function(callback) {
|
|
|
- var row = start.row;
|
|
|
-
|
|
|
- var line = session.getLine(row).substring(0, start.column);
|
|
|
- if (callback(line, row))
|
|
|
- return;
|
|
|
-
|
|
|
- for (row--; row >= firstRow; row--)
|
|
|
- if (callback(session.getLine(row), row))
|
|
|
- return;
|
|
|
-
|
|
|
- if (options.wrap == false)
|
|
|
- return;
|
|
|
-
|
|
|
- for (row = lastRow, firstRow = start.row; row >= firstRow; row--)
|
|
|
- if (callback(session.getLine(row), row))
|
|
|
- return;
|
|
|
- } : function(callback) {
|
|
|
- var row = start.row;
|
|
|
-
|
|
|
- var line = session.getLine(row).substr(start.column);
|
|
|
- if (callback(line, row, start.column))
|
|
|
- return;
|
|
|
-
|
|
|
- for (row = row+1; row <= lastRow; row++)
|
|
|
- if (callback(session.getLine(row), row))
|
|
|
- return;
|
|
|
-
|
|
|
- if (options.wrap == false)
|
|
|
- return;
|
|
|
-
|
|
|
- for (row = firstRow, lastRow = start.row; row <= lastRow; row++)
|
|
|
- if (callback(session.getLine(row), row))
|
|
|
- return;
|
|
|
- };
|
|
|
-
|
|
|
- return {forEach: forEach};
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Search.prototype);
|
|
|
-
|
|
|
-exports.Search = Search;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var keyUtil = require("../lib/keys");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-var KEY_MODS = keyUtil.KEY_MODS;
|
|
|
-
|
|
|
-function HashHandler(config, platform) {
|
|
|
- this.platform = platform || (useragent.isMac ? "mac" : "win");
|
|
|
- this.commands = {};
|
|
|
- this.commandKeyBinding = {};
|
|
|
- this.addCommands(config);
|
|
|
- this.$singleCommand = true;
|
|
|
-}
|
|
|
-
|
|
|
-function MultiHashHandler(config, platform) {
|
|
|
- HashHandler.call(this, config, platform);
|
|
|
- this.$singleCommand = false;
|
|
|
-}
|
|
|
-
|
|
|
-MultiHashHandler.prototype = HashHandler.prototype;
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
-
|
|
|
- this.addCommand = function(command) {
|
|
|
- if (this.commands[command.name])
|
|
|
- this.removeCommand(command);
|
|
|
-
|
|
|
- this.commands[command.name] = command;
|
|
|
-
|
|
|
- if (command.bindKey)
|
|
|
- this._buildKeyHash(command);
|
|
|
- };
|
|
|
-
|
|
|
- this.removeCommand = function(command, keepCommand) {
|
|
|
- var name = command && (typeof command === 'string' ? command : command.name);
|
|
|
- command = this.commands[name];
|
|
|
- if (!keepCommand)
|
|
|
- delete this.commands[name];
|
|
|
- var ckb = this.commandKeyBinding;
|
|
|
- for (var keyId in ckb) {
|
|
|
- var cmdGroup = ckb[keyId];
|
|
|
- if (cmdGroup == command) {
|
|
|
- delete ckb[keyId];
|
|
|
- } else if (Array.isArray(cmdGroup)) {
|
|
|
- var i = cmdGroup.indexOf(command);
|
|
|
- if (i != -1) {
|
|
|
- cmdGroup.splice(i, 1);
|
|
|
- if (cmdGroup.length == 1)
|
|
|
- ckb[keyId] = cmdGroup[0];
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.bindKey = function(key, command, position) {
|
|
|
- if (typeof key == "object") {
|
|
|
- if (position == undefined)
|
|
|
- position = key.position;
|
|
|
- key = key[this.platform];
|
|
|
- }
|
|
|
- if (!key)
|
|
|
- return;
|
|
|
- if (typeof command == "function")
|
|
|
- return this.addCommand({exec: command, bindKey: key, name: command.name || key});
|
|
|
-
|
|
|
- key.split("|").forEach(function(keyPart) {
|
|
|
- var chain = "";
|
|
|
- if (keyPart.indexOf(" ") != -1) {
|
|
|
- var parts = keyPart.split(/\s+/);
|
|
|
- keyPart = parts.pop();
|
|
|
- parts.forEach(function(keyPart) {
|
|
|
- var binding = this.parseKeys(keyPart);
|
|
|
- var id = KEY_MODS[binding.hashId] + binding.key;
|
|
|
- chain += (chain ? " " : "") + id;
|
|
|
- this._addCommandToBinding(chain, "chainKeys");
|
|
|
- }, this);
|
|
|
- chain += " ";
|
|
|
- }
|
|
|
- var binding = this.parseKeys(keyPart);
|
|
|
- var id = KEY_MODS[binding.hashId] + binding.key;
|
|
|
- this._addCommandToBinding(chain + id, command, position);
|
|
|
- }, this);
|
|
|
- };
|
|
|
-
|
|
|
- function getPosition(command) {
|
|
|
- return typeof command == "object" && command.bindKey
|
|
|
- && command.bindKey.position || 0;
|
|
|
- }
|
|
|
- this._addCommandToBinding = function(keyId, command, position) {
|
|
|
- var ckb = this.commandKeyBinding, i;
|
|
|
- if (!command) {
|
|
|
- delete ckb[keyId];
|
|
|
- } else if (!ckb[keyId] || this.$singleCommand) {
|
|
|
- ckb[keyId] = command;
|
|
|
- } else {
|
|
|
- if (!Array.isArray(ckb[keyId])) {
|
|
|
- ckb[keyId] = [ckb[keyId]];
|
|
|
- } else if ((i = ckb[keyId].indexOf(command)) != -1) {
|
|
|
- ckb[keyId].splice(i, 1);
|
|
|
- }
|
|
|
-
|
|
|
- if (typeof position != "number") {
|
|
|
- if (position || command.isDefault)
|
|
|
- position = -100;
|
|
|
- else
|
|
|
- position = getPosition(command);
|
|
|
- }
|
|
|
- var commands = ckb[keyId];
|
|
|
- for (i = 0; i < commands.length; i++) {
|
|
|
- var other = commands[i];
|
|
|
- var otherPos = getPosition(other);
|
|
|
- if (otherPos > position)
|
|
|
- break;
|
|
|
- }
|
|
|
- commands.splice(i, 0, command);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.addCommands = function(commands) {
|
|
|
- commands && Object.keys(commands).forEach(function(name) {
|
|
|
- var command = commands[name];
|
|
|
- if (!command)
|
|
|
- return;
|
|
|
-
|
|
|
- if (typeof command === "string")
|
|
|
- return this.bindKey(command, name);
|
|
|
-
|
|
|
- if (typeof command === "function")
|
|
|
- command = { exec: command };
|
|
|
-
|
|
|
- if (typeof command !== "object")
|
|
|
- return;
|
|
|
-
|
|
|
- if (!command.name)
|
|
|
- command.name = name;
|
|
|
-
|
|
|
- this.addCommand(command);
|
|
|
- }, this);
|
|
|
- };
|
|
|
-
|
|
|
- this.removeCommands = function(commands) {
|
|
|
- Object.keys(commands).forEach(function(name) {
|
|
|
- this.removeCommand(commands[name]);
|
|
|
- }, this);
|
|
|
- };
|
|
|
-
|
|
|
- this.bindKeys = function(keyList) {
|
|
|
- Object.keys(keyList).forEach(function(key) {
|
|
|
- this.bindKey(key, keyList[key]);
|
|
|
- }, this);
|
|
|
- };
|
|
|
-
|
|
|
- this._buildKeyHash = function(command) {
|
|
|
- this.bindKey(command.bindKey, command);
|
|
|
- };
|
|
|
- this.parseKeys = function(keys) {
|
|
|
- var parts = keys.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(x){return x});
|
|
|
- var key = parts.pop();
|
|
|
-
|
|
|
- var keyCode = keyUtil[key];
|
|
|
- if (keyUtil.FUNCTION_KEYS[keyCode])
|
|
|
- key = keyUtil.FUNCTION_KEYS[keyCode].toLowerCase();
|
|
|
- else if (!parts.length)
|
|
|
- return {key: key, hashId: -1};
|
|
|
- else if (parts.length == 1 && parts[0] == "shift")
|
|
|
- return {key: key.toUpperCase(), hashId: -1};
|
|
|
-
|
|
|
- var hashId = 0;
|
|
|
- for (var i = parts.length; i--;) {
|
|
|
- var modifier = keyUtil.KEY_MODS[parts[i]];
|
|
|
- if (modifier == null) {
|
|
|
- if (typeof console != "undefined")
|
|
|
- console.error("invalid modifier " + parts[i] + " in " + keys);
|
|
|
- return false;
|
|
|
- }
|
|
|
- hashId |= modifier;
|
|
|
- }
|
|
|
- return {key: key, hashId: hashId};
|
|
|
- };
|
|
|
-
|
|
|
- this.findKeyCommand = function findKeyCommand(hashId, keyString) {
|
|
|
- var key = KEY_MODS[hashId] + keyString;
|
|
|
- return this.commandKeyBinding[key];
|
|
|
- };
|
|
|
-
|
|
|
- this.handleKeyboard = function(data, hashId, keyString, keyCode) {
|
|
|
- var key = KEY_MODS[hashId] + keyString;
|
|
|
- var command = this.commandKeyBinding[key];
|
|
|
- if (data.$keyChain) {
|
|
|
- data.$keyChain += " " + key;
|
|
|
- command = this.commandKeyBinding[data.$keyChain] || command;
|
|
|
- }
|
|
|
-
|
|
|
- if (command) {
|
|
|
- if (command == "chainKeys" || command[command.length - 1] == "chainKeys") {
|
|
|
- data.$keyChain = data.$keyChain || key;
|
|
|
- return {command: "null"};
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (data.$keyChain) {
|
|
|
- if ((!hashId || hashId == 4) && keyString.length == 1)
|
|
|
- data.$keyChain = data.$keyChain.slice(0, -key.length - 1); // wait for input
|
|
|
- else if (hashId == -1 || keyCode > 0)
|
|
|
- data.$keyChain = ""; // reset keyChain
|
|
|
- }
|
|
|
- return {command: command};
|
|
|
- };
|
|
|
-
|
|
|
- this.getStatusText = function(editor, data) {
|
|
|
- return data.$keyChain || "";
|
|
|
- };
|
|
|
-
|
|
|
-}).call(HashHandler.prototype);
|
|
|
-
|
|
|
-exports.HashHandler = HashHandler;
|
|
|
-exports.MultiHashHandler = MultiHashHandler;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var MultiHashHandler = require("../keyboard/hash_handler").MultiHashHandler;
|
|
|
-var EventEmitter = require("../lib/event_emitter").EventEmitter;
|
|
|
-
|
|
|
-var CommandManager = function(platform, commands) {
|
|
|
- MultiHashHandler.call(this, commands, platform);
|
|
|
- this.byName = this.commands;
|
|
|
- this.setDefaultHandler("exec", function(e) {
|
|
|
- return e.command.exec(e.editor, e.args || {});
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(CommandManager, MultiHashHandler);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.exec = function(command, editor, args) {
|
|
|
- if (Array.isArray(command)) {
|
|
|
- for (var i = command.length; i--; ) {
|
|
|
- if (this.exec(command[i], editor, args)) return true;
|
|
|
- }
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- if (typeof command === "string")
|
|
|
- command = this.commands[command];
|
|
|
-
|
|
|
- if (!command)
|
|
|
- return false;
|
|
|
-
|
|
|
- if (editor && editor.$readOnly && !command.readOnly)
|
|
|
- return false;
|
|
|
-
|
|
|
- var e = {editor: editor, command: command, args: args};
|
|
|
- e.returnValue = this._emit("exec", e);
|
|
|
- this._signal("afterExec", e);
|
|
|
-
|
|
|
- return e.returnValue === false ? false : true;
|
|
|
- };
|
|
|
-
|
|
|
- this.toggleRecording = function(editor) {
|
|
|
- if (this.$inReplay)
|
|
|
- return;
|
|
|
-
|
|
|
- editor && editor._emit("changeStatus");
|
|
|
- if (this.recording) {
|
|
|
- this.macro.pop();
|
|
|
- this.removeEventListener("exec", this.$addCommandToMacro);
|
|
|
-
|
|
|
- if (!this.macro.length)
|
|
|
- this.macro = this.oldMacro;
|
|
|
-
|
|
|
- return this.recording = false;
|
|
|
- }
|
|
|
- if (!this.$addCommandToMacro) {
|
|
|
- this.$addCommandToMacro = function(e) {
|
|
|
- this.macro.push([e.command, e.args]);
|
|
|
- }.bind(this);
|
|
|
- }
|
|
|
-
|
|
|
- this.oldMacro = this.macro;
|
|
|
- this.macro = [];
|
|
|
- this.on("exec", this.$addCommandToMacro);
|
|
|
- return this.recording = true;
|
|
|
- };
|
|
|
-
|
|
|
- this.replay = function(editor) {
|
|
|
- if (this.$inReplay || !this.macro)
|
|
|
- return;
|
|
|
-
|
|
|
- if (this.recording)
|
|
|
- return this.toggleRecording(editor);
|
|
|
-
|
|
|
- try {
|
|
|
- this.$inReplay = true;
|
|
|
- this.macro.forEach(function(x) {
|
|
|
- if (typeof x == "string")
|
|
|
- this.exec(x, editor);
|
|
|
- else
|
|
|
- this.exec(x[0], editor, x[1]);
|
|
|
- }, this);
|
|
|
- } finally {
|
|
|
- this.$inReplay = false;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.trimMacro = function(m) {
|
|
|
- return m.map(function(x){
|
|
|
- if (typeof x[0] != "string")
|
|
|
- x[0] = x[0].name;
|
|
|
- if (!x[1])
|
|
|
- x = x[0];
|
|
|
- return x;
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
-}).call(CommandManager.prototype);
|
|
|
-
|
|
|
-exports.CommandManager = CommandManager;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var config = require("../config");
|
|
|
-var Range = require("../range").Range;
|
|
|
-
|
|
|
-function bindKey(win, mac) {
|
|
|
- return {win: win, mac: mac};
|
|
|
-}
|
|
|
-exports.commands = [{
|
|
|
- name: "showSettingsMenu",
|
|
|
- bindKey: bindKey("Ctrl-,", "Command-,"),
|
|
|
- exec: function(editor) {
|
|
|
- config.loadModule("ace/ext/settings_menu", function(module) {
|
|
|
- module.init(editor);
|
|
|
- editor.showSettingsMenu();
|
|
|
- });
|
|
|
- },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "goToNextError",
|
|
|
- bindKey: bindKey("Alt-E", "Ctrl-E"),
|
|
|
- exec: function(editor) {
|
|
|
- config.loadModule("ace/ext/error_marker", function(module) {
|
|
|
- module.showErrorMarker(editor, 1);
|
|
|
- });
|
|
|
- },
|
|
|
- scrollIntoView: "animate",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "goToPreviousError",
|
|
|
- bindKey: bindKey("Alt-Shift-E", "Ctrl-Shift-E"),
|
|
|
- exec: function(editor) {
|
|
|
- config.loadModule("ace/ext/error_marker", function(module) {
|
|
|
- module.showErrorMarker(editor, -1);
|
|
|
- });
|
|
|
- },
|
|
|
- scrollIntoView: "animate",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectall",
|
|
|
- bindKey: bindKey("Ctrl-A", "Command-A"),
|
|
|
- exec: function(editor) { editor.selectAll(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "centerselection",
|
|
|
- bindKey: bindKey(null, "Ctrl-L"),
|
|
|
- exec: function(editor) { editor.centerSelection(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotoline",
|
|
|
- bindKey: bindKey("Ctrl-L", "Command-L"),
|
|
|
- exec: function(editor) {
|
|
|
- var line = parseInt(prompt("Enter line number:"), 10);
|
|
|
- if (!isNaN(line)) {
|
|
|
- editor.gotoLine(line);
|
|
|
- }
|
|
|
- },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "fold",
|
|
|
- bindKey: bindKey("Alt-L|Ctrl-F1", "Command-Alt-L|Command-F1"),
|
|
|
- exec: function(editor) { editor.session.toggleFold(false); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "unfold",
|
|
|
- bindKey: bindKey("Alt-Shift-L|Ctrl-Shift-F1", "Command-Alt-Shift-L|Command-Shift-F1"),
|
|
|
- exec: function(editor) { editor.session.toggleFold(true); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "toggleFoldWidget",
|
|
|
- bindKey: bindKey("F2", "F2"),
|
|
|
- exec: function(editor) { editor.session.toggleFoldWidget(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "toggleParentFoldWidget",
|
|
|
- bindKey: bindKey("Alt-F2", "Alt-F2"),
|
|
|
- exec: function(editor) { editor.session.toggleFoldWidget(true); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "foldall",
|
|
|
- bindKey: bindKey(null, "Ctrl-Command-Option-0"),
|
|
|
- exec: function(editor) { editor.session.foldAll(); },
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "foldOther",
|
|
|
- bindKey: bindKey("Alt-0", "Command-Option-0"),
|
|
|
- exec: function(editor) {
|
|
|
- editor.session.foldAll();
|
|
|
- editor.session.unfold(editor.selection.getAllRanges());
|
|
|
- },
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "unfoldall",
|
|
|
- bindKey: bindKey("Alt-Shift-0", "Command-Option-Shift-0"),
|
|
|
- exec: function(editor) { editor.session.unfold(); },
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "findnext",
|
|
|
- bindKey: bindKey("Ctrl-K", "Command-G"),
|
|
|
- exec: function(editor) { editor.findNext(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "findprevious",
|
|
|
- bindKey: bindKey("Ctrl-Shift-K", "Command-Shift-G"),
|
|
|
- exec: function(editor) { editor.findPrevious(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "center",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectOrFindNext",
|
|
|
- bindKey: bindKey("Alt-K", "Ctrl-G"),
|
|
|
- exec: function(editor) {
|
|
|
- if (editor.selection.isEmpty())
|
|
|
- editor.selection.selectWord();
|
|
|
- else
|
|
|
- editor.findNext();
|
|
|
- },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectOrFindPrevious",
|
|
|
- bindKey: bindKey("Alt-Shift-K", "Ctrl-Shift-G"),
|
|
|
- exec: function(editor) {
|
|
|
- if (editor.selection.isEmpty())
|
|
|
- editor.selection.selectWord();
|
|
|
- else
|
|
|
- editor.findPrevious();
|
|
|
- },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "find",
|
|
|
- bindKey: bindKey("Ctrl-F", "Command-F"),
|
|
|
- exec: function(editor) {
|
|
|
- config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor)});
|
|
|
- },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "overwrite",
|
|
|
- bindKey: "Insert",
|
|
|
- exec: function(editor) { editor.toggleOverwrite(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selecttostart",
|
|
|
- bindKey: bindKey("Ctrl-Shift-Home", "Command-Shift-Up"),
|
|
|
- exec: function(editor) { editor.getSelection().selectFileStart(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- readOnly: true,
|
|
|
- scrollIntoView: "animate",
|
|
|
- aceCommandGroup: "fileJump"
|
|
|
-}, {
|
|
|
- name: "gotostart",
|
|
|
- bindKey: bindKey("Ctrl-Home", "Command-Home|Command-Up"),
|
|
|
- exec: function(editor) { editor.navigateFileStart(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- readOnly: true,
|
|
|
- scrollIntoView: "animate",
|
|
|
- aceCommandGroup: "fileJump"
|
|
|
-}, {
|
|
|
- name: "selectup",
|
|
|
- bindKey: bindKey("Shift-Up", "Shift-Up"),
|
|
|
- exec: function(editor) { editor.getSelection().selectUp(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "golineup",
|
|
|
- bindKey: bindKey("Up", "Up|Ctrl-P"),
|
|
|
- exec: function(editor, args) { editor.navigateUp(args.times); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selecttoend",
|
|
|
- bindKey: bindKey("Ctrl-Shift-End", "Command-Shift-Down"),
|
|
|
- exec: function(editor) { editor.getSelection().selectFileEnd(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- readOnly: true,
|
|
|
- scrollIntoView: "animate",
|
|
|
- aceCommandGroup: "fileJump"
|
|
|
-}, {
|
|
|
- name: "gotoend",
|
|
|
- bindKey: bindKey("Ctrl-End", "Command-End|Command-Down"),
|
|
|
- exec: function(editor) { editor.navigateFileEnd(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- readOnly: true,
|
|
|
- scrollIntoView: "animate",
|
|
|
- aceCommandGroup: "fileJump"
|
|
|
-}, {
|
|
|
- name: "selectdown",
|
|
|
- bindKey: bindKey("Shift-Down", "Shift-Down"),
|
|
|
- exec: function(editor) { editor.getSelection().selectDown(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "golinedown",
|
|
|
- bindKey: bindKey("Down", "Down|Ctrl-N"),
|
|
|
- exec: function(editor, args) { editor.navigateDown(args.times); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectwordleft",
|
|
|
- bindKey: bindKey("Ctrl-Shift-Left", "Option-Shift-Left"),
|
|
|
- exec: function(editor) { editor.getSelection().selectWordLeft(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotowordleft",
|
|
|
- bindKey: bindKey("Ctrl-Left", "Option-Left"),
|
|
|
- exec: function(editor) { editor.navigateWordLeft(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selecttolinestart",
|
|
|
- bindKey: bindKey("Alt-Shift-Left", "Command-Shift-Left"),
|
|
|
- exec: function(editor) { editor.getSelection().selectLineStart(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotolinestart",
|
|
|
- bindKey: bindKey("Alt-Left|Home", "Command-Left|Home|Ctrl-A"),
|
|
|
- exec: function(editor) { editor.navigateLineStart(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectleft",
|
|
|
- bindKey: bindKey("Shift-Left", "Shift-Left"),
|
|
|
- exec: function(editor) { editor.getSelection().selectLeft(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotoleft",
|
|
|
- bindKey: bindKey("Left", "Left|Ctrl-B"),
|
|
|
- exec: function(editor, args) { editor.navigateLeft(args.times); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectwordright",
|
|
|
- bindKey: bindKey("Ctrl-Shift-Right", "Option-Shift-Right"),
|
|
|
- exec: function(editor) { editor.getSelection().selectWordRight(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotowordright",
|
|
|
- bindKey: bindKey("Ctrl-Right", "Option-Right"),
|
|
|
- exec: function(editor) { editor.navigateWordRight(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selecttolineend",
|
|
|
- bindKey: bindKey("Alt-Shift-Right", "Command-Shift-Right"),
|
|
|
- exec: function(editor) { editor.getSelection().selectLineEnd(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotolineend",
|
|
|
- bindKey: bindKey("Alt-Right|End", "Command-Right|End|Ctrl-E"),
|
|
|
- exec: function(editor) { editor.navigateLineEnd(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectright",
|
|
|
- bindKey: bindKey("Shift-Right", "Shift-Right"),
|
|
|
- exec: function(editor) { editor.getSelection().selectRight(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotoright",
|
|
|
- bindKey: bindKey("Right", "Right|Ctrl-F"),
|
|
|
- exec: function(editor, args) { editor.navigateRight(args.times); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectpagedown",
|
|
|
- bindKey: "Shift-PageDown",
|
|
|
- exec: function(editor) { editor.selectPageDown(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "pagedown",
|
|
|
- bindKey: bindKey(null, "Option-PageDown"),
|
|
|
- exec: function(editor) { editor.scrollPageDown(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotopagedown",
|
|
|
- bindKey: bindKey("PageDown", "PageDown|Ctrl-V"),
|
|
|
- exec: function(editor) { editor.gotoPageDown(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectpageup",
|
|
|
- bindKey: "Shift-PageUp",
|
|
|
- exec: function(editor) { editor.selectPageUp(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "pageup",
|
|
|
- bindKey: bindKey(null, "Option-PageUp"),
|
|
|
- exec: function(editor) { editor.scrollPageUp(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "gotopageup",
|
|
|
- bindKey: "PageUp",
|
|
|
- exec: function(editor) { editor.gotoPageUp(); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "scrollup",
|
|
|
- bindKey: bindKey("Ctrl-Up", null),
|
|
|
- exec: function(e) { e.renderer.scrollBy(0, -2 * e.renderer.layerConfig.lineHeight); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "scrolldown",
|
|
|
- bindKey: bindKey("Ctrl-Down", null),
|
|
|
- exec: function(e) { e.renderer.scrollBy(0, 2 * e.renderer.layerConfig.lineHeight); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectlinestart",
|
|
|
- bindKey: "Shift-Home",
|
|
|
- exec: function(editor) { editor.getSelection().selectLineStart(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectlineend",
|
|
|
- bindKey: "Shift-End",
|
|
|
- exec: function(editor) { editor.getSelection().selectLineEnd(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "togglerecording",
|
|
|
- bindKey: bindKey("Ctrl-Alt-E", "Command-Option-E"),
|
|
|
- exec: function(editor) { editor.commands.toggleRecording(editor); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "replaymacro",
|
|
|
- bindKey: bindKey("Ctrl-Shift-E", "Command-Shift-E"),
|
|
|
- exec: function(editor) { editor.commands.replay(editor); },
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "jumptomatching",
|
|
|
- bindKey: bindKey("Ctrl-P", "Ctrl-P"),
|
|
|
- exec: function(editor) { editor.jumpToMatching(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "animate",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selecttomatching",
|
|
|
- bindKey: bindKey("Ctrl-Shift-P", "Ctrl-Shift-P"),
|
|
|
- exec: function(editor) { editor.jumpToMatching(true); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "animate",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "expandToMatching",
|
|
|
- bindKey: bindKey("Ctrl-Shift-M", "Ctrl-Shift-M"),
|
|
|
- exec: function(editor) { editor.jumpToMatching(true, true); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "animate",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "passKeysToBrowser",
|
|
|
- bindKey: bindKey(null, null),
|
|
|
- exec: function() {},
|
|
|
- passEvent: true,
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "copy",
|
|
|
- exec: function(editor) {
|
|
|
- },
|
|
|
- readOnly: true
|
|
|
-},
|
|
|
-{
|
|
|
- name: "cut",
|
|
|
- exec: function(editor) {
|
|
|
- var range = editor.getSelectionRange();
|
|
|
- editor._emit("cut", range);
|
|
|
-
|
|
|
- if (!editor.selection.isEmpty()) {
|
|
|
- editor.session.remove(range);
|
|
|
- editor.clearSelection();
|
|
|
- }
|
|
|
- },
|
|
|
- scrollIntoView: "cursor",
|
|
|
- multiSelectAction: "forEach"
|
|
|
-}, {
|
|
|
- name: "paste",
|
|
|
- exec: function(editor, args) {
|
|
|
- editor.$handlePaste(args);
|
|
|
- },
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "removeline",
|
|
|
- bindKey: bindKey("Ctrl-D", "Command-D"),
|
|
|
- exec: function(editor) { editor.removeLines(); },
|
|
|
- scrollIntoView: "cursor",
|
|
|
- multiSelectAction: "forEachLine"
|
|
|
-}, {
|
|
|
- name: "duplicateSelection",
|
|
|
- bindKey: bindKey("Ctrl-Shift-D", "Command-Shift-D"),
|
|
|
- exec: function(editor) { editor.duplicateSelection(); },
|
|
|
- scrollIntoView: "cursor",
|
|
|
- multiSelectAction: "forEach"
|
|
|
-}, {
|
|
|
- name: "sortlines",
|
|
|
- bindKey: bindKey("Ctrl-Alt-S", "Command-Alt-S"),
|
|
|
- exec: function(editor) { editor.sortLines(); },
|
|
|
- scrollIntoView: "selection",
|
|
|
- multiSelectAction: "forEachLine"
|
|
|
-}, {
|
|
|
- name: "togglecomment",
|
|
|
- bindKey: bindKey("Ctrl-/", "Command-/"),
|
|
|
- exec: function(editor) { editor.toggleCommentLines(); },
|
|
|
- multiSelectAction: "forEachLine",
|
|
|
- scrollIntoView: "selectionPart"
|
|
|
-}, {
|
|
|
- name: "toggleBlockComment",
|
|
|
- bindKey: bindKey("Ctrl-Shift-/", "Command-Shift-/"),
|
|
|
- exec: function(editor) { editor.toggleBlockComment(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "selectionPart"
|
|
|
-}, {
|
|
|
- name: "modifyNumberUp",
|
|
|
- bindKey: bindKey("Ctrl-Shift-Up", "Alt-Shift-Up"),
|
|
|
- exec: function(editor) { editor.modifyNumber(1); },
|
|
|
- scrollIntoView: "cursor",
|
|
|
- multiSelectAction: "forEach"
|
|
|
-}, {
|
|
|
- name: "modifyNumberDown",
|
|
|
- bindKey: bindKey("Ctrl-Shift-Down", "Alt-Shift-Down"),
|
|
|
- exec: function(editor) { editor.modifyNumber(-1); },
|
|
|
- scrollIntoView: "cursor",
|
|
|
- multiSelectAction: "forEach"
|
|
|
-}, {
|
|
|
- name: "replace",
|
|
|
- bindKey: bindKey("Ctrl-H", "Command-Option-F"),
|
|
|
- exec: function(editor) {
|
|
|
- config.loadModule("ace/ext/searchbox", function(e) {e.Search(editor, true)});
|
|
|
- }
|
|
|
-}, {
|
|
|
- name: "undo",
|
|
|
- bindKey: bindKey("Ctrl-Z", "Command-Z"),
|
|
|
- exec: function(editor) { editor.undo(); }
|
|
|
-}, {
|
|
|
- name: "redo",
|
|
|
- bindKey: bindKey("Ctrl-Shift-Z|Ctrl-Y", "Command-Shift-Z|Command-Y"),
|
|
|
- exec: function(editor) { editor.redo(); }
|
|
|
-}, {
|
|
|
- name: "copylinesup",
|
|
|
- bindKey: bindKey("Alt-Shift-Up", "Command-Option-Up"),
|
|
|
- exec: function(editor) { editor.copyLinesUp(); },
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "movelinesup",
|
|
|
- bindKey: bindKey("Alt-Up", "Option-Up"),
|
|
|
- exec: function(editor) { editor.moveLinesUp(); },
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "copylinesdown",
|
|
|
- bindKey: bindKey("Alt-Shift-Down", "Command-Option-Down"),
|
|
|
- exec: function(editor) { editor.copyLinesDown(); },
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "movelinesdown",
|
|
|
- bindKey: bindKey("Alt-Down", "Option-Down"),
|
|
|
- exec: function(editor) { editor.moveLinesDown(); },
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "del",
|
|
|
- bindKey: bindKey("Delete", "Delete|Ctrl-D|Shift-Delete"),
|
|
|
- exec: function(editor) { editor.remove("right"); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "backspace",
|
|
|
- bindKey: bindKey(
|
|
|
- "Shift-Backspace|Backspace",
|
|
|
- "Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"
|
|
|
- ),
|
|
|
- exec: function(editor) { editor.remove("left"); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "cut_or_delete",
|
|
|
- bindKey: bindKey("Shift-Delete", null),
|
|
|
- exec: function(editor) {
|
|
|
- if (editor.selection.isEmpty()) {
|
|
|
- editor.remove("left");
|
|
|
- } else {
|
|
|
- return false;
|
|
|
- }
|
|
|
- },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "removetolinestart",
|
|
|
- bindKey: bindKey("Alt-Backspace", "Command-Backspace"),
|
|
|
- exec: function(editor) { editor.removeToLineStart(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "removetolineend",
|
|
|
- bindKey: bindKey("Alt-Delete", "Ctrl-K"),
|
|
|
- exec: function(editor) { editor.removeToLineEnd(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "removewordleft",
|
|
|
- bindKey: bindKey("Ctrl-Backspace", "Alt-Backspace|Ctrl-Alt-Backspace"),
|
|
|
- exec: function(editor) { editor.removeWordLeft(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "removewordright",
|
|
|
- bindKey: bindKey("Ctrl-Delete", "Alt-Delete"),
|
|
|
- exec: function(editor) { editor.removeWordRight(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "outdent",
|
|
|
- bindKey: bindKey("Shift-Tab", "Shift-Tab"),
|
|
|
- exec: function(editor) { editor.blockOutdent(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "selectionPart"
|
|
|
-}, {
|
|
|
- name: "indent",
|
|
|
- bindKey: bindKey("Tab", "Tab"),
|
|
|
- exec: function(editor) { editor.indent(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "selectionPart"
|
|
|
-}, {
|
|
|
- name: "blockoutdent",
|
|
|
- bindKey: bindKey("Ctrl-[", "Ctrl-["),
|
|
|
- exec: function(editor) { editor.blockOutdent(); },
|
|
|
- multiSelectAction: "forEachLine",
|
|
|
- scrollIntoView: "selectionPart"
|
|
|
-}, {
|
|
|
- name: "blockindent",
|
|
|
- bindKey: bindKey("Ctrl-]", "Ctrl-]"),
|
|
|
- exec: function(editor) { editor.blockIndent(); },
|
|
|
- multiSelectAction: "forEachLine",
|
|
|
- scrollIntoView: "selectionPart"
|
|
|
-}, {
|
|
|
- name: "insertstring",
|
|
|
- exec: function(editor, str) { editor.insert(str); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "inserttext",
|
|
|
- exec: function(editor, args) {
|
|
|
- editor.insert(lang.stringRepeat(args.text || "", args.times || 1));
|
|
|
- },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "splitline",
|
|
|
- bindKey: bindKey(null, "Ctrl-O"),
|
|
|
- exec: function(editor) { editor.splitLine(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "transposeletters",
|
|
|
- bindKey: bindKey("Ctrl-T", "Ctrl-T"),
|
|
|
- exec: function(editor) { editor.transposeLetters(); },
|
|
|
- multiSelectAction: function(editor) {editor.transposeSelections(1); },
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "touppercase",
|
|
|
- bindKey: bindKey("Ctrl-U", "Ctrl-U"),
|
|
|
- exec: function(editor) { editor.toUpperCase(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "tolowercase",
|
|
|
- bindKey: bindKey("Ctrl-Shift-U", "Ctrl-Shift-U"),
|
|
|
- exec: function(editor) { editor.toLowerCase(); },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "expandtoline",
|
|
|
- bindKey: bindKey("Ctrl-Shift-L", "Command-Shift-L"),
|
|
|
- exec: function(editor) {
|
|
|
- var range = editor.selection.getRange();
|
|
|
-
|
|
|
- range.start.column = range.end.column = 0;
|
|
|
- range.end.row++;
|
|
|
- editor.selection.setRange(range, false);
|
|
|
- },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "joinlines",
|
|
|
- bindKey: bindKey(null, null),
|
|
|
- exec: function(editor) {
|
|
|
- var isBackwards = editor.selection.isBackwards();
|
|
|
- var selectionStart = isBackwards ? editor.selection.getSelectionLead() : editor.selection.getSelectionAnchor();
|
|
|
- var selectionEnd = isBackwards ? editor.selection.getSelectionAnchor() : editor.selection.getSelectionLead();
|
|
|
- var firstLineEndCol = editor.session.doc.getLine(selectionStart.row).length;
|
|
|
- var selectedText = editor.session.doc.getTextRange(editor.selection.getRange());
|
|
|
- var selectedCount = selectedText.replace(/\n\s*/, " ").length;
|
|
|
- var insertLine = editor.session.doc.getLine(selectionStart.row);
|
|
|
-
|
|
|
- for (var i = selectionStart.row + 1; i <= selectionEnd.row + 1; i++) {
|
|
|
- var curLine = lang.stringTrimLeft(lang.stringTrimRight(editor.session.doc.getLine(i)));
|
|
|
- if (curLine.length !== 0) {
|
|
|
- curLine = " " + curLine;
|
|
|
- }
|
|
|
- insertLine += curLine;
|
|
|
- }
|
|
|
-
|
|
|
- if (selectionEnd.row + 1 < (editor.session.doc.getLength() - 1)) {
|
|
|
- insertLine += editor.session.doc.getNewLineCharacter();
|
|
|
- }
|
|
|
-
|
|
|
- editor.clearSelection();
|
|
|
- editor.session.doc.replace(new Range(selectionStart.row, 0, selectionEnd.row + 2, 0), insertLine);
|
|
|
-
|
|
|
- if (selectedCount > 0) {
|
|
|
- editor.selection.moveCursorTo(selectionStart.row, selectionStart.column);
|
|
|
- editor.selection.selectTo(selectionStart.row, selectionStart.column + selectedCount);
|
|
|
- } else {
|
|
|
- firstLineEndCol = editor.session.doc.getLine(selectionStart.row).length > firstLineEndCol ? (firstLineEndCol + 1) : firstLineEndCol;
|
|
|
- editor.selection.moveCursorTo(selectionStart.row, firstLineEndCol);
|
|
|
- }
|
|
|
- },
|
|
|
- multiSelectAction: "forEach",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "invertSelection",
|
|
|
- bindKey: bindKey(null, null),
|
|
|
- exec: function(editor) {
|
|
|
- var endRow = editor.session.doc.getLength() - 1;
|
|
|
- var endCol = editor.session.doc.getLine(endRow).length;
|
|
|
- var ranges = editor.selection.rangeList.ranges;
|
|
|
- var newRanges = [];
|
|
|
- if (ranges.length < 1) {
|
|
|
- ranges = [editor.selection.getRange()];
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0; i < ranges.length; i++) {
|
|
|
- if (i == (ranges.length - 1)) {
|
|
|
- if (!(ranges[i].end.row === endRow && ranges[i].end.column === endCol)) {
|
|
|
- newRanges.push(new Range(ranges[i].end.row, ranges[i].end.column, endRow, endCol));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (i === 0) {
|
|
|
- if (!(ranges[i].start.row === 0 && ranges[i].start.column === 0)) {
|
|
|
- newRanges.push(new Range(0, 0, ranges[i].start.row, ranges[i].start.column));
|
|
|
- }
|
|
|
- } else {
|
|
|
- newRanges.push(new Range(ranges[i-1].end.row, ranges[i-1].end.column, ranges[i].start.row, ranges[i].start.column));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- editor.exitMultiSelectMode();
|
|
|
- editor.clearSelection();
|
|
|
-
|
|
|
- for(var i = 0; i < newRanges.length; i++) {
|
|
|
- editor.selection.addRange(newRanges[i], false);
|
|
|
- }
|
|
|
- },
|
|
|
- readOnly: true,
|
|
|
- scrollIntoView: "none"
|
|
|
-}];
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/editor",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/keyboard/textinput","ace/mouse/mouse_handler","ace/mouse/fold_handler","ace/keyboard/keybinding","ace/edit_session","ace/search","ace/range","ace/lib/event_emitter","ace/commands/command_manager","ace/commands/default_commands","ace/config","ace/token_iterator"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-require("./lib/fixoldbrowsers");
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var dom = require("./lib/dom");
|
|
|
-var lang = require("./lib/lang");
|
|
|
-var useragent = require("./lib/useragent");
|
|
|
-var TextInput = require("./keyboard/textinput").TextInput;
|
|
|
-var MouseHandler = require("./mouse/mouse_handler").MouseHandler;
|
|
|
-var FoldHandler = require("./mouse/fold_handler").FoldHandler;
|
|
|
-var KeyBinding = require("./keyboard/keybinding").KeyBinding;
|
|
|
-var EditSession = require("./edit_session").EditSession;
|
|
|
-var Search = require("./search").Search;
|
|
|
-var Range = require("./range").Range;
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-var CommandManager = require("./commands/command_manager").CommandManager;
|
|
|
-var defaultCommands = require("./commands/default_commands").commands;
|
|
|
-var config = require("./config");
|
|
|
-var TokenIterator = require("./token_iterator").TokenIterator;
|
|
|
-var Editor = function(renderer, session) {
|
|
|
- var container = renderer.getContainerElement();
|
|
|
- this.container = container;
|
|
|
- this.renderer = renderer;
|
|
|
-
|
|
|
- this.commands = new CommandManager(useragent.isMac ? "mac" : "win", defaultCommands);
|
|
|
- this.textInput = new TextInput(renderer.getTextAreaContainer(), this);
|
|
|
- this.renderer.textarea = this.textInput.getElement();
|
|
|
- this.keyBinding = new KeyBinding(this);
|
|
|
- this.$mouseHandler = new MouseHandler(this);
|
|
|
- new FoldHandler(this);
|
|
|
-
|
|
|
- this.$blockScrolling = 0;
|
|
|
- this.$search = new Search().set({
|
|
|
- wrap: true
|
|
|
- });
|
|
|
-
|
|
|
- this.$historyTracker = this.$historyTracker.bind(this);
|
|
|
- this.commands.on("exec", this.$historyTracker);
|
|
|
-
|
|
|
- this.$initOperationListeners();
|
|
|
-
|
|
|
- this._$emitInputEvent = lang.delayedCall(function() {
|
|
|
- this._signal("input", {});
|
|
|
- if (this.session && this.session.bgTokenizer)
|
|
|
- this.session.bgTokenizer.scheduleStart();
|
|
|
- }.bind(this));
|
|
|
-
|
|
|
- this.on("change", function(_, _self) {
|
|
|
- _self._$emitInputEvent.schedule(31);
|
|
|
- });
|
|
|
-
|
|
|
- this.setSession(session || new EditSession(""));
|
|
|
- config.resetOptions(this);
|
|
|
- config._signal("editor", this);
|
|
|
-};
|
|
|
-
|
|
|
-(function(){
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.$initOperationListeners = function() {
|
|
|
- function last(a) {return a[a.length - 1]}
|
|
|
-
|
|
|
- this.selections = [];
|
|
|
- this.commands.on("exec", this.startOperation.bind(this), true);
|
|
|
- this.commands.on("afterExec", this.endOperation.bind(this), true);
|
|
|
-
|
|
|
- this.$opResetTimer = lang.delayedCall(this.endOperation.bind(this));
|
|
|
-
|
|
|
- this.on("change", function() {
|
|
|
- this.curOp || this.startOperation();
|
|
|
- this.curOp.docChanged = true;
|
|
|
- }.bind(this), true);
|
|
|
-
|
|
|
- this.on("changeSelection", function() {
|
|
|
- this.curOp || this.startOperation();
|
|
|
- this.curOp.selectionChanged = true;
|
|
|
- }.bind(this), true);
|
|
|
- };
|
|
|
-
|
|
|
- this.curOp = null;
|
|
|
- this.prevOp = {};
|
|
|
- this.startOperation = function(commadEvent) {
|
|
|
- if (this.curOp) {
|
|
|
- if (!commadEvent || this.curOp.command)
|
|
|
- return;
|
|
|
- this.prevOp = this.curOp;
|
|
|
- }
|
|
|
- if (!commadEvent) {
|
|
|
- this.previousCommand = null;
|
|
|
- commadEvent = {};
|
|
|
- }
|
|
|
-
|
|
|
- this.$opResetTimer.schedule();
|
|
|
- this.curOp = {
|
|
|
- command: commadEvent.command || {},
|
|
|
- args: commadEvent.args,
|
|
|
- scrollTop: this.renderer.scrollTop
|
|
|
- };
|
|
|
- if (this.curOp.command.name && this.curOp.command.scrollIntoView !== undefined)
|
|
|
- this.$blockScrolling++;
|
|
|
- };
|
|
|
-
|
|
|
- this.endOperation = function(e) {
|
|
|
- if (this.curOp) {
|
|
|
- if (e && e.returnValue === false)
|
|
|
- return this.curOp = null;
|
|
|
- this._signal("beforeEndOperation");
|
|
|
- var command = this.curOp.command;
|
|
|
- if (command.name && this.$blockScrolling > 0)
|
|
|
- this.$blockScrolling--;
|
|
|
- var scrollIntoView = command && command.scrollIntoView;
|
|
|
- if (scrollIntoView) {
|
|
|
- switch (scrollIntoView) {
|
|
|
- case "center-animate":
|
|
|
- scrollIntoView = "animate";
|
|
|
- case "center":
|
|
|
- this.renderer.scrollCursorIntoView(null, 0.5);
|
|
|
- break;
|
|
|
- case "animate":
|
|
|
- case "cursor":
|
|
|
- this.renderer.scrollCursorIntoView();
|
|
|
- break;
|
|
|
- case "selectionPart":
|
|
|
- var range = this.selection.getRange();
|
|
|
- var config = this.renderer.layerConfig;
|
|
|
- if (range.start.row >= config.lastRow || range.end.row <= config.firstRow) {
|
|
|
- this.renderer.scrollSelectionIntoView(this.selection.anchor, this.selection.lead);
|
|
|
- }
|
|
|
- break;
|
|
|
- default:
|
|
|
- break;
|
|
|
- }
|
|
|
- if (scrollIntoView == "animate")
|
|
|
- this.renderer.animateScrolling(this.curOp.scrollTop);
|
|
|
- }
|
|
|
-
|
|
|
- this.prevOp = this.curOp;
|
|
|
- this.curOp = null;
|
|
|
- }
|
|
|
- };
|
|
|
- this.$mergeableCommands = ["backspace", "del", "insertstring"];
|
|
|
- this.$historyTracker = function(e) {
|
|
|
- if (!this.$mergeUndoDeltas)
|
|
|
- return;
|
|
|
-
|
|
|
- var prev = this.prevOp;
|
|
|
- var mergeableCommands = this.$mergeableCommands;
|
|
|
- var shouldMerge = prev.command && (e.command.name == prev.command.name);
|
|
|
- if (e.command.name == "insertstring") {
|
|
|
- var text = e.args;
|
|
|
- if (this.mergeNextCommand === undefined)
|
|
|
- this.mergeNextCommand = true;
|
|
|
-
|
|
|
- shouldMerge = shouldMerge
|
|
|
- && this.mergeNextCommand // previous command allows to coalesce with
|
|
|
- && (!/\s/.test(text) || /\s/.test(prev.args)); // previous insertion was of same type
|
|
|
-
|
|
|
- this.mergeNextCommand = true;
|
|
|
- } else {
|
|
|
- shouldMerge = shouldMerge
|
|
|
- && mergeableCommands.indexOf(e.command.name) !== -1; // the command is mergeable
|
|
|
- }
|
|
|
-
|
|
|
- if (
|
|
|
- this.$mergeUndoDeltas != "always"
|
|
|
- && Date.now() - this.sequenceStartTime > 2000
|
|
|
- ) {
|
|
|
- shouldMerge = false; // the sequence is too long
|
|
|
- }
|
|
|
-
|
|
|
- if (shouldMerge)
|
|
|
- this.session.mergeUndoDeltas = true;
|
|
|
- else if (mergeableCommands.indexOf(e.command.name) !== -1)
|
|
|
- this.sequenceStartTime = Date.now();
|
|
|
- };
|
|
|
- this.setKeyboardHandler = function(keyboardHandler, cb) {
|
|
|
- if (keyboardHandler && typeof keyboardHandler === "string") {
|
|
|
- this.$keybindingId = keyboardHandler;
|
|
|
- var _self = this;
|
|
|
- config.loadModule(["keybinding", keyboardHandler], function(module) {
|
|
|
- if (_self.$keybindingId == keyboardHandler)
|
|
|
- _self.keyBinding.setKeyboardHandler(module && module.handler);
|
|
|
- cb && cb();
|
|
|
- });
|
|
|
- } else {
|
|
|
- this.$keybindingId = null;
|
|
|
- this.keyBinding.setKeyboardHandler(keyboardHandler);
|
|
|
- cb && cb();
|
|
|
- }
|
|
|
- };
|
|
|
- this.getKeyboardHandler = function() {
|
|
|
- return this.keyBinding.getKeyboardHandler();
|
|
|
- };
|
|
|
- this.setSession = function(session) {
|
|
|
- if (this.session == session)
|
|
|
- return;
|
|
|
- if (this.curOp) this.endOperation();
|
|
|
- this.curOp = {};
|
|
|
-
|
|
|
- var oldSession = this.session;
|
|
|
- if (oldSession) {
|
|
|
- this.session.removeEventListener("change", this.$onDocumentChange);
|
|
|
- this.session.removeEventListener("changeMode", this.$onChangeMode);
|
|
|
- this.session.removeEventListener("tokenizerUpdate", this.$onTokenizerUpdate);
|
|
|
- this.session.removeEventListener("changeTabSize", this.$onChangeTabSize);
|
|
|
- this.session.removeEventListener("changeWrapLimit", this.$onChangeWrapLimit);
|
|
|
- this.session.removeEventListener("changeWrapMode", this.$onChangeWrapMode);
|
|
|
- this.session.removeEventListener("onChangeFold", this.$onChangeFold);
|
|
|
- this.session.removeEventListener("changeFrontMarker", this.$onChangeFrontMarker);
|
|
|
- this.session.removeEventListener("changeBackMarker", this.$onChangeBackMarker);
|
|
|
- this.session.removeEventListener("changeBreakpoint", this.$onChangeBreakpoint);
|
|
|
- this.session.removeEventListener("changeAnnotation", this.$onChangeAnnotation);
|
|
|
- this.session.removeEventListener("changeOverwrite", this.$onCursorChange);
|
|
|
- this.session.removeEventListener("changeScrollTop", this.$onScrollTopChange);
|
|
|
- this.session.removeEventListener("changeScrollLeft", this.$onScrollLeftChange);
|
|
|
-
|
|
|
- var selection = this.session.getSelection();
|
|
|
- selection.removeEventListener("changeCursor", this.$onCursorChange);
|
|
|
- selection.removeEventListener("changeSelection", this.$onSelectionChange);
|
|
|
- }
|
|
|
-
|
|
|
- this.session = session;
|
|
|
- if (session) {
|
|
|
- this.$onDocumentChange = this.onDocumentChange.bind(this);
|
|
|
- session.addEventListener("change", this.$onDocumentChange);
|
|
|
- this.renderer.setSession(session);
|
|
|
-
|
|
|
- this.$onChangeMode = this.onChangeMode.bind(this);
|
|
|
- session.addEventListener("changeMode", this.$onChangeMode);
|
|
|
-
|
|
|
- this.$onTokenizerUpdate = this.onTokenizerUpdate.bind(this);
|
|
|
- session.addEventListener("tokenizerUpdate", this.$onTokenizerUpdate);
|
|
|
-
|
|
|
- this.$onChangeTabSize = this.renderer.onChangeTabSize.bind(this.renderer);
|
|
|
- session.addEventListener("changeTabSize", this.$onChangeTabSize);
|
|
|
-
|
|
|
- this.$onChangeWrapLimit = this.onChangeWrapLimit.bind(this);
|
|
|
- session.addEventListener("changeWrapLimit", this.$onChangeWrapLimit);
|
|
|
-
|
|
|
- this.$onChangeWrapMode = this.onChangeWrapMode.bind(this);
|
|
|
- session.addEventListener("changeWrapMode", this.$onChangeWrapMode);
|
|
|
-
|
|
|
- this.$onChangeFold = this.onChangeFold.bind(this);
|
|
|
- session.addEventListener("changeFold", this.$onChangeFold);
|
|
|
-
|
|
|
- this.$onChangeFrontMarker = this.onChangeFrontMarker.bind(this);
|
|
|
- this.session.addEventListener("changeFrontMarker", this.$onChangeFrontMarker);
|
|
|
-
|
|
|
- this.$onChangeBackMarker = this.onChangeBackMarker.bind(this);
|
|
|
- this.session.addEventListener("changeBackMarker", this.$onChangeBackMarker);
|
|
|
-
|
|
|
- this.$onChangeBreakpoint = this.onChangeBreakpoint.bind(this);
|
|
|
- this.session.addEventListener("changeBreakpoint", this.$onChangeBreakpoint);
|
|
|
-
|
|
|
- this.$onChangeAnnotation = this.onChangeAnnotation.bind(this);
|
|
|
- this.session.addEventListener("changeAnnotation", this.$onChangeAnnotation);
|
|
|
-
|
|
|
- this.$onCursorChange = this.onCursorChange.bind(this);
|
|
|
- this.session.addEventListener("changeOverwrite", this.$onCursorChange);
|
|
|
-
|
|
|
- this.$onScrollTopChange = this.onScrollTopChange.bind(this);
|
|
|
- this.session.addEventListener("changeScrollTop", this.$onScrollTopChange);
|
|
|
-
|
|
|
- this.$onScrollLeftChange = this.onScrollLeftChange.bind(this);
|
|
|
- this.session.addEventListener("changeScrollLeft", this.$onScrollLeftChange);
|
|
|
-
|
|
|
- this.selection = session.getSelection();
|
|
|
- this.selection.addEventListener("changeCursor", this.$onCursorChange);
|
|
|
-
|
|
|
- this.$onSelectionChange = this.onSelectionChange.bind(this);
|
|
|
- this.selection.addEventListener("changeSelection", this.$onSelectionChange);
|
|
|
-
|
|
|
- this.onChangeMode();
|
|
|
-
|
|
|
- this.$blockScrolling += 1;
|
|
|
- this.onCursorChange();
|
|
|
- this.$blockScrolling -= 1;
|
|
|
-
|
|
|
- this.onScrollTopChange();
|
|
|
- this.onScrollLeftChange();
|
|
|
- this.onSelectionChange();
|
|
|
- this.onChangeFrontMarker();
|
|
|
- this.onChangeBackMarker();
|
|
|
- this.onChangeBreakpoint();
|
|
|
- this.onChangeAnnotation();
|
|
|
- this.session.getUseWrapMode() && this.renderer.adjustWrapLimit();
|
|
|
- this.renderer.updateFull();
|
|
|
- } else {
|
|
|
- this.selection = null;
|
|
|
- this.renderer.setSession(session);
|
|
|
- }
|
|
|
-
|
|
|
- this._signal("changeSession", {
|
|
|
- session: session,
|
|
|
- oldSession: oldSession
|
|
|
- });
|
|
|
-
|
|
|
- this.curOp = null;
|
|
|
-
|
|
|
- oldSession && oldSession._signal("changeEditor", {oldEditor: this});
|
|
|
- session && session._signal("changeEditor", {editor: this});
|
|
|
- };
|
|
|
- this.getSession = function() {
|
|
|
- return this.session;
|
|
|
- };
|
|
|
- this.setValue = function(val, cursorPos) {
|
|
|
- this.session.doc.setValue(val);
|
|
|
-
|
|
|
- if (!cursorPos)
|
|
|
- this.selectAll();
|
|
|
- else if (cursorPos == 1)
|
|
|
- this.navigateFileEnd();
|
|
|
- else if (cursorPos == -1)
|
|
|
- this.navigateFileStart();
|
|
|
-
|
|
|
- return val;
|
|
|
- };
|
|
|
- this.getValue = function() {
|
|
|
- return this.session.getValue();
|
|
|
- };
|
|
|
- this.getSelection = function() {
|
|
|
- return this.selection;
|
|
|
- };
|
|
|
- this.resize = function(force) {
|
|
|
- this.renderer.onResize(force);
|
|
|
- };
|
|
|
- this.setTheme = function(theme, cb) {
|
|
|
- this.renderer.setTheme(theme, cb);
|
|
|
- };
|
|
|
- this.getTheme = function() {
|
|
|
- return this.renderer.getTheme();
|
|
|
- };
|
|
|
- this.setStyle = function(style) {
|
|
|
- this.renderer.setStyle(style);
|
|
|
- };
|
|
|
- this.unsetStyle = function(style) {
|
|
|
- this.renderer.unsetStyle(style);
|
|
|
- };
|
|
|
- this.getFontSize = function () {
|
|
|
- return this.getOption("fontSize") ||
|
|
|
- dom.computedStyle(this.container, "fontSize");
|
|
|
- };
|
|
|
- this.setFontSize = function(size) {
|
|
|
- this.setOption("fontSize", size);
|
|
|
- };
|
|
|
-
|
|
|
- this.$highlightBrackets = function() {
|
|
|
- if (this.session.$bracketHighlight) {
|
|
|
- this.session.removeMarker(this.session.$bracketHighlight);
|
|
|
- this.session.$bracketHighlight = null;
|
|
|
- }
|
|
|
-
|
|
|
- if (this.$highlightPending) {
|
|
|
- return;
|
|
|
- }
|
|
|
- var self = this;
|
|
|
- this.$highlightPending = true;
|
|
|
- setTimeout(function() {
|
|
|
- self.$highlightPending = false;
|
|
|
- var session = self.session;
|
|
|
- if (!session || !session.bgTokenizer) return;
|
|
|
- var pos = session.findMatchingBracket(self.getCursorPosition());
|
|
|
- if (pos) {
|
|
|
- var range = new Range(pos.row, pos.column, pos.row, pos.column + 1);
|
|
|
- } else if (session.$mode.getMatching) {
|
|
|
- var range = session.$mode.getMatching(self.session);
|
|
|
- }
|
|
|
- if (range)
|
|
|
- session.$bracketHighlight = session.addMarker(range, "ace_bracket", "text");
|
|
|
- }, 50);
|
|
|
- };
|
|
|
- this.$highlightTags = function() {
|
|
|
- if (this.$highlightTagPending)
|
|
|
- return;
|
|
|
- var self = this;
|
|
|
- this.$highlightTagPending = true;
|
|
|
- setTimeout(function() {
|
|
|
- self.$highlightTagPending = false;
|
|
|
-
|
|
|
- var session = self.session;
|
|
|
- if (!session || !session.bgTokenizer) return;
|
|
|
-
|
|
|
- var pos = self.getCursorPosition();
|
|
|
- var iterator = new TokenIterator(self.session, pos.row, pos.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
-
|
|
|
- if (!token || !/\b(?:tag-open|tag-name)/.test(token.type)) {
|
|
|
- session.removeMarker(session.$tagHighlight);
|
|
|
- session.$tagHighlight = null;
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (token.type.indexOf("tag-open") != -1) {
|
|
|
- token = iterator.stepForward();
|
|
|
- if (!token)
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var tag = token.value;
|
|
|
- var depth = 0;
|
|
|
- var prevToken = iterator.stepBackward();
|
|
|
-
|
|
|
- if (prevToken.value == '<'){
|
|
|
- do {
|
|
|
- prevToken = token;
|
|
|
- token = iterator.stepForward();
|
|
|
-
|
|
|
- if (token && token.value === tag && token.type.indexOf('tag-name') !== -1) {
|
|
|
- if (prevToken.value === '<'){
|
|
|
- depth++;
|
|
|
- } else if (prevToken.value === '</'){
|
|
|
- depth--;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- } while (token && depth >= 0);
|
|
|
- } else {
|
|
|
- do {
|
|
|
- token = prevToken;
|
|
|
- prevToken = iterator.stepBackward();
|
|
|
-
|
|
|
- if (token && token.value === tag && token.type.indexOf('tag-name') !== -1) {
|
|
|
- if (prevToken.value === '<') {
|
|
|
- depth++;
|
|
|
- } else if (prevToken.value === '</') {
|
|
|
- depth--;
|
|
|
- }
|
|
|
- }
|
|
|
- } while (prevToken && depth <= 0);
|
|
|
- iterator.stepForward();
|
|
|
- }
|
|
|
-
|
|
|
- if (!token) {
|
|
|
- session.removeMarker(session.$tagHighlight);
|
|
|
- session.$tagHighlight = null;
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var row = iterator.getCurrentTokenRow();
|
|
|
- var column = iterator.getCurrentTokenColumn();
|
|
|
- var range = new Range(row, column, row, column+token.value.length);
|
|
|
- if (session.$tagHighlight && range.compareRange(session.$backMarkers[session.$tagHighlight].range)!==0) {
|
|
|
- session.removeMarker(session.$tagHighlight);
|
|
|
- session.$tagHighlight = null;
|
|
|
- }
|
|
|
-
|
|
|
- if (range && !session.$tagHighlight)
|
|
|
- session.$tagHighlight = session.addMarker(range, "ace_bracket", "text");
|
|
|
- }, 50);
|
|
|
- };
|
|
|
- this.focus = function() {
|
|
|
- var _self = this;
|
|
|
- setTimeout(function() {
|
|
|
- _self.textInput.focus();
|
|
|
- });
|
|
|
- this.textInput.focus();
|
|
|
- };
|
|
|
- this.isFocused = function() {
|
|
|
- return this.textInput.isFocused();
|
|
|
- };
|
|
|
- this.blur = function() {
|
|
|
- this.textInput.blur();
|
|
|
- };
|
|
|
- this.onFocus = function(e) {
|
|
|
- if (this.$isFocused)
|
|
|
- return;
|
|
|
- this.$isFocused = true;
|
|
|
- this.renderer.showCursor();
|
|
|
- this.renderer.visualizeFocus();
|
|
|
- this._emit("focus", e);
|
|
|
- };
|
|
|
- this.onBlur = function(e) {
|
|
|
- if (!this.$isFocused)
|
|
|
- return;
|
|
|
- this.$isFocused = false;
|
|
|
- this.renderer.hideCursor();
|
|
|
- this.renderer.visualizeBlur();
|
|
|
- this._emit("blur", e);
|
|
|
- };
|
|
|
-
|
|
|
- this.$cursorChange = function() {
|
|
|
- this.renderer.updateCursor();
|
|
|
- };
|
|
|
- this.onDocumentChange = function(delta) {
|
|
|
- var wrap = this.session.$useWrapMode;
|
|
|
- var lastRow = (delta.start.row == delta.end.row ? delta.end.row : Infinity);
|
|
|
- this.renderer.updateLines(delta.start.row, lastRow, wrap);
|
|
|
-
|
|
|
- this._signal("change", delta);
|
|
|
- this.$cursorChange();
|
|
|
- this.$updateHighlightActiveLine();
|
|
|
- };
|
|
|
-
|
|
|
- this.onTokenizerUpdate = function(e) {
|
|
|
- var rows = e.data;
|
|
|
- this.renderer.updateLines(rows.first, rows.last);
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.onScrollTopChange = function() {
|
|
|
- this.renderer.scrollToY(this.session.getScrollTop());
|
|
|
- };
|
|
|
-
|
|
|
- this.onScrollLeftChange = function() {
|
|
|
- this.renderer.scrollToX(this.session.getScrollLeft());
|
|
|
- };
|
|
|
- this.onCursorChange = function() {
|
|
|
- this.$cursorChange();
|
|
|
-
|
|
|
- if (!this.$blockScrolling) {
|
|
|
- config.warn("Automatically scrolling cursor into view after selection change",
|
|
|
- "this will be disabled in the next version",
|
|
|
- "set editor.$blockScrolling = Infinity to disable this message"
|
|
|
- );
|
|
|
- this.renderer.scrollCursorIntoView();
|
|
|
- }
|
|
|
-
|
|
|
- this.$highlightBrackets();
|
|
|
- this.$highlightTags();
|
|
|
- this.$updateHighlightActiveLine();
|
|
|
- this._signal("changeSelection");
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateHighlightActiveLine = function() {
|
|
|
- var session = this.getSession();
|
|
|
-
|
|
|
- var highlight;
|
|
|
- if (this.$highlightActiveLine) {
|
|
|
- if ((this.$selectionStyle != "line" || !this.selection.isMultiLine()))
|
|
|
- highlight = this.getCursorPosition();
|
|
|
- if (this.renderer.$maxLines && this.session.getLength() === 1 && !(this.renderer.$minLines > 1))
|
|
|
- highlight = false;
|
|
|
- }
|
|
|
-
|
|
|
- if (session.$highlightLineMarker && !highlight) {
|
|
|
- session.removeMarker(session.$highlightLineMarker.id);
|
|
|
- session.$highlightLineMarker = null;
|
|
|
- } else if (!session.$highlightLineMarker && highlight) {
|
|
|
- var range = new Range(highlight.row, highlight.column, highlight.row, Infinity);
|
|
|
- range.id = session.addMarker(range, "ace_active-line", "screenLine");
|
|
|
- session.$highlightLineMarker = range;
|
|
|
- } else if (highlight) {
|
|
|
- session.$highlightLineMarker.start.row = highlight.row;
|
|
|
- session.$highlightLineMarker.end.row = highlight.row;
|
|
|
- session.$highlightLineMarker.start.column = highlight.column;
|
|
|
- session._signal("changeBackMarker");
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.onSelectionChange = function(e) {
|
|
|
- var session = this.session;
|
|
|
-
|
|
|
- if (session.$selectionMarker) {
|
|
|
- session.removeMarker(session.$selectionMarker);
|
|
|
- }
|
|
|
- session.$selectionMarker = null;
|
|
|
-
|
|
|
- if (!this.selection.isEmpty()) {
|
|
|
- var range = this.selection.getRange();
|
|
|
- var style = this.getSelectionStyle();
|
|
|
- session.$selectionMarker = session.addMarker(range, "ace_selection", style);
|
|
|
- } else {
|
|
|
- this.$updateHighlightActiveLine();
|
|
|
- }
|
|
|
-
|
|
|
- var re = this.$highlightSelectedWord && this.$getSelectionHighLightRegexp();
|
|
|
- this.session.highlight(re);
|
|
|
-
|
|
|
- this._signal("changeSelection");
|
|
|
- };
|
|
|
-
|
|
|
- this.$getSelectionHighLightRegexp = function() {
|
|
|
- var session = this.session;
|
|
|
-
|
|
|
- var selection = this.getSelectionRange();
|
|
|
- if (selection.isEmpty() || selection.isMultiLine())
|
|
|
- return;
|
|
|
-
|
|
|
- var startOuter = selection.start.column - 1;
|
|
|
- var endOuter = selection.end.column + 1;
|
|
|
- var line = session.getLine(selection.start.row);
|
|
|
- var lineCols = line.length;
|
|
|
- var needle = line.substring(Math.max(startOuter, 0),
|
|
|
- Math.min(endOuter, lineCols));
|
|
|
- if ((startOuter >= 0 && /^[\w\d]/.test(needle)) ||
|
|
|
- (endOuter <= lineCols && /[\w\d]$/.test(needle)))
|
|
|
- return;
|
|
|
-
|
|
|
- needle = line.substring(selection.start.column, selection.end.column);
|
|
|
- if (!/^[\w\d]+$/.test(needle))
|
|
|
- return;
|
|
|
-
|
|
|
- var re = this.$search.$assembleRegExp({
|
|
|
- wholeWord: true,
|
|
|
- caseSensitive: true,
|
|
|
- needle: needle
|
|
|
- });
|
|
|
-
|
|
|
- return re;
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.onChangeFrontMarker = function() {
|
|
|
- this.renderer.updateFrontMarkers();
|
|
|
- };
|
|
|
-
|
|
|
- this.onChangeBackMarker = function() {
|
|
|
- this.renderer.updateBackMarkers();
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.onChangeBreakpoint = function() {
|
|
|
- this.renderer.updateBreakpoints();
|
|
|
- };
|
|
|
-
|
|
|
- this.onChangeAnnotation = function() {
|
|
|
- this.renderer.setAnnotations(this.session.getAnnotations());
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.onChangeMode = function(e) {
|
|
|
- this.renderer.updateText();
|
|
|
- this._emit("changeMode", e);
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.onChangeWrapLimit = function() {
|
|
|
- this.renderer.updateFull();
|
|
|
- };
|
|
|
-
|
|
|
- this.onChangeWrapMode = function() {
|
|
|
- this.renderer.onResize(true);
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.onChangeFold = function() {
|
|
|
- this.$updateHighlightActiveLine();
|
|
|
- this.renderer.updateFull();
|
|
|
- };
|
|
|
- this.getSelectedText = function() {
|
|
|
- return this.session.getTextRange(this.getSelectionRange());
|
|
|
- };
|
|
|
- this.getCopyText = function() {
|
|
|
- var text = this.getSelectedText();
|
|
|
- this._signal("copy", text);
|
|
|
- return text;
|
|
|
- };
|
|
|
- this.onCopy = function() {
|
|
|
- this.commands.exec("copy", this);
|
|
|
- };
|
|
|
- this.onCut = function() {
|
|
|
- this.commands.exec("cut", this);
|
|
|
- };
|
|
|
- this.onPaste = function(text, event) {
|
|
|
- var e = {text: text, event: event};
|
|
|
- this.commands.exec("paste", this, e);
|
|
|
- };
|
|
|
-
|
|
|
- this.$handlePaste = function(e) {
|
|
|
- if (typeof e == "string")
|
|
|
- e = {text: e};
|
|
|
- this._signal("paste", e);
|
|
|
- var text = e.text;
|
|
|
- if (!this.inMultiSelectMode || this.inVirtualSelectionMode) {
|
|
|
- this.insert(text);
|
|
|
- } else {
|
|
|
- var lines = text.split(/\r\n|\r|\n/);
|
|
|
- var ranges = this.selection.rangeList.ranges;
|
|
|
-
|
|
|
- if (lines.length > ranges.length || lines.length < 2 || !lines[1])
|
|
|
- return this.commands.exec("insertstring", this, text);
|
|
|
-
|
|
|
- for (var i = ranges.length; i--;) {
|
|
|
- var range = ranges[i];
|
|
|
- if (!range.isEmpty())
|
|
|
- this.session.remove(range);
|
|
|
-
|
|
|
- this.session.insert(range.start, lines[i]);
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.execCommand = function(command, args) {
|
|
|
- return this.commands.exec(command, this, args);
|
|
|
- };
|
|
|
- this.insert = function(text, pasted) {
|
|
|
- var session = this.session;
|
|
|
- var mode = session.getMode();
|
|
|
- var cursor = this.getCursorPosition();
|
|
|
-
|
|
|
- if (this.getBehavioursEnabled() && !pasted) {
|
|
|
- var transform = mode.transformAction(session.getState(cursor.row), 'insertion', this, session, text);
|
|
|
- if (transform) {
|
|
|
- if (text !== transform.text) {
|
|
|
- this.session.mergeUndoDeltas = false;
|
|
|
- this.$mergeNextCommand = false;
|
|
|
- }
|
|
|
- text = transform.text;
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (text == "\t")
|
|
|
- text = this.session.getTabString();
|
|
|
- if (!this.selection.isEmpty()) {
|
|
|
- var range = this.getSelectionRange();
|
|
|
- cursor = this.session.remove(range);
|
|
|
- this.clearSelection();
|
|
|
- }
|
|
|
- else if (this.session.getOverwrite()) {
|
|
|
- var range = new Range.fromPoints(cursor, cursor);
|
|
|
- range.end.column += text.length;
|
|
|
- this.session.remove(range);
|
|
|
- }
|
|
|
-
|
|
|
- if (text == "\n" || text == "\r\n") {
|
|
|
- var line = session.getLine(cursor.row);
|
|
|
- if (cursor.column > line.search(/\S|$/)) {
|
|
|
- var d = line.substr(cursor.column).search(/\S|$/);
|
|
|
- session.doc.removeInLine(cursor.row, cursor.column, cursor.column + d);
|
|
|
- }
|
|
|
- }
|
|
|
- this.clearSelection();
|
|
|
-
|
|
|
- var start = cursor.column;
|
|
|
- var lineState = session.getState(cursor.row);
|
|
|
- var line = session.getLine(cursor.row);
|
|
|
- var shouldOutdent = mode.checkOutdent(lineState, line, text);
|
|
|
- var end = session.insert(cursor, text);
|
|
|
-
|
|
|
- if (transform && transform.selection) {
|
|
|
- if (transform.selection.length == 2) { // Transform relative to the current column
|
|
|
- this.selection.setSelectionRange(
|
|
|
- new Range(cursor.row, start + transform.selection[0],
|
|
|
- cursor.row, start + transform.selection[1]));
|
|
|
- } else { // Transform relative to the current row.
|
|
|
- this.selection.setSelectionRange(
|
|
|
- new Range(cursor.row + transform.selection[0],
|
|
|
- transform.selection[1],
|
|
|
- cursor.row + transform.selection[2],
|
|
|
- transform.selection[3]));
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (session.getDocument().isNewLine(text)) {
|
|
|
- var lineIndent = mode.getNextLineIndent(lineState, line.slice(0, cursor.column), session.getTabString());
|
|
|
-
|
|
|
- session.insert({row: cursor.row+1, column: 0}, lineIndent);
|
|
|
- }
|
|
|
- if (shouldOutdent)
|
|
|
- mode.autoOutdent(lineState, session, cursor.row);
|
|
|
- };
|
|
|
-
|
|
|
- this.onTextInput = function(text) {
|
|
|
- this.keyBinding.onTextInput(text);
|
|
|
- };
|
|
|
-
|
|
|
- this.onCommandKey = function(e, hashId, keyCode) {
|
|
|
- this.keyBinding.onCommandKey(e, hashId, keyCode);
|
|
|
- };
|
|
|
- this.setOverwrite = function(overwrite) {
|
|
|
- this.session.setOverwrite(overwrite);
|
|
|
- };
|
|
|
- this.getOverwrite = function() {
|
|
|
- return this.session.getOverwrite();
|
|
|
- };
|
|
|
- this.toggleOverwrite = function() {
|
|
|
- this.session.toggleOverwrite();
|
|
|
- };
|
|
|
- this.setScrollSpeed = function(speed) {
|
|
|
- this.setOption("scrollSpeed", speed);
|
|
|
- };
|
|
|
- this.getScrollSpeed = function() {
|
|
|
- return this.getOption("scrollSpeed");
|
|
|
- };
|
|
|
- this.setDragDelay = function(dragDelay) {
|
|
|
- this.setOption("dragDelay", dragDelay);
|
|
|
- };
|
|
|
- this.getDragDelay = function() {
|
|
|
- return this.getOption("dragDelay");
|
|
|
- };
|
|
|
- this.setSelectionStyle = function(val) {
|
|
|
- this.setOption("selectionStyle", val);
|
|
|
- };
|
|
|
- this.getSelectionStyle = function() {
|
|
|
- return this.getOption("selectionStyle");
|
|
|
- };
|
|
|
- this.setHighlightActiveLine = function(shouldHighlight) {
|
|
|
- this.setOption("highlightActiveLine", shouldHighlight);
|
|
|
- };
|
|
|
- this.getHighlightActiveLine = function() {
|
|
|
- return this.getOption("highlightActiveLine");
|
|
|
- };
|
|
|
- this.setHighlightGutterLine = function(shouldHighlight) {
|
|
|
- this.setOption("highlightGutterLine", shouldHighlight);
|
|
|
- };
|
|
|
-
|
|
|
- this.getHighlightGutterLine = function() {
|
|
|
- return this.getOption("highlightGutterLine");
|
|
|
- };
|
|
|
- this.setHighlightSelectedWord = function(shouldHighlight) {
|
|
|
- this.setOption("highlightSelectedWord", shouldHighlight);
|
|
|
- };
|
|
|
- this.getHighlightSelectedWord = function() {
|
|
|
- return this.$highlightSelectedWord;
|
|
|
- };
|
|
|
-
|
|
|
- this.setAnimatedScroll = function(shouldAnimate){
|
|
|
- this.renderer.setAnimatedScroll(shouldAnimate);
|
|
|
- };
|
|
|
-
|
|
|
- this.getAnimatedScroll = function(){
|
|
|
- return this.renderer.getAnimatedScroll();
|
|
|
- };
|
|
|
- this.setShowInvisibles = function(showInvisibles) {
|
|
|
- this.renderer.setShowInvisibles(showInvisibles);
|
|
|
- };
|
|
|
- this.getShowInvisibles = function() {
|
|
|
- return this.renderer.getShowInvisibles();
|
|
|
- };
|
|
|
-
|
|
|
- this.setDisplayIndentGuides = function(display) {
|
|
|
- this.renderer.setDisplayIndentGuides(display);
|
|
|
- };
|
|
|
-
|
|
|
- this.getDisplayIndentGuides = function() {
|
|
|
- return this.renderer.getDisplayIndentGuides();
|
|
|
- };
|
|
|
- this.setShowPrintMargin = function(showPrintMargin) {
|
|
|
- this.renderer.setShowPrintMargin(showPrintMargin);
|
|
|
- };
|
|
|
- this.getShowPrintMargin = function() {
|
|
|
- return this.renderer.getShowPrintMargin();
|
|
|
- };
|
|
|
- this.setPrintMarginColumn = function(showPrintMargin) {
|
|
|
- this.renderer.setPrintMarginColumn(showPrintMargin);
|
|
|
- };
|
|
|
- this.getPrintMarginColumn = function() {
|
|
|
- return this.renderer.getPrintMarginColumn();
|
|
|
- };
|
|
|
- this.setReadOnly = function(readOnly) {
|
|
|
- this.setOption("readOnly", readOnly);
|
|
|
- };
|
|
|
- this.getReadOnly = function() {
|
|
|
- return this.getOption("readOnly");
|
|
|
- };
|
|
|
- this.setBehavioursEnabled = function (enabled) {
|
|
|
- this.setOption("behavioursEnabled", enabled);
|
|
|
- };
|
|
|
- this.getBehavioursEnabled = function () {
|
|
|
- return this.getOption("behavioursEnabled");
|
|
|
- };
|
|
|
- this.setWrapBehavioursEnabled = function (enabled) {
|
|
|
- this.setOption("wrapBehavioursEnabled", enabled);
|
|
|
- };
|
|
|
- this.getWrapBehavioursEnabled = function () {
|
|
|
- return this.getOption("wrapBehavioursEnabled");
|
|
|
- };
|
|
|
- this.setShowFoldWidgets = function(show) {
|
|
|
- this.setOption("showFoldWidgets", show);
|
|
|
-
|
|
|
- };
|
|
|
- this.getShowFoldWidgets = function() {
|
|
|
- return this.getOption("showFoldWidgets");
|
|
|
- };
|
|
|
-
|
|
|
- this.setFadeFoldWidgets = function(fade) {
|
|
|
- this.setOption("fadeFoldWidgets", fade);
|
|
|
- };
|
|
|
-
|
|
|
- this.getFadeFoldWidgets = function() {
|
|
|
- return this.getOption("fadeFoldWidgets");
|
|
|
- };
|
|
|
- this.remove = function(dir) {
|
|
|
- if (this.selection.isEmpty()){
|
|
|
- if (dir == "left")
|
|
|
- this.selection.selectLeft();
|
|
|
- else
|
|
|
- this.selection.selectRight();
|
|
|
- }
|
|
|
-
|
|
|
- var range = this.getSelectionRange();
|
|
|
- if (this.getBehavioursEnabled()) {
|
|
|
- var session = this.session;
|
|
|
- var state = session.getState(range.start.row);
|
|
|
- var new_range = session.getMode().transformAction(state, 'deletion', this, session, range);
|
|
|
-
|
|
|
- if (range.end.column === 0) {
|
|
|
- var text = session.getTextRange(range);
|
|
|
- if (text[text.length - 1] == "\n") {
|
|
|
- var line = session.getLine(range.end.row);
|
|
|
- if (/^\s+$/.test(line)) {
|
|
|
- range.end.column = line.length;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- if (new_range)
|
|
|
- range = new_range;
|
|
|
- }
|
|
|
-
|
|
|
- this.session.remove(range);
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.removeWordRight = function() {
|
|
|
- if (this.selection.isEmpty())
|
|
|
- this.selection.selectWordRight();
|
|
|
-
|
|
|
- this.session.remove(this.getSelectionRange());
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.removeWordLeft = function() {
|
|
|
- if (this.selection.isEmpty())
|
|
|
- this.selection.selectWordLeft();
|
|
|
-
|
|
|
- this.session.remove(this.getSelectionRange());
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.removeToLineStart = function() {
|
|
|
- if (this.selection.isEmpty())
|
|
|
- this.selection.selectLineStart();
|
|
|
-
|
|
|
- this.session.remove(this.getSelectionRange());
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.removeToLineEnd = function() {
|
|
|
- if (this.selection.isEmpty())
|
|
|
- this.selection.selectLineEnd();
|
|
|
-
|
|
|
- var range = this.getSelectionRange();
|
|
|
- if (range.start.column == range.end.column && range.start.row == range.end.row) {
|
|
|
- range.end.column = 0;
|
|
|
- range.end.row++;
|
|
|
- }
|
|
|
-
|
|
|
- this.session.remove(range);
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.splitLine = function() {
|
|
|
- if (!this.selection.isEmpty()) {
|
|
|
- this.session.remove(this.getSelectionRange());
|
|
|
- this.clearSelection();
|
|
|
- }
|
|
|
-
|
|
|
- var cursor = this.getCursorPosition();
|
|
|
- this.insert("\n");
|
|
|
- this.moveCursorToPosition(cursor);
|
|
|
- };
|
|
|
- this.transposeLetters = function() {
|
|
|
- if (!this.selection.isEmpty()) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var cursor = this.getCursorPosition();
|
|
|
- var column = cursor.column;
|
|
|
- if (column === 0)
|
|
|
- return;
|
|
|
-
|
|
|
- var line = this.session.getLine(cursor.row);
|
|
|
- var swap, range;
|
|
|
- if (column < line.length) {
|
|
|
- swap = line.charAt(column) + line.charAt(column-1);
|
|
|
- range = new Range(cursor.row, column-1, cursor.row, column+1);
|
|
|
- }
|
|
|
- else {
|
|
|
- swap = line.charAt(column-1) + line.charAt(column-2);
|
|
|
- range = new Range(cursor.row, column-2, cursor.row, column);
|
|
|
- }
|
|
|
- this.session.replace(range, swap);
|
|
|
- };
|
|
|
- this.toLowerCase = function() {
|
|
|
- var originalRange = this.getSelectionRange();
|
|
|
- if (this.selection.isEmpty()) {
|
|
|
- this.selection.selectWord();
|
|
|
- }
|
|
|
-
|
|
|
- var range = this.getSelectionRange();
|
|
|
- var text = this.session.getTextRange(range);
|
|
|
- this.session.replace(range, text.toLowerCase());
|
|
|
- this.selection.setSelectionRange(originalRange);
|
|
|
- };
|
|
|
- this.toUpperCase = function() {
|
|
|
- var originalRange = this.getSelectionRange();
|
|
|
- if (this.selection.isEmpty()) {
|
|
|
- this.selection.selectWord();
|
|
|
- }
|
|
|
-
|
|
|
- var range = this.getSelectionRange();
|
|
|
- var text = this.session.getTextRange(range);
|
|
|
- this.session.replace(range, text.toUpperCase());
|
|
|
- this.selection.setSelectionRange(originalRange);
|
|
|
- };
|
|
|
- this.indent = function() {
|
|
|
- var session = this.session;
|
|
|
- var range = this.getSelectionRange();
|
|
|
-
|
|
|
- if (range.start.row < range.end.row) {
|
|
|
- var rows = this.$getSelectedRows();
|
|
|
- session.indentRows(rows.first, rows.last, "\t");
|
|
|
- return;
|
|
|
- } else if (range.start.column < range.end.column) {
|
|
|
- var text = session.getTextRange(range);
|
|
|
- if (!/^\s+$/.test(text)) {
|
|
|
- var rows = this.$getSelectedRows();
|
|
|
- session.indentRows(rows.first, rows.last, "\t");
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- var line = session.getLine(range.start.row);
|
|
|
- var position = range.start;
|
|
|
- var size = session.getTabSize();
|
|
|
- var column = session.documentToScreenColumn(position.row, position.column);
|
|
|
-
|
|
|
- if (this.session.getUseSoftTabs()) {
|
|
|
- var count = (size - column % size);
|
|
|
- var indentString = lang.stringRepeat(" ", count);
|
|
|
- } else {
|
|
|
- var count = column % size;
|
|
|
- while (line[range.start.column] == " " && count) {
|
|
|
- range.start.column--;
|
|
|
- count--;
|
|
|
- }
|
|
|
- this.selection.setSelectionRange(range);
|
|
|
- indentString = "\t";
|
|
|
- }
|
|
|
- return this.insert(indentString);
|
|
|
- };
|
|
|
- this.blockIndent = function() {
|
|
|
- var rows = this.$getSelectedRows();
|
|
|
- this.session.indentRows(rows.first, rows.last, "\t");
|
|
|
- };
|
|
|
- this.blockOutdent = function() {
|
|
|
- var selection = this.session.getSelection();
|
|
|
- this.session.outdentRows(selection.getRange());
|
|
|
- };
|
|
|
- this.sortLines = function() {
|
|
|
- var rows = this.$getSelectedRows();
|
|
|
- var session = this.session;
|
|
|
-
|
|
|
- var lines = [];
|
|
|
- for (i = rows.first; i <= rows.last; i++)
|
|
|
- lines.push(session.getLine(i));
|
|
|
-
|
|
|
- lines.sort(function(a, b) {
|
|
|
- if (a.toLowerCase() < b.toLowerCase()) return -1;
|
|
|
- if (a.toLowerCase() > b.toLowerCase()) return 1;
|
|
|
- return 0;
|
|
|
- });
|
|
|
-
|
|
|
- var deleteRange = new Range(0, 0, 0, 0);
|
|
|
- for (var i = rows.first; i <= rows.last; i++) {
|
|
|
- var line = session.getLine(i);
|
|
|
- deleteRange.start.row = i;
|
|
|
- deleteRange.end.row = i;
|
|
|
- deleteRange.end.column = line.length;
|
|
|
- session.replace(deleteRange, lines[i-rows.first]);
|
|
|
- }
|
|
|
- };
|
|
|
- this.toggleCommentLines = function() {
|
|
|
- var state = this.session.getState(this.getCursorPosition().row);
|
|
|
- var rows = this.$getSelectedRows();
|
|
|
- this.session.getMode().toggleCommentLines(state, this.session, rows.first, rows.last);
|
|
|
- };
|
|
|
-
|
|
|
- this.toggleBlockComment = function() {
|
|
|
- var cursor = this.getCursorPosition();
|
|
|
- var state = this.session.getState(cursor.row);
|
|
|
- var range = this.getSelectionRange();
|
|
|
- this.session.getMode().toggleBlockComment(state, this.session, range, cursor);
|
|
|
- };
|
|
|
- this.getNumberAt = function(row, column) {
|
|
|
- var _numberRx = /[\-]?[0-9]+(?:\.[0-9]+)?/g;
|
|
|
- _numberRx.lastIndex = 0;
|
|
|
-
|
|
|
- var s = this.session.getLine(row);
|
|
|
- while (_numberRx.lastIndex < column) {
|
|
|
- var m = _numberRx.exec(s);
|
|
|
- if(m.index <= column && m.index+m[0].length >= column){
|
|
|
- var number = {
|
|
|
- value: m[0],
|
|
|
- start: m.index,
|
|
|
- end: m.index+m[0].length
|
|
|
- };
|
|
|
- return number;
|
|
|
- }
|
|
|
- }
|
|
|
- return null;
|
|
|
- };
|
|
|
- this.modifyNumber = function(amount) {
|
|
|
- var row = this.selection.getCursor().row;
|
|
|
- var column = this.selection.getCursor().column;
|
|
|
- var charRange = new Range(row, column-1, row, column);
|
|
|
-
|
|
|
- var c = this.session.getTextRange(charRange);
|
|
|
- if (!isNaN(parseFloat(c)) && isFinite(c)) {
|
|
|
- var nr = this.getNumberAt(row, column);
|
|
|
- if (nr) {
|
|
|
- var fp = nr.value.indexOf(".") >= 0 ? nr.start + nr.value.indexOf(".") + 1 : nr.end;
|
|
|
- var decimals = nr.start + nr.value.length - fp;
|
|
|
-
|
|
|
- var t = parseFloat(nr.value);
|
|
|
- t *= Math.pow(10, decimals);
|
|
|
-
|
|
|
-
|
|
|
- if(fp !== nr.end && column < fp){
|
|
|
- amount *= Math.pow(10, nr.end - column - 1);
|
|
|
- } else {
|
|
|
- amount *= Math.pow(10, nr.end - column);
|
|
|
- }
|
|
|
-
|
|
|
- t += amount;
|
|
|
- t /= Math.pow(10, decimals);
|
|
|
- var nnr = t.toFixed(decimals);
|
|
|
- var replaceRange = new Range(row, nr.start, row, nr.end);
|
|
|
- this.session.replace(replaceRange, nnr);
|
|
|
- this.moveCursorTo(row, Math.max(nr.start +1, column + nnr.length - nr.value.length));
|
|
|
-
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- this.removeLines = function() {
|
|
|
- var rows = this.$getSelectedRows();
|
|
|
- this.session.removeFullLines(rows.first, rows.last);
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
-
|
|
|
- this.duplicateSelection = function() {
|
|
|
- var sel = this.selection;
|
|
|
- var doc = this.session;
|
|
|
- var range = sel.getRange();
|
|
|
- var reverse = sel.isBackwards();
|
|
|
- if (range.isEmpty()) {
|
|
|
- var row = range.start.row;
|
|
|
- doc.duplicateLines(row, row);
|
|
|
- } else {
|
|
|
- var point = reverse ? range.start : range.end;
|
|
|
- var endPoint = doc.insert(point, doc.getTextRange(range), false);
|
|
|
- range.start = point;
|
|
|
- range.end = endPoint;
|
|
|
-
|
|
|
- sel.setSelectionRange(range, reverse);
|
|
|
- }
|
|
|
- };
|
|
|
- this.moveLinesDown = function() {
|
|
|
- this.$moveLines(1, false);
|
|
|
- };
|
|
|
- this.moveLinesUp = function() {
|
|
|
- this.$moveLines(-1, false);
|
|
|
- };
|
|
|
- this.moveText = function(range, toPosition, copy) {
|
|
|
- return this.session.moveText(range, toPosition, copy);
|
|
|
- };
|
|
|
- this.copyLinesUp = function() {
|
|
|
- this.$moveLines(-1, true);
|
|
|
- };
|
|
|
- this.copyLinesDown = function() {
|
|
|
- this.$moveLines(1, true);
|
|
|
- };
|
|
|
- this.$moveLines = function(dir, copy) {
|
|
|
- var rows, moved;
|
|
|
- var selection = this.selection;
|
|
|
- if (!selection.inMultiSelectMode || this.inVirtualSelectionMode) {
|
|
|
- var range = selection.toOrientedRange();
|
|
|
- rows = this.$getSelectedRows(range);
|
|
|
- moved = this.session.$moveLines(rows.first, rows.last, copy ? 0 : dir);
|
|
|
- if (copy && dir == -1) moved = 0;
|
|
|
- range.moveBy(moved, 0);
|
|
|
- selection.fromOrientedRange(range);
|
|
|
- } else {
|
|
|
- var ranges = selection.rangeList.ranges;
|
|
|
- selection.rangeList.detach(this.session);
|
|
|
- this.inVirtualSelectionMode = true;
|
|
|
-
|
|
|
- var diff = 0;
|
|
|
- var totalDiff = 0;
|
|
|
- var l = ranges.length;
|
|
|
- for (var i = 0; i < l; i++) {
|
|
|
- var rangeIndex = i;
|
|
|
- ranges[i].moveBy(diff, 0);
|
|
|
- rows = this.$getSelectedRows(ranges[i]);
|
|
|
- var first = rows.first;
|
|
|
- var last = rows.last;
|
|
|
- while (++i < l) {
|
|
|
- if (totalDiff) ranges[i].moveBy(totalDiff, 0);
|
|
|
- var subRows = this.$getSelectedRows(ranges[i]);
|
|
|
- if (copy && subRows.first != last)
|
|
|
- break;
|
|
|
- else if (!copy && subRows.first > last + 1)
|
|
|
- break;
|
|
|
- last = subRows.last;
|
|
|
- }
|
|
|
- i--;
|
|
|
- diff = this.session.$moveLines(first, last, copy ? 0 : dir);
|
|
|
- if (copy && dir == -1) rangeIndex = i + 1;
|
|
|
- while (rangeIndex <= i) {
|
|
|
- ranges[rangeIndex].moveBy(diff, 0);
|
|
|
- rangeIndex++;
|
|
|
- }
|
|
|
- if (!copy) diff = 0;
|
|
|
- totalDiff += diff;
|
|
|
- }
|
|
|
-
|
|
|
- selection.fromOrientedRange(selection.ranges[0]);
|
|
|
- selection.rangeList.attach(this.session);
|
|
|
- this.inVirtualSelectionMode = false;
|
|
|
- }
|
|
|
- };
|
|
|
- this.$getSelectedRows = function(range) {
|
|
|
- range = (range || this.getSelectionRange()).collapseRows();
|
|
|
-
|
|
|
- return {
|
|
|
- first: this.session.getRowFoldStart(range.start.row),
|
|
|
- last: this.session.getRowFoldEnd(range.end.row)
|
|
|
- };
|
|
|
- };
|
|
|
-
|
|
|
- this.onCompositionStart = function(text) {
|
|
|
- this.renderer.showComposition(this.getCursorPosition());
|
|
|
- };
|
|
|
-
|
|
|
- this.onCompositionUpdate = function(text) {
|
|
|
- this.renderer.setCompositionText(text);
|
|
|
- };
|
|
|
-
|
|
|
- this.onCompositionEnd = function() {
|
|
|
- this.renderer.hideComposition();
|
|
|
- };
|
|
|
- this.getFirstVisibleRow = function() {
|
|
|
- return this.renderer.getFirstVisibleRow();
|
|
|
- };
|
|
|
- this.getLastVisibleRow = function() {
|
|
|
- return this.renderer.getLastVisibleRow();
|
|
|
- };
|
|
|
- this.isRowVisible = function(row) {
|
|
|
- return (row >= this.getFirstVisibleRow() && row <= this.getLastVisibleRow());
|
|
|
- };
|
|
|
- this.isRowFullyVisible = function(row) {
|
|
|
- return (row >= this.renderer.getFirstFullyVisibleRow() && row <= this.renderer.getLastFullyVisibleRow());
|
|
|
- };
|
|
|
- this.$getVisibleRowCount = function() {
|
|
|
- return this.renderer.getScrollBottomRow() - this.renderer.getScrollTopRow() + 1;
|
|
|
- };
|
|
|
-
|
|
|
- this.$moveByPage = function(dir, select) {
|
|
|
- var renderer = this.renderer;
|
|
|
- var config = this.renderer.layerConfig;
|
|
|
- var rows = dir * Math.floor(config.height / config.lineHeight);
|
|
|
-
|
|
|
- this.$blockScrolling++;
|
|
|
- if (select === true) {
|
|
|
- this.selection.$moveSelection(function(){
|
|
|
- this.moveCursorBy(rows, 0);
|
|
|
- });
|
|
|
- } else if (select === false) {
|
|
|
- this.selection.moveCursorBy(rows, 0);
|
|
|
- this.selection.clearSelection();
|
|
|
- }
|
|
|
- this.$blockScrolling--;
|
|
|
-
|
|
|
- var scrollTop = renderer.scrollTop;
|
|
|
-
|
|
|
- renderer.scrollBy(0, rows * config.lineHeight);
|
|
|
- if (select != null)
|
|
|
- renderer.scrollCursorIntoView(null, 0.5);
|
|
|
-
|
|
|
- renderer.animateScrolling(scrollTop);
|
|
|
- };
|
|
|
- this.selectPageDown = function() {
|
|
|
- this.$moveByPage(1, true);
|
|
|
- };
|
|
|
- this.selectPageUp = function() {
|
|
|
- this.$moveByPage(-1, true);
|
|
|
- };
|
|
|
- this.gotoPageDown = function() {
|
|
|
- this.$moveByPage(1, false);
|
|
|
- };
|
|
|
- this.gotoPageUp = function() {
|
|
|
- this.$moveByPage(-1, false);
|
|
|
- };
|
|
|
- this.scrollPageDown = function() {
|
|
|
- this.$moveByPage(1);
|
|
|
- };
|
|
|
- this.scrollPageUp = function() {
|
|
|
- this.$moveByPage(-1);
|
|
|
- };
|
|
|
- this.scrollToRow = function(row) {
|
|
|
- this.renderer.scrollToRow(row);
|
|
|
- };
|
|
|
- this.scrollToLine = function(line, center, animate, callback) {
|
|
|
- this.renderer.scrollToLine(line, center, animate, callback);
|
|
|
- };
|
|
|
- this.centerSelection = function() {
|
|
|
- var range = this.getSelectionRange();
|
|
|
- var pos = {
|
|
|
- row: Math.floor(range.start.row + (range.end.row - range.start.row) / 2),
|
|
|
- column: Math.floor(range.start.column + (range.end.column - range.start.column) / 2)
|
|
|
- };
|
|
|
- this.renderer.alignCursor(pos, 0.5);
|
|
|
- };
|
|
|
- this.getCursorPosition = function() {
|
|
|
- return this.selection.getCursor();
|
|
|
- };
|
|
|
- this.getCursorPositionScreen = function() {
|
|
|
- return this.session.documentToScreenPosition(this.getCursorPosition());
|
|
|
- };
|
|
|
- this.getSelectionRange = function() {
|
|
|
- return this.selection.getRange();
|
|
|
- };
|
|
|
- this.selectAll = function() {
|
|
|
- this.$blockScrolling += 1;
|
|
|
- this.selection.selectAll();
|
|
|
- this.$blockScrolling -= 1;
|
|
|
- };
|
|
|
- this.clearSelection = function() {
|
|
|
- this.selection.clearSelection();
|
|
|
- };
|
|
|
- this.moveCursorTo = function(row, column) {
|
|
|
- this.selection.moveCursorTo(row, column);
|
|
|
- };
|
|
|
- this.moveCursorToPosition = function(pos) {
|
|
|
- this.selection.moveCursorToPosition(pos);
|
|
|
- };
|
|
|
- this.jumpToMatching = function(select, expand) {
|
|
|
- var cursor = this.getCursorPosition();
|
|
|
- var iterator = new TokenIterator(this.session, cursor.row, cursor.column);
|
|
|
- var prevToken = iterator.getCurrentToken();
|
|
|
- var token = prevToken || iterator.stepForward();
|
|
|
-
|
|
|
- if (!token) return;
|
|
|
- var matchType;
|
|
|
- var found = false;
|
|
|
- var depth = {};
|
|
|
- var i = cursor.column - token.start;
|
|
|
- var bracketType;
|
|
|
- var brackets = {
|
|
|
- ")": "(",
|
|
|
- "(": "(",
|
|
|
- "]": "[",
|
|
|
- "[": "[",
|
|
|
- "{": "{",
|
|
|
- "}": "{"
|
|
|
- };
|
|
|
-
|
|
|
- do {
|
|
|
- if (token.value.match(/[{}()\[\]]/g)) {
|
|
|
- for (; i < token.value.length && !found; i++) {
|
|
|
- if (!brackets[token.value[i]]) {
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- bracketType = brackets[token.value[i]] + '.' + token.type.replace("rparen", "lparen");
|
|
|
-
|
|
|
- if (isNaN(depth[bracketType])) {
|
|
|
- depth[bracketType] = 0;
|
|
|
- }
|
|
|
-
|
|
|
- switch (token.value[i]) {
|
|
|
- case '(':
|
|
|
- case '[':
|
|
|
- case '{':
|
|
|
- depth[bracketType]++;
|
|
|
- break;
|
|
|
- case ')':
|
|
|
- case ']':
|
|
|
- case '}':
|
|
|
- depth[bracketType]--;
|
|
|
-
|
|
|
- if (depth[bracketType] === -1) {
|
|
|
- matchType = 'bracket';
|
|
|
- found = true;
|
|
|
- }
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- else if (token && token.type.indexOf('tag-name') !== -1) {
|
|
|
- if (isNaN(depth[token.value])) {
|
|
|
- depth[token.value] = 0;
|
|
|
- }
|
|
|
-
|
|
|
- if (prevToken.value === '<') {
|
|
|
- depth[token.value]++;
|
|
|
- }
|
|
|
- else if (prevToken.value === '</') {
|
|
|
- depth[token.value]--;
|
|
|
- }
|
|
|
-
|
|
|
- if (depth[token.value] === -1) {
|
|
|
- matchType = 'tag';
|
|
|
- found = true;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (!found) {
|
|
|
- prevToken = token;
|
|
|
- token = iterator.stepForward();
|
|
|
- i = 0;
|
|
|
- }
|
|
|
- } while (token && !found);
|
|
|
- if (!matchType)
|
|
|
- return;
|
|
|
-
|
|
|
- var range, pos;
|
|
|
- if (matchType === 'bracket') {
|
|
|
- range = this.session.getBracketRange(cursor);
|
|
|
- if (!range) {
|
|
|
- range = new Range(
|
|
|
- iterator.getCurrentTokenRow(),
|
|
|
- iterator.getCurrentTokenColumn() + i - 1,
|
|
|
- iterator.getCurrentTokenRow(),
|
|
|
- iterator.getCurrentTokenColumn() + i - 1
|
|
|
- );
|
|
|
- pos = range.start;
|
|
|
- if (expand || pos.row === cursor.row && Math.abs(pos.column - cursor.column) < 2)
|
|
|
- range = this.session.getBracketRange(pos);
|
|
|
- }
|
|
|
- }
|
|
|
- else if (matchType === 'tag') {
|
|
|
- if (token && token.type.indexOf('tag-name') !== -1)
|
|
|
- var tag = token.value;
|
|
|
- else
|
|
|
- return;
|
|
|
-
|
|
|
- range = new Range(
|
|
|
- iterator.getCurrentTokenRow(),
|
|
|
- iterator.getCurrentTokenColumn() - 2,
|
|
|
- iterator.getCurrentTokenRow(),
|
|
|
- iterator.getCurrentTokenColumn() - 2
|
|
|
- );
|
|
|
- if (range.compare(cursor.row, cursor.column) === 0) {
|
|
|
- found = false;
|
|
|
- do {
|
|
|
- token = prevToken;
|
|
|
- prevToken = iterator.stepBackward();
|
|
|
-
|
|
|
- if (prevToken) {
|
|
|
- if (prevToken.type.indexOf('tag-close') !== -1) {
|
|
|
- range.setEnd(iterator.getCurrentTokenRow(), iterator.getCurrentTokenColumn() + 1);
|
|
|
- }
|
|
|
-
|
|
|
- if (token.value === tag && token.type.indexOf('tag-name') !== -1) {
|
|
|
- if (prevToken.value === '<') {
|
|
|
- depth[tag]++;
|
|
|
- }
|
|
|
- else if (prevToken.value === '</') {
|
|
|
- depth[tag]--;
|
|
|
- }
|
|
|
-
|
|
|
- if (depth[tag] === 0)
|
|
|
- found = true;
|
|
|
- }
|
|
|
- }
|
|
|
- } while (prevToken && !found);
|
|
|
- }
|
|
|
- if (token && token.type.indexOf('tag-name')) {
|
|
|
- pos = range.start;
|
|
|
- if (pos.row == cursor.row && Math.abs(pos.column - cursor.column) < 2)
|
|
|
- pos = range.end;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- pos = range && range.cursor || pos;
|
|
|
- if (pos) {
|
|
|
- if (select) {
|
|
|
- if (range && expand) {
|
|
|
- this.selection.setRange(range);
|
|
|
- } else if (range && range.isEqual(this.getSelectionRange())) {
|
|
|
- this.clearSelection();
|
|
|
- } else {
|
|
|
- this.selection.selectTo(pos.row, pos.column);
|
|
|
- }
|
|
|
- } else {
|
|
|
- this.selection.moveTo(pos.row, pos.column);
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
- this.gotoLine = function(lineNumber, column, animate) {
|
|
|
- this.selection.clearSelection();
|
|
|
- this.session.unfold({row: lineNumber - 1, column: column || 0});
|
|
|
-
|
|
|
- this.$blockScrolling += 1;
|
|
|
- this.exitMultiSelectMode && this.exitMultiSelectMode();
|
|
|
- this.moveCursorTo(lineNumber - 1, column || 0);
|
|
|
- this.$blockScrolling -= 1;
|
|
|
-
|
|
|
- if (!this.isRowFullyVisible(lineNumber - 1))
|
|
|
- this.scrollToLine(lineNumber - 1, true, animate);
|
|
|
- };
|
|
|
- this.navigateTo = function(row, column) {
|
|
|
- this.selection.moveTo(row, column);
|
|
|
- };
|
|
|
- this.navigateUp = function(times) {
|
|
|
- if (this.selection.isMultiLine() && !this.selection.isBackwards()) {
|
|
|
- var selectionStart = this.selection.anchor.getPosition();
|
|
|
- return this.moveCursorToPosition(selectionStart);
|
|
|
- }
|
|
|
- this.selection.clearSelection();
|
|
|
- this.selection.moveCursorBy(-times || -1, 0);
|
|
|
- };
|
|
|
- this.navigateDown = function(times) {
|
|
|
- if (this.selection.isMultiLine() && this.selection.isBackwards()) {
|
|
|
- var selectionEnd = this.selection.anchor.getPosition();
|
|
|
- return this.moveCursorToPosition(selectionEnd);
|
|
|
- }
|
|
|
- this.selection.clearSelection();
|
|
|
- this.selection.moveCursorBy(times || 1, 0);
|
|
|
- };
|
|
|
- this.navigateLeft = function(times) {
|
|
|
- if (!this.selection.isEmpty()) {
|
|
|
- var selectionStart = this.getSelectionRange().start;
|
|
|
- this.moveCursorToPosition(selectionStart);
|
|
|
- }
|
|
|
- else {
|
|
|
- times = times || 1;
|
|
|
- while (times--) {
|
|
|
- this.selection.moveCursorLeft();
|
|
|
- }
|
|
|
- }
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.navigateRight = function(times) {
|
|
|
- if (!this.selection.isEmpty()) {
|
|
|
- var selectionEnd = this.getSelectionRange().end;
|
|
|
- this.moveCursorToPosition(selectionEnd);
|
|
|
- }
|
|
|
- else {
|
|
|
- times = times || 1;
|
|
|
- while (times--) {
|
|
|
- this.selection.moveCursorRight();
|
|
|
- }
|
|
|
- }
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.navigateLineStart = function() {
|
|
|
- this.selection.moveCursorLineStart();
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.navigateLineEnd = function() {
|
|
|
- this.selection.moveCursorLineEnd();
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.navigateFileEnd = function() {
|
|
|
- this.selection.moveCursorFileEnd();
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.navigateFileStart = function() {
|
|
|
- this.selection.moveCursorFileStart();
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.navigateWordRight = function() {
|
|
|
- this.selection.moveCursorWordRight();
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.navigateWordLeft = function() {
|
|
|
- this.selection.moveCursorWordLeft();
|
|
|
- this.clearSelection();
|
|
|
- };
|
|
|
- this.replace = function(replacement, options) {
|
|
|
- if (options)
|
|
|
- this.$search.set(options);
|
|
|
-
|
|
|
- var range = this.$search.find(this.session);
|
|
|
- var replaced = 0;
|
|
|
- if (!range)
|
|
|
- return replaced;
|
|
|
-
|
|
|
- if (this.$tryReplace(range, replacement)) {
|
|
|
- replaced = 1;
|
|
|
- }
|
|
|
- if (range !== null) {
|
|
|
- this.selection.setSelectionRange(range);
|
|
|
- this.renderer.scrollSelectionIntoView(range.start, range.end);
|
|
|
- }
|
|
|
-
|
|
|
- return replaced;
|
|
|
- };
|
|
|
- this.replaceAll = function(replacement, options) {
|
|
|
- if (options) {
|
|
|
- this.$search.set(options);
|
|
|
- }
|
|
|
-
|
|
|
- var ranges = this.$search.findAll(this.session);
|
|
|
- var replaced = 0;
|
|
|
- if (!ranges.length)
|
|
|
- return replaced;
|
|
|
-
|
|
|
- this.$blockScrolling += 1;
|
|
|
-
|
|
|
- var selection = this.getSelectionRange();
|
|
|
- this.selection.moveTo(0, 0);
|
|
|
-
|
|
|
- for (var i = ranges.length - 1; i >= 0; --i) {
|
|
|
- if(this.$tryReplace(ranges[i], replacement)) {
|
|
|
- replaced++;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- this.selection.setSelectionRange(selection);
|
|
|
- this.$blockScrolling -= 1;
|
|
|
-
|
|
|
- return replaced;
|
|
|
- };
|
|
|
-
|
|
|
- this.$tryReplace = function(range, replacement) {
|
|
|
- var input = this.session.getTextRange(range);
|
|
|
- replacement = this.$search.replace(input, replacement);
|
|
|
- if (replacement !== null) {
|
|
|
- range.end = this.session.replace(range, replacement);
|
|
|
- return range;
|
|
|
- } else {
|
|
|
- return null;
|
|
|
- }
|
|
|
- };
|
|
|
- this.getLastSearchOptions = function() {
|
|
|
- return this.$search.getOptions();
|
|
|
- };
|
|
|
- this.find = function(needle, options, animate) {
|
|
|
- if (!options)
|
|
|
- options = {};
|
|
|
-
|
|
|
- if (typeof needle == "string" || needle instanceof RegExp)
|
|
|
- options.needle = needle;
|
|
|
- else if (typeof needle == "object")
|
|
|
- oop.mixin(options, needle);
|
|
|
-
|
|
|
- var range = this.selection.getRange();
|
|
|
- if (options.needle == null) {
|
|
|
- needle = this.session.getTextRange(range)
|
|
|
- || this.$search.$options.needle;
|
|
|
- if (!needle) {
|
|
|
- range = this.session.getWordRange(range.start.row, range.start.column);
|
|
|
- needle = this.session.getTextRange(range);
|
|
|
- }
|
|
|
- this.$search.set({needle: needle});
|
|
|
- }
|
|
|
-
|
|
|
- this.$search.set(options);
|
|
|
- if (!options.start)
|
|
|
- this.$search.set({start: range});
|
|
|
-
|
|
|
- var newRange = this.$search.find(this.session);
|
|
|
- if (options.preventScroll)
|
|
|
- return newRange;
|
|
|
- if (newRange) {
|
|
|
- this.revealRange(newRange, animate);
|
|
|
- return newRange;
|
|
|
- }
|
|
|
- if (options.backwards)
|
|
|
- range.start = range.end;
|
|
|
- else
|
|
|
- range.end = range.start;
|
|
|
- this.selection.setRange(range);
|
|
|
- };
|
|
|
- this.findNext = function(options, animate) {
|
|
|
- this.find({skipCurrent: true, backwards: false}, options, animate);
|
|
|
- };
|
|
|
- this.findPrevious = function(options, animate) {
|
|
|
- this.find(options, {skipCurrent: true, backwards: true}, animate);
|
|
|
- };
|
|
|
-
|
|
|
- this.revealRange = function(range, animate) {
|
|
|
- this.$blockScrolling += 1;
|
|
|
- this.session.unfold(range);
|
|
|
- this.selection.setSelectionRange(range);
|
|
|
- this.$blockScrolling -= 1;
|
|
|
-
|
|
|
- var scrollTop = this.renderer.scrollTop;
|
|
|
- this.renderer.scrollSelectionIntoView(range.start, range.end, 0.5);
|
|
|
- if (animate !== false)
|
|
|
- this.renderer.animateScrolling(scrollTop);
|
|
|
- };
|
|
|
- this.undo = function() {
|
|
|
- this.$blockScrolling++;
|
|
|
- this.session.getUndoManager().undo();
|
|
|
- this.$blockScrolling--;
|
|
|
- this.renderer.scrollCursorIntoView(null, 0.5);
|
|
|
- };
|
|
|
- this.redo = function() {
|
|
|
- this.$blockScrolling++;
|
|
|
- this.session.getUndoManager().redo();
|
|
|
- this.$blockScrolling--;
|
|
|
- this.renderer.scrollCursorIntoView(null, 0.5);
|
|
|
- };
|
|
|
- this.destroy = function() {
|
|
|
- this.renderer.destroy();
|
|
|
- this._signal("destroy", this);
|
|
|
- if (this.session) {
|
|
|
- this.session.destroy();
|
|
|
- }
|
|
|
- };
|
|
|
- this.setAutoScrollEditorIntoView = function(enable) {
|
|
|
- if (!enable)
|
|
|
- return;
|
|
|
- var rect;
|
|
|
- var self = this;
|
|
|
- var shouldScroll = false;
|
|
|
- if (!this.$scrollAnchor)
|
|
|
- this.$scrollAnchor = document.createElement("div");
|
|
|
- var scrollAnchor = this.$scrollAnchor;
|
|
|
- scrollAnchor.style.cssText = "position:absolute";
|
|
|
- this.container.insertBefore(scrollAnchor, this.container.firstChild);
|
|
|
- var onChangeSelection = this.on("changeSelection", function() {
|
|
|
- shouldScroll = true;
|
|
|
- });
|
|
|
- var onBeforeRender = this.renderer.on("beforeRender", function() {
|
|
|
- if (shouldScroll)
|
|
|
- rect = self.renderer.container.getBoundingClientRect();
|
|
|
- });
|
|
|
- var onAfterRender = this.renderer.on("afterRender", function() {
|
|
|
- if (shouldScroll && rect && (self.isFocused()
|
|
|
- || self.searchBox && self.searchBox.isFocused())
|
|
|
- ) {
|
|
|
- var renderer = self.renderer;
|
|
|
- var pos = renderer.$cursorLayer.$pixelPos;
|
|
|
- var config = renderer.layerConfig;
|
|
|
- var top = pos.top - config.offset;
|
|
|
- if (pos.top >= 0 && top + rect.top < 0) {
|
|
|
- shouldScroll = true;
|
|
|
- } else if (pos.top < config.height &&
|
|
|
- pos.top + rect.top + config.lineHeight > window.innerHeight) {
|
|
|
- shouldScroll = false;
|
|
|
- } else {
|
|
|
- shouldScroll = null;
|
|
|
- }
|
|
|
- if (shouldScroll != null) {
|
|
|
- scrollAnchor.style.top = top + "px";
|
|
|
- scrollAnchor.style.left = pos.left + "px";
|
|
|
- scrollAnchor.style.height = config.lineHeight + "px";
|
|
|
- scrollAnchor.scrollIntoView(shouldScroll);
|
|
|
- }
|
|
|
- shouldScroll = rect = null;
|
|
|
- }
|
|
|
- });
|
|
|
- this.setAutoScrollEditorIntoView = function(enable) {
|
|
|
- if (enable)
|
|
|
- return;
|
|
|
- delete this.setAutoScrollEditorIntoView;
|
|
|
- this.removeEventListener("changeSelection", onChangeSelection);
|
|
|
- this.renderer.removeEventListener("afterRender", onAfterRender);
|
|
|
- this.renderer.removeEventListener("beforeRender", onBeforeRender);
|
|
|
- };
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.$resetCursorStyle = function() {
|
|
|
- var style = this.$cursorStyle || "ace";
|
|
|
- var cursorLayer = this.renderer.$cursorLayer;
|
|
|
- if (!cursorLayer)
|
|
|
- return;
|
|
|
- cursorLayer.setSmoothBlinking(/smooth/.test(style));
|
|
|
- cursorLayer.isBlinking = !this.$readOnly && style != "wide";
|
|
|
- dom.setCssClass(cursorLayer.element, "ace_slim-cursors", /slim/.test(style));
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Editor.prototype);
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-config.defineOptions(Editor.prototype, "editor", {
|
|
|
- selectionStyle: {
|
|
|
- set: function(style) {
|
|
|
- this.onSelectionChange();
|
|
|
- this._signal("changeSelectionStyle", {data: style});
|
|
|
- },
|
|
|
- initialValue: "line"
|
|
|
- },
|
|
|
- highlightActiveLine: {
|
|
|
- set: function() {this.$updateHighlightActiveLine();},
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- highlightSelectedWord: {
|
|
|
- set: function(shouldHighlight) {this.$onSelectionChange();},
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- readOnly: {
|
|
|
- set: function(readOnly) {
|
|
|
- this.$resetCursorStyle();
|
|
|
- },
|
|
|
- initialValue: false
|
|
|
- },
|
|
|
- cursorStyle: {
|
|
|
- set: function(val) { this.$resetCursorStyle(); },
|
|
|
- values: ["ace", "slim", "smooth", "wide"],
|
|
|
- initialValue: "ace"
|
|
|
- },
|
|
|
- mergeUndoDeltas: {
|
|
|
- values: [false, true, "always"],
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- behavioursEnabled: {initialValue: true},
|
|
|
- wrapBehavioursEnabled: {initialValue: true},
|
|
|
- autoScrollEditorIntoView: {
|
|
|
- set: function(val) {this.setAutoScrollEditorIntoView(val)}
|
|
|
- },
|
|
|
-
|
|
|
- hScrollBarAlwaysVisible: "renderer",
|
|
|
- vScrollBarAlwaysVisible: "renderer",
|
|
|
- highlightGutterLine: "renderer",
|
|
|
- animatedScroll: "renderer",
|
|
|
- showInvisibles: "renderer",
|
|
|
- showPrintMargin: "renderer",
|
|
|
- printMarginColumn: "renderer",
|
|
|
- printMargin: "renderer",
|
|
|
- fadeFoldWidgets: "renderer",
|
|
|
- showFoldWidgets: "renderer",
|
|
|
- showLineNumbers: "renderer",
|
|
|
- showGutter: "renderer",
|
|
|
- displayIndentGuides: "renderer",
|
|
|
- fontSize: "renderer",
|
|
|
- fontFamily: "renderer",
|
|
|
- maxLines: "renderer",
|
|
|
- minLines: "renderer",
|
|
|
- scrollPastEnd: "renderer",
|
|
|
- fixedWidthGutter: "renderer",
|
|
|
- theme: "renderer",
|
|
|
-
|
|
|
- scrollSpeed: "$mouseHandler",
|
|
|
- dragDelay: "$mouseHandler",
|
|
|
- dragEnabled: "$mouseHandler",
|
|
|
- focusTimout: "$mouseHandler",
|
|
|
- tooltipFollowsMouse: "$mouseHandler",
|
|
|
-
|
|
|
- firstLineNumber: "session",
|
|
|
- overwrite: "session",
|
|
|
- newLineMode: "session",
|
|
|
- useWorker: "session",
|
|
|
- useSoftTabs: "session",
|
|
|
- tabSize: "session",
|
|
|
- wrap: "session",
|
|
|
- indentedSoftWrap: "session",
|
|
|
- foldStyle: "session",
|
|
|
- mode: "session"
|
|
|
-});
|
|
|
-
|
|
|
-exports.Editor = Editor;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/undomanager",["require","exports","module"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-var UndoManager = function() {
|
|
|
- this.reset();
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.execute = function(options) {
|
|
|
- var deltaSets = options.args[0];
|
|
|
- this.$doc = options.args[1];
|
|
|
- if (options.merge && this.hasUndo()){
|
|
|
- this.dirtyCounter--;
|
|
|
- deltaSets = this.$undoStack.pop().concat(deltaSets);
|
|
|
- }
|
|
|
- this.$undoStack.push(deltaSets);
|
|
|
- this.$redoStack = [];
|
|
|
- if (this.dirtyCounter < 0) {
|
|
|
- this.dirtyCounter = NaN;
|
|
|
- }
|
|
|
- this.dirtyCounter++;
|
|
|
- };
|
|
|
- this.undo = function(dontSelect) {
|
|
|
- var deltaSets = this.$undoStack.pop();
|
|
|
- var undoSelectionRange = null;
|
|
|
- if (deltaSets) {
|
|
|
- undoSelectionRange = this.$doc.undoChanges(this.$deserializeDeltas(deltaSets), dontSelect);
|
|
|
- this.$redoStack.push(deltaSets);
|
|
|
- this.dirtyCounter--;
|
|
|
- }
|
|
|
-
|
|
|
- return undoSelectionRange;
|
|
|
- };
|
|
|
- this.redo = function(dontSelect) {
|
|
|
- var deltaSets = this.$redoStack.pop();
|
|
|
- var redoSelectionRange = null;
|
|
|
- if (deltaSets) {
|
|
|
- redoSelectionRange =
|
|
|
- this.$doc.redoChanges(this.$deserializeDeltas(deltaSets), dontSelect);
|
|
|
- this.$undoStack.push(deltaSets);
|
|
|
- this.dirtyCounter++;
|
|
|
- }
|
|
|
- return redoSelectionRange;
|
|
|
- };
|
|
|
- this.reset = function() {
|
|
|
- this.$undoStack = [];
|
|
|
- this.$redoStack = [];
|
|
|
- this.dirtyCounter = 0;
|
|
|
- };
|
|
|
- this.hasUndo = function() {
|
|
|
- return this.$undoStack.length > 0;
|
|
|
- };
|
|
|
- this.hasRedo = function() {
|
|
|
- return this.$redoStack.length > 0;
|
|
|
- };
|
|
|
- this.markClean = function() {
|
|
|
- this.dirtyCounter = 0;
|
|
|
- };
|
|
|
- this.isClean = function() {
|
|
|
- return this.dirtyCounter === 0;
|
|
|
- };
|
|
|
- this.$serializeDeltas = function(deltaSets) {
|
|
|
- return cloneDeltaSetsObj(deltaSets, $serializeDelta);
|
|
|
- };
|
|
|
- this.$deserializeDeltas = function(deltaSets) {
|
|
|
- return cloneDeltaSetsObj(deltaSets, $deserializeDelta);
|
|
|
- };
|
|
|
-
|
|
|
- function $serializeDelta(delta){
|
|
|
- return {
|
|
|
- action: delta.action,
|
|
|
- start: delta.start,
|
|
|
- end: delta.end,
|
|
|
- lines: delta.lines.length == 1 ? null : delta.lines,
|
|
|
- text: delta.lines.length == 1 ? delta.lines[0] : null,
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- function $deserializeDelta(delta) {
|
|
|
- return {
|
|
|
- action: delta.action,
|
|
|
- start: delta.start,
|
|
|
- end: delta.end,
|
|
|
- lines: delta.lines || [delta.text]
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- function cloneDeltaSetsObj(deltaSets_old, fnGetModifiedDelta) {
|
|
|
- var deltaSets_new = new Array(deltaSets_old.length);
|
|
|
- for (var i = 0; i < deltaSets_old.length; i++) {
|
|
|
- var deltaSet_old = deltaSets_old[i];
|
|
|
- var deltaSet_new = { group: deltaSet_old.group, deltas: new Array(deltaSet_old.length)};
|
|
|
-
|
|
|
- for (var j = 0; j < deltaSet_old.deltas.length; j++) {
|
|
|
- var delta_old = deltaSet_old.deltas[j];
|
|
|
- deltaSet_new.deltas[j] = fnGetModifiedDelta(delta_old);
|
|
|
- }
|
|
|
-
|
|
|
- deltaSets_new[i] = deltaSet_new;
|
|
|
- }
|
|
|
- return deltaSets_new;
|
|
|
- }
|
|
|
-
|
|
|
-}).call(UndoManager.prototype);
|
|
|
-
|
|
|
-exports.UndoManager = UndoManager;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/layer/gutter",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var EventEmitter = require("../lib/event_emitter").EventEmitter;
|
|
|
-
|
|
|
-var Gutter = function(parentEl) {
|
|
|
- this.element = dom.createElement("div");
|
|
|
- this.element.className = "ace_layer ace_gutter-layer";
|
|
|
- parentEl.appendChild(this.element);
|
|
|
- this.setShowFoldWidgets(this.$showFoldWidgets);
|
|
|
-
|
|
|
- this.gutterWidth = 0;
|
|
|
-
|
|
|
- this.$annotations = [];
|
|
|
- this.$updateAnnotations = this.$updateAnnotations.bind(this);
|
|
|
-
|
|
|
- this.$cells = [];
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.setSession = function(session) {
|
|
|
- if (this.session)
|
|
|
- this.session.removeEventListener("change", this.$updateAnnotations);
|
|
|
- this.session = session;
|
|
|
- if (session)
|
|
|
- session.on("change", this.$updateAnnotations);
|
|
|
- };
|
|
|
-
|
|
|
- this.addGutterDecoration = function(row, className){
|
|
|
- if (window.console)
|
|
|
- console.warn && console.warn("deprecated use session.addGutterDecoration");
|
|
|
- this.session.addGutterDecoration(row, className);
|
|
|
- };
|
|
|
-
|
|
|
- this.removeGutterDecoration = function(row, className){
|
|
|
- if (window.console)
|
|
|
- console.warn && console.warn("deprecated use session.removeGutterDecoration");
|
|
|
- this.session.removeGutterDecoration(row, className);
|
|
|
- };
|
|
|
-
|
|
|
- this.setAnnotations = function(annotations) {
|
|
|
- this.$annotations = [];
|
|
|
- for (var i = 0; i < annotations.length; i++) {
|
|
|
- var annotation = annotations[i];
|
|
|
- var row = annotation.row;
|
|
|
- var rowInfo = this.$annotations[row];
|
|
|
- if (!rowInfo)
|
|
|
- rowInfo = this.$annotations[row] = {text: []};
|
|
|
-
|
|
|
- var annoText = annotation.text;
|
|
|
- annoText = annoText ? lang.escapeHTML(annoText) : annotation.html || "";
|
|
|
-
|
|
|
- if (rowInfo.text.indexOf(annoText) === -1)
|
|
|
- rowInfo.text.push(annoText);
|
|
|
-
|
|
|
- var type = annotation.type;
|
|
|
- if (type == "error")
|
|
|
- rowInfo.className = " ace_error";
|
|
|
- else if (type == "warning" && rowInfo.className != " ace_error")
|
|
|
- rowInfo.className = " ace_warning";
|
|
|
- else if (type == "info" && (!rowInfo.className))
|
|
|
- rowInfo.className = " ace_info";
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateAnnotations = function (delta) {
|
|
|
- if (!this.$annotations.length)
|
|
|
- return;
|
|
|
- var firstRow = delta.start.row;
|
|
|
- var len = delta.end.row - firstRow;
|
|
|
- if (len === 0) {
|
|
|
- } else if (delta.action == 'remove') {
|
|
|
- this.$annotations.splice(firstRow, len + 1, null);
|
|
|
- } else {
|
|
|
- var args = new Array(len + 1);
|
|
|
- args.unshift(firstRow, 1);
|
|
|
- this.$annotations.splice.apply(this.$annotations, args);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.update = function(config) {
|
|
|
- var session = this.session;
|
|
|
- var firstRow = config.firstRow;
|
|
|
- var lastRow = Math.min(config.lastRow + config.gutterOffset, // needed to compensate for hor scollbar
|
|
|
- session.getLength() - 1);
|
|
|
- var fold = session.getNextFoldLine(firstRow);
|
|
|
- var foldStart = fold ? fold.start.row : Infinity;
|
|
|
- var foldWidgets = this.$showFoldWidgets && session.foldWidgets;
|
|
|
- var breakpoints = session.$breakpoints;
|
|
|
- var decorations = session.$decorations;
|
|
|
- var firstLineNumber = session.$firstLineNumber;
|
|
|
- var lastLineNumber = 0;
|
|
|
-
|
|
|
- var gutterRenderer = session.gutterRenderer || this.$renderer;
|
|
|
-
|
|
|
- var cell = null;
|
|
|
- var index = -1;
|
|
|
- var row = firstRow;
|
|
|
- while (true) {
|
|
|
- if (row > foldStart) {
|
|
|
- row = fold.end.row + 1;
|
|
|
- fold = session.getNextFoldLine(row, fold);
|
|
|
- foldStart = fold ? fold.start.row : Infinity;
|
|
|
- }
|
|
|
- if (row > lastRow) {
|
|
|
- while (this.$cells.length > index + 1) {
|
|
|
- cell = this.$cells.pop();
|
|
|
- this.element.removeChild(cell.element);
|
|
|
- }
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- cell = this.$cells[++index];
|
|
|
- if (!cell) {
|
|
|
- cell = {element: null, textNode: null, foldWidget: null};
|
|
|
- cell.element = dom.createElement("div");
|
|
|
- cell.textNode = document.createTextNode('');
|
|
|
- cell.element.appendChild(cell.textNode);
|
|
|
- this.element.appendChild(cell.element);
|
|
|
- this.$cells[index] = cell;
|
|
|
- }
|
|
|
-
|
|
|
- var className = "ace_gutter-cell ";
|
|
|
- if (breakpoints[row])
|
|
|
- className += breakpoints[row];
|
|
|
- if (decorations[row])
|
|
|
- className += decorations[row];
|
|
|
- if (this.$annotations[row])
|
|
|
- className += this.$annotations[row].className;
|
|
|
- if (cell.element.className != className)
|
|
|
- cell.element.className = className;
|
|
|
-
|
|
|
- var height = session.getRowLength(row) * config.lineHeight + "px";
|
|
|
- if (height != cell.element.style.height)
|
|
|
- cell.element.style.height = height;
|
|
|
-
|
|
|
- if (foldWidgets) {
|
|
|
- var c = foldWidgets[row];
|
|
|
- if (c == null)
|
|
|
- c = foldWidgets[row] = session.getFoldWidget(row);
|
|
|
- }
|
|
|
-
|
|
|
- if (c) {
|
|
|
- if (!cell.foldWidget) {
|
|
|
- cell.foldWidget = dom.createElement("span");
|
|
|
- cell.element.appendChild(cell.foldWidget);
|
|
|
- }
|
|
|
- var className = "ace_fold-widget ace_" + c;
|
|
|
- if (c == "start" && row == foldStart && row < fold.end.row)
|
|
|
- className += " ace_closed";
|
|
|
- else
|
|
|
- className += " ace_open";
|
|
|
- if (cell.foldWidget.className != className)
|
|
|
- cell.foldWidget.className = className;
|
|
|
-
|
|
|
- var height = config.lineHeight + "px";
|
|
|
- if (cell.foldWidget.style.height != height)
|
|
|
- cell.foldWidget.style.height = height;
|
|
|
- } else {
|
|
|
- if (cell.foldWidget) {
|
|
|
- cell.element.removeChild(cell.foldWidget);
|
|
|
- cell.foldWidget = null;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- var text = lastLineNumber = gutterRenderer
|
|
|
- ? gutterRenderer.getText(session, row)
|
|
|
- : row + firstLineNumber;
|
|
|
- if (text != cell.textNode.data)
|
|
|
- cell.textNode.data = text;
|
|
|
-
|
|
|
- row++;
|
|
|
- }
|
|
|
-
|
|
|
- this.element.style.height = config.minHeight + "px";
|
|
|
-
|
|
|
- if (this.$fixedWidth || session.$useWrapMode)
|
|
|
- lastLineNumber = session.getLength() + firstLineNumber;
|
|
|
-
|
|
|
- var gutterWidth = gutterRenderer
|
|
|
- ? gutterRenderer.getWidth(session, lastLineNumber, config)
|
|
|
- : lastLineNumber.toString().length * config.characterWidth;
|
|
|
-
|
|
|
- var padding = this.$padding || this.$computePadding();
|
|
|
- gutterWidth += padding.left + padding.right;
|
|
|
- if (gutterWidth !== this.gutterWidth && !isNaN(gutterWidth)) {
|
|
|
- this.gutterWidth = gutterWidth;
|
|
|
- this.element.style.width = Math.ceil(this.gutterWidth) + "px";
|
|
|
- this._emit("changeGutterWidth", gutterWidth);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$fixedWidth = false;
|
|
|
-
|
|
|
- this.$showLineNumbers = true;
|
|
|
- this.$renderer = "";
|
|
|
- this.setShowLineNumbers = function(show) {
|
|
|
- this.$renderer = !show && {
|
|
|
- getWidth: function() {return ""},
|
|
|
- getText: function() {return ""}
|
|
|
- };
|
|
|
- };
|
|
|
-
|
|
|
- this.getShowLineNumbers = function() {
|
|
|
- return this.$showLineNumbers;
|
|
|
- };
|
|
|
-
|
|
|
- this.$showFoldWidgets = true;
|
|
|
- this.setShowFoldWidgets = function(show) {
|
|
|
- if (show)
|
|
|
- dom.addCssClass(this.element, "ace_folding-enabled");
|
|
|
- else
|
|
|
- dom.removeCssClass(this.element, "ace_folding-enabled");
|
|
|
-
|
|
|
- this.$showFoldWidgets = show;
|
|
|
- this.$padding = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.getShowFoldWidgets = function() {
|
|
|
- return this.$showFoldWidgets;
|
|
|
- };
|
|
|
-
|
|
|
- this.$computePadding = function() {
|
|
|
- if (!this.element.firstChild)
|
|
|
- return {left: 0, right: 0};
|
|
|
- var style = dom.computedStyle(this.element.firstChild);
|
|
|
- this.$padding = {};
|
|
|
- this.$padding.left = parseInt(style.paddingLeft) + 1 || 0;
|
|
|
- this.$padding.right = parseInt(style.paddingRight) || 0;
|
|
|
- return this.$padding;
|
|
|
- };
|
|
|
-
|
|
|
- this.getRegion = function(point) {
|
|
|
- var padding = this.$padding || this.$computePadding();
|
|
|
- var rect = this.element.getBoundingClientRect();
|
|
|
- if (point.x < padding.left + rect.left)
|
|
|
- return "markers";
|
|
|
- if (this.$showFoldWidgets && point.x > rect.right - padding.right)
|
|
|
- return "foldWidgets";
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Gutter.prototype);
|
|
|
-
|
|
|
-exports.Gutter = Gutter;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Range = require("../range").Range;
|
|
|
-var dom = require("../lib/dom");
|
|
|
-
|
|
|
-var Marker = function(parentEl) {
|
|
|
- this.element = dom.createElement("div");
|
|
|
- this.element.className = "ace_layer ace_marker-layer";
|
|
|
- parentEl.appendChild(this.element);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.$padding = 0;
|
|
|
-
|
|
|
- this.setPadding = function(padding) {
|
|
|
- this.$padding = padding;
|
|
|
- };
|
|
|
- this.setSession = function(session) {
|
|
|
- this.session = session;
|
|
|
- };
|
|
|
-
|
|
|
- this.setMarkers = function(markers) {
|
|
|
- this.markers = markers;
|
|
|
- };
|
|
|
-
|
|
|
- this.update = function(config) {
|
|
|
- var config = config || this.config;
|
|
|
- if (!config)
|
|
|
- return;
|
|
|
-
|
|
|
- this.config = config;
|
|
|
-
|
|
|
-
|
|
|
- var html = [];
|
|
|
- for (var key in this.markers) {
|
|
|
- var marker = this.markers[key];
|
|
|
-
|
|
|
- if (!marker.range) {
|
|
|
- marker.update(html, this, this.session, config);
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- var range = marker.range.clipRows(config.firstRow, config.lastRow);
|
|
|
- if (range.isEmpty()) continue;
|
|
|
-
|
|
|
- range = range.toScreenRange(this.session);
|
|
|
- if (marker.renderer) {
|
|
|
- var top = this.$getTop(range.start.row, config);
|
|
|
- var left = this.$padding + range.start.column * config.characterWidth;
|
|
|
- marker.renderer(html, range, left, top, config);
|
|
|
- } else if (marker.type == "fullLine") {
|
|
|
- this.drawFullLineMarker(html, range, marker.clazz, config);
|
|
|
- } else if (marker.type == "screenLine") {
|
|
|
- this.drawScreenLineMarker(html, range, marker.clazz, config);
|
|
|
- } else if (range.isMultiLine()) {
|
|
|
- if (marker.type == "text")
|
|
|
- this.drawTextMarker(html, range, marker.clazz, config);
|
|
|
- else
|
|
|
- this.drawMultiLineMarker(html, range, marker.clazz, config);
|
|
|
- } else {
|
|
|
- this.drawSingleLineMarker(html, range, marker.clazz + " ace_start" + " ace_br15", config);
|
|
|
- }
|
|
|
- }
|
|
|
- this.element.innerHTML = html.join("");
|
|
|
- };
|
|
|
-
|
|
|
- this.$getTop = function(row, layerConfig) {
|
|
|
- return (row - layerConfig.firstRowScreen) * layerConfig.lineHeight;
|
|
|
- };
|
|
|
-
|
|
|
- function getBorderClass(tl, tr, br, bl) {
|
|
|
- return (tl ? 1 : 0) | (tr ? 2 : 0) | (br ? 4 : 0) | (bl ? 8 : 0);
|
|
|
- }
|
|
|
- this.drawTextMarker = function(stringBuilder, range, clazz, layerConfig, extraStyle) {
|
|
|
- var session = this.session;
|
|
|
- var start = range.start.row;
|
|
|
- var end = range.end.row;
|
|
|
- var row = start;
|
|
|
- var prev = 0;
|
|
|
- var curr = 0;
|
|
|
- var next = session.getScreenLastRowColumn(row);
|
|
|
- var lineRange = new Range(row, range.start.column, row, curr);
|
|
|
- for (; row <= end; row++) {
|
|
|
- lineRange.start.row = lineRange.end.row = row;
|
|
|
- lineRange.start.column = row == start ? range.start.column : session.getRowWrapIndent(row);
|
|
|
- lineRange.end.column = next;
|
|
|
- prev = curr;
|
|
|
- curr = next;
|
|
|
- next = row + 1 < end ? session.getScreenLastRowColumn(row + 1) : row == end ? 0 : range.end.column;
|
|
|
- this.drawSingleLineMarker(stringBuilder, lineRange,
|
|
|
- clazz + (row == start ? " ace_start" : "") + " ace_br"
|
|
|
- + getBorderClass(row == start || row == start + 1 && range.start.column, prev < curr, curr > next, row == end),
|
|
|
- layerConfig, row == end ? 0 : 1, extraStyle);
|
|
|
- }
|
|
|
- };
|
|
|
- this.drawMultiLineMarker = function(stringBuilder, range, clazz, config, extraStyle) {
|
|
|
- var padding = this.$padding;
|
|
|
- var height = config.lineHeight;
|
|
|
- var top = this.$getTop(range.start.row, config);
|
|
|
- var left = padding + range.start.column * config.characterWidth;
|
|
|
- extraStyle = extraStyle || "";
|
|
|
-
|
|
|
- stringBuilder.push(
|
|
|
- "<div class='", clazz, " ace_br1 ace_start' style='",
|
|
|
- "height:", height, "px;",
|
|
|
- "right:0;",
|
|
|
- "top:", top, "px;",
|
|
|
- "left:", left, "px;", extraStyle, "'></div>"
|
|
|
- );
|
|
|
- top = this.$getTop(range.end.row, config);
|
|
|
- var width = range.end.column * config.characterWidth;
|
|
|
-
|
|
|
- stringBuilder.push(
|
|
|
- "<div class='", clazz, " ace_br12' style='",
|
|
|
- "height:", height, "px;",
|
|
|
- "width:", width, "px;",
|
|
|
- "top:", top, "px;",
|
|
|
- "left:", padding, "px;", extraStyle, "'></div>"
|
|
|
- );
|
|
|
- height = (range.end.row - range.start.row - 1) * config.lineHeight;
|
|
|
- if (height <= 0)
|
|
|
- return;
|
|
|
- top = this.$getTop(range.start.row + 1, config);
|
|
|
-
|
|
|
- var radiusClass = (range.start.column ? 1 : 0) | (range.end.column ? 0 : 8);
|
|
|
-
|
|
|
- stringBuilder.push(
|
|
|
- "<div class='", clazz, (radiusClass ? " ace_br" + radiusClass : ""), "' style='",
|
|
|
- "height:", height, "px;",
|
|
|
- "right:0;",
|
|
|
- "top:", top, "px;",
|
|
|
- "left:", padding, "px;", extraStyle, "'></div>"
|
|
|
- );
|
|
|
- };
|
|
|
- this.drawSingleLineMarker = function(stringBuilder, range, clazz, config, extraLength, extraStyle) {
|
|
|
- var height = config.lineHeight;
|
|
|
- var width = (range.end.column + (extraLength || 0) - range.start.column) * config.characterWidth;
|
|
|
-
|
|
|
- var top = this.$getTop(range.start.row, config);
|
|
|
- var left = this.$padding + range.start.column * config.characterWidth;
|
|
|
-
|
|
|
- stringBuilder.push(
|
|
|
- "<div class='", clazz, "' style='",
|
|
|
- "height:", height, "px;",
|
|
|
- "width:", width, "px;",
|
|
|
- "top:", top, "px;",
|
|
|
- "left:", left, "px;", extraStyle || "", "'></div>"
|
|
|
- );
|
|
|
- };
|
|
|
-
|
|
|
- this.drawFullLineMarker = function(stringBuilder, range, clazz, config, extraStyle) {
|
|
|
- var top = this.$getTop(range.start.row, config);
|
|
|
- var height = config.lineHeight;
|
|
|
- if (range.start.row != range.end.row)
|
|
|
- height += this.$getTop(range.end.row, config) - top;
|
|
|
-
|
|
|
- stringBuilder.push(
|
|
|
- "<div class='", clazz, "' style='",
|
|
|
- "height:", height, "px;",
|
|
|
- "top:", top, "px;",
|
|
|
- "left:0;right:0;", extraStyle || "", "'></div>"
|
|
|
- );
|
|
|
- };
|
|
|
-
|
|
|
- this.drawScreenLineMarker = function(stringBuilder, range, clazz, config, extraStyle) {
|
|
|
- var top = this.$getTop(range.start.row, config);
|
|
|
- var height = config.lineHeight;
|
|
|
-
|
|
|
- stringBuilder.push(
|
|
|
- "<div class='", clazz, "' style='",
|
|
|
- "height:", height, "px;",
|
|
|
- "top:", top, "px;",
|
|
|
- "left:0;right:0;", extraStyle || "", "'></div>"
|
|
|
- );
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Marker.prototype);
|
|
|
-
|
|
|
-exports.Marker = Marker;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-var EventEmitter = require("../lib/event_emitter").EventEmitter;
|
|
|
-
|
|
|
-var Text = function(parentEl) {
|
|
|
- this.element = dom.createElement("div");
|
|
|
- this.element.className = "ace_layer ace_text-layer";
|
|
|
- parentEl.appendChild(this.element);
|
|
|
- this.$updateEolChar = this.$updateEolChar.bind(this);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.EOF_CHAR = "\xB6";
|
|
|
- this.EOL_CHAR_LF = "\xAC";
|
|
|
- this.EOL_CHAR_CRLF = "\xa4";
|
|
|
- this.EOL_CHAR = this.EOL_CHAR_LF;
|
|
|
- this.TAB_CHAR = "\u2014"; //"\u21E5";
|
|
|
- this.SPACE_CHAR = "\xB7";
|
|
|
- this.$padding = 0;
|
|
|
-
|
|
|
- this.$updateEolChar = function() {
|
|
|
- var EOL_CHAR = this.session.doc.getNewLineCharacter() == "\n"
|
|
|
- ? this.EOL_CHAR_LF
|
|
|
- : this.EOL_CHAR_CRLF;
|
|
|
- if (this.EOL_CHAR != EOL_CHAR) {
|
|
|
- this.EOL_CHAR = EOL_CHAR;
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- this.setPadding = function(padding) {
|
|
|
- this.$padding = padding;
|
|
|
- this.element.style.padding = "0 " + padding + "px";
|
|
|
- };
|
|
|
-
|
|
|
- this.getLineHeight = function() {
|
|
|
- return this.$fontMetrics.$characterSize.height || 0;
|
|
|
- };
|
|
|
-
|
|
|
- this.getCharacterWidth = function() {
|
|
|
- return this.$fontMetrics.$characterSize.width || 0;
|
|
|
- };
|
|
|
-
|
|
|
- this.$setFontMetrics = function(measure) {
|
|
|
- this.$fontMetrics = measure;
|
|
|
- this.$fontMetrics.on("changeCharacterSize", function(e) {
|
|
|
- this._signal("changeCharacterSize", e);
|
|
|
- }.bind(this));
|
|
|
- this.$pollSizeChanges();
|
|
|
- }
|
|
|
-
|
|
|
- this.checkForSizeChanges = function() {
|
|
|
- this.$fontMetrics.checkForSizeChanges();
|
|
|
- };
|
|
|
- this.$pollSizeChanges = function() {
|
|
|
- return this.$pollSizeChangesTimer = this.$fontMetrics.$pollSizeChanges();
|
|
|
- };
|
|
|
- this.setSession = function(session) {
|
|
|
- this.session = session;
|
|
|
- if (session)
|
|
|
- this.$computeTabString();
|
|
|
- };
|
|
|
-
|
|
|
- this.showInvisibles = false;
|
|
|
- this.setShowInvisibles = function(showInvisibles) {
|
|
|
- if (this.showInvisibles == showInvisibles)
|
|
|
- return false;
|
|
|
-
|
|
|
- this.showInvisibles = showInvisibles;
|
|
|
- this.$computeTabString();
|
|
|
- return true;
|
|
|
- };
|
|
|
-
|
|
|
- this.displayIndentGuides = true;
|
|
|
- this.setDisplayIndentGuides = function(display) {
|
|
|
- if (this.displayIndentGuides == display)
|
|
|
- return false;
|
|
|
-
|
|
|
- this.displayIndentGuides = display;
|
|
|
- this.$computeTabString();
|
|
|
- return true;
|
|
|
- };
|
|
|
-
|
|
|
- this.$tabStrings = [];
|
|
|
- this.onChangeTabSize =
|
|
|
- this.$computeTabString = function() {
|
|
|
- var tabSize = this.session.getTabSize();
|
|
|
- this.tabSize = tabSize;
|
|
|
- var tabStr = this.$tabStrings = [0];
|
|
|
- for (var i = 1; i < tabSize + 1; i++) {
|
|
|
- if (this.showInvisibles) {
|
|
|
- tabStr.push("<span class='ace_invisible ace_invisible_tab'>"
|
|
|
- + lang.stringRepeat(this.TAB_CHAR, i)
|
|
|
- + "</span>");
|
|
|
- } else {
|
|
|
- tabStr.push(lang.stringRepeat(" ", i));
|
|
|
- }
|
|
|
- }
|
|
|
- if (this.displayIndentGuides) {
|
|
|
- this.$indentGuideRe = /\s\S| \t|\t |\s$/;
|
|
|
- var className = "ace_indent-guide";
|
|
|
- var spaceClass = "";
|
|
|
- var tabClass = "";
|
|
|
- if (this.showInvisibles) {
|
|
|
- className += " ace_invisible";
|
|
|
- spaceClass = " ace_invisible_space";
|
|
|
- tabClass = " ace_invisible_tab";
|
|
|
- var spaceContent = lang.stringRepeat(this.SPACE_CHAR, this.tabSize);
|
|
|
- var tabContent = lang.stringRepeat(this.TAB_CHAR, this.tabSize);
|
|
|
- } else{
|
|
|
- var spaceContent = lang.stringRepeat(" ", this.tabSize);
|
|
|
- var tabContent = spaceContent;
|
|
|
- }
|
|
|
-
|
|
|
- this.$tabStrings[" "] = "<span class='" + className + spaceClass + "'>" + spaceContent + "</span>";
|
|
|
- this.$tabStrings["\t"] = "<span class='" + className + tabClass + "'>" + tabContent + "</span>";
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.updateLines = function(config, firstRow, lastRow) {
|
|
|
- if (this.config.lastRow != config.lastRow ||
|
|
|
- this.config.firstRow != config.firstRow) {
|
|
|
- this.scrollLines(config);
|
|
|
- }
|
|
|
- this.config = config;
|
|
|
-
|
|
|
- var first = Math.max(firstRow, config.firstRow);
|
|
|
- var last = Math.min(lastRow, config.lastRow);
|
|
|
-
|
|
|
- var lineElements = this.element.childNodes;
|
|
|
- var lineElementsIdx = 0;
|
|
|
-
|
|
|
- for (var row = config.firstRow; row < first; row++) {
|
|
|
- var foldLine = this.session.getFoldLine(row);
|
|
|
- if (foldLine) {
|
|
|
- if (foldLine.containsRow(first)) {
|
|
|
- first = foldLine.start.row;
|
|
|
- break;
|
|
|
- } else {
|
|
|
- row = foldLine.end.row;
|
|
|
- }
|
|
|
- }
|
|
|
- lineElementsIdx ++;
|
|
|
- }
|
|
|
-
|
|
|
- var row = first;
|
|
|
- var foldLine = this.session.getNextFoldLine(row);
|
|
|
- var foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
-
|
|
|
- while (true) {
|
|
|
- if (row > foldStart) {
|
|
|
- row = foldLine.end.row+1;
|
|
|
- foldLine = this.session.getNextFoldLine(row, foldLine);
|
|
|
- foldStart = foldLine ? foldLine.start.row :Infinity;
|
|
|
- }
|
|
|
- if (row > last)
|
|
|
- break;
|
|
|
-
|
|
|
- var lineElement = lineElements[lineElementsIdx++];
|
|
|
- if (lineElement) {
|
|
|
- var html = [];
|
|
|
- this.$renderLine(
|
|
|
- html, row, !this.$useLineGroups(), row == foldStart ? foldLine : false
|
|
|
- );
|
|
|
- lineElement.style.height = config.lineHeight * this.session.getRowLength(row) + "px";
|
|
|
- lineElement.innerHTML = html.join("");
|
|
|
- }
|
|
|
- row++;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.scrollLines = function(config) {
|
|
|
- var oldConfig = this.config;
|
|
|
- this.config = config;
|
|
|
-
|
|
|
- if (!oldConfig || oldConfig.lastRow < config.firstRow)
|
|
|
- return this.update(config);
|
|
|
-
|
|
|
- if (config.lastRow < oldConfig.firstRow)
|
|
|
- return this.update(config);
|
|
|
-
|
|
|
- var el = this.element;
|
|
|
- if (oldConfig.firstRow < config.firstRow)
|
|
|
- for (var row=this.session.getFoldedRowCount(oldConfig.firstRow, config.firstRow - 1); row>0; row--)
|
|
|
- el.removeChild(el.firstChild);
|
|
|
-
|
|
|
- if (oldConfig.lastRow > config.lastRow)
|
|
|
- for (var row=this.session.getFoldedRowCount(config.lastRow + 1, oldConfig.lastRow); row>0; row--)
|
|
|
- el.removeChild(el.lastChild);
|
|
|
-
|
|
|
- if (config.firstRow < oldConfig.firstRow) {
|
|
|
- var fragment = this.$renderLinesFragment(config, config.firstRow, oldConfig.firstRow - 1);
|
|
|
- if (el.firstChild)
|
|
|
- el.insertBefore(fragment, el.firstChild);
|
|
|
- else
|
|
|
- el.appendChild(fragment);
|
|
|
- }
|
|
|
-
|
|
|
- if (config.lastRow > oldConfig.lastRow) {
|
|
|
- var fragment = this.$renderLinesFragment(config, oldConfig.lastRow + 1, config.lastRow);
|
|
|
- el.appendChild(fragment);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$renderLinesFragment = function(config, firstRow, lastRow) {
|
|
|
- var fragment = this.element.ownerDocument.createDocumentFragment();
|
|
|
- var row = firstRow;
|
|
|
- var foldLine = this.session.getNextFoldLine(row);
|
|
|
- var foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
-
|
|
|
- while (true) {
|
|
|
- if (row > foldStart) {
|
|
|
- row = foldLine.end.row+1;
|
|
|
- foldLine = this.session.getNextFoldLine(row, foldLine);
|
|
|
- foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
- }
|
|
|
- if (row > lastRow)
|
|
|
- break;
|
|
|
-
|
|
|
- var container = dom.createElement("div");
|
|
|
-
|
|
|
- var html = [];
|
|
|
- this.$renderLine(html, row, false, row == foldStart ? foldLine : false);
|
|
|
- container.innerHTML = html.join("");
|
|
|
- if (this.$useLineGroups()) {
|
|
|
- container.className = 'ace_line_group';
|
|
|
- fragment.appendChild(container);
|
|
|
- container.style.height = config.lineHeight * this.session.getRowLength(row) + "px";
|
|
|
-
|
|
|
- } else {
|
|
|
- while(container.firstChild)
|
|
|
- fragment.appendChild(container.firstChild);
|
|
|
- }
|
|
|
-
|
|
|
- row++;
|
|
|
- }
|
|
|
- return fragment;
|
|
|
- };
|
|
|
-
|
|
|
- this.update = function(config) {
|
|
|
- this.config = config;
|
|
|
-
|
|
|
- var html = [];
|
|
|
- var firstRow = config.firstRow, lastRow = config.lastRow;
|
|
|
-
|
|
|
- var row = firstRow;
|
|
|
- var foldLine = this.session.getNextFoldLine(row);
|
|
|
- var foldStart = foldLine ? foldLine.start.row : Infinity;
|
|
|
-
|
|
|
- while (true) {
|
|
|
- if (row > foldStart) {
|
|
|
- row = foldLine.end.row+1;
|
|
|
- foldLine = this.session.getNextFoldLine(row, foldLine);
|
|
|
- foldStart = foldLine ? foldLine.start.row :Infinity;
|
|
|
- }
|
|
|
- if (row > lastRow)
|
|
|
- break;
|
|
|
-
|
|
|
- if (this.$useLineGroups())
|
|
|
- html.push("<div class='ace_line_group' style='height:", config.lineHeight*this.session.getRowLength(row), "px'>")
|
|
|
-
|
|
|
- this.$renderLine(html, row, false, row == foldStart ? foldLine : false);
|
|
|
-
|
|
|
- if (this.$useLineGroups())
|
|
|
- html.push("</div>"); // end the line group
|
|
|
-
|
|
|
- row++;
|
|
|
- }
|
|
|
- this.element.innerHTML = html.join("");
|
|
|
- };
|
|
|
-
|
|
|
- this.$textToken = {
|
|
|
- "text": true,
|
|
|
- "rparen": true,
|
|
|
- "lparen": true
|
|
|
- };
|
|
|
-
|
|
|
- this.$renderToken = function(stringBuilder, screenColumn, token, value) {
|
|
|
- var self = this;
|
|
|
- var replaceReg = /\t|&|<|>|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\u3000\uFEFF])|[\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3000-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]/g;
|
|
|
- var replaceFunc = function(c, a, b, tabIdx, idx4) {
|
|
|
- if (a) {
|
|
|
- return self.showInvisibles
|
|
|
- ? "<span class='ace_invisible ace_invisible_space'>" + lang.stringRepeat(self.SPACE_CHAR, c.length) + "</span>"
|
|
|
- : c;
|
|
|
- } else if (c == "&") {
|
|
|
- return "&";
|
|
|
- } else if (c == "<") {
|
|
|
- return "<";
|
|
|
- } else if (c == ">") {
|
|
|
- return ">";
|
|
|
- } else if (c == "\t") {
|
|
|
- var tabSize = self.session.getScreenTabSize(screenColumn + tabIdx);
|
|
|
- screenColumn += tabSize - 1;
|
|
|
- return self.$tabStrings[tabSize];
|
|
|
- } else if (c == "\u3000") {
|
|
|
- var classToUse = self.showInvisibles ? "ace_cjk ace_invisible ace_invisible_space" : "ace_cjk";
|
|
|
- var space = self.showInvisibles ? self.SPACE_CHAR : "";
|
|
|
- screenColumn += 1;
|
|
|
- return "<span class='" + classToUse + "' style='width:" +
|
|
|
- (self.config.characterWidth * 2) +
|
|
|
- "px'>" + space + "</span>";
|
|
|
- } else if (b) {
|
|
|
- return "<span class='ace_invisible ace_invisible_space ace_invalid'>" + self.SPACE_CHAR + "</span>";
|
|
|
- } else {
|
|
|
- screenColumn += 1;
|
|
|
- return "<span class='ace_cjk' style='width:" +
|
|
|
- (self.config.characterWidth * 2) +
|
|
|
- "px'>" + c + "</span>";
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- var output = value.replace(replaceReg, replaceFunc);
|
|
|
-
|
|
|
- if (!this.$textToken[token.type]) {
|
|
|
- var classes = "ace_" + token.type.replace(/\./g, " ace_");
|
|
|
- var style = "";
|
|
|
- if (token.type == "fold")
|
|
|
- style = " style='width:" + (token.value.length * this.config.characterWidth) + "px;' ";
|
|
|
- stringBuilder.push("<span class='", classes, "'", style, ">", output, "</span>");
|
|
|
- }
|
|
|
- else {
|
|
|
- stringBuilder.push(output);
|
|
|
- }
|
|
|
- return screenColumn + value.length;
|
|
|
- };
|
|
|
-
|
|
|
- this.renderIndentGuide = function(stringBuilder, value, max) {
|
|
|
- var cols = value.search(this.$indentGuideRe);
|
|
|
- if (cols <= 0 || cols >= max)
|
|
|
- return value;
|
|
|
- if (value[0] == " ") {
|
|
|
- cols -= cols % this.tabSize;
|
|
|
- stringBuilder.push(lang.stringRepeat(this.$tabStrings[" "], cols/this.tabSize));
|
|
|
- return value.substr(cols);
|
|
|
- } else if (value[0] == "\t") {
|
|
|
- stringBuilder.push(lang.stringRepeat(this.$tabStrings["\t"], cols));
|
|
|
- return value.substr(cols);
|
|
|
- }
|
|
|
- return value;
|
|
|
- };
|
|
|
-
|
|
|
- this.$renderWrappedLine = function(stringBuilder, tokens, splits, onlyContents) {
|
|
|
- var chars = 0;
|
|
|
- var split = 0;
|
|
|
- var splitChars = splits[0];
|
|
|
- var screenColumn = 0;
|
|
|
-
|
|
|
- for (var i = 0; i < tokens.length; i++) {
|
|
|
- var token = tokens[i];
|
|
|
- var value = token.value;
|
|
|
- if (i == 0 && this.displayIndentGuides) {
|
|
|
- chars = value.length;
|
|
|
- value = this.renderIndentGuide(stringBuilder, value, splitChars);
|
|
|
- if (!value)
|
|
|
- continue;
|
|
|
- chars -= value.length;
|
|
|
- }
|
|
|
-
|
|
|
- if (chars + value.length < splitChars) {
|
|
|
- screenColumn = this.$renderToken(stringBuilder, screenColumn, token, value);
|
|
|
- chars += value.length;
|
|
|
- } else {
|
|
|
- while (chars + value.length >= splitChars) {
|
|
|
- screenColumn = this.$renderToken(
|
|
|
- stringBuilder, screenColumn,
|
|
|
- token, value.substring(0, splitChars - chars)
|
|
|
- );
|
|
|
- value = value.substring(splitChars - chars);
|
|
|
- chars = splitChars;
|
|
|
-
|
|
|
- if (!onlyContents) {
|
|
|
- stringBuilder.push("</div>",
|
|
|
- "<div class='ace_line' style='height:",
|
|
|
- this.config.lineHeight, "px'>"
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- stringBuilder.push(lang.stringRepeat("\xa0", splits.indent));
|
|
|
-
|
|
|
- split ++;
|
|
|
- screenColumn = 0;
|
|
|
- splitChars = splits[split] || Number.MAX_VALUE;
|
|
|
- }
|
|
|
- if (value.length != 0) {
|
|
|
- chars += value.length;
|
|
|
- screenColumn = this.$renderToken(
|
|
|
- stringBuilder, screenColumn, token, value
|
|
|
- );
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$renderSimpleLine = function(stringBuilder, tokens) {
|
|
|
- var screenColumn = 0;
|
|
|
- var token = tokens[0];
|
|
|
- var value = token.value;
|
|
|
- if (this.displayIndentGuides)
|
|
|
- value = this.renderIndentGuide(stringBuilder, value);
|
|
|
- if (value)
|
|
|
- screenColumn = this.$renderToken(stringBuilder, screenColumn, token, value);
|
|
|
- for (var i = 1; i < tokens.length; i++) {
|
|
|
- token = tokens[i];
|
|
|
- value = token.value;
|
|
|
- screenColumn = this.$renderToken(stringBuilder, screenColumn, token, value);
|
|
|
- }
|
|
|
- };
|
|
|
- this.$renderLine = function(stringBuilder, row, onlyContents, foldLine) {
|
|
|
- if (!foldLine && foldLine != false)
|
|
|
- foldLine = this.session.getFoldLine(row);
|
|
|
-
|
|
|
- if (foldLine)
|
|
|
- var tokens = this.$getFoldLineTokens(row, foldLine);
|
|
|
- else
|
|
|
- var tokens = this.session.getTokens(row);
|
|
|
-
|
|
|
-
|
|
|
- if (!onlyContents) {
|
|
|
- stringBuilder.push(
|
|
|
- "<div class='ace_line' style='height:",
|
|
|
- this.config.lineHeight * (
|
|
|
- this.$useLineGroups() ? 1 :this.session.getRowLength(row)
|
|
|
- ), "px'>"
|
|
|
- );
|
|
|
- }
|
|
|
-
|
|
|
- if (tokens.length) {
|
|
|
- var splits = this.session.getRowSplitData(row);
|
|
|
- if (splits && splits.length)
|
|
|
- this.$renderWrappedLine(stringBuilder, tokens, splits, onlyContents);
|
|
|
- else
|
|
|
- this.$renderSimpleLine(stringBuilder, tokens);
|
|
|
- }
|
|
|
-
|
|
|
- if (this.showInvisibles) {
|
|
|
- if (foldLine)
|
|
|
- row = foldLine.end.row
|
|
|
-
|
|
|
- stringBuilder.push(
|
|
|
- "<span class='ace_invisible ace_invisible_eol'>",
|
|
|
- row == this.session.getLength() - 1 ? this.EOF_CHAR : this.EOL_CHAR,
|
|
|
- "</span>"
|
|
|
- );
|
|
|
- }
|
|
|
- if (!onlyContents)
|
|
|
- stringBuilder.push("</div>");
|
|
|
- };
|
|
|
-
|
|
|
- this.$getFoldLineTokens = function(row, foldLine) {
|
|
|
- var session = this.session;
|
|
|
- var renderTokens = [];
|
|
|
-
|
|
|
- function addTokens(tokens, from, to) {
|
|
|
- var idx = 0, col = 0;
|
|
|
- while ((col + tokens[idx].value.length) < from) {
|
|
|
- col += tokens[idx].value.length;
|
|
|
- idx++;
|
|
|
-
|
|
|
- if (idx == tokens.length)
|
|
|
- return;
|
|
|
- }
|
|
|
- if (col != from) {
|
|
|
- var value = tokens[idx].value.substring(from - col);
|
|
|
- if (value.length > (to - from))
|
|
|
- value = value.substring(0, to - from);
|
|
|
-
|
|
|
- renderTokens.push({
|
|
|
- type: tokens[idx].type,
|
|
|
- value: value
|
|
|
- });
|
|
|
-
|
|
|
- col = from + value.length;
|
|
|
- idx += 1;
|
|
|
- }
|
|
|
-
|
|
|
- while (col < to && idx < tokens.length) {
|
|
|
- var value = tokens[idx].value;
|
|
|
- if (value.length + col > to) {
|
|
|
- renderTokens.push({
|
|
|
- type: tokens[idx].type,
|
|
|
- value: value.substring(0, to - col)
|
|
|
- });
|
|
|
- } else
|
|
|
- renderTokens.push(tokens[idx]);
|
|
|
- col += value.length;
|
|
|
- idx += 1;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- var tokens = session.getTokens(row);
|
|
|
- foldLine.walk(function(placeholder, row, column, lastColumn, isNewRow) {
|
|
|
- if (placeholder != null) {
|
|
|
- renderTokens.push({
|
|
|
- type: "fold",
|
|
|
- value: placeholder
|
|
|
- });
|
|
|
- } else {
|
|
|
- if (isNewRow)
|
|
|
- tokens = session.getTokens(row);
|
|
|
-
|
|
|
- if (tokens.length)
|
|
|
- addTokens(tokens, lastColumn, column);
|
|
|
- }
|
|
|
- }, foldLine.end.row, this.session.getLine(foldLine.end.row).length);
|
|
|
-
|
|
|
- return renderTokens;
|
|
|
- };
|
|
|
-
|
|
|
- this.$useLineGroups = function() {
|
|
|
- return this.session.getUseWrapMode();
|
|
|
- };
|
|
|
-
|
|
|
- this.destroy = function() {
|
|
|
- clearInterval(this.$pollSizeChangesTimer);
|
|
|
- if (this.$measureNode)
|
|
|
- this.$measureNode.parentNode.removeChild(this.$measureNode);
|
|
|
- delete this.$measureNode;
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Text.prototype);
|
|
|
-
|
|
|
-exports.Text = Text;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/layer/cursor",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var isIE8;
|
|
|
-
|
|
|
-var Cursor = function(parentEl) {
|
|
|
- this.element = dom.createElement("div");
|
|
|
- this.element.className = "ace_layer ace_cursor-layer";
|
|
|
- parentEl.appendChild(this.element);
|
|
|
-
|
|
|
- if (isIE8 === undefined)
|
|
|
- isIE8 = !("opacity" in this.element.style);
|
|
|
-
|
|
|
- this.isVisible = false;
|
|
|
- this.isBlinking = true;
|
|
|
- this.blinkInterval = 1000;
|
|
|
- this.smoothBlinking = false;
|
|
|
-
|
|
|
- this.cursors = [];
|
|
|
- this.cursor = this.addCursor();
|
|
|
- dom.addCssClass(this.element, "ace_hidden-cursors");
|
|
|
- this.$updateCursors = (isIE8
|
|
|
- ? this.$updateVisibility
|
|
|
- : this.$updateOpacity).bind(this);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.$updateVisibility = function(val) {
|
|
|
- var cursors = this.cursors;
|
|
|
- for (var i = cursors.length; i--; )
|
|
|
- cursors[i].style.visibility = val ? "" : "hidden";
|
|
|
- };
|
|
|
- this.$updateOpacity = function(val) {
|
|
|
- var cursors = this.cursors;
|
|
|
- for (var i = cursors.length; i--; )
|
|
|
- cursors[i].style.opacity = val ? "" : "0";
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.$padding = 0;
|
|
|
- this.setPadding = function(padding) {
|
|
|
- this.$padding = padding;
|
|
|
- };
|
|
|
-
|
|
|
- this.setSession = function(session) {
|
|
|
- this.session = session;
|
|
|
- };
|
|
|
-
|
|
|
- this.setBlinking = function(blinking) {
|
|
|
- if (blinking != this.isBlinking){
|
|
|
- this.isBlinking = blinking;
|
|
|
- this.restartTimer();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.setBlinkInterval = function(blinkInterval) {
|
|
|
- if (blinkInterval != this.blinkInterval){
|
|
|
- this.blinkInterval = blinkInterval;
|
|
|
- this.restartTimer();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.setSmoothBlinking = function(smoothBlinking) {
|
|
|
- if (smoothBlinking != this.smoothBlinking && !isIE8) {
|
|
|
- this.smoothBlinking = smoothBlinking;
|
|
|
- dom.setCssClass(this.element, "ace_smooth-blinking", smoothBlinking);
|
|
|
- this.$updateCursors(true);
|
|
|
- this.$updateCursors = (this.$updateOpacity).bind(this);
|
|
|
- this.restartTimer();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.addCursor = function() {
|
|
|
- var el = dom.createElement("div");
|
|
|
- el.className = "ace_cursor";
|
|
|
- this.element.appendChild(el);
|
|
|
- this.cursors.push(el);
|
|
|
- return el;
|
|
|
- };
|
|
|
-
|
|
|
- this.removeCursor = function() {
|
|
|
- if (this.cursors.length > 1) {
|
|
|
- var el = this.cursors.pop();
|
|
|
- el.parentNode.removeChild(el);
|
|
|
- return el;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.hideCursor = function() {
|
|
|
- this.isVisible = false;
|
|
|
- dom.addCssClass(this.element, "ace_hidden-cursors");
|
|
|
- this.restartTimer();
|
|
|
- };
|
|
|
-
|
|
|
- this.showCursor = function() {
|
|
|
- this.isVisible = true;
|
|
|
- dom.removeCssClass(this.element, "ace_hidden-cursors");
|
|
|
- this.restartTimer();
|
|
|
- };
|
|
|
-
|
|
|
- this.restartTimer = function() {
|
|
|
- var update = this.$updateCursors;
|
|
|
- clearInterval(this.intervalId);
|
|
|
- clearTimeout(this.timeoutId);
|
|
|
- if (this.smoothBlinking) {
|
|
|
- dom.removeCssClass(this.element, "ace_smooth-blinking");
|
|
|
- }
|
|
|
-
|
|
|
- update(true);
|
|
|
-
|
|
|
- if (!this.isBlinking || !this.blinkInterval || !this.isVisible)
|
|
|
- return;
|
|
|
-
|
|
|
- if (this.smoothBlinking) {
|
|
|
- setTimeout(function(){
|
|
|
- dom.addCssClass(this.element, "ace_smooth-blinking");
|
|
|
- }.bind(this));
|
|
|
- }
|
|
|
-
|
|
|
- var blink = function(){
|
|
|
- this.timeoutId = setTimeout(function() {
|
|
|
- update(false);
|
|
|
- }, 0.6 * this.blinkInterval);
|
|
|
- }.bind(this);
|
|
|
-
|
|
|
- this.intervalId = setInterval(function() {
|
|
|
- update(true);
|
|
|
- blink();
|
|
|
- }, this.blinkInterval);
|
|
|
-
|
|
|
- blink();
|
|
|
- };
|
|
|
-
|
|
|
- this.getPixelPosition = function(position, onScreen) {
|
|
|
- if (!this.config || !this.session)
|
|
|
- return {left : 0, top : 0};
|
|
|
-
|
|
|
- if (!position)
|
|
|
- position = this.session.selection.getCursor();
|
|
|
- var pos = this.session.documentToScreenPosition(position);
|
|
|
- var cursorLeft = this.$padding + pos.column * this.config.characterWidth;
|
|
|
- var cursorTop = (pos.row - (onScreen ? this.config.firstRowScreen : 0)) *
|
|
|
- this.config.lineHeight;
|
|
|
-
|
|
|
- return {left : cursorLeft, top : cursorTop};
|
|
|
- };
|
|
|
-
|
|
|
- this.update = function(config) {
|
|
|
- this.config = config;
|
|
|
-
|
|
|
- var selections = this.session.$selectionMarkers;
|
|
|
- var i = 0, cursorIndex = 0;
|
|
|
-
|
|
|
- if (selections === undefined || selections.length === 0){
|
|
|
- selections = [{cursor: null}];
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = 0, n = selections.length; i < n; i++) {
|
|
|
- var pixelPos = this.getPixelPosition(selections[i].cursor, true);
|
|
|
- if ((pixelPos.top > config.height + config.offset ||
|
|
|
- pixelPos.top < 0) && i > 1) {
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- var style = (this.cursors[cursorIndex++] || this.addCursor()).style;
|
|
|
-
|
|
|
- if (!this.drawCursor) {
|
|
|
- style.left = pixelPos.left + "px";
|
|
|
- style.top = pixelPos.top + "px";
|
|
|
- style.width = config.characterWidth + "px";
|
|
|
- style.height = config.lineHeight + "px";
|
|
|
- } else {
|
|
|
- this.drawCursor(style, pixelPos, config, selections[i], this.session);
|
|
|
- }
|
|
|
- }
|
|
|
- while (this.cursors.length > cursorIndex)
|
|
|
- this.removeCursor();
|
|
|
-
|
|
|
- var overwrite = this.session.getOverwrite();
|
|
|
- this.$setOverwrite(overwrite);
|
|
|
- this.$pixelPos = pixelPos;
|
|
|
- this.restartTimer();
|
|
|
- };
|
|
|
-
|
|
|
- this.drawCursor = null;
|
|
|
-
|
|
|
- this.$setOverwrite = function(overwrite) {
|
|
|
- if (overwrite != this.overwrite) {
|
|
|
- this.overwrite = overwrite;
|
|
|
- if (overwrite)
|
|
|
- dom.addCssClass(this.element, "ace_overwrite-cursors");
|
|
|
- else
|
|
|
- dom.removeCssClass(this.element, "ace_overwrite-cursors");
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.destroy = function() {
|
|
|
- clearInterval(this.intervalId);
|
|
|
- clearTimeout(this.timeoutId);
|
|
|
- };
|
|
|
-
|
|
|
-}).call(Cursor.prototype);
|
|
|
-
|
|
|
-exports.Cursor = Cursor;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var dom = require("./lib/dom");
|
|
|
-var event = require("./lib/event");
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-var ScrollBar = function(parent) {
|
|
|
- this.element = dom.createElement("div");
|
|
|
- this.element.className = "ace_scrollbar ace_scrollbar" + this.classSuffix;
|
|
|
-
|
|
|
- this.inner = dom.createElement("div");
|
|
|
- this.inner.className = "ace_scrollbar-inner";
|
|
|
- this.element.appendChild(this.inner);
|
|
|
-
|
|
|
- parent.appendChild(this.element);
|
|
|
-
|
|
|
- this.setVisible(false);
|
|
|
- this.skipEvent = false;
|
|
|
-
|
|
|
- event.addListener(this.element, "scroll", this.onScroll.bind(this));
|
|
|
- event.addListener(this.element, "mousedown", event.preventDefault);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.setVisible = function(isVisible) {
|
|
|
- this.element.style.display = isVisible ? "" : "none";
|
|
|
- this.isVisible = isVisible;
|
|
|
- };
|
|
|
-}).call(ScrollBar.prototype);
|
|
|
-var VScrollBar = function(parent, renderer) {
|
|
|
- ScrollBar.call(this, parent);
|
|
|
- this.scrollTop = 0;
|
|
|
- renderer.$scrollbarWidth =
|
|
|
- this.width = dom.scrollbarWidth(parent.ownerDocument);
|
|
|
- this.inner.style.width =
|
|
|
- this.element.style.width = (this.width || 15) + 5 + "px";
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(VScrollBar, ScrollBar);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.classSuffix = '-v';
|
|
|
- this.onScroll = function() {
|
|
|
- if (!this.skipEvent) {
|
|
|
- this.scrollTop = this.element.scrollTop;
|
|
|
- this._emit("scroll", {data: this.scrollTop});
|
|
|
- }
|
|
|
- this.skipEvent = false;
|
|
|
- };
|
|
|
- this.getWidth = function() {
|
|
|
- return this.isVisible ? this.width : 0;
|
|
|
- };
|
|
|
- this.setHeight = function(height) {
|
|
|
- this.element.style.height = height + "px";
|
|
|
- };
|
|
|
- this.setInnerHeight = function(height) {
|
|
|
- this.inner.style.height = height + "px";
|
|
|
- };
|
|
|
- this.setScrollHeight = function(height) {
|
|
|
- this.inner.style.height = height + "px";
|
|
|
- };
|
|
|
- this.setScrollTop = function(scrollTop) {
|
|
|
- if (this.scrollTop != scrollTop) {
|
|
|
- this.skipEvent = true;
|
|
|
- this.scrollTop = this.element.scrollTop = scrollTop;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(VScrollBar.prototype);
|
|
|
-var HScrollBar = function(parent, renderer) {
|
|
|
- ScrollBar.call(this, parent);
|
|
|
- this.scrollLeft = 0;
|
|
|
- this.height = renderer.$scrollbarWidth;
|
|
|
- this.inner.style.height =
|
|
|
- this.element.style.height = (this.height || 15) + 5 + "px";
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(HScrollBar, ScrollBar);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.classSuffix = '-h';
|
|
|
- this.onScroll = function() {
|
|
|
- if (!this.skipEvent) {
|
|
|
- this.scrollLeft = this.element.scrollLeft;
|
|
|
- this._emit("scroll", {data: this.scrollLeft});
|
|
|
- }
|
|
|
- this.skipEvent = false;
|
|
|
- };
|
|
|
- this.getHeight = function() {
|
|
|
- return this.isVisible ? this.height : 0;
|
|
|
- };
|
|
|
- this.setWidth = function(width) {
|
|
|
- this.element.style.width = width + "px";
|
|
|
- };
|
|
|
- this.setInnerWidth = function(width) {
|
|
|
- this.inner.style.width = width + "px";
|
|
|
- };
|
|
|
- this.setScrollWidth = function(width) {
|
|
|
- this.inner.style.width = width + "px";
|
|
|
- };
|
|
|
- this.setScrollLeft = function(scrollLeft) {
|
|
|
- if (this.scrollLeft != scrollLeft) {
|
|
|
- this.skipEvent = true;
|
|
|
- this.scrollLeft = this.element.scrollLeft = scrollLeft;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(HScrollBar.prototype);
|
|
|
-
|
|
|
-
|
|
|
-exports.ScrollBar = VScrollBar; // backward compatibility
|
|
|
-exports.ScrollBarV = VScrollBar; // backward compatibility
|
|
|
-exports.ScrollBarH = HScrollBar; // backward compatibility
|
|
|
-
|
|
|
-exports.VScrollBar = VScrollBar;
|
|
|
-exports.HScrollBar = HScrollBar;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/renderloop",["require","exports","module","ace/lib/event"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var event = require("./lib/event");
|
|
|
-
|
|
|
-
|
|
|
-var RenderLoop = function(onRender, win) {
|
|
|
- this.onRender = onRender;
|
|
|
- this.pending = false;
|
|
|
- this.changes = 0;
|
|
|
- this.window = win || window;
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
-
|
|
|
- this.schedule = function(change) {
|
|
|
- this.changes = this.changes | change;
|
|
|
- if (!this.pending && this.changes) {
|
|
|
- this.pending = true;
|
|
|
- var _self = this;
|
|
|
- event.nextFrame(function() {
|
|
|
- _self.pending = false;
|
|
|
- var changes;
|
|
|
- while (changes = _self.changes) {
|
|
|
- _self.changes = 0;
|
|
|
- _self.onRender(changes);
|
|
|
- }
|
|
|
- }, this.window);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(RenderLoop.prototype);
|
|
|
-
|
|
|
-exports.RenderLoop = RenderLoop;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-var EventEmitter = require("../lib/event_emitter").EventEmitter;
|
|
|
-
|
|
|
-var CHAR_COUNT = 0;
|
|
|
-
|
|
|
-var FontMetrics = exports.FontMetrics = function(parentEl, interval) {
|
|
|
- this.el = dom.createElement("div");
|
|
|
- this.$setMeasureNodeStyles(this.el.style, true);
|
|
|
-
|
|
|
- this.$main = dom.createElement("div");
|
|
|
- this.$setMeasureNodeStyles(this.$main.style);
|
|
|
-
|
|
|
- this.$measureNode = dom.createElement("div");
|
|
|
- this.$setMeasureNodeStyles(this.$measureNode.style);
|
|
|
-
|
|
|
-
|
|
|
- this.el.appendChild(this.$main);
|
|
|
- this.el.appendChild(this.$measureNode);
|
|
|
- parentEl.appendChild(this.el);
|
|
|
-
|
|
|
- if (!CHAR_COUNT)
|
|
|
- this.$testFractionalRect();
|
|
|
- this.$measureNode.innerHTML = lang.stringRepeat("X", CHAR_COUNT);
|
|
|
-
|
|
|
- this.$characterSize = {width: 0, height: 0};
|
|
|
- this.checkForSizeChanges();
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.$characterSize = {width: 0, height: 0};
|
|
|
-
|
|
|
- this.$testFractionalRect = function() {
|
|
|
- var el = dom.createElement("div");
|
|
|
- this.$setMeasureNodeStyles(el.style);
|
|
|
- el.style.width = "0.2px";
|
|
|
- document.documentElement.appendChild(el);
|
|
|
- var w = el.getBoundingClientRect().width;
|
|
|
- if (w > 0 && w < 1)
|
|
|
- CHAR_COUNT = 50;
|
|
|
- else
|
|
|
- CHAR_COUNT = 100;
|
|
|
- el.parentNode.removeChild(el);
|
|
|
- };
|
|
|
-
|
|
|
- this.$setMeasureNodeStyles = function(style, isRoot) {
|
|
|
- style.width = style.height = "auto";
|
|
|
- style.left = style.top = "0px";
|
|
|
- style.visibility = "hidden";
|
|
|
- style.position = "absolute";
|
|
|
- style.whiteSpace = "pre";
|
|
|
-
|
|
|
- if (useragent.isIE < 8) {
|
|
|
- style["font-family"] = "inherit";
|
|
|
- } else {
|
|
|
- style.font = "inherit";
|
|
|
- }
|
|
|
- style.overflow = isRoot ? "hidden" : "visible";
|
|
|
- };
|
|
|
-
|
|
|
- this.checkForSizeChanges = function() {
|
|
|
- var size = this.$measureSizes();
|
|
|
- if (size && (this.$characterSize.width !== size.width || this.$characterSize.height !== size.height)) {
|
|
|
- this.$measureNode.style.fontWeight = "bold";
|
|
|
- var boldSize = this.$measureSizes();
|
|
|
- this.$measureNode.style.fontWeight = "";
|
|
|
- this.$characterSize = size;
|
|
|
- this.charSizes = Object.create(null);
|
|
|
- this.allowBoldFonts = boldSize && boldSize.width === size.width && boldSize.height === size.height;
|
|
|
- this._emit("changeCharacterSize", {data: size});
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$pollSizeChanges = function() {
|
|
|
- if (this.$pollSizeChangesTimer)
|
|
|
- return this.$pollSizeChangesTimer;
|
|
|
- var self = this;
|
|
|
- return this.$pollSizeChangesTimer = setInterval(function() {
|
|
|
- self.checkForSizeChanges();
|
|
|
- }, 500);
|
|
|
- };
|
|
|
-
|
|
|
- this.setPolling = function(val) {
|
|
|
- if (val) {
|
|
|
- this.$pollSizeChanges();
|
|
|
- } else if (this.$pollSizeChangesTimer) {
|
|
|
- clearInterval(this.$pollSizeChangesTimer);
|
|
|
- this.$pollSizeChangesTimer = 0;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$measureSizes = function() {
|
|
|
- if (CHAR_COUNT === 50) {
|
|
|
- var rect = null;
|
|
|
- try {
|
|
|
- rect = this.$measureNode.getBoundingClientRect();
|
|
|
- } catch(e) {
|
|
|
- rect = {width: 0, height:0 };
|
|
|
- };
|
|
|
- var size = {
|
|
|
- height: rect.height,
|
|
|
- width: rect.width / CHAR_COUNT
|
|
|
- };
|
|
|
- } else {
|
|
|
- var size = {
|
|
|
- height: this.$measureNode.clientHeight,
|
|
|
- width: this.$measureNode.clientWidth / CHAR_COUNT
|
|
|
- };
|
|
|
- }
|
|
|
- if (size.width === 0 || size.height === 0)
|
|
|
- return null;
|
|
|
- return size;
|
|
|
- };
|
|
|
-
|
|
|
- this.$measureCharWidth = function(ch) {
|
|
|
- this.$main.innerHTML = lang.stringRepeat(ch, CHAR_COUNT);
|
|
|
- var rect = this.$main.getBoundingClientRect();
|
|
|
- return rect.width / CHAR_COUNT;
|
|
|
- };
|
|
|
-
|
|
|
- this.getCharacterWidth = function(ch) {
|
|
|
- var w = this.charSizes[ch];
|
|
|
- if (w === undefined) {
|
|
|
- this.charSizes[ch] = this.$measureCharWidth(ch) / this.$characterSize.width;
|
|
|
- }
|
|
|
- return w;
|
|
|
- };
|
|
|
-
|
|
|
- this.destroy = function() {
|
|
|
- clearInterval(this.$pollSizeChangesTimer);
|
|
|
- if (this.el && this.el.parentNode)
|
|
|
- this.el.parentNode.removeChild(this.el);
|
|
|
- };
|
|
|
-
|
|
|
-}).call(FontMetrics.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/config","ace/lib/useragent","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var dom = require("./lib/dom");
|
|
|
-var config = require("./config");
|
|
|
-var useragent = require("./lib/useragent");
|
|
|
-var GutterLayer = require("./layer/gutter").Gutter;
|
|
|
-var MarkerLayer = require("./layer/marker").Marker;
|
|
|
-var TextLayer = require("./layer/text").Text;
|
|
|
-var CursorLayer = require("./layer/cursor").Cursor;
|
|
|
-var HScrollBar = require("./scrollbar").HScrollBar;
|
|
|
-var VScrollBar = require("./scrollbar").VScrollBar;
|
|
|
-var RenderLoop = require("./renderloop").RenderLoop;
|
|
|
-var FontMetrics = require("./layer/font_metrics").FontMetrics;
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-var editorCss = ".ace_editor {\
|
|
|
-position: relative;\
|
|
|
-overflow: hidden;\
|
|
|
-font: 12px/normal 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;\
|
|
|
-direction: ltr;\
|
|
|
-}\
|
|
|
-.ace_scroller {\
|
|
|
-position: absolute;\
|
|
|
-overflow: hidden;\
|
|
|
-top: 0;\
|
|
|
-bottom: 0;\
|
|
|
-background-color: inherit;\
|
|
|
--ms-user-select: none;\
|
|
|
--moz-user-select: none;\
|
|
|
--webkit-user-select: none;\
|
|
|
-user-select: none;\
|
|
|
-cursor: text;\
|
|
|
-}\
|
|
|
-.ace_content {\
|
|
|
-position: absolute;\
|
|
|
--moz-box-sizing: border-box;\
|
|
|
--webkit-box-sizing: border-box;\
|
|
|
-box-sizing: border-box;\
|
|
|
-min-width: 100%;\
|
|
|
-}\
|
|
|
-.ace_dragging .ace_scroller:before{\
|
|
|
-position: absolute;\
|
|
|
-top: 0;\
|
|
|
-left: 0;\
|
|
|
-right: 0;\
|
|
|
-bottom: 0;\
|
|
|
-content: '';\
|
|
|
-background: rgba(250, 250, 250, 0.01);\
|
|
|
-z-index: 1000;\
|
|
|
-}\
|
|
|
-.ace_dragging.ace_dark .ace_scroller:before{\
|
|
|
-background: rgba(0, 0, 0, 0.01);\
|
|
|
-}\
|
|
|
-.ace_selecting, .ace_selecting * {\
|
|
|
-cursor: text !important;\
|
|
|
-}\
|
|
|
-.ace_gutter {\
|
|
|
-position: absolute;\
|
|
|
-overflow : hidden;\
|
|
|
-width: auto;\
|
|
|
-top: 0;\
|
|
|
-bottom: 0;\
|
|
|
-left: 0;\
|
|
|
-cursor: default;\
|
|
|
-z-index: 4;\
|
|
|
--ms-user-select: none;\
|
|
|
--moz-user-select: none;\
|
|
|
--webkit-user-select: none;\
|
|
|
-user-select: none;\
|
|
|
-}\
|
|
|
-.ace_gutter-active-line {\
|
|
|
-position: absolute;\
|
|
|
-left: 0;\
|
|
|
-right: 0;\
|
|
|
-}\
|
|
|
-.ace_scroller.ace_scroll-left {\
|
|
|
-box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;\
|
|
|
-}\
|
|
|
-.ace_gutter-cell {\
|
|
|
-padding-left: 19px;\
|
|
|
-padding-right: 6px;\
|
|
|
-background-repeat: no-repeat;\
|
|
|
-}\
|
|
|
-.ace_gutter-cell.ace_error {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==\");\
|
|
|
-background-repeat: no-repeat;\
|
|
|
-background-position: 2px center;\
|
|
|
-}\
|
|
|
-.ace_gutter-cell.ace_warning {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==\");\
|
|
|
-background-position: 2px center;\
|
|
|
-}\
|
|
|
-.ace_gutter-cell.ace_info {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=\");\
|
|
|
-background-position: 2px center;\
|
|
|
-}\
|
|
|
-.ace_dark .ace_gutter-cell.ace_info {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAJFBMVEUAAAChoaGAgIAqKiq+vr6tra1ZWVmUlJSbm5s8PDxubm56enrdgzg3AAAAAXRSTlMAQObYZgAAAClJREFUeNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC\");\
|
|
|
-}\
|
|
|
-.ace_scrollbar {\
|
|
|
-position: absolute;\
|
|
|
-right: 0;\
|
|
|
-bottom: 0;\
|
|
|
-z-index: 6;\
|
|
|
-}\
|
|
|
-.ace_scrollbar-inner {\
|
|
|
-position: absolute;\
|
|
|
-cursor: text;\
|
|
|
-left: 0;\
|
|
|
-top: 0;\
|
|
|
-}\
|
|
|
-.ace_scrollbar-v{\
|
|
|
-overflow-x: hidden;\
|
|
|
-overflow-y: scroll;\
|
|
|
-top: 0;\
|
|
|
-}\
|
|
|
-.ace_scrollbar-h {\
|
|
|
-overflow-x: scroll;\
|
|
|
-overflow-y: hidden;\
|
|
|
-left: 0;\
|
|
|
-}\
|
|
|
-.ace_print-margin {\
|
|
|
-position: absolute;\
|
|
|
-height: 100%;\
|
|
|
-}\
|
|
|
-.ace_text-input {\
|
|
|
-position: absolute;\
|
|
|
-z-index: 0;\
|
|
|
-width: 0.5em;\
|
|
|
-height: 1em;\
|
|
|
-opacity: 0;\
|
|
|
-background: transparent;\
|
|
|
--moz-appearance: none;\
|
|
|
-appearance: none;\
|
|
|
-border: none;\
|
|
|
-resize: none;\
|
|
|
-outline: none;\
|
|
|
-overflow: hidden;\
|
|
|
-font: inherit;\
|
|
|
-padding: 0 1px;\
|
|
|
-margin: 0 -1px;\
|
|
|
-text-indent: -1em;\
|
|
|
--ms-user-select: text;\
|
|
|
--moz-user-select: text;\
|
|
|
--webkit-user-select: text;\
|
|
|
-user-select: text;\
|
|
|
-white-space: pre!important;\
|
|
|
-}\
|
|
|
-.ace_text-input.ace_composition {\
|
|
|
-background: inherit;\
|
|
|
-color: inherit;\
|
|
|
-z-index: 1000;\
|
|
|
-opacity: 1;\
|
|
|
-text-indent: 0;\
|
|
|
-}\
|
|
|
-.ace_layer {\
|
|
|
-z-index: 1;\
|
|
|
-position: absolute;\
|
|
|
-overflow: hidden;\
|
|
|
-word-wrap: normal;\
|
|
|
-white-space: pre;\
|
|
|
-height: 100%;\
|
|
|
-width: 100%;\
|
|
|
--moz-box-sizing: border-box;\
|
|
|
--webkit-box-sizing: border-box;\
|
|
|
-box-sizing: border-box;\
|
|
|
-pointer-events: none;\
|
|
|
-}\
|
|
|
-.ace_gutter-layer {\
|
|
|
-position: relative;\
|
|
|
-width: auto;\
|
|
|
-text-align: right;\
|
|
|
-pointer-events: auto;\
|
|
|
-}\
|
|
|
-.ace_text-layer {\
|
|
|
-font: inherit !important;\
|
|
|
-}\
|
|
|
-.ace_cjk {\
|
|
|
-display: inline-block;\
|
|
|
-text-align: center;\
|
|
|
-}\
|
|
|
-.ace_cursor-layer {\
|
|
|
-z-index: 4;\
|
|
|
-}\
|
|
|
-.ace_cursor {\
|
|
|
-z-index: 4;\
|
|
|
-position: absolute;\
|
|
|
--moz-box-sizing: border-box;\
|
|
|
--webkit-box-sizing: border-box;\
|
|
|
-box-sizing: border-box;\
|
|
|
-border-left: 2px solid;\
|
|
|
-transform: translatez(0);\
|
|
|
-}\
|
|
|
-.ace_slim-cursors .ace_cursor {\
|
|
|
-border-left-width: 1px;\
|
|
|
-}\
|
|
|
-.ace_overwrite-cursors .ace_cursor {\
|
|
|
-border-left-width: 0;\
|
|
|
-border-bottom: 1px solid;\
|
|
|
-}\
|
|
|
-.ace_hidden-cursors .ace_cursor {\
|
|
|
-opacity: 0.2;\
|
|
|
-}\
|
|
|
-.ace_smooth-blinking .ace_cursor {\
|
|
|
--webkit-transition: opacity 0.18s;\
|
|
|
-transition: opacity 0.18s;\
|
|
|
-}\
|
|
|
-.ace_editor.ace_multiselect .ace_cursor {\
|
|
|
-border-left-width: 1px;\
|
|
|
-}\
|
|
|
-.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {\
|
|
|
-position: absolute;\
|
|
|
-z-index: 3;\
|
|
|
-}\
|
|
|
-.ace_marker-layer .ace_selection {\
|
|
|
-position: absolute;\
|
|
|
-z-index: 5;\
|
|
|
-}\
|
|
|
-.ace_marker-layer .ace_bracket {\
|
|
|
-position: absolute;\
|
|
|
-z-index: 6;\
|
|
|
-}\
|
|
|
-.ace_marker-layer .ace_active-line {\
|
|
|
-position: absolute;\
|
|
|
-z-index: 2;\
|
|
|
-}\
|
|
|
-.ace_marker-layer .ace_selected-word {\
|
|
|
-position: absolute;\
|
|
|
-z-index: 4;\
|
|
|
--moz-box-sizing: border-box;\
|
|
|
--webkit-box-sizing: border-box;\
|
|
|
-box-sizing: border-box;\
|
|
|
-}\
|
|
|
-.ace_line .ace_fold {\
|
|
|
--moz-box-sizing: border-box;\
|
|
|
--webkit-box-sizing: border-box;\
|
|
|
-box-sizing: border-box;\
|
|
|
-display: inline-block;\
|
|
|
-height: 11px;\
|
|
|
-margin-top: -2px;\
|
|
|
-vertical-align: middle;\
|
|
|
-background-image:\
|
|
|
-url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII=\"),\
|
|
|
-url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=\");\
|
|
|
-background-repeat: no-repeat, repeat-x;\
|
|
|
-background-position: center center, top left;\
|
|
|
-color: transparent;\
|
|
|
-border: 1px solid black;\
|
|
|
-border-radius: 2px;\
|
|
|
-cursor: pointer;\
|
|
|
-pointer-events: auto;\
|
|
|
-}\
|
|
|
-.ace_dark .ace_fold {\
|
|
|
-}\
|
|
|
-.ace_fold:hover{\
|
|
|
-background-image:\
|
|
|
-url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII=\"),\
|
|
|
-url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC\");\
|
|
|
-}\
|
|
|
-.ace_tooltip {\
|
|
|
-background-color: #FFF;\
|
|
|
-background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.1));\
|
|
|
-background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));\
|
|
|
-border: 1px solid gray;\
|
|
|
-border-radius: 1px;\
|
|
|
-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);\
|
|
|
-color: black;\
|
|
|
-max-width: 100%;\
|
|
|
-padding: 3px 4px;\
|
|
|
-position: fixed;\
|
|
|
-z-index: 999999;\
|
|
|
--moz-box-sizing: border-box;\
|
|
|
--webkit-box-sizing: border-box;\
|
|
|
-box-sizing: border-box;\
|
|
|
-cursor: default;\
|
|
|
-white-space: pre;\
|
|
|
-word-wrap: break-word;\
|
|
|
-line-height: normal;\
|
|
|
-font-style: normal;\
|
|
|
-font-weight: normal;\
|
|
|
-letter-spacing: normal;\
|
|
|
-pointer-events: none;\
|
|
|
-}\
|
|
|
-.ace_folding-enabled > .ace_gutter-cell {\
|
|
|
-padding-right: 13px;\
|
|
|
-}\
|
|
|
-.ace_fold-widget {\
|
|
|
--moz-box-sizing: border-box;\
|
|
|
--webkit-box-sizing: border-box;\
|
|
|
-box-sizing: border-box;\
|
|
|
-margin: 0 -12px 0 1px;\
|
|
|
-display: none;\
|
|
|
-width: 11px;\
|
|
|
-vertical-align: top;\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42mWKsQ0AMAzC8ixLlrzQjzmBiEjp0A6WwBCSPgKAXoLkqSot7nN3yMwR7pZ32NzpKkVoDBUxKAAAAABJRU5ErkJggg==\");\
|
|
|
-background-repeat: no-repeat;\
|
|
|
-background-position: center;\
|
|
|
-border-radius: 3px;\
|
|
|
-border: 1px solid transparent;\
|
|
|
-cursor: pointer;\
|
|
|
-}\
|
|
|
-.ace_folding-enabled .ace_fold-widget {\
|
|
|
-display: inline-block; \
|
|
|
-}\
|
|
|
-.ace_fold-widget.ace_end {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42m3HwQkAMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==\");\
|
|
|
-}\
|
|
|
-.ace_fold-widget.ace_closed {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAOUlEQVR42jXKwQkAMAgDwKwqKD4EwQ26sSOkVWjgIIHAzPiCgaqiqnJHZnKICBERHN194O5b9vbLuAVRL+l0YWnZAAAAAElFTkSuQmCCXA==\");\
|
|
|
-}\
|
|
|
-.ace_fold-widget:hover {\
|
|
|
-border: 1px solid rgba(0, 0, 0, 0.3);\
|
|
|
-background-color: rgba(255, 255, 255, 0.2);\
|
|
|
-box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);\
|
|
|
-}\
|
|
|
-.ace_fold-widget:active {\
|
|
|
-border: 1px solid rgba(0, 0, 0, 0.4);\
|
|
|
-background-color: rgba(0, 0, 0, 0.05);\
|
|
|
-box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);\
|
|
|
-}\
|
|
|
-.ace_dark .ace_fold-widget {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC\");\
|
|
|
-}\
|
|
|
-.ace_dark .ace_fold-widget.ace_end {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==\");\
|
|
|
-}\
|
|
|
-.ace_dark .ace_fold-widget.ace_closed {\
|
|
|
-background-image: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==\");\
|
|
|
-}\
|
|
|
-.ace_dark .ace_fold-widget:hover {\
|
|
|
-box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);\
|
|
|
-background-color: rgba(255, 255, 255, 0.1);\
|
|
|
-}\
|
|
|
-.ace_dark .ace_fold-widget:active {\
|
|
|
-box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);\
|
|
|
-}\
|
|
|
-.ace_fold-widget.ace_invalid {\
|
|
|
-background-color: #FFB4B4;\
|
|
|
-border-color: #DE5555;\
|
|
|
-}\
|
|
|
-.ace_fade-fold-widgets .ace_fold-widget {\
|
|
|
--webkit-transition: opacity 0.4s ease 0.05s;\
|
|
|
-transition: opacity 0.4s ease 0.05s;\
|
|
|
-opacity: 0;\
|
|
|
-}\
|
|
|
-.ace_fade-fold-widgets:hover .ace_fold-widget {\
|
|
|
--webkit-transition: opacity 0.05s ease 0.05s;\
|
|
|
-transition: opacity 0.05s ease 0.05s;\
|
|
|
-opacity:1;\
|
|
|
-}\
|
|
|
-.ace_underline {\
|
|
|
-text-decoration: underline;\
|
|
|
-}\
|
|
|
-.ace_bold {\
|
|
|
-font-weight: bold;\
|
|
|
-}\
|
|
|
-.ace_nobold .ace_bold {\
|
|
|
-font-weight: normal;\
|
|
|
-}\
|
|
|
-.ace_italic {\
|
|
|
-font-style: italic;\
|
|
|
-}\
|
|
|
-.ace_error-marker {\
|
|
|
-background-color: rgba(255, 0, 0,0.2);\
|
|
|
-position: absolute;\
|
|
|
-z-index: 9;\
|
|
|
-}\
|
|
|
-.ace_highlight-marker {\
|
|
|
-background-color: rgba(255, 255, 0,0.2);\
|
|
|
-position: absolute;\
|
|
|
-z-index: 8;\
|
|
|
-}\
|
|
|
-.ace_br1 {border-top-left-radius : 3px;}\
|
|
|
-.ace_br2 {border-top-right-radius : 3px;}\
|
|
|
-.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}\
|
|
|
-.ace_br4 {border-bottom-right-radius: 3px;}\
|
|
|
-.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}\
|
|
|
-.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}\
|
|
|
-.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}\
|
|
|
-.ace_br8 {border-bottom-left-radius : 3px;}\
|
|
|
-.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}\
|
|
|
-.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}\
|
|
|
-.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}\
|
|
|
-.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\
|
|
|
-.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\
|
|
|
-.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\
|
|
|
-.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}\
|
|
|
-";
|
|
|
-
|
|
|
-dom.importCssString(editorCss, "ace_editor.css");
|
|
|
-
|
|
|
-var VirtualRenderer = function(container, theme) {
|
|
|
- var _self = this;
|
|
|
-
|
|
|
- this.container = container || dom.createElement("div");
|
|
|
- this.$keepTextAreaAtCursor = !useragent.isOldIE;
|
|
|
-
|
|
|
- dom.addCssClass(this.container, "ace_editor");
|
|
|
-
|
|
|
- this.setTheme(theme);
|
|
|
-
|
|
|
- this.$gutter = dom.createElement("div");
|
|
|
- this.$gutter.className = "ace_gutter";
|
|
|
- this.container.appendChild(this.$gutter);
|
|
|
-
|
|
|
- this.scroller = dom.createElement("div");
|
|
|
- this.scroller.className = "ace_scroller";
|
|
|
- this.container.appendChild(this.scroller);
|
|
|
-
|
|
|
- this.content = dom.createElement("div");
|
|
|
- this.content.className = "ace_content";
|
|
|
- this.scroller.appendChild(this.content);
|
|
|
-
|
|
|
- this.$gutterLayer = new GutterLayer(this.$gutter);
|
|
|
- this.$gutterLayer.on("changeGutterWidth", this.onGutterResize.bind(this));
|
|
|
-
|
|
|
- this.$markerBack = new MarkerLayer(this.content);
|
|
|
-
|
|
|
- var textLayer = this.$textLayer = new TextLayer(this.content);
|
|
|
- this.canvas = textLayer.element;
|
|
|
-
|
|
|
- this.$markerFront = new MarkerLayer(this.content);
|
|
|
-
|
|
|
- this.$cursorLayer = new CursorLayer(this.content);
|
|
|
- this.$horizScroll = false;
|
|
|
- this.$vScroll = false;
|
|
|
-
|
|
|
- this.scrollBar =
|
|
|
- this.scrollBarV = new VScrollBar(this.container, this);
|
|
|
- this.scrollBarH = new HScrollBar(this.container, this);
|
|
|
- this.scrollBarV.addEventListener("scroll", function(e) {
|
|
|
- if (!_self.$scrollAnimation)
|
|
|
- _self.session.setScrollTop(e.data - _self.scrollMargin.top);
|
|
|
- });
|
|
|
- this.scrollBarH.addEventListener("scroll", function(e) {
|
|
|
- if (!_self.$scrollAnimation)
|
|
|
- _self.session.setScrollLeft(e.data - _self.scrollMargin.left);
|
|
|
- });
|
|
|
-
|
|
|
- this.scrollTop = 0;
|
|
|
- this.scrollLeft = 0;
|
|
|
-
|
|
|
- this.cursorPos = {
|
|
|
- row : 0,
|
|
|
- column : 0
|
|
|
- };
|
|
|
-
|
|
|
- this.$fontMetrics = new FontMetrics(this.container, 500);
|
|
|
- this.$textLayer.$setFontMetrics(this.$fontMetrics);
|
|
|
- this.$textLayer.addEventListener("changeCharacterSize", function(e) {
|
|
|
- _self.updateCharacterSize();
|
|
|
- _self.onResize(true, _self.gutterWidth, _self.$size.width, _self.$size.height);
|
|
|
- _self._signal("changeCharacterSize", e);
|
|
|
- });
|
|
|
-
|
|
|
- this.$size = {
|
|
|
- width: 0,
|
|
|
- height: 0,
|
|
|
- scrollerHeight: 0,
|
|
|
- scrollerWidth: 0,
|
|
|
- $dirty: true
|
|
|
- };
|
|
|
-
|
|
|
- this.layerConfig = {
|
|
|
- width : 1,
|
|
|
- padding : 0,
|
|
|
- firstRow : 0,
|
|
|
- firstRowScreen: 0,
|
|
|
- lastRow : 0,
|
|
|
- lineHeight : 0,
|
|
|
- characterWidth : 0,
|
|
|
- minHeight : 1,
|
|
|
- maxHeight : 1,
|
|
|
- offset : 0,
|
|
|
- height : 1,
|
|
|
- gutterOffset: 1
|
|
|
- };
|
|
|
-
|
|
|
- this.scrollMargin = {
|
|
|
- left: 0,
|
|
|
- right: 0,
|
|
|
- top: 0,
|
|
|
- bottom: 0,
|
|
|
- v: 0,
|
|
|
- h: 0
|
|
|
- };
|
|
|
-
|
|
|
- this.$loop = new RenderLoop(
|
|
|
- this.$renderChanges.bind(this),
|
|
|
- this.container.ownerDocument.defaultView
|
|
|
- );
|
|
|
- this.$loop.schedule(this.CHANGE_FULL);
|
|
|
-
|
|
|
- this.updateCharacterSize();
|
|
|
- this.setPadding(4);
|
|
|
- config.resetOptions(this);
|
|
|
- config._emit("renderer", this);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.CHANGE_CURSOR = 1;
|
|
|
- this.CHANGE_MARKER = 2;
|
|
|
- this.CHANGE_GUTTER = 4;
|
|
|
- this.CHANGE_SCROLL = 8;
|
|
|
- this.CHANGE_LINES = 16;
|
|
|
- this.CHANGE_TEXT = 32;
|
|
|
- this.CHANGE_SIZE = 64;
|
|
|
- this.CHANGE_MARKER_BACK = 128;
|
|
|
- this.CHANGE_MARKER_FRONT = 256;
|
|
|
- this.CHANGE_FULL = 512;
|
|
|
- this.CHANGE_H_SCROLL = 1024;
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.updateCharacterSize = function() {
|
|
|
- if (this.$textLayer.allowBoldFonts != this.$allowBoldFonts) {
|
|
|
- this.$allowBoldFonts = this.$textLayer.allowBoldFonts;
|
|
|
- this.setStyle("ace_nobold", !this.$allowBoldFonts);
|
|
|
- }
|
|
|
-
|
|
|
- this.layerConfig.characterWidth =
|
|
|
- this.characterWidth = this.$textLayer.getCharacterWidth();
|
|
|
- this.layerConfig.lineHeight =
|
|
|
- this.lineHeight = this.$textLayer.getLineHeight();
|
|
|
- this.$updatePrintMargin();
|
|
|
- };
|
|
|
- this.setSession = function(session) {
|
|
|
- if (this.session)
|
|
|
- this.session.doc.off("changeNewLineMode", this.onChangeNewLineMode);
|
|
|
-
|
|
|
- this.session = session;
|
|
|
- if (session && this.scrollMargin.top && session.getScrollTop() <= 0)
|
|
|
- session.setScrollTop(-this.scrollMargin.top);
|
|
|
-
|
|
|
- this.$cursorLayer.setSession(session);
|
|
|
- this.$markerBack.setSession(session);
|
|
|
- this.$markerFront.setSession(session);
|
|
|
- this.$gutterLayer.setSession(session);
|
|
|
- this.$textLayer.setSession(session);
|
|
|
- if (!session)
|
|
|
- return;
|
|
|
-
|
|
|
- this.$loop.schedule(this.CHANGE_FULL);
|
|
|
- this.session.$setFontMetrics(this.$fontMetrics);
|
|
|
-
|
|
|
- this.onChangeNewLineMode = this.onChangeNewLineMode.bind(this);
|
|
|
- this.onChangeNewLineMode()
|
|
|
- this.session.doc.on("changeNewLineMode", this.onChangeNewLineMode);
|
|
|
- };
|
|
|
- this.updateLines = function(firstRow, lastRow, force) {
|
|
|
- if (lastRow === undefined)
|
|
|
- lastRow = Infinity;
|
|
|
-
|
|
|
- if (!this.$changedLines) {
|
|
|
- this.$changedLines = {
|
|
|
- firstRow: firstRow,
|
|
|
- lastRow: lastRow
|
|
|
- };
|
|
|
- }
|
|
|
- else {
|
|
|
- if (this.$changedLines.firstRow > firstRow)
|
|
|
- this.$changedLines.firstRow = firstRow;
|
|
|
-
|
|
|
- if (this.$changedLines.lastRow < lastRow)
|
|
|
- this.$changedLines.lastRow = lastRow;
|
|
|
- }
|
|
|
- if (this.$changedLines.lastRow < this.layerConfig.firstRow) {
|
|
|
- if (force)
|
|
|
- this.$changedLines.lastRow = this.layerConfig.lastRow;
|
|
|
- else
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.$changedLines.firstRow > this.layerConfig.lastRow)
|
|
|
- return;
|
|
|
- this.$loop.schedule(this.CHANGE_LINES);
|
|
|
- };
|
|
|
-
|
|
|
- this.onChangeNewLineMode = function() {
|
|
|
- this.$loop.schedule(this.CHANGE_TEXT);
|
|
|
- this.$textLayer.$updateEolChar();
|
|
|
- };
|
|
|
-
|
|
|
- this.onChangeTabSize = function() {
|
|
|
- this.$loop.schedule(this.CHANGE_TEXT | this.CHANGE_MARKER);
|
|
|
- this.$textLayer.onChangeTabSize();
|
|
|
- };
|
|
|
- this.updateText = function() {
|
|
|
- this.$loop.schedule(this.CHANGE_TEXT);
|
|
|
- };
|
|
|
- this.updateFull = function(force) {
|
|
|
- if (force)
|
|
|
- this.$renderChanges(this.CHANGE_FULL, true);
|
|
|
- else
|
|
|
- this.$loop.schedule(this.CHANGE_FULL);
|
|
|
- };
|
|
|
- this.updateFontSize = function() {
|
|
|
- this.$textLayer.checkForSizeChanges();
|
|
|
- };
|
|
|
-
|
|
|
- this.$changes = 0;
|
|
|
- this.$updateSizeAsync = function() {
|
|
|
- if (this.$loop.pending)
|
|
|
- this.$size.$dirty = true;
|
|
|
- else
|
|
|
- this.onResize();
|
|
|
- };
|
|
|
- this.onResize = function(force, gutterWidth, width, height) {
|
|
|
- if (this.resizing > 2)
|
|
|
- return;
|
|
|
- else if (this.resizing > 0)
|
|
|
- this.resizing++;
|
|
|
- else
|
|
|
- this.resizing = force ? 1 : 0;
|
|
|
- var el = this.container;
|
|
|
- if (!height)
|
|
|
- height = el.clientHeight || el.scrollHeight;
|
|
|
- if (!width)
|
|
|
- width = el.clientWidth || el.scrollWidth;
|
|
|
- var changes = this.$updateCachedSize(force, gutterWidth, width, height);
|
|
|
-
|
|
|
-
|
|
|
- if (!this.$size.scrollerHeight || (!width && !height))
|
|
|
- return this.resizing = 0;
|
|
|
-
|
|
|
- if (force)
|
|
|
- this.$gutterLayer.$padding = null;
|
|
|
-
|
|
|
- if (force)
|
|
|
- this.$renderChanges(changes | this.$changes, true);
|
|
|
- else
|
|
|
- this.$loop.schedule(changes | this.$changes);
|
|
|
-
|
|
|
- if (this.resizing)
|
|
|
- this.resizing = 0;
|
|
|
- this.scrollBarV.scrollLeft = this.scrollBarV.scrollTop = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateCachedSize = function(force, gutterWidth, width, height) {
|
|
|
- height -= (this.$extraHeight || 0);
|
|
|
- var changes = 0;
|
|
|
- var size = this.$size;
|
|
|
- var oldSize = {
|
|
|
- width: size.width,
|
|
|
- height: size.height,
|
|
|
- scrollerHeight: size.scrollerHeight,
|
|
|
- scrollerWidth: size.scrollerWidth
|
|
|
- };
|
|
|
- if (height && (force || size.height != height)) {
|
|
|
- size.height = height;
|
|
|
- changes |= this.CHANGE_SIZE;
|
|
|
-
|
|
|
- size.scrollerHeight = size.height;
|
|
|
- if (this.$horizScroll)
|
|
|
- size.scrollerHeight -= this.scrollBarH.getHeight();
|
|
|
- this.scrollBarV.element.style.bottom = this.scrollBarH.getHeight() + "px";
|
|
|
-
|
|
|
- changes = changes | this.CHANGE_SCROLL;
|
|
|
- }
|
|
|
-
|
|
|
- if (width && (force || size.width != width)) {
|
|
|
- changes |= this.CHANGE_SIZE;
|
|
|
- size.width = width;
|
|
|
-
|
|
|
- if (gutterWidth == null)
|
|
|
- gutterWidth = this.$showGutter ? this.$gutter.offsetWidth : 0;
|
|
|
-
|
|
|
- this.gutterWidth = gutterWidth;
|
|
|
-
|
|
|
- this.scrollBarH.element.style.left =
|
|
|
- this.scroller.style.left = gutterWidth + "px";
|
|
|
- size.scrollerWidth = Math.max(0, width - gutterWidth - this.scrollBarV.getWidth());
|
|
|
-
|
|
|
- this.scrollBarH.element.style.right =
|
|
|
- this.scroller.style.right = this.scrollBarV.getWidth() + "px";
|
|
|
- this.scroller.style.bottom = this.scrollBarH.getHeight() + "px";
|
|
|
-
|
|
|
- if (this.session && this.session.getUseWrapMode() && this.adjustWrapLimit() || force)
|
|
|
- changes |= this.CHANGE_FULL;
|
|
|
- }
|
|
|
-
|
|
|
- size.$dirty = !width || !height;
|
|
|
-
|
|
|
- if (changes)
|
|
|
- this._signal("resize", oldSize);
|
|
|
-
|
|
|
- return changes;
|
|
|
- };
|
|
|
-
|
|
|
- this.onGutterResize = function() {
|
|
|
- var gutterWidth = this.$showGutter ? this.$gutter.offsetWidth : 0;
|
|
|
- if (gutterWidth != this.gutterWidth)
|
|
|
- this.$changes |= this.$updateCachedSize(true, gutterWidth, this.$size.width, this.$size.height);
|
|
|
-
|
|
|
- if (this.session.getUseWrapMode() && this.adjustWrapLimit()) {
|
|
|
- this.$loop.schedule(this.CHANGE_FULL);
|
|
|
- } else if (this.$size.$dirty) {
|
|
|
- this.$loop.schedule(this.CHANGE_FULL);
|
|
|
- } else {
|
|
|
- this.$computeLayerConfig();
|
|
|
- this.$loop.schedule(this.CHANGE_MARKER);
|
|
|
- }
|
|
|
- };
|
|
|
- this.adjustWrapLimit = function() {
|
|
|
- var availableWidth = this.$size.scrollerWidth - this.$padding * 2;
|
|
|
- var limit = Math.floor(availableWidth / this.characterWidth);
|
|
|
- return this.session.adjustWrapLimit(limit, this.$showPrintMargin && this.$printMarginColumn);
|
|
|
- };
|
|
|
- this.setAnimatedScroll = function(shouldAnimate){
|
|
|
- this.setOption("animatedScroll", shouldAnimate);
|
|
|
- };
|
|
|
- this.getAnimatedScroll = function() {
|
|
|
- return this.$animatedScroll;
|
|
|
- };
|
|
|
- this.setShowInvisibles = function(showInvisibles) {
|
|
|
- this.setOption("showInvisibles", showInvisibles);
|
|
|
- };
|
|
|
- this.getShowInvisibles = function() {
|
|
|
- return this.getOption("showInvisibles");
|
|
|
- };
|
|
|
- this.getDisplayIndentGuides = function() {
|
|
|
- return this.getOption("displayIndentGuides");
|
|
|
- };
|
|
|
-
|
|
|
- this.setDisplayIndentGuides = function(display) {
|
|
|
- this.setOption("displayIndentGuides", display);
|
|
|
- };
|
|
|
- this.setShowPrintMargin = function(showPrintMargin) {
|
|
|
- this.setOption("showPrintMargin", showPrintMargin);
|
|
|
- };
|
|
|
- this.getShowPrintMargin = function() {
|
|
|
- return this.getOption("showPrintMargin");
|
|
|
- };
|
|
|
- this.setPrintMarginColumn = function(showPrintMargin) {
|
|
|
- this.setOption("printMarginColumn", showPrintMargin);
|
|
|
- };
|
|
|
- this.getPrintMarginColumn = function() {
|
|
|
- return this.getOption("printMarginColumn");
|
|
|
- };
|
|
|
- this.getShowGutter = function(){
|
|
|
- return this.getOption("showGutter");
|
|
|
- };
|
|
|
- this.setShowGutter = function(show){
|
|
|
- return this.setOption("showGutter", show);
|
|
|
- };
|
|
|
-
|
|
|
- this.getFadeFoldWidgets = function(){
|
|
|
- return this.getOption("fadeFoldWidgets")
|
|
|
- };
|
|
|
-
|
|
|
- this.setFadeFoldWidgets = function(show) {
|
|
|
- this.setOption("fadeFoldWidgets", show);
|
|
|
- };
|
|
|
-
|
|
|
- this.setHighlightGutterLine = function(shouldHighlight) {
|
|
|
- this.setOption("highlightGutterLine", shouldHighlight);
|
|
|
- };
|
|
|
-
|
|
|
- this.getHighlightGutterLine = function() {
|
|
|
- return this.getOption("highlightGutterLine");
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateGutterLineHighlight = function() {
|
|
|
- var pos = this.$cursorLayer.$pixelPos;
|
|
|
- var height = this.layerConfig.lineHeight;
|
|
|
- if (this.session.getUseWrapMode()) {
|
|
|
- var cursor = this.session.selection.getCursor();
|
|
|
- cursor.column = 0;
|
|
|
- pos = this.$cursorLayer.getPixelPosition(cursor, true);
|
|
|
- height *= this.session.getRowLength(cursor.row);
|
|
|
- }
|
|
|
- this.$gutterLineHighlight.style.top = pos.top - this.layerConfig.offset + "px";
|
|
|
- this.$gutterLineHighlight.style.height = height + "px";
|
|
|
- };
|
|
|
-
|
|
|
- this.$updatePrintMargin = function() {
|
|
|
- if (!this.$showPrintMargin && !this.$printMarginEl)
|
|
|
- return;
|
|
|
-
|
|
|
- if (!this.$printMarginEl) {
|
|
|
- var containerEl = dom.createElement("div");
|
|
|
- containerEl.className = "ace_layer ace_print-margin-layer";
|
|
|
- this.$printMarginEl = dom.createElement("div");
|
|
|
- this.$printMarginEl.className = "ace_print-margin";
|
|
|
- containerEl.appendChild(this.$printMarginEl);
|
|
|
- this.content.insertBefore(containerEl, this.content.firstChild);
|
|
|
- }
|
|
|
-
|
|
|
- var style = this.$printMarginEl.style;
|
|
|
- style.left = ((this.characterWidth * this.$printMarginColumn) + this.$padding) + "px";
|
|
|
- style.visibility = this.$showPrintMargin ? "visible" : "hidden";
|
|
|
-
|
|
|
- if (this.session && this.session.$wrap == -1)
|
|
|
- this.adjustWrapLimit();
|
|
|
- };
|
|
|
- this.getContainerElement = function() {
|
|
|
- return this.container;
|
|
|
- };
|
|
|
- this.getMouseEventTarget = function() {
|
|
|
- return this.scroller;
|
|
|
- };
|
|
|
- this.getTextAreaContainer = function() {
|
|
|
- return this.container;
|
|
|
- };
|
|
|
- this.$moveTextAreaToCursor = function() {
|
|
|
- if (!this.$keepTextAreaAtCursor)
|
|
|
- return;
|
|
|
- var config = this.layerConfig;
|
|
|
- var posTop = this.$cursorLayer.$pixelPos.top;
|
|
|
- var posLeft = this.$cursorLayer.$pixelPos.left;
|
|
|
- posTop -= config.offset;
|
|
|
-
|
|
|
- var style = this.textarea.style;
|
|
|
- var h = this.lineHeight;
|
|
|
- if (posTop < 0 || posTop > config.height - h) {
|
|
|
- style.top = style.left = "0";
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var w = this.characterWidth;
|
|
|
- if (this.$composition) {
|
|
|
- var val = this.textarea.value.replace(/^\x01+/, "");
|
|
|
- w *= (this.session.$getStringScreenWidth(val)[0]+2);
|
|
|
- h += 2;
|
|
|
- }
|
|
|
- posLeft -= this.scrollLeft;
|
|
|
- if (posLeft > this.$size.scrollerWidth - w)
|
|
|
- posLeft = this.$size.scrollerWidth - w;
|
|
|
-
|
|
|
- posLeft += this.gutterWidth;
|
|
|
- style.height = h + "px";
|
|
|
- style.width = w + "px";
|
|
|
- style.left = Math.min(posLeft, this.$size.scrollerWidth - w) + "px";
|
|
|
- style.top = Math.min(posTop, this.$size.height - h) + "px";
|
|
|
- };
|
|
|
- this.getFirstVisibleRow = function() {
|
|
|
- return this.layerConfig.firstRow;
|
|
|
- };
|
|
|
- this.getFirstFullyVisibleRow = function() {
|
|
|
- return this.layerConfig.firstRow + (this.layerConfig.offset === 0 ? 0 : 1);
|
|
|
- };
|
|
|
- this.getLastFullyVisibleRow = function() {
|
|
|
- var flint = Math.floor((this.layerConfig.height + this.layerConfig.offset) / this.layerConfig.lineHeight);
|
|
|
- return this.layerConfig.firstRow - 1 + flint;
|
|
|
- };
|
|
|
- this.getLastVisibleRow = function() {
|
|
|
- return this.layerConfig.lastRow;
|
|
|
- };
|
|
|
-
|
|
|
- this.$padding = null;
|
|
|
- this.setPadding = function(padding) {
|
|
|
- this.$padding = padding;
|
|
|
- this.$textLayer.setPadding(padding);
|
|
|
- this.$cursorLayer.setPadding(padding);
|
|
|
- this.$markerFront.setPadding(padding);
|
|
|
- this.$markerBack.setPadding(padding);
|
|
|
- this.$loop.schedule(this.CHANGE_FULL);
|
|
|
- this.$updatePrintMargin();
|
|
|
- };
|
|
|
-
|
|
|
- this.setScrollMargin = function(top, bottom, left, right) {
|
|
|
- var sm = this.scrollMargin;
|
|
|
- sm.top = top|0;
|
|
|
- sm.bottom = bottom|0;
|
|
|
- sm.right = right|0;
|
|
|
- sm.left = left|0;
|
|
|
- sm.v = sm.top + sm.bottom;
|
|
|
- sm.h = sm.left + sm.right;
|
|
|
- if (sm.top && this.scrollTop <= 0 && this.session)
|
|
|
- this.session.setScrollTop(-sm.top);
|
|
|
- this.updateFull();
|
|
|
- };
|
|
|
- this.getHScrollBarAlwaysVisible = function() {
|
|
|
- return this.$hScrollBarAlwaysVisible;
|
|
|
- };
|
|
|
- this.setHScrollBarAlwaysVisible = function(alwaysVisible) {
|
|
|
- this.setOption("hScrollBarAlwaysVisible", alwaysVisible);
|
|
|
- };
|
|
|
- this.getVScrollBarAlwaysVisible = function() {
|
|
|
- return this.$vScrollBarAlwaysVisible;
|
|
|
- };
|
|
|
- this.setVScrollBarAlwaysVisible = function(alwaysVisible) {
|
|
|
- this.setOption("vScrollBarAlwaysVisible", alwaysVisible);
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateScrollBarV = function() {
|
|
|
- var scrollHeight = this.layerConfig.maxHeight;
|
|
|
- var scrollerHeight = this.$size.scrollerHeight;
|
|
|
- if (!this.$maxLines && this.$scrollPastEnd) {
|
|
|
- scrollHeight -= (scrollerHeight - this.lineHeight) * this.$scrollPastEnd;
|
|
|
- if (this.scrollTop > scrollHeight - scrollerHeight) {
|
|
|
- scrollHeight = this.scrollTop + scrollerHeight;
|
|
|
- this.scrollBarV.scrollTop = null;
|
|
|
- }
|
|
|
- }
|
|
|
- this.scrollBarV.setScrollHeight(scrollHeight + this.scrollMargin.v);
|
|
|
- this.scrollBarV.setScrollTop(this.scrollTop + this.scrollMargin.top);
|
|
|
- };
|
|
|
- this.$updateScrollBarH = function() {
|
|
|
- this.scrollBarH.setScrollWidth(this.layerConfig.width + 2 * this.$padding + this.scrollMargin.h);
|
|
|
- this.scrollBarH.setScrollLeft(this.scrollLeft + this.scrollMargin.left);
|
|
|
- };
|
|
|
-
|
|
|
- this.$frozen = false;
|
|
|
- this.freeze = function() {
|
|
|
- this.$frozen = true;
|
|
|
- };
|
|
|
-
|
|
|
- this.unfreeze = function() {
|
|
|
- this.$frozen = false;
|
|
|
- };
|
|
|
-
|
|
|
- this.$renderChanges = function(changes, force) {
|
|
|
- if (this.$changes) {
|
|
|
- changes |= this.$changes;
|
|
|
- this.$changes = 0;
|
|
|
- }
|
|
|
- if ((!this.session || !this.container.offsetWidth || this.$frozen) || (!changes && !force)) {
|
|
|
- this.$changes |= changes;
|
|
|
- return;
|
|
|
- }
|
|
|
- if (this.$size.$dirty) {
|
|
|
- this.$changes |= changes;
|
|
|
- return this.onResize(true);
|
|
|
- }
|
|
|
- if (!this.lineHeight) {
|
|
|
- this.$textLayer.checkForSizeChanges();
|
|
|
- }
|
|
|
-
|
|
|
- this._signal("beforeRender");
|
|
|
- var config = this.layerConfig;
|
|
|
- if (changes & this.CHANGE_FULL ||
|
|
|
- changes & this.CHANGE_SIZE ||
|
|
|
- changes & this.CHANGE_TEXT ||
|
|
|
- changes & this.CHANGE_LINES ||
|
|
|
- changes & this.CHANGE_SCROLL ||
|
|
|
- changes & this.CHANGE_H_SCROLL
|
|
|
- ) {
|
|
|
- changes |= this.$computeLayerConfig();
|
|
|
- if (config.firstRow != this.layerConfig.firstRow && config.firstRowScreen == this.layerConfig.firstRowScreen) {
|
|
|
- var st = this.scrollTop + (config.firstRow - this.layerConfig.firstRow) * this.lineHeight;
|
|
|
- if (st > 0) {
|
|
|
- this.scrollTop = st;
|
|
|
- changes = changes | this.CHANGE_SCROLL;
|
|
|
- changes |= this.$computeLayerConfig();
|
|
|
- }
|
|
|
- }
|
|
|
- config = this.layerConfig;
|
|
|
- this.$updateScrollBarV();
|
|
|
- if (changes & this.CHANGE_H_SCROLL)
|
|
|
- this.$updateScrollBarH();
|
|
|
- this.$gutterLayer.element.style.marginTop = (-config.offset) + "px";
|
|
|
- this.content.style.marginTop = (-config.offset) + "px";
|
|
|
- this.content.style.width = config.width + 2 * this.$padding + "px";
|
|
|
- this.content.style.height = config.minHeight + "px";
|
|
|
- }
|
|
|
- if (changes & this.CHANGE_H_SCROLL) {
|
|
|
- this.content.style.marginLeft = -this.scrollLeft + "px";
|
|
|
- this.scroller.className = this.scrollLeft <= 0 ? "ace_scroller" : "ace_scroller ace_scroll-left";
|
|
|
- }
|
|
|
- if (changes & this.CHANGE_FULL) {
|
|
|
- this.$textLayer.update(config);
|
|
|
- if (this.$showGutter)
|
|
|
- this.$gutterLayer.update(config);
|
|
|
- this.$markerBack.update(config);
|
|
|
- this.$markerFront.update(config);
|
|
|
- this.$cursorLayer.update(config);
|
|
|
- this.$moveTextAreaToCursor();
|
|
|
- this.$highlightGutterLine && this.$updateGutterLineHighlight();
|
|
|
- this._signal("afterRender");
|
|
|
- return;
|
|
|
- }
|
|
|
- if (changes & this.CHANGE_SCROLL) {
|
|
|
- if (changes & this.CHANGE_TEXT || changes & this.CHANGE_LINES)
|
|
|
- this.$textLayer.update(config);
|
|
|
- else
|
|
|
- this.$textLayer.scrollLines(config);
|
|
|
-
|
|
|
- if (this.$showGutter)
|
|
|
- this.$gutterLayer.update(config);
|
|
|
- this.$markerBack.update(config);
|
|
|
- this.$markerFront.update(config);
|
|
|
- this.$cursorLayer.update(config);
|
|
|
- this.$highlightGutterLine && this.$updateGutterLineHighlight();
|
|
|
- this.$moveTextAreaToCursor();
|
|
|
- this._signal("afterRender");
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (changes & this.CHANGE_TEXT) {
|
|
|
- this.$textLayer.update(config);
|
|
|
- if (this.$showGutter)
|
|
|
- this.$gutterLayer.update(config);
|
|
|
- }
|
|
|
- else if (changes & this.CHANGE_LINES) {
|
|
|
- if (this.$updateLines() || (changes & this.CHANGE_GUTTER) && this.$showGutter)
|
|
|
- this.$gutterLayer.update(config);
|
|
|
- }
|
|
|
- else if (changes & this.CHANGE_TEXT || changes & this.CHANGE_GUTTER) {
|
|
|
- if (this.$showGutter)
|
|
|
- this.$gutterLayer.update(config);
|
|
|
- }
|
|
|
-
|
|
|
- if (changes & this.CHANGE_CURSOR) {
|
|
|
- this.$cursorLayer.update(config);
|
|
|
- this.$moveTextAreaToCursor();
|
|
|
- this.$highlightGutterLine && this.$updateGutterLineHighlight();
|
|
|
- }
|
|
|
-
|
|
|
- if (changes & (this.CHANGE_MARKER | this.CHANGE_MARKER_FRONT)) {
|
|
|
- this.$markerFront.update(config);
|
|
|
- }
|
|
|
-
|
|
|
- if (changes & (this.CHANGE_MARKER | this.CHANGE_MARKER_BACK)) {
|
|
|
- this.$markerBack.update(config);
|
|
|
- }
|
|
|
-
|
|
|
- this._signal("afterRender");
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- this.$autosize = function() {
|
|
|
- var height = this.session.getScreenLength() * this.lineHeight;
|
|
|
- var maxHeight = this.$maxLines * this.lineHeight;
|
|
|
- var desiredHeight = Math.max(
|
|
|
- (this.$minLines||1) * this.lineHeight,
|
|
|
- Math.min(maxHeight, height)
|
|
|
- ) + this.scrollMargin.v + (this.$extraHeight || 0);
|
|
|
- if (this.$horizScroll)
|
|
|
- desiredHeight += this.scrollBarH.getHeight();
|
|
|
- var vScroll = height > maxHeight;
|
|
|
-
|
|
|
- if (desiredHeight != this.desiredHeight ||
|
|
|
- this.$size.height != this.desiredHeight || vScroll != this.$vScroll) {
|
|
|
- if (vScroll != this.$vScroll) {
|
|
|
- this.$vScroll = vScroll;
|
|
|
- this.scrollBarV.setVisible(vScroll);
|
|
|
- }
|
|
|
-
|
|
|
- var w = this.container.clientWidth;
|
|
|
- this.container.style.height = desiredHeight + "px";
|
|
|
- this.$updateCachedSize(true, this.$gutterWidth, w, desiredHeight);
|
|
|
- this.desiredHeight = desiredHeight;
|
|
|
-
|
|
|
- this._signal("autosize");
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$computeLayerConfig = function() {
|
|
|
- var session = this.session;
|
|
|
- var size = this.$size;
|
|
|
-
|
|
|
- var hideScrollbars = size.height <= 2 * this.lineHeight;
|
|
|
- var screenLines = this.session.getScreenLength();
|
|
|
- var maxHeight = screenLines * this.lineHeight;
|
|
|
-
|
|
|
- var longestLine = this.$getLongestLine();
|
|
|
-
|
|
|
- var horizScroll = !hideScrollbars && (this.$hScrollBarAlwaysVisible ||
|
|
|
- size.scrollerWidth - longestLine - 2 * this.$padding < 0);
|
|
|
-
|
|
|
- var hScrollChanged = this.$horizScroll !== horizScroll;
|
|
|
- if (hScrollChanged) {
|
|
|
- this.$horizScroll = horizScroll;
|
|
|
- this.scrollBarH.setVisible(horizScroll);
|
|
|
- }
|
|
|
- var vScrollBefore = this.$vScroll; // autosize can change vscroll value in which case we need to update longestLine
|
|
|
- if (this.$maxLines && this.lineHeight > 1)
|
|
|
- this.$autosize();
|
|
|
-
|
|
|
- var offset = this.scrollTop % this.lineHeight;
|
|
|
- var minHeight = size.scrollerHeight + this.lineHeight;
|
|
|
-
|
|
|
- var scrollPastEnd = !this.$maxLines && this.$scrollPastEnd
|
|
|
- ? (size.scrollerHeight - this.lineHeight) * this.$scrollPastEnd
|
|
|
- : 0;
|
|
|
- maxHeight += scrollPastEnd;
|
|
|
-
|
|
|
- var sm = this.scrollMargin;
|
|
|
- this.session.setScrollTop(Math.max(-sm.top,
|
|
|
- Math.min(this.scrollTop, maxHeight - size.scrollerHeight + sm.bottom)));
|
|
|
-
|
|
|
- this.session.setScrollLeft(Math.max(-sm.left, Math.min(this.scrollLeft,
|
|
|
- longestLine + 2 * this.$padding - size.scrollerWidth + sm.right)));
|
|
|
-
|
|
|
- var vScroll = !hideScrollbars && (this.$vScrollBarAlwaysVisible ||
|
|
|
- size.scrollerHeight - maxHeight + scrollPastEnd < 0 || this.scrollTop > sm.top);
|
|
|
- var vScrollChanged = vScrollBefore !== vScroll;
|
|
|
- if (vScrollChanged) {
|
|
|
- this.$vScroll = vScroll;
|
|
|
- this.scrollBarV.setVisible(vScroll);
|
|
|
- }
|
|
|
-
|
|
|
- var lineCount = Math.ceil(minHeight / this.lineHeight) - 1;
|
|
|
- var firstRow = Math.max(0, Math.round((this.scrollTop - offset) / this.lineHeight));
|
|
|
- var lastRow = firstRow + lineCount;
|
|
|
- var firstRowScreen, firstRowHeight;
|
|
|
- var lineHeight = this.lineHeight;
|
|
|
- firstRow = session.screenToDocumentRow(firstRow, 0);
|
|
|
- var foldLine = session.getFoldLine(firstRow);
|
|
|
- if (foldLine) {
|
|
|
- firstRow = foldLine.start.row;
|
|
|
- }
|
|
|
-
|
|
|
- firstRowScreen = session.documentToScreenRow(firstRow, 0);
|
|
|
- firstRowHeight = session.getRowLength(firstRow) * lineHeight;
|
|
|
-
|
|
|
- lastRow = Math.min(session.screenToDocumentRow(lastRow, 0), session.getLength() - 1);
|
|
|
- minHeight = size.scrollerHeight + session.getRowLength(lastRow) * lineHeight +
|
|
|
- firstRowHeight;
|
|
|
-
|
|
|
- offset = this.scrollTop - firstRowScreen * lineHeight;
|
|
|
-
|
|
|
- var changes = 0;
|
|
|
- if (this.layerConfig.width != longestLine)
|
|
|
- changes = this.CHANGE_H_SCROLL;
|
|
|
- if (hScrollChanged || vScrollChanged) {
|
|
|
- changes = this.$updateCachedSize(true, this.gutterWidth, size.width, size.height);
|
|
|
- this._signal("scrollbarVisibilityChanged");
|
|
|
- if (vScrollChanged)
|
|
|
- longestLine = this.$getLongestLine();
|
|
|
- }
|
|
|
-
|
|
|
- this.layerConfig = {
|
|
|
- width : longestLine,
|
|
|
- padding : this.$padding,
|
|
|
- firstRow : firstRow,
|
|
|
- firstRowScreen: firstRowScreen,
|
|
|
- lastRow : lastRow,
|
|
|
- lineHeight : lineHeight,
|
|
|
- characterWidth : this.characterWidth,
|
|
|
- minHeight : minHeight,
|
|
|
- maxHeight : maxHeight,
|
|
|
- offset : offset,
|
|
|
- gutterOffset : Math.max(0, Math.ceil((offset + size.height - size.scrollerHeight) / lineHeight)),
|
|
|
- height : this.$size.scrollerHeight
|
|
|
- };
|
|
|
-
|
|
|
- return changes;
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateLines = function() {
|
|
|
- var firstRow = this.$changedLines.firstRow;
|
|
|
- var lastRow = this.$changedLines.lastRow;
|
|
|
- this.$changedLines = null;
|
|
|
-
|
|
|
- var layerConfig = this.layerConfig;
|
|
|
-
|
|
|
- if (firstRow > layerConfig.lastRow + 1) { return; }
|
|
|
- if (lastRow < layerConfig.firstRow) { return; }
|
|
|
- if (lastRow === Infinity) {
|
|
|
- if (this.$showGutter)
|
|
|
- this.$gutterLayer.update(layerConfig);
|
|
|
- this.$textLayer.update(layerConfig);
|
|
|
- return;
|
|
|
- }
|
|
|
- this.$textLayer.updateLines(layerConfig, firstRow, lastRow);
|
|
|
- return true;
|
|
|
- };
|
|
|
-
|
|
|
- this.$getLongestLine = function() {
|
|
|
- var charCount = this.session.getScreenWidth();
|
|
|
- if (this.showInvisibles && !this.session.$useWrapMode)
|
|
|
- charCount += 1;
|
|
|
-
|
|
|
- return Math.max(this.$size.scrollerWidth - 2 * this.$padding, Math.round(charCount * this.characterWidth));
|
|
|
- };
|
|
|
- this.updateFrontMarkers = function() {
|
|
|
- this.$markerFront.setMarkers(this.session.getMarkers(true));
|
|
|
- this.$loop.schedule(this.CHANGE_MARKER_FRONT);
|
|
|
- };
|
|
|
- this.updateBackMarkers = function() {
|
|
|
- this.$markerBack.setMarkers(this.session.getMarkers());
|
|
|
- this.$loop.schedule(this.CHANGE_MARKER_BACK);
|
|
|
- };
|
|
|
- this.addGutterDecoration = function(row, className){
|
|
|
- this.$gutterLayer.addGutterDecoration(row, className);
|
|
|
- };
|
|
|
- this.removeGutterDecoration = function(row, className){
|
|
|
- this.$gutterLayer.removeGutterDecoration(row, className);
|
|
|
- };
|
|
|
- this.updateBreakpoints = function(rows) {
|
|
|
- this.$loop.schedule(this.CHANGE_GUTTER);
|
|
|
- };
|
|
|
- this.setAnnotations = function(annotations) {
|
|
|
- this.$gutterLayer.setAnnotations(annotations);
|
|
|
- this.$loop.schedule(this.CHANGE_GUTTER);
|
|
|
- };
|
|
|
- this.updateCursor = function() {
|
|
|
- this.$loop.schedule(this.CHANGE_CURSOR);
|
|
|
- };
|
|
|
- this.hideCursor = function() {
|
|
|
- this.$cursorLayer.hideCursor();
|
|
|
- };
|
|
|
- this.showCursor = function() {
|
|
|
- this.$cursorLayer.showCursor();
|
|
|
- };
|
|
|
-
|
|
|
- this.scrollSelectionIntoView = function(anchor, lead, offset) {
|
|
|
- this.scrollCursorIntoView(anchor, offset);
|
|
|
- this.scrollCursorIntoView(lead, offset);
|
|
|
- };
|
|
|
- this.scrollCursorIntoView = function(cursor, offset, $viewMargin) {
|
|
|
- if (this.$size.scrollerHeight === 0)
|
|
|
- return;
|
|
|
-
|
|
|
- var pos = this.$cursorLayer.getPixelPosition(cursor);
|
|
|
-
|
|
|
- var left = pos.left;
|
|
|
- var top = pos.top;
|
|
|
-
|
|
|
- var topMargin = $viewMargin && $viewMargin.top || 0;
|
|
|
- var bottomMargin = $viewMargin && $viewMargin.bottom || 0;
|
|
|
-
|
|
|
- var scrollTop = this.$scrollAnimation ? this.session.getScrollTop() : this.scrollTop;
|
|
|
-
|
|
|
- if (scrollTop + topMargin > top) {
|
|
|
- if (offset)
|
|
|
- top -= offset * this.$size.scrollerHeight;
|
|
|
- if (top === 0)
|
|
|
- top = -this.scrollMargin.top;
|
|
|
- this.session.setScrollTop(top);
|
|
|
- } else if (scrollTop + this.$size.scrollerHeight - bottomMargin < top + this.lineHeight) {
|
|
|
- if (offset)
|
|
|
- top += offset * this.$size.scrollerHeight;
|
|
|
- this.session.setScrollTop(top + this.lineHeight - this.$size.scrollerHeight);
|
|
|
- }
|
|
|
-
|
|
|
- var scrollLeft = this.scrollLeft;
|
|
|
-
|
|
|
- if (scrollLeft > left) {
|
|
|
- if (left < this.$padding + 2 * this.layerConfig.characterWidth)
|
|
|
- left = -this.scrollMargin.left;
|
|
|
- this.session.setScrollLeft(left);
|
|
|
- } else if (scrollLeft + this.$size.scrollerWidth < left + this.characterWidth) {
|
|
|
- this.session.setScrollLeft(Math.round(left + this.characterWidth - this.$size.scrollerWidth));
|
|
|
- } else if (scrollLeft <= this.$padding && left - scrollLeft < this.characterWidth) {
|
|
|
- this.session.setScrollLeft(0);
|
|
|
- }
|
|
|
- };
|
|
|
- this.getScrollTop = function() {
|
|
|
- return this.session.getScrollTop();
|
|
|
- };
|
|
|
- this.getScrollLeft = function() {
|
|
|
- return this.session.getScrollLeft();
|
|
|
- };
|
|
|
- this.getScrollTopRow = function() {
|
|
|
- return this.scrollTop / this.lineHeight;
|
|
|
- };
|
|
|
- this.getScrollBottomRow = function() {
|
|
|
- return Math.max(0, Math.floor((this.scrollTop + this.$size.scrollerHeight) / this.lineHeight) - 1);
|
|
|
- };
|
|
|
- this.scrollToRow = function(row) {
|
|
|
- this.session.setScrollTop(row * this.lineHeight);
|
|
|
- };
|
|
|
-
|
|
|
- this.alignCursor = function(cursor, alignment) {
|
|
|
- if (typeof cursor == "number")
|
|
|
- cursor = {row: cursor, column: 0};
|
|
|
-
|
|
|
- var pos = this.$cursorLayer.getPixelPosition(cursor);
|
|
|
- var h = this.$size.scrollerHeight - this.lineHeight;
|
|
|
- var offset = pos.top - h * (alignment || 0);
|
|
|
-
|
|
|
- this.session.setScrollTop(offset);
|
|
|
- return offset;
|
|
|
- };
|
|
|
-
|
|
|
- this.STEPS = 8;
|
|
|
- this.$calcSteps = function(fromValue, toValue){
|
|
|
- var i = 0;
|
|
|
- var l = this.STEPS;
|
|
|
- var steps = [];
|
|
|
-
|
|
|
- var func = function(t, x_min, dx) {
|
|
|
- return dx * (Math.pow(t - 1, 3) + 1) + x_min;
|
|
|
- };
|
|
|
-
|
|
|
- for (i = 0; i < l; ++i)
|
|
|
- steps.push(func(i / this.STEPS, fromValue, toValue - fromValue));
|
|
|
-
|
|
|
- return steps;
|
|
|
- };
|
|
|
- this.scrollToLine = function(line, center, animate, callback) {
|
|
|
- var pos = this.$cursorLayer.getPixelPosition({row: line, column: 0});
|
|
|
- var offset = pos.top;
|
|
|
- if (center)
|
|
|
- offset -= this.$size.scrollerHeight / 2;
|
|
|
-
|
|
|
- var initialScroll = this.scrollTop;
|
|
|
- this.session.setScrollTop(offset);
|
|
|
- if (animate !== false)
|
|
|
- this.animateScrolling(initialScroll, callback);
|
|
|
- };
|
|
|
-
|
|
|
- this.animateScrolling = function(fromValue, callback) {
|
|
|
- var toValue = this.scrollTop;
|
|
|
- if (!this.$animatedScroll)
|
|
|
- return;
|
|
|
- var _self = this;
|
|
|
-
|
|
|
- if (fromValue == toValue)
|
|
|
- return;
|
|
|
-
|
|
|
- if (this.$scrollAnimation) {
|
|
|
- var oldSteps = this.$scrollAnimation.steps;
|
|
|
- if (oldSteps.length) {
|
|
|
- fromValue = oldSteps[0];
|
|
|
- if (fromValue == toValue)
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- var steps = _self.$calcSteps(fromValue, toValue);
|
|
|
- this.$scrollAnimation = {from: fromValue, to: toValue, steps: steps};
|
|
|
-
|
|
|
- clearInterval(this.$timer);
|
|
|
-
|
|
|
- _self.session.setScrollTop(steps.shift());
|
|
|
- _self.session.$scrollTop = toValue;
|
|
|
- this.$timer = setInterval(function() {
|
|
|
- if (steps.length) {
|
|
|
- _self.session.setScrollTop(steps.shift());
|
|
|
- _self.session.$scrollTop = toValue;
|
|
|
- } else if (toValue != null) {
|
|
|
- _self.session.$scrollTop = -1;
|
|
|
- _self.session.setScrollTop(toValue);
|
|
|
- toValue = null;
|
|
|
- } else {
|
|
|
- _self.$timer = clearInterval(_self.$timer);
|
|
|
- _self.$scrollAnimation = null;
|
|
|
- callback && callback();
|
|
|
- }
|
|
|
- }, 10);
|
|
|
- };
|
|
|
- this.scrollToY = function(scrollTop) {
|
|
|
- if (this.scrollTop !== scrollTop) {
|
|
|
- this.$loop.schedule(this.CHANGE_SCROLL);
|
|
|
- this.scrollTop = scrollTop;
|
|
|
- }
|
|
|
- };
|
|
|
- this.scrollToX = function(scrollLeft) {
|
|
|
- if (this.scrollLeft !== scrollLeft)
|
|
|
- this.scrollLeft = scrollLeft;
|
|
|
- this.$loop.schedule(this.CHANGE_H_SCROLL);
|
|
|
- };
|
|
|
- this.scrollTo = function(x, y) {
|
|
|
- this.session.setScrollTop(y);
|
|
|
- this.session.setScrollLeft(y);
|
|
|
- };
|
|
|
- this.scrollBy = function(deltaX, deltaY) {
|
|
|
- deltaY && this.session.setScrollTop(this.session.getScrollTop() + deltaY);
|
|
|
- deltaX && this.session.setScrollLeft(this.session.getScrollLeft() + deltaX);
|
|
|
- };
|
|
|
- this.isScrollableBy = function(deltaX, deltaY) {
|
|
|
- if (deltaY < 0 && this.session.getScrollTop() >= 1 - this.scrollMargin.top)
|
|
|
- return true;
|
|
|
- if (deltaY > 0 && this.session.getScrollTop() + this.$size.scrollerHeight
|
|
|
- - this.layerConfig.maxHeight < -1 + this.scrollMargin.bottom)
|
|
|
- return true;
|
|
|
- if (deltaX < 0 && this.session.getScrollLeft() >= 1 - this.scrollMargin.left)
|
|
|
- return true;
|
|
|
- if (deltaX > 0 && this.session.getScrollLeft() + this.$size.scrollerWidth
|
|
|
- - this.layerConfig.width < -1 + this.scrollMargin.right)
|
|
|
- return true;
|
|
|
- };
|
|
|
-
|
|
|
- this.pixelToScreenCoordinates = function(x, y) {
|
|
|
- var canvasPos = this.scroller.getBoundingClientRect();
|
|
|
-
|
|
|
- var offset = (x + this.scrollLeft - canvasPos.left - this.$padding) / this.characterWidth;
|
|
|
- var row = Math.floor((y + this.scrollTop - canvasPos.top) / this.lineHeight);
|
|
|
- var col = Math.round(offset);
|
|
|
-
|
|
|
- return {row: row, column: col, side: offset - col > 0 ? 1 : -1};
|
|
|
- };
|
|
|
-
|
|
|
- this.screenToTextCoordinates = function(x, y) {
|
|
|
- var canvasPos = this.scroller.getBoundingClientRect();
|
|
|
-
|
|
|
- var col = Math.round(
|
|
|
- (x + this.scrollLeft - canvasPos.left - this.$padding) / this.characterWidth
|
|
|
- );
|
|
|
-
|
|
|
- var row = (y + this.scrollTop - canvasPos.top) / this.lineHeight;
|
|
|
-
|
|
|
- return this.session.screenToDocumentPosition(row, Math.max(col, 0));
|
|
|
- };
|
|
|
- this.textToScreenCoordinates = function(row, column) {
|
|
|
- var canvasPos = this.scroller.getBoundingClientRect();
|
|
|
- var pos = this.session.documentToScreenPosition(row, column);
|
|
|
-
|
|
|
- var x = this.$padding + Math.round(pos.column * this.characterWidth);
|
|
|
- var y = pos.row * this.lineHeight;
|
|
|
-
|
|
|
- return {
|
|
|
- pageX: canvasPos.left + x - this.scrollLeft,
|
|
|
- pageY: canvasPos.top + y - this.scrollTop
|
|
|
- };
|
|
|
- };
|
|
|
- this.visualizeFocus = function() {
|
|
|
- dom.addCssClass(this.container, "ace_focus");
|
|
|
- };
|
|
|
- this.visualizeBlur = function() {
|
|
|
- dom.removeCssClass(this.container, "ace_focus");
|
|
|
- };
|
|
|
- this.showComposition = function(position) {
|
|
|
- if (!this.$composition)
|
|
|
- this.$composition = {
|
|
|
- keepTextAreaAtCursor: this.$keepTextAreaAtCursor,
|
|
|
- cssText: this.textarea.style.cssText
|
|
|
- };
|
|
|
-
|
|
|
- this.$keepTextAreaAtCursor = true;
|
|
|
- dom.addCssClass(this.textarea, "ace_composition");
|
|
|
- this.textarea.style.cssText = "";
|
|
|
- this.$moveTextAreaToCursor();
|
|
|
- };
|
|
|
- this.setCompositionText = function(text) {
|
|
|
- this.$moveTextAreaToCursor();
|
|
|
- };
|
|
|
- this.hideComposition = function() {
|
|
|
- if (!this.$composition)
|
|
|
- return;
|
|
|
-
|
|
|
- dom.removeCssClass(this.textarea, "ace_composition");
|
|
|
- this.$keepTextAreaAtCursor = this.$composition.keepTextAreaAtCursor;
|
|
|
- this.textarea.style.cssText = this.$composition.cssText;
|
|
|
- this.$composition = null;
|
|
|
- };
|
|
|
- this.setTheme = function(theme, cb) {
|
|
|
- var _self = this;
|
|
|
- this.$themeId = theme;
|
|
|
- _self._dispatchEvent('themeChange',{theme:theme});
|
|
|
-
|
|
|
- if (!theme || typeof theme == "string") {
|
|
|
- var moduleName = theme || this.$options.theme.initialValue;
|
|
|
- config.loadModule(["theme", moduleName], afterLoad);
|
|
|
- } else {
|
|
|
- afterLoad(theme);
|
|
|
- }
|
|
|
-
|
|
|
- function afterLoad(module) {
|
|
|
- if (_self.$themeId != theme)
|
|
|
- return cb && cb();
|
|
|
- if (!module.cssClass)
|
|
|
- return;
|
|
|
- dom.importCssString(
|
|
|
- module.cssText,
|
|
|
- module.cssClass,
|
|
|
- _self.container.ownerDocument
|
|
|
- );
|
|
|
-
|
|
|
- if (_self.theme)
|
|
|
- dom.removeCssClass(_self.container, _self.theme.cssClass);
|
|
|
-
|
|
|
- var padding = "padding" in module ? module.padding
|
|
|
- : "padding" in (_self.theme || {}) ? 4 : _self.$padding;
|
|
|
- if (_self.$padding && padding != _self.$padding)
|
|
|
- _self.setPadding(padding);
|
|
|
- _self.$theme = module.cssClass;
|
|
|
-
|
|
|
- _self.theme = module;
|
|
|
- dom.addCssClass(_self.container, module.cssClass);
|
|
|
- dom.setCssClass(_self.container, "ace_dark", module.isDark);
|
|
|
- if (_self.$size) {
|
|
|
- _self.$size.width = 0;
|
|
|
- _self.$updateSizeAsync();
|
|
|
- }
|
|
|
-
|
|
|
- _self._dispatchEvent('themeLoaded', {theme:module});
|
|
|
- cb && cb();
|
|
|
- }
|
|
|
- };
|
|
|
- this.getTheme = function() {
|
|
|
- return this.$themeId;
|
|
|
- };
|
|
|
- this.setStyle = function(style, include) {
|
|
|
- dom.setCssClass(this.container, style, include !== false);
|
|
|
- };
|
|
|
- this.unsetStyle = function(style) {
|
|
|
- dom.removeCssClass(this.container, style);
|
|
|
- };
|
|
|
-
|
|
|
- this.setCursorStyle = function(style) {
|
|
|
- if (this.scroller.style.cursor != style)
|
|
|
- this.scroller.style.cursor = style;
|
|
|
- };
|
|
|
- this.setMouseCursor = function(cursorStyle) {
|
|
|
- this.scroller.style.cursor = cursorStyle;
|
|
|
- };
|
|
|
- this.destroy = function() {
|
|
|
- this.$textLayer.destroy();
|
|
|
- this.$cursorLayer.destroy();
|
|
|
- };
|
|
|
-
|
|
|
-}).call(VirtualRenderer.prototype);
|
|
|
-
|
|
|
-
|
|
|
-config.defineOptions(VirtualRenderer.prototype, "renderer", {
|
|
|
- animatedScroll: {initialValue: false},
|
|
|
- showInvisibles: {
|
|
|
- set: function(value) {
|
|
|
- if (this.$textLayer.setShowInvisibles(value))
|
|
|
- this.$loop.schedule(this.CHANGE_TEXT);
|
|
|
- },
|
|
|
- initialValue: false
|
|
|
- },
|
|
|
- showPrintMargin: {
|
|
|
- set: function() { this.$updatePrintMargin(); },
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- printMarginColumn: {
|
|
|
- set: function() { this.$updatePrintMargin(); },
|
|
|
- initialValue: 80
|
|
|
- },
|
|
|
- printMargin: {
|
|
|
- set: function(val) {
|
|
|
- if (typeof val == "number")
|
|
|
- this.$printMarginColumn = val;
|
|
|
- this.$showPrintMargin = !!val;
|
|
|
- this.$updatePrintMargin();
|
|
|
- },
|
|
|
- get: function() {
|
|
|
- return this.$showPrintMargin && this.$printMarginColumn;
|
|
|
- }
|
|
|
- },
|
|
|
- showGutter: {
|
|
|
- set: function(show){
|
|
|
- this.$gutter.style.display = show ? "block" : "none";
|
|
|
- this.$loop.schedule(this.CHANGE_FULL);
|
|
|
- this.onGutterResize();
|
|
|
- },
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- fadeFoldWidgets: {
|
|
|
- set: function(show) {
|
|
|
- dom.setCssClass(this.$gutter, "ace_fade-fold-widgets", show);
|
|
|
- },
|
|
|
- initialValue: false
|
|
|
- },
|
|
|
- showFoldWidgets: {
|
|
|
- set: function(show) {this.$gutterLayer.setShowFoldWidgets(show)},
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- showLineNumbers: {
|
|
|
- set: function(show) {
|
|
|
- this.$gutterLayer.setShowLineNumbers(show);
|
|
|
- this.$loop.schedule(this.CHANGE_GUTTER);
|
|
|
- },
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- displayIndentGuides: {
|
|
|
- set: function(show) {
|
|
|
- if (this.$textLayer.setDisplayIndentGuides(show))
|
|
|
- this.$loop.schedule(this.CHANGE_TEXT);
|
|
|
- },
|
|
|
- initialValue: true
|
|
|
- },
|
|
|
- highlightGutterLine: {
|
|
|
- set: function(shouldHighlight) {
|
|
|
- if (!this.$gutterLineHighlight) {
|
|
|
- this.$gutterLineHighlight = dom.createElement("div");
|
|
|
- this.$gutterLineHighlight.className = "ace_gutter-active-line";
|
|
|
- this.$gutter.appendChild(this.$gutterLineHighlight);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- this.$gutterLineHighlight.style.display = shouldHighlight ? "" : "none";
|
|
|
- if (this.$cursorLayer.$pixelPos)
|
|
|
- this.$updateGutterLineHighlight();
|
|
|
- },
|
|
|
- initialValue: false,
|
|
|
- value: true
|
|
|
- },
|
|
|
- hScrollBarAlwaysVisible: {
|
|
|
- set: function(val) {
|
|
|
- if (!this.$hScrollBarAlwaysVisible || !this.$horizScroll)
|
|
|
- this.$loop.schedule(this.CHANGE_SCROLL);
|
|
|
- },
|
|
|
- initialValue: false
|
|
|
- },
|
|
|
- vScrollBarAlwaysVisible: {
|
|
|
- set: function(val) {
|
|
|
- if (!this.$vScrollBarAlwaysVisible || !this.$vScroll)
|
|
|
- this.$loop.schedule(this.CHANGE_SCROLL);
|
|
|
- },
|
|
|
- initialValue: false
|
|
|
- },
|
|
|
- fontSize: {
|
|
|
- set: function(size) {
|
|
|
- if (typeof size == "number")
|
|
|
- size = size + "px";
|
|
|
- this.container.style.fontSize = size;
|
|
|
- this.updateFontSize();
|
|
|
- },
|
|
|
- initialValue: 12
|
|
|
- },
|
|
|
- fontFamily: {
|
|
|
- set: function(name) {
|
|
|
- this.container.style.fontFamily = name;
|
|
|
- this.updateFontSize();
|
|
|
- }
|
|
|
- },
|
|
|
- maxLines: {
|
|
|
- set: function(val) {
|
|
|
- this.updateFull();
|
|
|
- }
|
|
|
- },
|
|
|
- minLines: {
|
|
|
- set: function(val) {
|
|
|
- this.updateFull();
|
|
|
- }
|
|
|
- },
|
|
|
- scrollPastEnd: {
|
|
|
- set: function(val) {
|
|
|
- val = +val || 0;
|
|
|
- if (this.$scrollPastEnd == val)
|
|
|
- return;
|
|
|
- this.$scrollPastEnd = val;
|
|
|
- this.$loop.schedule(this.CHANGE_SCROLL);
|
|
|
- },
|
|
|
- initialValue: 0,
|
|
|
- handlesSet: true
|
|
|
- },
|
|
|
- fixedWidthGutter: {
|
|
|
- set: function(val) {
|
|
|
- this.$gutterLayer.$fixedWidth = !!val;
|
|
|
- this.$loop.schedule(this.CHANGE_GUTTER);
|
|
|
- }
|
|
|
- },
|
|
|
- theme: {
|
|
|
- set: function(val) { this.setTheme(val) },
|
|
|
- get: function() { return this.$themeId || this.theme; },
|
|
|
- initialValue: "./theme/textmate",
|
|
|
- handlesSet: true
|
|
|
- }
|
|
|
-});
|
|
|
-
|
|
|
-exports.VirtualRenderer = VirtualRenderer;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/worker/worker_client",["require","exports","module","ace/lib/oop","ace/lib/net","ace/lib/event_emitter","ace/config"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var net = require("../lib/net");
|
|
|
-var EventEmitter = require("../lib/event_emitter").EventEmitter;
|
|
|
-var config = require("../config");
|
|
|
-
|
|
|
-var WorkerClient = function(topLevelNamespaces, mod, classname, workerUrl) {
|
|
|
- this.$sendDeltaQueue = this.$sendDeltaQueue.bind(this);
|
|
|
- this.changeListener = this.changeListener.bind(this);
|
|
|
- this.onMessage = this.onMessage.bind(this);
|
|
|
- if (require.nameToUrl && !require.toUrl)
|
|
|
- require.toUrl = require.nameToUrl;
|
|
|
-
|
|
|
- if (config.get("packaged") || !require.toUrl) {
|
|
|
- workerUrl = workerUrl || config.moduleUrl(mod, "worker");
|
|
|
- } else {
|
|
|
- var normalizePath = this.$normalizePath;
|
|
|
- workerUrl = workerUrl || normalizePath(require.toUrl("ace/worker/worker.js", null, "_"));
|
|
|
-
|
|
|
- var tlns = {};
|
|
|
- topLevelNamespaces.forEach(function(ns) {
|
|
|
- tlns[ns] = normalizePath(require.toUrl(ns, null, "_").replace(/(\.js)?(\?.*)?$/, ""));
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- try {
|
|
|
- this.$worker = new Worker(workerUrl);
|
|
|
- } catch(e) {
|
|
|
- if (e instanceof window.DOMException) {
|
|
|
- var blob = this.$workerBlob(workerUrl);
|
|
|
- var URL = window.URL || window.webkitURL;
|
|
|
- var blobURL = URL.createObjectURL(blob);
|
|
|
-
|
|
|
- this.$worker = new Worker(blobURL);
|
|
|
- URL.revokeObjectURL(blobURL);
|
|
|
- } else {
|
|
|
- throw e;
|
|
|
- }
|
|
|
- }
|
|
|
- this.$worker.postMessage({
|
|
|
- init : true,
|
|
|
- tlns : tlns,
|
|
|
- module : mod,
|
|
|
- classname : classname
|
|
|
- });
|
|
|
-
|
|
|
- this.callbackId = 1;
|
|
|
- this.callbacks = {};
|
|
|
-
|
|
|
- this.$worker.onmessage = this.onMessage;
|
|
|
-};
|
|
|
-
|
|
|
-(function(){
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
-
|
|
|
- this.onMessage = function(e) {
|
|
|
- var msg = e.data;
|
|
|
- switch(msg.type) {
|
|
|
- case "event":
|
|
|
- this._signal(msg.name, {data: msg.data});
|
|
|
- break;
|
|
|
- case "call":
|
|
|
- var callback = this.callbacks[msg.id];
|
|
|
- if (callback) {
|
|
|
- callback(msg.data);
|
|
|
- delete this.callbacks[msg.id];
|
|
|
- }
|
|
|
- break;
|
|
|
- case "error":
|
|
|
- this.reportError(msg.data);
|
|
|
- break;
|
|
|
- case "log":
|
|
|
- window.console && console.log && console.log.apply(console, msg.data);
|
|
|
- break;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.reportError = function(err) {
|
|
|
- window.console && console.error && console.error(err);
|
|
|
- };
|
|
|
-
|
|
|
- this.$normalizePath = function(path) {
|
|
|
- return net.qualifyURL(path);
|
|
|
- };
|
|
|
-
|
|
|
- this.terminate = function() {
|
|
|
- this._signal("terminate", {});
|
|
|
- this.deltaQueue = null;
|
|
|
- this.$worker.terminate();
|
|
|
- this.$worker = null;
|
|
|
- if (this.$doc)
|
|
|
- this.$doc.off("change", this.changeListener);
|
|
|
- this.$doc = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.send = function(cmd, args) {
|
|
|
- this.$worker.postMessage({command: cmd, args: args});
|
|
|
- };
|
|
|
-
|
|
|
- this.call = function(cmd, args, callback) {
|
|
|
- if (callback) {
|
|
|
- var id = this.callbackId++;
|
|
|
- this.callbacks[id] = callback;
|
|
|
- args.push(id);
|
|
|
- }
|
|
|
- this.send(cmd, args);
|
|
|
- };
|
|
|
-
|
|
|
- this.emit = function(event, data) {
|
|
|
- try {
|
|
|
- this.$worker.postMessage({event: event, data: {data: data.data}});
|
|
|
- }
|
|
|
- catch(ex) {
|
|
|
- console.error(ex.stack);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.attachToDocument = function(doc) {
|
|
|
- if(this.$doc)
|
|
|
- this.terminate();
|
|
|
-
|
|
|
- this.$doc = doc;
|
|
|
- this.call("setValue", [doc.getValue()]);
|
|
|
- doc.on("change", this.changeListener);
|
|
|
- };
|
|
|
-
|
|
|
- this.changeListener = function(delta) {
|
|
|
- if (!this.deltaQueue) {
|
|
|
- this.deltaQueue = [];
|
|
|
- setTimeout(this.$sendDeltaQueue, 0);
|
|
|
- }
|
|
|
- if (delta.action == "insert")
|
|
|
- this.deltaQueue.push(delta.start, delta.lines);
|
|
|
- else
|
|
|
- this.deltaQueue.push(delta.start, delta.end);
|
|
|
- };
|
|
|
-
|
|
|
- this.$sendDeltaQueue = function() {
|
|
|
- var q = this.deltaQueue;
|
|
|
- if (!q) return;
|
|
|
- this.deltaQueue = null;
|
|
|
- if (q.length > 50 && q.length > this.$doc.getLength() >> 1) {
|
|
|
- this.call("setValue", [this.$doc.getValue()]);
|
|
|
- } else
|
|
|
- this.emit("change", {data: q});
|
|
|
- };
|
|
|
-
|
|
|
- this.$workerBlob = function(workerUrl) {
|
|
|
- var script = "importScripts('" + net.qualifyURL(workerUrl) + "');";
|
|
|
- try {
|
|
|
- return new Blob([script], {"type": "application/javascript"});
|
|
|
- } catch (e) { // Backwards-compatibility
|
|
|
- var BlobBuilder = window.BlobBuilder || window.WebKitBlobBuilder || window.MozBlobBuilder;
|
|
|
- var blobBuilder = new BlobBuilder();
|
|
|
- blobBuilder.append(script);
|
|
|
- return blobBuilder.getBlob("application/javascript");
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(WorkerClient.prototype);
|
|
|
-
|
|
|
-
|
|
|
-var UIWorkerClient = function(topLevelNamespaces, mod, classname) {
|
|
|
- this.$sendDeltaQueue = this.$sendDeltaQueue.bind(this);
|
|
|
- this.changeListener = this.changeListener.bind(this);
|
|
|
- this.callbackId = 1;
|
|
|
- this.callbacks = {};
|
|
|
- this.messageBuffer = [];
|
|
|
-
|
|
|
- var main = null;
|
|
|
- var emitSync = false;
|
|
|
- var sender = Object.create(EventEmitter);
|
|
|
- var _self = this;
|
|
|
-
|
|
|
- this.$worker = {};
|
|
|
- this.$worker.terminate = function() {};
|
|
|
- this.$worker.postMessage = function(e) {
|
|
|
- _self.messageBuffer.push(e);
|
|
|
- if (main) {
|
|
|
- if (emitSync)
|
|
|
- setTimeout(processNext);
|
|
|
- else
|
|
|
- processNext();
|
|
|
- }
|
|
|
- };
|
|
|
- this.setEmitSync = function(val) { emitSync = val };
|
|
|
-
|
|
|
- var processNext = function() {
|
|
|
- var msg = _self.messageBuffer.shift();
|
|
|
- if (msg.command)
|
|
|
- main[msg.command].apply(main, msg.args);
|
|
|
- else if (msg.event)
|
|
|
- sender._signal(msg.event, msg.data);
|
|
|
- };
|
|
|
-
|
|
|
- sender.postMessage = function(msg) {
|
|
|
- _self.onMessage({data: msg});
|
|
|
- };
|
|
|
- sender.callback = function(data, callbackId) {
|
|
|
- this.postMessage({type: "call", id: callbackId, data: data});
|
|
|
- };
|
|
|
- sender.emit = function(name, data) {
|
|
|
- this.postMessage({type: "event", name: name, data: data});
|
|
|
- };
|
|
|
-
|
|
|
- config.loadModule(["worker", mod], function(Main) {
|
|
|
- main = new Main[classname](sender);
|
|
|
- while (_self.messageBuffer.length)
|
|
|
- processNext();
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-UIWorkerClient.prototype = WorkerClient.prototype;
|
|
|
-
|
|
|
-exports.UIWorkerClient = UIWorkerClient;
|
|
|
-exports.WorkerClient = WorkerClient;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Range = require("./range").Range;
|
|
|
-var EventEmitter = require("./lib/event_emitter").EventEmitter;
|
|
|
-var oop = require("./lib/oop");
|
|
|
-
|
|
|
-var PlaceHolder = function(session, length, pos, others, mainClass, othersClass) {
|
|
|
- var _self = this;
|
|
|
- this.length = length;
|
|
|
- this.session = session;
|
|
|
- this.doc = session.getDocument();
|
|
|
- this.mainClass = mainClass;
|
|
|
- this.othersClass = othersClass;
|
|
|
- this.$onUpdate = this.onUpdate.bind(this);
|
|
|
- this.doc.on("change", this.$onUpdate);
|
|
|
- this.$others = others;
|
|
|
-
|
|
|
- this.$onCursorChange = function() {
|
|
|
- setTimeout(function() {
|
|
|
- _self.onCursorChange();
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- this.$pos = pos;
|
|
|
- var undoStack = session.getUndoManager().$undoStack || session.getUndoManager().$undostack || {length: -1};
|
|
|
- this.$undoStackDepth = undoStack.length;
|
|
|
- this.setup();
|
|
|
-
|
|
|
- session.selection.on("changeCursor", this.$onCursorChange);
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- oop.implement(this, EventEmitter);
|
|
|
- this.setup = function() {
|
|
|
- var _self = this;
|
|
|
- var doc = this.doc;
|
|
|
- var session = this.session;
|
|
|
- var pos = this.$pos;
|
|
|
-
|
|
|
- this.selectionBefore = session.selection.toJSON();
|
|
|
- if (session.selection.inMultiSelectMode)
|
|
|
- session.selection.toSingleRange();
|
|
|
-
|
|
|
- this.pos = doc.createAnchor(pos.row, pos.column);
|
|
|
- this.markerId = session.addMarker(new Range(pos.row, pos.column, pos.row, pos.column + this.length), this.mainClass, null, false);
|
|
|
- this.pos.on("change", function(event) {
|
|
|
- session.removeMarker(_self.markerId);
|
|
|
- _self.markerId = session.addMarker(new Range(event.value.row, event.value.column, event.value.row, event.value.column+_self.length), _self.mainClass, null, false);
|
|
|
- });
|
|
|
- this.others = [];
|
|
|
- this.$others.forEach(function(other) {
|
|
|
- var anchor = doc.createAnchor(other.row, other.column);
|
|
|
- _self.others.push(anchor);
|
|
|
- });
|
|
|
- session.setUndoSelect(false);
|
|
|
- };
|
|
|
- this.showOtherMarkers = function() {
|
|
|
- if(this.othersActive) return;
|
|
|
- var session = this.session;
|
|
|
- var _self = this;
|
|
|
- this.othersActive = true;
|
|
|
- this.others.forEach(function(anchor) {
|
|
|
- anchor.markerId = session.addMarker(new Range(anchor.row, anchor.column, anchor.row, anchor.column+_self.length), _self.othersClass, null, false);
|
|
|
- anchor.on("change", function(event) {
|
|
|
- session.removeMarker(anchor.markerId);
|
|
|
- anchor.markerId = session.addMarker(new Range(event.value.row, event.value.column, event.value.row, event.value.column+_self.length), _self.othersClass, null, false);
|
|
|
- });
|
|
|
- });
|
|
|
- };
|
|
|
- this.hideOtherMarkers = function() {
|
|
|
- if(!this.othersActive) return;
|
|
|
- this.othersActive = false;
|
|
|
- for (var i = 0; i < this.others.length; i++) {
|
|
|
- this.session.removeMarker(this.others[i].markerId);
|
|
|
- }
|
|
|
- };
|
|
|
- this.onUpdate = function(delta) {
|
|
|
- var range = delta;
|
|
|
- if(range.start.row !== range.end.row) return;
|
|
|
- if(range.start.row !== this.pos.row) return;
|
|
|
- if (this.$updating) return;
|
|
|
- this.$updating = true;
|
|
|
- var lengthDiff = delta.action === "insert" ? range.end.column - range.start.column : range.start.column - range.end.column;
|
|
|
-
|
|
|
- if(range.start.column >= this.pos.column && range.start.column <= this.pos.column + this.length + 1) {
|
|
|
- var distanceFromStart = range.start.column - this.pos.column;
|
|
|
- this.length += lengthDiff;
|
|
|
- if(!this.session.$fromUndo) {
|
|
|
- if(delta.action === 'insert') {
|
|
|
- for (var i = this.others.length - 1; i >= 0; i--) {
|
|
|
- var otherPos = this.others[i];
|
|
|
- var newPos = {row: otherPos.row, column: otherPos.column + distanceFromStart};
|
|
|
- if(otherPos.row === range.start.row && range.start.column < otherPos.column)
|
|
|
- newPos.column += lengthDiff;
|
|
|
- this.doc.insertMergedLines(newPos, delta.lines);
|
|
|
- }
|
|
|
- } else if(delta.action === 'remove') {
|
|
|
- for (var i = this.others.length - 1; i >= 0; i--) {
|
|
|
- var otherPos = this.others[i];
|
|
|
- var newPos = {row: otherPos.row, column: otherPos.column + distanceFromStart};
|
|
|
- if(otherPos.row === range.start.row && range.start.column < otherPos.column)
|
|
|
- newPos.column += lengthDiff;
|
|
|
- this.doc.remove(new Range(newPos.row, newPos.column, newPos.row, newPos.column - lengthDiff));
|
|
|
- }
|
|
|
- }
|
|
|
- if(range.start.column === this.pos.column && delta.action === 'insert') {
|
|
|
- setTimeout(function() {
|
|
|
- this.pos.setPosition(this.pos.row, this.pos.column - lengthDiff);
|
|
|
- for (var i = 0; i < this.others.length; i++) {
|
|
|
- var other = this.others[i];
|
|
|
- var newPos = {row: other.row, column: other.column - lengthDiff};
|
|
|
- if(other.row === range.start.row && range.start.column < other.column)
|
|
|
- newPos.column += lengthDiff;
|
|
|
- other.setPosition(newPos.row, newPos.column);
|
|
|
- }
|
|
|
- }.bind(this), 0);
|
|
|
- }
|
|
|
- else if(range.start.column === this.pos.column && delta.action === 'remove') {
|
|
|
- setTimeout(function() {
|
|
|
- for (var i = 0; i < this.others.length; i++) {
|
|
|
- var other = this.others[i];
|
|
|
- if(other.row === range.start.row && range.start.column < other.column) {
|
|
|
- other.setPosition(other.row, other.column - lengthDiff);
|
|
|
- }
|
|
|
- }
|
|
|
- }.bind(this), 0);
|
|
|
- }
|
|
|
- }
|
|
|
- this.pos._emit("change", {value: this.pos});
|
|
|
- for (var i = 0; i < this.others.length; i++) {
|
|
|
- this.others[i]._emit("change", {value: this.others[i]});
|
|
|
- }
|
|
|
- }
|
|
|
- this.$updating = false;
|
|
|
- };
|
|
|
-
|
|
|
- this.onCursorChange = function(event) {
|
|
|
- if (this.$updating || !this.session) return;
|
|
|
- var pos = this.session.selection.getCursor();
|
|
|
- if (pos.row === this.pos.row && pos.column >= this.pos.column && pos.column <= this.pos.column + this.length) {
|
|
|
- this.showOtherMarkers();
|
|
|
- this._emit("cursorEnter", event);
|
|
|
- } else {
|
|
|
- this.hideOtherMarkers();
|
|
|
- this._emit("cursorLeave", event);
|
|
|
- }
|
|
|
- };
|
|
|
- this.detach = function() {
|
|
|
- this.session.removeMarker(this.markerId);
|
|
|
- this.hideOtherMarkers();
|
|
|
- this.doc.removeEventListener("change", this.$onUpdate);
|
|
|
- this.session.selection.removeEventListener("changeCursor", this.$onCursorChange);
|
|
|
- this.pos.detach();
|
|
|
- for (var i = 0; i < this.others.length; i++) {
|
|
|
- this.others[i].detach();
|
|
|
- }
|
|
|
- this.session.setUndoSelect(true);
|
|
|
- this.session = null;
|
|
|
- };
|
|
|
- this.cancel = function() {
|
|
|
- if(this.$undoStackDepth === -1)
|
|
|
- throw Error("Canceling placeholders only supported with undo manager attached to session.");
|
|
|
- var undoManager = this.session.getUndoManager();
|
|
|
- var undosRequired = (undoManager.$undoStack || undoManager.$undostack).length - this.$undoStackDepth;
|
|
|
- for (var i = 0; i < undosRequired; i++) {
|
|
|
- undoManager.undo(true);
|
|
|
- }
|
|
|
- if (this.selectionBefore)
|
|
|
- this.session.selection.fromJSON(this.selectionBefore);
|
|
|
- };
|
|
|
-}).call(PlaceHolder.prototype);
|
|
|
-
|
|
|
-
|
|
|
-exports.PlaceHolder = PlaceHolder;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mouse/multi_select_handler",["require","exports","module","ace/lib/event","ace/lib/useragent"], function(require, exports, module) {
|
|
|
-
|
|
|
-var event = require("../lib/event");
|
|
|
-var useragent = require("../lib/useragent");
|
|
|
-function isSamePoint(p1, p2) {
|
|
|
- return p1.row == p2.row && p1.column == p2.column;
|
|
|
-}
|
|
|
-
|
|
|
-function onMouseDown(e) {
|
|
|
- var ev = e.domEvent;
|
|
|
- var alt = ev.altKey;
|
|
|
- var shift = ev.shiftKey;
|
|
|
- var ctrl = ev.ctrlKey;
|
|
|
- var accel = e.getAccelKey();
|
|
|
- var button = e.getButton();
|
|
|
-
|
|
|
- if (ctrl && useragent.isMac)
|
|
|
- button = ev.button;
|
|
|
-
|
|
|
- if (e.editor.inMultiSelectMode && button == 2) {
|
|
|
- e.editor.textInput.onContextMenu(e.domEvent);
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (!ctrl && !alt && !accel) {
|
|
|
- if (button === 0 && e.editor.inMultiSelectMode)
|
|
|
- e.editor.exitMultiSelectMode();
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (button !== 0)
|
|
|
- return;
|
|
|
-
|
|
|
- var editor = e.editor;
|
|
|
- var selection = editor.selection;
|
|
|
- var isMultiSelect = editor.inMultiSelectMode;
|
|
|
- var pos = e.getDocumentPosition();
|
|
|
- var cursor = selection.getCursor();
|
|
|
- var inSelection = e.inSelection() || (selection.isEmpty() && isSamePoint(pos, cursor));
|
|
|
-
|
|
|
- var mouseX = e.x, mouseY = e.y;
|
|
|
- var onMouseSelection = function(e) {
|
|
|
- mouseX = e.clientX;
|
|
|
- mouseY = e.clientY;
|
|
|
- };
|
|
|
-
|
|
|
- var session = editor.session;
|
|
|
- var screenAnchor = editor.renderer.pixelToScreenCoordinates(mouseX, mouseY);
|
|
|
- var screenCursor = screenAnchor;
|
|
|
-
|
|
|
- var selectionMode;
|
|
|
- if (editor.$mouseHandler.$enableJumpToDef) {
|
|
|
- if (ctrl && alt || accel && alt)
|
|
|
- selectionMode = shift ? "block" : "add";
|
|
|
- else if (alt && editor.$blockSelectEnabled)
|
|
|
- selectionMode = "block";
|
|
|
- } else {
|
|
|
- if (accel && !alt) {
|
|
|
- selectionMode = "add";
|
|
|
- if (!isMultiSelect && shift)
|
|
|
- return;
|
|
|
- } else if (alt && editor.$blockSelectEnabled) {
|
|
|
- selectionMode = "block";
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- if (selectionMode && useragent.isMac && ev.ctrlKey) {
|
|
|
- editor.$mouseHandler.cancelContextMenu();
|
|
|
- }
|
|
|
-
|
|
|
- if (selectionMode == "add") {
|
|
|
- if (!isMultiSelect && inSelection)
|
|
|
- return; // dragging
|
|
|
-
|
|
|
- if (!isMultiSelect) {
|
|
|
- var range = selection.toOrientedRange();
|
|
|
- editor.addSelectionMarker(range);
|
|
|
- }
|
|
|
-
|
|
|
- var oldRange = selection.rangeList.rangeAtPoint(pos);
|
|
|
-
|
|
|
-
|
|
|
- editor.$blockScrolling++;
|
|
|
- editor.inVirtualSelectionMode = true;
|
|
|
-
|
|
|
- if (shift) {
|
|
|
- oldRange = null;
|
|
|
- range = selection.ranges[0] || range;
|
|
|
- editor.removeSelectionMarker(range);
|
|
|
- }
|
|
|
- editor.once("mouseup", function() {
|
|
|
- var tmpSel = selection.toOrientedRange();
|
|
|
-
|
|
|
- if (oldRange && tmpSel.isEmpty() && isSamePoint(oldRange.cursor, tmpSel.cursor))
|
|
|
- selection.substractPoint(tmpSel.cursor);
|
|
|
- else {
|
|
|
- if (shift) {
|
|
|
- selection.substractPoint(range.cursor);
|
|
|
- } else if (range) {
|
|
|
- editor.removeSelectionMarker(range);
|
|
|
- selection.addRange(range);
|
|
|
- }
|
|
|
- selection.addRange(tmpSel);
|
|
|
- }
|
|
|
- editor.$blockScrolling--;
|
|
|
- editor.inVirtualSelectionMode = false;
|
|
|
- });
|
|
|
-
|
|
|
- } else if (selectionMode == "block") {
|
|
|
- e.stop();
|
|
|
- editor.inVirtualSelectionMode = true;
|
|
|
- var initialRange;
|
|
|
- var rectSel = [];
|
|
|
- var blockSelect = function() {
|
|
|
- var newCursor = editor.renderer.pixelToScreenCoordinates(mouseX, mouseY);
|
|
|
- var cursor = session.screenToDocumentPosition(newCursor.row, newCursor.column);
|
|
|
-
|
|
|
- if (isSamePoint(screenCursor, newCursor) && isSamePoint(cursor, selection.lead))
|
|
|
- return;
|
|
|
- screenCursor = newCursor;
|
|
|
-
|
|
|
- editor.$blockScrolling++;
|
|
|
- editor.selection.moveToPosition(cursor);
|
|
|
- editor.renderer.scrollCursorIntoView();
|
|
|
-
|
|
|
- editor.removeSelectionMarkers(rectSel);
|
|
|
- rectSel = selection.rectangularRangeBlock(screenCursor, screenAnchor);
|
|
|
- if (editor.$mouseHandler.$clickSelection && rectSel.length == 1 && rectSel[0].isEmpty())
|
|
|
- rectSel[0] = editor.$mouseHandler.$clickSelection.clone();
|
|
|
- rectSel.forEach(editor.addSelectionMarker, editor);
|
|
|
- editor.updateSelectionMarkers();
|
|
|
- editor.$blockScrolling--;
|
|
|
- };
|
|
|
- editor.$blockScrolling++;
|
|
|
- if (isMultiSelect && !accel) {
|
|
|
- selection.toSingleRange();
|
|
|
- } else if (!isMultiSelect && accel) {
|
|
|
- initialRange = selection.toOrientedRange();
|
|
|
- editor.addSelectionMarker(initialRange);
|
|
|
- }
|
|
|
-
|
|
|
- if (shift)
|
|
|
- screenAnchor = session.documentToScreenPosition(selection.lead);
|
|
|
- else
|
|
|
- selection.moveToPosition(pos);
|
|
|
- editor.$blockScrolling--;
|
|
|
-
|
|
|
- screenCursor = {row: -1, column: -1};
|
|
|
-
|
|
|
- var onMouseSelectionEnd = function(e) {
|
|
|
- clearInterval(timerId);
|
|
|
- editor.removeSelectionMarkers(rectSel);
|
|
|
- if (!rectSel.length)
|
|
|
- rectSel = [selection.toOrientedRange()];
|
|
|
- editor.$blockScrolling++;
|
|
|
- if (initialRange) {
|
|
|
- editor.removeSelectionMarker(initialRange);
|
|
|
- selection.toSingleRange(initialRange);
|
|
|
- }
|
|
|
- for (var i = 0; i < rectSel.length; i++)
|
|
|
- selection.addRange(rectSel[i]);
|
|
|
- editor.inVirtualSelectionMode = false;
|
|
|
- editor.$mouseHandler.$clickSelection = null;
|
|
|
- editor.$blockScrolling--;
|
|
|
- };
|
|
|
-
|
|
|
- var onSelectionInterval = blockSelect;
|
|
|
-
|
|
|
- event.capture(editor.container, onMouseSelection, onMouseSelectionEnd);
|
|
|
- var timerId = setInterval(function() {onSelectionInterval();}, 20);
|
|
|
-
|
|
|
- return e.preventDefault();
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-
|
|
|
-exports.onMouseDown = onMouseDown;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/commands/multi_select_commands",["require","exports","module","ace/keyboard/hash_handler"], function(require, exports, module) {
|
|
|
-exports.defaultCommands = [{
|
|
|
- name: "addCursorAbove",
|
|
|
- exec: function(editor) { editor.selectMoreLines(-1); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Up", mac: "Ctrl-Alt-Up"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "addCursorBelow",
|
|
|
- exec: function(editor) { editor.selectMoreLines(1); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Down", mac: "Ctrl-Alt-Down"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "addCursorAboveSkipCurrent",
|
|
|
- exec: function(editor) { editor.selectMoreLines(-1, true); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Shift-Up", mac: "Ctrl-Alt-Shift-Up"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "addCursorBelowSkipCurrent",
|
|
|
- exec: function(editor) { editor.selectMoreLines(1, true); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Shift-Down", mac: "Ctrl-Alt-Shift-Down"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectMoreBefore",
|
|
|
- exec: function(editor) { editor.selectMore(-1); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Left", mac: "Ctrl-Alt-Left"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectMoreAfter",
|
|
|
- exec: function(editor) { editor.selectMore(1); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Right", mac: "Ctrl-Alt-Right"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectNextBefore",
|
|
|
- exec: function(editor) { editor.selectMore(-1, true); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Shift-Left", mac: "Ctrl-Alt-Shift-Left"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "selectNextAfter",
|
|
|
- exec: function(editor) { editor.selectMore(1, true); },
|
|
|
- bindKey: {win: "Ctrl-Alt-Shift-Right", mac: "Ctrl-Alt-Shift-Right"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "splitIntoLines",
|
|
|
- exec: function(editor) { editor.multiSelect.splitIntoLines(); },
|
|
|
- bindKey: {win: "Ctrl-Alt-L", mac: "Ctrl-Alt-L"},
|
|
|
- readOnly: true
|
|
|
-}, {
|
|
|
- name: "alignCursors",
|
|
|
- exec: function(editor) { editor.alignCursors(); },
|
|
|
- bindKey: {win: "Ctrl-Alt-A", mac: "Ctrl-Alt-A"},
|
|
|
- scrollIntoView: "cursor"
|
|
|
-}, {
|
|
|
- name: "findAll",
|
|
|
- exec: function(editor) { editor.findAll(); },
|
|
|
- bindKey: {win: "Ctrl-Alt-K", mac: "Ctrl-Alt-G"},
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true
|
|
|
-}];
|
|
|
-exports.multiSelectCommands = [{
|
|
|
- name: "singleSelection",
|
|
|
- bindKey: "esc",
|
|
|
- exec: function(editor) { editor.exitMultiSelectMode(); },
|
|
|
- scrollIntoView: "cursor",
|
|
|
- readOnly: true,
|
|
|
- isAvailable: function(editor) {return editor && editor.inMultiSelectMode}
|
|
|
-}];
|
|
|
-
|
|
|
-var HashHandler = require("../keyboard/hash_handler").HashHandler;
|
|
|
-exports.keyboardHandler = new HashHandler(exports.multiSelectCommands);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"], function(require, exports, module) {
|
|
|
-
|
|
|
-var RangeList = require("./range_list").RangeList;
|
|
|
-var Range = require("./range").Range;
|
|
|
-var Selection = require("./selection").Selection;
|
|
|
-var onMouseDown = require("./mouse/multi_select_handler").onMouseDown;
|
|
|
-var event = require("./lib/event");
|
|
|
-var lang = require("./lib/lang");
|
|
|
-var commands = require("./commands/multi_select_commands");
|
|
|
-exports.commands = commands.defaultCommands.concat(commands.multiSelectCommands);
|
|
|
-var Search = require("./search").Search;
|
|
|
-var search = new Search();
|
|
|
-
|
|
|
-function find(session, needle, dir) {
|
|
|
- search.$options.wrap = true;
|
|
|
- search.$options.needle = needle;
|
|
|
- search.$options.backwards = dir == -1;
|
|
|
- return search.find(session);
|
|
|
-}
|
|
|
-var EditSession = require("./edit_session").EditSession;
|
|
|
-(function() {
|
|
|
- this.getSelectionMarkers = function() {
|
|
|
- return this.$selectionMarkers;
|
|
|
- };
|
|
|
-}).call(EditSession.prototype);
|
|
|
-(function() {
|
|
|
- this.ranges = null;
|
|
|
- this.rangeList = null;
|
|
|
- this.addRange = function(range, $blockChangeEvents) {
|
|
|
- if (!range)
|
|
|
- return;
|
|
|
-
|
|
|
- if (!this.inMultiSelectMode && this.rangeCount === 0) {
|
|
|
- var oldRange = this.toOrientedRange();
|
|
|
- this.rangeList.add(oldRange);
|
|
|
- this.rangeList.add(range);
|
|
|
- if (this.rangeList.ranges.length != 2) {
|
|
|
- this.rangeList.removeAll();
|
|
|
- return $blockChangeEvents || this.fromOrientedRange(range);
|
|
|
- }
|
|
|
- this.rangeList.removeAll();
|
|
|
- this.rangeList.add(oldRange);
|
|
|
- this.$onAddRange(oldRange);
|
|
|
- }
|
|
|
-
|
|
|
- if (!range.cursor)
|
|
|
- range.cursor = range.end;
|
|
|
-
|
|
|
- var removed = this.rangeList.add(range);
|
|
|
-
|
|
|
- this.$onAddRange(range);
|
|
|
-
|
|
|
- if (removed.length)
|
|
|
- this.$onRemoveRange(removed);
|
|
|
-
|
|
|
- if (this.rangeCount > 1 && !this.inMultiSelectMode) {
|
|
|
- this._signal("multiSelect");
|
|
|
- this.inMultiSelectMode = true;
|
|
|
- this.session.$undoSelect = false;
|
|
|
- this.rangeList.attach(this.session);
|
|
|
- }
|
|
|
-
|
|
|
- return $blockChangeEvents || this.fromOrientedRange(range);
|
|
|
- };
|
|
|
-
|
|
|
- this.toSingleRange = function(range) {
|
|
|
- range = range || this.ranges[0];
|
|
|
- var removed = this.rangeList.removeAll();
|
|
|
- if (removed.length)
|
|
|
- this.$onRemoveRange(removed);
|
|
|
-
|
|
|
- range && this.fromOrientedRange(range);
|
|
|
- };
|
|
|
- this.substractPoint = function(pos) {
|
|
|
- var removed = this.rangeList.substractPoint(pos);
|
|
|
- if (removed) {
|
|
|
- this.$onRemoveRange(removed);
|
|
|
- return removed[0];
|
|
|
- }
|
|
|
- };
|
|
|
- this.mergeOverlappingRanges = function() {
|
|
|
- var removed = this.rangeList.merge();
|
|
|
- if (removed.length)
|
|
|
- this.$onRemoveRange(removed);
|
|
|
- else if(this.ranges[0])
|
|
|
- this.fromOrientedRange(this.ranges[0]);
|
|
|
- };
|
|
|
-
|
|
|
- this.$onAddRange = function(range) {
|
|
|
- this.rangeCount = this.rangeList.ranges.length;
|
|
|
- this.ranges.unshift(range);
|
|
|
- this._signal("addRange", {range: range});
|
|
|
- };
|
|
|
-
|
|
|
- this.$onRemoveRange = function(removed) {
|
|
|
- this.rangeCount = this.rangeList.ranges.length;
|
|
|
- if (this.rangeCount == 1 && this.inMultiSelectMode) {
|
|
|
- var lastRange = this.rangeList.ranges.pop();
|
|
|
- removed.push(lastRange);
|
|
|
- this.rangeCount = 0;
|
|
|
- }
|
|
|
-
|
|
|
- for (var i = removed.length; i--; ) {
|
|
|
- var index = this.ranges.indexOf(removed[i]);
|
|
|
- this.ranges.splice(index, 1);
|
|
|
- }
|
|
|
-
|
|
|
- this._signal("removeRange", {ranges: removed});
|
|
|
-
|
|
|
- if (this.rangeCount === 0 && this.inMultiSelectMode) {
|
|
|
- this.inMultiSelectMode = false;
|
|
|
- this._signal("singleSelect");
|
|
|
- this.session.$undoSelect = true;
|
|
|
- this.rangeList.detach(this.session);
|
|
|
- }
|
|
|
-
|
|
|
- lastRange = lastRange || this.ranges[0];
|
|
|
- if (lastRange && !lastRange.isEqual(this.getRange()))
|
|
|
- this.fromOrientedRange(lastRange);
|
|
|
- };
|
|
|
- this.$initRangeList = function() {
|
|
|
- if (this.rangeList)
|
|
|
- return;
|
|
|
-
|
|
|
- this.rangeList = new RangeList();
|
|
|
- this.ranges = [];
|
|
|
- this.rangeCount = 0;
|
|
|
- };
|
|
|
- this.getAllRanges = function() {
|
|
|
- return this.rangeCount ? this.rangeList.ranges.concat() : [this.getRange()];
|
|
|
- };
|
|
|
-
|
|
|
- this.splitIntoLines = function () {
|
|
|
- if (this.rangeCount > 1) {
|
|
|
- var ranges = this.rangeList.ranges;
|
|
|
- var lastRange = ranges[ranges.length - 1];
|
|
|
- var range = Range.fromPoints(ranges[0].start, lastRange.end);
|
|
|
-
|
|
|
- this.toSingleRange();
|
|
|
- this.setSelectionRange(range, lastRange.cursor == lastRange.start);
|
|
|
- } else {
|
|
|
- var range = this.getRange();
|
|
|
- var isBackwards = this.isBackwards();
|
|
|
- var startRow = range.start.row;
|
|
|
- var endRow = range.end.row;
|
|
|
- if (startRow == endRow) {
|
|
|
- if (isBackwards)
|
|
|
- var start = range.end, end = range.start;
|
|
|
- else
|
|
|
- var start = range.start, end = range.end;
|
|
|
-
|
|
|
- this.addRange(Range.fromPoints(end, end));
|
|
|
- this.addRange(Range.fromPoints(start, start));
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var rectSel = [];
|
|
|
- var r = this.getLineRange(startRow, true);
|
|
|
- r.start.column = range.start.column;
|
|
|
- rectSel.push(r);
|
|
|
-
|
|
|
- for (var i = startRow + 1; i < endRow; i++)
|
|
|
- rectSel.push(this.getLineRange(i, true));
|
|
|
-
|
|
|
- r = this.getLineRange(endRow, true);
|
|
|
- r.end.column = range.end.column;
|
|
|
- rectSel.push(r);
|
|
|
-
|
|
|
- rectSel.forEach(this.addRange, this);
|
|
|
- }
|
|
|
- };
|
|
|
- this.toggleBlockSelection = function () {
|
|
|
- if (this.rangeCount > 1) {
|
|
|
- var ranges = this.rangeList.ranges;
|
|
|
- var lastRange = ranges[ranges.length - 1];
|
|
|
- var range = Range.fromPoints(ranges[0].start, lastRange.end);
|
|
|
-
|
|
|
- this.toSingleRange();
|
|
|
- this.setSelectionRange(range, lastRange.cursor == lastRange.start);
|
|
|
- } else {
|
|
|
- var cursor = this.session.documentToScreenPosition(this.selectionLead);
|
|
|
- var anchor = this.session.documentToScreenPosition(this.selectionAnchor);
|
|
|
-
|
|
|
- var rectSel = this.rectangularRangeBlock(cursor, anchor);
|
|
|
- rectSel.forEach(this.addRange, this);
|
|
|
- }
|
|
|
- };
|
|
|
- this.rectangularRangeBlock = function(screenCursor, screenAnchor, includeEmptyLines) {
|
|
|
- var rectSel = [];
|
|
|
-
|
|
|
- var xBackwards = screenCursor.column < screenAnchor.column;
|
|
|
- if (xBackwards) {
|
|
|
- var startColumn = screenCursor.column;
|
|
|
- var endColumn = screenAnchor.column;
|
|
|
- } else {
|
|
|
- var startColumn = screenAnchor.column;
|
|
|
- var endColumn = screenCursor.column;
|
|
|
- }
|
|
|
-
|
|
|
- var yBackwards = screenCursor.row < screenAnchor.row;
|
|
|
- if (yBackwards) {
|
|
|
- var startRow = screenCursor.row;
|
|
|
- var endRow = screenAnchor.row;
|
|
|
- } else {
|
|
|
- var startRow = screenAnchor.row;
|
|
|
- var endRow = screenCursor.row;
|
|
|
- }
|
|
|
-
|
|
|
- if (startColumn < 0)
|
|
|
- startColumn = 0;
|
|
|
- if (startRow < 0)
|
|
|
- startRow = 0;
|
|
|
-
|
|
|
- if (startRow == endRow)
|
|
|
- includeEmptyLines = true;
|
|
|
-
|
|
|
- for (var row = startRow; row <= endRow; row++) {
|
|
|
- var range = Range.fromPoints(
|
|
|
- this.session.screenToDocumentPosition(row, startColumn),
|
|
|
- this.session.screenToDocumentPosition(row, endColumn)
|
|
|
- );
|
|
|
- if (range.isEmpty()) {
|
|
|
- if (docEnd && isSamePoint(range.end, docEnd))
|
|
|
- break;
|
|
|
- var docEnd = range.end;
|
|
|
- }
|
|
|
- range.cursor = xBackwards ? range.start : range.end;
|
|
|
- rectSel.push(range);
|
|
|
- }
|
|
|
-
|
|
|
- if (yBackwards)
|
|
|
- rectSel.reverse();
|
|
|
-
|
|
|
- if (!includeEmptyLines) {
|
|
|
- var end = rectSel.length - 1;
|
|
|
- while (rectSel[end].isEmpty() && end > 0)
|
|
|
- end--;
|
|
|
- if (end > 0) {
|
|
|
- var start = 0;
|
|
|
- while (rectSel[start].isEmpty())
|
|
|
- start++;
|
|
|
- }
|
|
|
- for (var i = end; i >= start; i--) {
|
|
|
- if (rectSel[i].isEmpty())
|
|
|
- rectSel.splice(i, 1);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return rectSel;
|
|
|
- };
|
|
|
-}).call(Selection.prototype);
|
|
|
-var Editor = require("./editor").Editor;
|
|
|
-(function() {
|
|
|
- this.updateSelectionMarkers = function() {
|
|
|
- this.renderer.updateCursor();
|
|
|
- this.renderer.updateBackMarkers();
|
|
|
- };
|
|
|
- this.addSelectionMarker = function(orientedRange) {
|
|
|
- if (!orientedRange.cursor)
|
|
|
- orientedRange.cursor = orientedRange.end;
|
|
|
-
|
|
|
- var style = this.getSelectionStyle();
|
|
|
- orientedRange.marker = this.session.addMarker(orientedRange, "ace_selection", style);
|
|
|
-
|
|
|
- this.session.$selectionMarkers.push(orientedRange);
|
|
|
- this.session.selectionMarkerCount = this.session.$selectionMarkers.length;
|
|
|
- return orientedRange;
|
|
|
- };
|
|
|
- this.removeSelectionMarker = function(range) {
|
|
|
- if (!range.marker)
|
|
|
- return;
|
|
|
- this.session.removeMarker(range.marker);
|
|
|
- var index = this.session.$selectionMarkers.indexOf(range);
|
|
|
- if (index != -1)
|
|
|
- this.session.$selectionMarkers.splice(index, 1);
|
|
|
- this.session.selectionMarkerCount = this.session.$selectionMarkers.length;
|
|
|
- };
|
|
|
-
|
|
|
- this.removeSelectionMarkers = function(ranges) {
|
|
|
- var markerList = this.session.$selectionMarkers;
|
|
|
- for (var i = ranges.length; i--; ) {
|
|
|
- var range = ranges[i];
|
|
|
- if (!range.marker)
|
|
|
- continue;
|
|
|
- this.session.removeMarker(range.marker);
|
|
|
- var index = markerList.indexOf(range);
|
|
|
- if (index != -1)
|
|
|
- markerList.splice(index, 1);
|
|
|
- }
|
|
|
- this.session.selectionMarkerCount = markerList.length;
|
|
|
- };
|
|
|
-
|
|
|
- this.$onAddRange = function(e) {
|
|
|
- this.addSelectionMarker(e.range);
|
|
|
- this.renderer.updateCursor();
|
|
|
- this.renderer.updateBackMarkers();
|
|
|
- };
|
|
|
-
|
|
|
- this.$onRemoveRange = function(e) {
|
|
|
- this.removeSelectionMarkers(e.ranges);
|
|
|
- this.renderer.updateCursor();
|
|
|
- this.renderer.updateBackMarkers();
|
|
|
- };
|
|
|
-
|
|
|
- this.$onMultiSelect = function(e) {
|
|
|
- if (this.inMultiSelectMode)
|
|
|
- return;
|
|
|
- this.inMultiSelectMode = true;
|
|
|
-
|
|
|
- this.setStyle("ace_multiselect");
|
|
|
- this.keyBinding.addKeyboardHandler(commands.keyboardHandler);
|
|
|
- this.commands.setDefaultHandler("exec", this.$onMultiSelectExec);
|
|
|
-
|
|
|
- this.renderer.updateCursor();
|
|
|
- this.renderer.updateBackMarkers();
|
|
|
- };
|
|
|
-
|
|
|
- this.$onSingleSelect = function(e) {
|
|
|
- if (this.session.multiSelect.inVirtualMode)
|
|
|
- return;
|
|
|
- this.inMultiSelectMode = false;
|
|
|
-
|
|
|
- this.unsetStyle("ace_multiselect");
|
|
|
- this.keyBinding.removeKeyboardHandler(commands.keyboardHandler);
|
|
|
-
|
|
|
- this.commands.removeDefaultHandler("exec", this.$onMultiSelectExec);
|
|
|
- this.renderer.updateCursor();
|
|
|
- this.renderer.updateBackMarkers();
|
|
|
- this._emit("changeSelection");
|
|
|
- };
|
|
|
-
|
|
|
- this.$onMultiSelectExec = function(e) {
|
|
|
- var command = e.command;
|
|
|
- var editor = e.editor;
|
|
|
- if (!editor.multiSelect)
|
|
|
- return;
|
|
|
- if (!command.multiSelectAction) {
|
|
|
- var result = command.exec(editor, e.args || {});
|
|
|
- editor.multiSelect.addRange(editor.multiSelect.toOrientedRange());
|
|
|
- editor.multiSelect.mergeOverlappingRanges();
|
|
|
- } else if (command.multiSelectAction == "forEach") {
|
|
|
- result = editor.forEachSelection(command, e.args);
|
|
|
- } else if (command.multiSelectAction == "forEachLine") {
|
|
|
- result = editor.forEachSelection(command, e.args, true);
|
|
|
- } else if (command.multiSelectAction == "single") {
|
|
|
- editor.exitMultiSelectMode();
|
|
|
- result = command.exec(editor, e.args || {});
|
|
|
- } else {
|
|
|
- result = command.multiSelectAction(editor, e.args || {});
|
|
|
- }
|
|
|
- return result;
|
|
|
- };
|
|
|
- this.forEachSelection = function(cmd, args, options) {
|
|
|
- if (this.inVirtualSelectionMode)
|
|
|
- return;
|
|
|
- var keepOrder = options && options.keepOrder;
|
|
|
- var $byLines = options == true || options && options.$byLines
|
|
|
- var session = this.session;
|
|
|
- var selection = this.selection;
|
|
|
- var rangeList = selection.rangeList;
|
|
|
- var ranges = (keepOrder ? selection : rangeList).ranges;
|
|
|
- var result;
|
|
|
-
|
|
|
- if (!ranges.length)
|
|
|
- return cmd.exec ? cmd.exec(this, args || {}) : cmd(this, args || {});
|
|
|
-
|
|
|
- var reg = selection._eventRegistry;
|
|
|
- selection._eventRegistry = {};
|
|
|
-
|
|
|
- var tmpSel = new Selection(session);
|
|
|
- this.inVirtualSelectionMode = true;
|
|
|
- for (var i = ranges.length; i--;) {
|
|
|
- if ($byLines) {
|
|
|
- while (i > 0 && ranges[i].start.row == ranges[i - 1].end.row)
|
|
|
- i--;
|
|
|
- }
|
|
|
- tmpSel.fromOrientedRange(ranges[i]);
|
|
|
- tmpSel.index = i;
|
|
|
- this.selection = session.selection = tmpSel;
|
|
|
- var cmdResult = cmd.exec ? cmd.exec(this, args || {}) : cmd(this, args || {});
|
|
|
- if (!result && cmdResult !== undefined)
|
|
|
- result = cmdResult;
|
|
|
- tmpSel.toOrientedRange(ranges[i]);
|
|
|
- }
|
|
|
- tmpSel.detach();
|
|
|
-
|
|
|
- this.selection = session.selection = selection;
|
|
|
- this.inVirtualSelectionMode = false;
|
|
|
- selection._eventRegistry = reg;
|
|
|
- selection.mergeOverlappingRanges();
|
|
|
-
|
|
|
- var anim = this.renderer.$scrollAnimation;
|
|
|
- this.onCursorChange();
|
|
|
- this.onSelectionChange();
|
|
|
- if (anim && anim.from == anim.to)
|
|
|
- this.renderer.animateScrolling(anim.from);
|
|
|
-
|
|
|
- return result;
|
|
|
- };
|
|
|
- this.exitMultiSelectMode = function() {
|
|
|
- if (!this.inMultiSelectMode || this.inVirtualSelectionMode)
|
|
|
- return;
|
|
|
- this.multiSelect.toSingleRange();
|
|
|
- };
|
|
|
-
|
|
|
- this.getSelectedText = function() {
|
|
|
- var text = "";
|
|
|
- if (this.inMultiSelectMode && !this.inVirtualSelectionMode) {
|
|
|
- var ranges = this.multiSelect.rangeList.ranges;
|
|
|
- var buf = [];
|
|
|
- for (var i = 0; i < ranges.length; i++) {
|
|
|
- buf.push(this.session.getTextRange(ranges[i]));
|
|
|
- }
|
|
|
- var nl = this.session.getDocument().getNewLineCharacter();
|
|
|
- text = buf.join(nl);
|
|
|
- if (text.length == (buf.length - 1) * nl.length)
|
|
|
- text = "";
|
|
|
- } else if (!this.selection.isEmpty()) {
|
|
|
- text = this.session.getTextRange(this.getSelectionRange());
|
|
|
- }
|
|
|
- return text;
|
|
|
- };
|
|
|
-
|
|
|
- this.$checkMultiselectChange = function(e, anchor) {
|
|
|
- if (this.inMultiSelectMode && !this.inVirtualSelectionMode) {
|
|
|
- var range = this.multiSelect.ranges[0];
|
|
|
- if (this.multiSelect.isEmpty() && anchor == this.multiSelect.anchor)
|
|
|
- return;
|
|
|
- var pos = anchor == this.multiSelect.anchor
|
|
|
- ? range.cursor == range.start ? range.end : range.start
|
|
|
- : range.cursor;
|
|
|
- if (pos.row != anchor.row
|
|
|
- || this.session.$clipPositionToDocument(pos.row, pos.column).column != anchor.column)
|
|
|
- this.multiSelect.toSingleRange(this.multiSelect.toOrientedRange());
|
|
|
- }
|
|
|
- };
|
|
|
- this.findAll = function(needle, options, additive) {
|
|
|
- options = options || {};
|
|
|
- options.needle = needle || options.needle;
|
|
|
- if (options.needle == undefined) {
|
|
|
- var range = this.selection.isEmpty()
|
|
|
- ? this.selection.getWordRange()
|
|
|
- : this.selection.getRange();
|
|
|
- options.needle = this.session.getTextRange(range);
|
|
|
- }
|
|
|
- this.$search.set(options);
|
|
|
-
|
|
|
- var ranges = this.$search.findAll(this.session);
|
|
|
- if (!ranges.length)
|
|
|
- return 0;
|
|
|
-
|
|
|
- this.$blockScrolling += 1;
|
|
|
- var selection = this.multiSelect;
|
|
|
-
|
|
|
- if (!additive)
|
|
|
- selection.toSingleRange(ranges[0]);
|
|
|
-
|
|
|
- for (var i = ranges.length; i--; )
|
|
|
- selection.addRange(ranges[i], true);
|
|
|
- if (range && selection.rangeList.rangeAtPoint(range.start))
|
|
|
- selection.addRange(range, true);
|
|
|
-
|
|
|
- this.$blockScrolling -= 1;
|
|
|
-
|
|
|
- return ranges.length;
|
|
|
- };
|
|
|
- this.selectMoreLines = function(dir, skip) {
|
|
|
- var range = this.selection.toOrientedRange();
|
|
|
- var isBackwards = range.cursor == range.end;
|
|
|
-
|
|
|
- var screenLead = this.session.documentToScreenPosition(range.cursor);
|
|
|
- if (this.selection.$desiredColumn)
|
|
|
- screenLead.column = this.selection.$desiredColumn;
|
|
|
-
|
|
|
- var lead = this.session.screenToDocumentPosition(screenLead.row + dir, screenLead.column);
|
|
|
-
|
|
|
- if (!range.isEmpty()) {
|
|
|
- var screenAnchor = this.session.documentToScreenPosition(isBackwards ? range.end : range.start);
|
|
|
- var anchor = this.session.screenToDocumentPosition(screenAnchor.row + dir, screenAnchor.column);
|
|
|
- } else {
|
|
|
- var anchor = lead;
|
|
|
- }
|
|
|
-
|
|
|
- if (isBackwards) {
|
|
|
- var newRange = Range.fromPoints(lead, anchor);
|
|
|
- newRange.cursor = newRange.start;
|
|
|
- } else {
|
|
|
- var newRange = Range.fromPoints(anchor, lead);
|
|
|
- newRange.cursor = newRange.end;
|
|
|
- }
|
|
|
-
|
|
|
- newRange.desiredColumn = screenLead.column;
|
|
|
- if (!this.selection.inMultiSelectMode) {
|
|
|
- this.selection.addRange(range);
|
|
|
- } else {
|
|
|
- if (skip)
|
|
|
- var toRemove = range.cursor;
|
|
|
- }
|
|
|
-
|
|
|
- this.selection.addRange(newRange);
|
|
|
- if (toRemove)
|
|
|
- this.selection.substractPoint(toRemove);
|
|
|
- };
|
|
|
- this.transposeSelections = function(dir) {
|
|
|
- var session = this.session;
|
|
|
- var sel = session.multiSelect;
|
|
|
- var all = sel.ranges;
|
|
|
-
|
|
|
- for (var i = all.length; i--; ) {
|
|
|
- var range = all[i];
|
|
|
- if (range.isEmpty()) {
|
|
|
- var tmp = session.getWordRange(range.start.row, range.start.column);
|
|
|
- range.start.row = tmp.start.row;
|
|
|
- range.start.column = tmp.start.column;
|
|
|
- range.end.row = tmp.end.row;
|
|
|
- range.end.column = tmp.end.column;
|
|
|
- }
|
|
|
- }
|
|
|
- sel.mergeOverlappingRanges();
|
|
|
-
|
|
|
- var words = [];
|
|
|
- for (var i = all.length; i--; ) {
|
|
|
- var range = all[i];
|
|
|
- words.unshift(session.getTextRange(range));
|
|
|
- }
|
|
|
-
|
|
|
- if (dir < 0)
|
|
|
- words.unshift(words.pop());
|
|
|
- else
|
|
|
- words.push(words.shift());
|
|
|
-
|
|
|
- for (var i = all.length; i--; ) {
|
|
|
- var range = all[i];
|
|
|
- var tmp = range.clone();
|
|
|
- session.replace(range, words[i]);
|
|
|
- range.start.row = tmp.start.row;
|
|
|
- range.start.column = tmp.start.column;
|
|
|
- }
|
|
|
- };
|
|
|
- this.selectMore = function(dir, skip, stopAtFirst) {
|
|
|
- var session = this.session;
|
|
|
- var sel = session.multiSelect;
|
|
|
-
|
|
|
- var range = sel.toOrientedRange();
|
|
|
- if (range.isEmpty()) {
|
|
|
- range = session.getWordRange(range.start.row, range.start.column);
|
|
|
- range.cursor = dir == -1 ? range.start : range.end;
|
|
|
- this.multiSelect.addRange(range);
|
|
|
- if (stopAtFirst)
|
|
|
- return;
|
|
|
- }
|
|
|
- var needle = session.getTextRange(range);
|
|
|
-
|
|
|
- var newRange = find(session, needle, dir);
|
|
|
- if (newRange) {
|
|
|
- newRange.cursor = dir == -1 ? newRange.start : newRange.end;
|
|
|
- this.$blockScrolling += 1;
|
|
|
- this.session.unfold(newRange);
|
|
|
- this.multiSelect.addRange(newRange);
|
|
|
- this.$blockScrolling -= 1;
|
|
|
- this.renderer.scrollCursorIntoView(null, 0.5);
|
|
|
- }
|
|
|
- if (skip)
|
|
|
- this.multiSelect.substractPoint(range.cursor);
|
|
|
- };
|
|
|
- this.alignCursors = function() {
|
|
|
- var session = this.session;
|
|
|
- var sel = session.multiSelect;
|
|
|
- var ranges = sel.ranges;
|
|
|
- var row = -1;
|
|
|
- var sameRowRanges = ranges.filter(function(r) {
|
|
|
- if (r.cursor.row == row)
|
|
|
- return true;
|
|
|
- row = r.cursor.row;
|
|
|
- });
|
|
|
-
|
|
|
- if (!ranges.length || sameRowRanges.length == ranges.length - 1) {
|
|
|
- var range = this.selection.getRange();
|
|
|
- var fr = range.start.row, lr = range.end.row;
|
|
|
- var guessRange = fr == lr;
|
|
|
- if (guessRange) {
|
|
|
- var max = this.session.getLength();
|
|
|
- var line;
|
|
|
- do {
|
|
|
- line = this.session.getLine(lr);
|
|
|
- } while (/[=:]/.test(line) && ++lr < max);
|
|
|
- do {
|
|
|
- line = this.session.getLine(fr);
|
|
|
- } while (/[=:]/.test(line) && --fr > 0);
|
|
|
-
|
|
|
- if (fr < 0) fr = 0;
|
|
|
- if (lr >= max) lr = max - 1;
|
|
|
- }
|
|
|
- var lines = this.session.removeFullLines(fr, lr);
|
|
|
- lines = this.$reAlignText(lines, guessRange);
|
|
|
- this.session.insert({row: fr, column: 0}, lines.join("\n") + "\n");
|
|
|
- if (!guessRange) {
|
|
|
- range.start.column = 0;
|
|
|
- range.end.column = lines[lines.length - 1].length;
|
|
|
- }
|
|
|
- this.selection.setRange(range);
|
|
|
- } else {
|
|
|
- sameRowRanges.forEach(function(r) {
|
|
|
- sel.substractPoint(r.cursor);
|
|
|
- });
|
|
|
-
|
|
|
- var maxCol = 0;
|
|
|
- var minSpace = Infinity;
|
|
|
- var spaceOffsets = ranges.map(function(r) {
|
|
|
- var p = r.cursor;
|
|
|
- var line = session.getLine(p.row);
|
|
|
- var spaceOffset = line.substr(p.column).search(/\S/g);
|
|
|
- if (spaceOffset == -1)
|
|
|
- spaceOffset = 0;
|
|
|
-
|
|
|
- if (p.column > maxCol)
|
|
|
- maxCol = p.column;
|
|
|
- if (spaceOffset < minSpace)
|
|
|
- minSpace = spaceOffset;
|
|
|
- return spaceOffset;
|
|
|
- });
|
|
|
- ranges.forEach(function(r, i) {
|
|
|
- var p = r.cursor;
|
|
|
- var l = maxCol - p.column;
|
|
|
- var d = spaceOffsets[i] - minSpace;
|
|
|
- if (l > d)
|
|
|
- session.insert(p, lang.stringRepeat(" ", l - d));
|
|
|
- else
|
|
|
- session.remove(new Range(p.row, p.column, p.row, p.column - l + d));
|
|
|
-
|
|
|
- r.start.column = r.end.column = maxCol;
|
|
|
- r.start.row = r.end.row = p.row;
|
|
|
- r.cursor = r.end;
|
|
|
- });
|
|
|
- sel.fromOrientedRange(ranges[0]);
|
|
|
- this.renderer.updateCursor();
|
|
|
- this.renderer.updateBackMarkers();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$reAlignText = function(lines, forceLeft) {
|
|
|
- var isLeftAligned = true, isRightAligned = true;
|
|
|
- var startW, textW, endW;
|
|
|
-
|
|
|
- return lines.map(function(line) {
|
|
|
- var m = line.match(/(\s*)(.*?)(\s*)([=:].*)/);
|
|
|
- if (!m)
|
|
|
- return [line];
|
|
|
-
|
|
|
- if (startW == null) {
|
|
|
- startW = m[1].length;
|
|
|
- textW = m[2].length;
|
|
|
- endW = m[3].length;
|
|
|
- return m;
|
|
|
- }
|
|
|
-
|
|
|
- if (startW + textW + endW != m[1].length + m[2].length + m[3].length)
|
|
|
- isRightAligned = false;
|
|
|
- if (startW != m[1].length)
|
|
|
- isLeftAligned = false;
|
|
|
-
|
|
|
- if (startW > m[1].length)
|
|
|
- startW = m[1].length;
|
|
|
- if (textW < m[2].length)
|
|
|
- textW = m[2].length;
|
|
|
- if (endW > m[3].length)
|
|
|
- endW = m[3].length;
|
|
|
-
|
|
|
- return m;
|
|
|
- }).map(forceLeft ? alignLeft :
|
|
|
- isLeftAligned ? isRightAligned ? alignRight : alignLeft : unAlign);
|
|
|
-
|
|
|
- function spaces(n) {
|
|
|
- return lang.stringRepeat(" ", n);
|
|
|
- }
|
|
|
-
|
|
|
- function alignLeft(m) {
|
|
|
- return !m[2] ? m[0] : spaces(startW) + m[2]
|
|
|
- + spaces(textW - m[2].length + endW)
|
|
|
- + m[4].replace(/^([=:])\s+/, "$1 ");
|
|
|
- }
|
|
|
- function alignRight(m) {
|
|
|
- return !m[2] ? m[0] : spaces(startW + textW - m[2].length) + m[2]
|
|
|
- + spaces(endW, " ")
|
|
|
- + m[4].replace(/^([=:])\s+/, "$1 ");
|
|
|
- }
|
|
|
- function unAlign(m) {
|
|
|
- return !m[2] ? m[0] : spaces(startW) + m[2]
|
|
|
- + spaces(endW)
|
|
|
- + m[4].replace(/^([=:])\s+/, "$1 ");
|
|
|
- }
|
|
|
- };
|
|
|
-}).call(Editor.prototype);
|
|
|
-
|
|
|
-
|
|
|
-function isSamePoint(p1, p2) {
|
|
|
- return p1.row == p2.row && p1.column == p2.column;
|
|
|
-}
|
|
|
-exports.onSessionChange = function(e) {
|
|
|
- var session = e.session;
|
|
|
- if (session && !session.multiSelect) {
|
|
|
- session.$selectionMarkers = [];
|
|
|
- session.selection.$initRangeList();
|
|
|
- session.multiSelect = session.selection;
|
|
|
- }
|
|
|
- this.multiSelect = session && session.multiSelect;
|
|
|
-
|
|
|
- var oldSession = e.oldSession;
|
|
|
- if (oldSession) {
|
|
|
- oldSession.multiSelect.off("addRange", this.$onAddRange);
|
|
|
- oldSession.multiSelect.off("removeRange", this.$onRemoveRange);
|
|
|
- oldSession.multiSelect.off("multiSelect", this.$onMultiSelect);
|
|
|
- oldSession.multiSelect.off("singleSelect", this.$onSingleSelect);
|
|
|
- oldSession.multiSelect.lead.off("change", this.$checkMultiselectChange);
|
|
|
- oldSession.multiSelect.anchor.off("change", this.$checkMultiselectChange);
|
|
|
- }
|
|
|
-
|
|
|
- if (session) {
|
|
|
- session.multiSelect.on("addRange", this.$onAddRange);
|
|
|
- session.multiSelect.on("removeRange", this.$onRemoveRange);
|
|
|
- session.multiSelect.on("multiSelect", this.$onMultiSelect);
|
|
|
- session.multiSelect.on("singleSelect", this.$onSingleSelect);
|
|
|
- session.multiSelect.lead.on("change", this.$checkMultiselectChange);
|
|
|
- session.multiSelect.anchor.on("change", this.$checkMultiselectChange);
|
|
|
- }
|
|
|
-
|
|
|
- if (session && this.inMultiSelectMode != session.selection.inMultiSelectMode) {
|
|
|
- if (session.selection.inMultiSelectMode)
|
|
|
- this.$onMultiSelect();
|
|
|
- else
|
|
|
- this.$onSingleSelect();
|
|
|
- }
|
|
|
-};
|
|
|
-function MultiSelect(editor) {
|
|
|
- if (editor.$multiselectOnSessionChange)
|
|
|
- return;
|
|
|
- editor.$onAddRange = editor.$onAddRange.bind(editor);
|
|
|
- editor.$onRemoveRange = editor.$onRemoveRange.bind(editor);
|
|
|
- editor.$onMultiSelect = editor.$onMultiSelect.bind(editor);
|
|
|
- editor.$onSingleSelect = editor.$onSingleSelect.bind(editor);
|
|
|
- editor.$multiselectOnSessionChange = exports.onSessionChange.bind(editor);
|
|
|
- editor.$checkMultiselectChange = editor.$checkMultiselectChange.bind(editor);
|
|
|
-
|
|
|
- editor.$multiselectOnSessionChange(editor);
|
|
|
- editor.on("changeSession", editor.$multiselectOnSessionChange);
|
|
|
-
|
|
|
- editor.on("mousedown", onMouseDown);
|
|
|
- editor.commands.addCommands(commands.defaultCommands);
|
|
|
-
|
|
|
- addAltCursorListeners(editor);
|
|
|
-}
|
|
|
-
|
|
|
-function addAltCursorListeners(editor){
|
|
|
- var el = editor.textInput.getElement();
|
|
|
- var altCursor = false;
|
|
|
- event.addListener(el, "keydown", function(e) {
|
|
|
- var altDown = e.keyCode == 18 && !(e.ctrlKey || e.shiftKey || e.metaKey);
|
|
|
- if (editor.$blockSelectEnabled && altDown) {
|
|
|
- if (!altCursor) {
|
|
|
- editor.renderer.setMouseCursor("crosshair");
|
|
|
- altCursor = true;
|
|
|
- }
|
|
|
- } else if (altCursor) {
|
|
|
- reset();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- event.addListener(el, "keyup", reset);
|
|
|
- event.addListener(el, "blur", reset);
|
|
|
- function reset(e) {
|
|
|
- if (altCursor) {
|
|
|
- editor.renderer.setMouseCursor("");
|
|
|
- altCursor = false;
|
|
|
- }
|
|
|
- }
|
|
|
-}
|
|
|
-
|
|
|
-exports.MultiSelect = MultiSelect;
|
|
|
-
|
|
|
-
|
|
|
-require("./config").defineOptions(Editor.prototype, "editor", {
|
|
|
- enableMultiselect: {
|
|
|
- set: function(val) {
|
|
|
- MultiSelect(this);
|
|
|
- if (val) {
|
|
|
- this.on("changeSession", this.$multiselectOnSessionChange);
|
|
|
- this.on("mousedown", onMouseDown);
|
|
|
- } else {
|
|
|
- this.off("changeSession", this.$multiselectOnSessionChange);
|
|
|
- this.off("mousedown", onMouseDown);
|
|
|
- }
|
|
|
- },
|
|
|
- value: true
|
|
|
- },
|
|
|
- enableBlockSelect: {
|
|
|
- set: function(val) {
|
|
|
- this.$blockSelectEnabled = val;
|
|
|
- },
|
|
|
- value: true
|
|
|
- }
|
|
|
-});
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Range = require("../../range").Range;
|
|
|
-
|
|
|
-var FoldMode = exports.FoldMode = function() {};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.foldingStartMarker = null;
|
|
|
- this.foldingStopMarker = null;
|
|
|
- this.getFoldWidget = function(session, foldStyle, row) {
|
|
|
- var line = session.getLine(row);
|
|
|
- if (this.foldingStartMarker.test(line))
|
|
|
- return "start";
|
|
|
- if (foldStyle == "markbeginend"
|
|
|
- && this.foldingStopMarker
|
|
|
- && this.foldingStopMarker.test(line))
|
|
|
- return "end";
|
|
|
- return "";
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldWidgetRange = function(session, foldStyle, row) {
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this.indentationBlock = function(session, row, column) {
|
|
|
- var re = /\S/;
|
|
|
- var line = session.getLine(row);
|
|
|
- var startLevel = line.search(re);
|
|
|
- if (startLevel == -1)
|
|
|
- return;
|
|
|
-
|
|
|
- var startColumn = column || line.length;
|
|
|
- var maxRow = session.getLength();
|
|
|
- var startRow = row;
|
|
|
- var endRow = row;
|
|
|
-
|
|
|
- while (++row < maxRow) {
|
|
|
- var level = session.getLine(row).search(re);
|
|
|
-
|
|
|
- if (level == -1)
|
|
|
- continue;
|
|
|
-
|
|
|
- if (level <= startLevel)
|
|
|
- break;
|
|
|
-
|
|
|
- endRow = row;
|
|
|
- }
|
|
|
-
|
|
|
- if (endRow > startRow) {
|
|
|
- var endColumn = session.getLine(endRow).length;
|
|
|
- return new Range(startRow, startColumn, endRow, endColumn);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.openingBracketBlock = function(session, bracket, row, column, typeRe) {
|
|
|
- var start = {row: row, column: column + 1};
|
|
|
- var end = session.$findClosingBracket(bracket, start, typeRe);
|
|
|
- if (!end)
|
|
|
- return;
|
|
|
-
|
|
|
- var fw = session.foldWidgets[end.row];
|
|
|
- if (fw == null)
|
|
|
- fw = session.getFoldWidget(end.row);
|
|
|
-
|
|
|
- if (fw == "start" && end.row > start.row) {
|
|
|
- end.row --;
|
|
|
- end.column = session.getLine(end.row).length;
|
|
|
- }
|
|
|
- return Range.fromPoints(start, end);
|
|
|
- };
|
|
|
-
|
|
|
- this.closingBracketBlock = function(session, bracket, row, column, typeRe) {
|
|
|
- var end = {row: row, column: column};
|
|
|
- var start = session.$findOpeningBracket(bracket, end);
|
|
|
-
|
|
|
- if (!start)
|
|
|
- return;
|
|
|
-
|
|
|
- start.column++;
|
|
|
- end.column--;
|
|
|
-
|
|
|
- return Range.fromPoints(start, end);
|
|
|
- };
|
|
|
-}).call(FoldMode.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/theme/textmate",["require","exports","module","ace/lib/dom"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-exports.isDark = false;
|
|
|
-exports.cssClass = "ace-tm";
|
|
|
-exports.cssText = ".ace-tm .ace_gutter {\
|
|
|
-background: #f0f0f0;\
|
|
|
-color: #333;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_print-margin {\
|
|
|
-width: 1px;\
|
|
|
-background: #e8e8e8;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_fold {\
|
|
|
-background-color: #6B72E6;\
|
|
|
-}\
|
|
|
-.ace-tm {\
|
|
|
-background-color: #FFFFFF;\
|
|
|
-color: black;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_cursor {\
|
|
|
-color: black;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_invisible {\
|
|
|
-color: rgb(191, 191, 191);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_storage,\
|
|
|
-.ace-tm .ace_keyword {\
|
|
|
-color: blue;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_constant {\
|
|
|
-color: rgb(197, 6, 11);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_constant.ace_buildin {\
|
|
|
-color: rgb(88, 72, 246);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_constant.ace_language {\
|
|
|
-color: rgb(88, 92, 246);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_constant.ace_library {\
|
|
|
-color: rgb(6, 150, 14);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_invalid {\
|
|
|
-background-color: rgba(255, 0, 0, 0.1);\
|
|
|
-color: red;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_support.ace_function {\
|
|
|
-color: rgb(60, 76, 114);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_support.ace_constant {\
|
|
|
-color: rgb(6, 150, 14);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_support.ace_type,\
|
|
|
-.ace-tm .ace_support.ace_class {\
|
|
|
-color: rgb(109, 121, 222);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_keyword.ace_operator {\
|
|
|
-color: rgb(104, 118, 135);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_string {\
|
|
|
-color: rgb(3, 106, 7);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_comment {\
|
|
|
-color: rgb(76, 136, 107);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_comment.ace_doc {\
|
|
|
-color: rgb(0, 102, 255);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_comment.ace_doc.ace_tag {\
|
|
|
-color: rgb(128, 159, 191);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_constant.ace_numeric {\
|
|
|
-color: rgb(0, 0, 205);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_variable {\
|
|
|
-color: rgb(49, 132, 149);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_xml-pe {\
|
|
|
-color: rgb(104, 104, 91);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_entity.ace_name.ace_function {\
|
|
|
-color: #0000A2;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_heading {\
|
|
|
-color: rgb(12, 7, 255);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_list {\
|
|
|
-color:rgb(185, 6, 144);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_meta.ace_tag {\
|
|
|
-color:rgb(0, 22, 142);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_string.ace_regex {\
|
|
|
-color: rgb(255, 0, 0)\
|
|
|
-}\
|
|
|
-.ace-tm .ace_marker-layer .ace_selection {\
|
|
|
-background: rgb(181, 213, 255);\
|
|
|
-}\
|
|
|
-.ace-tm.ace_multiselect .ace_selection.ace_start {\
|
|
|
-box-shadow: 0 0 3px 0px white;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_marker-layer .ace_step {\
|
|
|
-background: rgb(252, 255, 0);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_marker-layer .ace_stack {\
|
|
|
-background: rgb(164, 229, 101);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_marker-layer .ace_bracket {\
|
|
|
-margin: -1px 0 0 -1px;\
|
|
|
-border: 1px solid rgb(192, 192, 192);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_marker-layer .ace_active-line {\
|
|
|
-background: rgba(0, 0, 0, 0.07);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_gutter-active-line {\
|
|
|
-background-color : #dcdcdc;\
|
|
|
-}\
|
|
|
-.ace-tm .ace_marker-layer .ace_selected-word {\
|
|
|
-background: rgb(250, 250, 255);\
|
|
|
-border: 1px solid rgb(200, 200, 250);\
|
|
|
-}\
|
|
|
-.ace-tm .ace_indent-guide {\
|
|
|
-background: url(\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==\") right repeat-y;\
|
|
|
-}\
|
|
|
-";
|
|
|
-
|
|
|
-var dom = require("../lib/dom");
|
|
|
-dom.importCssString(exports.cssText, exports.cssClass);
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/line_widgets",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("./lib/oop");
|
|
|
-var dom = require("./lib/dom");
|
|
|
-var Range = require("./range").Range;
|
|
|
-
|
|
|
-
|
|
|
-function LineWidgets(session) {
|
|
|
- this.session = session;
|
|
|
- this.session.widgetManager = this;
|
|
|
- this.session.getRowLength = this.getRowLength;
|
|
|
- this.session.$getWidgetScreenLength = this.$getWidgetScreenLength;
|
|
|
- this.updateOnChange = this.updateOnChange.bind(this);
|
|
|
- this.renderWidgets = this.renderWidgets.bind(this);
|
|
|
- this.measureWidgets = this.measureWidgets.bind(this);
|
|
|
- this.session._changedWidgets = [];
|
|
|
- this.$onChangeEditor = this.$onChangeEditor.bind(this);
|
|
|
-
|
|
|
- this.session.on("change", this.updateOnChange);
|
|
|
- this.session.on("changeEditor", this.$onChangeEditor);
|
|
|
-}
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.getRowLength = function(row) {
|
|
|
- var h;
|
|
|
- if (this.lineWidgets)
|
|
|
- h = this.lineWidgets[row] && this.lineWidgets[row].rowCount || 0;
|
|
|
- else
|
|
|
- h = 0;
|
|
|
- if (!this.$useWrapMode || !this.$wrapData[row]) {
|
|
|
- return 1 + h;
|
|
|
- } else {
|
|
|
- return this.$wrapData[row].length + 1 + h;
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$getWidgetScreenLength = function() {
|
|
|
- var screenRows = 0;
|
|
|
- this.lineWidgets.forEach(function(w){
|
|
|
- if (w && w.rowCount)
|
|
|
- screenRows +=w.rowCount;
|
|
|
- });
|
|
|
- return screenRows;
|
|
|
- };
|
|
|
-
|
|
|
- this.$onChangeEditor = function(e) {
|
|
|
- this.attach(e.editor);
|
|
|
- };
|
|
|
-
|
|
|
- this.attach = function(editor) {
|
|
|
- if (editor && editor.widgetManager && editor.widgetManager != this)
|
|
|
- editor.widgetManager.detach();
|
|
|
-
|
|
|
- if (this.editor == editor)
|
|
|
- return;
|
|
|
-
|
|
|
- this.detach();
|
|
|
- this.editor = editor;
|
|
|
-
|
|
|
- if (editor) {
|
|
|
- editor.widgetManager = this;
|
|
|
- editor.renderer.on("beforeRender", this.measureWidgets);
|
|
|
- editor.renderer.on("afterRender", this.renderWidgets);
|
|
|
- }
|
|
|
- };
|
|
|
- this.detach = function(e) {
|
|
|
- var editor = this.editor;
|
|
|
- if (!editor)
|
|
|
- return;
|
|
|
-
|
|
|
- this.editor = null;
|
|
|
- editor.widgetManager = null;
|
|
|
-
|
|
|
- editor.renderer.off("beforeRender", this.measureWidgets);
|
|
|
- editor.renderer.off("afterRender", this.renderWidgets);
|
|
|
- var lineWidgets = this.session.lineWidgets;
|
|
|
- lineWidgets && lineWidgets.forEach(function(w) {
|
|
|
- if (w && w.el && w.el.parentNode) {
|
|
|
- w._inDocument = false;
|
|
|
- w.el.parentNode.removeChild(w.el);
|
|
|
- }
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- this.updateOnChange = function(delta) {
|
|
|
- var lineWidgets = this.session.lineWidgets;
|
|
|
- if (!lineWidgets) return;
|
|
|
-
|
|
|
- var startRow = delta.start.row;
|
|
|
- var len = delta.end.row - startRow;
|
|
|
-
|
|
|
- if (len === 0) {
|
|
|
- } else if (delta.action == 'remove') {
|
|
|
- var removed = lineWidgets.splice(startRow + 1, len);
|
|
|
- removed.forEach(function(w) {
|
|
|
- w && this.removeLineWidget(w);
|
|
|
- }, this);
|
|
|
- this.$updateRows();
|
|
|
- } else {
|
|
|
- var args = new Array(len);
|
|
|
- args.unshift(startRow, 0);
|
|
|
- lineWidgets.splice.apply(lineWidgets, args);
|
|
|
- this.$updateRows();
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.$updateRows = function() {
|
|
|
- var lineWidgets = this.session.lineWidgets;
|
|
|
- if (!lineWidgets) return;
|
|
|
- var noWidgets = true;
|
|
|
- lineWidgets.forEach(function(w, i) {
|
|
|
- if (w) {
|
|
|
- noWidgets = false;
|
|
|
- w.row = i;
|
|
|
- }
|
|
|
- });
|
|
|
- if (noWidgets)
|
|
|
- this.session.lineWidgets = null;
|
|
|
- };
|
|
|
-
|
|
|
- this.addLineWidget = function(w) {
|
|
|
- if (!this.session.lineWidgets)
|
|
|
- this.session.lineWidgets = new Array(this.session.getLength());
|
|
|
-
|
|
|
- this.session.lineWidgets[w.row] = w;
|
|
|
-
|
|
|
- var renderer = this.editor.renderer;
|
|
|
- if (w.html && !w.el) {
|
|
|
- w.el = dom.createElement("div");
|
|
|
- w.el.innerHTML = w.html;
|
|
|
- }
|
|
|
- if (w.el) {
|
|
|
- dom.addCssClass(w.el, "ace_lineWidgetContainer");
|
|
|
- w.el.style.position = "absolute";
|
|
|
- w.el.style.zIndex = 5;
|
|
|
- renderer.container.appendChild(w.el);
|
|
|
- w._inDocument = true;
|
|
|
- }
|
|
|
-
|
|
|
- if (!w.coverGutter) {
|
|
|
- w.el.style.zIndex = 3;
|
|
|
- }
|
|
|
- if (!w.pixelHeight) {
|
|
|
- w.pixelHeight = w.el.offsetHeight;
|
|
|
- }
|
|
|
- if (w.rowCount == null)
|
|
|
- w.rowCount = w.pixelHeight / renderer.layerConfig.lineHeight;
|
|
|
-
|
|
|
- this.session._emit("changeFold", {data:{start:{row: w.row}}});
|
|
|
-
|
|
|
- this.$updateRows();
|
|
|
- this.renderWidgets(null, renderer);
|
|
|
- return w;
|
|
|
- };
|
|
|
-
|
|
|
- this.removeLineWidget = function(w) {
|
|
|
- w._inDocument = false;
|
|
|
- if (w.el && w.el.parentNode)
|
|
|
- w.el.parentNode.removeChild(w.el);
|
|
|
- if (w.editor && w.editor.destroy) try {
|
|
|
- w.editor.destroy();
|
|
|
- } catch(e){}
|
|
|
- if (this.session.lineWidgets)
|
|
|
- this.session.lineWidgets[w.row] = undefined;
|
|
|
- this.session._emit("changeFold", {data:{start:{row: w.row}}});
|
|
|
- this.$updateRows();
|
|
|
- };
|
|
|
-
|
|
|
- this.onWidgetChanged = function(w) {
|
|
|
- this.session._changedWidgets.push(w);
|
|
|
- this.editor && this.editor.renderer.updateFull();
|
|
|
- };
|
|
|
-
|
|
|
- this.measureWidgets = function(e, renderer) {
|
|
|
- var changedWidgets = this.session._changedWidgets;
|
|
|
- var config = renderer.layerConfig;
|
|
|
-
|
|
|
- if (!changedWidgets || !changedWidgets.length) return;
|
|
|
- var min = Infinity;
|
|
|
- for (var i = 0; i < changedWidgets.length; i++) {
|
|
|
- var w = changedWidgets[i];
|
|
|
- if (!w._inDocument) {
|
|
|
- w._inDocument = true;
|
|
|
- renderer.container.appendChild(w.el);
|
|
|
- }
|
|
|
-
|
|
|
- w.h = w.el.offsetHeight;
|
|
|
-
|
|
|
- if (!w.fixedWidth) {
|
|
|
- w.w = w.el.offsetWidth;
|
|
|
- w.screenWidth = Math.ceil(w.w / config.characterWidth);
|
|
|
- }
|
|
|
-
|
|
|
- var rowCount = w.h / config.lineHeight;
|
|
|
- if (w.coverLine) {
|
|
|
- rowCount -= this.session.getRowLineCount(w.row);
|
|
|
- if (rowCount < 0)
|
|
|
- rowCount = 0;
|
|
|
- }
|
|
|
- if (w.rowCount != rowCount) {
|
|
|
- w.rowCount = rowCount;
|
|
|
- if (w.row < min)
|
|
|
- min = w.row;
|
|
|
- }
|
|
|
- }
|
|
|
- if (min != Infinity) {
|
|
|
- this.session._emit("changeFold", {data:{start:{row: min}}});
|
|
|
- this.session.lineWidgetWidth = null;
|
|
|
- }
|
|
|
- this.session._changedWidgets = [];
|
|
|
- };
|
|
|
-
|
|
|
- this.renderWidgets = function(e, renderer) {
|
|
|
- var config = renderer.layerConfig;
|
|
|
- var lineWidgets = this.session.lineWidgets;
|
|
|
- if (!lineWidgets)
|
|
|
- return;
|
|
|
- var first = Math.min(this.firstRow, config.firstRow);
|
|
|
- var last = Math.max(this.lastRow, config.lastRow, lineWidgets.length);
|
|
|
-
|
|
|
- while (first > 0 && !lineWidgets[first])
|
|
|
- first--;
|
|
|
-
|
|
|
- this.firstRow = config.firstRow;
|
|
|
- this.lastRow = config.lastRow;
|
|
|
-
|
|
|
- renderer.$cursorLayer.config = config;
|
|
|
- for (var i = first; i <= last; i++) {
|
|
|
- var w = lineWidgets[i];
|
|
|
- if (!w || !w.el) continue;
|
|
|
-
|
|
|
- if (!w._inDocument) {
|
|
|
- w._inDocument = true;
|
|
|
- renderer.container.appendChild(w.el);
|
|
|
- }
|
|
|
- var top = renderer.$cursorLayer.getPixelPosition({row: i, column:0}, true).top;
|
|
|
- if (!w.coverLine)
|
|
|
- top += config.lineHeight * this.session.getRowLineCount(w.row);
|
|
|
- w.el.style.top = top - config.offset + "px";
|
|
|
-
|
|
|
- var left = w.coverGutter ? 0 : renderer.gutterWidth;
|
|
|
- if (!w.fixedWidth)
|
|
|
- left -= renderer.scrollLeft;
|
|
|
- w.el.style.left = left + "px";
|
|
|
-
|
|
|
- if (w.fixedWidth) {
|
|
|
- w.el.style.right = renderer.scrollBar.getWidth() + "px";
|
|
|
- } else {
|
|
|
- w.el.style.right = "";
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(LineWidgets.prototype);
|
|
|
-
|
|
|
-
|
|
|
-exports.LineWidgets = LineWidgets;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-var LineWidgets = require("../line_widgets").LineWidgets;
|
|
|
-var dom = require("../lib/dom");
|
|
|
-var Range = require("../range").Range;
|
|
|
-
|
|
|
-function binarySearch(array, needle, comparator) {
|
|
|
- var first = 0;
|
|
|
- var last = array.length - 1;
|
|
|
-
|
|
|
- while (first <= last) {
|
|
|
- var mid = (first + last) >> 1;
|
|
|
- var c = comparator(needle, array[mid]);
|
|
|
- if (c > 0)
|
|
|
- first = mid + 1;
|
|
|
- else if (c < 0)
|
|
|
- last = mid - 1;
|
|
|
- else
|
|
|
- return mid;
|
|
|
- }
|
|
|
- return -(first + 1);
|
|
|
-}
|
|
|
-
|
|
|
-function findAnnotations(session, row, dir) {
|
|
|
- var annotations = session.getAnnotations().sort(Range.comparePoints);
|
|
|
- if (!annotations.length)
|
|
|
- return;
|
|
|
-
|
|
|
- var i = binarySearch(annotations, {row: row, column: -1}, Range.comparePoints);
|
|
|
- if (i < 0)
|
|
|
- i = -i - 1;
|
|
|
-
|
|
|
- if (i >= annotations.length)
|
|
|
- i = dir > 0 ? 0 : annotations.length - 1;
|
|
|
- else if (i === 0 && dir < 0)
|
|
|
- i = annotations.length - 1;
|
|
|
-
|
|
|
- var annotation = annotations[i];
|
|
|
- if (!annotation || !dir)
|
|
|
- return;
|
|
|
-
|
|
|
- if (annotation.row === row) {
|
|
|
- do {
|
|
|
- annotation = annotations[i += dir];
|
|
|
- } while (annotation && annotation.row === row);
|
|
|
- if (!annotation)
|
|
|
- return annotations.slice();
|
|
|
- }
|
|
|
-
|
|
|
-
|
|
|
- var matched = [];
|
|
|
- row = annotation.row;
|
|
|
- do {
|
|
|
- matched[dir < 0 ? "unshift" : "push"](annotation);
|
|
|
- annotation = annotations[i += dir];
|
|
|
- } while (annotation && annotation.row == row);
|
|
|
- return matched.length && matched;
|
|
|
-}
|
|
|
-
|
|
|
-exports.showErrorMarker = function(editor, dir) {
|
|
|
- var session = editor.session;
|
|
|
- if (!session.widgetManager) {
|
|
|
- session.widgetManager = new LineWidgets(session);
|
|
|
- session.widgetManager.attach(editor);
|
|
|
- }
|
|
|
-
|
|
|
- var pos = editor.getCursorPosition();
|
|
|
- var row = pos.row;
|
|
|
- var oldWidget = session.lineWidgets && session.lineWidgets[row];
|
|
|
- if (oldWidget) {
|
|
|
- oldWidget.destroy();
|
|
|
- } else {
|
|
|
- row -= dir;
|
|
|
- }
|
|
|
- var annotations = findAnnotations(session, row, dir);
|
|
|
- var gutterAnno;
|
|
|
- if (annotations) {
|
|
|
- var annotation = annotations[0];
|
|
|
- pos.column = (annotation.pos && typeof annotation.column != "number"
|
|
|
- ? annotation.pos.sc
|
|
|
- : annotation.column) || 0;
|
|
|
- pos.row = annotation.row;
|
|
|
- gutterAnno = editor.renderer.$gutterLayer.$annotations[pos.row];
|
|
|
- } else if (oldWidget) {
|
|
|
- return;
|
|
|
- } else {
|
|
|
- gutterAnno = {
|
|
|
- text: ["Looks good!"],
|
|
|
- className: "ace_ok"
|
|
|
- };
|
|
|
- }
|
|
|
- editor.session.unfold(pos.row);
|
|
|
- editor.selection.moveToPosition(pos);
|
|
|
-
|
|
|
- var w = {
|
|
|
- row: pos.row,
|
|
|
- fixedWidth: true,
|
|
|
- coverGutter: true,
|
|
|
- el: dom.createElement("div")
|
|
|
- };
|
|
|
- var el = w.el.appendChild(dom.createElement("div"));
|
|
|
- var arrow = w.el.appendChild(dom.createElement("div"));
|
|
|
- arrow.className = "error_widget_arrow " + gutterAnno.className;
|
|
|
-
|
|
|
- var left = editor.renderer.$cursorLayer
|
|
|
- .getPixelPosition(pos).left;
|
|
|
- arrow.style.left = left + editor.renderer.gutterWidth - 5 + "px";
|
|
|
-
|
|
|
- w.el.className = "error_widget_wrapper";
|
|
|
- el.className = "error_widget " + gutterAnno.className;
|
|
|
- el.innerHTML = gutterAnno.text.join("<br>");
|
|
|
-
|
|
|
- el.appendChild(dom.createElement("div"));
|
|
|
-
|
|
|
- var kb = function(_, hashId, keyString) {
|
|
|
- if (hashId === 0 && (keyString === "esc" || keyString === "return")) {
|
|
|
- w.destroy();
|
|
|
- return {command: "null"};
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- w.destroy = function() {
|
|
|
- if (editor.$mouseHandler.isMousePressed)
|
|
|
- return;
|
|
|
- editor.keyBinding.removeKeyboardHandler(kb);
|
|
|
- session.widgetManager.removeLineWidget(w);
|
|
|
- editor.off("changeSelection", w.destroy);
|
|
|
- editor.off("changeSession", w.destroy);
|
|
|
- editor.off("mouseup", w.destroy);
|
|
|
- editor.off("change", w.destroy);
|
|
|
- };
|
|
|
-
|
|
|
- editor.keyBinding.addKeyboardHandler(kb);
|
|
|
- editor.on("changeSelection", w.destroy);
|
|
|
- editor.on("changeSession", w.destroy);
|
|
|
- editor.on("mouseup", w.destroy);
|
|
|
- editor.on("change", w.destroy);
|
|
|
-
|
|
|
- editor.session.widgetManager.addLineWidget(w);
|
|
|
-
|
|
|
- w.el.onmousedown = editor.focus.bind(editor);
|
|
|
-
|
|
|
- editor.renderer.scrollCursorIntoView(null, 0.5, {bottom: w.el.offsetHeight});
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-dom.importCssString("\
|
|
|
- .error_widget_wrapper {\
|
|
|
- background: inherit;\
|
|
|
- color: inherit;\
|
|
|
- border:none\
|
|
|
- }\
|
|
|
- .error_widget {\
|
|
|
- border-top: solid 2px;\
|
|
|
- border-bottom: solid 2px;\
|
|
|
- margin: 5px 0;\
|
|
|
- padding: 10px 40px;\
|
|
|
- white-space: pre-wrap;\
|
|
|
- }\
|
|
|
- .error_widget.ace_error, .error_widget_arrow.ace_error{\
|
|
|
- border-color: #ff5a5a\
|
|
|
- }\
|
|
|
- .error_widget.ace_warning, .error_widget_arrow.ace_warning{\
|
|
|
- border-color: #F1D817\
|
|
|
- }\
|
|
|
- .error_widget.ace_info, .error_widget_arrow.ace_info{\
|
|
|
- border-color: #5a5a5a\
|
|
|
- }\
|
|
|
- .error_widget.ace_ok, .error_widget_arrow.ace_ok{\
|
|
|
- border-color: #5aaa5a\
|
|
|
- }\
|
|
|
- .error_widget_arrow {\
|
|
|
- position: absolute;\
|
|
|
- border: solid 5px;\
|
|
|
- border-top-color: transparent!important;\
|
|
|
- border-right-color: transparent!important;\
|
|
|
- border-left-color: transparent!important;\
|
|
|
- top: -5px;\
|
|
|
- }\
|
|
|
-", "");
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/ace",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/dom","ace/lib/event","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-require("./lib/fixoldbrowsers");
|
|
|
-
|
|
|
-var dom = require("./lib/dom");
|
|
|
-var event = require("./lib/event");
|
|
|
-
|
|
|
-var Editor = require("./editor").Editor;
|
|
|
-var EditSession = require("./edit_session").EditSession;
|
|
|
-var UndoManager = require("./undomanager").UndoManager;
|
|
|
-var Renderer = require("./virtual_renderer").VirtualRenderer;
|
|
|
-require("./worker/worker_client");
|
|
|
-require("./keyboard/hash_handler");
|
|
|
-require("./placeholder");
|
|
|
-require("./multi_select");
|
|
|
-require("./mode/folding/fold_mode");
|
|
|
-require("./theme/textmate");
|
|
|
-require("./ext/error_marker");
|
|
|
-
|
|
|
-exports.config = require("./config");
|
|
|
-exports.require = require;
|
|
|
-exports.edit = function(el) {
|
|
|
- if (typeof(el) == "string") {
|
|
|
- var _id = el;
|
|
|
- el = document.getElementById(_id);
|
|
|
- if (!el)
|
|
|
- throw new Error("ace.edit can't find div #" + _id);
|
|
|
- }
|
|
|
-
|
|
|
- if (el && el.env && el.env.editor instanceof Editor)
|
|
|
- return el.env.editor;
|
|
|
-
|
|
|
- var value = "";
|
|
|
- if (el && /input|textarea/i.test(el.tagName)) {
|
|
|
- var oldNode = el;
|
|
|
- value = oldNode.value;
|
|
|
- el = dom.createElement("pre");
|
|
|
- oldNode.parentNode.replaceChild(el, oldNode);
|
|
|
- } else if (el) {
|
|
|
- value = dom.getInnerText(el);
|
|
|
- el.innerHTML = '';
|
|
|
- }
|
|
|
-
|
|
|
- var doc = exports.createEditSession(value);
|
|
|
-
|
|
|
- var editor = new Editor(new Renderer(el));
|
|
|
- editor.setSession(doc);
|
|
|
-
|
|
|
- var env = {
|
|
|
- document: doc,
|
|
|
- editor: editor,
|
|
|
- onResize: editor.resize.bind(editor, null)
|
|
|
- };
|
|
|
- if (oldNode) env.textarea = oldNode;
|
|
|
- event.addListener(window, "resize", env.onResize);
|
|
|
- editor.on("destroy", function() {
|
|
|
- event.removeListener(window, "resize", env.onResize);
|
|
|
- env.editor.container.env = null; // prevent memory leak on old ie
|
|
|
- });
|
|
|
- editor.container.env = editor.env = env;
|
|
|
- return editor;
|
|
|
-};
|
|
|
-exports.createEditSession = function(text, mode) {
|
|
|
- var doc = new EditSession(text, mode);
|
|
|
- doc.setUndoManager(new UndoManager());
|
|
|
- return doc;
|
|
|
-}
|
|
|
-exports.EditSession = EditSession;
|
|
|
-exports.UndoManager = UndoManager;
|
|
|
-});
|
|
|
- (function() {
|
|
|
- window.require(["ace/ace"], function(a) {
|
|
|
- a && a.config.init(true);
|
|
|
- if (!window.ace)
|
|
|
- window.ace = a;
|
|
|
- for (var key in a) if (a.hasOwnProperty(key))
|
|
|
- window.ace[key] = a[key];
|
|
|
- });
|
|
|
- })();
|
|
|
-
|
|
|
-define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
|
-
|
|
|
-var DocCommentHighlightRules = function() {
|
|
|
- this.$rules = {
|
|
|
- "start" : [ {
|
|
|
- token : "comment.doc.tag",
|
|
|
- regex : "@[\\w\\d_]+" // TODO: fix email addresses
|
|
|
- },
|
|
|
- DocCommentHighlightRules.getTagRule(),
|
|
|
- {
|
|
|
- defaultToken : "comment.doc",
|
|
|
- caseInsensitive: true
|
|
|
- }]
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(DocCommentHighlightRules, TextHighlightRules);
|
|
|
-
|
|
|
-DocCommentHighlightRules.getTagRule = function(start) {
|
|
|
- return {
|
|
|
- token : "comment.doc.tag.storage.type",
|
|
|
- regex : "\\b(?:TODO|FIXME|XXX|HACK)\\b"
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-DocCommentHighlightRules.getStartRule = function(start) {
|
|
|
- return {
|
|
|
- token : "comment.doc", // doc comment
|
|
|
- regex : "\\/\\*(?=\\*)",
|
|
|
- next : start
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-DocCommentHighlightRules.getEndRule = function (start) {
|
|
|
- return {
|
|
|
- token : "comment.doc", // closing comment
|
|
|
- regex : "\\*\\/",
|
|
|
- next : start
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-exports.DocCommentHighlightRules = DocCommentHighlightRules;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/javascript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var DocCommentHighlightRules = require("./doc_comment_highlight_rules").DocCommentHighlightRules;
|
|
|
-var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
|
-
|
|
|
-var JavaScriptHighlightRules = function(options) {
|
|
|
- var keywordMapper = this.createKeywordMapper({
|
|
|
- "variable.language":
|
|
|
- "Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|" + // Constructors
|
|
|
- "Namespace|QName|XML|XMLList|" + // E4X
|
|
|
- "ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|" +
|
|
|
- "Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|" +
|
|
|
- "Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|" + // Errors
|
|
|
- "SyntaxError|TypeError|URIError|" +
|
|
|
- "decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|" + // Non-constructor functions
|
|
|
- "isNaN|parseFloat|parseInt|" +
|
|
|
- "JSON|Math|" + // Other
|
|
|
- "this|arguments|prototype|window|document" , // Pseudo
|
|
|
- "keyword":
|
|
|
- "const|yield|import|get|set|" +
|
|
|
- "break|case|catch|continue|default|delete|do|else|finally|for|function|" +
|
|
|
- "if|in|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|" +
|
|
|
- "__parent__|__count__|escape|unescape|with|__proto__|" +
|
|
|
- "class|enum|extends|super|export|implements|private|public|interface|package|protected|static",
|
|
|
- "storage.type":
|
|
|
- "const|let|var|function",
|
|
|
- "constant.language":
|
|
|
- "null|Infinity|NaN|undefined",
|
|
|
- "support.function":
|
|
|
- "alert",
|
|
|
- "constant.language.boolean": "true|false"
|
|
|
- }, "identifier");
|
|
|
- var kwBeforeRe = "case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void";
|
|
|
- var identifierRe = "[a-zA-Z\\$_\u00a1-\uffff][a-zA-Z\\d\\$_\u00a1-\uffff]*\\b";
|
|
|
-
|
|
|
- var escapedRe = "\\\\(?:x[0-9a-fA-F]{2}|" + // hex
|
|
|
- "u[0-9a-fA-F]{4}|" + // unicode
|
|
|
- "[0-2][0-7]{0,2}|" + // oct
|
|
|
- "3[0-6][0-7]?|" + // oct
|
|
|
- "37[0-7]?|" + // oct
|
|
|
- "[4-7][0-7]?|" + //oct
|
|
|
- ".)";
|
|
|
-
|
|
|
- this.$rules = {
|
|
|
- "no_regex" : [
|
|
|
- {
|
|
|
- token : "comment",
|
|
|
- regex : "\\/\\/",
|
|
|
- next : "line_comment"
|
|
|
- },
|
|
|
- DocCommentHighlightRules.getStartRule("doc-start"),
|
|
|
- {
|
|
|
- token : "comment", // multi line comment
|
|
|
- regex : /\/\*/,
|
|
|
- next : "comment"
|
|
|
- }, {
|
|
|
- token : "string",
|
|
|
- regex : "'(?=.)",
|
|
|
- next : "qstring"
|
|
|
- }, {
|
|
|
- token : "string",
|
|
|
- regex : '"(?=.)',
|
|
|
- next : "qqstring"
|
|
|
- }, {
|
|
|
- token : "constant.numeric", // hex
|
|
|
- regex : /0[xX][0-9a-fA-F]+\b/
|
|
|
- }, {
|
|
|
- token : "constant.numeric", // float
|
|
|
- regex : /[+-]?\d+(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?\b/
|
|
|
- }, {
|
|
|
- token : [
|
|
|
- "storage.type", "punctuation.operator", "support.function",
|
|
|
- "punctuation.operator", "entity.name.function", "text","keyword.operator"
|
|
|
- ],
|
|
|
- regex : "(" + identifierRe + ")(\\.)(prototype)(\\.)(" + identifierRe +")(\\s*)(=)",
|
|
|
- next: "function_arguments"
|
|
|
- }, {
|
|
|
- token : [
|
|
|
- "storage.type", "punctuation.operator", "entity.name.function", "text",
|
|
|
- "keyword.operator", "text", "storage.type", "text", "paren.lparen"
|
|
|
- ],
|
|
|
- regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
|
|
|
- next: "function_arguments"
|
|
|
- }, {
|
|
|
- token : [
|
|
|
- "entity.name.function", "text", "keyword.operator", "text", "storage.type",
|
|
|
- "text", "paren.lparen"
|
|
|
- ],
|
|
|
- regex : "(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",
|
|
|
- next: "function_arguments"
|
|
|
- }, {
|
|
|
- token : [
|
|
|
- "storage.type", "punctuation.operator", "entity.name.function", "text",
|
|
|
- "keyword.operator", "text",
|
|
|
- "storage.type", "text", "entity.name.function", "text", "paren.lparen"
|
|
|
- ],
|
|
|
- regex : "(" + identifierRe + ")(\\.)(" + identifierRe +")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",
|
|
|
- next: "function_arguments"
|
|
|
- }, {
|
|
|
- token : [
|
|
|
- "storage.type", "text", "entity.name.function", "text", "paren.lparen"
|
|
|
- ],
|
|
|
- regex : "(function)(\\s+)(" + identifierRe + ")(\\s*)(\\()",
|
|
|
- next: "function_arguments"
|
|
|
- }, {
|
|
|
- token : [
|
|
|
- "entity.name.function", "text", "punctuation.operator",
|
|
|
- "text", "storage.type", "text", "paren.lparen"
|
|
|
- ],
|
|
|
- regex : "(" + identifierRe + ")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",
|
|
|
- next: "function_arguments"
|
|
|
- }, {
|
|
|
- token : [
|
|
|
- "text", "text", "storage.type", "text", "paren.lparen"
|
|
|
- ],
|
|
|
- regex : "(:)(\\s*)(function)(\\s*)(\\()",
|
|
|
- next: "function_arguments"
|
|
|
- }, {
|
|
|
- token : "keyword",
|
|
|
- regex : "(?:" + kwBeforeRe + ")\\b",
|
|
|
- next : "start"
|
|
|
- }, {
|
|
|
- token : ["punctuation.operator", "support.function"],
|
|
|
- regex : /(\.)(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/
|
|
|
- }, {
|
|
|
- token : ["punctuation.operator", "support.function.dom"],
|
|
|
- regex : /(\.)(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/
|
|
|
- }, {
|
|
|
- token : ["punctuation.operator", "support.constant"],
|
|
|
- regex : /(\.)(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/
|
|
|
- }, {
|
|
|
- token : ["support.constant"],
|
|
|
- regex : /that\b/
|
|
|
- }, {
|
|
|
- token : ["storage.type", "punctuation.operator", "support.function.firebug"],
|
|
|
- regex : /(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/
|
|
|
- }, {
|
|
|
- token : keywordMapper,
|
|
|
- regex : identifierRe
|
|
|
- }, {
|
|
|
- token : "keyword.operator",
|
|
|
- regex : /--|\+\+|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\|\||\?\:|[!$%&*+\-~\/^]=?/,
|
|
|
- next : "start"
|
|
|
- }, {
|
|
|
- token : "punctuation.operator",
|
|
|
- regex : /[?:,;.]/,
|
|
|
- next : "start"
|
|
|
- }, {
|
|
|
- token : "paren.lparen",
|
|
|
- regex : /[\[({]/,
|
|
|
- next : "start"
|
|
|
- }, {
|
|
|
- token : "paren.rparen",
|
|
|
- regex : /[\])}]/
|
|
|
- }, {
|
|
|
- token: "comment",
|
|
|
- regex: /^#!.*$/
|
|
|
- }
|
|
|
- ],
|
|
|
- "start": [
|
|
|
- DocCommentHighlightRules.getStartRule("doc-start"),
|
|
|
- {
|
|
|
- token : "comment", // multi line comment
|
|
|
- regex : "\\/\\*",
|
|
|
- next : "comment_regex_allowed"
|
|
|
- }, {
|
|
|
- token : "comment",
|
|
|
- regex : "\\/\\/",
|
|
|
- next : "line_comment_regex_allowed"
|
|
|
- }, {
|
|
|
- token: "string.regexp",
|
|
|
- regex: "\\/",
|
|
|
- next: "regex"
|
|
|
- }, {
|
|
|
- token : "text",
|
|
|
- regex : "\\s+|^$",
|
|
|
- next : "start"
|
|
|
- }, {
|
|
|
- token: "empty",
|
|
|
- regex: "",
|
|
|
- next: "no_regex"
|
|
|
- }
|
|
|
- ],
|
|
|
- "regex": [
|
|
|
- {
|
|
|
- token: "regexp.keyword.operator",
|
|
|
- regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
|
|
|
- }, {
|
|
|
- token: "string.regexp",
|
|
|
- regex: "/[sxngimy]*",
|
|
|
- next: "no_regex"
|
|
|
- }, {
|
|
|
- token : "invalid",
|
|
|
- regex: /\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/
|
|
|
- }, {
|
|
|
- token : "constant.language.escape",
|
|
|
- regex: /\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/
|
|
|
- }, {
|
|
|
- token : "constant.language.delimiter",
|
|
|
- regex: /\|/
|
|
|
- }, {
|
|
|
- token: "constant.language.escape",
|
|
|
- regex: /\[\^?/,
|
|
|
- next: "regex_character_class"
|
|
|
- }, {
|
|
|
- token: "empty",
|
|
|
- regex: "$",
|
|
|
- next: "no_regex"
|
|
|
- }, {
|
|
|
- defaultToken: "string.regexp"
|
|
|
- }
|
|
|
- ],
|
|
|
- "regex_character_class": [
|
|
|
- {
|
|
|
- token: "regexp.charclass.keyword.operator",
|
|
|
- regex: "\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"
|
|
|
- }, {
|
|
|
- token: "constant.language.escape",
|
|
|
- regex: "]",
|
|
|
- next: "regex"
|
|
|
- }, {
|
|
|
- token: "constant.language.escape",
|
|
|
- regex: "-"
|
|
|
- }, {
|
|
|
- token: "empty",
|
|
|
- regex: "$",
|
|
|
- next: "no_regex"
|
|
|
- }, {
|
|
|
- defaultToken: "string.regexp.charachterclass"
|
|
|
- }
|
|
|
- ],
|
|
|
- "function_arguments": [
|
|
|
- {
|
|
|
- token: "variable.parameter",
|
|
|
- regex: identifierRe
|
|
|
- }, {
|
|
|
- token: "punctuation.operator",
|
|
|
- regex: "[, ]+"
|
|
|
- }, {
|
|
|
- token: "punctuation.operator",
|
|
|
- regex: "$"
|
|
|
- }, {
|
|
|
- token: "empty",
|
|
|
- regex: "",
|
|
|
- next: "no_regex"
|
|
|
- }
|
|
|
- ],
|
|
|
- "comment_regex_allowed" : [
|
|
|
- DocCommentHighlightRules.getTagRule(),
|
|
|
- {token : "comment", regex : "\\*\\/", next : "start"},
|
|
|
- {defaultToken : "comment", caseInsensitive: true}
|
|
|
- ],
|
|
|
- "comment" : [
|
|
|
- DocCommentHighlightRules.getTagRule(),
|
|
|
- {token : "comment", regex : "\\*\\/", next : "no_regex"},
|
|
|
- {defaultToken : "comment", caseInsensitive: true}
|
|
|
- ],
|
|
|
- "line_comment_regex_allowed" : [
|
|
|
- DocCommentHighlightRules.getTagRule(),
|
|
|
- {token : "comment", regex : "$|^", next : "start"},
|
|
|
- {defaultToken : "comment", caseInsensitive: true}
|
|
|
- ],
|
|
|
- "line_comment" : [
|
|
|
- DocCommentHighlightRules.getTagRule(),
|
|
|
- {token : "comment", regex : "$|^", next : "no_regex"},
|
|
|
- {defaultToken : "comment", caseInsensitive: true}
|
|
|
- ],
|
|
|
- "qqstring" : [
|
|
|
- {
|
|
|
- token : "constant.language.escape",
|
|
|
- regex : escapedRe
|
|
|
- }, {
|
|
|
- token : "string",
|
|
|
- regex : "\\\\$",
|
|
|
- next : "qqstring"
|
|
|
- }, {
|
|
|
- token : "string",
|
|
|
- regex : '"|$',
|
|
|
- next : "no_regex"
|
|
|
- }, {
|
|
|
- defaultToken: "string"
|
|
|
- }
|
|
|
- ],
|
|
|
- "qstring" : [
|
|
|
- {
|
|
|
- token : "constant.language.escape",
|
|
|
- regex : escapedRe
|
|
|
- }, {
|
|
|
- token : "string",
|
|
|
- regex : "\\\\$",
|
|
|
- next : "qstring"
|
|
|
- }, {
|
|
|
- token : "string",
|
|
|
- regex : "'|$",
|
|
|
- next : "no_regex"
|
|
|
- }, {
|
|
|
- defaultToken: "string"
|
|
|
- }
|
|
|
- ]
|
|
|
- };
|
|
|
-
|
|
|
-
|
|
|
- if (!options || !options.noES6) {
|
|
|
- this.$rules.no_regex.unshift({
|
|
|
- regex: "[{}]", onMatch: function(val, state, stack) {
|
|
|
- this.next = val == "{" ? this.nextState : "";
|
|
|
- if (val == "{" && stack.length) {
|
|
|
- stack.unshift("start", state);
|
|
|
- return "paren";
|
|
|
- }
|
|
|
- if (val == "}" && stack.length) {
|
|
|
- stack.shift();
|
|
|
- this.next = stack.shift();
|
|
|
- if (this.next.indexOf("string") != -1)
|
|
|
- return "paren.quasi.end";
|
|
|
- }
|
|
|
- return val == "{" ? "paren.lparen" : "paren.rparen";
|
|
|
- },
|
|
|
- nextState: "start"
|
|
|
- }, {
|
|
|
- token : "string.quasi.start",
|
|
|
- regex : /`/,
|
|
|
- push : [{
|
|
|
- token : "constant.language.escape",
|
|
|
- regex : escapedRe
|
|
|
- }, {
|
|
|
- token : "paren.quasi.start",
|
|
|
- regex : /\${/,
|
|
|
- push : "start"
|
|
|
- }, {
|
|
|
- token : "string.quasi.end",
|
|
|
- regex : /`/,
|
|
|
- next : "pop"
|
|
|
- }, {
|
|
|
- defaultToken: "string.quasi"
|
|
|
- }]
|
|
|
- });
|
|
|
- }
|
|
|
-
|
|
|
- this.embedRules(DocCommentHighlightRules, "doc-",
|
|
|
- [ DocCommentHighlightRules.getEndRule("no_regex") ]);
|
|
|
-
|
|
|
- this.normalizeRules();
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(JavaScriptHighlightRules, TextHighlightRules);
|
|
|
-
|
|
|
-exports.JavaScriptHighlightRules = JavaScriptHighlightRules;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var Range = require("../range").Range;
|
|
|
-
|
|
|
-var MatchingBraceOutdent = function() {};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.checkOutdent = function(line, input) {
|
|
|
- if (! /^\s+$/.test(line))
|
|
|
- return false;
|
|
|
-
|
|
|
- return /^\s*\}/.test(input);
|
|
|
- };
|
|
|
-
|
|
|
- this.autoOutdent = function(doc, row) {
|
|
|
- var line = doc.getLine(row);
|
|
|
- var match = line.match(/^(\s*\})/);
|
|
|
-
|
|
|
- if (!match) return 0;
|
|
|
-
|
|
|
- var column = match[1].length;
|
|
|
- var openBracePos = doc.findMatchingBracket({row: row, column: column});
|
|
|
-
|
|
|
- if (!openBracePos || openBracePos.row == row) return 0;
|
|
|
-
|
|
|
- var indent = this.$getIndent(doc.getLine(openBracePos.row));
|
|
|
- doc.replace(new Range(row, 0, row, column-1), indent);
|
|
|
- };
|
|
|
-
|
|
|
- this.$getIndent = function(line) {
|
|
|
- return line.match(/^\s*/)[0];
|
|
|
- };
|
|
|
-
|
|
|
-}).call(MatchingBraceOutdent.prototype);
|
|
|
-
|
|
|
-exports.MatchingBraceOutdent = MatchingBraceOutdent;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var Behaviour = require("../behaviour").Behaviour;
|
|
|
-var TokenIterator = require("../../token_iterator").TokenIterator;
|
|
|
-var lang = require("../../lib/lang");
|
|
|
-
|
|
|
-var SAFE_INSERT_IN_TOKENS =
|
|
|
- ["text", "paren.rparen", "punctuation.operator"];
|
|
|
-var SAFE_INSERT_BEFORE_TOKENS =
|
|
|
- ["text", "paren.rparen", "punctuation.operator", "comment"];
|
|
|
-
|
|
|
-var context;
|
|
|
-var contextCache = {};
|
|
|
-var initContext = function(editor) {
|
|
|
- var id = -1;
|
|
|
- if (editor.multiSelect) {
|
|
|
- id = editor.selection.index;
|
|
|
- if (contextCache.rangeCount != editor.multiSelect.rangeCount)
|
|
|
- contextCache = {rangeCount: editor.multiSelect.rangeCount};
|
|
|
- }
|
|
|
- if (contextCache[id])
|
|
|
- return context = contextCache[id];
|
|
|
- context = contextCache[id] = {
|
|
|
- autoInsertedBrackets: 0,
|
|
|
- autoInsertedRow: -1,
|
|
|
- autoInsertedLineEnd: "",
|
|
|
- maybeInsertedBrackets: 0,
|
|
|
- maybeInsertedRow: -1,
|
|
|
- maybeInsertedLineStart: "",
|
|
|
- maybeInsertedLineEnd: ""
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-var getWrapped = function(selection, selected, opening, closing) {
|
|
|
- var rowDiff = selection.end.row - selection.start.row;
|
|
|
- return {
|
|
|
- text: opening + selected + closing,
|
|
|
- selection: [
|
|
|
- 0,
|
|
|
- selection.start.column + 1,
|
|
|
- rowDiff,
|
|
|
- selection.end.column + (rowDiff ? 0 : 1)
|
|
|
- ]
|
|
|
- };
|
|
|
-};
|
|
|
-
|
|
|
-var CstyleBehaviour = function() {
|
|
|
- this.add("braces", "insertion", function(state, action, editor, session, text) {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- if (text == '{') {
|
|
|
- initContext(editor);
|
|
|
- var selection = editor.getSelectionRange();
|
|
|
- var selected = session.doc.getTextRange(selection);
|
|
|
- if (selected !== "" && selected !== "{" && editor.getWrapBehavioursEnabled()) {
|
|
|
- return getWrapped(selection, selected, '{', '}');
|
|
|
- } else if (CstyleBehaviour.isSaneInsertion(editor, session)) {
|
|
|
- if (/[\]\}\)]/.test(line[cursor.column]) || editor.inMultiSelectMode) {
|
|
|
- CstyleBehaviour.recordAutoInsert(editor, session, "}");
|
|
|
- return {
|
|
|
- text: '{}',
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- } else {
|
|
|
- CstyleBehaviour.recordMaybeInsert(editor, session, "{");
|
|
|
- return {
|
|
|
- text: '{',
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- } else if (text == '}') {
|
|
|
- initContext(editor);
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
- if (rightChar == '}') {
|
|
|
- var matching = session.$findOpeningBracket('}', {column: cursor.column + 1, row: cursor.row});
|
|
|
- if (matching !== null && CstyleBehaviour.isAutoInsertedClosing(cursor, line, text)) {
|
|
|
- CstyleBehaviour.popAutoInsertedClosing();
|
|
|
- return {
|
|
|
- text: '',
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- } else if (text == "\n" || text == "\r\n") {
|
|
|
- initContext(editor);
|
|
|
- var closing = "";
|
|
|
- if (CstyleBehaviour.isMaybeInsertedClosing(cursor, line)) {
|
|
|
- closing = lang.stringRepeat("}", context.maybeInsertedBrackets);
|
|
|
- CstyleBehaviour.clearMaybeInsertedClosing();
|
|
|
- }
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
- if (rightChar === '}') {
|
|
|
- var openBracePos = session.findMatchingBracket({row: cursor.row, column: cursor.column+1}, '}');
|
|
|
- if (!openBracePos)
|
|
|
- return null;
|
|
|
- var next_indent = this.$getIndent(session.getLine(openBracePos.row));
|
|
|
- } else if (closing) {
|
|
|
- var next_indent = this.$getIndent(line);
|
|
|
- } else {
|
|
|
- CstyleBehaviour.clearMaybeInsertedClosing();
|
|
|
- return;
|
|
|
- }
|
|
|
- var indent = next_indent + session.getTabString();
|
|
|
-
|
|
|
- return {
|
|
|
- text: '\n' + indent + '\n' + next_indent + closing,
|
|
|
- selection: [1, indent.length, 1, indent.length]
|
|
|
- };
|
|
|
- } else {
|
|
|
- CstyleBehaviour.clearMaybeInsertedClosing();
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("braces", "deletion", function(state, action, editor, session, range) {
|
|
|
- var selected = session.doc.getTextRange(range);
|
|
|
- if (!range.isMultiLine() && selected == '{') {
|
|
|
- initContext(editor);
|
|
|
- var line = session.doc.getLine(range.start.row);
|
|
|
- var rightChar = line.substring(range.end.column, range.end.column + 1);
|
|
|
- if (rightChar == '}') {
|
|
|
- range.end.column++;
|
|
|
- return range;
|
|
|
- } else {
|
|
|
- context.maybeInsertedBrackets--;
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("parens", "insertion", function(state, action, editor, session, text) {
|
|
|
- if (text == '(') {
|
|
|
- initContext(editor);
|
|
|
- var selection = editor.getSelectionRange();
|
|
|
- var selected = session.doc.getTextRange(selection);
|
|
|
- if (selected !== "" && editor.getWrapBehavioursEnabled()) {
|
|
|
- return getWrapped(selection, selected, '(', ')');
|
|
|
- } else if (CstyleBehaviour.isSaneInsertion(editor, session)) {
|
|
|
- CstyleBehaviour.recordAutoInsert(editor, session, ")");
|
|
|
- return {
|
|
|
- text: '()',
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- } else if (text == ')') {
|
|
|
- initContext(editor);
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
- if (rightChar == ')') {
|
|
|
- var matching = session.$findOpeningBracket(')', {column: cursor.column + 1, row: cursor.row});
|
|
|
- if (matching !== null && CstyleBehaviour.isAutoInsertedClosing(cursor, line, text)) {
|
|
|
- CstyleBehaviour.popAutoInsertedClosing();
|
|
|
- return {
|
|
|
- text: '',
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("parens", "deletion", function(state, action, editor, session, range) {
|
|
|
- var selected = session.doc.getTextRange(range);
|
|
|
- if (!range.isMultiLine() && selected == '(') {
|
|
|
- initContext(editor);
|
|
|
- var line = session.doc.getLine(range.start.row);
|
|
|
- var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
|
|
|
- if (rightChar == ')') {
|
|
|
- range.end.column++;
|
|
|
- return range;
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("brackets", "insertion", function(state, action, editor, session, text) {
|
|
|
- if (text == '[') {
|
|
|
- initContext(editor);
|
|
|
- var selection = editor.getSelectionRange();
|
|
|
- var selected = session.doc.getTextRange(selection);
|
|
|
- if (selected !== "" && editor.getWrapBehavioursEnabled()) {
|
|
|
- return getWrapped(selection, selected, '[', ']');
|
|
|
- } else if (CstyleBehaviour.isSaneInsertion(editor, session)) {
|
|
|
- CstyleBehaviour.recordAutoInsert(editor, session, "]");
|
|
|
- return {
|
|
|
- text: '[]',
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- } else if (text == ']') {
|
|
|
- initContext(editor);
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
- if (rightChar == ']') {
|
|
|
- var matching = session.$findOpeningBracket(']', {column: cursor.column + 1, row: cursor.row});
|
|
|
- if (matching !== null && CstyleBehaviour.isAutoInsertedClosing(cursor, line, text)) {
|
|
|
- CstyleBehaviour.popAutoInsertedClosing();
|
|
|
- return {
|
|
|
- text: '',
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("brackets", "deletion", function(state, action, editor, session, range) {
|
|
|
- var selected = session.doc.getTextRange(range);
|
|
|
- if (!range.isMultiLine() && selected == '[') {
|
|
|
- initContext(editor);
|
|
|
- var line = session.doc.getLine(range.start.row);
|
|
|
- var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
|
|
|
- if (rightChar == ']') {
|
|
|
- range.end.column++;
|
|
|
- return range;
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("string_dquotes", "insertion", function(state, action, editor, session, text) {
|
|
|
- if (text == '"' || text == "'") {
|
|
|
- initContext(editor);
|
|
|
- var quote = text;
|
|
|
- var selection = editor.getSelectionRange();
|
|
|
- var selected = session.doc.getTextRange(selection);
|
|
|
- if (selected !== "" && selected !== "'" && selected != '"' && editor.getWrapBehavioursEnabled()) {
|
|
|
- return getWrapped(selection, selected, quote, quote);
|
|
|
- } else if (!selected) {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- var leftChar = line.substring(cursor.column-1, cursor.column);
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
-
|
|
|
- var token = session.getTokenAt(cursor.row, cursor.column);
|
|
|
- var rightToken = session.getTokenAt(cursor.row, cursor.column + 1);
|
|
|
- if (leftChar == "\\" && token && /escape/.test(token.type))
|
|
|
- return null;
|
|
|
-
|
|
|
- var stringBefore = token && /string|escape/.test(token.type);
|
|
|
- var stringAfter = !rightToken || /string|escape/.test(rightToken.type);
|
|
|
-
|
|
|
- var pair;
|
|
|
- if (rightChar == quote) {
|
|
|
- pair = stringBefore !== stringAfter;
|
|
|
- } else {
|
|
|
- if (stringBefore && !stringAfter)
|
|
|
- return null; // wrap string with different quote
|
|
|
- if (stringBefore && stringAfter)
|
|
|
- return null; // do not pair quotes inside strings
|
|
|
- var wordRe = session.$mode.tokenRe;
|
|
|
- wordRe.lastIndex = 0;
|
|
|
- var isWordBefore = wordRe.test(leftChar);
|
|
|
- wordRe.lastIndex = 0;
|
|
|
- var isWordAfter = wordRe.test(leftChar);
|
|
|
- if (isWordBefore || isWordAfter)
|
|
|
- return null; // before or after alphanumeric
|
|
|
- if (rightChar && !/[\s;,.})\]\\]/.test(rightChar))
|
|
|
- return null; // there is rightChar and it isn't closing
|
|
|
- pair = true;
|
|
|
- }
|
|
|
- return {
|
|
|
- text: pair ? quote + quote : "",
|
|
|
- selection: [1,1]
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("string_dquotes", "deletion", function(state, action, editor, session, range) {
|
|
|
- var selected = session.doc.getTextRange(range);
|
|
|
- if (!range.isMultiLine() && (selected == '"' || selected == "'")) {
|
|
|
- initContext(editor);
|
|
|
- var line = session.doc.getLine(range.start.row);
|
|
|
- var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
|
|
|
- if (rightChar == selected) {
|
|
|
- range.end.column++;
|
|
|
- return range;
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-CstyleBehaviour.isSaneInsertion = function(editor, session) {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var iterator = new TokenIterator(session, cursor.row, cursor.column);
|
|
|
- if (!this.$matchTokenType(iterator.getCurrentToken() || "text", SAFE_INSERT_IN_TOKENS)) {
|
|
|
- var iterator2 = new TokenIterator(session, cursor.row, cursor.column + 1);
|
|
|
- if (!this.$matchTokenType(iterator2.getCurrentToken() || "text", SAFE_INSERT_IN_TOKENS))
|
|
|
- return false;
|
|
|
- }
|
|
|
- iterator.stepForward();
|
|
|
- return iterator.getCurrentTokenRow() !== cursor.row ||
|
|
|
- this.$matchTokenType(iterator.getCurrentToken() || "text", SAFE_INSERT_BEFORE_TOKENS);
|
|
|
-};
|
|
|
-
|
|
|
-CstyleBehaviour.$matchTokenType = function(token, types) {
|
|
|
- return types.indexOf(token.type || token) > -1;
|
|
|
-};
|
|
|
-
|
|
|
-CstyleBehaviour.recordAutoInsert = function(editor, session, bracket) {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- if (!this.isAutoInsertedClosing(cursor, line, context.autoInsertedLineEnd[0]))
|
|
|
- context.autoInsertedBrackets = 0;
|
|
|
- context.autoInsertedRow = cursor.row;
|
|
|
- context.autoInsertedLineEnd = bracket + line.substr(cursor.column);
|
|
|
- context.autoInsertedBrackets++;
|
|
|
-};
|
|
|
-
|
|
|
-CstyleBehaviour.recordMaybeInsert = function(editor, session, bracket) {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- if (!this.isMaybeInsertedClosing(cursor, line))
|
|
|
- context.maybeInsertedBrackets = 0;
|
|
|
- context.maybeInsertedRow = cursor.row;
|
|
|
- context.maybeInsertedLineStart = line.substr(0, cursor.column) + bracket;
|
|
|
- context.maybeInsertedLineEnd = line.substr(cursor.column);
|
|
|
- context.maybeInsertedBrackets++;
|
|
|
-};
|
|
|
-
|
|
|
-CstyleBehaviour.isAutoInsertedClosing = function(cursor, line, bracket) {
|
|
|
- return context.autoInsertedBrackets > 0 &&
|
|
|
- cursor.row === context.autoInsertedRow &&
|
|
|
- bracket === context.autoInsertedLineEnd[0] &&
|
|
|
- line.substr(cursor.column) === context.autoInsertedLineEnd;
|
|
|
-};
|
|
|
-
|
|
|
-CstyleBehaviour.isMaybeInsertedClosing = function(cursor, line) {
|
|
|
- return context.maybeInsertedBrackets > 0 &&
|
|
|
- cursor.row === context.maybeInsertedRow &&
|
|
|
- line.substr(cursor.column) === context.maybeInsertedLineEnd &&
|
|
|
- line.substr(0, cursor.column) == context.maybeInsertedLineStart;
|
|
|
-};
|
|
|
-
|
|
|
-CstyleBehaviour.popAutoInsertedClosing = function() {
|
|
|
- context.autoInsertedLineEnd = context.autoInsertedLineEnd.substr(1);
|
|
|
- context.autoInsertedBrackets--;
|
|
|
-};
|
|
|
-
|
|
|
-CstyleBehaviour.clearMaybeInsertedClosing = function() {
|
|
|
- if (context) {
|
|
|
- context.maybeInsertedBrackets = 0;
|
|
|
- context.maybeInsertedRow = -1;
|
|
|
- }
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-oop.inherits(CstyleBehaviour, Behaviour);
|
|
|
-
|
|
|
-exports.CstyleBehaviour = CstyleBehaviour;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var Range = require("../../range").Range;
|
|
|
-var BaseFoldMode = require("./fold_mode").FoldMode;
|
|
|
-
|
|
|
-var FoldMode = exports.FoldMode = function(commentRegex) {
|
|
|
- if (commentRegex) {
|
|
|
- this.foldingStartMarker = new RegExp(
|
|
|
- this.foldingStartMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.start)
|
|
|
- );
|
|
|
- this.foldingStopMarker = new RegExp(
|
|
|
- this.foldingStopMarker.source.replace(/\|[^|]*?$/, "|" + commentRegex.end)
|
|
|
- );
|
|
|
- }
|
|
|
-};
|
|
|
-oop.inherits(FoldMode, BaseFoldMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.foldingStartMarker = /(\{|\[)[^\}\]]*$|^\s*(\/\*)/;
|
|
|
- this.foldingStopMarker = /^[^\[\{]*(\}|\])|^[\s\*]*(\*\/)/;
|
|
|
- this.singleLineBlockCommentRe= /^\s*(\/\*).*\*\/\s*$/;
|
|
|
- this.tripleStarBlockCommentRe = /^\s*(\/\*\*\*).*\*\/\s*$/;
|
|
|
- this.startRegionRe = /^\s*(\/\*|\/\/)#?region\b/;
|
|
|
- this._getFoldWidgetBase = this.getFoldWidget;
|
|
|
- this.getFoldWidget = function(session, foldStyle, row) {
|
|
|
- var line = session.getLine(row);
|
|
|
-
|
|
|
- if (this.singleLineBlockCommentRe.test(line)) {
|
|
|
- if (!this.startRegionRe.test(line) && !this.tripleStarBlockCommentRe.test(line))
|
|
|
- return "";
|
|
|
- }
|
|
|
-
|
|
|
- var fw = this._getFoldWidgetBase(session, foldStyle, row);
|
|
|
-
|
|
|
- if (!fw && this.startRegionRe.test(line))
|
|
|
- return "start"; // lineCommentRegionStart
|
|
|
-
|
|
|
- return fw;
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldWidgetRange = function(session, foldStyle, row, forceMultiline) {
|
|
|
- var line = session.getLine(row);
|
|
|
-
|
|
|
- if (this.startRegionRe.test(line))
|
|
|
- return this.getCommentRegionBlock(session, line, row);
|
|
|
-
|
|
|
- var match = line.match(this.foldingStartMarker);
|
|
|
- if (match) {
|
|
|
- var i = match.index;
|
|
|
-
|
|
|
- if (match[1])
|
|
|
- return this.openingBracketBlock(session, match[1], row, i);
|
|
|
-
|
|
|
- var range = session.getCommentFoldRange(row, i + match[0].length, 1);
|
|
|
-
|
|
|
- if (range && !range.isMultiLine()) {
|
|
|
- if (forceMultiline) {
|
|
|
- range = this.getSectionRange(session, row);
|
|
|
- } else if (foldStyle != "all")
|
|
|
- range = null;
|
|
|
- }
|
|
|
-
|
|
|
- return range;
|
|
|
- }
|
|
|
-
|
|
|
- if (foldStyle === "markbegin")
|
|
|
- return;
|
|
|
-
|
|
|
- var match = line.match(this.foldingStopMarker);
|
|
|
- if (match) {
|
|
|
- var i = match.index + match[0].length;
|
|
|
-
|
|
|
- if (match[1])
|
|
|
- return this.closingBracketBlock(session, match[1], row, i);
|
|
|
-
|
|
|
- return session.getCommentFoldRange(row, i, -1);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.getSectionRange = function(session, row) {
|
|
|
- var line = session.getLine(row);
|
|
|
- var startIndent = line.search(/\S/);
|
|
|
- var startRow = row;
|
|
|
- var startColumn = line.length;
|
|
|
- row = row + 1;
|
|
|
- var endRow = row;
|
|
|
- var maxRow = session.getLength();
|
|
|
- while (++row < maxRow) {
|
|
|
- line = session.getLine(row);
|
|
|
- var indent = line.search(/\S/);
|
|
|
- if (indent === -1)
|
|
|
- continue;
|
|
|
- if (startIndent > indent)
|
|
|
- break;
|
|
|
- var subRange = this.getFoldWidgetRange(session, "all", row);
|
|
|
-
|
|
|
- if (subRange) {
|
|
|
- if (subRange.start.row <= startRow) {
|
|
|
- break;
|
|
|
- } else if (subRange.isMultiLine()) {
|
|
|
- row = subRange.end.row;
|
|
|
- } else if (startIndent == indent) {
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- endRow = row;
|
|
|
- }
|
|
|
-
|
|
|
- return new Range(startRow, startColumn, endRow, session.getLine(endRow).length);
|
|
|
- };
|
|
|
- this.getCommentRegionBlock = function(session, line, row) {
|
|
|
- var startColumn = line.search(/\s*$/);
|
|
|
- var maxRow = session.getLength();
|
|
|
- var startRow = row;
|
|
|
-
|
|
|
- var re = /^\s*(?:\/\*|\/\/|--)#?(end)?region\b/;
|
|
|
- var depth = 1;
|
|
|
- while (++row < maxRow) {
|
|
|
- line = session.getLine(row);
|
|
|
- var m = re.exec(line);
|
|
|
- if (!m) continue;
|
|
|
- if (m[1]) depth--;
|
|
|
- else depth++;
|
|
|
-
|
|
|
- if (!depth) break;
|
|
|
- }
|
|
|
-
|
|
|
- var endRow = row;
|
|
|
- if (endRow > startRow) {
|
|
|
- return new Range(startRow, startColumn, endRow, line.length);
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(FoldMode.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/javascript",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/javascript_highlight_rules","ace/mode/matching_brace_outdent","ace/range","ace/worker/worker_client","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var TextMode = require("./text").Mode;
|
|
|
-var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
|
|
|
-var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
|
|
|
-var Range = require("../range").Range;
|
|
|
-var WorkerClient = require("../worker/worker_client").WorkerClient;
|
|
|
-var CstyleBehaviour = require("./behaviour/cstyle").CstyleBehaviour;
|
|
|
-var CStyleFoldMode = require("./folding/cstyle").FoldMode;
|
|
|
-
|
|
|
-var Mode = function() {
|
|
|
- this.HighlightRules = JavaScriptHighlightRules;
|
|
|
-
|
|
|
- this.$outdent = new MatchingBraceOutdent();
|
|
|
- this.$behaviour = new CstyleBehaviour();
|
|
|
- this.foldingRules = new CStyleFoldMode();
|
|
|
-};
|
|
|
-oop.inherits(Mode, TextMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.lineCommentStart = "//";
|
|
|
- this.blockComment = {start: "/*", end: "*/"};
|
|
|
-
|
|
|
- this.getNextLineIndent = function(state, line, tab) {
|
|
|
- var indent = this.$getIndent(line);
|
|
|
-
|
|
|
- var tokenizedLine = this.getTokenizer().getLineTokens(line, state);
|
|
|
- var tokens = tokenizedLine.tokens;
|
|
|
- var endState = tokenizedLine.state;
|
|
|
-
|
|
|
- if (tokens.length && tokens[tokens.length-1].type == "comment") {
|
|
|
- return indent;
|
|
|
- }
|
|
|
-
|
|
|
- if (state == "start" || state == "no_regex") {
|
|
|
- var match = line.match(/^.*(?:\bcase\b.*\:|[\{\(\[])\s*$/);
|
|
|
- if (match) {
|
|
|
- indent += tab;
|
|
|
- }
|
|
|
- } else if (state == "doc-start") {
|
|
|
- if (endState == "start" || endState == "no_regex") {
|
|
|
- return "";
|
|
|
- }
|
|
|
- var match = line.match(/^\s*(\/?)\*/);
|
|
|
- if (match) {
|
|
|
- if (match[1]) {
|
|
|
- indent += " ";
|
|
|
- }
|
|
|
- indent += "* ";
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return indent;
|
|
|
- };
|
|
|
-
|
|
|
- this.checkOutdent = function(state, line, input) {
|
|
|
- return this.$outdent.checkOutdent(line, input);
|
|
|
- };
|
|
|
-
|
|
|
- this.autoOutdent = function(state, doc, row) {
|
|
|
- this.$outdent.autoOutdent(doc, row);
|
|
|
- };
|
|
|
-
|
|
|
- this.createWorker = function(session) {
|
|
|
- var worker = new WorkerClient(["ace"], "ace/mode/javascript_worker", "JavaScriptWorker");
|
|
|
- worker.attachToDocument(session.getDocument());
|
|
|
-
|
|
|
- worker.on("annotate", function(results) {
|
|
|
- session.setAnnotations(results.data);
|
|
|
- });
|
|
|
-
|
|
|
- worker.on("terminate", function() {
|
|
|
- session.clearAnnotations();
|
|
|
- });
|
|
|
-
|
|
|
- return worker;
|
|
|
- };
|
|
|
-
|
|
|
- this.$id = "ace/mode/javascript";
|
|
|
-}).call(Mode.prototype);
|
|
|
-
|
|
|
-exports.Mode = Mode;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/xml_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
|
-
|
|
|
-var XmlHighlightRules = function(normalize) {
|
|
|
- var tagRegex = "[_:a-zA-Z\xc0-\uffff][-_:.a-zA-Z0-9\xc0-\uffff]*";
|
|
|
-
|
|
|
- this.$rules = {
|
|
|
- start : [
|
|
|
- {token : "string.cdata.xml", regex : "<\\!\\[CDATA\\[", next : "cdata"},
|
|
|
- {
|
|
|
- token : ["punctuation.xml-decl.xml", "keyword.xml-decl.xml"],
|
|
|
- regex : "(<\\?)(xml)(?=[\\s])", next : "xml_decl", caseInsensitive: true
|
|
|
- },
|
|
|
- {
|
|
|
- token : ["punctuation.instruction.xml", "keyword.instruction.xml"],
|
|
|
- regex : "(<\\?)(" + tagRegex + ")", next : "processing_instruction",
|
|
|
- },
|
|
|
- {token : "comment.xml", regex : "<\\!--", next : "comment"},
|
|
|
- {
|
|
|
- token : ["xml-pe.doctype.xml", "xml-pe.doctype.xml"],
|
|
|
- regex : "(<\\!)(DOCTYPE)(?=[\\s])", next : "doctype", caseInsensitive: true
|
|
|
- },
|
|
|
- {include : "tag"},
|
|
|
- {token : "text.end-tag-open.xml", regex: "</"},
|
|
|
- {token : "text.tag-open.xml", regex: "<"},
|
|
|
- {include : "reference"},
|
|
|
- {defaultToken : "text.xml"}
|
|
|
- ],
|
|
|
-
|
|
|
- xml_decl : [{
|
|
|
- token : "entity.other.attribute-name.decl-attribute-name.xml",
|
|
|
- regex : "(?:" + tagRegex + ":)?" + tagRegex + ""
|
|
|
- }, {
|
|
|
- token : "keyword.operator.decl-attribute-equals.xml",
|
|
|
- regex : "="
|
|
|
- }, {
|
|
|
- include: "whitespace"
|
|
|
- }, {
|
|
|
- include: "string"
|
|
|
- }, {
|
|
|
- token : "punctuation.xml-decl.xml",
|
|
|
- regex : "\\?>",
|
|
|
- next : "start"
|
|
|
- }],
|
|
|
-
|
|
|
- processing_instruction : [
|
|
|
- {token : "punctuation.instruction.xml", regex : "\\?>", next : "start"},
|
|
|
- {defaultToken : "instruction.xml"}
|
|
|
- ],
|
|
|
-
|
|
|
- doctype : [
|
|
|
- {include : "whitespace"},
|
|
|
- {include : "string"},
|
|
|
- {token : "xml-pe.doctype.xml", regex : ">", next : "start"},
|
|
|
- {token : "xml-pe.xml", regex : "[-_a-zA-Z0-9:]+"},
|
|
|
- {token : "punctuation.int-subset", regex : "\\[", push : "int_subset"}
|
|
|
- ],
|
|
|
-
|
|
|
- int_subset : [{
|
|
|
- token : "text.xml",
|
|
|
- regex : "\\s+"
|
|
|
- }, {
|
|
|
- token: "punctuation.int-subset.xml",
|
|
|
- regex: "]",
|
|
|
- next: "pop"
|
|
|
- }, {
|
|
|
- token : ["punctuation.markup-decl.xml", "keyword.markup-decl.xml"],
|
|
|
- regex : "(<\\!)(" + tagRegex + ")",
|
|
|
- push : [{
|
|
|
- token : "text",
|
|
|
- regex : "\\s+"
|
|
|
- },
|
|
|
- {
|
|
|
- token : "punctuation.markup-decl.xml",
|
|
|
- regex : ">",
|
|
|
- next : "pop"
|
|
|
- },
|
|
|
- {include : "string"}]
|
|
|
- }],
|
|
|
-
|
|
|
- cdata : [
|
|
|
- {token : "string.cdata.xml", regex : "\\]\\]>", next : "start"},
|
|
|
- {token : "text.xml", regex : "\\s+"},
|
|
|
- {token : "text.xml", regex : "(?:[^\\]]|\\](?!\\]>))+"}
|
|
|
- ],
|
|
|
-
|
|
|
- comment : [
|
|
|
- {token : "comment.xml", regex : "-->", next : "start"},
|
|
|
- {defaultToken : "comment.xml"}
|
|
|
- ],
|
|
|
-
|
|
|
- reference : [{
|
|
|
- token : "constant.language.escape.reference.xml",
|
|
|
- regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
|
|
|
- }],
|
|
|
-
|
|
|
- attr_reference : [{
|
|
|
- token : "constant.language.escape.reference.attribute-value.xml",
|
|
|
- regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
|
|
|
- }],
|
|
|
-
|
|
|
- tag : [{
|
|
|
- token : ["meta.tag.punctuation.tag-open.xml", "meta.tag.punctuation.end-tag-open.xml", "meta.tag.tag-name.xml"],
|
|
|
- regex : "(?:(<)|(</))((?:" + tagRegex + ":)?" + tagRegex + ")",
|
|
|
- next: [
|
|
|
- {include : "attributes"},
|
|
|
- {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : "start"}
|
|
|
- ]
|
|
|
- }],
|
|
|
-
|
|
|
- tag_whitespace : [
|
|
|
- {token : "text.tag-whitespace.xml", regex : "\\s+"}
|
|
|
- ],
|
|
|
- whitespace : [
|
|
|
- {token : "text.whitespace.xml", regex : "\\s+"}
|
|
|
- ],
|
|
|
- string: [{
|
|
|
- token : "string.xml",
|
|
|
- regex : "'",
|
|
|
- push : [
|
|
|
- {token : "string.xml", regex: "'", next: "pop"},
|
|
|
- {defaultToken : "string.xml"}
|
|
|
- ]
|
|
|
- }, {
|
|
|
- token : "string.xml",
|
|
|
- regex : '"',
|
|
|
- push : [
|
|
|
- {token : "string.xml", regex: '"', next: "pop"},
|
|
|
- {defaultToken : "string.xml"}
|
|
|
- ]
|
|
|
- }],
|
|
|
-
|
|
|
- attributes: [{
|
|
|
- token : "entity.other.attribute-name.xml",
|
|
|
- regex : "(?:" + tagRegex + ":)?" + tagRegex + ""
|
|
|
- }, {
|
|
|
- token : "keyword.operator.attribute-equals.xml",
|
|
|
- regex : "="
|
|
|
- }, {
|
|
|
- include: "tag_whitespace"
|
|
|
- }, {
|
|
|
- include: "attribute_value"
|
|
|
- }],
|
|
|
-
|
|
|
- attribute_value: [{
|
|
|
- token : "string.attribute-value.xml",
|
|
|
- regex : "'",
|
|
|
- push : [
|
|
|
- {token : "string.attribute-value.xml", regex: "'", next: "pop"},
|
|
|
- {include : "attr_reference"},
|
|
|
- {defaultToken : "string.attribute-value.xml"}
|
|
|
- ]
|
|
|
- }, {
|
|
|
- token : "string.attribute-value.xml",
|
|
|
- regex : '"',
|
|
|
- push : [
|
|
|
- {token : "string.attribute-value.xml", regex: '"', next: "pop"},
|
|
|
- {include : "attr_reference"},
|
|
|
- {defaultToken : "string.attribute-value.xml"}
|
|
|
- ]
|
|
|
- }]
|
|
|
- };
|
|
|
-
|
|
|
- if (this.constructor === XmlHighlightRules)
|
|
|
- this.normalizeRules();
|
|
|
-};
|
|
|
-
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.embedTagRules = function(HighlightRules, prefix, tag){
|
|
|
- this.$rules.tag.unshift({
|
|
|
- token : ["meta.tag.punctuation.tag-open.xml", "meta.tag." + tag + ".tag-name.xml"],
|
|
|
- regex : "(<)(" + tag + "(?=\\s|>|$))",
|
|
|
- next: [
|
|
|
- {include : "attributes"},
|
|
|
- {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : prefix + "start"}
|
|
|
- ]
|
|
|
- });
|
|
|
-
|
|
|
- this.$rules[tag + "-end"] = [
|
|
|
- {include : "attributes"},
|
|
|
- {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next: "start",
|
|
|
- onMatch : function(value, currentState, stack) {
|
|
|
- stack.splice(0);
|
|
|
- return this.token;
|
|
|
- }}
|
|
|
- ]
|
|
|
-
|
|
|
- this.embedRules(HighlightRules, prefix, [{
|
|
|
- token: ["meta.tag.punctuation.end-tag-open.xml", "meta.tag." + tag + ".tag-name.xml"],
|
|
|
- regex : "(</)(" + tag + "(?=\\s|>|$))",
|
|
|
- next: tag + "-end"
|
|
|
- }, {
|
|
|
- token: "string.cdata.xml",
|
|
|
- regex : "<\\!\\[CDATA\\["
|
|
|
- }, {
|
|
|
- token: "string.cdata.xml",
|
|
|
- regex : "\\]\\]>"
|
|
|
- }]);
|
|
|
- };
|
|
|
-
|
|
|
-}).call(TextHighlightRules.prototype);
|
|
|
-
|
|
|
-oop.inherits(XmlHighlightRules, TextHighlightRules);
|
|
|
-
|
|
|
-exports.XmlHighlightRules = XmlHighlightRules;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/behaviour/xml",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var Behaviour = require("../behaviour").Behaviour;
|
|
|
-var TokenIterator = require("../../token_iterator").TokenIterator;
|
|
|
-var lang = require("../../lib/lang");
|
|
|
-
|
|
|
-function is(token, type) {
|
|
|
- return token.type.lastIndexOf(type + ".xml") > -1;
|
|
|
-}
|
|
|
-
|
|
|
-var XmlBehaviour = function () {
|
|
|
-
|
|
|
- this.add("string_dquotes", "insertion", function (state, action, editor, session, text) {
|
|
|
- if (text == '"' || text == "'") {
|
|
|
- var quote = text;
|
|
|
- var selected = session.doc.getTextRange(editor.getSelectionRange());
|
|
|
- if (selected !== "" && selected !== "'" && selected != '"' && editor.getWrapBehavioursEnabled()) {
|
|
|
- return {
|
|
|
- text: quote + selected + quote,
|
|
|
- selection: false
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
- var iterator = new TokenIterator(session, cursor.row, cursor.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
-
|
|
|
- if (rightChar == quote && (is(token, "attribute-value") || is(token, "string"))) {
|
|
|
- return {
|
|
|
- text: "",
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
-
|
|
|
- if (!token)
|
|
|
- token = iterator.stepBackward();
|
|
|
-
|
|
|
- if (!token)
|
|
|
- return;
|
|
|
-
|
|
|
- while (is(token, "tag-whitespace") || is(token, "whitespace")) {
|
|
|
- token = iterator.stepBackward();
|
|
|
- }
|
|
|
- var rightSpace = !rightChar || rightChar.match(/\s/);
|
|
|
- if (is(token, "attribute-equals") && (rightSpace || rightChar == '>') || (is(token, "decl-attribute-equals") && (rightSpace || rightChar == '?'))) {
|
|
|
- return {
|
|
|
- text: quote + quote,
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("string_dquotes", "deletion", function(state, action, editor, session, range) {
|
|
|
- var selected = session.doc.getTextRange(range);
|
|
|
- if (!range.isMultiLine() && (selected == '"' || selected == "'")) {
|
|
|
- var line = session.doc.getLine(range.start.row);
|
|
|
- var rightChar = line.substring(range.start.column + 1, range.start.column + 2);
|
|
|
- if (rightChar == selected) {
|
|
|
- range.end.column++;
|
|
|
- return range;
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("autoclosing", "insertion", function (state, action, editor, session, text) {
|
|
|
- if (text == '>') {
|
|
|
- var position = editor.getCursorPosition();
|
|
|
- var iterator = new TokenIterator(session, position.row, position.column);
|
|
|
- var token = iterator.getCurrentToken() || iterator.stepBackward();
|
|
|
- if (!token || !(is(token, "tag-name") || is(token, "tag-whitespace") || is(token, "attribute-name") || is(token, "attribute-equals") || is(token, "attribute-value")))
|
|
|
- return;
|
|
|
- if (is(token, "reference.attribute-value"))
|
|
|
- return;
|
|
|
- if (is(token, "attribute-value")) {
|
|
|
- var firstChar = token.value.charAt(0);
|
|
|
- if (firstChar == '"' || firstChar == "'") {
|
|
|
- var lastChar = token.value.charAt(token.value.length - 1);
|
|
|
- var tokenEnd = iterator.getCurrentTokenColumn() + token.value.length;
|
|
|
- if (tokenEnd > position.column || tokenEnd == position.column && firstChar != lastChar)
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
- while (!is(token, "tag-name")) {
|
|
|
- token = iterator.stepBackward();
|
|
|
- }
|
|
|
-
|
|
|
- var tokenRow = iterator.getCurrentTokenRow();
|
|
|
- var tokenColumn = iterator.getCurrentTokenColumn();
|
|
|
- if (is(iterator.stepBackward(), "end-tag-open"))
|
|
|
- return;
|
|
|
-
|
|
|
- var element = token.value;
|
|
|
- if (tokenRow == position.row)
|
|
|
- element = element.substring(0, position.column - tokenColumn);
|
|
|
-
|
|
|
- if (this.voidElements.hasOwnProperty(element.toLowerCase()))
|
|
|
- return;
|
|
|
-
|
|
|
- return {
|
|
|
- text: ">" + "</" + element + ">",
|
|
|
- selection: [1, 1]
|
|
|
- };
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("autoindent", "insertion", function (state, action, editor, session, text) {
|
|
|
- if (text == "\n") {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.getLine(cursor.row);
|
|
|
- var iterator = new TokenIterator(session, cursor.row, cursor.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
-
|
|
|
- if (token && token.type.indexOf("tag-close") !== -1) {
|
|
|
- if (token.value == "/>")
|
|
|
- return;
|
|
|
- while (token && token.type.indexOf("tag-name") === -1) {
|
|
|
- token = iterator.stepBackward();
|
|
|
- }
|
|
|
-
|
|
|
- if (!token) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- var tag = token.value;
|
|
|
- var row = iterator.getCurrentTokenRow();
|
|
|
- token = iterator.stepBackward();
|
|
|
- if (!token || token.type.indexOf("end-tag") !== -1) {
|
|
|
- return;
|
|
|
- }
|
|
|
-
|
|
|
- if (this.voidElements && !this.voidElements[tag]) {
|
|
|
- var nextToken = session.getTokenAt(cursor.row, cursor.column+1);
|
|
|
- var line = session.getLine(row);
|
|
|
- var nextIndent = this.$getIndent(line);
|
|
|
- var indent = nextIndent + session.getTabString();
|
|
|
-
|
|
|
- if (nextToken && nextToken.value === "</") {
|
|
|
- return {
|
|
|
- text: "\n" + indent + "\n" + nextIndent,
|
|
|
- selection: [1, indent.length, 1, indent.length]
|
|
|
- };
|
|
|
- } else {
|
|
|
- return {
|
|
|
- text: "\n" + indent
|
|
|
- };
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(XmlBehaviour, Behaviour);
|
|
|
-
|
|
|
-exports.XmlBehaviour = XmlBehaviour;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/folding/xml",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/range","ace/mode/folding/fold_mode","ace/token_iterator"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var lang = require("../../lib/lang");
|
|
|
-var Range = require("../../range").Range;
|
|
|
-var BaseFoldMode = require("./fold_mode").FoldMode;
|
|
|
-var TokenIterator = require("../../token_iterator").TokenIterator;
|
|
|
-
|
|
|
-var FoldMode = exports.FoldMode = function(voidElements, optionalEndTags) {
|
|
|
- BaseFoldMode.call(this);
|
|
|
- this.voidElements = voidElements || {};
|
|
|
- this.optionalEndTags = oop.mixin({}, this.voidElements);
|
|
|
- if (optionalEndTags)
|
|
|
- oop.mixin(this.optionalEndTags, optionalEndTags);
|
|
|
-
|
|
|
-};
|
|
|
-oop.inherits(FoldMode, BaseFoldMode);
|
|
|
-
|
|
|
-var Tag = function() {
|
|
|
- this.tagName = "";
|
|
|
- this.closing = false;
|
|
|
- this.selfClosing = false;
|
|
|
- this.start = {row: 0, column: 0};
|
|
|
- this.end = {row: 0, column: 0};
|
|
|
-};
|
|
|
-
|
|
|
-function is(token, type) {
|
|
|
- return token.type.lastIndexOf(type + ".xml") > -1;
|
|
|
-}
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.getFoldWidget = function(session, foldStyle, row) {
|
|
|
- var tag = this._getFirstTagInLine(session, row);
|
|
|
-
|
|
|
- if (!tag)
|
|
|
- return "";
|
|
|
-
|
|
|
- if (tag.closing || (!tag.tagName && tag.selfClosing))
|
|
|
- return foldStyle == "markbeginend" ? "end" : "";
|
|
|
-
|
|
|
- if (!tag.tagName || tag.selfClosing || this.voidElements.hasOwnProperty(tag.tagName.toLowerCase()))
|
|
|
- return "";
|
|
|
-
|
|
|
- if (this._findEndTagInLine(session, row, tag.tagName, tag.end.column))
|
|
|
- return "";
|
|
|
-
|
|
|
- return "start";
|
|
|
- };
|
|
|
- this._getFirstTagInLine = function(session, row) {
|
|
|
- var tokens = session.getTokens(row);
|
|
|
- var tag = new Tag();
|
|
|
-
|
|
|
- for (var i = 0; i < tokens.length; i++) {
|
|
|
- var token = tokens[i];
|
|
|
- if (is(token, "tag-open")) {
|
|
|
- tag.end.column = tag.start.column + token.value.length;
|
|
|
- tag.closing = is(token, "end-tag-open");
|
|
|
- token = tokens[++i];
|
|
|
- if (!token)
|
|
|
- return null;
|
|
|
- tag.tagName = token.value;
|
|
|
- tag.end.column += token.value.length;
|
|
|
- for (i++; i < tokens.length; i++) {
|
|
|
- token = tokens[i];
|
|
|
- tag.end.column += token.value.length;
|
|
|
- if (is(token, "tag-close")) {
|
|
|
- tag.selfClosing = token.value == '/>';
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
- return tag;
|
|
|
- } else if (is(token, "tag-close")) {
|
|
|
- tag.selfClosing = token.value == '/>';
|
|
|
- return tag;
|
|
|
- }
|
|
|
- tag.start.column += token.value.length;
|
|
|
- }
|
|
|
-
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this._findEndTagInLine = function(session, row, tagName, startColumn) {
|
|
|
- var tokens = session.getTokens(row);
|
|
|
- var column = 0;
|
|
|
- for (var i = 0; i < tokens.length; i++) {
|
|
|
- var token = tokens[i];
|
|
|
- column += token.value.length;
|
|
|
- if (column < startColumn)
|
|
|
- continue;
|
|
|
- if (is(token, "end-tag-open")) {
|
|
|
- token = tokens[i + 1];
|
|
|
- if (token && token.value == tagName)
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
- return false;
|
|
|
- };
|
|
|
- this._readTagForward = function(iterator) {
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- if (!token)
|
|
|
- return null;
|
|
|
-
|
|
|
- var tag = new Tag();
|
|
|
- do {
|
|
|
- if (is(token, "tag-open")) {
|
|
|
- tag.closing = is(token, "end-tag-open");
|
|
|
- tag.start.row = iterator.getCurrentTokenRow();
|
|
|
- tag.start.column = iterator.getCurrentTokenColumn();
|
|
|
- } else if (is(token, "tag-name")) {
|
|
|
- tag.tagName = token.value;
|
|
|
- } else if (is(token, "tag-close")) {
|
|
|
- tag.selfClosing = token.value == "/>";
|
|
|
- tag.end.row = iterator.getCurrentTokenRow();
|
|
|
- tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;
|
|
|
- iterator.stepForward();
|
|
|
- return tag;
|
|
|
- }
|
|
|
- } while(token = iterator.stepForward());
|
|
|
-
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this._readTagBackward = function(iterator) {
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- if (!token)
|
|
|
- return null;
|
|
|
-
|
|
|
- var tag = new Tag();
|
|
|
- do {
|
|
|
- if (is(token, "tag-open")) {
|
|
|
- tag.closing = is(token, "end-tag-open");
|
|
|
- tag.start.row = iterator.getCurrentTokenRow();
|
|
|
- tag.start.column = iterator.getCurrentTokenColumn();
|
|
|
- iterator.stepBackward();
|
|
|
- return tag;
|
|
|
- } else if (is(token, "tag-name")) {
|
|
|
- tag.tagName = token.value;
|
|
|
- } else if (is(token, "tag-close")) {
|
|
|
- tag.selfClosing = token.value == "/>";
|
|
|
- tag.end.row = iterator.getCurrentTokenRow();
|
|
|
- tag.end.column = iterator.getCurrentTokenColumn() + token.value.length;
|
|
|
- }
|
|
|
- } while(token = iterator.stepBackward());
|
|
|
-
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this._pop = function(stack, tag) {
|
|
|
- while (stack.length) {
|
|
|
-
|
|
|
- var top = stack[stack.length-1];
|
|
|
- if (!tag || top.tagName == tag.tagName) {
|
|
|
- return stack.pop();
|
|
|
- }
|
|
|
- else if (this.optionalEndTags.hasOwnProperty(top.tagName)) {
|
|
|
- stack.pop();
|
|
|
- continue;
|
|
|
- } else {
|
|
|
- return null;
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldWidgetRange = function(session, foldStyle, row) {
|
|
|
- var firstTag = this._getFirstTagInLine(session, row);
|
|
|
-
|
|
|
- if (!firstTag)
|
|
|
- return null;
|
|
|
-
|
|
|
- var isBackward = firstTag.closing || firstTag.selfClosing;
|
|
|
- var stack = [];
|
|
|
- var tag;
|
|
|
-
|
|
|
- if (!isBackward) {
|
|
|
- var iterator = new TokenIterator(session, row, firstTag.start.column);
|
|
|
- var start = {
|
|
|
- row: row,
|
|
|
- column: firstTag.start.column + firstTag.tagName.length + 2
|
|
|
- };
|
|
|
- if (firstTag.start.row == firstTag.end.row)
|
|
|
- start.column = firstTag.end.column;
|
|
|
- while (tag = this._readTagForward(iterator)) {
|
|
|
- if (tag.selfClosing) {
|
|
|
- if (!stack.length) {
|
|
|
- tag.start.column += tag.tagName.length + 2;
|
|
|
- tag.end.column -= 2;
|
|
|
- return Range.fromPoints(tag.start, tag.end);
|
|
|
- } else
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- if (tag.closing) {
|
|
|
- this._pop(stack, tag);
|
|
|
- if (stack.length == 0)
|
|
|
- return Range.fromPoints(start, tag.start);
|
|
|
- }
|
|
|
- else {
|
|
|
- stack.push(tag);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- var iterator = new TokenIterator(session, row, firstTag.end.column);
|
|
|
- var end = {
|
|
|
- row: row,
|
|
|
- column: firstTag.start.column
|
|
|
- };
|
|
|
-
|
|
|
- while (tag = this._readTagBackward(iterator)) {
|
|
|
- if (tag.selfClosing) {
|
|
|
- if (!stack.length) {
|
|
|
- tag.start.column += tag.tagName.length + 2;
|
|
|
- tag.end.column -= 2;
|
|
|
- return Range.fromPoints(tag.start, tag.end);
|
|
|
- } else
|
|
|
- continue;
|
|
|
- }
|
|
|
-
|
|
|
- if (!tag.closing) {
|
|
|
- this._pop(stack, tag);
|
|
|
- if (stack.length == 0) {
|
|
|
- tag.start.column += tag.tagName.length + 2;
|
|
|
- if (tag.start.row == tag.end.row && tag.start.column < tag.end.column)
|
|
|
- tag.start.column = tag.end.column;
|
|
|
- return Range.fromPoints(tag.start, end);
|
|
|
- }
|
|
|
- }
|
|
|
- else {
|
|
|
- stack.push(tag);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- };
|
|
|
-
|
|
|
-}).call(FoldMode.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/xml",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text","ace/mode/xml_highlight_rules","ace/mode/behaviour/xml","ace/mode/folding/xml","ace/worker/worker_client"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var TextMode = require("./text").Mode;
|
|
|
-var XmlHighlightRules = require("./xml_highlight_rules").XmlHighlightRules;
|
|
|
-var XmlBehaviour = require("./behaviour/xml").XmlBehaviour;
|
|
|
-var XmlFoldMode = require("./folding/xml").FoldMode;
|
|
|
-var WorkerClient = require("../worker/worker_client").WorkerClient;
|
|
|
-
|
|
|
-var Mode = function() {
|
|
|
- this.HighlightRules = XmlHighlightRules;
|
|
|
- this.$behaviour = new XmlBehaviour();
|
|
|
- this.foldingRules = new XmlFoldMode();
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(Mode, TextMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.voidElements = lang.arrayToMap([]);
|
|
|
-
|
|
|
- this.blockComment = {start: "<!--", end: "-->"};
|
|
|
-
|
|
|
- this.createWorker = function(session) {
|
|
|
- var worker = new WorkerClient(["ace"], "ace/mode/xml_worker", "Worker");
|
|
|
- worker.attachToDocument(session.getDocument());
|
|
|
-
|
|
|
- worker.on("error", function(e) {
|
|
|
- session.setAnnotations(e.data);
|
|
|
- });
|
|
|
-
|
|
|
- worker.on("terminate", function() {
|
|
|
- session.clearAnnotations();
|
|
|
- });
|
|
|
-
|
|
|
- return worker;
|
|
|
- };
|
|
|
-
|
|
|
- this.$id = "ace/mode/xml";
|
|
|
-}).call(Mode.prototype);
|
|
|
-
|
|
|
-exports.Mode = Mode;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
|
-var supportType = exports.supportType = "animation-fill-mode|alignment-adjust|alignment-baseline|animation-delay|animation-direction|animation-duration|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|animation|appearance|azimuth|backface-visibility|background-attachment|background-break|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|background|baseline-shift|binding|bleed|bookmark-label|bookmark-level|bookmark-state|bookmark-target|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|border|bottom|box-align|box-decoration-break|box-direction|box-flex-group|box-flex|box-lines|box-ordinal-group|box-orient|box-pack|box-shadow|box-sizing|break-after|break-before|break-inside|caption-side|clear|clip|color-profile|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|crop|cue-after|cue-before|cue|cursor|direction|display|dominant-baseline|drop-initial-after-adjust|drop-initial-after-align|drop-initial-before-adjust|drop-initial-before-align|drop-initial-size|drop-initial-value|elevation|empty-cells|fit|fit-position|float-offset|float|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|font|grid-columns|grid-rows|hanging-punctuation|height|hyphenate-after|hyphenate-before|hyphenate-character|hyphenate-lines|hyphenate-resource|hyphens|icon|image-orientation|image-rendering|image-resolution|inline-box-align|left|letter-spacing|line-height|line-stacking-ruby|line-stacking-shift|line-stacking-strategy|line-stacking|list-style-image|list-style-position|list-style-type|list-style|margin-bottom|margin-left|margin-right|margin-top|margin|mark-after|mark-before|mark|marks|marquee-direction|marquee-play-count|marquee-speed|marquee-style|max-height|max-width|min-height|min-width|move-to|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|orphans|outline-color|outline-offset|outline-style|outline-width|outline|overflow-style|overflow-x|overflow-y|overflow|padding-bottom|padding-left|padding-right|padding-top|padding|page-break-after|page-break-before|page-break-inside|page-policy|page|pause-after|pause-before|pause|perspective-origin|perspective|phonemes|pitch-range|pitch|play-during|pointer-events|position|presentation-level|punctuation-trim|quotes|rendering-intent|resize|rest-after|rest-before|rest|richness|right|rotation-point|rotation|ruby-align|ruby-overhang|ruby-position|ruby-span|size|speak-header|speak-numeral|speak-punctuation|speak|speech-rate|stress|string-set|table-layout|target-name|target-new|target-position|target|text-align-last|text-align|text-decoration|text-emphasis|text-height|text-indent|text-justify|text-outline|text-shadow|text-transform|text-wrap|top|transform-origin|transform-style|transform|transition-delay|transition-duration|transition-property|transition-timing-function|transition|unicode-bidi|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch-range|voice-pitch|voice-rate|voice-stress|voice-volume|volume|white-space-collapse|white-space|widows|width|word-break|word-spacing|word-wrap|z-index";
|
|
|
-var supportFunction = exports.supportFunction = "rgb|rgba|url|attr|counter|counters";
|
|
|
-var supportConstant = exports.supportConstant = "absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero";
|
|
|
-var supportConstantColor = exports.supportConstantColor = "aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|orange|purple|red|silver|teal|white|yellow";
|
|
|
-var supportConstantFonts = exports.supportConstantFonts = "arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace";
|
|
|
-
|
|
|
-var numRe = exports.numRe = "\\-?(?:(?:[0-9]+)|(?:[0-9]*\\.[0-9]+))";
|
|
|
-var pseudoElements = exports.pseudoElements = "(\\:+)\\b(after|before|first-letter|first-line|moz-selection|selection)\\b";
|
|
|
-var pseudoClasses = exports.pseudoClasses = "(:)\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\b";
|
|
|
-
|
|
|
-var CssHighlightRules = function() {
|
|
|
-
|
|
|
- var keywordMapper = this.createKeywordMapper({
|
|
|
- "support.function": supportFunction,
|
|
|
- "support.constant": supportConstant,
|
|
|
- "support.type": supportType,
|
|
|
- "support.constant.color": supportConstantColor,
|
|
|
- "support.constant.fonts": supportConstantFonts
|
|
|
- }, "text", true);
|
|
|
-
|
|
|
- this.$rules = {
|
|
|
- "start" : [{
|
|
|
- token : "comment", // multi line comment
|
|
|
- regex : "\\/\\*",
|
|
|
- push : "comment"
|
|
|
- }, {
|
|
|
- token: "paren.lparen",
|
|
|
- regex: "\\{",
|
|
|
- push: "ruleset"
|
|
|
- }, {
|
|
|
- token: "string",
|
|
|
- regex: "@.*?{",
|
|
|
- push: "media"
|
|
|
- }, {
|
|
|
- token: "keyword",
|
|
|
- regex: "#[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- token: "variable",
|
|
|
- regex: "\\.[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- token: "string",
|
|
|
- regex: ":[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- token: "constant",
|
|
|
- regex: "[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- caseInsensitive: true
|
|
|
- }],
|
|
|
-
|
|
|
- "media" : [{
|
|
|
- token : "comment", // multi line comment
|
|
|
- regex : "\\/\\*",
|
|
|
- push : "comment"
|
|
|
- }, {
|
|
|
- token: "paren.lparen",
|
|
|
- regex: "\\{",
|
|
|
- push: "ruleset"
|
|
|
- }, {
|
|
|
- token: "string",
|
|
|
- regex: "\\}",
|
|
|
- next: "pop"
|
|
|
- }, {
|
|
|
- token: "keyword",
|
|
|
- regex: "#[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- token: "variable",
|
|
|
- regex: "\\.[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- token: "string",
|
|
|
- regex: ":[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- token: "constant",
|
|
|
- regex: "[a-z0-9-_]+"
|
|
|
- }, {
|
|
|
- caseInsensitive: true
|
|
|
- }],
|
|
|
-
|
|
|
- "comment" : [{
|
|
|
- token : "comment",
|
|
|
- regex : "\\*\\/",
|
|
|
- next : "pop"
|
|
|
- }, {
|
|
|
- defaultToken : "comment"
|
|
|
- }],
|
|
|
-
|
|
|
- "ruleset" : [
|
|
|
- {
|
|
|
- token : "paren.rparen",
|
|
|
- regex : "\\}",
|
|
|
- next: "pop"
|
|
|
- }, {
|
|
|
- token : "comment", // multi line comment
|
|
|
- regex : "\\/\\*",
|
|
|
- push : "comment"
|
|
|
- }, {
|
|
|
- token : "string", // single line
|
|
|
- regex : '["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'
|
|
|
- }, {
|
|
|
- token : "string", // single line
|
|
|
- regex : "['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"
|
|
|
- }, {
|
|
|
- token : ["constant.numeric", "keyword"],
|
|
|
- regex : "(" + numRe + ")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vm|vw|%)"
|
|
|
- }, {
|
|
|
- token : "constant.numeric",
|
|
|
- regex : numRe
|
|
|
- }, {
|
|
|
- token : "constant.numeric", // hex6 color
|
|
|
- regex : "#[a-f0-9]{6}"
|
|
|
- }, {
|
|
|
- token : "constant.numeric", // hex3 color
|
|
|
- regex : "#[a-f0-9]{3}"
|
|
|
- }, {
|
|
|
- token : ["punctuation", "entity.other.attribute-name.pseudo-element.css"],
|
|
|
- regex : pseudoElements
|
|
|
- }, {
|
|
|
- token : ["punctuation", "entity.other.attribute-name.pseudo-class.css"],
|
|
|
- regex : pseudoClasses
|
|
|
- }, {
|
|
|
- token : ["support.function", "string", "support.function"],
|
|
|
- regex : "(url\\()(.*)(\\))"
|
|
|
- }, {
|
|
|
- token : keywordMapper,
|
|
|
- regex : "\\-?[a-zA-Z_][a-zA-Z0-9_\\-]*"
|
|
|
- }, {
|
|
|
- caseInsensitive: true
|
|
|
- }]
|
|
|
- };
|
|
|
-
|
|
|
- this.normalizeRules();
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(CssHighlightRules, TextHighlightRules);
|
|
|
-
|
|
|
-exports.CssHighlightRules = CssHighlightRules;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/behaviour/css",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/mode/behaviour/cstyle","ace/token_iterator"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var Behaviour = require("../behaviour").Behaviour;
|
|
|
-var CstyleBehaviour = require("./cstyle").CstyleBehaviour;
|
|
|
-var TokenIterator = require("../../token_iterator").TokenIterator;
|
|
|
-
|
|
|
-var CssBehaviour = function () {
|
|
|
-
|
|
|
- this.inherit(CstyleBehaviour);
|
|
|
-
|
|
|
- this.add("colon", "insertion", function (state, action, editor, session, text) {
|
|
|
- if (text === ':') {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var iterator = new TokenIterator(session, cursor.row, cursor.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- if (token && token.value.match(/\s+/)) {
|
|
|
- token = iterator.stepBackward();
|
|
|
- }
|
|
|
- if (token && token.type === 'support.type') {
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
- if (rightChar === ':') {
|
|
|
- return {
|
|
|
- text: '',
|
|
|
- selection: [1, 1]
|
|
|
- }
|
|
|
- }
|
|
|
- if (!line.substring(cursor.column).match(/^\s*;/)) {
|
|
|
- return {
|
|
|
- text: ':;',
|
|
|
- selection: [1, 1]
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("colon", "deletion", function (state, action, editor, session, range) {
|
|
|
- var selected = session.doc.getTextRange(range);
|
|
|
- if (!range.isMultiLine() && selected === ':') {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var iterator = new TokenIterator(session, cursor.row, cursor.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- if (token && token.value.match(/\s+/)) {
|
|
|
- token = iterator.stepBackward();
|
|
|
- }
|
|
|
- if (token && token.type === 'support.type') {
|
|
|
- var line = session.doc.getLine(range.start.row);
|
|
|
- var rightChar = line.substring(range.end.column, range.end.column + 1);
|
|
|
- if (rightChar === ';') {
|
|
|
- range.end.column ++;
|
|
|
- return range;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
- this.add("semicolon", "insertion", function (state, action, editor, session, text) {
|
|
|
- if (text === ';') {
|
|
|
- var cursor = editor.getCursorPosition();
|
|
|
- var line = session.doc.getLine(cursor.row);
|
|
|
- var rightChar = line.substring(cursor.column, cursor.column + 1);
|
|
|
- if (rightChar === ';') {
|
|
|
- return {
|
|
|
- text: '',
|
|
|
- selection: [1, 1]
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
-
|
|
|
-}
|
|
|
-oop.inherits(CssBehaviour, CstyleBehaviour);
|
|
|
-
|
|
|
-exports.CssBehaviour = CssBehaviour;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/css",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/css_highlight_rules","ace/mode/matching_brace_outdent","ace/worker/worker_client","ace/mode/behaviour/css","ace/mode/folding/cstyle"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var TextMode = require("./text").Mode;
|
|
|
-var CssHighlightRules = require("./css_highlight_rules").CssHighlightRules;
|
|
|
-var MatchingBraceOutdent = require("./matching_brace_outdent").MatchingBraceOutdent;
|
|
|
-var WorkerClient = require("../worker/worker_client").WorkerClient;
|
|
|
-var CssBehaviour = require("./behaviour/css").CssBehaviour;
|
|
|
-var CStyleFoldMode = require("./folding/cstyle").FoldMode;
|
|
|
-
|
|
|
-var Mode = function() {
|
|
|
- this.HighlightRules = CssHighlightRules;
|
|
|
- this.$outdent = new MatchingBraceOutdent();
|
|
|
- this.$behaviour = new CssBehaviour();
|
|
|
- this.foldingRules = new CStyleFoldMode();
|
|
|
-};
|
|
|
-oop.inherits(Mode, TextMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.foldingRules = "cStyle";
|
|
|
- this.blockComment = {start: "/*", end: "*/"};
|
|
|
-
|
|
|
- this.getNextLineIndent = function(state, line, tab) {
|
|
|
- var indent = this.$getIndent(line);
|
|
|
- var tokens = this.getTokenizer().getLineTokens(line, state).tokens;
|
|
|
- if (tokens.length && tokens[tokens.length-1].type == "comment") {
|
|
|
- return indent;
|
|
|
- }
|
|
|
-
|
|
|
- var match = line.match(/^.*\{\s*$/);
|
|
|
- if (match) {
|
|
|
- indent += tab;
|
|
|
- }
|
|
|
-
|
|
|
- return indent;
|
|
|
- };
|
|
|
-
|
|
|
- this.checkOutdent = function(state, line, input) {
|
|
|
- return this.$outdent.checkOutdent(line, input);
|
|
|
- };
|
|
|
-
|
|
|
- this.autoOutdent = function(state, doc, row) {
|
|
|
- this.$outdent.autoOutdent(doc, row);
|
|
|
- };
|
|
|
-
|
|
|
- this.createWorker = function(session) {
|
|
|
- var worker = new WorkerClient(["ace"], "ace/mode/css_worker", "Worker");
|
|
|
- worker.attachToDocument(session.getDocument());
|
|
|
-
|
|
|
- worker.on("annotate", function(e) {
|
|
|
- session.setAnnotations(e.data);
|
|
|
- });
|
|
|
-
|
|
|
- worker.on("terminate", function() {
|
|
|
- session.clearAnnotations();
|
|
|
- });
|
|
|
-
|
|
|
- return worker;
|
|
|
- };
|
|
|
-
|
|
|
- this.$id = "ace/mode/css";
|
|
|
-}).call(Mode.prototype);
|
|
|
-
|
|
|
-exports.Mode = Mode;
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/html_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/css_highlight_rules","ace/mode/javascript_highlight_rules","ace/mode/xml_highlight_rules"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var CssHighlightRules = require("./css_highlight_rules").CssHighlightRules;
|
|
|
-var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
|
|
|
-var XmlHighlightRules = require("./xml_highlight_rules").XmlHighlightRules;
|
|
|
-
|
|
|
-var tagMap = lang.createMap({
|
|
|
- a : 'anchor',
|
|
|
- button : 'form',
|
|
|
- form : 'form',
|
|
|
- img : 'image',
|
|
|
- input : 'form',
|
|
|
- label : 'form',
|
|
|
- option : 'form',
|
|
|
- script : 'script',
|
|
|
- select : 'form',
|
|
|
- textarea : 'form',
|
|
|
- style : 'style',
|
|
|
- table : 'table',
|
|
|
- tbody : 'table',
|
|
|
- td : 'table',
|
|
|
- tfoot : 'table',
|
|
|
- th : 'table',
|
|
|
- tr : 'table'
|
|
|
-});
|
|
|
-
|
|
|
-var HtmlHighlightRules = function() {
|
|
|
- XmlHighlightRules.call(this);
|
|
|
-
|
|
|
- this.addRules({
|
|
|
- attributes: [{
|
|
|
- include : "tag_whitespace"
|
|
|
- }, {
|
|
|
- token : "entity.other.attribute-name.xml",
|
|
|
- regex : "[-_a-zA-Z0-9:.]+"
|
|
|
- }, {
|
|
|
- token : "keyword.operator.attribute-equals.xml",
|
|
|
- regex : "=",
|
|
|
- push : [{
|
|
|
- include: "tag_whitespace"
|
|
|
- }, {
|
|
|
- token : "string.unquoted.attribute-value.html",
|
|
|
- regex : "[^<>='\"`\\s]+",
|
|
|
- next : "pop"
|
|
|
- }, {
|
|
|
- token : "empty",
|
|
|
- regex : "",
|
|
|
- next : "pop"
|
|
|
- }]
|
|
|
- }, {
|
|
|
- include : "attribute_value"
|
|
|
- }],
|
|
|
- tag: [{
|
|
|
- token : function(start, tag) {
|
|
|
- var group = tagMap[tag];
|
|
|
- return ["meta.tag.punctuation." + (start == "<" ? "" : "end-") + "tag-open.xml",
|
|
|
- "meta.tag" + (group ? "." + group : "") + ".tag-name.xml"];
|
|
|
- },
|
|
|
- regex : "(</?)([-_a-zA-Z0-9:.]+)",
|
|
|
- next: "tag_stuff"
|
|
|
- }],
|
|
|
- tag_stuff: [
|
|
|
- {include : "attributes"},
|
|
|
- {token : "meta.tag.punctuation.tag-close.xml", regex : "/?>", next : "start"}
|
|
|
- ],
|
|
|
- });
|
|
|
-
|
|
|
- this.embedTagRules(CssHighlightRules, "css-", "style");
|
|
|
- this.embedTagRules(JavaScriptHighlightRules, "js-", "script");
|
|
|
-
|
|
|
- if (this.constructor === HtmlHighlightRules)
|
|
|
- this.normalizeRules();
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(HtmlHighlightRules, XmlHighlightRules);
|
|
|
-
|
|
|
-exports.HtmlHighlightRules = HtmlHighlightRules;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/folding/mixed",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var BaseFoldMode = require("./fold_mode").FoldMode;
|
|
|
-
|
|
|
-var FoldMode = exports.FoldMode = function(defaultMode, subModes) {
|
|
|
- this.defaultMode = defaultMode;
|
|
|
- this.subModes = subModes;
|
|
|
-};
|
|
|
-oop.inherits(FoldMode, BaseFoldMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
-
|
|
|
- this.$getMode = function(state) {
|
|
|
- if (typeof state != "string")
|
|
|
- state = state[0];
|
|
|
- for (var key in this.subModes) {
|
|
|
- if (state.indexOf(key) === 0)
|
|
|
- return this.subModes[key];
|
|
|
- }
|
|
|
- return null;
|
|
|
- };
|
|
|
-
|
|
|
- this.$tryMode = function(state, session, foldStyle, row) {
|
|
|
- var mode = this.$getMode(state);
|
|
|
- return (mode ? mode.getFoldWidget(session, foldStyle, row) : "");
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldWidget = function(session, foldStyle, row) {
|
|
|
- return (
|
|
|
- this.$tryMode(session.getState(row-1), session, foldStyle, row) ||
|
|
|
- this.$tryMode(session.getState(row), session, foldStyle, row) ||
|
|
|
- this.defaultMode.getFoldWidget(session, foldStyle, row)
|
|
|
- );
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldWidgetRange = function(session, foldStyle, row) {
|
|
|
- var mode = this.$getMode(session.getState(row-1));
|
|
|
-
|
|
|
- if (!mode || !mode.getFoldWidget(session, foldStyle, row))
|
|
|
- mode = this.$getMode(session.getState(row));
|
|
|
-
|
|
|
- if (!mode || !mode.getFoldWidget(session, foldStyle, row))
|
|
|
- mode = this.defaultMode;
|
|
|
-
|
|
|
- return mode.getFoldWidgetRange(session, foldStyle, row);
|
|
|
- };
|
|
|
-
|
|
|
-}).call(FoldMode.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/folding/html",["require","exports","module","ace/lib/oop","ace/mode/folding/mixed","ace/mode/folding/xml","ace/mode/folding/cstyle"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var MixedFoldMode = require("./mixed").FoldMode;
|
|
|
-var XmlFoldMode = require("./xml").FoldMode;
|
|
|
-var CStyleFoldMode = require("./cstyle").FoldMode;
|
|
|
-
|
|
|
-var FoldMode = exports.FoldMode = function(voidElements, optionalTags) {
|
|
|
- MixedFoldMode.call(this, new XmlFoldMode(voidElements, optionalTags), {
|
|
|
- "js-": new CStyleFoldMode(),
|
|
|
- "css-": new CStyleFoldMode()
|
|
|
- });
|
|
|
-};
|
|
|
-
|
|
|
-oop.inherits(FoldMode, MixedFoldMode);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/html_completions",["require","exports","module","ace/token_iterator"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var TokenIterator = require("../token_iterator").TokenIterator;
|
|
|
-
|
|
|
-var commonAttributes = [
|
|
|
- "accesskey",
|
|
|
- "class",
|
|
|
- "contenteditable",
|
|
|
- "contextmenu",
|
|
|
- "dir",
|
|
|
- "draggable",
|
|
|
- "dropzone",
|
|
|
- "hidden",
|
|
|
- "id",
|
|
|
- "inert",
|
|
|
- "itemid",
|
|
|
- "itemprop",
|
|
|
- "itemref",
|
|
|
- "itemscope",
|
|
|
- "itemtype",
|
|
|
- "lang",
|
|
|
- "spellcheck",
|
|
|
- "style",
|
|
|
- "tabindex",
|
|
|
- "title",
|
|
|
- "translate"
|
|
|
-];
|
|
|
-
|
|
|
-var eventAttributes = [
|
|
|
- "onabort",
|
|
|
- "onblur",
|
|
|
- "oncancel",
|
|
|
- "oncanplay",
|
|
|
- "oncanplaythrough",
|
|
|
- "onchange",
|
|
|
- "onclick",
|
|
|
- "onclose",
|
|
|
- "oncontextmenu",
|
|
|
- "oncuechange",
|
|
|
- "ondblclick",
|
|
|
- "ondrag",
|
|
|
- "ondragend",
|
|
|
- "ondragenter",
|
|
|
- "ondragleave",
|
|
|
- "ondragover",
|
|
|
- "ondragstart",
|
|
|
- "ondrop",
|
|
|
- "ondurationchange",
|
|
|
- "onemptied",
|
|
|
- "onended",
|
|
|
- "onerror",
|
|
|
- "onfocus",
|
|
|
- "oninput",
|
|
|
- "oninvalid",
|
|
|
- "onkeydown",
|
|
|
- "onkeypress",
|
|
|
- "onkeyup",
|
|
|
- "onload",
|
|
|
- "onloadeddata",
|
|
|
- "onloadedmetadata",
|
|
|
- "onloadstart",
|
|
|
- "onmousedown",
|
|
|
- "onmousemove",
|
|
|
- "onmouseout",
|
|
|
- "onmouseover",
|
|
|
- "onmouseup",
|
|
|
- "onmousewheel",
|
|
|
- "onpause",
|
|
|
- "onplay",
|
|
|
- "onplaying",
|
|
|
- "onprogress",
|
|
|
- "onratechange",
|
|
|
- "onreset",
|
|
|
- "onscroll",
|
|
|
- "onseeked",
|
|
|
- "onseeking",
|
|
|
- "onselect",
|
|
|
- "onshow",
|
|
|
- "onstalled",
|
|
|
- "onsubmit",
|
|
|
- "onsuspend",
|
|
|
- "ontimeupdate",
|
|
|
- "onvolumechange",
|
|
|
- "onwaiting"
|
|
|
-];
|
|
|
-
|
|
|
-var globalAttributes = commonAttributes.concat(eventAttributes);
|
|
|
-
|
|
|
-var attributeMap = {
|
|
|
- "html": ["manifest"],
|
|
|
- "head": [],
|
|
|
- "title": [],
|
|
|
- "base": ["href", "target"],
|
|
|
- "link": ["href", "hreflang", "rel", "media", "type", "sizes"],
|
|
|
- "meta": ["http-equiv", "name", "content", "charset"],
|
|
|
- "style": ["type", "media", "scoped"],
|
|
|
- "script": ["charset", "type", "src", "defer", "async"],
|
|
|
- "noscript": ["href"],
|
|
|
- "body": ["onafterprint", "onbeforeprint", "onbeforeunload", "onhashchange", "onmessage", "onoffline", "onpopstate", "onredo", "onresize", "onstorage", "onundo", "onunload"],
|
|
|
- "section": [],
|
|
|
- "nav": [],
|
|
|
- "article": ["pubdate"],
|
|
|
- "aside": [],
|
|
|
- "h1": [],
|
|
|
- "h2": [],
|
|
|
- "h3": [],
|
|
|
- "h4": [],
|
|
|
- "h5": [],
|
|
|
- "h6": [],
|
|
|
- "header": [],
|
|
|
- "footer": [],
|
|
|
- "address": [],
|
|
|
- "main": [],
|
|
|
- "p": [],
|
|
|
- "hr": [],
|
|
|
- "pre": [],
|
|
|
- "blockquote": ["cite"],
|
|
|
- "ol": ["start", "reversed"],
|
|
|
- "ul": [],
|
|
|
- "li": ["value"],
|
|
|
- "dl": [],
|
|
|
- "dt": [],
|
|
|
- "dd": [],
|
|
|
- "figure": [],
|
|
|
- "figcaption": [],
|
|
|
- "div": [],
|
|
|
- "a": ["href", "target", "ping", "rel", "media", "hreflang", "type"],
|
|
|
- "em": [],
|
|
|
- "strong": [],
|
|
|
- "small": [],
|
|
|
- "s": [],
|
|
|
- "cite": [],
|
|
|
- "q": ["cite"],
|
|
|
- "dfn": [],
|
|
|
- "abbr": [],
|
|
|
- "data": [],
|
|
|
- "time": ["datetime"],
|
|
|
- "code": [],
|
|
|
- "var": [],
|
|
|
- "samp": [],
|
|
|
- "kbd": [],
|
|
|
- "sub": [],
|
|
|
- "sup": [],
|
|
|
- "i": [],
|
|
|
- "b": [],
|
|
|
- "u": [],
|
|
|
- "mark": [],
|
|
|
- "ruby": [],
|
|
|
- "rt": [],
|
|
|
- "rp": [],
|
|
|
- "bdi": [],
|
|
|
- "bdo": [],
|
|
|
- "span": [],
|
|
|
- "br": [],
|
|
|
- "wbr": [],
|
|
|
- "ins": ["cite", "datetime"],
|
|
|
- "del": ["cite", "datetime"],
|
|
|
- "img": ["alt", "src", "height", "width", "usemap", "ismap"],
|
|
|
- "iframe": ["name", "src", "height", "width", "sandbox", "seamless"],
|
|
|
- "embed": ["src", "height", "width", "type"],
|
|
|
- "object": ["param", "data", "type", "height" , "width", "usemap", "name", "form", "classid"],
|
|
|
- "param": ["name", "value"],
|
|
|
- "video": ["src", "autobuffer", "autoplay", "loop", "controls", "width", "height", "poster"],
|
|
|
- "audio": ["src", "autobuffer", "autoplay", "loop", "controls"],
|
|
|
- "source": ["src", "type", "media"],
|
|
|
- "track": ["kind", "src", "srclang", "label", "default"],
|
|
|
- "canvas": ["width", "height"],
|
|
|
- "map": ["name"],
|
|
|
- "area": ["shape", "coords", "href", "hreflang", "alt", "target", "media", "rel", "ping", "type"],
|
|
|
- "svg": [],
|
|
|
- "math": [],
|
|
|
- "table": ["summary"],
|
|
|
- "caption": [],
|
|
|
- "colgroup": ["span"],
|
|
|
- "col": ["span"],
|
|
|
- "tbody": [],
|
|
|
- "thead": [],
|
|
|
- "tfoot": [],
|
|
|
- "tr": [],
|
|
|
- "td": ["headers", "rowspan", "colspan"],
|
|
|
- "th": ["headers", "rowspan", "colspan", "scope"],
|
|
|
- "form": ["accept-charset", "action", "autocomplete", "enctype", "method", "name", "novalidate", "target"],
|
|
|
- "fieldset": ["disabled", "form", "name"],
|
|
|
- "legend": [],
|
|
|
- "label": ["form", "for"],
|
|
|
- "input": ["type", "accept", "alt", "autocomplete", "checked", "disabled", "form", "formaction", "formenctype", "formmethod", "formnovalidate", "formtarget", "height", "list", "max", "maxlength", "min", "multiple", "pattern", "placeholder", "readonly", "required", "size", "src", "step", "width", "files", "value"],
|
|
|
- "button": ["autofocus", "disabled", "form", "formaction", "formenctype", "formmethod", "formnovalidate", "formtarget", "name", "value", "type"],
|
|
|
- "select": ["autofocus", "disabled", "form", "multiple", "name", "size"],
|
|
|
- "datalist": [],
|
|
|
- "optgroup": ["disabled", "label"],
|
|
|
- "option": ["disabled", "selected", "label", "value"],
|
|
|
- "textarea": ["autofocus", "disabled", "form", "maxlength", "name", "placeholder", "readonly", "required", "rows", "cols", "wrap"],
|
|
|
- "keygen": ["autofocus", "challenge", "disabled", "form", "keytype", "name"],
|
|
|
- "output": ["for", "form", "name"],
|
|
|
- "progress": ["value", "max"],
|
|
|
- "meter": ["value", "min", "max", "low", "high", "optimum"],
|
|
|
- "details": ["open"],
|
|
|
- "summary": [],
|
|
|
- "command": ["type", "label", "icon", "disabled", "checked", "radiogroup", "command"],
|
|
|
- "menu": ["type", "label"],
|
|
|
- "dialog": ["open"]
|
|
|
-};
|
|
|
-
|
|
|
-var elements = Object.keys(attributeMap);
|
|
|
-
|
|
|
-function is(token, type) {
|
|
|
- return token.type.lastIndexOf(type + ".xml") > -1;
|
|
|
-}
|
|
|
-
|
|
|
-function findTagName(session, pos) {
|
|
|
- var iterator = new TokenIterator(session, pos.row, pos.column);
|
|
|
- var token = iterator.getCurrentToken();
|
|
|
- while (token && !is(token, "tag-name")){
|
|
|
- token = iterator.stepBackward();
|
|
|
- }
|
|
|
- if (token)
|
|
|
- return token.value;
|
|
|
-}
|
|
|
-
|
|
|
-var HtmlCompletions = function() {
|
|
|
-
|
|
|
-};
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.getCompletions = function(state, session, pos, prefix) {
|
|
|
- var token = session.getTokenAt(pos.row, pos.column);
|
|
|
-
|
|
|
- if (!token)
|
|
|
- return [];
|
|
|
- if (is(token, "tag-name") || is(token, "tag-open") || is(token, "end-tag-open"))
|
|
|
- return this.getTagCompletions(state, session, pos, prefix);
|
|
|
- if (is(token, "tag-whitespace") || is(token, "attribute-name"))
|
|
|
- return this.getAttributeCompetions(state, session, pos, prefix);
|
|
|
-
|
|
|
- return [];
|
|
|
- };
|
|
|
-
|
|
|
- this.getTagCompletions = function(state, session, pos, prefix) {
|
|
|
- return elements.map(function(element){
|
|
|
- return {
|
|
|
- value: element,
|
|
|
- meta: "tag",
|
|
|
- score: Number.MAX_VALUE
|
|
|
- };
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
- this.getAttributeCompetions = function(state, session, pos, prefix) {
|
|
|
- var tagName = findTagName(session, pos);
|
|
|
- if (!tagName)
|
|
|
- return [];
|
|
|
- var attributes = globalAttributes;
|
|
|
- if (tagName in attributeMap) {
|
|
|
- attributes = attributes.concat(attributeMap[tagName]);
|
|
|
- }
|
|
|
- return attributes.map(function(attribute){
|
|
|
- return {
|
|
|
- caption: attribute,
|
|
|
- snippet: attribute + '="$0"',
|
|
|
- meta: "attribute",
|
|
|
- score: Number.MAX_VALUE
|
|
|
- };
|
|
|
- });
|
|
|
- };
|
|
|
-
|
|
|
-}).call(HtmlCompletions.prototype);
|
|
|
-
|
|
|
-exports.HtmlCompletions = HtmlCompletions;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/html",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text","ace/mode/javascript","ace/mode/css","ace/mode/html_highlight_rules","ace/mode/behaviour/xml","ace/mode/folding/html","ace/mode/html_completions","ace/worker/worker_client"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var TextMode = require("./text").Mode;
|
|
|
-var JavaScriptMode = require("./javascript").Mode;
|
|
|
-var CssMode = require("./css").Mode;
|
|
|
-var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
|
|
|
-var XmlBehaviour = require("./behaviour/xml").XmlBehaviour;
|
|
|
-var HtmlFoldMode = require("./folding/html").FoldMode;
|
|
|
-var HtmlCompletions = require("./html_completions").HtmlCompletions;
|
|
|
-var WorkerClient = require("../worker/worker_client").WorkerClient;
|
|
|
-var voidElements = ["area", "base", "br", "col", "embed", "hr", "img", "input", "keygen", "link", "meta", "menuitem", "param", "source", "track", "wbr"];
|
|
|
-var optionalEndTags = ["li", "dt", "dd", "p", "rt", "rp", "optgroup", "option", "colgroup", "td", "th"];
|
|
|
-
|
|
|
-var Mode = function(options) {
|
|
|
- this.fragmentContext = options && options.fragmentContext;
|
|
|
- this.HighlightRules = HtmlHighlightRules;
|
|
|
- this.$behaviour = new XmlBehaviour();
|
|
|
- this.$completer = new HtmlCompletions();
|
|
|
-
|
|
|
- this.createModeDelegates({
|
|
|
- "js-": JavaScriptMode,
|
|
|
- "css-": CssMode
|
|
|
- });
|
|
|
-
|
|
|
- this.foldingRules = new HtmlFoldMode(this.voidElements, lang.arrayToMap(optionalEndTags));
|
|
|
-};
|
|
|
-oop.inherits(Mode, TextMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
-
|
|
|
- this.blockComment = {start: "<!--", end: "-->"};
|
|
|
-
|
|
|
- this.voidElements = lang.arrayToMap(voidElements);
|
|
|
-
|
|
|
- this.getNextLineIndent = function(state, line, tab) {
|
|
|
- return this.$getIndent(line);
|
|
|
- };
|
|
|
-
|
|
|
- this.checkOutdent = function(state, line, input) {
|
|
|
- return false;
|
|
|
- };
|
|
|
-
|
|
|
- this.getCompletions = function(state, session, pos, prefix) {
|
|
|
- return this.$completer.getCompletions(state, session, pos, prefix);
|
|
|
- };
|
|
|
-
|
|
|
- this.createWorker = function(session) {
|
|
|
- if (this.constructor != Mode)
|
|
|
- return;
|
|
|
- var worker = new WorkerClient(["ace"], "ace/mode/html_worker", "Worker");
|
|
|
- worker.attachToDocument(session.getDocument());
|
|
|
-
|
|
|
- if (this.fragmentContext)
|
|
|
- worker.call("setOptions", [{context: this.fragmentContext}]);
|
|
|
-
|
|
|
- worker.on("error", function(e) {
|
|
|
- session.setAnnotations(e.data);
|
|
|
- });
|
|
|
-
|
|
|
- worker.on("terminate", function() {
|
|
|
- session.clearAnnotations();
|
|
|
- });
|
|
|
-
|
|
|
- return worker;
|
|
|
- };
|
|
|
-
|
|
|
- this.$id = "ace/mode/html";
|
|
|
-}).call(Mode.prototype);
|
|
|
-
|
|
|
-exports.Mode = Mode;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/markdown_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules","ace/mode/javascript_highlight_rules","ace/mode/xml_highlight_rules","ace/mode/html_highlight_rules","ace/mode/css_highlight_rules"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var lang = require("../lib/lang");
|
|
|
-var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
|
|
-var JavaScriptHighlightRules = require("./javascript_highlight_rules").JavaScriptHighlightRules;
|
|
|
-var XmlHighlightRules = require("./xml_highlight_rules").XmlHighlightRules;
|
|
|
-var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
|
|
|
-var CssHighlightRules = require("./css_highlight_rules").CssHighlightRules;
|
|
|
-
|
|
|
-var escaped = function(ch) {
|
|
|
- return "(?:[^" + lang.escapeRegExp(ch) + "\\\\]|\\\\.)*";
|
|
|
-}
|
|
|
-
|
|
|
-function github_embed(tag, prefix) {
|
|
|
- return { // Github style block
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```" + tag + "\\s*$",
|
|
|
- push : prefix + "start"
|
|
|
- };
|
|
|
-}
|
|
|
-
|
|
|
-var MarkdownHighlightRules = function() {
|
|
|
- HtmlHighlightRules.call(this);
|
|
|
-
|
|
|
- this.$rules["start"].unshift({
|
|
|
- token : "empty_line",
|
|
|
- regex : '^$',
|
|
|
- next: "allowBlock"
|
|
|
- }, { // h1
|
|
|
- token: "markup.heading.1",
|
|
|
- regex: "^=+(?=\\s*$)"
|
|
|
- }, { // h2
|
|
|
- token: "markup.heading.2",
|
|
|
- regex: "^\\-+(?=\\s*$)"
|
|
|
- }, {
|
|
|
- token : function(value) {
|
|
|
- return "markup.heading." + value.length;
|
|
|
- },
|
|
|
- regex : /^#{1,6}(?=\s*[^ #]|\s+#.)/,
|
|
|
- next : "header"
|
|
|
- },
|
|
|
- github_embed("(?:javascript|js)", "jscode-"),
|
|
|
- github_embed("xml", "xmlcode-"),
|
|
|
- github_embed("html", "htmlcode-"),
|
|
|
- github_embed("css", "csscode-"),
|
|
|
- { // Github style block
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```\\s*\\S*(?:{.*?\\})?\\s*$",
|
|
|
- next : "githubblock"
|
|
|
- }, { // block quote
|
|
|
- token : "string.blockquote",
|
|
|
- regex : "^\\s*>\\s*(?:[*+-]|\\d+\\.)?\\s+",
|
|
|
- next : "blockquote"
|
|
|
- }, { // HR * - _
|
|
|
- token : "constant",
|
|
|
- regex : "^ {0,2}(?:(?: ?\\* ?){3,}|(?: ?\\- ?){3,}|(?: ?\\_ ?){3,})\\s*$",
|
|
|
- next: "allowBlock"
|
|
|
- }, { // list
|
|
|
- token : "markup.list",
|
|
|
- regex : "^\\s{0,3}(?:[*+-]|\\d+\\.)\\s+",
|
|
|
- next : "listblock-start"
|
|
|
- }, {
|
|
|
- include : "basic"
|
|
|
- });
|
|
|
-
|
|
|
- this.addRules({
|
|
|
- "basic" : [{
|
|
|
- token : "constant.language.escape",
|
|
|
- regex : /\\[\\`*_{}\[\]()#+\-.!]/
|
|
|
- }, { // code span `
|
|
|
- token : "support.function",
|
|
|
- regex : "(`+)(.*?[^`])(\\1)"
|
|
|
- }, { // reference
|
|
|
- token : ["text", "constant", "text", "url", "string", "text"],
|
|
|
- regex : "^([ ]{0,3}\\[)([^\\]]+)(\\]:\\s*)([^ ]+)(\\s*(?:[\"][^\"]+[\"])?(\\s*))$"
|
|
|
- }, { // link by reference
|
|
|
- token : ["text", "string", "text", "constant", "text"],
|
|
|
- regex : "(\\[)(" + escaped("]") + ")(\\]\s*\\[)("+ escaped("]") + ")(\\])"
|
|
|
- }, { // link by url
|
|
|
- token : ["text", "string", "text", "markup.underline", "string", "text"],
|
|
|
- regex : "(\\[)(" + // [
|
|
|
- escaped("]") + // link text
|
|
|
- ")(\\]\\()"+ // ](
|
|
|
- '((?:[^\\)\\s\\\\]|\\\\.|\\s(?=[^"]))*)' + // href
|
|
|
- '(\\s*"' + escaped('"') + '"\\s*)?' + // "title"
|
|
|
- "(\\))" // )
|
|
|
- }, { // strong ** __
|
|
|
- token : "string.strong",
|
|
|
- regex : "([*]{2}|[_]{2}(?=\\S))(.*?\\S[*_]*)(\\1)"
|
|
|
- }, { // emphasis * _
|
|
|
- token : "string.emphasis",
|
|
|
- regex : "([*]|[_](?=\\S))(.*?\\S[*_]*)(\\1)"
|
|
|
- }, { //
|
|
|
- token : ["text", "url", "text"],
|
|
|
- regex : "(<)("+
|
|
|
- "(?:https?|ftp|dict):[^'\">\\s]+"+
|
|
|
- "|"+
|
|
|
- "(?:mailto:)?[-.\\w]+\\@[-a-z0-9]+(?:\\.[-a-z0-9]+)*\\.[a-z]+"+
|
|
|
- ")(>)"
|
|
|
- }],
|
|
|
- "allowBlock": [
|
|
|
- {token : "support.function", regex : "^ {4}.+", next : "allowBlock"},
|
|
|
- {token : "empty", regex : "", next : "start"}
|
|
|
- ],
|
|
|
-
|
|
|
- "header" : [{
|
|
|
- regex: "$",
|
|
|
- next : "start"
|
|
|
- }, {
|
|
|
- include: "basic"
|
|
|
- }, {
|
|
|
- defaultToken : "heading"
|
|
|
- } ],
|
|
|
-
|
|
|
- "listblock-start" : [{
|
|
|
- token : "support.variable",
|
|
|
- regex : /(?:\[[ x]\])?/,
|
|
|
- next : "listblock"
|
|
|
- }],
|
|
|
-
|
|
|
- "listblock" : [ { // Lists only escape on completely blank lines.
|
|
|
- token : "empty_line",
|
|
|
- regex : "^$",
|
|
|
- next : "start"
|
|
|
- }, { // list
|
|
|
- token : "markup.list",
|
|
|
- regex : "^\\s{0,3}(?:[*+-]|\\d+\\.)\\s+",
|
|
|
- next : "listblock-start"
|
|
|
- }, {
|
|
|
- include : "basic", noEscape: true
|
|
|
- }, { // Github style block
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```\\s*[a-zA-Z]*(?:{.*?\\})?\\s*$",
|
|
|
- next : "githubblock"
|
|
|
- }, {
|
|
|
- defaultToken : "list" //do not use markup.list to allow stling leading `*` differntly
|
|
|
- } ],
|
|
|
-
|
|
|
- "blockquote" : [ { // Blockquotes only escape on blank lines.
|
|
|
- token : "empty_line",
|
|
|
- regex : "^\\s*$",
|
|
|
- next : "start"
|
|
|
- }, { // block quote
|
|
|
- token : "string.blockquote",
|
|
|
- regex : "^\\s*>\\s*(?:[*+-]|\\d+\\.)?\\s+",
|
|
|
- next : "blockquote"
|
|
|
- }, {
|
|
|
- include : "basic", noEscape: true
|
|
|
- }, {
|
|
|
- defaultToken : "string.blockquote"
|
|
|
- } ],
|
|
|
-
|
|
|
- "githubblock" : [ {
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```",
|
|
|
- next : "start"
|
|
|
- }, {
|
|
|
- token : "support.function",
|
|
|
- regex : ".+"
|
|
|
- } ]
|
|
|
- });
|
|
|
-
|
|
|
- this.embedRules(JavaScriptHighlightRules, "jscode-", [{
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```",
|
|
|
- next : "pop"
|
|
|
- }]);
|
|
|
-
|
|
|
- this.embedRules(HtmlHighlightRules, "htmlcode-", [{
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```",
|
|
|
- next : "pop"
|
|
|
- }]);
|
|
|
-
|
|
|
- this.embedRules(CssHighlightRules, "csscode-", [{
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```",
|
|
|
- next : "pop"
|
|
|
- }]);
|
|
|
-
|
|
|
- this.embedRules(XmlHighlightRules, "xmlcode-", [{
|
|
|
- token : "support.function",
|
|
|
- regex : "^\\s*```",
|
|
|
- next : "pop"
|
|
|
- }]);
|
|
|
-
|
|
|
- this.normalizeRules();
|
|
|
-};
|
|
|
-oop.inherits(MarkdownHighlightRules, TextHighlightRules);
|
|
|
-
|
|
|
-exports.MarkdownHighlightRules = MarkdownHighlightRules;
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/folding/markdown",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode","ace/range"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../../lib/oop");
|
|
|
-var BaseFoldMode = require("./fold_mode").FoldMode;
|
|
|
-var Range = require("../../range").Range;
|
|
|
-
|
|
|
-var FoldMode = exports.FoldMode = function() {};
|
|
|
-oop.inherits(FoldMode, BaseFoldMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.foldingStartMarker = /^(?:[=-]+\s*$|#{1,6} |`{3})/;
|
|
|
-
|
|
|
- this.getFoldWidget = function(session, foldStyle, row) {
|
|
|
- var line = session.getLine(row);
|
|
|
- if (!this.foldingStartMarker.test(line))
|
|
|
- return "";
|
|
|
-
|
|
|
- if (line[0] == "`") {
|
|
|
- if (session.bgTokenizer.getState(row) == "start")
|
|
|
- return "end";
|
|
|
- return "start";
|
|
|
- }
|
|
|
-
|
|
|
- return "start";
|
|
|
- };
|
|
|
-
|
|
|
- this.getFoldWidgetRange = function(session, foldStyle, row) {
|
|
|
- var line = session.getLine(row);
|
|
|
- var startColumn = line.length;
|
|
|
- var maxRow = session.getLength();
|
|
|
- var startRow = row;
|
|
|
- var endRow = row;
|
|
|
- if (!line.match(this.foldingStartMarker))
|
|
|
- return;
|
|
|
-
|
|
|
- if (line[0] == "`") {
|
|
|
- if (session.bgTokenizer.getState(row) !== "start") {
|
|
|
- while (++row < maxRow) {
|
|
|
- line = session.getLine(row);
|
|
|
- if (line[0] == "`" & line.substring(0, 3) == "```")
|
|
|
- break;
|
|
|
- }
|
|
|
- return new Range(startRow, startColumn, row, 0);
|
|
|
- } else {
|
|
|
- while (row -- > 0) {
|
|
|
- line = session.getLine(row);
|
|
|
- if (line[0] == "`" & line.substring(0, 3) == "```")
|
|
|
- break;
|
|
|
- }
|
|
|
- return new Range(row, line.length, startRow, 0);
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- var token;
|
|
|
- function isHeading(row) {
|
|
|
- token = session.getTokens(row)[0];
|
|
|
- return token && token.type.lastIndexOf(heading, 0) === 0;
|
|
|
- }
|
|
|
-
|
|
|
- var heading = "markup.heading";
|
|
|
- function getLevel() {
|
|
|
- var ch = token.value[0];
|
|
|
- if (ch == "=") return 6;
|
|
|
- if (ch == "-") return 5;
|
|
|
- return 7 - token.value.search(/[^#]/);
|
|
|
- }
|
|
|
-
|
|
|
- if (isHeading(row)) {
|
|
|
- var startHeadingLevel = getLevel();
|
|
|
- while (++row < maxRow) {
|
|
|
- if (!isHeading(row))
|
|
|
- continue;
|
|
|
- var level = getLevel();
|
|
|
- if (level >= startHeadingLevel)
|
|
|
- break;
|
|
|
- }
|
|
|
-
|
|
|
- endRow = row - (!token || ["=", "-"].indexOf(token.value[0]) == -1 ? 1 : 2);
|
|
|
-
|
|
|
- if (endRow > startRow) {
|
|
|
- while (endRow > startRow && /^\s*$/.test(session.getLine(endRow)))
|
|
|
- endRow--;
|
|
|
- }
|
|
|
-
|
|
|
- if (endRow > startRow) {
|
|
|
- var endColumn = session.getLine(endRow).length;
|
|
|
- return new Range(startRow, startColumn, endRow, endColumn);
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
-
|
|
|
-}).call(FoldMode.prototype);
|
|
|
-
|
|
|
-});
|
|
|
-
|
|
|
-define("ace/mode/markdown",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/javascript","ace/mode/xml","ace/mode/html","ace/mode/markdown_highlight_rules","ace/mode/folding/markdown"], function(require, exports, module) {
|
|
|
-"use strict";
|
|
|
-
|
|
|
-var oop = require("../lib/oop");
|
|
|
-var TextMode = require("./text").Mode;
|
|
|
-var JavaScriptMode = require("./javascript").Mode;
|
|
|
-var XmlMode = require("./xml").Mode;
|
|
|
-var HtmlMode = require("./html").Mode;
|
|
|
-var MarkdownHighlightRules = require("./markdown_highlight_rules").MarkdownHighlightRules;
|
|
|
-var MarkdownFoldMode = require("./folding/markdown").FoldMode;
|
|
|
-
|
|
|
-var Mode = function() {
|
|
|
- this.HighlightRules = MarkdownHighlightRules;
|
|
|
-
|
|
|
- this.createModeDelegates({
|
|
|
- "js-": JavaScriptMode,
|
|
|
- "xml-": XmlMode,
|
|
|
- "html-": HtmlMode
|
|
|
- });
|
|
|
-
|
|
|
- this.foldingRules = new MarkdownFoldMode();
|
|
|
-};
|
|
|
-oop.inherits(Mode, TextMode);
|
|
|
-
|
|
|
-(function() {
|
|
|
- this.type = "text";
|
|
|
- this.blockComment = {start: "<!--", end: "-->"};
|
|
|
-
|
|
|
- this.getNextLineIndent = function(state, line, tab) {
|
|
|
- if (state == "listblock") {
|
|
|
- var match = /^(\s*)(?:([-+*])|(\d+)\.)(\s+)/.exec(line);
|
|
|
- if (!match)
|
|
|
- return "";
|
|
|
- var marker = match[2];
|
|
|
- if (!marker)
|
|
|
- marker = parseInt(match[3], 10) + 1 + ".";
|
|
|
- return match[1] + marker + match[4];
|
|
|
- } else {
|
|
|
- return this.$getIndent(line);
|
|
|
- }
|
|
|
- };
|
|
|
- this.$id = "ace/mode/markdown";
|
|
|
-}).call(Mode.prototype);
|
|
|
-
|
|
|
-exports.Mode = Mode;
|
|
|
-});
|
|
|
+!function(){function e(e){var t=i;e&&(i[e]||(i[e]={}),t=i[e]),t.define&&t.define.packaged||(n.original=t.define,t.define=n,t.define.packaged=!0),t.require&&t.require.packaged||(r.original=t.require,t.require=r,t.require.packaged=!0)}var t="",i=function(){return this}();if(i||"undefined"==typeof window||(i=window),t||"undefined"==typeof requirejs){var n=function(e,t,i){return"string"!=typeof e?void(n.original?n.original.apply(this,arguments):(console.error("dropping module because define wasn't a string."),console.trace())):(2==arguments.length&&(i=t),void(n.modules[e]||(n.payloads[e]=i,n.modules[e]=null)))};n.modules={},n.payloads={};var o=function(e,t,i){if("string"==typeof t){var n=a(e,t);if(void 0!=n)return i&&i(),n}else if("[object Array]"===Object.prototype.toString.call(t)){for(var o=[],s=0,l=t.length;l>s;++s){var c=a(e,t[s]);if(void 0==c&&r.original)return;o.push(c)}return i&&i.apply(null,o)||!0}},r=function(e,t){var i=o("",e,t);return void 0==i&&r.original?r.original.apply(this,arguments):i},s=function(e,t){if(-1!==t.indexOf("!")){var i=t.split("!");return s(e,i[0])+"!"+s(e,i[1])}if("."==t.charAt(0)){var n=e.split("/").slice(0,-1).join("/");for(t=n+"/"+t;-1!==t.indexOf(".")&&o!=t;){var o=t;t=t.replace(/\/\.\//,"/").replace(/[^\/]+\/\.\.\//,"")}}return t},a=function(e,t){t=s(e,t);var i=n.modules[t];if(!i){if(i=n.payloads[t],"function"==typeof i){var r={},a={id:t,uri:"",exports:r,packaged:!0},l=function(e,i){return o(t,e,i)},c=i(l,r,a);r=c||a.exports,n.modules[t]=r,delete n.payloads[t]}i=n.modules[t]=r||i}return i};e(t)}}(),define("ace/lib/regexp",["require","exports","module"],function(e,t,i){"use strict";function n(e){return(e.global?"g":"")+(e.ignoreCase?"i":"")+(e.multiline?"m":"")+(e.extended?"x":"")+(e.sticky?"y":"")}function o(e,t,i){if(Array.prototype.indexOf)return e.indexOf(t,i);for(var n=i||0;n<e.length;n++)if(e[n]===t)return n;return-1}var r={exec:RegExp.prototype.exec,test:RegExp.prototype.test,match:String.prototype.match,replace:String.prototype.replace,split:String.prototype.split},s=void 0===r.exec.call(/()??/,"")[1],a=function(){var e=/^/g;return r.test.call(e,""),!e.lastIndex}();a&&s||(RegExp.prototype.exec=function(e){var t,i,l=r.exec.apply(this,arguments);if("string"==typeof e&&l){if(!s&&l.length>1&&o(l,"")>-1&&(i=RegExp(this.source,r.replace.call(n(this),"g","")),r.replace.call(e.slice(l.index),i,function(){for(var e=1;e<arguments.length-2;e++)void 0===arguments[e]&&(l[e]=void 0)})),this._xregexp&&this._xregexp.captureNames)for(var c=1;c<l.length;c++)t=this._xregexp.captureNames[c-1],t&&(l[t]=l[c]);!a&&this.global&&!l[0].length&&this.lastIndex>l.index&&this.lastIndex--}return l},a||(RegExp.prototype.test=function(e){var t=r.exec.call(this,e);return t&&this.global&&!t[0].length&&this.lastIndex>t.index&&this.lastIndex--,!!t}))}),define("ace/lib/es5-shim",["require","exports","module"],function(e,t,i){function n(){}function o(e){try{return Object.defineProperty(e,"sentinel",{}),"sentinel"in e}catch(t){}}function r(e){return e=+e,e!==e?e=0:0!==e&&e!==1/0&&e!==-(1/0)&&(e=(e>0||-1)*Math.floor(Math.abs(e))),e}Function.prototype.bind||(Function.prototype.bind=function(e){var t=this;if("function"!=typeof t)throw new TypeError("Function.prototype.bind called on incompatible "+t);var i=f.call(arguments,1),o=function(){if(this instanceof o){var n=t.apply(this,i.concat(f.call(arguments)));return Object(n)===n?n:this}return t.apply(e,i.concat(f.call(arguments)))};return t.prototype&&(n.prototype=t.prototype,o.prototype=new n,n.prototype=null),o});var s,a,l,c,h,u=Function.prototype.call,d=Array.prototype,g=Object.prototype,f=d.slice,m=u.bind(g.toString),p=u.bind(g.hasOwnProperty);if((h=p(g,"__defineGetter__"))&&(s=u.bind(g.__defineGetter__),a=u.bind(g.__defineSetter__),l=u.bind(g.__lookupGetter__),c=u.bind(g.__lookupSetter__)),2!=[1,2].splice(0).length)if(function(){function e(e){var t=new Array(e+2);return t[0]=t[1]=0,t}var t,i=[];return i.splice.apply(i,e(20)),i.splice.apply(i,e(26)),t=i.length,i.splice(5,0,"XXX"),t+1==i.length,t+1==i.length?!0:void 0}()){var A=Array.prototype.splice;Array.prototype.splice=function(e,t){return arguments.length?A.apply(this,[void 0===e?0:e,void 0===t?this.length-e:t].concat(f.call(arguments,2))):[]}}else Array.prototype.splice=function(e,t){var i=this.length;e>0?e>i&&(e=i):void 0==e?e=0:0>e&&(e=Math.max(i+e,0)),i>e+t||(t=i-e);var n=this.slice(e,e+t),o=f.call(arguments,2),r=o.length;if(e===i)r&&this.push.apply(this,o);else{var s=Math.min(t,i-e),a=e+s,l=a+r-s,c=i-a,h=i-s;if(a>l)for(var u=0;c>u;++u)this[l+u]=this[a+u];else if(l>a)for(u=c;u--;)this[l+u]=this[a+u];if(r&&e===h)this.length=h,this.push.apply(this,o);else for(this.length=h+r,u=0;r>u;++u)this[e+u]=o[u]}return n};Array.isArray||(Array.isArray=function(e){return"[object Array]"==m(e)});var v=Object("a"),C="a"!=v[0]||!(0 in v);if(Array.prototype.forEach||(Array.prototype.forEach=function(e){var t=O(this),i=C&&"[object String]"==m(this)?this.split(""):t,n=arguments[1],o=-1,r=i.length>>>0;if("[object Function]"!=m(e))throw new TypeError;for(;++o<r;)o in i&&e.call(n,i[o],o,t)}),Array.prototype.map||(Array.prototype.map=function(e){var t=O(this),i=C&&"[object String]"==m(this)?this.split(""):t,n=i.length>>>0,o=Array(n),r=arguments[1];if("[object Function]"!=m(e))throw new TypeError(e+" is not a function");for(var s=0;n>s;s++)s in i&&(o[s]=e.call(r,i[s],s,t));return o}),Array.prototype.filter||(Array.prototype.filter=function(e){var t,i=O(this),n=C&&"[object String]"==m(this)?this.split(""):i,o=n.length>>>0,r=[],s=arguments[1];if("[object Function]"!=m(e))throw new TypeError(e+" is not a function");for(var a=0;o>a;a++)a in n&&(t=n[a],e.call(s,t,a,i)&&r.push(t));return r}),Array.prototype.every||(Array.prototype.every=function(e){var t=O(this),i=C&&"[object String]"==m(this)?this.split(""):t,n=i.length>>>0,o=arguments[1];if("[object Function]"!=m(e))throw new TypeError(e+" is not a function");for(var r=0;n>r;r++)if(r in i&&!e.call(o,i[r],r,t))return!1;return!0}),Array.prototype.some||(Array.prototype.some=function(e){var t=O(this),i=C&&"[object String]"==m(this)?this.split(""):t,n=i.length>>>0,o=arguments[1];if("[object Function]"!=m(e))throw new TypeError(e+" is not a function");for(var r=0;n>r;r++)if(r in i&&e.call(o,i[r],r,t))return!0;return!1}),Array.prototype.reduce||(Array.prototype.reduce=function(e){var t=O(this),i=C&&"[object String]"==m(this)?this.split(""):t,n=i.length>>>0;if("[object Function]"!=m(e))throw new TypeError(e+" is not a function");if(!n&&1==arguments.length)throw new TypeError("reduce of empty array with no initial value");var o,r=0;if(arguments.length>=2)o=arguments[1];else for(;;){if(r in i){o=i[r++];break}if(++r>=n)throw new TypeError("reduce of empty array with no initial value")}for(;n>r;r++)r in i&&(o=e.call(void 0,o,i[r],r,t));return o}),Array.prototype.reduceRight||(Array.prototype.reduceRight=function(e){var t=O(this),i=C&&"[object String]"==m(this)?this.split(""):t,n=i.length>>>0;if("[object Function]"!=m(e))throw new TypeError(e+" is not a function");if(!n&&1==arguments.length)throw new TypeError("reduceRight of empty array with no initial value");var o,r=n-1;if(arguments.length>=2)o=arguments[1];else for(;;){if(r in i){o=i[r--];break}if(--r<0)throw new TypeError("reduceRight of empty array with no initial value")}do r in this&&(o=e.call(void 0,o,i[r],r,t));while(r--);return o}),Array.prototype.indexOf&&-1==[0,1].indexOf(1,2)||(Array.prototype.indexOf=function(e){var t=C&&"[object String]"==m(this)?this.split(""):O(this),i=t.length>>>0;if(!i)return-1;var n=0;for(arguments.length>1&&(n=r(arguments[1])),n=n>=0?n:Math.max(0,i+n);i>n;n++)if(n in t&&t[n]===e)return n;return-1}),Array.prototype.lastIndexOf&&-1==[0,1].lastIndexOf(0,-3)||(Array.prototype.lastIndexOf=function(e){var t=C&&"[object String]"==m(this)?this.split(""):O(this),i=t.length>>>0;if(!i)return-1;var n=i-1;for(arguments.length>1&&(n=Math.min(n,r(arguments[1]))),n=n>=0?n:i-Math.abs(n);n>=0;n--)if(n in t&&e===t[n])return n;return-1}),Object.getPrototypeOf||(Object.getPrototypeOf=function(e){return e.__proto__||(e.constructor?e.constructor.prototype:g)}),!Object.getOwnPropertyDescriptor){var w="Object.getOwnPropertyDescriptor called on a non-object: ";Object.getOwnPropertyDescriptor=function(e,t){if("object"!=typeof e&&"function"!=typeof e||null===e)throw new TypeError(w+e);if(p(e,t)){var i,n,o;if(i={enumerable:!0,configurable:!0},h){var r=e.__proto__;e.__proto__=g;var n=l(e,t),o=c(e,t);if(e.__proto__=r,n||o)return n&&(i.get=n),o&&(i.set=o),i}return i.value=e[t],i}}}if(Object.getOwnPropertyNames||(Object.getOwnPropertyNames=function(e){return Object.keys(e)}),!Object.create){var F;F=null===Object.prototype.__proto__?function(){return{__proto__:null}}:function(){var e={};for(var t in e)e[t]=null;return e.constructor=e.hasOwnProperty=e.propertyIsEnumerable=e.isPrototypeOf=e.toLocaleString=e.toString=e.valueOf=e.__proto__=null,e},Object.create=function(e,t){var i;if(null===e)i=F();else{if("object"!=typeof e)throw new TypeError("typeof prototype["+typeof e+"] != 'object'");var n=function(){};n.prototype=e,i=new n,i.__proto__=e}return void 0!==t&&Object.defineProperties(i,t),i}}if(Object.defineProperty){var E=o({}),b="undefined"==typeof document||o(document.createElement("div"));if(!E||!b)var y=Object.defineProperty}if(!Object.defineProperty||y){var x="Property description must be an object: ",$="Object.defineProperty called on non-object: ",k="getters & setters can not be defined on this javascript engine";Object.defineProperty=function(e,t,i){if("object"!=typeof e&&"function"!=typeof e||null===e)throw new TypeError($+e);if("object"!=typeof i&&"function"!=typeof i||null===i)throw new TypeError(x+i);if(y)try{return y.call(Object,e,t,i)}catch(n){}if(p(i,"value"))if(h&&(l(e,t)||c(e,t))){var o=e.__proto__;e.__proto__=g,delete e[t],e[t]=i.value,e.__proto__=o}else e[t]=i.value;else{if(!h)throw new TypeError(k);p(i,"get")&&s(e,t,i.get),p(i,"set")&&a(e,t,i.set)}return e}}Object.defineProperties||(Object.defineProperties=function(e,t){for(var i in t)p(t,i)&&Object.defineProperty(e,i,t[i]);return e}),Object.seal||(Object.seal=function(e){return e}),Object.freeze||(Object.freeze=function(e){return e});try{Object.freeze(function(){})}catch(B){Object.freeze=function(e){return function(t){return"function"==typeof t?t:e(t)}}(Object.freeze)}if(Object.preventExtensions||(Object.preventExtensions=function(e){return e}),Object.isSealed||(Object.isSealed=function(e){return!1}),Object.isFrozen||(Object.isFrozen=function(e){return!1}),Object.isExtensible||(Object.isExtensible=function(e){if(Object(e)===e)throw new TypeError;for(var t="";p(e,t);)t+="?";e[t]=!0;var i=p(e,t);return delete e[t],i}),!Object.keys){var D=!0,S=["toString","toLocaleString","valueOf","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","constructor"],L=S.length;for(var R in{toString:null})D=!1;Object.keys=function I(e){if("object"!=typeof e&&"function"!=typeof e||null===e)throw new TypeError("Object.keys called on a non-object");var I=[];for(var t in e)p(e,t)&&I.push(t);if(D)for(var i=0,n=L;n>i;i++){var o=S[i];p(e,o)&&I.push(o)}return I}}Date.now||(Date.now=function(){return(new Date).getTime()});var _=" \n\f\r \u2028\u2029\ufeff";if(!String.prototype.trim||_.trim()){_="["+_+"]";var T=new RegExp("^"+_+_+"*"),M=new RegExp(_+_+"*$");String.prototype.trim=function(){return String(this).replace(T,"").replace(M,"")}}var O=function(e){if(null==e)throw new TypeError("can't convert "+e+" to object");return Object(e)}}),define("ace/lib/fixoldbrowsers",["require","exports","module","ace/lib/regexp","ace/lib/es5-shim"],function(e,t,i){"use strict";e("./regexp"),e("./es5-shim")}),define("ace/lib/dom",["require","exports","module"],function(e,t,i){"use strict";var n="http://www.w3.org/1999/xhtml";return t.getDocumentHead=function(e){return e||(e=document),e.head||e.getElementsByTagName("head")[0]||e.documentElement},t.createElement=function(e,t){return document.createElementNS?document.createElementNS(t||n,e):document.createElement(e)},t.hasCssClass=function(e,t){var i=(e.className||"").split(/\s+/g);return-1!==i.indexOf(t)},t.addCssClass=function(e,i){t.hasCssClass(e,i)||(e.className+=" "+i)},t.removeCssClass=function(e,t){for(var i=e.className.split(/\s+/g);;){var n=i.indexOf(t);if(-1==n)break;i.splice(n,1)}e.className=i.join(" ")},t.toggleCssClass=function(e,t){for(var i=e.className.split(/\s+/g),n=!0;;){var o=i.indexOf(t);if(-1==o)break;n=!1,i.splice(o,1)}return n&&i.push(t),e.className=i.join(" "),n},t.setCssClass=function(e,i,n){n?t.addCssClass(e,i):t.removeCssClass(e,i)},t.hasCssString=function(e,t){var i,n=0;if(t=t||document,t.createStyleSheet&&(i=t.styleSheets)){for(;n<i.length;)if(i[n++].owningElement.id===e)return!0}else if(i=t.getElementsByTagName("style"))for(;n<i.length;)if(i[n++].id===e)return!0;return!1},t.importCssString=function(e,i,o){if(o=o||document,i&&t.hasCssString(i,o))return null;var r;i&&(e+="\n/*# sourceURL=ace/css/"+i+" */"),o.createStyleSheet?(r=o.createStyleSheet(),r.cssText=e,i&&(r.owningElement.id=i)):(r=o.createElementNS?o.createElementNS(n,"style"):o.createElement("style"),r.appendChild(o.createTextNode(e)),i&&(r.id=i),t.getDocumentHead(o).appendChild(r))},t.importCssStylsheet=function(e,i){if(i.createStyleSheet)i.createStyleSheet(e);else{var n=t.createElement("link");n.rel="stylesheet",n.href=e,t.getDocumentHead(i).appendChild(n)}},t.getInnerWidth=function(e){return parseInt(t.computedStyle(e,"paddingLeft"),10)+parseInt(t.computedStyle(e,"paddingRight"),10)+e.clientWidth},t.getInnerHeight=function(e){return parseInt(t.computedStyle(e,"paddingTop"),10)+parseInt(t.computedStyle(e,"paddingBottom"),10)+e.clientHeight},t.scrollbarWidth=function(e){var i=t.createElement("ace_inner");i.style.width="100%",i.style.minWidth="0px",i.style.height="200px",i.style.display="block";var n=t.createElement("ace_outer"),o=n.style;o.position="absolute",o.left="-10000px",o.overflow="hidden",o.width="200px",o.minWidth="0px",o.height="150px",o.display="block",n.appendChild(i);var r=e.documentElement;r.appendChild(n);var s=i.offsetWidth;o.overflow="scroll";var a=i.offsetWidth;return s==a&&(a=n.clientWidth),r.removeChild(n),s-a},"undefined"==typeof document?void(t.importCssString=function(){}):(void 0!==window.pageYOffset?(t.getPageScrollTop=function(){return window.pageYOffset},t.getPageScrollLeft=function(){return window.pageXOffset}):(t.getPageScrollTop=function(){return document.body.scrollTop},t.getPageScrollLeft=function(){return document.body.scrollLeft}),t.computedStyle=window.getComputedStyle?function(e,t){return t?(window.getComputedStyle(e,"")||{})[t]||"":window.getComputedStyle(e,"")||{}}:function(e,t){return t?e.currentStyle[t]:e.currentStyle},t.setInnerHtml=function(e,t){var i=e.cloneNode(!1);return i.innerHTML=t,e.parentNode.replaceChild(i,e),i},"textContent"in document.documentElement?(t.setInnerText=function(e,t){e.textContent=t},t.getInnerText=function(e){return e.textContent}):(t.setInnerText=function(e,t){e.innerText=t},t.getInnerText=function(e){return e.innerText}),void(t.getParentWindow=function(e){return e.defaultView||e.parentWindow}))}),define("ace/lib/oop",["require","exports","module"],function(e,t,i){"use strict";t.inherits=function(e,t){e.super_=t,e.prototype=Object.create(t.prototype,{constructor:{value:e,enumerable:!1,writable:!0,configurable:!0}})},t.mixin=function(e,t){for(var i in t)e[i]=t[i];return e},t.implement=function(e,i){t.mixin(e,i)}}),define("ace/lib/keys",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop"],function(e,t,i){"use strict";e("./fixoldbrowsers");var n=e("./oop"),o=function(){var e,t,i={MODIFIER_KEYS:{16:"Shift",17:"Ctrl",18:"Alt",224:"Meta"},KEY_MODS:{ctrl:1,alt:2,option:2,shift:4,"super":8,meta:8,command:8,cmd:8},FUNCTION_KEYS:{8:"Backspace",9:"Tab",13:"Return",19:"Pause",27:"Esc",32:"Space",33:"PageUp",34:"PageDown",35:"End",36:"Home",37:"Left",38:"Up",39:"Right",40:"Down",44:"Print",45:"Insert",46:"Delete",96:"Numpad0",97:"Numpad1",98:"Numpad2",99:"Numpad3",100:"Numpad4",101:"Numpad5",102:"Numpad6",103:"Numpad7",104:"Numpad8",105:"Numpad9","-13":"NumpadEnter",112:"F1",113:"F2",114:"F3",115:"F4",116:"F5",117:"F6",118:"F7",119:"F8",120:"F9",121:"F10",122:"F11",123:"F12",144:"Numlock",145:"Scrolllock"},PRINTABLE_KEYS:{32:" ",48:"0",49:"1",50:"2",51:"3",52:"4",53:"5",54:"6",55:"7",56:"8",57:"9",59:";",61:"=",65:"a",66:"b",67:"c",68:"d",69:"e",70:"f",71:"g",72:"h",73:"i",74:"j",75:"k",76:"l",77:"m",78:"n",79:"o",80:"p",81:"q",82:"r",83:"s",84:"t",85:"u",86:"v",87:"w",88:"x",89:"y",90:"z",107:"+",109:"-",110:".",186:";",187:"=",188:",",189:"-",190:".",191:"/",192:"`",219:"[",220:"\\",221:"]",222:"'"}};for(t in i.FUNCTION_KEYS)e=i.FUNCTION_KEYS[t].toLowerCase(),i[e]=parseInt(t,10);for(t in i.PRINTABLE_KEYS)e=i.PRINTABLE_KEYS[t].toLowerCase(),i[e]=parseInt(t,10);return n.mixin(i,i.MODIFIER_KEYS),n.mixin(i,i.PRINTABLE_KEYS),n.mixin(i,i.FUNCTION_KEYS),i.enter=i["return"],i.escape=i.esc,i.del=i["delete"],i[173]="-",function(){for(var e=["cmd","ctrl","alt","shift"],t=Math.pow(2,e.length);t--;)i.KEY_MODS[t]=e.filter(function(e){return t&i.KEY_MODS[e]}).join("-")+"-"}(),i.KEY_MODS[0]="",i.KEY_MODS[-1]="input-",i}();n.mixin(t,o),t.keyCodeToString=function(e){var t=o[e];return"string"!=typeof t&&(t=String.fromCharCode(e)),t.toLowerCase()}}),define("ace/lib/useragent",["require","exports","module"],function(e,t,i){"use strict";if(t.OS={LINUX:"LINUX",MAC:"MAC",WINDOWS:"WINDOWS"},t.getOS=function(){return t.isMac?t.OS.MAC:t.isLinux?t.OS.LINUX:t.OS.WINDOWS},"object"==typeof navigator){var n=(navigator.platform.match(/mac|win|linux/i)||["other"])[0].toLowerCase(),o=navigator.userAgent;t.isWin="win"==n,t.isMac="mac"==n,t.isLinux="linux"==n,t.isIE=parseFloat("Microsoft Internet Explorer"==navigator.appName||navigator.appName.indexOf("MSAppHost")>=0?(o.match(/(?:MSIE |Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]:(o.match(/(?:Trident\/[0-9]+[\.0-9]+;.*rv:)([0-9]+[\.0-9]+)/)||[])[1]),t.isOldIE=t.isIE&&t.isIE<9,t.isGecko=t.isMozilla=(window.Controllers||window.controllers)&&"Gecko"===window.navigator.product,t.isOldGecko=t.isGecko&&parseInt((o.match(/rv\:(\d+)/)||[])[1],10)<4,t.isOpera=window.opera&&"[object Opera]"==Object.prototype.toString.call(window.opera),t.isWebKit=parseFloat(o.split("WebKit/")[1])||void 0,t.isChrome=parseFloat(o.split(" Chrome/")[1])||void 0,t.isAIR=o.indexOf("AdobeAIR")>=0,t.isIPad=o.indexOf("iPad")>=0,t.isTouchPad=o.indexOf("TouchPad")>=0,t.isChromeOS=o.indexOf(" CrOS ")>=0}}),define("ace/lib/event",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,i){"use strict";function n(e,t,i){var n=a(t);if(!s.isMac&&l){if((l[91]||l[92])&&(n|=8),l.altGr){if(3==(3&n))return;l.altGr=0}if(18===i||17===i){var o="location"in t?t.location:t.keyLocation;if(17===i&&1===o)1==l[i]&&(c=t.timeStamp);else if(18===i&&3===n&&2===o){var h=t.timeStamp-c;50>h&&(l.altGr=!0)}}}if(i in r.MODIFIER_KEYS&&(i=-1),8&n&&(91===i||93===i)&&(i=-1),!n&&13===i){var o="location"in t?t.location:t.keyLocation;if(3===o&&(e(t,n,-i),t.defaultPrevented))return}if(s.isChromeOS&&8&n){if(e(t,n,i),t.defaultPrevented)return;n&=-9}return n||i in r.FUNCTION_KEYS||i in r.PRINTABLE_KEYS?e(t,n,i):!1}function o(e){l=Object.create(null)}var r=e("./keys"),s=e("./useragent");t.addListener=function(e,t,i){if(e.addEventListener)return e.addEventListener(t,i,!1);if(e.attachEvent){var n=function(){i.call(e,window.event)};i._wrapper=n,e.attachEvent("on"+t,n)}},t.removeListener=function(e,t,i){return e.removeEventListener?e.removeEventListener(t,i,!1):void(e.detachEvent&&e.detachEvent("on"+t,i._wrapper||i))},t.stopEvent=function(e){return t.stopPropagation(e),t.preventDefault(e),!1},t.stopPropagation=function(e){e.stopPropagation?e.stopPropagation():e.cancelBubble=!0},t.preventDefault=function(e){e.preventDefault?e.preventDefault():e.returnValue=!1},t.getButton=function(e){return"dblclick"==e.type?0:"contextmenu"==e.type||s.isMac&&e.ctrlKey&&!e.altKey&&!e.shiftKey?2:e.preventDefault?e.button:{1:0,2:2,4:1}[e.button]},t.capture=function(e,i,n){function o(e){i&&i(e),n&&n(e),t.removeListener(document,"mousemove",i,!0),t.removeListener(document,"mouseup",o,!0),t.removeListener(document,"dragstart",o,!0)}return t.addListener(document,"mousemove",i,!0),t.addListener(document,"mouseup",o,!0),t.addListener(document,"dragstart",o,!0),o},t.addTouchMoveListener=function(e,i){if("ontouchmove"in e){var n,o;t.addListener(e,"touchstart",function(e){var t=e.changedTouches[0];n=t.clientX,o=t.clientY}),t.addListener(e,"touchmove",function(e){var t=1,r=e.changedTouches[0];e.wheelX=-(r.clientX-n)/t,e.wheelY=-(r.clientY-o)/t,n=r.clientX,o=r.clientY,i(e)})}},t.addMouseWheelListener=function(e,i){"onmousewheel"in e?t.addListener(e,"mousewheel",function(e){var t=8;void 0!==e.wheelDeltaX?(e.wheelX=-e.wheelDeltaX/t,e.wheelY=-e.wheelDeltaY/t):(e.wheelX=0,e.wheelY=-e.wheelDelta/t),i(e)}):"onwheel"in e?t.addListener(e,"wheel",function(e){var t=.35;switch(e.deltaMode){case e.DOM_DELTA_PIXEL:e.wheelX=e.deltaX*t||0,e.wheelY=e.deltaY*t||0;break;case e.DOM_DELTA_LINE:case e.DOM_DELTA_PAGE:e.wheelX=5*(e.deltaX||0),e.wheelY=5*(e.deltaY||0)}i(e)}):t.addListener(e,"DOMMouseScroll",function(e){e.axis&&e.axis==e.HORIZONTAL_AXIS?(e.wheelX=5*(e.detail||0),e.wheelY=0):(e.wheelX=0,e.wheelY=5*(e.detail||0)),i(e)})},t.addMultiMouseDownListener=function(e,i,n,o){var r,a,l,c=0,h={2:"dblclick",3:"tripleclick",4:"quadclick"};t.addListener(e,"mousedown",function(e){if(0!==t.getButton(e)?c=0:e.detail>1?(c++,c>4&&(c=1)):c=1,s.isIE){var u=Math.abs(e.clientX-r)>5||Math.abs(e.clientY-a)>5;(!l||u)&&(c=1),l&&clearTimeout(l),l=setTimeout(function(){l=null},i[c-1]||600),1==c&&(r=e.clientX,a=e.clientY)}if(e._clicks=c,n[o]("mousedown",e),c>4)c=0;else if(c>1)return n[o](h[c],e)}),s.isOldIE&&t.addListener(e,"dblclick",function(e){c=2,l&&clearTimeout(l),l=setTimeout(function(){l=null},i[c-1]||600),n[o]("mousedown",e),n[o](h[c],e)})};var a=!s.isMac||!s.isOpera||"KeyboardEvent"in window?function(e){return 0|(e.ctrlKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.metaKey?8:0)}:function(e){return 0|(e.metaKey?1:0)|(e.altKey?2:0)|(e.shiftKey?4:0)|(e.ctrlKey?8:0)};t.getModifierString=function(e){return r.KEY_MODS[a(e)]};var l=null,c=0;if(t.addCommandKeyListener=function(e,i){var r=t.addListener;if(s.isOldGecko||s.isOpera&&!("KeyboardEvent"in window)){var a=null;r(e,"keydown",function(e){a=e.keyCode}),r(e,"keypress",function(e){return n(i,e,a)})}else{var c=null;r(e,"keydown",function(e){l[e.keyCode]=(l[e.keyCode]||0)+1;var t=n(i,e,e.keyCode);return c=e.defaultPrevented,t}),r(e,"keypress",function(e){c&&(e.ctrlKey||e.altKey||e.shiftKey||e.metaKey)&&(t.stopEvent(e),c=null)}),r(e,"keyup",function(e){l[e.keyCode]=null}),l||(o(),r(window,"focus",o))}},"object"==typeof window&&window.postMessage&&!s.isOldIE){var h=1;t.nextTick=function(e,i){i=i||window;var n="zero-timeout-message-"+h;t.addListener(i,"message",function o(r){r.data==n&&(t.stopPropagation(r),t.removeListener(i,"message",o),e())}),i.postMessage(n,"*")}}t.nextFrame="object"==typeof window&&(window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||window.msRequestAnimationFrame||window.oRequestAnimationFrame),t.nextFrame=t.nextFrame?t.nextFrame.bind(window):function(e){setTimeout(e,17)}}),define("ace/lib/lang",["require","exports","module"],function(e,t,i){"use strict";t.last=function(e){return e[e.length-1]},t.stringReverse=function(e){return e.split("").reverse().join("")},t.stringRepeat=function(e,t){for(var i="";t>0;)1&t&&(i+=e),(t>>=1)&&(e+=e);return i};var n=/^\s\s*/,o=/\s\s*$/;t.stringTrimLeft=function(e){return e.replace(n,"")},t.stringTrimRight=function(e){return e.replace(o,"")},t.copyObject=function(e){var t={};for(var i in e)t[i]=e[i];return t},t.copyArray=function(e){for(var t=[],i=0,n=e.length;n>i;i++)t[i]=e[i]&&"object"==typeof e[i]?this.copyObject(e[i]):e[i];return t},t.deepCopy=function r(e){if("object"!=typeof e||!e)return e;var t;if(Array.isArray(e)){t=[];for(var i=0;i<e.length;i++)t[i]=r(e[i]);return t}var n=e.constructor;if(n===RegExp)return e;t=n();for(var i in e)t[i]=r(e[i]);return t},t.arrayToMap=function(e){for(var t={},i=0;i<e.length;i++)t[e[i]]=1;return t},t.createMap=function(e){var t=Object.create(null);for(var i in e)t[i]=e[i];return t},t.arrayRemove=function(e,t){for(var i=0;i<=e.length;i++)t===e[i]&&e.splice(i,1)},t.escapeRegExp=function(e){return e.replace(/([.*+?^${}()|[\]\/\\])/g,"\\$1")},t.escapeHTML=function(e){return e.replace(/&/g,"&").replace(/"/g,""").replace(/'/g,"'").replace(/</g,"<")},t.getMatchOffsets=function(e,t){var i=[];return e.replace(t,function(e){i.push({offset:arguments[arguments.length-2],length:e.length})}),i},t.deferredCall=function(e){var t=null,i=function(){t=null,e()},n=function(e){return n.cancel(),t=setTimeout(i,e||0),n};return n.schedule=n,n.call=function(){return this.cancel(),e(),n},n.cancel=function(){return clearTimeout(t),t=null,n},n.isPending=function(){return t},n},t.delayedCall=function(e,t){var i=null,n=function(){i=null,e()},o=function(e){null==i&&(i=setTimeout(n,e||t))};return o.delay=function(e){i&&clearTimeout(i),i=setTimeout(n,e||t)},o.schedule=o,o.call=function(){this.cancel(),e()},o.cancel=function(){i&&clearTimeout(i),i=null},o.isPending=function(){return i},o}}),define("ace/keyboard/textinput",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/lib/dom","ace/lib/lang"],function(e,t,i){"use strict";var n=e("../lib/event"),o=e("../lib/useragent"),r=e("../lib/dom"),s=e("../lib/lang"),a=o.isChrome<18,l=o.isIE,c=function(e,t){function i(e){if(!m){if(m=!0,B)t=0,i=e?0:u.value.length-1;else var t=e?2:1,i=2;try{u.setSelectionRange(t,i)}catch(n){}m=!1}}function c(){m||(u.value=d,o.isWebKit&&F.schedule())}function h(){clearTimeout(z),z=setTimeout(function(){p&&(u.style.cssText=p,p=""),null==t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=!0,t.renderer.$moveTextAreaToCursor())},o.isOldIE?200:0)}var u=r.createElement("textarea");u.className="ace_text-input",o.isTouchPad&&u.setAttribute("x-palm-disable-auto-cap",!0),u.setAttribute("wrap","off"),u.setAttribute("autocorrect","off"),u.setAttribute("autocapitalize","off"),u.setAttribute("spellcheck",!1),u.style.opacity="0",o.isOldIE&&(u.style.top="-1000px"),e.insertBefore(u,e.firstChild);var d="",g=!1,f=!1,m=!1,p="",A=!0;try{var v=document.activeElement===u}catch(C){}n.addListener(u,"blur",function(e){t.onBlur(e),v=!1}),n.addListener(u,"focus",function(e){v=!0,t.onFocus(e),i()}),this.focus=function(){if(p)return u.focus();var e=u.style.top;u.style.position="fixed",u.style.top="-1000px",u.focus(),setTimeout(function(){u.style.position="","-1000px"==u.style.top&&(u.style.top=e)},0)},this.blur=function(){u.blur()},this.isFocused=function(){return v};var w=s.delayedCall(function(){v&&i(A)}),F=s.delayedCall(function(){m||(u.value=d,v&&i())});o.isWebKit||t.addEventListener("changeSelection",function(){t.selection.isEmpty()!=A&&(A=!A,w.schedule())}),c(),v&&t.onFocus();var E=function(e){return 0===e.selectionStart&&e.selectionEnd===e.value.length};if(!u.setSelectionRange&&u.createTextRange&&(u.setSelectionRange=function(e,t){var i=this.createTextRange();i.collapse(!0),i.moveStart("character",e),i.moveEnd("character",t),i.select()},E=function(e){try{var t=e.ownerDocument.selection.createRange()}catch(i){}return t&&t.parentElement()==e?t.text==e.value:!1}),o.isOldIE){var b=!1,y=function(e){if(!b){var t=u.value;if(!m&&t&&t!=d){if(e&&t==d[0])return x.schedule();S(t),b=!0,c(),b=!1}}},x=s.delayedCall(y);n.addListener(u,"propertychange",y);var $={13:1,27:1};n.addListener(u,"keyup",function(e){return!m||u.value&&!$[e.keyCode]||setTimeout(P,0),(u.value.charCodeAt(0)||0)<129?x.call():void(m?W():I())}),n.addListener(u,"keydown",function(e){x.schedule(50)})}var k=function(e){g?g=!1:E(u)?(t.selectAll(),i()):B&&i(t.selection.isEmpty())},B=null;this.setInputHandler=function(e){B=e},this.getInputHandler=function(){return B};var D=!1,S=function(e){B&&(e=B(e),B=null),f?(i(),e&&t.onPaste(e),f=!1):e==d.charAt(0)?D?t.execCommand("del",{source:"ace"}):t.execCommand("backspace",{source:"ace"}):(e.substring(0,2)==d?e=e.substr(2):e.charAt(0)==d.charAt(0)?e=e.substr(1):e.charAt(e.length-1)==d.charAt(0)&&(e=e.slice(0,-1)),e.charAt(e.length-1)==d.charAt(0)&&(e=e.slice(0,-1)),e&&t.onTextInput(e)),D&&(D=!1)},L=function(e){if(!m){var t=u.value;S(t),c()}},R=function(e,t){var i=e.clipboardData||window.clipboardData;if(i&&!a){var n=l?"Text":"text/plain";return t?i.setData(n,t)!==!1:i.getData(n)}},_=function(e,o){var r=t.getCopyText();return r?void(R(e,r)?(o?t.onCut():t.onCopy(),n.preventDefault(e)):(g=!0,u.value=r,u.select(),setTimeout(function(){g=!1,c(),i(),o?t.onCut():t.onCopy()}))):n.preventDefault(e)},T=function(e){_(e,!0)},M=function(e){_(e,!1)},O=function(e){var r=R(e);"string"==typeof r?(r&&t.onPaste(r,e),o.isIE&&setTimeout(i),n.preventDefault(e)):(u.value="",f=!0)};n.addCommandKeyListener(u,t.onCommandKey.bind(t)),n.addListener(u,"select",k),n.addListener(u,"input",L),n.addListener(u,"cut",T),n.addListener(u,"copy",M),n.addListener(u,"paste",O),"oncut"in u&&"oncopy"in u&&"onpaste"in u||n.addListener(e,"keydown",function(e){if((!o.isMac||e.metaKey)&&e.ctrlKey)switch(e.keyCode){case 67:M(e);break;case 86:O(e);break;case 88:T(e)}});var I=function(e){m||!t.onCompositionStart||t.$readOnly||(m={},t.onCompositionStart(),setTimeout(W,0),t.on("mousedown",P),t.selection.isEmpty()||(t.insert(""),t.session.markUndoGroup(),t.selection.clearSelection()),t.session.markUndoGroup())},W=function(){if(m&&t.onCompositionUpdate&&!t.$readOnly){var e=u.value.replace(/\x01/g,"");if(m.lastValue!==e&&(t.onCompositionUpdate(e),m.lastValue&&t.undo(),m.lastValue=e,m.lastValue)){var i=t.selection.getRange();t.insert(m.lastValue),t.session.markUndoGroup(),m.range=t.selection.getRange(),t.selection.setRange(i),t.selection.clearSelection()}}},P=function(e){if(t.onCompositionEnd&&!t.$readOnly){var i=m;m=!1;var n=setTimeout(function(){n=null;var e=u.value.replace(/\x01/g,"");m||(e==i.lastValue?c():!i.lastValue&&e&&(c(),S(e)))});B=function(e){return n&&clearTimeout(n),e=e.replace(/\x01/g,""),e==i.lastValue?"":(i.lastValue&&n&&t.undo(),e)},t.onCompositionEnd(),t.removeListener("mousedown",P),"compositionend"==e.type&&i.range&&t.selection.setRange(i.range)}},H=s.delayedCall(W,50);n.addListener(u,"compositionstart",I),o.isGecko?n.addListener(u,"text",function(){H.schedule()}):(n.addListener(u,"keyup",function(){H.schedule()}),n.addListener(u,"keydown",function(){H.schedule()})),n.addListener(u,"compositionend",P),this.getElement=function(){return u},this.setReadOnly=function(e){u.readOnly=e},this.onContextMenu=function(e){D=!0,i(t.selection.isEmpty()),t._emit("nativecontextmenu",{target:t,domEvent:e}),this.moveToMouse(e,!0)},this.moveToMouse=function(e,i){if(i||!o.isOldIE){p||(p=u.style.cssText),u.style.cssText=(i?"z-index:100000;":"")+"height:"+u.style.height+";"+(o.isIE?"opacity:0.1;":"");var s=t.container.getBoundingClientRect(),a=r.computedStyle(t.container),l=s.top+(parseInt(a.borderTopWidth)||0),c=s.left+(parseInt(s.borderLeftWidth)||0),d=s.bottom-l-u.clientHeight-2,g=function(e){u.style.left=e.clientX-c-2+"px",u.style.top=Math.min(e.clientY-l-2,d)+"px"};g(e),"mousedown"==e.type&&(t.renderer.$keepTextAreaAtCursor&&(t.renderer.$keepTextAreaAtCursor=null),o.isWin&&!o.isOldIE&&n.capture(t.container,g,h))}},this.onContextMenuClose=h;var z,N=function(e){t.textInput.onContextMenu(e),h()};n.addListener(t.renderer.scroller,"contextmenu",N),n.addListener(u,"contextmenu",N)};t.TextInput=c}),define("ace/mouse/default_handlers",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,i){"use strict";function n(e){e.$clickSelection=null;var t=e.editor;t.setDefaultHandler("mousedown",this.onMouseDown.bind(e)),t.setDefaultHandler("dblclick",this.onDoubleClick.bind(e)),t.setDefaultHandler("tripleclick",this.onTripleClick.bind(e)),t.setDefaultHandler("quadclick",this.onQuadClick.bind(e)),t.setDefaultHandler("mousewheel",this.onMouseWheel.bind(e)),
|
|
|
+t.setDefaultHandler("touchmove",this.onTouchMove.bind(e));var i=["select","startSelect","selectEnd","selectAllEnd","selectByWordsEnd","selectByLinesEnd","dragWait","dragWaitEnd","focusWait"];i.forEach(function(t){e[t]=this[t]},this),e.selectByLines=this.extendSelectionBy.bind(e,"getLineRange"),e.selectByWords=this.extendSelectionBy.bind(e,"getWordRange")}function o(e,t,i,n){return Math.sqrt(Math.pow(i-e,2)+Math.pow(n-t,2))}function r(e,t){if(e.start.row==e.end.row)var i=2*t.column-e.start.column-e.end.column;else if(e.start.row!=e.end.row-1||e.start.column||e.end.column)var i=2*t.row-e.start.row-e.end.row;else var i=t.column-4;return 0>i?{cursor:e.start,anchor:e.end}:{cursor:e.end,anchor:e.start}}var s=(e("../lib/dom"),e("../lib/event"),e("../lib/useragent"),0);(function(){this.onMouseDown=function(e){var t=e.inSelection(),i=e.getDocumentPosition();this.mousedownEvent=e;var n=this.editor,o=e.getButton();if(0!==o){var r=n.getSelectionRange(),s=r.isEmpty();return n.$blockScrolling++,s&&n.selection.moveToPosition(i),n.$blockScrolling--,void n.textInput.onContextMenu(e.domEvent)}return this.mousedownEvent.time=Date.now(),!t||n.isFocused()||(n.focus(),!this.$focusTimout||this.$clickSelection||n.inMultiSelectMode)?(this.captureMouse(e),this.startSelect(i,e.domEvent._clicks>1),e.preventDefault()):(this.setState("focusWait"),void this.captureMouse(e))},this.startSelect=function(e,t){e=e||this.editor.renderer.screenToTextCoordinates(this.x,this.y);var i=this.editor;i.$blockScrolling++,this.mousedownEvent.getShiftKey()?i.selection.selectToPosition(e):t||i.selection.moveToPosition(e),t||this.select(),i.renderer.scroller.setCapture&&i.renderer.scroller.setCapture(),i.setStyle("ace_selecting"),this.setState("select"),i.$blockScrolling--},this.select=function(){var e,t=this.editor,i=t.renderer.screenToTextCoordinates(this.x,this.y);if(t.$blockScrolling++,this.$clickSelection){var n=this.$clickSelection.comparePoint(i);if(-1==n)e=this.$clickSelection.end;else if(1==n)e=this.$clickSelection.start;else{var o=r(this.$clickSelection,i);i=o.cursor,e=o.anchor}t.selection.setSelectionAnchor(e.row,e.column)}t.selection.selectToPosition(i),t.$blockScrolling--,t.renderer.scrollCursorIntoView()},this.extendSelectionBy=function(e){var t,i=this.editor,n=i.renderer.screenToTextCoordinates(this.x,this.y),o=i.selection[e](n.row,n.column);if(i.$blockScrolling++,this.$clickSelection){var s=this.$clickSelection.comparePoint(o.start),a=this.$clickSelection.comparePoint(o.end);if(-1==s&&0>=a)t=this.$clickSelection.end,(o.end.row!=n.row||o.end.column!=n.column)&&(n=o.start);else if(1==a&&s>=0)t=this.$clickSelection.start,(o.start.row!=n.row||o.start.column!=n.column)&&(n=o.end);else if(-1==s&&1==a)n=o.end,t=o.start;else{var l=r(this.$clickSelection,n);n=l.cursor,t=l.anchor}i.selection.setSelectionAnchor(t.row,t.column)}i.selection.selectToPosition(n),i.$blockScrolling--,i.renderer.scrollCursorIntoView()},this.selectEnd=this.selectAllEnd=this.selectByWordsEnd=this.selectByLinesEnd=function(){this.$clickSelection=null,this.editor.unsetStyle("ace_selecting"),this.editor.renderer.scroller.releaseCapture&&this.editor.renderer.scroller.releaseCapture()},this.focusWait=function(){var e=o(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y),t=Date.now();(e>s||t-this.mousedownEvent.time>this.$focusTimout)&&this.startSelect(this.mousedownEvent.getDocumentPosition())},this.onDoubleClick=function(e){var t=e.getDocumentPosition(),i=this.editor,n=i.session,o=n.getBracketRange(t);o?(o.isEmpty()&&(o.start.column--,o.end.column++),this.setState("select")):(o=i.selection.getWordRange(t.row,t.column),this.setState("selectByWords")),this.$clickSelection=o,this.select()},this.onTripleClick=function(e){var t=e.getDocumentPosition(),i=this.editor;this.setState("selectByLines");var n=i.getSelectionRange();n.isMultiLine()&&n.contains(t.row,t.column)?(this.$clickSelection=i.selection.getLineRange(n.start.row),this.$clickSelection.end=i.selection.getLineRange(n.end.row).end):this.$clickSelection=i.selection.getLineRange(t.row),this.select()},this.onQuadClick=function(e){var t=this.editor;t.selectAll(),this.$clickSelection=t.getSelectionRange(),this.setState("selectAll")},this.onMouseWheel=function(e){if(!e.getAccelKey()){e.getShiftKey()&&e.wheelY&&!e.wheelX&&(e.wheelX=e.wheelY,e.wheelY=0);var t=e.domEvent.timeStamp,i=t-(this.$lastScrollTime||0),n=this.editor,o=n.renderer.isScrollableBy(e.wheelX*e.speed,e.wheelY*e.speed);return o||200>i?(this.$lastScrollTime=t,n.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()):void 0}},this.onTouchMove=function(e){var t=e.domEvent.timeStamp,i=t-(this.$lastScrollTime||0),n=this.editor,o=n.renderer.isScrollableBy(e.wheelX*e.speed,e.wheelY*e.speed);return o||200>i?(this.$lastScrollTime=t,n.renderer.scrollBy(e.wheelX*e.speed,e.wheelY*e.speed),e.stop()):void 0}}).call(n.prototype),t.DefaultHandlers=n}),define("ace/tooltip",["require","exports","module","ace/lib/oop","ace/lib/dom"],function(e,t,i){"use strict";function n(e){this.isOpen=!1,this.$element=null,this.$parentNode=e}var o=(e("./lib/oop"),e("./lib/dom"));(function(){this.$init=function(){return this.$element=o.createElement("div"),this.$element.className="ace_tooltip",this.$element.style.display="none",this.$parentNode.appendChild(this.$element),this.$element},this.getElement=function(){return this.$element||this.$init()},this.setText=function(e){o.setInnerText(this.getElement(),e)},this.setHtml=function(e){this.getElement().innerHTML=e},this.setPosition=function(e,t){this.getElement().style.left=e+"px",this.getElement().style.top=t+"px"},this.setClassName=function(e){o.addCssClass(this.getElement(),e)},this.show=function(e,t,i){null!=e&&this.setText(e),null!=t&&null!=i&&this.setPosition(t,i),this.isOpen||(this.getElement().style.display="block",this.isOpen=!0)},this.hide=function(){this.isOpen&&(this.getElement().style.display="none",this.isOpen=!1)},this.getHeight=function(){return this.getElement().offsetHeight},this.getWidth=function(){return this.getElement().offsetWidth}}).call(n.prototype),t.Tooltip=n}),define("ace/mouse/default_gutter_handler",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/event","ace/tooltip"],function(e,t,i){"use strict";function n(e){function t(){var t=u.getDocumentPosition().row,o=l.$annotations[t];if(!o)return i();var r=s.session.getLength();if(t==r){var a=s.renderer.pixelToScreenCoordinates(0,u.y).row,h=u.$pos;if(a>s.session.documentToScreenRow(h.row,h.column))return i()}if(d!=o)if(d=o.text.join("<br/>"),c.setHtml(d),c.show(),s.on("mousewheel",i),e.$tooltipFollowsMouse)n(u);else{var g=l.$cells[s.session.documentToScreenRow(t,0)].element,f=g.getBoundingClientRect(),m=c.getElement().style;m.left=f.right+"px",m.top=f.bottom+"px"}}function i(){h&&(h=clearTimeout(h)),d&&(c.hide(),d=null,s.removeEventListener("mousewheel",i))}function n(e){c.setPosition(e.x,e.y)}var s=e.editor,l=s.renderer.$gutterLayer,c=new o(s.container);e.editor.setDefaultHandler("guttermousedown",function(t){if(s.isFocused()&&0==t.getButton()){var i=l.getRegion(t);if("foldWidgets"!=i){var n=t.getDocumentPosition().row,o=s.session.selection;if(t.getShiftKey())o.selectTo(n,0);else{if(2==t.domEvent.detail)return s.selectAll(),t.preventDefault();e.$clickSelection=s.selection.getLineRange(n)}return e.setState("selectByLines"),e.captureMouse(t),t.preventDefault()}}});var h,u,d;e.editor.setDefaultHandler("guttermousemove",function(o){var s=o.domEvent.target||o.domEvent.srcElement;return r.hasCssClass(s,"ace_fold-widget")?i():(d&&e.$tooltipFollowsMouse&&n(o),u=o,void(h||(h=setTimeout(function(){h=null,u&&!e.isMousePressed?t():i()},50))))}),a.addListener(s.renderer.$gutter,"mouseout",function(e){u=null,d&&!h&&(h=setTimeout(function(){h=null,i()},50))}),s.on("changeSession",i)}function o(e){l.call(this,e)}var r=e("../lib/dom"),s=e("../lib/oop"),a=e("../lib/event"),l=e("../tooltip").Tooltip;s.inherits(o,l),function(){this.setPosition=function(e,t){var i=window.innerWidth||document.documentElement.clientWidth,n=window.innerHeight||document.documentElement.clientHeight,o=this.getWidth(),r=this.getHeight();e+=15,t+=15,e+o>i&&(e-=e+o-i),t+r>n&&(t-=20+r),l.prototype.setPosition.call(this,e,t)}}.call(o.prototype),t.GutterHandler=n}),define("ace/mouse/mouse_event",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,i){"use strict";var n=e("../lib/event"),o=e("../lib/useragent"),r=t.MouseEvent=function(e,t){this.domEvent=e,this.editor=t,this.x=this.clientX=e.clientX,this.y=this.clientY=e.clientY,this.$pos=null,this.$inSelection=null,this.propagationStopped=!1,this.defaultPrevented=!1};(function(){this.stopPropagation=function(){n.stopPropagation(this.domEvent),this.propagationStopped=!0},this.preventDefault=function(){n.preventDefault(this.domEvent),this.defaultPrevented=!0},this.stop=function(){this.stopPropagation(),this.preventDefault()},this.getDocumentPosition=function(){return this.$pos?this.$pos:(this.$pos=this.editor.renderer.screenToTextCoordinates(this.clientX,this.clientY),this.$pos)},this.inSelection=function(){if(null!==this.$inSelection)return this.$inSelection;var e=this.editor,t=e.getSelectionRange();if(t.isEmpty())this.$inSelection=!1;else{var i=this.getDocumentPosition();this.$inSelection=t.contains(i.row,i.column)}return this.$inSelection},this.getButton=function(){return n.getButton(this.domEvent)},this.getShiftKey=function(){return this.domEvent.shiftKey},this.getAccelKey=o.isMac?function(){return this.domEvent.metaKey}:function(){return this.domEvent.ctrlKey}}).call(r.prototype)}),define("ace/mouse/dragdrop_handler",["require","exports","module","ace/lib/dom","ace/lib/event","ace/lib/useragent"],function(e,t,i){"use strict";function n(e){function t(e,t){var i=Date.now(),n=!t||e.row!=t.row,r=!t||e.column!=t.column;if(!B||n||r)p.$blockScrolling+=1,p.moveCursorToPosition(e),p.$blockScrolling-=1,B=i,D={x:w,y:F};else{var s=o(D.x,D.y,w,F);s>h?B=null:i-B>=c&&(p.renderer.scrollCursorIntoView(),B=null)}}function i(e,t){var i=Date.now(),n=p.renderer.layerConfig.lineHeight,o=p.renderer.layerConfig.characterWidth,r=p.renderer.scroller.getBoundingClientRect(),s={x:{left:w-r.left,right:r.right-w},y:{top:F-r.top,bottom:r.bottom-F}},a=Math.min(s.x.left,s.x.right),c=Math.min(s.y.top,s.y.bottom),h={row:e.row,column:e.column};2>=a/o&&(h.column+=s.x.left<s.x.right?-3:2),1>=c/n&&(h.row+=s.y.top<s.y.bottom?-1:1);var u=e.row!=h.row,d=e.column!=h.column,g=!t||e.row!=t.row;u||d&&!g?k?i-k>=l&&p.renderer.scrollCursorIntoView(h):k=i:k=null}function n(){var e=y;y=p.renderer.screenToTextCoordinates(w,F),t(y,e),i(y,e)}function u(){b=p.selection.toOrientedRange(),C=p.session.addMarker(b,"ace_selection",p.getSelectionStyle()),p.clearSelection(),p.isFocused()&&p.renderer.$cursorLayer.setBlinking(!1),clearInterval(E),n(),E=setInterval(n,20),L=0,s.addListener(document,"mousemove",g)}function d(){clearInterval(E),p.session.removeMarker(C),C=null,p.$blockScrolling+=1,p.selection.fromOrientedRange(b),p.$blockScrolling-=1,p.isFocused()&&!$&&p.renderer.$cursorLayer.setBlinking(!p.getReadOnly()),b=null,y=null,L=0,k=null,B=null,s.removeListener(document,"mousemove",g)}function g(){null==R&&(R=setTimeout(function(){null!=R&&C&&d()},20))}function f(e){var t=e.types;return!t||Array.prototype.some.call(t,function(e){return"text/plain"==e||"Text"==e})}function m(e){var t=["copy","copymove","all","uninitialized"],i=["move","copymove","linkmove","all","uninitialized"],n=a.isMac?e.altKey:e.ctrlKey,o="uninitialized";try{o=e.dataTransfer.effectAllowed.toLowerCase()}catch(e){}var r="none";return n&&t.indexOf(o)>=0?r="copy":i.indexOf(o)>=0?r="move":t.indexOf(o)>=0&&(r="copy"),r}var p=e.editor,A=r.createElement("img");A.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",a.isOpera&&(A.style.cssText="width:1px;height:1px;position:fixed;top:0;left:0;z-index:2147483647;opacity:0;");var v=["dragWait","dragWaitEnd","startDrag","dragReadyEnd","onMouseDrag"];v.forEach(function(t){e[t]=this[t]},this),p.addEventListener("mousedown",this.onMouseDown.bind(e));var C,w,F,E,b,y,x,$,k,B,D,S=p.container,L=0;this.onDragStart=function(e){if(this.cancelDrag||!S.draggable){var t=this;return setTimeout(function(){t.startSelect(),t.captureMouse(e)},0),e.preventDefault()}b=p.getSelectionRange();var i=e.dataTransfer;i.effectAllowed=p.getReadOnly()?"copy":"copyMove",a.isOpera&&(p.container.appendChild(A),A.scrollTop=0),i.setDragImage&&i.setDragImage(A,0,0),a.isOpera&&p.container.removeChild(A),i.clearData(),i.setData("Text",p.session.getTextRange()),$=!0,this.setState("drag")},this.onDragEnd=function(e){if(S.draggable=!1,$=!1,this.setState(null),!p.getReadOnly()){var t=e.dataTransfer.dropEffect;x||"move"!=t||p.session.remove(p.getSelectionRange()),p.renderer.$cursorLayer.setBlinking(!0)}this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle("")},this.onDragEnter=function(e){return!p.getReadOnly()&&f(e.dataTransfer)?(w=e.clientX,F=e.clientY,C||u(),L++,e.dataTransfer.dropEffect=x=m(e),s.preventDefault(e)):void 0},this.onDragOver=function(e){return!p.getReadOnly()&&f(e.dataTransfer)?(w=e.clientX,F=e.clientY,C||(u(),L++),null!==R&&(R=null),e.dataTransfer.dropEffect=x=m(e),s.preventDefault(e)):void 0},this.onDragLeave=function(e){return L--,0>=L&&C?(d(),x=null,s.preventDefault(e)):void 0},this.onDrop=function(e){if(y){var t=e.dataTransfer;if($)switch(x){case"move":b=b.contains(y.row,y.column)?{start:y,end:y}:p.moveText(b,y);break;case"copy":b=p.moveText(b,y,!0)}else{var i=t.getData("Text");b={start:y,end:p.session.insert(y,i)},p.focus(),x=null}return d(),s.preventDefault(e)}},s.addListener(S,"dragstart",this.onDragStart.bind(e)),s.addListener(S,"dragend",this.onDragEnd.bind(e)),s.addListener(S,"dragenter",this.onDragEnter.bind(e)),s.addListener(S,"dragover",this.onDragOver.bind(e)),s.addListener(S,"dragleave",this.onDragLeave.bind(e)),s.addListener(S,"drop",this.onDrop.bind(e));var R=null}function o(e,t,i,n){return Math.sqrt(Math.pow(i-e,2)+Math.pow(n-t,2))}var r=e("../lib/dom"),s=e("../lib/event"),a=e("../lib/useragent"),l=200,c=200,h=5;(function(){this.dragWait=function(){var e=Date.now()-this.mousedownEvent.time;e>this.editor.getDragDelay()&&this.startDrag()},this.dragWaitEnd=function(){var e=this.editor.container;e.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()),this.selectEnd()},this.dragReadyEnd=function(e){this.editor.renderer.$cursorLayer.setBlinking(!this.editor.getReadOnly()),this.editor.unsetStyle("ace_dragging"),this.editor.renderer.setCursorStyle(""),this.dragWaitEnd()},this.startDrag=function(){this.cancelDrag=!1;var e=this.editor,t=e.container;t.draggable=!0,e.renderer.$cursorLayer.setBlinking(!1),e.setStyle("ace_dragging");var i=a.isWin?"default":"move";e.renderer.setCursorStyle(i),this.setState("dragReady")},this.onMouseDrag=function(e){var t=this.editor.container;if(a.isIE&&"dragReady"==this.state){var i=o(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);i>3&&t.dragDrop()}if("dragWait"===this.state){var i=o(this.mousedownEvent.x,this.mousedownEvent.y,this.x,this.y);i>0&&(t.draggable=!1,this.startSelect(this.mousedownEvent.getDocumentPosition()))}},this.onMouseDown=function(e){if(this.$dragEnabled){this.mousedownEvent=e;var t=this.editor,i=e.inSelection(),n=e.getButton(),o=e.domEvent.detail||1;if(1===o&&0===n&&i){if(e.editor.inMultiSelectMode&&(e.getAccelKey()||e.getShiftKey()))return;this.mousedownEvent.time=Date.now();var r=e.domEvent.target||e.domEvent.srcElement;if("unselectable"in r&&(r.unselectable="on"),t.getDragDelay()){if(a.isWebKit){this.cancelDrag=!0;var s=t.container;s.draggable=!0}this.setState("dragWait")}else this.startDrag();this.captureMouse(e,this.onMouseDrag.bind(this)),e.defaultPrevented=!0}}}}).call(n.prototype),t.DragdropHandler=n}),define("ace/lib/net",["require","exports","module","ace/lib/dom"],function(e,t,i){"use strict";var n=e("./dom");t.get=function(e,t){var i=new XMLHttpRequest;i.open("GET",e,!0),i.onreadystatechange=function(){4===i.readyState&&t(i.responseText)},i.send(null)},t.loadScript=function(e,t){var i=n.getDocumentHead(),o=document.createElement("script");o.src=e,i.appendChild(o),o.onload=o.onreadystatechange=function(e,i){(i||!o.readyState||"loaded"==o.readyState||"complete"==o.readyState)&&(o=o.onload=o.onreadystatechange=null,i||t())}},t.qualifyURL=function(e){var t=document.createElement("a");return t.href=e,t.href}}),define("ace/lib/event_emitter",["require","exports","module"],function(e,t,i){"use strict";var n={},o=function(){this.propagationStopped=!0},r=function(){this.defaultPrevented=!0};n._emit=n._dispatchEvent=function(e,t){this._eventRegistry||(this._eventRegistry={}),this._defaultHandlers||(this._defaultHandlers={});var i=this._eventRegistry[e]||[],n=this._defaultHandlers[e];if(i.length||n){"object"==typeof t&&t||(t={}),t.type||(t.type=e),t.stopPropagation||(t.stopPropagation=o),t.preventDefault||(t.preventDefault=r),i=i.slice();for(var s=0;s<i.length&&(i[s](t,this),!t.propagationStopped);s++);return n&&!t.defaultPrevented?n(t,this):void 0}},n._signal=function(e,t){var i=(this._eventRegistry||{})[e];if(i){i=i.slice();for(var n=0;n<i.length;n++)i[n](t,this)}},n.once=function(e,t){var i=this;t&&this.addEventListener(e,function n(){i.removeEventListener(e,n),t.apply(null,arguments)})},n.setDefaultHandler=function(e,t){var i=this._defaultHandlers;if(i||(i=this._defaultHandlers={_disabled_:{}}),i[e]){var n=i[e],o=i._disabled_[e];o||(i._disabled_[e]=o=[]),o.push(n);var r=o.indexOf(t);-1!=r&&o.splice(r,1)}i[e]=t},n.removeDefaultHandler=function(e,t){var i=this._defaultHandlers;if(i){var n=i._disabled_[e];if(i[e]==t){{i[e]}n&&this.setDefaultHandler(e,n.pop())}else if(n){var o=n.indexOf(t);-1!=o&&n.splice(o,1)}}},n.on=n.addEventListener=function(e,t,i){this._eventRegistry=this._eventRegistry||{};var n=this._eventRegistry[e];return n||(n=this._eventRegistry[e]=[]),-1==n.indexOf(t)&&n[i?"unshift":"push"](t),t},n.off=n.removeListener=n.removeEventListener=function(e,t){this._eventRegistry=this._eventRegistry||{};var i=this._eventRegistry[e];if(i){var n=i.indexOf(t);-1!==n&&i.splice(n,1)}},n.removeAllListeners=function(e){this._eventRegistry&&(this._eventRegistry[e]=[])},t.EventEmitter=n}),define("ace/lib/app_config",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,i){"no use strict";function n(e){"undefined"!=typeof console&&console.warn&&console.warn.apply(console,arguments)}function o(e,t){var i=new Error(e);i.data=t,"object"==typeof console&&console.error&&console.error(i),setTimeout(function(){throw i})}var r=e("./oop"),s=e("./event_emitter").EventEmitter,a={setOptions:function(e){Object.keys(e).forEach(function(t){this.setOption(t,e[t])},this)},getOptions:function(e){var t={};return e?Array.isArray(e)||(t=e,e=Object.keys(t)):e=Object.keys(this.$options),e.forEach(function(e){t[e]=this.getOption(e)},this),t},setOption:function(e,t){if(this["$"+e]!==t){var i=this.$options[e];if(!i)return n('misspelled option "'+e+'"');if(i.forwardTo)return this[i.forwardTo]&&this[i.forwardTo].setOption(e,t);i.handlesSet||(this["$"+e]=t),i&&i.set&&i.set.call(this,t)}},getOption:function(e){var t=this.$options[e];return t?t.forwardTo?this[t.forwardTo]&&this[t.forwardTo].getOption(e):t&&t.get?t.get.call(this):this["$"+e]:n('misspelled option "'+e+'"')}},l=function(){this.$defaultOptions={}};(function(){r.implement(this,s),this.defineOptions=function(e,t,i){return e.$options||(this.$defaultOptions[t]=e.$options={}),Object.keys(i).forEach(function(t){var n=i[t];"string"==typeof n&&(n={forwardTo:n}),n.name||(n.name=t),e.$options[n.name]=n,"initialValue"in n&&(e["$"+n.name]=n.initialValue)}),r.implement(e,a),this},this.resetOptions=function(e){Object.keys(e.$options).forEach(function(t){var i=e.$options[t];"value"in i&&e.setOption(t,i.value)})},this.setDefaultValue=function(e,t,i){var n=this.$defaultOptions[e]||(this.$defaultOptions[e]={});n[t]&&(n.forwardTo?this.setDefaultValue(n.forwardTo,t,i):n[t].value=i)},this.setDefaultValues=function(e,t){Object.keys(t).forEach(function(i){this.setDefaultValue(e,i,t[i])},this)},this.warn=n,this.reportError=o}).call(l.prototype),t.AppConfig=l}),define("ace/config",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/lib/net","ace/lib/app_config"],function(e,t,i){"no use strict";function n(n){if(c.packaged=n||e.packaged||i.packaged||l.define&&define.packaged,!l.document)return"";for(var r={},s="",a=document.currentScript||document._currentScript,h=a&&a.ownerDocument||document,u=h.getElementsByTagName("script"),d=0;d<u.length;d++){var g=u[d],f=g.src||g.getAttribute("src");if(f){for(var m=g.attributes,p=0,A=m.length;A>p;p++){var v=m[p];0===v.name.indexOf("data-ace-")&&(r[o(v.name.replace(/^data-ace-/,""))]=v.value)}var C=f.match(/^(.*)\/ace(\-\w+)?\.js(\?|$)/);C&&(s=C[1])}}s&&(r.base=r.base||s,r.packaged=!0),r.basePath=r.base,r.workerPath=r.workerPath||r.base,r.modePath=r.modePath||r.base,r.themePath=r.themePath||r.base,delete r.base;for(var w in r)"undefined"!=typeof r[w]&&t.set(w,r[w])}function o(e){return e.replace(/-(.)/g,function(e,t){return t.toUpperCase()})}var r=e("./lib/lang"),s=(e("./lib/oop"),e("./lib/net")),a=e("./lib/app_config").AppConfig;i.exports=t=new a;var l=function(){return this||"undefined"!=typeof window&&window}(),c={packaged:!1,workerPath:null,modePath:null,themePath:null,basePath:"",suffix:".js",$moduleUrls:{}};t.get=function(e){if(!c.hasOwnProperty(e))throw new Error("Unknown config key: "+e);return c[e]},t.set=function(e,t){if(!c.hasOwnProperty(e))throw new Error("Unknown config key: "+e);c[e]=t},t.all=function(){return r.copyObject(c)},t.moduleUrl=function(e,t){if(c.$moduleUrls[e])return c.$moduleUrls[e];var i=e.split("/");t=t||i[i.length-2]||"";var n="snippets"==t?"/":"-",o=i[i.length-1];if("worker"==t&&"-"==n){var r=new RegExp("^"+t+"[\\-_]|[\\-_]"+t+"$","g");o=o.replace(r,"")}(!o||o==t)&&i.length>1&&(o=i[i.length-2]);var s=c[t+"Path"];return null==s?s=c.basePath:"/"==n&&(t=n=""),s&&"/"!=s.slice(-1)&&(s+="/"),s+t+n+o+this.get("suffix")},t.setModuleUrl=function(e,t){return c.$moduleUrls[e]=t},t.$loading={},t.loadModule=function(i,n){var o,r;Array.isArray(i)&&(r=i[0],i=i[1]);try{o=e(i)}catch(a){}if(o&&!t.$loading[i])return n&&n(o);if(t.$loading[i]||(t.$loading[i]=[]),t.$loading[i].push(n),!(t.$loading[i].length>1)){var l=function(){e([i],function(e){t._emit("load.module",{name:i,module:e});var n=t.$loading[i];t.$loading[i]=null,n.forEach(function(t){t&&t(e)})})};return t.get("packaged")?void s.loadScript(t.moduleUrl(i,r),l):l()}},n(!0),t.init=n}),define("ace/mouse/mouse_handler",["require","exports","module","ace/lib/event","ace/lib/useragent","ace/mouse/default_handlers","ace/mouse/default_gutter_handler","ace/mouse/mouse_event","ace/mouse/dragdrop_handler","ace/config"],function(e,t,i){"use strict";var n=e("../lib/event"),o=e("../lib/useragent"),r=e("./default_handlers").DefaultHandlers,s=e("./default_gutter_handler").GutterHandler,a=e("./mouse_event").MouseEvent,l=e("./dragdrop_handler").DragdropHandler,c=e("../config"),h=function(e){var t=this;this.editor=e,new r(this),new s(this),new l(this);var i=function(t){document.hasFocus&&document.hasFocus()||window.focus(),e.focus()},a=e.renderer.getMouseEventTarget();n.addListener(a,"click",this.onMouseEvent.bind(this,"click")),n.addListener(a,"mousemove",this.onMouseMove.bind(this,"mousemove")),n.addMultiMouseDownListener(a,[400,300,250],this,"onMouseEvent"),e.renderer.scrollBarV&&(n.addMultiMouseDownListener(e.renderer.scrollBarV.inner,[400,300,250],this,"onMouseEvent"),n.addMultiMouseDownListener(e.renderer.scrollBarH.inner,[400,300,250],this,"onMouseEvent"),o.isIE&&(n.addListener(e.renderer.scrollBarV.element,"mousedown",i),n.addListener(e.renderer.scrollBarH.element,"mousedown",i))),n.addMouseWheelListener(e.container,this.onMouseWheel.bind(this,"mousewheel")),n.addTouchMoveListener(e.container,this.onTouchMove.bind(this,"touchmove"));var c=e.renderer.$gutter;n.addListener(c,"mousedown",this.onMouseEvent.bind(this,"guttermousedown")),n.addListener(c,"click",this.onMouseEvent.bind(this,"gutterclick")),n.addListener(c,"dblclick",this.onMouseEvent.bind(this,"gutterdblclick")),n.addListener(c,"mousemove",this.onMouseEvent.bind(this,"guttermousemove")),n.addListener(a,"mousedown",i),n.addListener(c,"mousedown",function(t){return e.focus(),n.preventDefault(t)}),e.on("mousemove",function(i){if(!t.state&&!t.$dragDelay&&t.$dragEnabled){var n=e.renderer.screenToTextCoordinates(i.x,i.y),o=e.session.selection.getRange(),r=e.renderer;r.setCursorStyle(!o.isEmpty()&&o.insideStart(n.row,n.column)?"default":"")}})};(function(){this.onMouseEvent=function(e,t){this.editor._emit(e,new a(t,this.editor))},this.onMouseMove=function(e,t){var i=this.editor._eventRegistry&&this.editor._eventRegistry.mousemove;i&&i.length&&this.editor._emit(e,new a(t,this.editor))},this.onMouseWheel=function(e,t){var i=new a(t,this.editor);i.speed=2*this.$scrollSpeed,i.wheelX=t.wheelX,i.wheelY=t.wheelY,this.editor._emit(e,i)},this.onTouchMove=function(e,t){var i=new a(t,this.editor);i.speed=1,i.wheelX=t.wheelX,i.wheelY=t.wheelY,this.editor._emit(e,i)},this.setState=function(e){this.state=e},this.captureMouse=function(e,t){this.x=e.x,this.y=e.y,this.isMousePressed=!0;var i=this.editor.renderer;i.$keepTextAreaAtCursor&&(i.$keepTextAreaAtCursor=null);var r=this,s=function(e){if(e){if(o.isWebKit&&!e.which&&r.releaseMouse)return r.releaseMouse();r.x=e.clientX,r.y=e.clientY,t&&t(e),r.mouseEvent=new a(e,r.editor),r.$mouseMoved=!0}},l=function(e){clearInterval(h),c(),r[r.state+"End"]&&r[r.state+"End"](e),r.state="",null==i.$keepTextAreaAtCursor&&(i.$keepTextAreaAtCursor=!0,i.$moveTextAreaToCursor()),r.isMousePressed=!1,r.$onCaptureMouseMove=r.releaseMouse=null,e&&r.onMouseEvent("mouseup",e)},c=function(){r[r.state]&&r[r.state](),r.$mouseMoved=!1};if(o.isOldIE&&"dblclick"==e.domEvent.type)return setTimeout(function(){l(e)});r.$onCaptureMouseMove=s,r.releaseMouse=n.capture(this.editor.container,s,l);var h=setInterval(c,20)},this.releaseMouse=null,this.cancelContextMenu=function(){var e=function(t){t&&t.domEvent&&"contextmenu"!=t.domEvent.type||(this.editor.off("nativecontextmenu",e),t&&t.domEvent&&n.stopEvent(t.domEvent))}.bind(this);setTimeout(e,10),this.editor.on("nativecontextmenu",e)}}).call(h.prototype),c.defineOptions(h.prototype,"mouseHandler",{scrollSpeed:{initialValue:2},dragDelay:{initialValue:o.isMac?150:0},dragEnabled:{initialValue:!0},focusTimout:{initialValue:0},tooltipFollowsMouse:{initialValue:!0}}),t.MouseHandler=h}),define("ace/mouse/fold_handler",["require","exports","module"],function(e,t,i){"use strict";function n(e){e.on("click",function(t){var i=t.getDocumentPosition(),n=e.session,o=n.getFoldAt(i.row,i.column,1);o&&(t.getAccelKey()?n.removeFold(o):n.expandFold(o),t.stop())}),e.on("gutterclick",function(t){var i=e.renderer.$gutterLayer.getRegion(t);if("foldWidgets"==i){var n=t.getDocumentPosition().row,o=e.session;o.foldWidgets&&o.foldWidgets[n]&&e.session.onFoldWidgetClick(n,t),e.isFocused()||e.focus(),t.stop()}}),e.on("gutterdblclick",function(t){var i=e.renderer.$gutterLayer.getRegion(t);if("foldWidgets"==i){var n=t.getDocumentPosition().row,o=e.session,r=o.getParentFoldRangeData(n,!0),s=r.range||r.firstRange;if(s){n=s.start.row;var a=o.getFoldAt(n,o.getLine(n).length,1);a?o.removeFold(a):(o.addFold("...",s),e.renderer.scrollCursorIntoView({row:s.start.row,column:0}))}t.stop()}})}t.FoldHandler=n}),define("ace/keyboard/keybinding",["require","exports","module","ace/lib/keys","ace/lib/event"],function(e,t,i){"use strict";var n=e("../lib/keys"),o=e("../lib/event"),r=function(e){this.$editor=e,this.$data={editor:e},this.$handlers=[],this.setDefaultHandler(e.commands)};(function(){this.setDefaultHandler=function(e){this.removeKeyboardHandler(this.$defaultHandler),this.$defaultHandler=e,this.addKeyboardHandler(e,0)},this.setKeyboardHandler=function(e){var t=this.$handlers;if(t[t.length-1]!=e){for(;t[t.length-1]&&t[t.length-1]!=this.$defaultHandler;)this.removeKeyboardHandler(t[t.length-1]);this.addKeyboardHandler(e,1)}},this.addKeyboardHandler=function(e,t){if(e){"function"!=typeof e||e.handleKeyboard||(e.handleKeyboard=e);var i=this.$handlers.indexOf(e);-1!=i&&this.$handlers.splice(i,1),void 0==t?this.$handlers.push(e):this.$handlers.splice(t,0,e),-1==i&&e.attach&&e.attach(this.$editor)}},this.removeKeyboardHandler=function(e){var t=this.$handlers.indexOf(e);return-1==t?!1:(this.$handlers.splice(t,1),e.detach&&e.detach(this.$editor),!0)},this.getKeyboardHandler=function(){return this.$handlers[this.$handlers.length-1]},this.getStatusText=function(){var e=this.$data,t=e.editor;return this.$handlers.map(function(i){return i.getStatusText&&i.getStatusText(t,e)||""}).filter(Boolean).join(" ")},this.$callKeyboardHandlers=function(e,t,i,n){for(var r,s=!1,a=this.$editor.commands,l=this.$handlers.length;l--&&(r=this.$handlers[l].handleKeyboard(this.$data,e,t,i,n),!(r&&r.command&&(s="null"==r.command?!0:a.exec(r.command,this.$editor,r.args,n),s&&n&&-1!=e&&1!=r.passEvent&&1!=r.command.passEvent&&o.stopEvent(n),s))););return s},this.onCommandKey=function(e,t,i){var o=n.keyCodeToString(i);this.$callKeyboardHandlers(t,o,i,e)},this.onTextInput=function(e){var t=this.$callKeyboardHandlers(-1,e);t||this.$editor.commands.exec("insertstring",this.$editor,e)}}).call(r.prototype),t.KeyBinding=r}),define("ace/range",["require","exports","module"],function(e,t,i){"use strict";var n=function(e,t){return e.row-t.row||e.column-t.column},o=function(e,t,i,n){this.start={row:e,column:t},this.end={row:i,column:n}};(function(){this.isEqual=function(e){return this.start.row===e.start.row&&this.end.row===e.end.row&&this.start.column===e.start.column&&this.end.column===e.end.column},this.toString=function(){return"Range: ["+this.start.row+"/"+this.start.column+"] -> ["+this.end.row+"/"+this.end.column+"]"},this.contains=function(e,t){return 0==this.compare(e,t)},this.compareRange=function(e){var t,i=e.end,n=e.start;return t=this.compare(i.row,i.column),1==t?(t=this.compare(n.row,n.column),1==t?2:0==t?1:0):-1==t?-2:(t=this.compare(n.row,n.column),-1==t?-1:1==t?42:0)},this.comparePoint=function(e){return this.compare(e.row,e.column)},this.containsRange=function(e){return 0==this.comparePoint(e.start)&&0==this.comparePoint(e.end)},this.intersects=function(e){var t=this.compareRange(e);return-1==t||0==t||1==t},this.isEnd=function(e,t){return this.end.row==e&&this.end.column==t},this.isStart=function(e,t){return this.start.row==e&&this.start.column==t},this.setStart=function(e,t){"object"==typeof e?(this.start.column=e.column,this.start.row=e.row):(this.start.row=e,this.start.column=t)},this.setEnd=function(e,t){"object"==typeof e?(this.end.column=e.column,this.end.row=e.row):(this.end.row=e,this.end.column=t)},this.inside=function(e,t){return 0==this.compare(e,t)?this.isEnd(e,t)||this.isStart(e,t)?!1:!0:!1},this.insideStart=function(e,t){return 0==this.compare(e,t)?this.isEnd(e,t)?!1:!0:!1},this.insideEnd=function(e,t){return 0==this.compare(e,t)?this.isStart(e,t)?!1:!0:!1},this.compare=function(e,t){return this.isMultiLine()||e!==this.start.row?e<this.start.row?-1:e>this.end.row?1:this.start.row===e?t>=this.start.column?0:-1:this.end.row===e?t<=this.end.column?0:1:0:t<this.start.column?-1:t>this.end.column?1:0},this.compareStart=function(e,t){return this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.compareEnd=function(e,t){return this.end.row==e&&this.end.column==t?1:this.compare(e,t)},this.compareInside=function(e,t){return this.end.row==e&&this.end.column==t?1:this.start.row==e&&this.start.column==t?-1:this.compare(e,t)},this.clipRows=function(e,t){if(this.end.row>t)var i={row:t+1,column:0};else if(this.end.row<e)var i={row:e,column:0};if(this.start.row>t)var n={row:t+1,column:0};else if(this.start.row<e)var n={row:e,column:0};return o.fromPoints(n||this.start,i||this.end)},this.extend=function(e,t){var i=this.compare(e,t);if(0==i)return this;if(-1==i)var n={row:e,column:t};else var r={row:e,column:t};return o.fromPoints(n||this.start,r||this.end);
|
|
|
+
|
|
|
+},this.isEmpty=function(){return this.start.row===this.end.row&&this.start.column===this.end.column},this.isMultiLine=function(){return this.start.row!==this.end.row},this.clone=function(){return o.fromPoints(this.start,this.end)},this.collapseRows=function(){return 0==this.end.column?new o(this.start.row,0,Math.max(this.start.row,this.end.row-1),0):new o(this.start.row,0,this.end.row,0)},this.toScreenRange=function(e){var t=e.documentToScreenPosition(this.start),i=e.documentToScreenPosition(this.end);return new o(t.row,t.column,i.row,i.column)},this.moveBy=function(e,t){this.start.row+=e,this.start.column+=t,this.end.row+=e,this.end.column+=t}}).call(o.prototype),o.fromPoints=function(e,t){return new o(e.row,e.column,t.row,t.column)},o.comparePoints=n,o.comparePoints=function(e,t){return e.row-t.row||e.column-t.column},t.Range=o}),define("ace/selection",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter","ace/range"],function(e,t,i){"use strict";var n=e("./lib/oop"),o=e("./lib/lang"),r=e("./lib/event_emitter").EventEmitter,s=e("./range").Range,a=function(e){this.session=e,this.doc=e.getDocument(),this.clearSelection(),this.lead=this.selectionLead=this.doc.createAnchor(0,0),this.anchor=this.selectionAnchor=this.doc.createAnchor(0,0);var t=this;this.lead.on("change",function(e){t._emit("changeCursor"),t.$isEmpty||t._emit("changeSelection"),t.$keepDesiredColumnOnChange||e.old.column==e.value.column||(t.$desiredColumn=null)}),this.selectionAnchor.on("change",function(){t.$isEmpty||t._emit("changeSelection")})};(function(){n.implement(this,r),this.isEmpty=function(){return this.$isEmpty||this.anchor.row==this.lead.row&&this.anchor.column==this.lead.column},this.isMultiLine=function(){return this.isEmpty()?!1:this.getRange().isMultiLine()},this.getCursor=function(){return this.lead.getPosition()},this.setSelectionAnchor=function(e,t){this.anchor.setPosition(e,t),this.$isEmpty&&(this.$isEmpty=!1,this._emit("changeSelection"))},this.getSelectionAnchor=function(){return this.$isEmpty?this.getSelectionLead():this.anchor.getPosition()},this.getSelectionLead=function(){return this.lead.getPosition()},this.shiftSelection=function(e){if(this.$isEmpty)return void this.moveCursorTo(this.lead.row,this.lead.column+e);var t=this.getSelectionAnchor(),i=this.getSelectionLead(),n=this.isBackwards();n&&0===t.column||this.setSelectionAnchor(t.row,t.column+e),(n||0!==i.column)&&this.$moveSelection(function(){this.moveCursorTo(i.row,i.column+e)})},this.isBackwards=function(){var e=this.anchor,t=this.lead;return e.row>t.row||e.row==t.row&&e.column>t.column},this.getRange=function(){var e=this.anchor,t=this.lead;return this.isEmpty()?s.fromPoints(t,t):this.isBackwards()?s.fromPoints(t,e):s.fromPoints(e,t)},this.clearSelection=function(){this.$isEmpty||(this.$isEmpty=!0,this._emit("changeSelection"))},this.selectAll=function(){var e=this.doc.getLength()-1;this.setSelectionAnchor(0,0),this.moveCursorTo(e,this.doc.getLine(e).length)},this.setRange=this.setSelectionRange=function(e,t){t?(this.setSelectionAnchor(e.end.row,e.end.column),this.selectTo(e.start.row,e.start.column)):(this.setSelectionAnchor(e.start.row,e.start.column),this.selectTo(e.end.row,e.end.column)),this.getRange().isEmpty()&&(this.$isEmpty=!0),this.$desiredColumn=null},this.$moveSelection=function(e){var t=this.lead;this.$isEmpty&&this.setSelectionAnchor(t.row,t.column),e.call(this)},this.selectTo=function(e,t){this.$moveSelection(function(){this.moveCursorTo(e,t)})},this.selectToPosition=function(e){this.$moveSelection(function(){this.moveCursorToPosition(e)})},this.moveTo=function(e,t){this.clearSelection(),this.moveCursorTo(e,t)},this.moveToPosition=function(e){this.clearSelection(),this.moveCursorToPosition(e)},this.selectUp=function(){this.$moveSelection(this.moveCursorUp)},this.selectDown=function(){this.$moveSelection(this.moveCursorDown)},this.selectRight=function(){this.$moveSelection(this.moveCursorRight)},this.selectLeft=function(){this.$moveSelection(this.moveCursorLeft)},this.selectLineStart=function(){this.$moveSelection(this.moveCursorLineStart)},this.selectLineEnd=function(){this.$moveSelection(this.moveCursorLineEnd)},this.selectFileEnd=function(){this.$moveSelection(this.moveCursorFileEnd)},this.selectFileStart=function(){this.$moveSelection(this.moveCursorFileStart)},this.selectWordRight=function(){this.$moveSelection(this.moveCursorWordRight)},this.selectWordLeft=function(){this.$moveSelection(this.moveCursorWordLeft)},this.getWordRange=function(e,t){if("undefined"==typeof t){var i=e||this.lead;e=i.row,t=i.column}return this.session.getWordRange(e,t)},this.selectWord=function(){this.setSelectionRange(this.getWordRange())},this.selectAWord=function(){var e=this.getCursor(),t=this.session.getAWordRange(e.row,e.column);this.setSelectionRange(t)},this.getLineRange=function(e,t){var i,n="number"==typeof e?e:this.lead.row,o=this.session.getFoldLine(n);return o?(n=o.start.row,i=o.end.row):i=n,t===!0?new s(n,0,i,this.session.getLine(i).length):new s(n,0,i+1,0)},this.selectLine=function(){this.setSelectionRange(this.getLineRange())},this.moveCursorUp=function(){this.moveCursorBy(-1,0)},this.moveCursorDown=function(){this.moveCursorBy(1,0)},this.moveCursorLeft=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,-1))this.moveCursorTo(e.start.row,e.start.column);else if(0===t.column)t.row>0&&this.moveCursorTo(t.row-1,this.doc.getLine(t.row-1).length);else{var i=this.session.getTabSize();this.session.isTabStop(t)&&this.doc.getLine(t.row).slice(t.column-i,t.column).split(" ").length-1==i?this.moveCursorBy(0,-i):this.moveCursorBy(0,-1)}},this.moveCursorRight=function(){var e,t=this.lead.getPosition();if(e=this.session.getFoldAt(t.row,t.column,1))this.moveCursorTo(e.end.row,e.end.column);else if(this.lead.column==this.doc.getLine(this.lead.row).length)this.lead.row<this.doc.getLength()-1&&this.moveCursorTo(this.lead.row+1,0);else{var i=this.session.getTabSize(),t=this.lead;this.session.isTabStop(t)&&this.doc.getLine(t.row).slice(t.column,t.column+i).split(" ").length-1==i?this.moveCursorBy(0,i):this.moveCursorBy(0,1)}},this.moveCursorLineStart=function(){var e=this.lead.row,t=this.lead.column,i=this.session.documentToScreenRow(e,t),n=this.session.screenToDocumentPosition(i,0),o=this.session.getDisplayLine(e,null,n.row,n.column),r=o.match(/^\s*/);r[0].length==t||this.session.$useEmacsStyleLineStart||(n.column+=r[0].length),this.moveCursorToPosition(n)},this.moveCursorLineEnd=function(){var e=this.lead,t=this.session.getDocumentLastRowColumnPosition(e.row,e.column);if(this.lead.column==t.column){var i=this.session.getLine(t.row);if(t.column==i.length){var n=i.search(/\s+$/);n>0&&(t.column=n)}}this.moveCursorTo(t.row,t.column)},this.moveCursorFileEnd=function(){var e=this.doc.getLength()-1,t=this.doc.getLine(e).length;this.moveCursorTo(e,t)},this.moveCursorFileStart=function(){this.moveCursorTo(0,0)},this.moveCursorLongWordRight=function(){var e,t=this.lead.row,i=this.lead.column,n=this.doc.getLine(t),o=n.substring(i);this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0;var r=this.session.getFoldAt(t,i,1);return r?void this.moveCursorTo(r.end.row,r.end.column):((e=this.session.nonTokenRe.exec(o))&&(i+=this.session.nonTokenRe.lastIndex,this.session.nonTokenRe.lastIndex=0,o=n.substring(i)),i>=n.length?(this.moveCursorTo(t,n.length),this.moveCursorRight(),void(t<this.doc.getLength()-1&&this.moveCursorWordRight())):((e=this.session.tokenRe.exec(o))&&(i+=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0),void this.moveCursorTo(t,i)))},this.moveCursorLongWordLeft=function(){var e,t=this.lead.row,i=this.lead.column;if(e=this.session.getFoldAt(t,i,-1))return void this.moveCursorTo(e.start.row,e.start.column);var n=this.session.getFoldStringAt(t,i,-1);null==n&&(n=this.doc.getLine(t).substring(0,i));var r,s=o.stringReverse(n);return this.session.nonTokenRe.lastIndex=0,this.session.tokenRe.lastIndex=0,(r=this.session.nonTokenRe.exec(s))&&(i-=this.session.nonTokenRe.lastIndex,s=s.slice(this.session.nonTokenRe.lastIndex),this.session.nonTokenRe.lastIndex=0),0>=i?(this.moveCursorTo(t,0),this.moveCursorLeft(),void(t>0&&this.moveCursorWordLeft())):((r=this.session.tokenRe.exec(s))&&(i-=this.session.tokenRe.lastIndex,this.session.tokenRe.lastIndex=0),void this.moveCursorTo(t,i))},this.$shortWordEndIndex=function(e){var t,i,n=0,o=/\s/,r=this.session.tokenRe;if(r.lastIndex=0,t=this.session.tokenRe.exec(e))n=this.session.tokenRe.lastIndex;else{for(;(i=e[n])&&o.test(i);)n++;if(1>n)for(r.lastIndex=0;(i=e[n])&&!r.test(i);)if(r.lastIndex=0,n++,o.test(i)){if(n>2){n--;break}for(;(i=e[n])&&o.test(i);)n++;if(n>2)break}}return r.lastIndex=0,n},this.moveCursorShortWordRight=function(){var e=this.lead.row,t=this.lead.column,i=this.doc.getLine(e),n=i.substring(t),o=this.session.getFoldAt(e,t,1);if(o)return this.moveCursorTo(o.end.row,o.end.column);if(t==i.length){var r=this.doc.getLength();do e++,n=this.doc.getLine(e);while(r>e&&/^\s*$/.test(n));/^\s+/.test(n)||(n=""),t=0}var s=this.$shortWordEndIndex(n);this.moveCursorTo(e,t+s)},this.moveCursorShortWordLeft=function(){var e,t=this.lead.row,i=this.lead.column;if(e=this.session.getFoldAt(t,i,-1))return this.moveCursorTo(e.start.row,e.start.column);var n=this.session.getLine(t).substring(0,i);if(0===i){do t--,n=this.doc.getLine(t);while(t>0&&/^\s*$/.test(n));i=n.length,/\s+$/.test(n)||(n="")}var r=o.stringReverse(n),s=this.$shortWordEndIndex(r);return this.moveCursorTo(t,i-s)},this.moveCursorWordRight=function(){this.session.$selectLongWords?this.moveCursorLongWordRight():this.moveCursorShortWordRight()},this.moveCursorWordLeft=function(){this.session.$selectLongWords?this.moveCursorLongWordLeft():this.moveCursorShortWordLeft()},this.moveCursorBy=function(e,t){var i=this.session.documentToScreenPosition(this.lead.row,this.lead.column);0===t&&(this.$desiredColumn?i.column=this.$desiredColumn:this.$desiredColumn=i.column);var n=this.session.screenToDocumentPosition(i.row+e,i.column);0!==e&&0===t&&n.row===this.lead.row&&n.column===this.lead.column&&this.session.lineWidgets&&this.session.lineWidgets[n.row]&&n.row++,this.moveCursorTo(n.row,n.column+t,0===t)},this.moveCursorToPosition=function(e){this.moveCursorTo(e.row,e.column)},this.moveCursorTo=function(e,t,i){var n=this.session.getFoldAt(e,t,1);n&&(e=n.start.row,t=n.start.column),this.$keepDesiredColumnOnChange=!0,this.lead.setPosition(e,t),this.$keepDesiredColumnOnChange=!1,i||(this.$desiredColumn=null)},this.moveCursorToScreen=function(e,t,i){var n=this.session.screenToDocumentPosition(e,t);this.moveCursorTo(n.row,n.column,i)},this.detach=function(){this.lead.detach(),this.anchor.detach(),this.session=this.doc=null},this.fromOrientedRange=function(e){this.setSelectionRange(e,e.cursor==e.start),this.$desiredColumn=e.desiredColumn||this.$desiredColumn},this.toOrientedRange=function(e){var t=this.getRange();return e?(e.start.column=t.start.column,e.start.row=t.start.row,e.end.column=t.end.column,e.end.row=t.end.row):e=t,e.cursor=this.isBackwards()?e.start:e.end,e.desiredColumn=this.$desiredColumn,e},this.getRangeOfMovements=function(e){var t=this.getCursor();try{e.call(null,this);var i=this.getCursor();return s.fromPoints(t,i)}catch(n){return s.fromPoints(t,t)}finally{this.moveCursorToPosition(t)}},this.toJSON=function(){if(this.rangeCount)var e=this.ranges.map(function(e){var t=e.clone();return t.isBackwards=e.cursor==e.start,t});else{var e=this.getRange();e.isBackwards=this.isBackwards()}return e},this.fromJSON=function(e){if(void 0==e.start){if(this.rangeList){this.toSingleRange(e[0]);for(var t=e.length;t--;){var i=s.fromPoints(e[t].start,e[t].end);e[t].isBackwards&&(i.cursor=i.start),this.addRange(i,!0)}return}e=e[0]}this.rangeList&&this.toSingleRange(e),this.setSelectionRange(e,e.isBackwards)},this.isEqual=function(e){if((e.length||this.rangeCount)&&e.length!=this.rangeCount)return!1;if(!e.length||!this.ranges)return this.getRange().isEqual(e);for(var t=this.ranges.length;t--;)if(!this.ranges[t].isEqual(e[t]))return!1;return!0}}).call(a.prototype),t.Selection=a}),define("ace/tokenizer",["require","exports","module","ace/config"],function(e,t,i){"use strict";var n=e("./config"),o=2e3,r=function(e){this.states=e,this.regExps={},this.matchMappings={};for(var t in this.states){for(var i=this.states[t],n=[],o=0,r=this.matchMappings[t]={defaultToken:"text"},s="g",a=[],l=0;l<i.length;l++){var c=i[l];if(c.defaultToken&&(r.defaultToken=c.defaultToken),c.caseInsensitive&&(s="gi"),null!=c.regex){c.regex instanceof RegExp&&(c.regex=c.regex.toString().slice(1,-1));var h=c.regex,u=new RegExp("(?:("+h+")|(.))").exec("a").length-2;Array.isArray(c.token)?1==c.token.length||1==u?c.token=c.token[0]:u-1!=c.token.length?(this.reportError("number of classes and regexp groups doesn't match",{rule:c,groupCount:u-1}),c.token=c.token[0]):(c.tokenArray=c.token,c.token=null,c.onMatch=this.$arrayTokens):"function"!=typeof c.token||c.onMatch||(c.onMatch=u>1?this.$applyToken:c.token),u>1&&(/\\\d/.test(c.regex)?h=c.regex.replace(/\\([0-9]+)/g,function(e,t){return"\\"+(parseInt(t,10)+o+1)}):(u=1,h=this.removeCapturingGroups(c.regex)),c.splitRegex||"string"==typeof c.token||a.push(c)),r[o]=l,o+=u,n.push(h),c.onMatch||(c.onMatch=null)}}n.length||(r[0]=0,n.push("$")),a.forEach(function(e){e.splitRegex=this.createSplitterRegexp(e.regex,s)},this),this.regExps[t]=new RegExp("("+n.join(")|(")+")|($)",s)}};(function(){this.$setMaxTokenCount=function(e){o=0|e},this.$applyToken=function(e){var t=this.splitRegex.exec(e).slice(1),i=this.token.apply(this,t);if("string"==typeof i)return[{type:i,value:e}];for(var n=[],o=0,r=i.length;r>o;o++)t[o]&&(n[n.length]={type:i[o],value:t[o]});return n},this.$arrayTokens=function(e){if(!e)return[];var t=this.splitRegex.exec(e);if(!t)return"text";for(var i=[],n=this.tokenArray,o=0,r=n.length;r>o;o++)t[o+1]&&(i[i.length]={type:n[o],value:t[o+1]});return i},this.removeCapturingGroups=function(e){var t=e.replace(/\[(?:\\.|[^\]])*?\]|\\.|\(\?[:=!]|(\()/g,function(e,t){return t?"(?:":e});return t},this.createSplitterRegexp=function(e,t){if(-1!=e.indexOf("(?=")){var i=0,n=!1,o={};e.replace(/(\\.)|(\((?:\?[=!])?)|(\))|([\[\]])/g,function(e,t,r,s,a,l){return n?n="]"!=a:a?n=!0:s?(i==o.stack&&(o.end=l+1,o.stack=-1),i--):r&&(i++,1!=r.length&&(o.stack=i,o.start=l)),e}),null!=o.end&&/^\)*$/.test(e.substr(o.end))&&(e=e.substring(0,o.start)+e.substr(o.end))}return new RegExp(e,(t||"").replace("g",""))},this.getLineTokens=function(e,t){if(t&&"string"!=typeof t){var i=t.slice(0);t=i[0],"#tmp"===t&&(i.shift(),t=i.shift())}else var i=[];var n=t||"start",r=this.states[n];r||(n="start",r=this.states[n]);var s=this.matchMappings[n],a=this.regExps[n];a.lastIndex=0;for(var l,c=[],h=0,u=0,d={type:null,value:""};l=a.exec(e);){var g=s.defaultToken,f=null,m=l[0],p=a.lastIndex;if(p-m.length>h){var A=e.substring(h,p-m.length);d.type==g?d.value+=A:(d.type&&c.push(d),d={type:g,value:A})}for(var v=0;v<l.length-2;v++)if(void 0!==l[v+1]){f=r[s[v]],g=f.onMatch?f.onMatch(m,n,i):f.token,f.next&&(n="string"==typeof f.next?f.next:f.next(n,i),r=this.states[n],r||(this.reportError("state doesn't exist",n),n="start",r=this.states[n]),s=this.matchMappings[n],h=p,a=this.regExps[n],a.lastIndex=p);break}if(m)if("string"==typeof g)f&&f.merge===!1||d.type!==g?(d.type&&c.push(d),d={type:g,value:m}):d.value+=m;else if(g){d.type&&c.push(d),d={type:null,value:""};for(var v=0;v<g.length;v++)c.push(g[v])}if(h==e.length)break;if(h=p,u++>o){for(u>2*e.length&&this.reportError("infinite loop with in ace tokenizer",{startState:t,line:e});h<e.length;)d.type&&c.push(d),d={value:e.substring(h,h+=2e3),type:"overflow"};n="start",i=[];break}}return d.type&&c.push(d),i.length>1&&i[0]!==n&&i.unshift("#tmp",n),{tokens:c,state:i.length?i:n}},this.reportError=n.reportError}).call(r.prototype),t.Tokenizer=r}),define("ace/mode/text_highlight_rules",["require","exports","module","ace/lib/lang"],function(e,t,i){"use strict";var n=e("../lib/lang"),o=function(){this.$rules={start:[{token:"empty_line",regex:"^$"},{defaultToken:"text"}]}};(function(){this.addRules=function(e,t){if(t)for(var i in e){for(var n=e[i],o=0;o<n.length;o++){var r=n[o];(r.next||r.onMatch)&&("string"!=typeof r.next?r.nextState&&0!==r.nextState.indexOf(t)&&(r.nextState=t+r.nextState):0!==r.next.indexOf(t)&&(r.next=t+r.next))}this.$rules[t+i]=n}else for(var i in e)this.$rules[i]=e[i]},this.getRules=function(){return this.$rules},this.embedRules=function(e,t,i,o,r){var s="function"==typeof e?(new e).getRules():e;if(o)for(var a=0;a<o.length;a++)o[a]=t+o[a];else{o=[];for(var l in s)o.push(t+l)}if(this.addRules(s,t),i)for(var c=Array.prototype[r?"push":"unshift"],a=0;a<o.length;a++)c.apply(this.$rules[o[a]],n.deepCopy(i));this.$embeds||(this.$embeds=[]),this.$embeds.push(t)},this.getEmbeds=function(){return this.$embeds};var e=function(e,t){return("start"!=e||t.length)&&t.unshift(this.nextState,e),this.nextState},t=function(e,t){return t.shift(),t.shift()||"start"};this.normalizeRules=function(){function i(r){var s=o[r];s.processed=!0;for(var a=0;a<s.length;a++){var l=s[a];!l.regex&&l.start&&(l.regex=l.start,l.next||(l.next=[]),l.next.push({defaultToken:l.token},{token:l.token+".end",regex:l.end||l.start,next:"pop"}),l.token=l.token+".start",l.push=!0);var c=l.next||l.push;if(c&&Array.isArray(c)){var h=l.stateName;h||(h=l.token,"string"!=typeof h&&(h=h[0]||""),o[h]&&(h+=n++)),o[h]=c,l.next=h,i(h)}else"pop"==c&&(l.next=t);if(l.push&&(l.nextState=l.next||l.push,l.next=e,delete l.push),l.rules)for(var u in l.rules)o[u]?o[u].push&&o[u].push.apply(o[u],l.rules[u]):o[u]=l.rules[u];if(l.include||"string"==typeof l)var d=l.include||l,g=o[d];else Array.isArray(l)&&(g=l);if(g){var f=[a,1].concat(g);l.noEscape&&(f=f.filter(function(e){return!e.next})),s.splice.apply(s,f),a--,g=null}l.keywordMap&&(l.token=this.createKeywordMapper(l.keywordMap,l.defaultToken||"text",l.caseInsensitive),delete l.defaultToken)}}var n=0,o=this.$rules;Object.keys(o).forEach(i,this)},this.createKeywordMapper=function(e,t,i,n){var o=Object.create(null);return Object.keys(e).forEach(function(t){var r=e[t];i&&(r=r.toLowerCase());for(var s=r.split(n||"|"),a=s.length;a--;)o[s[a]]=t}),Object.getPrototypeOf(o)&&(o.__proto__=null),this.$keywordList=Object.keys(o),e=null,i?function(e){return o[e.toLowerCase()]||t}:function(e){return o[e]||t}},this.getKeywords=function(){return this.$keywords}}).call(o.prototype),t.TextHighlightRules=o}),define("ace/mode/behaviour",["require","exports","module"],function(e,t,i){"use strict";var n=function(){this.$behaviours={}};(function(){this.add=function(e,t,i){switch(void 0){case this.$behaviours:this.$behaviours={};case this.$behaviours[e]:this.$behaviours[e]={}}this.$behaviours[e][t]=i},this.addBehaviours=function(e){for(var t in e)for(var i in e[t])this.add(t,i,e[t][i])},this.remove=function(e){this.$behaviours&&this.$behaviours[e]&&delete this.$behaviours[e]},this.inherit=function(e,t){if("function"==typeof e)var i=(new e).getBehaviours(t);else var i=e.getBehaviours(t);this.addBehaviours(i)},this.getBehaviours=function(e){if(e){for(var t={},i=0;i<e.length;i++)this.$behaviours[e[i]]&&(t[e[i]]=this.$behaviours[e[i]]);return t}return this.$behaviours}}).call(n.prototype),t.Behaviour=n}),define("ace/unicode",["require","exports","module"],function(e,t,i){"use strict";function n(e){var i=/\w{4}/g;for(var n in e)t.packages[n]=e[n].replace(i,"\\u$&")}t.packages={},n({L:"0041-005A0061-007A00AA00B500BA00C0-00D600D8-00F600F8-02C102C6-02D102E0-02E402EC02EE0370-037403760377037A-037D03860388-038A038C038E-03A103A3-03F503F7-0481048A-05250531-055605590561-058705D0-05EA05F0-05F20621-064A066E066F0671-06D306D506E506E606EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA07F407F507FA0800-0815081A082408280904-0939093D09500958-0961097109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E460E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EC60EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10A0-10C510D0-10FA10FC1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317D717DC1820-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541AA71B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C7D1CE9-1CEC1CEE-1CF11D00-1DBF1E00-1F151F18-1F1D1F20-1F451F48-1F4D1F50-1F571F591F5B1F5D1F5F-1F7D1F80-1FB41FB6-1FBC1FBE1FC2-1FC41FC6-1FCC1FD0-1FD31FD6-1FDB1FE0-1FEC1FF2-1FF41FF6-1FFC2071207F2090-209421022107210A-211321152119-211D212421262128212A-212D212F-2139213C-213F2145-2149214E218321842C00-2C2E2C30-2C5E2C60-2CE42CEB-2CEE2D00-2D252D30-2D652D6F2D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE2E2F300530063031-3035303B303C3041-3096309D-309F30A1-30FA30FC-30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A48CA4D0-A4FDA500-A60CA610-A61FA62AA62BA640-A65FA662-A66EA67F-A697A6A0-A6E5A717-A71FA722-A788A78BA78CA7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2A9CFAA00-AA28AA40-AA42AA44-AA4BAA60-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADB-AADDABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB00-FB06FB13-FB17FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF21-FF3AFF41-FF5AFF66-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",Ll:"0061-007A00AA00B500BA00DF-00F600F8-00FF01010103010501070109010B010D010F01110113011501170119011B011D011F01210123012501270129012B012D012F01310133013501370138013A013C013E014001420144014601480149014B014D014F01510153015501570159015B015D015F01610163016501670169016B016D016F0171017301750177017A017C017E-0180018301850188018C018D019201950199-019B019E01A101A301A501A801AA01AB01AD01B001B401B601B901BA01BD-01BF01C601C901CC01CE01D001D201D401D601D801DA01DC01DD01DF01E101E301E501E701E901EB01ED01EF01F001F301F501F901FB01FD01FF02010203020502070209020B020D020F02110213021502170219021B021D021F02210223022502270229022B022D022F02310233-0239023C023F0240024202470249024B024D024F-02930295-02AF037103730377037B-037D039003AC-03CE03D003D103D5-03D703D903DB03DD03DF03E103E303E503E703E903EB03ED03EF-03F303F503F803FB03FC0430-045F04610463046504670469046B046D046F04710473047504770479047B047D047F0481048B048D048F04910493049504970499049B049D049F04A104A304A504A704A904AB04AD04AF04B104B304B504B704B904BB04BD04BF04C204C404C604C804CA04CC04CE04CF04D104D304D504D704D904DB04DD04DF04E104E304E504E704E904EB04ED04EF04F104F304F504F704F904FB04FD04FF05010503050505070509050B050D050F05110513051505170519051B051D051F0521052305250561-05871D00-1D2B1D62-1D771D79-1D9A1E011E031E051E071E091E0B1E0D1E0F1E111E131E151E171E191E1B1E1D1E1F1E211E231E251E271E291E2B1E2D1E2F1E311E331E351E371E391E3B1E3D1E3F1E411E431E451E471E491E4B1E4D1E4F1E511E531E551E571E591E5B1E5D1E5F1E611E631E651E671E691E6B1E6D1E6F1E711E731E751E771E791E7B1E7D1E7F1E811E831E851E871E891E8B1E8D1E8F1E911E931E95-1E9D1E9F1EA11EA31EA51EA71EA91EAB1EAD1EAF1EB11EB31EB51EB71EB91EBB1EBD1EBF1EC11EC31EC51EC71EC91ECB1ECD1ECF1ED11ED31ED51ED71ED91EDB1EDD1EDF1EE11EE31EE51EE71EE91EEB1EED1EEF1EF11EF31EF51EF71EF91EFB1EFD1EFF-1F071F10-1F151F20-1F271F30-1F371F40-1F451F50-1F571F60-1F671F70-1F7D1F80-1F871F90-1F971FA0-1FA71FB0-1FB41FB61FB71FBE1FC2-1FC41FC61FC71FD0-1FD31FD61FD71FE0-1FE71FF2-1FF41FF61FF7210A210E210F2113212F21342139213C213D2146-2149214E21842C30-2C5E2C612C652C662C682C6A2C6C2C712C732C742C76-2C7C2C812C832C852C872C892C8B2C8D2C8F2C912C932C952C972C992C9B2C9D2C9F2CA12CA32CA52CA72CA92CAB2CAD2CAF2CB12CB32CB52CB72CB92CBB2CBD2CBF2CC12CC32CC52CC72CC92CCB2CCD2CCF2CD12CD32CD52CD72CD92CDB2CDD2CDF2CE12CE32CE42CEC2CEE2D00-2D25A641A643A645A647A649A64BA64DA64FA651A653A655A657A659A65BA65DA65FA663A665A667A669A66BA66DA681A683A685A687A689A68BA68DA68FA691A693A695A697A723A725A727A729A72BA72DA72F-A731A733A735A737A739A73BA73DA73FA741A743A745A747A749A74BA74DA74FA751A753A755A757A759A75BA75DA75FA761A763A765A767A769A76BA76DA76FA771-A778A77AA77CA77FA781A783A785A787A78CFB00-FB06FB13-FB17FF41-FF5A",Lu:"0041-005A00C0-00D600D8-00DE01000102010401060108010A010C010E01100112011401160118011A011C011E01200122012401260128012A012C012E01300132013401360139013B013D013F0141014301450147014A014C014E01500152015401560158015A015C015E01600162016401660168016A016C016E017001720174017601780179017B017D018101820184018601870189-018B018E-0191019301940196-0198019C019D019F01A001A201A401A601A701A901AC01AE01AF01B1-01B301B501B701B801BC01C401C701CA01CD01CF01D101D301D501D701D901DB01DE01E001E201E401E601E801EA01EC01EE01F101F401F6-01F801FA01FC01FE02000202020402060208020A020C020E02100212021402160218021A021C021E02200222022402260228022A022C022E02300232023A023B023D023E02410243-02460248024A024C024E03700372037603860388-038A038C038E038F0391-03A103A3-03AB03CF03D2-03D403D803DA03DC03DE03E003E203E403E603E803EA03EC03EE03F403F703F903FA03FD-042F04600462046404660468046A046C046E04700472047404760478047A047C047E0480048A048C048E04900492049404960498049A049C049E04A004A204A404A604A804AA04AC04AE04B004B204B404B604B804BA04BC04BE04C004C104C304C504C704C904CB04CD04D004D204D404D604D804DA04DC04DE04E004E204E404E604E804EA04EC04EE04F004F204F404F604F804FA04FC04FE05000502050405060508050A050C050E05100512051405160518051A051C051E0520052205240531-055610A0-10C51E001E021E041E061E081E0A1E0C1E0E1E101E121E141E161E181E1A1E1C1E1E1E201E221E241E261E281E2A1E2C1E2E1E301E321E341E361E381E3A1E3C1E3E1E401E421E441E461E481E4A1E4C1E4E1E501E521E541E561E581E5A1E5C1E5E1E601E621E641E661E681E6A1E6C1E6E1E701E721E741E761E781E7A1E7C1E7E1E801E821E841E861E881E8A1E8C1E8E1E901E921E941E9E1EA01EA21EA41EA61EA81EAA1EAC1EAE1EB01EB21EB41EB61EB81EBA1EBC1EBE1EC01EC21EC41EC61EC81ECA1ECC1ECE1ED01ED21ED41ED61ED81EDA1EDC1EDE1EE01EE21EE41EE61EE81EEA1EEC1EEE1EF01EF21EF41EF61EF81EFA1EFC1EFE1F08-1F0F1F18-1F1D1F28-1F2F1F38-1F3F1F48-1F4D1F591F5B1F5D1F5F1F68-1F6F1FB8-1FBB1FC8-1FCB1FD8-1FDB1FE8-1FEC1FF8-1FFB21022107210B-210D2110-211221152119-211D212421262128212A-212D2130-2133213E213F214521832C00-2C2E2C602C62-2C642C672C692C6B2C6D-2C702C722C752C7E-2C802C822C842C862C882C8A2C8C2C8E2C902C922C942C962C982C9A2C9C2C9E2CA02CA22CA42CA62CA82CAA2CAC2CAE2CB02CB22CB42CB62CB82CBA2CBC2CBE2CC02CC22CC42CC62CC82CCA2CCC2CCE2CD02CD22CD42CD62CD82CDA2CDC2CDE2CE02CE22CEB2CEDA640A642A644A646A648A64AA64CA64EA650A652A654A656A658A65AA65CA65EA662A664A666A668A66AA66CA680A682A684A686A688A68AA68CA68EA690A692A694A696A722A724A726A728A72AA72CA72EA732A734A736A738A73AA73CA73EA740A742A744A746A748A74AA74CA74EA750A752A754A756A758A75AA75CA75EA760A762A764A766A768A76AA76CA76EA779A77BA77DA77EA780A782A784A786A78BFF21-FF3A",Lt:"01C501C801CB01F21F88-1F8F1F98-1F9F1FA8-1FAF1FBC1FCC1FFC",Lm:"02B0-02C102C6-02D102E0-02E402EC02EE0374037A0559064006E506E607F407F507FA081A0824082809710E460EC610FC17D718431AA71C78-1C7D1D2C-1D611D781D9B-1DBF2071207F2090-20942C7D2D6F2E2F30053031-3035303B309D309E30FC-30FEA015A4F8-A4FDA60CA67FA717-A71FA770A788A9CFAA70AADDFF70FF9EFF9F",Lo:"01BB01C0-01C3029405D0-05EA05F0-05F20621-063F0641-064A066E066F0671-06D306D506EE06EF06FA-06FC06FF07100712-072F074D-07A507B107CA-07EA0800-08150904-0939093D09500958-096109720979-097F0985-098C098F09900993-09A809AA-09B009B209B6-09B909BD09CE09DC09DD09DF-09E109F009F10A05-0A0A0A0F0A100A13-0A280A2A-0A300A320A330A350A360A380A390A59-0A5C0A5E0A72-0A740A85-0A8D0A8F-0A910A93-0AA80AAA-0AB00AB20AB30AB5-0AB90ABD0AD00AE00AE10B05-0B0C0B0F0B100B13-0B280B2A-0B300B320B330B35-0B390B3D0B5C0B5D0B5F-0B610B710B830B85-0B8A0B8E-0B900B92-0B950B990B9A0B9C0B9E0B9F0BA30BA40BA8-0BAA0BAE-0BB90BD00C05-0C0C0C0E-0C100C12-0C280C2A-0C330C35-0C390C3D0C580C590C600C610C85-0C8C0C8E-0C900C92-0CA80CAA-0CB30CB5-0CB90CBD0CDE0CE00CE10D05-0D0C0D0E-0D100D12-0D280D2A-0D390D3D0D600D610D7A-0D7F0D85-0D960D9A-0DB10DB3-0DBB0DBD0DC0-0DC60E01-0E300E320E330E40-0E450E810E820E840E870E880E8A0E8D0E94-0E970E99-0E9F0EA1-0EA30EA50EA70EAA0EAB0EAD-0EB00EB20EB30EBD0EC0-0EC40EDC0EDD0F000F40-0F470F49-0F6C0F88-0F8B1000-102A103F1050-1055105A-105D106110651066106E-10701075-1081108E10D0-10FA1100-1248124A-124D1250-12561258125A-125D1260-1288128A-128D1290-12B012B2-12B512B8-12BE12C012C2-12C512C8-12D612D8-13101312-13151318-135A1380-138F13A0-13F41401-166C166F-167F1681-169A16A0-16EA1700-170C170E-17111720-17311740-17511760-176C176E-17701780-17B317DC1820-18421844-18771880-18A818AA18B0-18F51900-191C1950-196D1970-19741980-19AB19C1-19C71A00-1A161A20-1A541B05-1B331B45-1B4B1B83-1BA01BAE1BAF1C00-1C231C4D-1C4F1C5A-1C771CE9-1CEC1CEE-1CF12135-21382D30-2D652D80-2D962DA0-2DA62DA8-2DAE2DB0-2DB62DB8-2DBE2DC0-2DC62DC8-2DCE2DD0-2DD62DD8-2DDE3006303C3041-3096309F30A1-30FA30FF3105-312D3131-318E31A0-31B731F0-31FF3400-4DB54E00-9FCBA000-A014A016-A48CA4D0-A4F7A500-A60BA610-A61FA62AA62BA66EA6A0-A6E5A7FB-A801A803-A805A807-A80AA80C-A822A840-A873A882-A8B3A8F2-A8F7A8FBA90A-A925A930-A946A960-A97CA984-A9B2AA00-AA28AA40-AA42AA44-AA4BAA60-AA6FAA71-AA76AA7AAA80-AAAFAAB1AAB5AAB6AAB9-AABDAAC0AAC2AADBAADCABC0-ABE2AC00-D7A3D7B0-D7C6D7CB-D7FBF900-FA2DFA30-FA6DFA70-FAD9FB1DFB1F-FB28FB2A-FB36FB38-FB3CFB3EFB40FB41FB43FB44FB46-FBB1FBD3-FD3DFD50-FD8FFD92-FDC7FDF0-FDFBFE70-FE74FE76-FEFCFF66-FF6FFF71-FF9DFFA0-FFBEFFC2-FFC7FFCA-FFCFFFD2-FFD7FFDA-FFDC",M:"0300-036F0483-04890591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DE-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0903093C093E-094E0951-0955096209630981-098309BC09BE-09C409C709C809CB-09CD09D709E209E30A01-0A030A3C0A3E-0A420A470A480A4B-0A4D0A510A700A710A750A81-0A830ABC0ABE-0AC50AC7-0AC90ACB-0ACD0AE20AE30B01-0B030B3C0B3E-0B440B470B480B4B-0B4D0B560B570B620B630B820BBE-0BC20BC6-0BC80BCA-0BCD0BD70C01-0C030C3E-0C440C46-0C480C4A-0C4D0C550C560C620C630C820C830CBC0CBE-0CC40CC6-0CC80CCA-0CCD0CD50CD60CE20CE30D020D030D3E-0D440D46-0D480D4A-0D4D0D570D620D630D820D830DCA0DCF-0DD40DD60DD8-0DDF0DF20DF30E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F3E0F3F0F71-0F840F860F870F90-0F970F99-0FBC0FC6102B-103E1056-1059105E-10601062-10641067-106D1071-10741082-108D108F109A-109D135F1712-17141732-1734175217531772177317B6-17D317DD180B-180D18A91920-192B1930-193B19B0-19C019C819C91A17-1A1B1A55-1A5E1A60-1A7C1A7F1B00-1B041B34-1B441B6B-1B731B80-1B821BA1-1BAA1C24-1C371CD0-1CD21CD4-1CE81CED1CF21DC0-1DE61DFD-1DFF20D0-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66F-A672A67CA67DA6F0A6F1A802A806A80BA823-A827A880A881A8B4-A8C4A8E0-A8F1A926-A92DA947-A953A980-A983A9B3-A9C0AA29-AA36AA43AA4CAA4DAA7BAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE3-ABEAABECABEDFB1EFE00-FE0FFE20-FE26",Mn:"0300-036F0483-04870591-05BD05BF05C105C205C405C505C70610-061A064B-065E067006D6-06DC06DF-06E406E706E806EA-06ED07110730-074A07A6-07B007EB-07F30816-0819081B-08230825-08270829-082D0900-0902093C0941-0948094D0951-095509620963098109BC09C1-09C409CD09E209E30A010A020A3C0A410A420A470A480A4B-0A4D0A510A700A710A750A810A820ABC0AC1-0AC50AC70AC80ACD0AE20AE30B010B3C0B3F0B41-0B440B4D0B560B620B630B820BC00BCD0C3E-0C400C46-0C480C4A-0C4D0C550C560C620C630CBC0CBF0CC60CCC0CCD0CE20CE30D41-0D440D4D0D620D630DCA0DD2-0DD40DD60E310E34-0E3A0E47-0E4E0EB10EB4-0EB90EBB0EBC0EC8-0ECD0F180F190F350F370F390F71-0F7E0F80-0F840F860F870F90-0F970F99-0FBC0FC6102D-10301032-10371039103A103D103E10581059105E-10601071-1074108210851086108D109D135F1712-17141732-1734175217531772177317B7-17BD17C617C9-17D317DD180B-180D18A91920-19221927192819321939-193B1A171A181A561A58-1A5E1A601A621A65-1A6C1A73-1A7C1A7F1B00-1B031B341B36-1B3A1B3C1B421B6B-1B731B801B811BA2-1BA51BA81BA91C2C-1C331C361C371CD0-1CD21CD4-1CE01CE2-1CE81CED1DC0-1DE61DFD-1DFF20D0-20DC20E120E5-20F02CEF-2CF12DE0-2DFF302A-302F3099309AA66FA67CA67DA6F0A6F1A802A806A80BA825A826A8C4A8E0-A8F1A926-A92DA947-A951A980-A982A9B3A9B6-A9B9A9BCAA29-AA2EAA31AA32AA35AA36AA43AA4CAAB0AAB2-AAB4AAB7AAB8AABEAABFAAC1ABE5ABE8ABEDFB1EFE00-FE0FFE20-FE26",
|
|
|
+Mc:"0903093E-09400949-094C094E0982098309BE-09C009C709C809CB09CC09D70A030A3E-0A400A830ABE-0AC00AC90ACB0ACC0B020B030B3E0B400B470B480B4B0B4C0B570BBE0BBF0BC10BC20BC6-0BC80BCA-0BCC0BD70C01-0C030C41-0C440C820C830CBE0CC0-0CC40CC70CC80CCA0CCB0CD50CD60D020D030D3E-0D400D46-0D480D4A-0D4C0D570D820D830DCF-0DD10DD8-0DDF0DF20DF30F3E0F3F0F7F102B102C10311038103B103C105610571062-10641067-106D108310841087-108C108F109A-109C17B617BE-17C517C717C81923-19261929-192B193019311933-193819B0-19C019C819C91A19-1A1B1A551A571A611A631A641A6D-1A721B041B351B3B1B3D-1B411B431B441B821BA11BA61BA71BAA1C24-1C2B1C341C351CE11CF2A823A824A827A880A881A8B4-A8C3A952A953A983A9B4A9B5A9BAA9BBA9BD-A9C0AA2FAA30AA33AA34AA4DAA7BABE3ABE4ABE6ABE7ABE9ABEAABEC",Me:"0488048906DE20DD-20E020E2-20E4A670-A672",N:"0030-003900B200B300B900BC-00BE0660-066906F0-06F907C0-07C90966-096F09E6-09EF09F4-09F90A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BF20C66-0C6F0C78-0C7E0CE6-0CEF0D66-0D750E50-0E590ED0-0ED90F20-0F331040-10491090-10991369-137C16EE-16F017E0-17E917F0-17F91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C5920702074-20792080-20892150-21822185-21892460-249B24EA-24FF2776-27932CFD30073021-30293038-303A3192-31953220-32293251-325F3280-328932B1-32BFA620-A629A6E6-A6EFA830-A835A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nd:"0030-00390660-066906F0-06F907C0-07C90966-096F09E6-09EF0A66-0A6F0AE6-0AEF0B66-0B6F0BE6-0BEF0C66-0C6F0CE6-0CEF0D66-0D6F0E50-0E590ED0-0ED90F20-0F291040-10491090-109917E0-17E91810-18191946-194F19D0-19DA1A80-1A891A90-1A991B50-1B591BB0-1BB91C40-1C491C50-1C59A620-A629A8D0-A8D9A900-A909A9D0-A9D9AA50-AA59ABF0-ABF9FF10-FF19",Nl:"16EE-16F02160-21822185-218830073021-30293038-303AA6E6-A6EF",No:"00B200B300B900BC-00BE09F4-09F90BF0-0BF20C78-0C7E0D70-0D750F2A-0F331369-137C17F0-17F920702074-20792080-20892150-215F21892460-249B24EA-24FF2776-27932CFD3192-31953220-32293251-325F3280-328932B1-32BFA830-A835",P:"0021-00230025-002A002C-002F003A003B003F0040005B-005D005F007B007D00A100AB00B700BB00BF037E0387055A-055F0589058A05BE05C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F3A-0F3D0F850FD0-0FD4104A-104F10FB1361-13681400166D166E169B169C16EB-16ED1735173617D4-17D617D8-17DA1800-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD32010-20272030-20432045-20512053-205E207D207E208D208E2329232A2768-277527C527C627E6-27EF2983-299829D8-29DB29FC29FD2CF9-2CFC2CFE2CFF2E00-2E2E2E302E313001-30033008-30113014-301F3030303D30A030FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFD3EFD3FFE10-FE19FE30-FE52FE54-FE61FE63FE68FE6AFE6BFF01-FF03FF05-FF0AFF0C-FF0FFF1AFF1BFF1FFF20FF3B-FF3DFF3FFF5BFF5DFF5F-FF65",Pd:"002D058A05BE140018062010-20152E172E1A301C303030A0FE31FE32FE58FE63FF0D",Ps:"0028005B007B0F3A0F3C169B201A201E2045207D208D23292768276A276C276E27702772277427C527E627E827EA27EC27EE2983298529872989298B298D298F299129932995299729D829DA29FC2E222E242E262E283008300A300C300E3010301430163018301A301DFD3EFE17FE35FE37FE39FE3BFE3DFE3FFE41FE43FE47FE59FE5BFE5DFF08FF3BFF5BFF5FFF62",Pe:"0029005D007D0F3B0F3D169C2046207E208E232A2769276B276D276F27712773277527C627E727E927EB27ED27EF298429862988298A298C298E2990299229942996299829D929DB29FD2E232E252E272E293009300B300D300F3011301530173019301B301E301FFD3FFE18FE36FE38FE3AFE3CFE3EFE40FE42FE44FE48FE5AFE5CFE5EFF09FF3DFF5DFF60FF63",Pi:"00AB2018201B201C201F20392E022E042E092E0C2E1C2E20",Pf:"00BB2019201D203A2E032E052E0A2E0D2E1D2E21",Pc:"005F203F20402054FE33FE34FE4D-FE4FFF3F",Po:"0021-00230025-0027002A002C002E002F003A003B003F0040005C00A100B700BF037E0387055A-055F058905C005C305C605F305F40609060A060C060D061B061E061F066A-066D06D40700-070D07F7-07F90830-083E0964096509700DF40E4F0E5A0E5B0F04-0F120F850FD0-0FD4104A-104F10FB1361-1368166D166E16EB-16ED1735173617D4-17D617D8-17DA1800-18051807-180A1944194519DE19DF1A1E1A1F1AA0-1AA61AA8-1AAD1B5A-1B601C3B-1C3F1C7E1C7F1CD3201620172020-20272030-2038203B-203E2041-20432047-205120532055-205E2CF9-2CFC2CFE2CFF2E002E012E06-2E082E0B2E0E-2E162E182E192E1B2E1E2E1F2E2A-2E2E2E302E313001-3003303D30FBA4FEA4FFA60D-A60FA673A67EA6F2-A6F7A874-A877A8CEA8CFA8F8-A8FAA92EA92FA95FA9C1-A9CDA9DEA9DFAA5C-AA5FAADEAADFABEBFE10-FE16FE19FE30FE45FE46FE49-FE4CFE50-FE52FE54-FE57FE5F-FE61FE68FE6AFE6BFF01-FF03FF05-FF07FF0AFF0CFF0EFF0FFF1AFF1BFF1FFF20FF3CFF61FF64FF65",S:"0024002B003C-003E005E0060007C007E00A2-00A900AC00AE-00B100B400B600B800D700F702C2-02C502D2-02DF02E5-02EB02ED02EF-02FF03750384038503F604820606-0608060B060E060F06E906FD06FE07F609F209F309FA09FB0AF10B700BF3-0BFA0C7F0CF10CF20D790E3F0F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-139917DB194019E0-19FF1B61-1B6A1B74-1B7C1FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE20442052207A-207C208A-208C20A0-20B8210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B2140-2144214A-214D214F2190-2328232B-23E82400-24262440-244A249C-24E92500-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE27C0-27C427C7-27CA27CC27D0-27E527F0-29822999-29D729DC-29FB29FE-2B4C2B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F309B309C319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A700-A716A720A721A789A78AA828-A82BA836-A839AA77-AA79FB29FDFCFDFDFE62FE64-FE66FE69FF04FF0BFF1C-FF1EFF3EFF40FF5CFF5EFFE0-FFE6FFE8-FFEEFFFCFFFD",Sm:"002B003C-003E007C007E00AC00B100D700F703F60606-060820442052207A-207C208A-208C2140-2144214B2190-2194219A219B21A021A321A621AE21CE21CF21D221D421F4-22FF2308-230B23202321237C239B-23B323DC-23E125B725C125F8-25FF266F27C0-27C427C7-27CA27CC27D0-27E527F0-27FF2900-29822999-29D729DC-29FB29FE-2AFF2B30-2B442B47-2B4CFB29FE62FE64-FE66FF0BFF1C-FF1EFF5CFF5EFFE2FFE9-FFEC",Sc:"002400A2-00A5060B09F209F309FB0AF10BF90E3F17DB20A0-20B8A838FDFCFE69FF04FFE0FFE1FFE5FFE6",Sk:"005E006000A800AF00B400B802C2-02C502D2-02DF02E5-02EB02ED02EF-02FF0375038403851FBD1FBF-1FC11FCD-1FCF1FDD-1FDF1FED-1FEF1FFD1FFE309B309CA700-A716A720A721A789A78AFF3EFF40FFE3",So:"00A600A700A900AE00B000B60482060E060F06E906FD06FE07F609FA0B700BF3-0BF80BFA0C7F0CF10CF20D790F01-0F030F13-0F170F1A-0F1F0F340F360F380FBE-0FC50FC7-0FCC0FCE0FCF0FD5-0FD8109E109F13601390-1399194019E0-19FF1B61-1B6A1B74-1B7C210021012103-21062108210921142116-2118211E-2123212521272129212E213A213B214A214C214D214F2195-2199219C-219F21A121A221A421A521A7-21AD21AF-21CD21D021D121D321D5-21F32300-2307230C-231F2322-2328232B-237B237D-239A23B4-23DB23E2-23E82400-24262440-244A249C-24E92500-25B625B8-25C025C2-25F72600-266E2670-26CD26CF-26E126E326E8-26FF2701-27042706-2709270C-27272729-274B274D274F-27522756-275E2761-276727942798-27AF27B1-27BE2800-28FF2B00-2B2F2B452B462B50-2B592CE5-2CEA2E80-2E992E9B-2EF32F00-2FD52FF0-2FFB300430123013302030363037303E303F319031913196-319F31C0-31E33200-321E322A-32503260-327F328A-32B032C0-32FE3300-33FF4DC0-4DFFA490-A4C6A828-A82BA836A837A839AA77-AA79FDFDFFE4FFE8FFEDFFEEFFFCFFFD",Z:"002000A01680180E2000-200A20282029202F205F3000",Zs:"002000A01680180E2000-200A202F205F3000",Zl:"2028",Zp:"2029",C:"0000-001F007F-009F00AD03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-0605061C061D0620065F06DD070E070F074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17B417B517DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF200B-200F202A-202E2060-206F20722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-F8FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFD-FF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFFBFFFEFFFF",Cc:"0000-001F007F-009F",Cf:"00AD0600-060306DD070F17B417B5200B-200F202A-202E2060-2064206A-206FFEFFFFF9-FFFB",Co:"E000-F8FF",Cs:"D800-DFFF",Cn:"03780379037F-0383038B038D03A20526-05300557055805600588058B-059005C8-05CF05EB-05EF05F5-05FF06040605061C061D0620065F070E074B074C07B2-07BF07FB-07FF082E082F083F-08FF093A093B094F095609570973-097809800984098D098E0991099209A909B109B3-09B509BA09BB09C509C609C909CA09CF-09D609D8-09DB09DE09E409E509FC-0A000A040A0B-0A0E0A110A120A290A310A340A370A3A0A3B0A3D0A43-0A460A490A4A0A4E-0A500A52-0A580A5D0A5F-0A650A76-0A800A840A8E0A920AA90AB10AB40ABA0ABB0AC60ACA0ACE0ACF0AD1-0ADF0AE40AE50AF00AF2-0B000B040B0D0B0E0B110B120B290B310B340B3A0B3B0B450B460B490B4A0B4E-0B550B58-0B5B0B5E0B640B650B72-0B810B840B8B-0B8D0B910B96-0B980B9B0B9D0BA0-0BA20BA5-0BA70BAB-0BAD0BBA-0BBD0BC3-0BC50BC90BCE0BCF0BD1-0BD60BD8-0BE50BFB-0C000C040C0D0C110C290C340C3A-0C3C0C450C490C4E-0C540C570C5A-0C5F0C640C650C70-0C770C800C810C840C8D0C910CA90CB40CBA0CBB0CC50CC90CCE-0CD40CD7-0CDD0CDF0CE40CE50CF00CF3-0D010D040D0D0D110D290D3A-0D3C0D450D490D4E-0D560D58-0D5F0D640D650D76-0D780D800D810D840D97-0D990DB20DBC0DBE0DBF0DC7-0DC90DCB-0DCE0DD50DD70DE0-0DF10DF5-0E000E3B-0E3E0E5C-0E800E830E850E860E890E8B0E8C0E8E-0E930E980EA00EA40EA60EA80EA90EAC0EBA0EBE0EBF0EC50EC70ECE0ECF0EDA0EDB0EDE-0EFF0F480F6D-0F700F8C-0F8F0F980FBD0FCD0FD9-0FFF10C6-10CF10FD-10FF1249124E124F12571259125E125F1289128E128F12B112B612B712BF12C112C612C712D7131113161317135B-135E137D-137F139A-139F13F5-13FF169D-169F16F1-16FF170D1715-171F1737-173F1754-175F176D17711774-177F17DE17DF17EA-17EF17FA-17FF180F181A-181F1878-187F18AB-18AF18F6-18FF191D-191F192C-192F193C-193F1941-1943196E196F1975-197F19AC-19AF19CA-19CF19DB-19DD1A1C1A1D1A5F1A7D1A7E1A8A-1A8F1A9A-1A9F1AAE-1AFF1B4C-1B4F1B7D-1B7F1BAB-1BAD1BBA-1BFF1C38-1C3A1C4A-1C4C1C80-1CCF1CF3-1CFF1DE7-1DFC1F161F171F1E1F1F1F461F471F4E1F4F1F581F5A1F5C1F5E1F7E1F7F1FB51FC51FD41FD51FDC1FF01FF11FF51FFF2065-206920722073208F2095-209F20B9-20CF20F1-20FF218A-218F23E9-23FF2427-243F244B-245F26CE26E226E4-26E727002705270A270B2728274C274E2753-2755275F27602795-279727B027BF27CB27CD-27CF2B4D-2B4F2B5A-2BFF2C2F2C5F2CF2-2CF82D26-2D2F2D66-2D6E2D70-2D7F2D97-2D9F2DA72DAF2DB72DBF2DC72DCF2DD72DDF2E32-2E7F2E9A2EF4-2EFF2FD6-2FEF2FFC-2FFF3040309730983100-3104312E-3130318F31B8-31BF31E4-31EF321F32FF4DB6-4DBF9FCC-9FFFA48D-A48FA4C7-A4CFA62C-A63FA660A661A674-A67BA698-A69FA6F8-A6FFA78D-A7FAA82C-A82FA83A-A83FA878-A87FA8C5-A8CDA8DA-A8DFA8FC-A8FFA954-A95EA97D-A97FA9CEA9DA-A9DDA9E0-A9FFAA37-AA3FAA4EAA4FAA5AAA5BAA7C-AA7FAAC3-AADAAAE0-ABBFABEEABEFABFA-ABFFD7A4-D7AFD7C7-D7CAD7FC-D7FFFA2EFA2FFA6EFA6FFADA-FAFFFB07-FB12FB18-FB1CFB37FB3DFB3FFB42FB45FBB2-FBD2FD40-FD4FFD90FD91FDC8-FDEFFDFEFDFFFE1A-FE1FFE27-FE2FFE53FE67FE6C-FE6FFE75FEFDFEFEFF00FFBF-FFC1FFC8FFC9FFD0FFD1FFD8FFD9FFDD-FFDFFFE7FFEF-FFF8FFFEFFFF"})}),define("ace/token_iterator",["require","exports","module"],function(e,t,i){"use strict";var n=function(e,t,i){this.$session=e,this.$row=t,this.$rowTokens=e.getTokens(t);var n=e.getTokenAt(t,i);this.$tokenIndex=n?n.index:-1};(function(){this.stepBackward=function(){for(this.$tokenIndex-=1;this.$tokenIndex<0;){if(this.$row-=1,this.$row<0)return this.$row=0,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=this.$rowTokens.length-1}return this.$rowTokens[this.$tokenIndex]},this.stepForward=function(){this.$tokenIndex+=1;for(var e;this.$tokenIndex>=this.$rowTokens.length;){if(this.$row+=1,e||(e=this.$session.getLength()),this.$row>=e)return this.$row=e-1,null;this.$rowTokens=this.$session.getTokens(this.$row),this.$tokenIndex=0}return this.$rowTokens[this.$tokenIndex]},this.getCurrentToken=function(){return this.$rowTokens[this.$tokenIndex]},this.getCurrentTokenRow=function(){return this.$row},this.getCurrentTokenColumn=function(){var e=this.$rowTokens,t=this.$tokenIndex,i=e[t].start;if(void 0!==i)return i;for(i=0;t>0;)t-=1,i+=e[t].value.length;return i},this.getCurrentTokenPosition=function(){return{row:this.$row,column:this.getCurrentTokenColumn()}}}).call(n.prototype),t.TokenIterator=n}),define("ace/mode/text",["require","exports","module","ace/tokenizer","ace/mode/text_highlight_rules","ace/mode/behaviour","ace/unicode","ace/lib/lang","ace/token_iterator","ace/range"],function(e,t,i){"use strict";var n=e("../tokenizer").Tokenizer,o=e("./text_highlight_rules").TextHighlightRules,r=e("./behaviour").Behaviour,s=e("../unicode"),a=e("../lib/lang"),l=e("../token_iterator").TokenIterator,c=e("../range").Range,h=function(){this.HighlightRules=o,this.$behaviour=new r};(function(){this.tokenRe=new RegExp("^["+s.packages.L+s.packages.Mn+s.packages.Mc+s.packages.Nd+s.packages.Pc+"\\$_]+","g"),this.nonTokenRe=new RegExp("^(?:[^"+s.packages.L+s.packages.Mn+s.packages.Mc+s.packages.Nd+s.packages.Pc+"\\$_]|\\s])+","g"),this.getTokenizer=function(){return this.$tokenizer||(this.$highlightRules=this.$highlightRules||new this.HighlightRules,this.$tokenizer=new n(this.$highlightRules.getRules())),this.$tokenizer},this.lineCommentStart="",this.blockComment="",this.toggleCommentLines=function(e,t,i,n){function o(e){for(var t=i;n>=t;t++)e(r.getLine(t),t)}var r=t.doc,s=!0,l=!0,c=1/0,h=t.getTabSize(),u=!1;if(this.lineCommentStart){if(Array.isArray(this.lineCommentStart))var d=this.lineCommentStart.map(a.escapeRegExp).join("|"),g=this.lineCommentStart[0];else var d=a.escapeRegExp(this.lineCommentStart),g=this.lineCommentStart;d=new RegExp("^(\\s*)(?:"+d+") ?"),u=t.getUseSoftTabs();var f=function(e,t){var i=e.match(d);if(i){var n=i[1].length,o=i[0].length;v(e,n,o)||" "!=i[0][o-1]||o--,r.removeInLine(t,n,o)}},m=g+" ",p=function(e,t){(!s||/\S/.test(e))&&(v(e,c,c)?r.insertInLine({row:t,column:c},m):r.insertInLine({row:t,column:c},g))},A=function(e,t){return d.test(e)},v=function(e,t,i){for(var n=0;t--&&" "==e.charAt(t);)n++;if(n%h!=0)return!1;for(var n=0;" "==e.charAt(i++);)n++;return h>2?n%h!=h-1:n%h==0}}else{if(!this.blockComment)return!1;var g=this.blockComment.start,C=this.blockComment.end,d=new RegExp("^(\\s*)(?:"+a.escapeRegExp(g)+")"),w=new RegExp("(?:"+a.escapeRegExp(C)+")\\s*$"),p=function(e,t){A(e,t)||(!s||/\S/.test(e))&&(r.insertInLine({row:t,column:e.length},C),r.insertInLine({row:t,column:c},g))},f=function(e,t){var i;(i=e.match(w))&&r.removeInLine(t,e.length-i[0].length,e.length),(i=e.match(d))&&r.removeInLine(t,i[1].length,i[0].length)},A=function(e,i){if(d.test(e))return!0;for(var n=t.getTokens(i),o=0;o<n.length;o++)if("comment"===n[o].type)return!0}}var F=1/0;o(function(e,t){var i=e.search(/\S/);-1!==i?(c>i&&(c=i),l&&!A(e,t)&&(l=!1)):F>e.length&&(F=e.length)}),c==1/0&&(c=F,s=!1,l=!1),u&&c%h!=0&&(c=Math.floor(c/h)*h),o(l?f:p)},this.toggleBlockComment=function(e,t,i,n){var o=this.blockComment;if(o){!o.start&&o[0]&&(o=o[0]);var r,s,a=new l(t,n.row,n.column),h=a.getCurrentToken(),u=(t.selection,t.selection.toOrientedRange());if(h&&/comment/.test(h.type)){for(var d,g;h&&/comment/.test(h.type);){var f=h.value.indexOf(o.start);if(-1!=f){var m=a.getCurrentTokenRow(),p=a.getCurrentTokenColumn()+f;d=new c(m,p,m,p+o.start.length);break}h=a.stepBackward()}for(var a=new l(t,n.row,n.column),h=a.getCurrentToken();h&&/comment/.test(h.type);){var f=h.value.indexOf(o.end);if(-1!=f){var m=a.getCurrentTokenRow(),p=a.getCurrentTokenColumn()+f;g=new c(m,p,m,p+o.end.length);break}h=a.stepForward()}g&&t.remove(g),d&&(t.remove(d),r=d.start.row,s=-o.start.length)}else s=o.start.length,r=i.start.row,t.insert(i.end,o.end),t.insert(i.start,o.start);u.start.row==r&&(u.start.column+=s),u.end.row==r&&(u.end.column+=s),t.selection.fromOrientedRange(u)}},this.getNextLineIndent=function(e,t,i){return this.$getIndent(t)},this.checkOutdent=function(e,t,i){return!1},this.autoOutdent=function(e,t,i){},this.$getIndent=function(e){return e.match(/^\s*/)[0]},this.createWorker=function(e){return null},this.createModeDelegates=function(e){this.$embeds=[],this.$modes={};for(var t in e)e[t]&&(this.$embeds.push(t),this.$modes[t]=new e[t]);for(var i=["toggleBlockComment","toggleCommentLines","getNextLineIndent","checkOutdent","autoOutdent","transformAction","getCompletions"],t=0;t<i.length;t++)!function(e){var n=i[t],o=e[n];e[i[t]]=function(){return this.$delegator(n,arguments,o)}}(this)},this.$delegator=function(e,t,i){var n=t[0];"string"!=typeof n&&(n=n[0]);for(var o=0;o<this.$embeds.length;o++)if(this.$modes[this.$embeds[o]]){var r=n.split(this.$embeds[o]);if(!r[0]&&r[1]){t[0]=r[1];var s=this.$modes[this.$embeds[o]];return s[e].apply(s,t)}}var a=i.apply(this,t);return i?a:void 0},this.transformAction=function(e,t,i,n,o){if(this.$behaviour){var r=this.$behaviour.getBehaviours();for(var s in r)if(r[s][t]){var a=r[s][t].apply(this,arguments);if(a)return a}}},this.getKeywords=function(e){if(!this.completionKeywords){var t=this.$tokenizer.rules,i=[];for(var n in t)for(var o=t[n],r=0,s=o.length;s>r;r++)if("string"==typeof o[r].token)/keyword|support|storage/.test(o[r].token)&&i.push(o[r].regex);else if("object"==typeof o[r].token)for(var a=0,l=o[r].token.length;l>a;a++)if(/keyword|support|storage/.test(o[r].token[a])){var n=o[r].regex.match(/\(.+?\)/g)[a];i.push(n.substr(1,n.length-2))}this.completionKeywords=i}return e?i.concat(this.$keywordList||[]):this.$keywordList},this.$createKeywordList=function(){return this.$highlightRules||this.getTokenizer(),this.$keywordList=this.$highlightRules.$keywordList||[]},this.getCompletions=function(e,t,i,n){var o=this.$keywordList||this.$createKeywordList();return o.map(function(e){return{name:e,value:e,score:0,meta:"keyword"}})},this.$id="ace/mode/text"}).call(h.prototype),t.Mode=h}),define("ace/apply_delta",["require","exports","module"],function(e,t,i){"use strict";t.applyDelta=function(e,t,i){var n=t.start.row,o=t.start.column,r=e[n]||"";switch(t.action){case"insert":var s=t.lines;if(1===s.length)e[n]=r.substring(0,o)+t.lines[0]+r.substring(o);else{var a=[n,1].concat(t.lines);e.splice.apply(e,a),e[n]=r.substring(0,o)+e[n],e[n+t.lines.length-1]+=r.substring(o)}break;case"remove":var l=t.end.column,c=t.end.row;n===c?e[n]=r.substring(0,o)+r.substring(l):e.splice(n,c-n+1,r.substring(0,o)+e[c].substring(l))}}}),define("ace/anchor",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,i){"use strict";var n=e("./lib/oop"),o=e("./lib/event_emitter").EventEmitter,r=t.Anchor=function(e,t,i){this.$onChange=this.onChange.bind(this),this.attach(e),"undefined"==typeof i?this.setPosition(t.row,t.column):this.setPosition(t,i)};(function(){function e(e,t,i){var n=i?e.column<=t.column:e.column<t.column;return e.row<t.row||e.row==t.row&&n}function t(t,i,n){var o="insert"==t.action,r=(o?1:-1)*(t.end.row-t.start.row),s=(o?1:-1)*(t.end.column-t.start.column),a=t.start,l=o?a:t.end;return e(i,a,n)?{row:i.row,column:i.column}:e(l,i,!n)?{row:i.row+r,column:i.column+(i.row==l.row?s:0)}:{row:a.row,column:a.column}}n.implement(this,o),this.getPosition=function(){return this.$clipPositionToDocument(this.row,this.column)},this.getDocument=function(){return this.document},this.$insertRight=!1,this.onChange=function(e){if(!(e.start.row==e.end.row&&e.start.row!=this.row||e.start.row>this.row)){var i=t(e,{row:this.row,column:this.column},this.$insertRight);this.setPosition(i.row,i.column,!0)}},this.setPosition=function(e,t,i){var n;if(n=i?{row:e,column:t}:this.$clipPositionToDocument(e,t),this.row!=n.row||this.column!=n.column){var o={row:this.row,column:this.column};this.row=n.row,this.column=n.column,this._signal("change",{old:o,value:n})}},this.detach=function(){this.document.removeEventListener("change",this.$onChange)},this.attach=function(e){this.document=e||this.document,this.document.on("change",this.$onChange)},this.$clipPositionToDocument=function(e,t){var i={};return e>=this.document.getLength()?(i.row=Math.max(0,this.document.getLength()-1),i.column=this.document.getLine(i.row).length):0>e?(i.row=0,i.column=0):(i.row=e,i.column=Math.min(this.document.getLine(i.row).length,Math.max(0,t))),0>t&&(i.column=0),i}}).call(r.prototype)}),define("ace/document",["require","exports","module","ace/lib/oop","ace/apply_delta","ace/lib/event_emitter","ace/range","ace/anchor"],function(e,t,i){"use strict";var n=e("./lib/oop"),o=e("./apply_delta").applyDelta,r=e("./lib/event_emitter").EventEmitter,s=e("./range").Range,a=e("./anchor").Anchor,l=function(e){this.$lines=[""],0===e.length?this.$lines=[""]:Array.isArray(e)?this.insertMergedLines({row:0,column:0},e):this.insert({row:0,column:0},e)};(function(){n.implement(this,r),this.setValue=function(e){var t=this.getLength()-1;this.remove(new s(0,0,t,this.getLine(t).length)),this.insert({row:0,column:0},e)},this.getValue=function(){return this.getAllLines().join(this.getNewLineCharacter())},this.createAnchor=function(e,t){return new a(this,e,t)},this.$split=0==="aaa".split(/a/).length?function(e){return e.replace(/\r\n|\r/g,"\n").split("\n")}:function(e){return e.split(/\r\n|\r|\n/)},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r\n|\r|\n)/m);this.$autoNewLine=t?t[1]:"\n",this._signal("changeNewLineMode")},this.getNewLineCharacter=function(){switch(this.$newLineMode){case"windows":return"\r\n";case"unix":return"\n";default:return this.$autoNewLine||"\n"}},this.$autoNewLine="",this.$newLineMode="auto",this.setNewLineMode=function(e){this.$newLineMode!==e&&(this.$newLineMode=e,this._signal("changeNewLineMode"))},this.getNewLineMode=function(){return this.$newLineMode},this.isNewLine=function(e){return"\r\n"==e||"\r"==e||"\n"==e},this.getLine=function(e){return this.$lines[e]||""},this.getLines=function(e,t){return this.$lines.slice(e,t+1)},this.getAllLines=function(){return this.getLines(0,this.getLength())},this.getLength=function(){return this.$lines.length},this.getTextRange=function(e){return this.getLinesForRange(e).join(this.getNewLineCharacter())},this.getLinesForRange=function(e){var t;if(e.start.row===e.end.row)t=[this.getLine(e.start.row).substring(e.start.column,e.end.column)];else{t=this.getLines(e.start.row,e.end.row),t[0]=(t[0]||"").substring(e.start.column);var i=t.length-1;e.end.row-e.start.row==i&&(t[i]=t[i].substring(0,e.end.column))}return t},this.insertLines=function(e,t){return console.warn("Use of document.insertLines is deprecated. Use the insertFullLines method instead."),this.insertFullLines(e,t)},this.removeLines=function(e,t){return console.warn("Use of document.removeLines is deprecated. Use the removeFullLines method instead."),this.removeFullLines(e,t)},this.insertNewLine=function(e){return console.warn("Use of document.insertNewLine is deprecated. Use insertMergedLines(position, ['', '']) instead."),this.insertMergedLines(e,["",""])},this.insert=function(e,t){return this.getLength()<=1&&this.$detectNewLine(t),this.insertMergedLines(e,this.$split(t))},this.insertInLine=function(e,t){var i=this.clippedPos(e.row,e.column),n=this.pos(e.row,e.column+t.length);return this.applyDelta({start:i,end:n,action:"insert",lines:[t]},!0),this.clonePos(n)},this.clippedPos=function(e,t){var i=this.getLength();void 0===e?e=i:0>e?e=0:e>=i&&(e=i-1,t=void 0);var n=this.getLine(e);return void 0==t&&(t=n.length),t=Math.min(Math.max(t,0),n.length),{row:e,column:t}},this.clonePos=function(e){return{row:e.row,column:e.column}},this.pos=function(e,t){return{row:e,column:t}},this.$clipPosition=function(e){var t=this.getLength();return e.row>=t?(e.row=Math.max(0,t-1),e.column=this.getLine(t-1).length):(e.row=Math.max(0,e.row),e.column=Math.min(Math.max(e.column,0),this.getLine(e.row).length)),e},this.insertFullLines=function(e,t){e=Math.min(Math.max(e,0),this.getLength());var i=0;e<this.getLength()?(t=t.concat([""]),i=0):(t=[""].concat(t),e--,i=this.$lines[e].length),this.insertMergedLines({row:e,column:i},t)},this.insertMergedLines=function(e,t){var i=this.clippedPos(e.row,e.column),n={row:i.row+t.length-1,column:(1==t.length?i.column:0)+t[t.length-1].length};return this.applyDelta({start:i,end:n,action:"insert",lines:t}),this.clonePos(n)},this.remove=function(e){var t=this.clippedPos(e.start.row,e.start.column),i=this.clippedPos(e.end.row,e.end.column);return this.applyDelta({start:t,end:i,action:"remove",lines:this.getLinesForRange({start:t,end:i})}),this.clonePos(t)},this.removeInLine=function(e,t,i){var n=this.clippedPos(e,t),o=this.clippedPos(e,i);return this.applyDelta({start:n,end:o,action:"remove",lines:this.getLinesForRange({start:n,end:o})},!0),this.clonePos(n)},this.removeFullLines=function(e,t){e=Math.min(Math.max(0,e),this.getLength()-1),t=Math.min(Math.max(0,t),this.getLength()-1);var i=t==this.getLength()-1&&e>0,n=t<this.getLength()-1,o=i?e-1:e,r=i?this.getLine(o).length:0,a=n?t+1:t,l=n?0:this.getLine(a).length,c=new s(o,r,a,l),h=this.$lines.slice(e,t+1);return this.applyDelta({start:c.start,end:c.end,action:"remove",lines:this.getLinesForRange(c)}),h},this.removeNewLine=function(e){e<this.getLength()-1&&e>=0&&this.applyDelta({start:this.pos(e,this.getLine(e).length),end:this.pos(e+1,0),action:"remove",lines:["",""]})},this.replace=function(e,t){if(!e instanceof s&&(e=s.fromPoints(e.start,e.end)),0===t.length&&e.isEmpty())return e.start;if(t==this.getTextRange(e))return e.end;this.remove(e);var i;return i=t?this.insert(e.start,t):e.start},this.applyDeltas=function(e){for(var t=0;t<e.length;t++)this.applyDelta(e[t])},this.revertDeltas=function(e){for(var t=e.length-1;t>=0;t--)this.revertDelta(e[t])},this.applyDelta=function(e,t){var i="insert"==e.action;(i?e.lines.length<=1&&!e.lines[0]:!s.comparePoints(e.start,e.end))||(i&&e.lines.length>2e4&&this.$splitAndapplyLargeDelta(e,2e4),o(this.$lines,e,t),this._signal("change",e))},this.$splitAndapplyLargeDelta=function(e,t){for(var i=e.lines,n=i.length,o=e.start.row,r=e.start.column,s=0,a=0;;){s=a,a+=t-1;var l=i.slice(s,a);if(a>n){e.lines=l,e.start.row=o+s,e.start.column=r;break}l.push(""),this.applyDelta({start:this.pos(o+s,r),end:this.pos(o+a,r=0),action:e.action,lines:l},!0)}},this.revertDelta=function(e){this.applyDelta({start:this.clonePos(e.start),end:this.clonePos(e.end),action:"insert"==e.action?"remove":"insert",lines:e.lines.slice()})},this.indexToPosition=function(e,t){for(var i=this.$lines||this.getAllLines(),n=this.getNewLineCharacter().length,o=t||0,r=i.length;r>o;o++)if(e-=i[o].length+n,0>e)return{row:o,column:e+i[o].length+n};return{row:r-1,column:i[r-1].length}},this.positionToIndex=function(e,t){for(var i=this.$lines||this.getAllLines(),n=this.getNewLineCharacter().length,o=0,r=Math.min(e.row,i.length),s=t||0;r>s;++s)o+=i[s].length+n;return o+e.column}}).call(l.prototype),t.Document=l}),define("ace/background_tokenizer",["require","exports","module","ace/lib/oop","ace/lib/event_emitter"],function(e,t,i){"use strict";var n=e("./lib/oop"),o=e("./lib/event_emitter").EventEmitter,r=function(e,t){this.running=!1,this.lines=[],this.states=[],this.currentLine=0,this.tokenizer=e;var i=this;this.$worker=function(){if(i.running){for(var e=new Date,t=i.currentLine,n=-1,o=i.doc,r=t;i.lines[t];)t++;var s=o.getLength(),a=0;for(i.running=!1;s>t;){i.$tokenizeRow(t),n=t;do t++;while(i.lines[t]);if(a++,a%5===0&&new Date-e>20){i.running=setTimeout(i.$worker,20);break}}i.currentLine=t,n>=r&&i.fireUpdateEvent(r,n)}}};(function(){n.implement(this,o),this.setTokenizer=function(e){this.tokenizer=e,this.lines=[],this.states=[],this.start(0)},this.setDocument=function(e){this.doc=e,this.lines=[],this.states=[],this.stop()},this.fireUpdateEvent=function(e,t){var i={first:e,last:t};this._signal("update",{data:i})},this.start=function(e){this.currentLine=Math.min(e||0,this.currentLine,this.doc.getLength()),this.lines.splice(this.currentLine,this.lines.length),this.states.splice(this.currentLine,this.states.length),this.stop(),this.running=setTimeout(this.$worker,700)},this.scheduleStart=function(){this.running||(this.running=setTimeout(this.$worker,700))},this.$updateOnChange=function(e){var t=e.start.row,i=e.end.row-t;if(0===i)this.lines[t]=null;else if("remove"==e.action)this.lines.splice(t,i+1,null),this.states.splice(t,i+1,null);else{var n=Array(i+1);n.unshift(t,1),this.lines.splice.apply(this.lines,n),this.states.splice.apply(this.states,n)}this.currentLine=Math.min(t,this.currentLine,this.doc.getLength()),this.stop()},this.stop=function(){this.running&&clearTimeout(this.running),this.running=!1},this.getTokens=function(e){return this.lines[e]||this.$tokenizeRow(e)},this.getState=function(e){return this.currentLine==e&&this.$tokenizeRow(e),this.states[e]||"start"},this.$tokenizeRow=function(e){var t=this.doc.getLine(e),i=this.states[e-1],n=this.tokenizer.getLineTokens(t,i,e);return this.states[e]+""!=n.state+""?(this.states[e]=n.state,this.lines[e+1]=null,this.currentLine>e+1&&(this.currentLine=e+1)):this.currentLine==e&&(this.currentLine=e+1),this.lines[e]=n.tokens}}).call(r.prototype),t.BackgroundTokenizer=r}),define("ace/search_highlight",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,i){"use strict";var n=e("./lib/lang"),o=(e("./lib/oop"),e("./range").Range),r=function(e,t,i){this.setRegexp(e),this.clazz=t,this.type=i||"text"};(function(){this.MAX_RANGES=500,this.setRegexp=function(e){this.regExp+""!=e+""&&(this.regExp=e,this.cache=[])},this.update=function(e,t,i,r){if(this.regExp)for(var s=r.firstRow,a=r.lastRow,l=s;a>=l;l++){var c=this.cache[l];null==c&&(c=n.getMatchOffsets(i.getLine(l),this.regExp),c.length>this.MAX_RANGES&&(c=c.slice(0,this.MAX_RANGES)),c=c.map(function(e){return new o(l,e.offset,l,e.offset+e.length)}),this.cache[l]=c.length?c:"");for(var h=c.length;h--;)t.drawSingleLineMarker(e,c[h].toScreenRange(i),this.clazz,r)}}}).call(r.prototype),t.SearchHighlight=r}),define("ace/edit_session/fold_line",["require","exports","module","ace/range"],function(e,t,i){"use strict";function n(e,t){this.foldData=e,Array.isArray(t)?this.folds=t:t=this.folds=[t];var i=t[t.length-1];this.range=new o(t[0].start.row,t[0].start.column,i.end.row,i.end.column),this.start=this.range.start,this.end=this.range.end,this.folds.forEach(function(e){e.setFoldLine(this)},this)}var o=e("../range").Range;(function(){this.shiftRow=function(e){this.start.row+=e,this.end.row+=e,this.folds.forEach(function(t){t.start.row+=e,t.end.row+=e})},this.addFold=function(e){if(e.sameRow){if(e.start.row<this.startRow||e.endRow>this.endRow)throw new Error("Can't add a fold to this FoldLine as it has no connection");this.folds.push(e),this.folds.sort(function(e,t){return-e.range.compareEnd(t.start.row,t.start.column);
|
|
|
+
|
|
|
+}),this.range.compareEnd(e.start.row,e.start.column)>0?(this.end.row=e.end.row,this.end.column=e.end.column):this.range.compareStart(e.end.row,e.end.column)<0&&(this.start.row=e.start.row,this.start.column=e.start.column)}else if(e.start.row==this.end.row)this.folds.push(e),this.end.row=e.end.row,this.end.column=e.end.column;else{if(e.end.row!=this.start.row)throw new Error("Trying to add fold to FoldRow that doesn't have a matching row");this.folds.unshift(e),this.start.row=e.start.row,this.start.column=e.start.column}e.foldLine=this},this.containsRow=function(e){return e>=this.start.row&&e<=this.end.row},this.walk=function(e,t,i){var n,o,r,s=0,a=this.folds,l=!0;null==t&&(t=this.end.row,i=this.end.column);for(var c=0;c<a.length;c++){if(n=a[c],o=n.range.compareStart(t,i),-1==o)return void e(null,t,i,s,l);if(r=e(null,n.start.row,n.start.column,s,l),r=!r&&e(n.placeholder,n.start.row,n.start.column,s),r||0===o)return;l=!n.sameRow,s=n.end.column}e(null,t,i,s,l)},this.getNextFoldTo=function(e,t){for(var i,n,o=0;o<this.folds.length;o++){if(i=this.folds[o],n=i.range.compareEnd(e,t),-1==n)return{fold:i,kind:"after"};if(0===n)return{fold:i,kind:"inside"}}return null},this.addRemoveChars=function(e,t,i){var n,o,r=this.getNextFoldTo(e,t);if(r)if(n=r.fold,"inside"==r.kind&&n.start.column!=t&&n.start.row!=e)window.console&&window.console.log(e,t,n);else if(n.start.row==e){o=this.folds;var s=o.indexOf(n);for(0===s&&(this.start.column+=i),s;s<o.length;s++){if(n=o[s],n.start.column+=i,!n.sameRow)return;n.end.column+=i}this.end.column+=i}},this.split=function(e,t){var i=this.getNextFoldTo(e,t);if(!i||"inside"==i.kind)return null;var o=i.fold,r=this.folds,s=this.foldData,a=r.indexOf(o),l=r[a-1];this.end.row=l.end.row,this.end.column=l.end.column,r=r.splice(a,r.length-a);var c=new n(s,r);return s.splice(s.indexOf(this)+1,0,c),c},this.merge=function(e){for(var t=e.folds,i=0;i<t.length;i++)this.addFold(t[i]);var n=this.foldData;n.splice(n.indexOf(e),1)},this.toString=function(){var e=[this.range.toString()+": ["];return this.folds.forEach(function(t){e.push(" "+t.toString())}),e.push("]"),e.join("\n")},this.idxToPosition=function(e){for(var t=0,i=0;i<this.folds.length;i++){var n=this.folds[i];if(e-=n.start.column-t,0>e)return{row:n.start.row,column:n.start.column+e};if(e-=n.placeholder.length,0>e)return n.start;t=n.end.column}return{row:this.end.row,column:this.end.column+e}}}).call(n.prototype),t.FoldLine=n}),define("ace/range_list",["require","exports","module","ace/range"],function(e,t,i){"use strict";var n=e("./range").Range,o=n.comparePoints,r=function(){this.ranges=[]};(function(){this.comparePoints=o,this.pointIndex=function(e,t,i){for(var n=this.ranges,r=i||0;r<n.length;r++){var s=n[r],a=o(e,s.end);if(!(a>0)){var l=o(e,s.start);return 0===a?t&&0!==l?-r-2:r:l>0||0===l&&!t?r:-r-1}}return-r-1},this.add=function(e){var t=!e.isEmpty(),i=this.pointIndex(e.start,t);0>i&&(i=-i-1);var n=this.pointIndex(e.end,t,i);return 0>n?n=-n-1:n++,this.ranges.splice(i,n-i,e)},this.addList=function(e){for(var t=[],i=e.length;i--;)t.push.call(t,this.add(e[i]));return t},this.substractPoint=function(e){var t=this.pointIndex(e);return t>=0?this.ranges.splice(t,1):void 0},this.merge=function(){var e=[],t=this.ranges;t=t.sort(function(e,t){return o(e.start,t.start)});for(var i,n=t[0],r=1;r<t.length;r++){i=n,n=t[r];var s=o(i.end,n.start);0>s||(0!=s||i.isEmpty()||n.isEmpty())&&(o(i.end,n.end)<0&&(i.end.row=n.end.row,i.end.column=n.end.column),t.splice(r,1),e.push(n),n=i,r--)}return this.ranges=t,e},this.contains=function(e,t){return this.pointIndex({row:e,column:t})>=0},this.containsPoint=function(e){return this.pointIndex(e)>=0},this.rangeAtPoint=function(e){var t=this.pointIndex(e);return t>=0?this.ranges[t]:void 0},this.clipRows=function(e,t){var i=this.ranges;if(i[0].start.row>t||i[i.length-1].start.row<e)return[];var n=this.pointIndex({row:e,column:0});0>n&&(n=-n-1);var o=this.pointIndex({row:t,column:0},n);0>o&&(o=-o-1);for(var r=[],s=n;o>s;s++)r.push(i[s]);return r},this.removeAll=function(){return this.ranges.splice(0,this.ranges.length)},this.attach=function(e){this.session&&this.detach(),this.session=e,this.onChange=this.$onChange.bind(this),this.session.on("change",this.onChange)},this.detach=function(){this.session&&(this.session.removeListener("change",this.onChange),this.session=null)},this.$onChange=function(e){if("insert"==e.action)var t=e.start,i=e.end;else var i=e.start,t=e.end;for(var n=t.row,o=i.row,r=o-n,s=-t.column+i.column,a=this.ranges,l=0,c=a.length;c>l;l++){var h=a[l];if(!(h.end.row<n)){if(h.start.row>n)break;if(h.start.row==n&&h.start.column>=t.column&&(h.start.column==t.column&&this.$insertRight||(h.start.column+=s,h.start.row+=r)),h.end.row==n&&h.end.column>=t.column){if(h.end.column==t.column&&this.$insertRight)continue;h.end.column==t.column&&s>0&&c-1>l&&h.end.column>h.start.column&&h.end.column==a[l+1].start.column&&(h.end.column-=s),h.end.column+=s,h.end.row+=r}}}if(0!=r&&c>l)for(;c>l;l++){var h=a[l];h.start.row+=r,h.end.row+=r}}}).call(r.prototype),t.RangeList=r}),define("ace/edit_session/fold",["require","exports","module","ace/range","ace/range_list","ace/lib/oop"],function(e,t,i){"use strict";function n(e,t){e.row-=t.row,0==e.row&&(e.column-=t.column)}function o(e,t){n(e.start,t),n(e.end,t)}function r(e,t){0==e.row&&(e.column+=t.column),e.row+=t.row}function s(e,t){r(e.start,t),r(e.end,t)}var a=(e("../range").Range,e("../range_list").RangeList),l=e("../lib/oop"),c=t.Fold=function(e,t){this.foldLine=null,this.placeholder=t,this.range=e,this.start=e.start,this.end=e.end,this.sameRow=e.start.row==e.end.row,this.subFolds=this.ranges=[]};l.inherits(c,a),function(){this.toString=function(){return'"'+this.placeholder+'" '+this.range.toString()},this.setFoldLine=function(e){this.foldLine=e,this.subFolds.forEach(function(t){t.setFoldLine(e)})},this.clone=function(){var e=this.range.clone(),t=new c(e,this.placeholder);return this.subFolds.forEach(function(e){t.subFolds.push(e.clone())}),t.collapseChildren=this.collapseChildren,t},this.addSubFold=function(e){if(!this.range.isEqual(e)){if(!this.range.containsRange(e))throw new Error("A fold can't intersect already existing fold"+e.range+this.range);o(e,this.start);for(var t=e.start.row,i=e.start.column,n=0,r=-1;n<this.subFolds.length&&(r=this.subFolds[n].range.compare(t,i),1==r);n++);var s=this.subFolds[n];if(0==r)return s.addSubFold(e);for(var t=e.range.end.row,i=e.range.end.column,a=n,r=-1;a<this.subFolds.length&&(r=this.subFolds[a].range.compare(t,i),1==r);a++);{this.subFolds[a]}if(0==r)throw new Error("A fold can't intersect already existing fold"+e.range+this.range);{this.subFolds.splice(n,a-n,e)}return e.setFoldLine(this.foldLine),e}},this.restoreRange=function(e){return s(e,this.start)}}.call(c.prototype)}),define("ace/edit_session/folding",["require","exports","module","ace/range","ace/edit_session/fold_line","ace/edit_session/fold","ace/token_iterator"],function(e,t,i){"use strict";function n(){this.getFoldAt=function(e,t,i){var n=this.getFoldLine(e);if(!n)return null;for(var o=n.folds,r=0;r<o.length;r++){var s=o[r];if(s.range.contains(e,t)){if(1==i&&s.range.isEnd(e,t))continue;if(-1==i&&s.range.isStart(e,t))continue;return s}}},this.getFoldsInRange=function(e){var t=e.start,i=e.end,n=this.$foldData,o=[];t.column+=1,i.column-=1;for(var r=0;r<n.length;r++){var s=n[r].range.compareRange(e);if(2!=s){if(-2==s)break;for(var a=n[r].folds,l=0;l<a.length;l++){var c=a[l];if(s=c.range.compareRange(e),-2==s)break;if(2!=s){if(42==s)break;o.push(c)}}}}return t.column-=1,i.column+=1,o},this.getFoldsInRangeList=function(e){if(Array.isArray(e)){var t=[];e.forEach(function(e){t=t.concat(this.getFoldsInRange(e))},this)}else var t=this.getFoldsInRange(e);return t},this.getAllFolds=function(){for(var e=[],t=this.$foldData,i=0;i<t.length;i++)for(var n=0;n<t[i].folds.length;n++)e.push(t[i].folds[n]);return e},this.getFoldStringAt=function(e,t,i,n){if(n=n||this.getFoldLine(e),!n)return null;for(var o,r,s={end:{column:0}},a=0;a<n.folds.length;a++){r=n.folds[a];var l=r.range.compareEnd(e,t);if(-1==l){o=this.getLine(r.start.row).substring(s.end.column,r.start.column);break}if(0===l)return null;s=r}return o||(o=this.getLine(r.start.row).substring(s.end.column)),-1==i?o.substring(0,t-s.end.column):1==i?o.substring(t-s.end.column):o},this.getFoldLine=function(e,t){var i=this.$foldData,n=0;for(t&&(n=i.indexOf(t)),-1==n&&(n=0),n;n<i.length;n++){var o=i[n];if(o.start.row<=e&&o.end.row>=e)return o;if(o.end.row>e)return null}return null},this.getNextFoldLine=function(e,t){var i=this.$foldData,n=0;for(t&&(n=i.indexOf(t)),-1==n&&(n=0),n;n<i.length;n++){var o=i[n];if(o.end.row>=e)return o}return null},this.getFoldedRowCount=function(e,t){for(var i=this.$foldData,n=t-e+1,o=0;o<i.length;o++){var r=i[o],s=r.end.row,a=r.start.row;if(s>=t){t>a&&(a>=e?n-=t-a:n=0);break}s>=e&&(n-=a>=e?s-a:s-e+1)}return n},this.$addFoldLine=function(e){return this.$foldData.push(e),this.$foldData.sort(function(e,t){return e.start.row-t.start.row}),e},this.addFold=function(e,t){var i,n=this.$foldData,o=!1;e instanceof s?i=e:(i=new s(t,e),i.collapseChildren=t.collapseChildren),this.$clipRangeToDocument(i.range);var a=i.start.row,l=i.start.column,c=i.end.row,h=i.end.column;if(!(c>a||a==c&&h-2>=l))throw new Error("The range has to be at least 2 characters width");var u=this.getFoldAt(a,l,1),d=this.getFoldAt(c,h,-1);if(u&&d==u)return u.addSubFold(i);u&&!u.range.isStart(a,l)&&this.removeFold(u),d&&!d.range.isEnd(c,h)&&this.removeFold(d);var g=this.getFoldsInRange(i.range);g.length>0&&(this.removeFolds(g),g.forEach(function(e){i.addSubFold(e)}));for(var f=0;f<n.length;f++){var m=n[f];if(c==m.start.row){m.addFold(i),o=!0;break}if(a==m.end.row){if(m.addFold(i),o=!0,!i.sameRow){var p=n[f+1];if(p&&p.start.row==c){m.merge(p);break}}break}if(c<=m.start.row)break}return o||(m=this.$addFoldLine(new r(this.$foldData,i))),this.$useWrapMode?this.$updateWrapData(m.start.row,m.start.row):this.$updateRowLengthCache(m.start.row,m.start.row),this.$modified=!0,this._emit("changeFold",{data:i,action:"add"}),i},this.addFolds=function(e){e.forEach(function(e){this.addFold(e)},this)},this.removeFold=function(e){var t=e.foldLine,i=t.start.row,n=t.end.row,o=this.$foldData,r=t.folds;if(1==r.length)o.splice(o.indexOf(t),1);else if(t.range.isEnd(e.end.row,e.end.column))r.pop(),t.end.row=r[r.length-1].end.row,t.end.column=r[r.length-1].end.column;else if(t.range.isStart(e.start.row,e.start.column))r.shift(),t.start.row=r[0].start.row,t.start.column=r[0].start.column;else if(e.sameRow)r.splice(r.indexOf(e),1);else{var s=t.split(e.start.row,e.start.column);r=s.folds,r.shift(),s.start.row=r[0].start.row,s.start.column=r[0].start.column}this.$updating||(this.$useWrapMode?this.$updateWrapData(i,n):this.$updateRowLengthCache(i,n)),this.$modified=!0,this._emit("changeFold",{data:e,action:"remove"})},this.removeFolds=function(e){for(var t=[],i=0;i<e.length;i++)t.push(e[i]);t.forEach(function(e){this.removeFold(e)},this),this.$modified=!0},this.expandFold=function(e){this.removeFold(e),e.subFolds.forEach(function(t){e.restoreRange(t),this.addFold(t)},this),e.collapseChildren>0&&this.foldAll(e.start.row+1,e.end.row,e.collapseChildren-1),e.subFolds=[]},this.expandFolds=function(e){e.forEach(function(e){this.expandFold(e)},this)},this.unfold=function(e,t){var i,n;if(null==e?(i=new o(0,0,this.getLength(),0),t=!0):i="number"==typeof e?new o(e,0,e,this.getLine(e).length):"row"in e?o.fromPoints(e,e):e,n=this.getFoldsInRangeList(i),t)this.removeFolds(n);else for(var r=n;r.length;)this.expandFolds(r),r=this.getFoldsInRangeList(i);return n.length?n:void 0},this.isRowFolded=function(e,t){return!!this.getFoldLine(e,t)},this.getRowFoldEnd=function(e,t){var i=this.getFoldLine(e,t);return i?i.end.row:e},this.getRowFoldStart=function(e,t){var i=this.getFoldLine(e,t);return i?i.start.row:e},this.getFoldDisplayLine=function(e,t,i,n,o){null==n&&(n=e.start.row),null==o&&(o=0),null==t&&(t=e.end.row),null==i&&(i=this.getLine(t).length);var r=this.doc,s="";return e.walk(function(e,t,i,a){if(!(n>t)){if(t==n){if(o>i)return;a=Math.max(o,a)}s+=null!=e?e:r.getLine(t).substring(a,i)}},t,i),s},this.getDisplayLine=function(e,t,i,n){var o=this.getFoldLine(e);if(o)return this.getFoldDisplayLine(o,e,t,i,n);var r;return r=this.doc.getLine(e),r.substring(n||0,t||r.length)},this.$cloneFoldData=function(){var e=[];return e=this.$foldData.map(function(t){var i=t.folds.map(function(e){return e.clone()});return new r(e,i)})},this.toggleFold=function(e){var t,i,n=this.selection,o=n.getRange();if(o.isEmpty()){var r=o.start;if(t=this.getFoldAt(r.row,r.column))return void this.expandFold(t);(i=this.findMatchingBracket(r))?1==o.comparePoint(i)?o.end=i:(o.start=i,o.start.column++,o.end.column--):(i=this.findMatchingBracket({row:r.row,column:r.column+1}))?(1==o.comparePoint(i)?o.end=i:o.start=i,o.start.column++):o=this.getCommentFoldRange(r.row,r.column)||o}else{var s=this.getFoldsInRange(o);if(e&&s.length)return void this.expandFolds(s);1==s.length&&(t=s[0])}if(t||(t=this.getFoldAt(o.start.row,o.start.column)),t&&t.range.toString()==o.toString())return void this.expandFold(t);var a="...";if(!o.isMultiLine()){if(a=this.getTextRange(o),a.length<4)return;a=a.trim().substring(0,2)+".."}this.addFold(a,o)},this.getCommentFoldRange=function(e,t,i){var n=new a(this,e,t),r=n.getCurrentToken();if(r&&/^comment|string/.test(r.type)){var s=new o,l=new RegExp(r.type.replace(/\..*/,"\\."));if(1!=i){do r=n.stepBackward();while(r&&l.test(r.type));n.stepForward()}if(s.start.row=n.getCurrentTokenRow(),s.start.column=n.getCurrentTokenColumn()+2,n=new a(this,e,t),-1!=i){do r=n.stepForward();while(r&&l.test(r.type));r=n.stepBackward()}else r=n.getCurrentToken();return s.end.row=n.getCurrentTokenRow(),s.end.column=n.getCurrentTokenColumn()+r.value.length-2,s}},this.foldAll=function(e,t,i){void 0==i&&(i=1e5);var n=this.foldWidgets;if(n){t=t||this.getLength(),e=e||0;for(var o=e;t>o;o++)if(null==n[o]&&(n[o]=this.getFoldWidget(o)),"start"==n[o]){var r=this.getFoldWidgetRange(o);if(r&&r.isMultiLine()&&r.end.row<=t&&r.start.row>=e){o=r.end.row;try{var s=this.addFold("...",r);s&&(s.collapseChildren=i)}catch(a){}}}}},this.$foldStyles={manual:1,markbegin:1,markbeginend:1},this.$foldStyle="markbegin",this.setFoldStyle=function(e){if(!this.$foldStyles[e])throw new Error("invalid fold style: "+e+"["+Object.keys(this.$foldStyles).join(", ")+"]");if(this.$foldStyle!=e){this.$foldStyle=e,"manual"==e&&this.unfold();var t=this.$foldMode;this.$setFolding(null),this.$setFolding(t)}},this.$setFolding=function(e){if(this.$foldMode!=e){if(this.$foldMode=e,this.off("change",this.$updateFoldWidgets),this.off("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets),this._emit("changeAnnotation"),!e||"manual"==this.$foldStyle)return void(this.foldWidgets=null);this.foldWidgets=[],this.getFoldWidget=e.getFoldWidget.bind(e,this,this.$foldStyle),this.getFoldWidgetRange=e.getFoldWidgetRange.bind(e,this,this.$foldStyle),this.$updateFoldWidgets=this.updateFoldWidgets.bind(this),this.$tokenizerUpdateFoldWidgets=this.tokenizerUpdateFoldWidgets.bind(this),this.on("change",this.$updateFoldWidgets),this.on("tokenizerUpdate",this.$tokenizerUpdateFoldWidgets)}},this.getParentFoldRangeData=function(e,t){var i=this.foldWidgets;if(!i||t&&i[e])return{};for(var n,o=e-1;o>=0;){var r=i[o];if(null==r&&(r=i[o]=this.getFoldWidget(o)),"start"==r){var s=this.getFoldWidgetRange(o);if(n||(n=s),s&&s.end.row>=e)break}o--}return{range:-1!==o&&s,firstRange:n}},this.onFoldWidgetClick=function(e,t){t=t.domEvent;var i={children:t.shiftKey,all:t.ctrlKey||t.metaKey,siblings:t.altKey},n=this.$toggleFoldWidget(e,i);if(!n){var o=t.target||t.srcElement;o&&/ace_fold-widget/.test(o.className)&&(o.className+=" ace_invalid")}},this.$toggleFoldWidget=function(e,t){if(this.getFoldWidget){var i=this.getFoldWidget(e),n=this.getLine(e),o="end"===i?-1:1,r=this.getFoldAt(e,-1===o?0:n.length,o);if(r)return void(t.children||t.all?this.removeFold(r):this.expandFold(r));var s=this.getFoldWidgetRange(e,!0);if(s&&!s.isMultiLine()&&(r=this.getFoldAt(s.start.row,s.start.column,1),r&&s.isEqual(r.range)))return void this.removeFold(r);if(t.siblings){var a=this.getParentFoldRangeData(e);if(a.range)var l=a.range.start.row+1,c=a.range.end.row;this.foldAll(l,c,t.all?1e4:0)}else t.children?(c=s?s.end.row:this.getLength(),this.foldAll(e+1,c,t.all?1e4:0)):s&&(t.all&&(s.collapseChildren=1e4),this.addFold("...",s));return s}},this.toggleFoldWidget=function(e){var t=this.selection.getCursor().row;t=this.getRowFoldStart(t);var i=this.$toggleFoldWidget(t,{});if(!i){var n=this.getParentFoldRangeData(t,!0);if(i=n.range||n.firstRange){t=i.start.row;var o=this.getFoldAt(t,this.getLine(t).length,1);o?this.removeFold(o):this.addFold("...",i)}}},this.updateFoldWidgets=function(e){var t=e.start.row,i=e.end.row-t;if(0===i)this.foldWidgets[t]=null;else if("remove"==e.action)this.foldWidgets.splice(t,i+1,null);else{var n=Array(i+1);n.unshift(t,1),this.foldWidgets.splice.apply(this.foldWidgets,n)}},this.tokenizerUpdateFoldWidgets=function(e){var t=e.data;t.first!=t.last&&this.foldWidgets.length>t.first&&this.foldWidgets.splice(t.first,this.foldWidgets.length)}}var o=e("../range").Range,r=e("./fold_line").FoldLine,s=e("./fold").Fold,a=e("../token_iterator").TokenIterator;t.Folding=n}),define("ace/edit_session/bracket_match",["require","exports","module","ace/token_iterator","ace/range"],function(e,t,i){"use strict";function n(){this.findMatchingBracket=function(e,t){if(0==e.column)return null;var i=t||this.getLine(e.row).charAt(e.column-1);if(""==i)return null;var n=i.match(/([\(\[\{])|([\)\]\}])/);return n?n[1]?this.$findClosingBracket(n[1],e):this.$findOpeningBracket(n[2],e):null},this.getBracketRange=function(e){var t,i=this.getLine(e.row),n=!0,o=i.charAt(e.column-1),s=o&&o.match(/([\(\[\{])|([\)\]\}])/);if(s||(o=i.charAt(e.column),e={row:e.row,column:e.column+1},s=o&&o.match(/([\(\[\{])|([\)\]\}])/),n=!1),!s)return null;if(s[1]){var a=this.$findClosingBracket(s[1],e);if(!a)return null;t=r.fromPoints(e,a),n||(t.end.column++,t.start.column--),t.cursor=t.end}else{var a=this.$findOpeningBracket(s[2],e);if(!a)return null;t=r.fromPoints(a,e),n||(t.start.column++,t.end.column--),t.cursor=t.start}return t},this.$brackets={")":"(","(":")","]":"[","[":"]","{":"}","}":"{"},this.$findOpeningBracket=function(e,t,i){var n=this.$brackets[e],r=1,s=new o(this,t.row,t.column),a=s.getCurrentToken();if(a||(a=s.stepForward()),a){i||(i=new RegExp("(\\.?"+a.type.replace(".","\\.").replace("rparen",".paren").replace(/\b(?:end)\b/,"(?:start|begin|end)")+")+"));for(var l=t.column-s.getCurrentTokenColumn()-2,c=a.value;;){for(;l>=0;){var h=c.charAt(l);if(h==n){if(r-=1,0==r)return{row:s.getCurrentTokenRow(),column:l+s.getCurrentTokenColumn()}}else h==e&&(r+=1);l-=1}do a=s.stepBackward();while(a&&!i.test(a.type));if(null==a)break;c=a.value,l=c.length-1}return null}},this.$findClosingBracket=function(e,t,i){var n=this.$brackets[e],r=1,s=new o(this,t.row,t.column),a=s.getCurrentToken();if(a||(a=s.stepForward()),a){i||(i=new RegExp("(\\.?"+a.type.replace(".","\\.").replace("lparen",".paren").replace(/\b(?:start|begin)\b/,"(?:start|begin|end)")+")+"));for(var l=t.column-s.getCurrentTokenColumn();;){for(var c=a.value,h=c.length;h>l;){var u=c.charAt(l);if(u==n){if(r-=1,0==r)return{row:s.getCurrentTokenRow(),column:l+s.getCurrentTokenColumn()}}else u==e&&(r+=1);l+=1}do a=s.stepForward();while(a&&!i.test(a.type));if(null==a)break;l=0}return null}}}var o=e("../token_iterator").TokenIterator,r=e("../range").Range;t.BracketMatch=n}),define("ace/edit_session",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/config","ace/lib/event_emitter","ace/selection","ace/mode/text","ace/range","ace/document","ace/background_tokenizer","ace/search_highlight","ace/edit_session/folding","ace/edit_session/bracket_match"],function(e,t,i){"use strict";var n=e("./lib/oop"),o=e("./lib/lang"),r=e("./config"),s=e("./lib/event_emitter").EventEmitter,a=e("./selection").Selection,l=e("./mode/text").Mode,c=e("./range").Range,h=e("./document").Document,u=e("./background_tokenizer").BackgroundTokenizer,d=e("./search_highlight").SearchHighlight,g=function(e,t){this.$breakpoints=[],this.$decorations=[],this.$frontMarkers={},this.$backMarkers={},this.$markerId=1,this.$undoSelect=!0,this.$foldData=[],this.$foldData.toString=function(){return this.join("\n")},this.on("changeFold",this.onChangeFold.bind(this)),this.$onChange=this.onChange.bind(this),"object"==typeof e&&e.getLine||(e=new h(e)),this.setDocument(e),this.selection=new a(this),r.resetOptions(this),this.setMode(t),r._signal("session",this)};(function(){function e(e){return 4352>e?!1:e>=4352&&4447>=e||e>=4515&&4519>=e||e>=4602&&4607>=e||e>=9001&&9002>=e||e>=11904&&11929>=e||e>=11931&&12019>=e||e>=12032&&12245>=e||e>=12272&&12283>=e||e>=12288&&12350>=e||e>=12353&&12438>=e||e>=12441&&12543>=e||e>=12549&&12589>=e||e>=12593&&12686>=e||e>=12688&&12730>=e||e>=12736&&12771>=e||e>=12784&&12830>=e||e>=12832&&12871>=e||e>=12880&&13054>=e||e>=13056&&19903>=e||e>=19968&&42124>=e||e>=42128&&42182>=e||e>=43360&&43388>=e||e>=44032&&55203>=e||e>=55216&&55238>=e||e>=55243&&55291>=e||e>=63744&&64255>=e||e>=65040&&65049>=e||e>=65072&&65106>=e||e>=65108&&65126>=e||e>=65128&&65131>=e||e>=65281&&65376>=e||e>=65504&&65510>=e}n.implement(this,s),this.setDocument=function(e){this.doc&&this.doc.removeListener("change",this.$onChange),this.doc=e,e.on("change",this.$onChange),this.bgTokenizer&&this.bgTokenizer.setDocument(this.getDocument()),this.resetCaches()},this.getDocument=function(){return this.doc},this.$resetRowCache=function(e){if(!e)return this.$docRowCache=[],void(this.$screenRowCache=[]);var t=this.$docRowCache.length,i=this.$getRowCacheIndex(this.$docRowCache,e)+1;t>i&&(this.$docRowCache.splice(i,t),this.$screenRowCache.splice(i,t))},this.$getRowCacheIndex=function(e,t){for(var i=0,n=e.length-1;n>=i;){var o=i+n>>1,r=e[o];if(t>r)i=o+1;else{if(!(r>t))return o;n=o-1}}return i-1},this.resetCaches=function(){this.$modified=!0,this.$wrapData=[],this.$rowLengthCache=[],this.$resetRowCache(0),this.bgTokenizer&&this.bgTokenizer.start(0)},this.onChangeFold=function(e){var t=e.data;this.$resetRowCache(t.start.row)},this.onChange=function(e){this.$modified=!0,this.$resetRowCache(e.start.row);var t=this.$updateInternalDataOnChange(e);this.$fromUndo||!this.$undoManager||e.ignore||(this.$deltasDoc.push(e),t&&0!=t.length&&this.$deltasFold.push({action:"removeFolds",folds:t}),this.$informUndoManager.schedule()),this.bgTokenizer&&this.bgTokenizer.$updateOnChange(e),this._signal("change",e)},this.setValue=function(e){this.doc.setValue(e),this.selection.moveTo(0,0),this.$resetRowCache(0),this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.setUndoManager(this.$undoManager),this.getUndoManager().reset()},this.getValue=this.toString=function(){return this.doc.getValue()},this.getSelection=function(){return this.selection},this.getState=function(e){return this.bgTokenizer.getState(e)},this.getTokens=function(e){return this.bgTokenizer.getTokens(e)},this.getTokenAt=function(e,t){var i,n=this.bgTokenizer.getTokens(e),o=0;if(null==t)r=n.length-1,o=this.getLine(e).length;else for(var r=0;r<n.length&&(o+=n[r].value.length,!(o>=t));r++);return(i=n[r])?(i.index=r,i.start=o-i.value.length,i):null},this.setUndoManager=function(e){if(this.$undoManager=e,this.$deltas=[],this.$deltasDoc=[],this.$deltasFold=[],this.$informUndoManager&&this.$informUndoManager.cancel(),e){var t=this;this.$syncInformUndoManager=function(){t.$informUndoManager.cancel(),t.$deltasFold.length&&(t.$deltas.push({group:"fold",deltas:t.$deltasFold}),t.$deltasFold=[]),t.$deltasDoc.length&&(t.$deltas.push({group:"doc",deltas:t.$deltasDoc}),t.$deltasDoc=[]),t.$deltas.length>0&&e.execute({action:"aceupdate",args:[t.$deltas,t],merge:t.mergeUndoDeltas}),t.mergeUndoDeltas=!1,t.$deltas=[]},this.$informUndoManager=o.delayedCall(this.$syncInformUndoManager)}},this.markUndoGroup=function(){this.$syncInformUndoManager&&this.$syncInformUndoManager()},this.$defaultUndoManager={undo:function(){},redo:function(){},reset:function(){}},this.getUndoManager=function(){return this.$undoManager||this.$defaultUndoManager},this.getTabString=function(){return this.getUseSoftTabs()?o.stringRepeat(" ",this.getTabSize()):" "},this.setUseSoftTabs=function(e){this.setOption("useSoftTabs",e)},this.getUseSoftTabs=function(){return this.$useSoftTabs&&!this.$mode.$indentWithTabs},this.setTabSize=function(e){this.setOption("tabSize",e)},this.getTabSize=function(){return this.$tabSize},this.isTabStop=function(e){return this.$useSoftTabs&&e.column%this.$tabSize===0},this.$overwrite=!1,this.setOverwrite=function(e){this.setOption("overwrite",e)},this.getOverwrite=function(){return this.$overwrite},this.toggleOverwrite=function(){this.setOverwrite(!this.$overwrite)},this.addGutterDecoration=function(e,t){this.$decorations[e]||(this.$decorations[e]=""),this.$decorations[e]+=" "+t,this._signal("changeBreakpoint",{})},this.removeGutterDecoration=function(e,t){this.$decorations[e]=(this.$decorations[e]||"").replace(" "+t,""),this._signal("changeBreakpoint",{})},this.getBreakpoints=function(){return this.$breakpoints},this.setBreakpoints=function(e){this.$breakpoints=[];for(var t=0;t<e.length;t++)this.$breakpoints[e[t]]="ace_breakpoint";this._signal("changeBreakpoint",{})},this.clearBreakpoints=function(){this.$breakpoints=[],this._signal("changeBreakpoint",{})},this.setBreakpoint=function(e,t){void 0===t&&(t="ace_breakpoint"),t?this.$breakpoints[e]=t:delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},this.clearBreakpoint=function(e){delete this.$breakpoints[e],this._signal("changeBreakpoint",{})},this.addMarker=function(e,t,i,n){var o=this.$markerId++,r={range:e,type:i||"line",renderer:"function"==typeof i?i:null,clazz:t,inFront:!!n,id:o};return n?(this.$frontMarkers[o]=r,this._signal("changeFrontMarker")):(this.$backMarkers[o]=r,this._signal("changeBackMarker")),o},this.addDynamicMarker=function(e,t){if(e.update){var i=this.$markerId++;return e.id=i,e.inFront=!!t,t?(this.$frontMarkers[i]=e,this._signal("changeFrontMarker")):(this.$backMarkers[i]=e,this._signal("changeBackMarker")),e}},this.removeMarker=function(e){var t=this.$frontMarkers[e]||this.$backMarkers[e];if(t){var i=t.inFront?this.$frontMarkers:this.$backMarkers;t&&(delete i[e],this._signal(t.inFront?"changeFrontMarker":"changeBackMarker"))}},this.getMarkers=function(e){return e?this.$frontMarkers:this.$backMarkers},this.highlight=function(e){if(!this.$searchHighlight){var t=new d(null,"ace_selected-word","text");this.$searchHighlight=this.addDynamicMarker(t)}this.$searchHighlight.setRegexp(e)},this.highlightLines=function(e,t,i,n){"number"!=typeof t&&(i=t,t=e),i||(i="ace_step");var o=new c(e,0,t,1/0);return o.id=this.addMarker(o,i,"fullLine",n),o},this.setAnnotations=function(e){this.$annotations=e,this._signal("changeAnnotation",{})},this.getAnnotations=function(){return this.$annotations||[]},this.clearAnnotations=function(){this.setAnnotations([])},this.$detectNewLine=function(e){var t=e.match(/^.*?(\r?\n)/m);this.$autoNewLine=t?t[1]:"\n"},this.getWordRange=function(e,t){var i=this.getLine(e),n=!1;if(t>0&&(n=!!i.charAt(t-1).match(this.tokenRe)),n||(n=!!i.charAt(t).match(this.tokenRe)),n)var o=this.tokenRe;else if(/^\s+$/.test(i.slice(t-1,t+1)))var o=/\s/;else var o=this.nonTokenRe;var r=t;if(r>0){do r--;while(r>=0&&i.charAt(r).match(o));r++}for(var s=t;s<i.length&&i.charAt(s).match(o);)s++;return new c(e,r,e,s)},this.getAWordRange=function(e,t){for(var i=this.getWordRange(e,t),n=this.getLine(i.end.row);n.charAt(i.end.column).match(/[ \t]/);)i.end.column+=1;return i},this.setNewLineMode=function(e){this.doc.setNewLineMode(e)},this.getNewLineMode=function(){return this.doc.getNewLineMode()},this.setUseWorker=function(e){this.setOption("useWorker",e)},this.getUseWorker=function(){return this.$useWorker},this.onReloadTokenizer=function(e){var t=e.data;this.bgTokenizer.start(t.first),this._signal("tokenizerUpdate",e)},this.$modes={},this.$mode=null,this.$modeId=null,this.setMode=function(e,t){if(e&&"object"==typeof e){if(e.getTokenizer)return this.$onChangeMode(e);var i=e,n=i.path}else n=e||"ace/mode/text";return this.$modes["ace/mode/text"]||(this.$modes["ace/mode/text"]=new l),this.$modes[n]&&!i?(this.$onChangeMode(this.$modes[n]),void(t&&t())):(this.$modeId=n,r.loadModule(["mode",n],function(e){return this.$modeId!==n?t&&t():(this.$modes[n]&&!i?this.$onChangeMode(this.$modes[n]):e&&e.Mode&&(e=new e.Mode(i),i||(this.$modes[n]=e,e.$id=n),this.$onChangeMode(e)),void(t&&t()))}.bind(this)),void(this.$mode||this.$onChangeMode(this.$modes["ace/mode/text"],!0)))},this.$onChangeMode=function(e,t){if(t||(this.$modeId=e.$id),this.$mode!==e){this.$mode=e,this.$stopWorker(),this.$useWorker&&this.$startWorker();var i=e.getTokenizer();if(void 0!==i.addEventListener){var n=this.onReloadTokenizer.bind(this);i.addEventListener("update",n)}if(this.bgTokenizer)this.bgTokenizer.setTokenizer(i);else{this.bgTokenizer=new u(i);var o=this;this.bgTokenizer.addEventListener("update",function(e){o._signal("tokenizerUpdate",e)})}this.bgTokenizer.setDocument(this.getDocument()),this.tokenRe=e.tokenRe,this.nonTokenRe=e.nonTokenRe,t||(e.attachToSession&&e.attachToSession(this),this.$options.wrapMethod.set.call(this,this.$wrapMethod),this.$setFolding(e.foldingRules),this.bgTokenizer.start(0),this._emit("changeMode"))}},this.$stopWorker=function(){this.$worker&&(this.$worker.terminate(),this.$worker=null)},this.$startWorker=function(){try{this.$worker=this.$mode.createWorker(this)}catch(e){r.warn("Could not load worker",e),this.$worker=null}},this.getMode=function(){return this.$mode},this.$scrollTop=0,this.setScrollTop=function(e){this.$scrollTop===e||isNaN(e)||(this.$scrollTop=e,this._signal("changeScrollTop",e))},this.getScrollTop=function(){return this.$scrollTop},this.$scrollLeft=0,this.setScrollLeft=function(e){this.$scrollLeft===e||isNaN(e)||(this.$scrollLeft=e,this._signal("changeScrollLeft",e))},this.getScrollLeft=function(){return this.$scrollLeft},this.getScreenWidth=function(){return this.$computeWidth(),this.lineWidgets?Math.max(this.getLineWidgetMaxWidth(),this.screenWidth):this.screenWidth},this.getLineWidgetMaxWidth=function(){if(null!=this.lineWidgetsWidth)return this.lineWidgetsWidth;var e=0;return this.lineWidgets.forEach(function(t){t&&t.screenWidth>e&&(e=t.screenWidth)}),this.lineWidgetWidth=e},this.$computeWidth=function(e){if(this.$modified||e){if(this.$modified=!1,this.$useWrapMode)return this.screenWidth=this.$wrapLimit;for(var t=this.doc.getAllLines(),i=this.$rowLengthCache,n=0,o=0,r=this.$foldData[o],s=r?r.start.row:1/0,a=t.length,l=0;a>l;l++){if(l>s){if(l=r.end.row+1,l>=a)break;r=this.$foldData[o++],s=r?r.start.row:1/0}null==i[l]&&(i[l]=this.$getStringScreenWidth(t[l])[0]),i[l]>n&&(n=i[l])}this.screenWidth=n}},this.getLine=function(e){return this.doc.getLine(e)},this.getLines=function(e,t){return this.doc.getLines(e,t)},this.getLength=function(){return this.doc.getLength()},this.getTextRange=function(e){return this.doc.getTextRange(e||this.selection.getRange())},this.insert=function(e,t){return this.doc.insert(e,t)},this.remove=function(e){return this.doc.remove(e)},this.removeFullLines=function(e,t){return this.doc.removeFullLines(e,t)},this.undoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var i=null,n=e.length-1;-1!=n;n--){var o=e[n];"doc"==o.group?(this.doc.revertDeltas(o.deltas),i=this.$getUndoSelection(o.deltas,!0,i)):o.deltas.forEach(function(e){this.addFolds(e.folds)},this)}return this.$fromUndo=!1,i&&this.$undoSelect&&!t&&this.selection.setSelectionRange(i),i}},this.redoChanges=function(e,t){if(e.length){this.$fromUndo=!0;for(var i=null,n=0;n<e.length;n++){var o=e[n];"doc"==o.group&&(this.doc.applyDeltas(o.deltas),i=this.$getUndoSelection(o.deltas,!1,i))}return this.$fromUndo=!1,i&&this.$undoSelect&&!t&&this.selection.setSelectionRange(i),i}},this.setUndoSelect=function(e){this.$undoSelect=e},this.$getUndoSelection=function(e,t,i){function n(e){
|
|
|
+return t?"insert"!==e.action:"insert"===e.action}var o,r,s=e[0],a=!1;n(s)?(o=c.fromPoints(s.start,s.end),a=!0):(o=c.fromPoints(s.start,s.start),a=!1);for(var l=1;l<e.length;l++)s=e[l],n(s)?(r=s.start,-1==o.compare(r.row,r.column)&&o.setStart(r),r=s.end,1==o.compare(r.row,r.column)&&o.setEnd(r),a=!0):(r=s.start,-1==o.compare(r.row,r.column)&&(o=c.fromPoints(s.start,s.start)),a=!1);if(null!=i){0===c.comparePoints(i.start,o.start)&&(i.start.column+=o.end.column-o.start.column,i.end.column+=o.end.column-o.start.column);var h=i.compareRange(o);1==h?o.setStart(i.start):-1==h&&o.setEnd(i.end)}return o},this.replace=function(e,t){return this.doc.replace(e,t)},this.moveText=function(e,t,i){var n=this.getTextRange(e),o=this.getFoldsInRange(e),r=c.fromPoints(t,t);if(!i){this.remove(e);var s=e.start.row-e.end.row,a=s?-e.end.column:e.start.column-e.end.column;a&&(r.start.row==e.end.row&&r.start.column>e.end.column&&(r.start.column+=a),r.end.row==e.end.row&&r.end.column>e.end.column&&(r.end.column+=a)),s&&r.start.row>=e.end.row&&(r.start.row+=s,r.end.row+=s)}if(r.end=this.insert(r.start,n),o.length){var l=e.start,h=r.start,s=h.row-l.row,a=h.column-l.column;this.addFolds(o.map(function(e){return e=e.clone(),e.start.row==l.row&&(e.start.column+=a),e.end.row==l.row&&(e.end.column+=a),e.start.row+=s,e.end.row+=s,e}))}return r},this.indentRows=function(e,t,i){i=i.replace(/\t/g,this.getTabString());for(var n=e;t>=n;n++)this.doc.insertInLine({row:n,column:0},i)},this.outdentRows=function(e){for(var t=e.collapseRows(),i=new c(0,0,0,0),n=this.getTabSize(),o=t.start.row;o<=t.end.row;++o){var r=this.getLine(o);i.start.row=o,i.end.row=o;for(var s=0;n>s&&" "==r.charAt(s);++s);n>s&&" "==r.charAt(s)?(i.start.column=s,i.end.column=s+1):(i.start.column=0,i.end.column=s),this.remove(i)}},this.$moveLines=function(e,t,i){if(e=this.getRowFoldStart(e),t=this.getRowFoldEnd(t),0>i){var n=this.getRowFoldStart(e+i);if(0>n)return 0;var o=n-e}else if(i>0){var n=this.getRowFoldEnd(t+i);if(n>this.doc.getLength()-1)return 0;var o=n-t}else{e=this.$clipRowToDocument(e),t=this.$clipRowToDocument(t);var o=t-e+1}var r=new c(e,0,t,Number.MAX_VALUE),s=this.getFoldsInRange(r).map(function(e){return e=e.clone(),e.start.row+=o,e.end.row+=o,e}),a=0==i?this.doc.getLines(e,t):this.doc.removeFullLines(e,t);return this.doc.insertFullLines(e+o,a),s.length&&this.addFolds(s),o},this.moveLinesUp=function(e,t){return this.$moveLines(e,t,-1)},this.moveLinesDown=function(e,t){return this.$moveLines(e,t,1)},this.duplicateLines=function(e,t){return this.$moveLines(e,t,0)},this.$clipRowToDocument=function(e){return Math.max(0,Math.min(e,this.doc.getLength()-1))},this.$clipColumnToRow=function(e,t){return 0>t?0:Math.min(this.doc.getLine(e).length,t)},this.$clipPositionToDocument=function(e,t){if(t=Math.max(0,t),0>e)e=0,t=0;else{var i=this.doc.getLength();e>=i?(e=i-1,t=this.doc.getLine(i-1).length):t=Math.min(this.doc.getLine(e).length,t)}return{row:e,column:t}},this.$clipRangeToDocument=function(e){e.start.row<0?(e.start.row=0,e.start.column=0):e.start.column=this.$clipColumnToRow(e.start.row,e.start.column);var t=this.doc.getLength()-1;return e.end.row>t?(e.end.row=t,e.end.column=this.doc.getLine(t).length):e.end.column=this.$clipColumnToRow(e.end.row,e.end.column),e},this.$wrapLimit=80,this.$useWrapMode=!1,this.$wrapLimitRange={min:null,max:null},this.setUseWrapMode=function(e){if(e!=this.$useWrapMode){if(this.$useWrapMode=e,this.$modified=!0,this.$resetRowCache(0),e){var t=this.getLength();this.$wrapData=Array(t),this.$updateWrapData(0,t-1)}this._signal("changeWrapMode")}},this.getUseWrapMode=function(){return this.$useWrapMode},this.setWrapLimitRange=function(e,t){(this.$wrapLimitRange.min!==e||this.$wrapLimitRange.max!==t)&&(this.$wrapLimitRange={min:e,max:t},this.$modified=!0,this.$useWrapMode&&this._signal("changeWrapMode"))},this.adjustWrapLimit=function(e,t){var i=this.$wrapLimitRange;i.max<0&&(i={min:t,max:t});var n=this.$constrainWrapLimit(e,i.min,i.max);return n!=this.$wrapLimit&&n>1?(this.$wrapLimit=n,this.$modified=!0,this.$useWrapMode&&(this.$updateWrapData(0,this.getLength()-1),this.$resetRowCache(0),this._signal("changeWrapLimit")),!0):!1},this.$constrainWrapLimit=function(e,t,i){return t&&(e=Math.max(t,e)),i&&(e=Math.min(i,e)),e},this.getWrapLimit=function(){return this.$wrapLimit},this.setWrapLimit=function(e){this.setWrapLimitRange(e,e)},this.getWrapLimitRange=function(){return{min:this.$wrapLimitRange.min,max:this.$wrapLimitRange.max}},this.$updateInternalDataOnChange=function(e){var t=this.$useWrapMode,i=e.action,n=e.start,o=e.end,r=n.row,s=o.row,a=s-r,l=null;if(this.$updating=!0,0!=a)if("remove"===i){this[t?"$wrapData":"$rowLengthCache"].splice(r,a);var c=this.$foldData;l=this.getFoldsInRange(e),this.removeFolds(l);var h=this.getFoldLine(o.row),u=0;if(h){h.addRemoveChars(o.row,o.column,n.column-o.column),h.shiftRow(-a);var d=this.getFoldLine(r);d&&d!==h&&(d.merge(h),h=d),u=c.indexOf(h)+1}for(u;u<c.length;u++){var h=c[u];h.start.row>=o.row&&h.shiftRow(-a)}s=r}else{var g=Array(a);g.unshift(r,0);var f=t?this.$wrapData:this.$rowLengthCache;f.splice.apply(f,g);var c=this.$foldData,h=this.getFoldLine(r),u=0;if(h){var m=h.range.compareInside(n.row,n.column);0==m?(h=h.split(n.row,n.column),h&&(h.shiftRow(a),h.addRemoveChars(s,0,o.column-n.column))):-1==m&&(h.addRemoveChars(r,0,o.column-n.column),h.shiftRow(a)),u=c.indexOf(h)+1}for(u;u<c.length;u++){var h=c[u];h.start.row>=r&&h.shiftRow(a)}}else{a=Math.abs(e.start.column-e.end.column),"remove"===i&&(l=this.getFoldsInRange(e),this.removeFolds(l),a=-a);var h=this.getFoldLine(r);h&&h.addRemoveChars(r,n.column,a)}return t&&this.$wrapData.length!=this.doc.getLength()&&console.error("doc.getLength() and $wrapData.length have to be the same!"),this.$updating=!1,t?this.$updateWrapData(r,s):this.$updateRowLengthCache(r,s),l},this.$updateRowLengthCache=function(e,t,i){this.$rowLengthCache[e]=null,this.$rowLengthCache[t]=null},this.$updateWrapData=function(e,t){var i,n,o=this.doc.getAllLines(),r=this.getTabSize(),s=this.$wrapData,l=this.$wrapLimit,c=e;for(t=Math.min(t,o.length-1);t>=c;)n=this.getFoldLine(c,n),n?(i=[],n.walk(function(e,t,n,r){var s;if(null!=e){s=this.$getDisplayTokens(e,i.length),s[0]=a;for(var l=1;l<s.length;l++)s[l]=h}else s=this.$getDisplayTokens(o[t].substring(r,n),i.length);i=i.concat(s)}.bind(this),n.end.row,o[n.end.row].length+1),s[n.start.row]=this.$computeWrapSplits(i,l,r),c=n.end.row+1):(i=this.$getDisplayTokens(o[c]),s[c]=this.$computeWrapSplits(i,l,r),c++)};var t=1,i=2,a=3,h=4,g=9,f=10,m=11,p=12;this.$computeWrapSplits=function(e,t,n){function o(){var t=0;if(0===v)return t;if(A)for(var i=0;i<e.length;i++){var o=e[i];if(o==f)t+=1;else{if(o!=m){if(o==p)continue;break}t+=n}}return d&&A!==!1&&(t+=n),Math.min(t,v)}function r(t){var i=e.slice(c,t),n=i.length;i.join("").replace(/12/g,function(){n-=1}).replace(/2/g,function(){n-=1}),s.length||(C=o(),s.indent=C),u+=n,s.push(u),c=t}if(0==e.length)return[];for(var s=[],l=e.length,c=0,u=0,d=this.$wrapAsCode,A=this.$indentedSoftWrap,v=t<=Math.max(2*n,8)||A===!1?0:Math.floor(t/2),C=0;l-c>t-C;){var w=c+t-C;if(e[w-1]>=f&&e[w]>=f)r(w);else if(e[w]!=a&&e[w]!=h){for(var F=Math.max(w-(t-(t>>2)),c-1);w>F&&e[w]<a;)w--;if(d){for(;w>F&&e[w]<a;)w--;for(;w>F&&e[w]==g;)w--}else for(;w>F&&e[w]<f;)w--;w>F?r(++w):(w=c+t,e[w]==i&&w--,r(w-C))}else{for(w;w!=c-1&&e[w]!=a;w--);if(w>c){r(w);continue}for(w=c+t;w<e.length&&e[w]==h;w++);if(w==e.length)break;r(w)}}return s},this.$getDisplayTokens=function(n,o){var r,s=[];o=o||0;for(var a=0;a<n.length;a++){var l=n.charCodeAt(a);if(9==l){r=this.getScreenTabSize(s.length+o),s.push(m);for(var c=1;r>c;c++)s.push(p)}else 32==l?s.push(f):l>39&&48>l||l>57&&64>l?s.push(g):l>=4352&&e(l)?s.push(t,i):s.push(t)}return s},this.$getStringScreenWidth=function(t,i,n){if(0==i)return[0,0];null==i&&(i=1/0),n=n||0;var o,r;for(r=0;r<t.length&&(o=t.charCodeAt(r),n+=9==o?this.getScreenTabSize(n):o>=4352&&e(o)?2:1,!(n>i));r++);return[n,r]},this.lineWidgets=null,this.getRowLength=function(e){if(this.lineWidgets)var t=this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0;else t=0;return this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1+t:1+t},this.getRowLineCount=function(e){return this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1:1},this.getRowWrapIndent=function(e){if(this.$useWrapMode){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE),i=this.$wrapData[t.row];return i.length&&i[0]<t.column?i.indent:0}return 0},this.getScreenLastRowColumn=function(e){var t=this.screenToDocumentPosition(e,Number.MAX_VALUE);return this.documentToScreenColumn(t.row,t.column)},this.getDocumentLastRowColumn=function(e,t){var i=this.documentToScreenRow(e,t);return this.getScreenLastRowColumn(i)},this.getDocumentLastRowColumnPosition=function(e,t){var i=this.documentToScreenRow(e,t);return this.screenToDocumentPosition(i,Number.MAX_VALUE/10)},this.getRowSplitData=function(e){return this.$useWrapMode?this.$wrapData[e]:void 0},this.getScreenTabSize=function(e){return this.$tabSize-e%this.$tabSize},this.screenToDocumentRow=function(e,t){return this.screenToDocumentPosition(e,t).row},this.screenToDocumentColumn=function(e,t){return this.screenToDocumentPosition(e,t).column},this.screenToDocumentPosition=function(e,t){if(0>e)return{row:0,column:0};var i,n,o=0,r=0,s=0,a=0,l=this.$screenRowCache,c=this.$getRowCacheIndex(l,e),h=l.length;if(h&&c>=0)var s=l[c],o=this.$docRowCache[c],u=e>l[h-1];else var u=!h;for(var d=this.getLength()-1,g=this.getNextFoldLine(o),f=g?g.start.row:1/0;e>=s&&(a=this.getRowLength(o),!(s+a>e||o>=d));)s+=a,o++,o>f&&(o=g.end.row+1,g=this.getNextFoldLine(o,g),f=g?g.start.row:1/0),u&&(this.$docRowCache.push(o),this.$screenRowCache.push(s));if(g&&g.start.row<=o)i=this.getFoldDisplayLine(g),o=g.start.row;else{if(e>=s+a||o>d)return{row:d,column:this.getLine(d).length};i=this.getLine(o),g=null}var m=0;if(this.$useWrapMode){var p=this.$wrapData[o];if(p){var A=Math.floor(e-s);n=p[A],A>0&&p.length&&(m=p.indent,r=p[A-1]||p[p.length-1],i=i.substring(r))}}return r+=this.$getStringScreenWidth(i,t-m)[1],this.$useWrapMode&&r>=n&&(r=n-1),g?g.idxToPosition(r):{row:o,column:r}},this.documentToScreenPosition=function(e,t){if("undefined"==typeof t)var i=this.$clipPositionToDocument(e.row,e.column);else i=this.$clipPositionToDocument(e,t);e=i.row,t=i.column;var n=0,o=null,r=null;r=this.getFoldAt(e,t,1),r&&(e=r.start.row,t=r.start.column);var s,a=0,l=this.$docRowCache,c=this.$getRowCacheIndex(l,e),h=l.length;if(h&&c>=0)var a=l[c],n=this.$screenRowCache[c],u=e>l[h-1];else var u=!h;for(var d=this.getNextFoldLine(a),g=d?d.start.row:1/0;e>a;){if(a>=g){if(s=d.end.row+1,s>e)break;d=this.getNextFoldLine(s,d),g=d?d.start.row:1/0}else s=a+1;n+=this.getRowLength(a),a=s,u&&(this.$docRowCache.push(a),this.$screenRowCache.push(n))}var f="";d&&a>=g?(f=this.getFoldDisplayLine(d,e,t),o=d.start.row):(f=this.getLine(e).substring(0,t),o=e);var m=0;if(this.$useWrapMode){var p=this.$wrapData[o];if(p){for(var A=0;f.length>=p[A];)n++,A++;f=f.substring(p[A-1]||0,f.length),m=A>0?p.indent:0}}return{row:n,column:m+this.$getStringScreenWidth(f)[0]}},this.documentToScreenColumn=function(e,t){return this.documentToScreenPosition(e,t).column},this.documentToScreenRow=function(e,t){return this.documentToScreenPosition(e,t).row},this.getScreenLength=function(){var e=0,t=null;if(this.$useWrapMode)for(var i=this.$wrapData.length,n=0,o=0,t=this.$foldData[o++],r=t?t.start.row:1/0;i>n;){var s=this.$wrapData[n];e+=s?s.length+1:1,n++,n>r&&(n=t.end.row+1,t=this.$foldData[o++],r=t?t.start.row:1/0)}else{e=this.getLength();for(var a=this.$foldData,o=0;o<a.length;o++)t=a[o],e-=t.end.row-t.start.row}return this.lineWidgets&&(e+=this.$getWidgetScreenLength()),e},this.$setFontMetrics=function(e){},this.destroy=function(){this.bgTokenizer&&(this.bgTokenizer.setDocument(null),this.bgTokenizer=null),this.$stopWorker()}}).call(g.prototype),e("./edit_session/folding").Folding.call(g.prototype),e("./edit_session/bracket_match").BracketMatch.call(g.prototype),r.defineOptions(g.prototype,"session",{wrap:{set:function(e){if(e&&"off"!=e?"free"==e?e=!0:"printMargin"==e?e=-1:"string"==typeof e&&(e=parseInt(e,10)||!1):e=!1,this.$wrap!=e)if(this.$wrap=e,e){var t="number"==typeof e?e:null;this.setWrapLimitRange(t,t),this.setUseWrapMode(!0)}else this.setUseWrapMode(!1)},get:function(){return this.getUseWrapMode()?-1==this.$wrap?"printMargin":this.getWrapLimitRange().min?this.$wrap:"free":"off"},handlesSet:!0},wrapMethod:{set:function(e){e="auto"==e?"text"!=this.$mode.type:"text"!=e,e!=this.$wrapAsCode&&(this.$wrapAsCode=e,this.$useWrapMode&&(this.$modified=!0,this.$resetRowCache(0),this.$updateWrapData(0,this.getLength()-1)))},initialValue:"auto"},indentedSoftWrap:{initialValue:!0},firstLineNumber:{set:function(){this._signal("changeBreakpoint")},initialValue:1},useWorker:{set:function(e){this.$useWorker=e,this.$stopWorker(),e&&this.$startWorker()},initialValue:!0},useSoftTabs:{initialValue:!0},tabSize:{set:function(e){isNaN(e)||this.$tabSize===e||(this.$modified=!0,this.$rowLengthCache=[],this.$tabSize=e,this._signal("changeTabSize"))},initialValue:4,handlesSet:!0},overwrite:{set:function(e){this._signal("changeOverwrite")},initialValue:!1},newLineMode:{set:function(e){this.doc.setNewLineMode(e)},get:function(){return this.doc.getNewLineMode()},handlesSet:!0},mode:{set:function(e){this.setMode(e)},get:function(){return this.$modeId}}}),t.EditSession=g}),define("ace/search",["require","exports","module","ace/lib/lang","ace/lib/oop","ace/range"],function(e,t,i){"use strict";var n=e("./lib/lang"),o=e("./lib/oop"),r=e("./range").Range,s=function(){this.$options={}};(function(){this.set=function(e){return o.mixin(this.$options,e),this},this.getOptions=function(){return n.copyObject(this.$options)},this.setOptions=function(e){this.$options=e},this.find=function(e){var t=this.$options,i=this.$matchIterator(e,t);if(!i)return!1;var n=null;return i.forEach(function(e,i,o){if(e.start)n=e;else{var s=e.offset+(o||0);if(n=new r(i,s,i,s+e.length),!e.length&&t.start&&t.start.start&&0!=t.skipCurrent&&n.isEqual(t.start))return n=null,!1}return!0}),n},this.findAll=function(e){var t=this.$options;if(!t.needle)return[];this.$assembleRegExp(t);var i=t.range,o=i?e.getLines(i.start.row,i.end.row):e.doc.getAllLines(),s=[],a=t.re;if(t.$isMultiLine){var l,c=a.length,h=o.length-c;e:for(var u=a.offset||0;h>=u;u++){for(var d=0;c>d;d++)if(-1==o[u+d].search(a[d]))continue e;var g=o[u],f=o[u+c-1],m=g.length-g.match(a[0])[0].length,p=f.match(a[c-1])[0].length;l&&l.end.row===u&&l.end.column>m||(s.push(l=new r(u,m,u+c-1,p)),c>2&&(u=u+c-2))}}else for(var A=0;A<o.length;A++)for(var v=n.getMatchOffsets(o[A],a),d=0;d<v.length;d++){var C=v[d];s.push(new r(A,C.offset,A,C.offset+C.length))}if(i){for(var w=i.start.column,F=i.start.column,A=0,d=s.length-1;d>A&&s[A].start.column<w&&s[A].start.row==i.start.row;)A++;for(;d>A&&s[d].end.column>F&&s[d].end.row==i.end.row;)d--;for(s=s.slice(A,d+1),A=0,d=s.length;d>A;A++)s[A].start.row+=i.start.row,s[A].end.row+=i.start.row}return s},this.replace=function(e,t){var i=this.$options,n=this.$assembleRegExp(i);if(i.$isMultiLine)return t;if(n){var o=n.exec(e);if(!o||o[0].length!=e.length)return null;if(t=e.replace(n,t),i.preserveCase){t=t.split("");for(var r=Math.min(e.length,e.length);r--;){var s=e[r];t[r]=s&&s.toLowerCase()!=s?t[r].toUpperCase():t[r].toLowerCase()}t=t.join("")}return t}},this.$matchIterator=function(e,t){var i=this.$assembleRegExp(t);if(!i)return!1;var o;if(t.$isMultiLine)var s=i.length,a=function(t,n,a){var l=t.search(i[0]);if(-1!=l){for(var c=1;s>c;c++)if(t=e.getLine(n+c),-1==t.search(i[c]))return;var h=t.match(i[s-1])[0].length,u=new r(n,l,n+s-1,h);return 1==i.offset?(u.start.row--,u.start.column=Number.MAX_VALUE):a&&(u.start.column+=a),o(u)?!0:void 0}};else if(t.backwards)var a=function(e,t,r){for(var s=n.getMatchOffsets(e,i),a=s.length-1;a>=0;a--)if(o(s[a],t,r))return!0};else var a=function(e,t,r){for(var s=n.getMatchOffsets(e,i),a=0;a<s.length;a++)if(o(s[a],t,r))return!0};var l=this.$lineIterator(e,t);return{forEach:function(e){o=e,l.forEach(a)}}},this.$assembleRegExp=function(e,t){if(e.needle instanceof RegExp)return e.re=e.needle;var i=e.needle;if(!e.needle)return e.re=!1;e.regExp||(i=n.escapeRegExp(i)),e.wholeWord&&(i="\\b"+i+"\\b");var o=e.caseSensitive?"gm":"gmi";if(e.$isMultiLine=!t&&/[\n\r]/.test(i),e.$isMultiLine)return e.re=this.$assembleMultilineRegExp(i,o);try{var r=new RegExp(i,o)}catch(s){r=!1}return e.re=r},this.$assembleMultilineRegExp=function(e,t){for(var i=e.replace(/\r\n|\r|\n/g,"$\n^").split("\n"),n=[],o=0;o<i.length;o++)try{n.push(new RegExp(i[o],t))}catch(r){return!1}return""==i[0]?(n.shift(),n.offset=1):n.offset=0,n},this.$lineIterator=function(e,t){var i=1==t.backwards,n=0!=t.skipCurrent,o=t.range,r=t.start;r||(r=o?o[i?"end":"start"]:e.selection.getRange()),r.start&&(r=r[n!=i?"end":"start"]);var s=o?o.start.row:0,a=o?o.end.row:e.getLength()-1,l=i?function(i){var n=r.row,o=e.getLine(n).substring(0,r.column);if(!i(o,n)){for(n--;n>=s;n--)if(i(e.getLine(n),n))return;if(0!=t.wrap)for(n=a,s=r.row;n>=s;n--)if(i(e.getLine(n),n))return}}:function(i){var n=r.row,o=e.getLine(n).substr(r.column);if(!i(o,n,r.column)){for(n+=1;a>=n;n++)if(i(e.getLine(n),n))return;if(0!=t.wrap)for(n=s,a=r.row;a>=n;n++)if(i(e.getLine(n),n))return}};return{forEach:l}}}).call(s.prototype),t.Search=s}),define("ace/keyboard/hash_handler",["require","exports","module","ace/lib/keys","ace/lib/useragent"],function(e,t,i){"use strict";function n(e,t){this.platform=t||(s.isMac?"mac":"win"),this.commands={},this.commandKeyBinding={},this.addCommands(e),this.$singleCommand=!0}function o(e,t){n.call(this,e,t),this.$singleCommand=!1}var r=e("../lib/keys"),s=e("../lib/useragent"),a=r.KEY_MODS;o.prototype=n.prototype,function(){function e(e){return"object"==typeof e&&e.bindKey&&e.bindKey.position||0}this.addCommand=function(e){this.commands[e.name]&&this.removeCommand(e),this.commands[e.name]=e,e.bindKey&&this._buildKeyHash(e)},this.removeCommand=function(e,t){var i=e&&("string"==typeof e?e:e.name);e=this.commands[i],t||delete this.commands[i];var n=this.commandKeyBinding;for(var o in n){var r=n[o];if(r==e)delete n[o];else if(Array.isArray(r)){var s=r.indexOf(e);-1!=s&&(r.splice(s,1),1==r.length&&(n[o]=r[0]))}}},this.bindKey=function(e,t,i){return"object"==typeof e&&(void 0==i&&(i=e.position),e=e[this.platform]),e?"function"==typeof t?this.addCommand({exec:t,bindKey:e,name:t.name||e}):void e.split("|").forEach(function(e){var n="";if(-1!=e.indexOf(" ")){var o=e.split(/\s+/);e=o.pop(),o.forEach(function(e){var t=this.parseKeys(e),i=a[t.hashId]+t.key;n+=(n?" ":"")+i,this._addCommandToBinding(n,"chainKeys")},this),n+=" "}var r=this.parseKeys(e),s=a[r.hashId]+r.key;this._addCommandToBinding(n+s,t,i)},this):void 0},this._addCommandToBinding=function(t,i,n){var o,r=this.commandKeyBinding;if(i)if(!r[t]||this.$singleCommand)r[t]=i;else{Array.isArray(r[t])?-1!=(o=r[t].indexOf(i))&&r[t].splice(o,1):r[t]=[r[t]],"number"!=typeof n&&(n=n||i.isDefault?-100:e(i));var s=r[t];for(o=0;o<s.length;o++){var a=s[o],l=e(a);if(l>n)break}s.splice(o,0,i)}else delete r[t]},this.addCommands=function(e){e&&Object.keys(e).forEach(function(t){var i=e[t];if(i){if("string"==typeof i)return this.bindKey(i,t);"function"==typeof i&&(i={exec:i}),"object"==typeof i&&(i.name||(i.name=t),this.addCommand(i))}},this)},this.removeCommands=function(e){Object.keys(e).forEach(function(t){this.removeCommand(e[t])},this)},this.bindKeys=function(e){Object.keys(e).forEach(function(t){this.bindKey(t,e[t])},this)},this._buildKeyHash=function(e){this.bindKey(e.bindKey,e)},this.parseKeys=function(e){var t=e.toLowerCase().split(/[\-\+]([\-\+])?/).filter(function(e){return e}),i=t.pop(),n=r[i];if(r.FUNCTION_KEYS[n])i=r.FUNCTION_KEYS[n].toLowerCase();else{if(!t.length)return{key:i,hashId:-1};if(1==t.length&&"shift"==t[0])return{key:i.toUpperCase(),hashId:-1}}for(var o=0,s=t.length;s--;){var a=r.KEY_MODS[t[s]];if(null==a)return"undefined"!=typeof console&&console.error("invalid modifier "+t[s]+" in "+e),!1;o|=a}return{key:i,hashId:o}},this.findKeyCommand=function(e,t){var i=a[e]+t;return this.commandKeyBinding[i]},this.handleKeyboard=function(e,t,i,n){var o=a[t]+i,r=this.commandKeyBinding[o];return e.$keyChain&&(e.$keyChain+=" "+o,r=this.commandKeyBinding[e.$keyChain]||r),!r||"chainKeys"!=r&&"chainKeys"!=r[r.length-1]?(e.$keyChain&&(t&&4!=t||1!=i.length?(-1==t||n>0)&&(e.$keyChain=""):e.$keyChain=e.$keyChain.slice(0,-o.length-1)),{command:r}):(e.$keyChain=e.$keyChain||o,{command:"null"})},this.getStatusText=function(e,t){return t.$keyChain||""}}.call(n.prototype),t.HashHandler=n,t.MultiHashHandler=o}),define("ace/commands/command_manager",["require","exports","module","ace/lib/oop","ace/keyboard/hash_handler","ace/lib/event_emitter"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("../keyboard/hash_handler").MultiHashHandler,r=e("../lib/event_emitter").EventEmitter,s=function(e,t){o.call(this,t,e),this.byName=this.commands,this.setDefaultHandler("exec",function(e){return e.command.exec(e.editor,e.args||{})})};n.inherits(s,o),function(){n.implement(this,r),this.exec=function(e,t,i){if(Array.isArray(e)){for(var n=e.length;n--;)if(this.exec(e[n],t,i))return!0;return!1}if("string"==typeof e&&(e=this.commands[e]),!e)return!1;if(t&&t.$readOnly&&!e.readOnly)return!1;var o={editor:t,command:e,args:i};return o.returnValue=this._emit("exec",o),this._signal("afterExec",o),o.returnValue===!1?!1:!0},this.toggleRecording=function(e){return this.$inReplay?void 0:(e&&e._emit("changeStatus"),this.recording?(this.macro.pop(),this.removeEventListener("exec",this.$addCommandToMacro),this.macro.length||(this.macro=this.oldMacro),this.recording=!1):(this.$addCommandToMacro||(this.$addCommandToMacro=function(e){this.macro.push([e.command,e.args])}.bind(this)),this.oldMacro=this.macro,this.macro=[],this.on("exec",this.$addCommandToMacro),this.recording=!0))},this.replay=function(e){if(!this.$inReplay&&this.macro){if(this.recording)return this.toggleRecording(e);try{this.$inReplay=!0,this.macro.forEach(function(t){"string"==typeof t?this.exec(t,e):this.exec(t[0],e,t[1])},this)}finally{this.$inReplay=!1}}},this.trimMacro=function(e){return e.map(function(e){return"string"!=typeof e[0]&&(e[0]=e[0].name),e[1]||(e=e[0]),e})}}.call(s.prototype),t.CommandManager=s}),define("ace/commands/default_commands",["require","exports","module","ace/lib/lang","ace/config","ace/range"],function(e,t,i){"use strict";function n(e,t){return{win:e,mac:t}}var o=e("../lib/lang"),r=e("../config"),s=e("../range").Range;t.commands=[{name:"showSettingsMenu",bindKey:n("Ctrl-,","Command-,"),exec:function(e){r.loadModule("ace/ext/settings_menu",function(t){t.init(e),e.showSettingsMenu()})},readOnly:!0},{name:"goToNextError",bindKey:n("Alt-E","Ctrl-E"),exec:function(e){r.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,1)})},scrollIntoView:"animate",readOnly:!0},{name:"goToPreviousError",bindKey:n("Alt-Shift-E","Ctrl-Shift-E"),exec:function(e){r.loadModule("ace/ext/error_marker",function(t){t.showErrorMarker(e,-1)})},scrollIntoView:"animate",readOnly:!0},{name:"selectall",bindKey:n("Ctrl-A","Command-A"),exec:function(e){e.selectAll()},readOnly:!0},{name:"centerselection",bindKey:n(null,"Ctrl-L"),exec:function(e){e.centerSelection()},readOnly:!0},{name:"gotoline",bindKey:n("Ctrl-L","Command-L"),exec:function(e){var t=parseInt(prompt("Enter line number:"),10);isNaN(t)||e.gotoLine(t)},readOnly:!0},{name:"fold",bindKey:n("Alt-L|Ctrl-F1","Command-Alt-L|Command-F1"),exec:function(e){e.session.toggleFold(!1)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"unfold",bindKey:n("Alt-Shift-L|Ctrl-Shift-F1","Command-Alt-Shift-L|Command-Shift-F1"),exec:function(e){e.session.toggleFold(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleFoldWidget",bindKey:n("F2","F2"),exec:function(e){e.session.toggleFoldWidget()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"toggleParentFoldWidget",bindKey:n("Alt-F2","Alt-F2"),exec:function(e){e.session.toggleFoldWidget(!0)},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"foldall",bindKey:n(null,"Ctrl-Command-Option-0"),exec:function(e){e.session.foldAll()},scrollIntoView:"center",readOnly:!0},{name:"foldOther",bindKey:n("Alt-0","Command-Option-0"),exec:function(e){e.session.foldAll(),e.session.unfold(e.selection.getAllRanges())},scrollIntoView:"center",readOnly:!0},{name:"unfoldall",bindKey:n("Alt-Shift-0","Command-Option-Shift-0"),exec:function(e){e.session.unfold()},scrollIntoView:"center",readOnly:!0},{name:"findnext",bindKey:n("Ctrl-K","Command-G"),exec:function(e){e.findNext()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"findprevious",bindKey:n("Ctrl-Shift-K","Command-Shift-G"),exec:function(e){e.findPrevious()},multiSelectAction:"forEach",scrollIntoView:"center",readOnly:!0},{name:"selectOrFindNext",bindKey:n("Alt-K","Ctrl-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findNext()},readOnly:!0},{name:"selectOrFindPrevious",bindKey:n("Alt-Shift-K","Ctrl-Shift-G"),exec:function(e){e.selection.isEmpty()?e.selection.selectWord():e.findPrevious()},readOnly:!0},{name:"find",bindKey:n("Ctrl-F","Command-F"),exec:function(e){r.loadModule("ace/ext/searchbox",function(t){t.Search(e)})},readOnly:!0},{name:"overwrite",bindKey:"Insert",exec:function(e){e.toggleOverwrite()},readOnly:!0},{name:"selecttostart",bindKey:n("Ctrl-Shift-Home","Command-Shift-Up"),exec:function(e){e.getSelection().selectFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotostart",bindKey:n("Ctrl-Home","Command-Home|Command-Up"),exec:function(e){e.navigateFileStart()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectup",bindKey:n("Shift-Up","Shift-Up"),exec:function(e){e.getSelection().selectUp()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golineup",bindKey:n("Up","Up|Ctrl-P"),exec:function(e,t){e.navigateUp(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttoend",bindKey:n("Ctrl-Shift-End","Command-Shift-Down"),exec:function(e){e.getSelection().selectFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"gotoend",bindKey:n("Ctrl-End","Command-End|Command-Down"),exec:function(e){e.navigateFileEnd()},multiSelectAction:"forEach",readOnly:!0,scrollIntoView:"animate",aceCommandGroup:"fileJump"},{name:"selectdown",bindKey:n("Shift-Down","Shift-Down"),exec:function(e){e.getSelection().selectDown()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"golinedown",bindKey:n("Down","Down|Ctrl-N"),exec:function(e,t){e.navigateDown(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordleft",bindKey:n("Ctrl-Shift-Left","Option-Shift-Left"),exec:function(e){e.getSelection().selectWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordleft",bindKey:n("Ctrl-Left","Option-Left"),exec:function(e){e.navigateWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolinestart",bindKey:n("Alt-Shift-Left","Command-Shift-Left"),exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolinestart",bindKey:n("Alt-Left|Home","Command-Left|Home|Ctrl-A"),exec:function(e){e.navigateLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectleft",bindKey:n("Shift-Left","Shift-Left"),exec:function(e){e.getSelection().selectLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoleft",bindKey:n("Left","Left|Ctrl-B"),exec:function(e,t){e.navigateLeft(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectwordright",bindKey:n("Ctrl-Shift-Right","Option-Shift-Right"),exec:function(e){e.getSelection().selectWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotowordright",bindKey:n("Ctrl-Right","Option-Right"),exec:function(e){e.navigateWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selecttolineend",bindKey:n("Alt-Shift-Right","Command-Shift-Right"),exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotolineend",bindKey:n("Alt-Right|End","Command-Right|End|Ctrl-E"),exec:function(e){e.navigateLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectright",bindKey:n("Shift-Right","Shift-Right"),exec:function(e){e.getSelection().selectRight()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"gotoright",bindKey:n("Right","Right|Ctrl-F"),exec:function(e,t){e.navigateRight(t.times)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectpagedown",bindKey:"Shift-PageDown",exec:function(e){e.selectPageDown()},readOnly:!0},{name:"pagedown",bindKey:n(null,"Option-PageDown"),exec:function(e){e.scrollPageDown()},readOnly:!0},{name:"gotopagedown",bindKey:n("PageDown","PageDown|Ctrl-V"),exec:function(e){e.gotoPageDown()},readOnly:!0},{name:"selectpageup",bindKey:"Shift-PageUp",exec:function(e){e.selectPageUp()},readOnly:!0},{name:"pageup",bindKey:n(null,"Option-PageUp"),exec:function(e){e.scrollPageUp()},readOnly:!0},{name:"gotopageup",bindKey:"PageUp",exec:function(e){e.gotoPageUp()},readOnly:!0},{name:"scrollup",bindKey:n("Ctrl-Up",null),exec:function(e){e.renderer.scrollBy(0,-2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"scrolldown",bindKey:n("Ctrl-Down",null),exec:function(e){e.renderer.scrollBy(0,2*e.renderer.layerConfig.lineHeight)},readOnly:!0},{name:"selectlinestart",bindKey:"Shift-Home",exec:function(e){e.getSelection().selectLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"selectlineend",bindKey:"Shift-End",exec:function(e){e.getSelection().selectLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"togglerecording",bindKey:n("Ctrl-Alt-E","Command-Option-E"),exec:function(e){e.commands.toggleRecording(e)},readOnly:!0},{name:"replaymacro",bindKey:n("Ctrl-Shift-E","Command-Shift-E"),exec:function(e){e.commands.replay(e)},readOnly:!0},{name:"jumptomatching",bindKey:n("Ctrl-P","Ctrl-P"),exec:function(e){e.jumpToMatching()},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"selecttomatching",bindKey:n("Ctrl-Shift-P","Ctrl-Shift-P"),exec:function(e){e.jumpToMatching(!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"expandToMatching",bindKey:n("Ctrl-Shift-M","Ctrl-Shift-M"),exec:function(e){e.jumpToMatching(!0,!0)},multiSelectAction:"forEach",scrollIntoView:"animate",readOnly:!0},{name:"passKeysToBrowser",bindKey:n(null,null),exec:function(){},passEvent:!0,readOnly:!0},{name:"copy",exec:function(e){},readOnly:!0},{name:"cut",exec:function(e){var t=e.getSelectionRange();e._emit("cut",t),e.selection.isEmpty()||(e.session.remove(t),e.clearSelection())},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"paste",exec:function(e,t){e.$handlePaste(t)},scrollIntoView:"cursor"},{name:"removeline",bindKey:n("Ctrl-D","Command-D"),exec:function(e){e.removeLines()},scrollIntoView:"cursor",multiSelectAction:"forEachLine"},{name:"duplicateSelection",bindKey:n("Ctrl-Shift-D","Command-Shift-D"),exec:function(e){e.duplicateSelection()},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"sortlines",bindKey:n("Ctrl-Alt-S","Command-Alt-S"),exec:function(e){e.sortLines()},scrollIntoView:"selection",multiSelectAction:"forEachLine"},{name:"togglecomment",bindKey:n("Ctrl-/","Command-/"),exec:function(e){e.toggleCommentLines()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"toggleBlockComment",bindKey:n("Ctrl-Shift-/","Command-Shift-/"),
|
|
|
+exec:function(e){e.toggleBlockComment()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"modifyNumberUp",bindKey:n("Ctrl-Shift-Up","Alt-Shift-Up"),exec:function(e){e.modifyNumber(1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"modifyNumberDown",bindKey:n("Ctrl-Shift-Down","Alt-Shift-Down"),exec:function(e){e.modifyNumber(-1)},scrollIntoView:"cursor",multiSelectAction:"forEach"},{name:"replace",bindKey:n("Ctrl-H","Command-Option-F"),exec:function(e){r.loadModule("ace/ext/searchbox",function(t){t.Search(e,!0)})}},{name:"undo",bindKey:n("Ctrl-Z","Command-Z"),exec:function(e){e.undo()}},{name:"redo",bindKey:n("Ctrl-Shift-Z|Ctrl-Y","Command-Shift-Z|Command-Y"),exec:function(e){e.redo()}},{name:"copylinesup",bindKey:n("Alt-Shift-Up","Command-Option-Up"),exec:function(e){e.copyLinesUp()},scrollIntoView:"cursor"},{name:"movelinesup",bindKey:n("Alt-Up","Option-Up"),exec:function(e){e.moveLinesUp()},scrollIntoView:"cursor"},{name:"copylinesdown",bindKey:n("Alt-Shift-Down","Command-Option-Down"),exec:function(e){e.copyLinesDown()},scrollIntoView:"cursor"},{name:"movelinesdown",bindKey:n("Alt-Down","Option-Down"),exec:function(e){e.moveLinesDown()},scrollIntoView:"cursor"},{name:"del",bindKey:n("Delete","Delete|Ctrl-D|Shift-Delete"),exec:function(e){e.remove("right")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"backspace",bindKey:n("Shift-Backspace|Backspace","Ctrl-Backspace|Shift-Backspace|Backspace|Ctrl-H"),exec:function(e){e.remove("left")},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"cut_or_delete",bindKey:n("Shift-Delete",null),exec:function(e){return e.selection.isEmpty()?void e.remove("left"):!1},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolinestart",bindKey:n("Alt-Backspace","Command-Backspace"),exec:function(e){e.removeToLineStart()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removetolineend",bindKey:n("Alt-Delete","Ctrl-K"),exec:function(e){e.removeToLineEnd()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordleft",bindKey:n("Ctrl-Backspace","Alt-Backspace|Ctrl-Alt-Backspace"),exec:function(e){e.removeWordLeft()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"removewordright",bindKey:n("Ctrl-Delete","Alt-Delete"),exec:function(e){e.removeWordRight()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"outdent",bindKey:n("Shift-Tab","Shift-Tab"),exec:function(e){e.blockOutdent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"indent",bindKey:n("Tab","Tab"),exec:function(e){e.indent()},multiSelectAction:"forEach",scrollIntoView:"selectionPart"},{name:"blockoutdent",bindKey:n("Ctrl-[","Ctrl-["),exec:function(e){e.blockOutdent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"blockindent",bindKey:n("Ctrl-]","Ctrl-]"),exec:function(e){e.blockIndent()},multiSelectAction:"forEachLine",scrollIntoView:"selectionPart"},{name:"insertstring",exec:function(e,t){e.insert(t)},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"inserttext",exec:function(e,t){e.insert(o.stringRepeat(t.text||"",t.times||1))},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"splitline",bindKey:n(null,"Ctrl-O"),exec:function(e){e.splitLine()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"transposeletters",bindKey:n("Ctrl-T","Ctrl-T"),exec:function(e){e.transposeLetters()},multiSelectAction:function(e){e.transposeSelections(1)},scrollIntoView:"cursor"},{name:"touppercase",bindKey:n("Ctrl-U","Ctrl-U"),exec:function(e){e.toUpperCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"tolowercase",bindKey:n("Ctrl-Shift-U","Ctrl-Shift-U"),exec:function(e){e.toLowerCase()},multiSelectAction:"forEach",scrollIntoView:"cursor"},{name:"expandtoline",bindKey:n("Ctrl-Shift-L","Command-Shift-L"),exec:function(e){var t=e.selection.getRange();t.start.column=t.end.column=0,t.end.row++,e.selection.setRange(t,!1)},multiSelectAction:"forEach",scrollIntoView:"cursor",readOnly:!0},{name:"joinlines",bindKey:n(null,null),exec:function(e){for(var t=e.selection.isBackwards(),i=t?e.selection.getSelectionLead():e.selection.getSelectionAnchor(),n=t?e.selection.getSelectionAnchor():e.selection.getSelectionLead(),r=e.session.doc.getLine(i.row).length,a=e.session.doc.getTextRange(e.selection.getRange()),l=a.replace(/\n\s*/," ").length,c=e.session.doc.getLine(i.row),h=i.row+1;h<=n.row+1;h++){var u=o.stringTrimLeft(o.stringTrimRight(e.session.doc.getLine(h)));0!==u.length&&(u=" "+u),c+=u}n.row+1<e.session.doc.getLength()-1&&(c+=e.session.doc.getNewLineCharacter()),e.clearSelection(),e.session.doc.replace(new s(i.row,0,n.row+2,0),c),l>0?(e.selection.moveCursorTo(i.row,i.column),e.selection.selectTo(i.row,i.column+l)):(r=e.session.doc.getLine(i.row).length>r?r+1:r,e.selection.moveCursorTo(i.row,r))},multiSelectAction:"forEach",readOnly:!0},{name:"invertSelection",bindKey:n(null,null),exec:function(e){var t=e.session.doc.getLength()-1,i=e.session.doc.getLine(t).length,n=e.selection.rangeList.ranges,o=[];n.length<1&&(n=[e.selection.getRange()]);for(var r=0;r<n.length;r++)r==n.length-1&&(n[r].end.row!==t||n[r].end.column!==i)&&o.push(new s(n[r].end.row,n[r].end.column,t,i)),0===r?(0!==n[r].start.row||0!==n[r].start.column)&&o.push(new s(0,0,n[r].start.row,n[r].start.column)):o.push(new s(n[r-1].end.row,n[r-1].end.column,n[r].start.row,n[r].start.column));e.exitMultiSelectMode(),e.clearSelection();for(var r=0;r<o.length;r++)e.selection.addRange(o[r],!1)},readOnly:!0,scrollIntoView:"none"}]}),define("ace/editor",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/keyboard/textinput","ace/mouse/mouse_handler","ace/mouse/fold_handler","ace/keyboard/keybinding","ace/edit_session","ace/search","ace/range","ace/lib/event_emitter","ace/commands/command_manager","ace/commands/default_commands","ace/config","ace/token_iterator"],function(e,t,i){"use strict";e("./lib/fixoldbrowsers");var n=e("./lib/oop"),o=e("./lib/dom"),r=e("./lib/lang"),s=e("./lib/useragent"),a=e("./keyboard/textinput").TextInput,l=e("./mouse/mouse_handler").MouseHandler,c=e("./mouse/fold_handler").FoldHandler,h=e("./keyboard/keybinding").KeyBinding,u=e("./edit_session").EditSession,d=e("./search").Search,g=e("./range").Range,f=e("./lib/event_emitter").EventEmitter,m=e("./commands/command_manager").CommandManager,p=e("./commands/default_commands").commands,A=e("./config"),v=e("./token_iterator").TokenIterator,C=function(e,t){var i=e.getContainerElement();this.container=i,this.renderer=e,this.commands=new m(s.isMac?"mac":"win",p),this.textInput=new a(e.getTextAreaContainer(),this),this.renderer.textarea=this.textInput.getElement(),this.keyBinding=new h(this),this.$mouseHandler=new l(this),new c(this),this.$blockScrolling=0,this.$search=(new d).set({wrap:!0}),this.$historyTracker=this.$historyTracker.bind(this),this.commands.on("exec",this.$historyTracker),this.$initOperationListeners(),this._$emitInputEvent=r.delayedCall(function(){this._signal("input",{}),this.session&&this.session.bgTokenizer&&this.session.bgTokenizer.scheduleStart()}.bind(this)),this.on("change",function(e,t){t._$emitInputEvent.schedule(31)}),this.setSession(t||new u("")),A.resetOptions(this),A._signal("editor",this)};(function(){n.implement(this,f),this.$initOperationListeners=function(){this.selections=[],this.commands.on("exec",this.startOperation.bind(this),!0),this.commands.on("afterExec",this.endOperation.bind(this),!0),this.$opResetTimer=r.delayedCall(this.endOperation.bind(this)),this.on("change",function(){this.curOp||this.startOperation(),this.curOp.docChanged=!0}.bind(this),!0),this.on("changeSelection",function(){this.curOp||this.startOperation(),this.curOp.selectionChanged=!0}.bind(this),!0)},this.curOp=null,this.prevOp={},this.startOperation=function(e){if(this.curOp){if(!e||this.curOp.command)return;this.prevOp=this.curOp}e||(this.previousCommand=null,e={}),this.$opResetTimer.schedule(),this.curOp={command:e.command||{},args:e.args,scrollTop:this.renderer.scrollTop},this.curOp.command.name&&void 0!==this.curOp.command.scrollIntoView&&this.$blockScrolling++},this.endOperation=function(e){if(this.curOp){if(e&&e.returnValue===!1)return this.curOp=null;this._signal("beforeEndOperation");var t=this.curOp.command;t.name&&this.$blockScrolling>0&&this.$blockScrolling--;var i=t&&t.scrollIntoView;if(i){switch(i){case"center-animate":i="animate";case"center":this.renderer.scrollCursorIntoView(null,.5);break;case"animate":case"cursor":this.renderer.scrollCursorIntoView();break;case"selectionPart":var n=this.selection.getRange(),o=this.renderer.layerConfig;(n.start.row>=o.lastRow||n.end.row<=o.firstRow)&&this.renderer.scrollSelectionIntoView(this.selection.anchor,this.selection.lead)}"animate"==i&&this.renderer.animateScrolling(this.curOp.scrollTop)}this.prevOp=this.curOp,this.curOp=null}},this.$mergeableCommands=["backspace","del","insertstring"],this.$historyTracker=function(e){if(this.$mergeUndoDeltas){var t=this.prevOp,i=this.$mergeableCommands,n=t.command&&e.command.name==t.command.name;if("insertstring"==e.command.name){var o=e.args;void 0===this.mergeNextCommand&&(this.mergeNextCommand=!0),n=n&&this.mergeNextCommand&&(!/\s/.test(o)||/\s/.test(t.args)),this.mergeNextCommand=!0}else n=n&&-1!==i.indexOf(e.command.name);"always"!=this.$mergeUndoDeltas&&Date.now()-this.sequenceStartTime>2e3&&(n=!1),n?this.session.mergeUndoDeltas=!0:-1!==i.indexOf(e.command.name)&&(this.sequenceStartTime=Date.now())}},this.setKeyboardHandler=function(e,t){if(e&&"string"==typeof e){this.$keybindingId=e;var i=this;A.loadModule(["keybinding",e],function(n){i.$keybindingId==e&&i.keyBinding.setKeyboardHandler(n&&n.handler),t&&t()})}else this.$keybindingId=null,this.keyBinding.setKeyboardHandler(e),t&&t()},this.getKeyboardHandler=function(){return this.keyBinding.getKeyboardHandler()},this.setSession=function(e){if(this.session!=e){this.curOp&&this.endOperation(),this.curOp={};var t=this.session;if(t){this.session.removeEventListener("change",this.$onDocumentChange),this.session.removeEventListener("changeMode",this.$onChangeMode),this.session.removeEventListener("tokenizerUpdate",this.$onTokenizerUpdate),this.session.removeEventListener("changeTabSize",this.$onChangeTabSize),this.session.removeEventListener("changeWrapLimit",this.$onChangeWrapLimit),this.session.removeEventListener("changeWrapMode",this.$onChangeWrapMode),this.session.removeEventListener("onChangeFold",this.$onChangeFold),this.session.removeEventListener("changeFrontMarker",this.$onChangeFrontMarker),this.session.removeEventListener("changeBackMarker",this.$onChangeBackMarker),this.session.removeEventListener("changeBreakpoint",this.$onChangeBreakpoint),this.session.removeEventListener("changeAnnotation",this.$onChangeAnnotation),this.session.removeEventListener("changeOverwrite",this.$onCursorChange),this.session.removeEventListener("changeScrollTop",this.$onScrollTopChange),this.session.removeEventListener("changeScrollLeft",this.$onScrollLeftChange);var i=this.session.getSelection();i.removeEventListener("changeCursor",this.$onCursorChange),i.removeEventListener("changeSelection",this.$onSelectionChange)}this.session=e,e?(this.$onDocumentChange=this.onDocumentChange.bind(this),e.addEventListener("change",this.$onDocumentChange),this.renderer.setSession(e),this.$onChangeMode=this.onChangeMode.bind(this),e.addEventListener("changeMode",this.$onChangeMode),this.$onTokenizerUpdate=this.onTokenizerUpdate.bind(this),e.addEventListener("tokenizerUpdate",this.$onTokenizerUpdate),this.$onChangeTabSize=this.renderer.onChangeTabSize.bind(this.renderer),e.addEventListener("changeTabSize",this.$onChangeTabSize),this.$onChangeWrapLimit=this.onChangeWrapLimit.bind(this),e.addEventListener("changeWrapLimit",this.$onChangeWrapLimit),this.$onChangeWrapMode=this.onChangeWrapMode.bind(this),e.addEventListener("changeWrapMode",this.$onChangeWrapMode),this.$onChangeFold=this.onChangeFold.bind(this),e.addEventListener("changeFold",this.$onChangeFold),this.$onChangeFrontMarker=this.onChangeFrontMarker.bind(this),this.session.addEventListener("changeFrontMarker",this.$onChangeFrontMarker),this.$onChangeBackMarker=this.onChangeBackMarker.bind(this),this.session.addEventListener("changeBackMarker",this.$onChangeBackMarker),this.$onChangeBreakpoint=this.onChangeBreakpoint.bind(this),this.session.addEventListener("changeBreakpoint",this.$onChangeBreakpoint),this.$onChangeAnnotation=this.onChangeAnnotation.bind(this),this.session.addEventListener("changeAnnotation",this.$onChangeAnnotation),this.$onCursorChange=this.onCursorChange.bind(this),this.session.addEventListener("changeOverwrite",this.$onCursorChange),this.$onScrollTopChange=this.onScrollTopChange.bind(this),this.session.addEventListener("changeScrollTop",this.$onScrollTopChange),this.$onScrollLeftChange=this.onScrollLeftChange.bind(this),this.session.addEventListener("changeScrollLeft",this.$onScrollLeftChange),this.selection=e.getSelection(),this.selection.addEventListener("changeCursor",this.$onCursorChange),this.$onSelectionChange=this.onSelectionChange.bind(this),this.selection.addEventListener("changeSelection",this.$onSelectionChange),this.onChangeMode(),this.$blockScrolling+=1,this.onCursorChange(),this.$blockScrolling-=1,this.onScrollTopChange(),this.onScrollLeftChange(),this.onSelectionChange(),this.onChangeFrontMarker(),this.onChangeBackMarker(),this.onChangeBreakpoint(),this.onChangeAnnotation(),this.session.getUseWrapMode()&&this.renderer.adjustWrapLimit(),this.renderer.updateFull()):(this.selection=null,this.renderer.setSession(e)),this._signal("changeSession",{session:e,oldSession:t}),this.curOp=null,t&&t._signal("changeEditor",{oldEditor:this}),e&&e._signal("changeEditor",{editor:this})}},this.getSession=function(){return this.session},this.setValue=function(e,t){return this.session.doc.setValue(e),t?1==t?this.navigateFileEnd():-1==t&&this.navigateFileStart():this.selectAll(),e},this.getValue=function(){return this.session.getValue()},this.getSelection=function(){return this.selection},this.resize=function(e){this.renderer.onResize(e)},this.setTheme=function(e,t){this.renderer.setTheme(e,t)},this.getTheme=function(){return this.renderer.getTheme()},this.setStyle=function(e){this.renderer.setStyle(e)},this.unsetStyle=function(e){this.renderer.unsetStyle(e)},this.getFontSize=function(){return this.getOption("fontSize")||o.computedStyle(this.container,"fontSize")},this.setFontSize=function(e){this.setOption("fontSize",e)},this.$highlightBrackets=function(){if(this.session.$bracketHighlight&&(this.session.removeMarker(this.session.$bracketHighlight),this.session.$bracketHighlight=null),!this.$highlightPending){var e=this;this.$highlightPending=!0,setTimeout(function(){e.$highlightPending=!1;var t=e.session;if(t&&t.bgTokenizer){var i=t.findMatchingBracket(e.getCursorPosition());if(i)var n=new g(i.row,i.column,i.row,i.column+1);else if(t.$mode.getMatching)var n=t.$mode.getMatching(e.session);n&&(t.$bracketHighlight=t.addMarker(n,"ace_bracket","text"))}},50)}},this.$highlightTags=function(){if(!this.$highlightTagPending){var e=this;this.$highlightTagPending=!0,setTimeout(function(){e.$highlightTagPending=!1;var t=e.session;if(t&&t.bgTokenizer){var i=e.getCursorPosition(),n=new v(e.session,i.row,i.column),o=n.getCurrentToken();if(!o||!/\b(?:tag-open|tag-name)/.test(o.type))return t.removeMarker(t.$tagHighlight),void(t.$tagHighlight=null);if(-1==o.type.indexOf("tag-open")||(o=n.stepForward())){var r=o.value,s=0,a=n.stepBackward();if("<"==a.value){do a=o,o=n.stepForward(),o&&o.value===r&&-1!==o.type.indexOf("tag-name")&&("<"===a.value?s++:"</"===a.value&&s--);while(o&&s>=0)}else{do o=a,a=n.stepBackward(),o&&o.value===r&&-1!==o.type.indexOf("tag-name")&&("<"===a.value?s++:"</"===a.value&&s--);while(a&&0>=s);n.stepForward()}if(!o)return t.removeMarker(t.$tagHighlight),void(t.$tagHighlight=null);var l=n.getCurrentTokenRow(),c=n.getCurrentTokenColumn(),h=new g(l,c,l,c+o.value.length);t.$tagHighlight&&0!==h.compareRange(t.$backMarkers[t.$tagHighlight].range)&&(t.removeMarker(t.$tagHighlight),t.$tagHighlight=null),h&&!t.$tagHighlight&&(t.$tagHighlight=t.addMarker(h,"ace_bracket","text"))}}},50)}},this.focus=function(){var e=this;setTimeout(function(){e.textInput.focus()}),this.textInput.focus()},this.isFocused=function(){return this.textInput.isFocused()},this.blur=function(){this.textInput.blur()},this.onFocus=function(e){this.$isFocused||(this.$isFocused=!0,this.renderer.showCursor(),this.renderer.visualizeFocus(),this._emit("focus",e))},this.onBlur=function(e){this.$isFocused&&(this.$isFocused=!1,this.renderer.hideCursor(),this.renderer.visualizeBlur(),this._emit("blur",e))},this.$cursorChange=function(){this.renderer.updateCursor()},this.onDocumentChange=function(e){var t=this.session.$useWrapMode,i=e.start.row==e.end.row?e.end.row:1/0;this.renderer.updateLines(e.start.row,i,t),this._signal("change",e),this.$cursorChange(),this.$updateHighlightActiveLine()},this.onTokenizerUpdate=function(e){var t=e.data;this.renderer.updateLines(t.first,t.last)},this.onScrollTopChange=function(){this.renderer.scrollToY(this.session.getScrollTop())},this.onScrollLeftChange=function(){this.renderer.scrollToX(this.session.getScrollLeft())},this.onCursorChange=function(){this.$cursorChange(),this.$blockScrolling||(A.warn("Automatically scrolling cursor into view after selection change","this will be disabled in the next version","set editor.$blockScrolling = Infinity to disable this message"),this.renderer.scrollCursorIntoView()),this.$highlightBrackets(),this.$highlightTags(),this.$updateHighlightActiveLine(),this._signal("changeSelection")},this.$updateHighlightActiveLine=function(){var e,t=this.getSession();if(this.$highlightActiveLine&&("line"==this.$selectionStyle&&this.selection.isMultiLine()||(e=this.getCursorPosition()),!this.renderer.$maxLines||1!==this.session.getLength()||this.renderer.$minLines>1||(e=!1)),t.$highlightLineMarker&&!e)t.removeMarker(t.$highlightLineMarker.id),t.$highlightLineMarker=null;else if(!t.$highlightLineMarker&&e){var i=new g(e.row,e.column,e.row,1/0);i.id=t.addMarker(i,"ace_active-line","screenLine"),t.$highlightLineMarker=i}else e&&(t.$highlightLineMarker.start.row=e.row,t.$highlightLineMarker.end.row=e.row,t.$highlightLineMarker.start.column=e.column,t._signal("changeBackMarker"))},this.onSelectionChange=function(e){var t=this.session;if(t.$selectionMarker&&t.removeMarker(t.$selectionMarker),t.$selectionMarker=null,this.selection.isEmpty())this.$updateHighlightActiveLine();else{var i=this.selection.getRange(),n=this.getSelectionStyle();t.$selectionMarker=t.addMarker(i,"ace_selection",n)}var o=this.$highlightSelectedWord&&this.$getSelectionHighLightRegexp();this.session.highlight(o),this._signal("changeSelection")},this.$getSelectionHighLightRegexp=function(){var e=this.session,t=this.getSelectionRange();if(!t.isEmpty()&&!t.isMultiLine()){var i=t.start.column-1,n=t.end.column+1,o=e.getLine(t.start.row),r=o.length,s=o.substring(Math.max(i,0),Math.min(n,r));if(!(i>=0&&/^[\w\d]/.test(s)||r>=n&&/[\w\d]$/.test(s))&&(s=o.substring(t.start.column,t.end.column),/^[\w\d]+$/.test(s))){var a=this.$search.$assembleRegExp({wholeWord:!0,caseSensitive:!0,needle:s});return a}}},this.onChangeFrontMarker=function(){this.renderer.updateFrontMarkers()},this.onChangeBackMarker=function(){this.renderer.updateBackMarkers()},this.onChangeBreakpoint=function(){this.renderer.updateBreakpoints()},this.onChangeAnnotation=function(){this.renderer.setAnnotations(this.session.getAnnotations())},this.onChangeMode=function(e){this.renderer.updateText(),this._emit("changeMode",e)},this.onChangeWrapLimit=function(){this.renderer.updateFull()},this.onChangeWrapMode=function(){this.renderer.onResize(!0)},this.onChangeFold=function(){this.$updateHighlightActiveLine(),this.renderer.updateFull()},this.getSelectedText=function(){return this.session.getTextRange(this.getSelectionRange())},this.getCopyText=function(){var e=this.getSelectedText();return this._signal("copy",e),e},this.onCopy=function(){this.commands.exec("copy",this)},this.onCut=function(){this.commands.exec("cut",this)},this.onPaste=function(e,t){var i={text:e,event:t};this.commands.exec("paste",this,i)},this.$handlePaste=function(e){"string"==typeof e&&(e={text:e}),this._signal("paste",e);var t=e.text;if(!this.inMultiSelectMode||this.inVirtualSelectionMode)this.insert(t);else{var i=t.split(/\r\n|\r|\n/),n=this.selection.rangeList.ranges;if(i.length>n.length||i.length<2||!i[1])return this.commands.exec("insertstring",this,t);for(var o=n.length;o--;){var r=n[o];r.isEmpty()||this.session.remove(r),this.session.insert(r.start,i[o])}}},this.execCommand=function(e,t){return this.commands.exec(e,this,t)},this.insert=function(e,t){var i=this.session,n=i.getMode(),o=this.getCursorPosition();if(this.getBehavioursEnabled()&&!t){var r=n.transformAction(i.getState(o.row),"insertion",this,i,e);r&&(e!==r.text&&(this.session.mergeUndoDeltas=!1,this.$mergeNextCommand=!1),e=r.text)}if(" "==e&&(e=this.session.getTabString()),this.selection.isEmpty()){if(this.session.getOverwrite()){var s=new g.fromPoints(o,o);s.end.column+=e.length,this.session.remove(s)}}else{var s=this.getSelectionRange();o=this.session.remove(s),this.clearSelection()}if("\n"==e||"\r\n"==e){var a=i.getLine(o.row);if(o.column>a.search(/\S|$/)){var l=a.substr(o.column).search(/\S|$/);i.doc.removeInLine(o.row,o.column,o.column+l)}}this.clearSelection();{var c=o.column,h=i.getState(o.row),a=i.getLine(o.row),u=n.checkOutdent(h,a,e);i.insert(o,e)}if(r&&r.selection&&this.selection.setSelectionRange(2==r.selection.length?new g(o.row,c+r.selection[0],o.row,c+r.selection[1]):new g(o.row+r.selection[0],r.selection[1],o.row+r.selection[2],r.selection[3])),i.getDocument().isNewLine(e)){var d=n.getNextLineIndent(h,a.slice(0,o.column),i.getTabString());i.insert({row:o.row+1,column:0},d)}u&&n.autoOutdent(h,i,o.row)},this.onTextInput=function(e){this.keyBinding.onTextInput(e)},this.onCommandKey=function(e,t,i){this.keyBinding.onCommandKey(e,t,i)},this.setOverwrite=function(e){this.session.setOverwrite(e)},this.getOverwrite=function(){return this.session.getOverwrite()},this.toggleOverwrite=function(){this.session.toggleOverwrite()},this.setScrollSpeed=function(e){this.setOption("scrollSpeed",e)},this.getScrollSpeed=function(){return this.getOption("scrollSpeed")},this.setDragDelay=function(e){this.setOption("dragDelay",e)},this.getDragDelay=function(){return this.getOption("dragDelay")},this.setSelectionStyle=function(e){this.setOption("selectionStyle",e)},this.getSelectionStyle=function(){return this.getOption("selectionStyle")},this.setHighlightActiveLine=function(e){this.setOption("highlightActiveLine",e)},this.getHighlightActiveLine=function(){return this.getOption("highlightActiveLine")},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.setHighlightSelectedWord=function(e){this.setOption("highlightSelectedWord",e)},this.getHighlightSelectedWord=function(){return this.$highlightSelectedWord},this.setAnimatedScroll=function(e){this.renderer.setAnimatedScroll(e)},this.getAnimatedScroll=function(){return this.renderer.getAnimatedScroll()},this.setShowInvisibles=function(e){this.renderer.setShowInvisibles(e)},this.getShowInvisibles=function(){return this.renderer.getShowInvisibles()},this.setDisplayIndentGuides=function(e){this.renderer.setDisplayIndentGuides(e)},this.getDisplayIndentGuides=function(){return this.renderer.getDisplayIndentGuides()},this.setShowPrintMargin=function(e){this.renderer.setShowPrintMargin(e)},this.getShowPrintMargin=function(){return this.renderer.getShowPrintMargin()},this.setPrintMarginColumn=function(e){this.renderer.setPrintMarginColumn(e)},this.getPrintMarginColumn=function(){return this.renderer.getPrintMarginColumn()},this.setReadOnly=function(e){this.setOption("readOnly",e)},this.getReadOnly=function(){return this.getOption("readOnly")},this.setBehavioursEnabled=function(e){this.setOption("behavioursEnabled",e)},this.getBehavioursEnabled=function(){return this.getOption("behavioursEnabled")},this.setWrapBehavioursEnabled=function(e){this.setOption("wrapBehavioursEnabled",e)},this.getWrapBehavioursEnabled=function(){return this.getOption("wrapBehavioursEnabled")},this.setShowFoldWidgets=function(e){this.setOption("showFoldWidgets",e)},this.getShowFoldWidgets=function(){return this.getOption("showFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.remove=function(e){this.selection.isEmpty()&&("left"==e?this.selection.selectLeft():this.selection.selectRight());var t=this.getSelectionRange();if(this.getBehavioursEnabled()){var i=this.session,n=i.getState(t.start.row),o=i.getMode().transformAction(n,"deletion",this,i,t);if(0===t.end.column){var r=i.getTextRange(t);if("\n"==r[r.length-1]){var s=i.getLine(t.end.row);/^\s+$/.test(s)&&(t.end.column=s.length)}}o&&(t=o)}this.session.remove(t),this.clearSelection()},this.removeWordRight=function(){this.selection.isEmpty()&&this.selection.selectWordRight(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeWordLeft=function(){this.selection.isEmpty()&&this.selection.selectWordLeft(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineStart=function(){this.selection.isEmpty()&&this.selection.selectLineStart(),this.session.remove(this.getSelectionRange()),this.clearSelection()},this.removeToLineEnd=function(){this.selection.isEmpty()&&this.selection.selectLineEnd();var e=this.getSelectionRange();e.start.column==e.end.column&&e.start.row==e.end.row&&(e.end.column=0,e.end.row++),this.session.remove(e),this.clearSelection()},this.splitLine=function(){this.selection.isEmpty()||(this.session.remove(this.getSelectionRange()),this.clearSelection());var e=this.getCursorPosition();this.insert("\n"),this.moveCursorToPosition(e)},this.transposeLetters=function(){if(this.selection.isEmpty()){var e=this.getCursorPosition(),t=e.column;if(0!==t){var i,n,o=this.session.getLine(e.row);t<o.length?(i=o.charAt(t)+o.charAt(t-1),n=new g(e.row,t-1,e.row,t+1)):(i=o.charAt(t-1)+o.charAt(t-2),n=new g(e.row,t-2,e.row,t)),this.session.replace(n,i)}}},this.toLowerCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),i=this.session.getTextRange(t);this.session.replace(t,i.toLowerCase()),this.selection.setSelectionRange(e)},this.toUpperCase=function(){var e=this.getSelectionRange();this.selection.isEmpty()&&this.selection.selectWord();var t=this.getSelectionRange(),i=this.session.getTextRange(t);this.session.replace(t,i.toUpperCase()),this.selection.setSelectionRange(e)},this.indent=function(){var e=this.session,t=this.getSelectionRange();if(t.start.row<t.end.row){var i=this.$getSelectedRows();return void e.indentRows(i.first,i.last," ")}if(t.start.column<t.end.column){var n=e.getTextRange(t);if(!/^\s+$/.test(n)){var i=this.$getSelectedRows();return void e.indentRows(i.first,i.last," ")}}var o=e.getLine(t.start.row),s=t.start,a=e.getTabSize(),l=e.documentToScreenColumn(s.row,s.column);if(this.session.getUseSoftTabs())var c=a-l%a,h=r.stringRepeat(" ",c);else{for(var c=l%a;" "==o[t.start.column]&&c;)t.start.column--,c--;this.selection.setSelectionRange(t),h=" "}return this.insert(h)},this.blockIndent=function(){var e=this.$getSelectedRows();this.session.indentRows(e.first,e.last," ")},this.blockOutdent=function(){var e=this.session.getSelection();this.session.outdentRows(e.getRange())},this.sortLines=function(){var e=this.$getSelectedRows(),t=this.session,i=[];for(o=e.first;o<=e.last;o++)i.push(t.getLine(o));i.sort(function(e,t){return e.toLowerCase()<t.toLowerCase()?-1:e.toLowerCase()>t.toLowerCase()?1:0});for(var n=new g(0,0,0,0),o=e.first;o<=e.last;o++){var r=t.getLine(o);n.start.row=o,n.end.row=o,n.end.column=r.length,t.replace(n,i[o-e.first])}},this.toggleCommentLines=function(){var e=this.session.getState(this.getCursorPosition().row),t=this.$getSelectedRows();this.session.getMode().toggleCommentLines(e,this.session,t.first,t.last)},this.toggleBlockComment=function(){var e=this.getCursorPosition(),t=this.session.getState(e.row),i=this.getSelectionRange();this.session.getMode().toggleBlockComment(t,this.session,i,e)},this.getNumberAt=function(e,t){var i=/[\-]?[0-9]+(?:\.[0-9]+)?/g;i.lastIndex=0;for(var n=this.session.getLine(e);i.lastIndex<t;){var o=i.exec(n);if(o.index<=t&&o.index+o[0].length>=t){var r={value:o[0],start:o.index,end:o.index+o[0].length};return r}}return null},this.modifyNumber=function(e){var t=this.selection.getCursor().row,i=this.selection.getCursor().column,n=new g(t,i-1,t,i),o=this.session.getTextRange(n);if(!isNaN(parseFloat(o))&&isFinite(o)){var r=this.getNumberAt(t,i);if(r){var s=r.value.indexOf(".")>=0?r.start+r.value.indexOf(".")+1:r.end,a=r.start+r.value.length-s,l=parseFloat(r.value);l*=Math.pow(10,a),e*=s!==r.end&&s>i?Math.pow(10,r.end-i-1):Math.pow(10,r.end-i),l+=e,l/=Math.pow(10,a);var c=l.toFixed(a),h=new g(t,r.start,t,r.end);this.session.replace(h,c),this.moveCursorTo(t,Math.max(r.start+1,i+c.length-r.value.length))}}},this.removeLines=function(){var e=this.$getSelectedRows();this.session.removeFullLines(e.first,e.last),this.clearSelection()},this.duplicateSelection=function(){var e=this.selection,t=this.session,i=e.getRange(),n=e.isBackwards();if(i.isEmpty()){var o=i.start.row;t.duplicateLines(o,o)}else{var r=n?i.start:i.end,s=t.insert(r,t.getTextRange(i),!1);i.start=r,i.end=s,e.setSelectionRange(i,n)}},this.moveLinesDown=function(){this.$moveLines(1,!1)},this.moveLinesUp=function(){this.$moveLines(-1,!1)},this.moveText=function(e,t,i){return this.session.moveText(e,t,i)},this.copyLinesUp=function(){this.$moveLines(-1,!0)},this.copyLinesDown=function(){this.$moveLines(1,!0)},this.$moveLines=function(e,t){var i,n,o=this.selection;if(!o.inMultiSelectMode||this.inVirtualSelectionMode){var r=o.toOrientedRange();i=this.$getSelectedRows(r),n=this.session.$moveLines(i.first,i.last,t?0:e),t&&-1==e&&(n=0),r.moveBy(n,0),o.fromOrientedRange(r)}else{var s=o.rangeList.ranges;o.rangeList.detach(this.session),this.inVirtualSelectionMode=!0;for(var a=0,l=0,c=s.length,h=0;c>h;h++){var u=h;s[h].moveBy(a,0),i=this.$getSelectedRows(s[h]);for(var d=i.first,g=i.last;++h<c;){l&&s[h].moveBy(l,0);var f=this.$getSelectedRows(s[h]);if(t&&f.first!=g)break;if(!t&&f.first>g+1)break;g=f.last}for(h--,a=this.session.$moveLines(d,g,t?0:e),t&&-1==e&&(u=h+1);h>=u;)s[u].moveBy(a,0),u++;t||(a=0),l+=a}o.fromOrientedRange(o.ranges[0]),o.rangeList.attach(this.session),this.inVirtualSelectionMode=!1}},this.$getSelectedRows=function(e){return e=(e||this.getSelectionRange()).collapseRows(),{first:this.session.getRowFoldStart(e.start.row),last:this.session.getRowFoldEnd(e.end.row)}},this.onCompositionStart=function(e){this.renderer.showComposition(this.getCursorPosition())},this.onCompositionUpdate=function(e){this.renderer.setCompositionText(e)},this.onCompositionEnd=function(){this.renderer.hideComposition()},this.getFirstVisibleRow=function(){return this.renderer.getFirstVisibleRow()},this.getLastVisibleRow=function(){return this.renderer.getLastVisibleRow()},this.isRowVisible=function(e){return e>=this.getFirstVisibleRow()&&e<=this.getLastVisibleRow()},this.isRowFullyVisible=function(e){return e>=this.renderer.getFirstFullyVisibleRow()&&e<=this.renderer.getLastFullyVisibleRow()},this.$getVisibleRowCount=function(){return this.renderer.getScrollBottomRow()-this.renderer.getScrollTopRow()+1},this.$moveByPage=function(e,t){var i=this.renderer,n=this.renderer.layerConfig,o=e*Math.floor(n.height/n.lineHeight);this.$blockScrolling++,t===!0?this.selection.$moveSelection(function(){this.moveCursorBy(o,0)}):t===!1&&(this.selection.moveCursorBy(o,0),this.selection.clearSelection()),
|
|
|
+this.$blockScrolling--;var r=i.scrollTop;i.scrollBy(0,o*n.lineHeight),null!=t&&i.scrollCursorIntoView(null,.5),i.animateScrolling(r)},this.selectPageDown=function(){this.$moveByPage(1,!0)},this.selectPageUp=function(){this.$moveByPage(-1,!0)},this.gotoPageDown=function(){this.$moveByPage(1,!1)},this.gotoPageUp=function(){this.$moveByPage(-1,!1)},this.scrollPageDown=function(){this.$moveByPage(1)},this.scrollPageUp=function(){this.$moveByPage(-1)},this.scrollToRow=function(e){this.renderer.scrollToRow(e)},this.scrollToLine=function(e,t,i,n){this.renderer.scrollToLine(e,t,i,n)},this.centerSelection=function(){var e=this.getSelectionRange(),t={row:Math.floor(e.start.row+(e.end.row-e.start.row)/2),column:Math.floor(e.start.column+(e.end.column-e.start.column)/2)};this.renderer.alignCursor(t,.5)},this.getCursorPosition=function(){return this.selection.getCursor()},this.getCursorPositionScreen=function(){return this.session.documentToScreenPosition(this.getCursorPosition())},this.getSelectionRange=function(){return this.selection.getRange()},this.selectAll=function(){this.$blockScrolling+=1,this.selection.selectAll(),this.$blockScrolling-=1},this.clearSelection=function(){this.selection.clearSelection()},this.moveCursorTo=function(e,t){this.selection.moveCursorTo(e,t)},this.moveCursorToPosition=function(e){this.selection.moveCursorToPosition(e)},this.jumpToMatching=function(e,t){var i=this.getCursorPosition(),n=new v(this.session,i.row,i.column),o=n.getCurrentToken(),r=o||n.stepForward();if(r){var s,a,l=!1,c={},h=i.column-r.start,u={")":"(","(":"(","]":"[","[":"[","{":"{","}":"{"};do{if(r.value.match(/[{}()\[\]]/g)){for(;h<r.value.length&&!l;h++)if(u[r.value[h]])switch(a=u[r.value[h]]+"."+r.type.replace("rparen","lparen"),isNaN(c[a])&&(c[a]=0),r.value[h]){case"(":case"[":case"{":c[a]++;break;case")":case"]":case"}":c[a]--,-1===c[a]&&(s="bracket",l=!0)}}else r&&-1!==r.type.indexOf("tag-name")&&(isNaN(c[r.value])&&(c[r.value]=0),"<"===o.value?c[r.value]++:"</"===o.value&&c[r.value]--,-1===c[r.value]&&(s="tag",l=!0));l||(o=r,r=n.stepForward(),h=0)}while(r&&!l);if(s){var d,f;if("bracket"===s)d=this.session.getBracketRange(i),d||(d=new g(n.getCurrentTokenRow(),n.getCurrentTokenColumn()+h-1,n.getCurrentTokenRow(),n.getCurrentTokenColumn()+h-1),f=d.start,(t||f.row===i.row&&Math.abs(f.column-i.column)<2)&&(d=this.session.getBracketRange(f)));else if("tag"===s){if(!r||-1===r.type.indexOf("tag-name"))return;var m=r.value;if(d=new g(n.getCurrentTokenRow(),n.getCurrentTokenColumn()-2,n.getCurrentTokenRow(),n.getCurrentTokenColumn()-2),0===d.compare(i.row,i.column)){l=!1;do r=o,o=n.stepBackward(),o&&(-1!==o.type.indexOf("tag-close")&&d.setEnd(n.getCurrentTokenRow(),n.getCurrentTokenColumn()+1),r.value===m&&-1!==r.type.indexOf("tag-name")&&("<"===o.value?c[m]++:"</"===o.value&&c[m]--,0===c[m]&&(l=!0)));while(o&&!l)}r&&r.type.indexOf("tag-name")&&(f=d.start,f.row==i.row&&Math.abs(f.column-i.column)<2&&(f=d.end))}f=d&&d.cursor||f,f&&(e?d&&t?this.selection.setRange(d):d&&d.isEqual(this.getSelectionRange())?this.clearSelection():this.selection.selectTo(f.row,f.column):this.selection.moveTo(f.row,f.column))}}},this.gotoLine=function(e,t,i){this.selection.clearSelection(),this.session.unfold({row:e-1,column:t||0}),this.$blockScrolling+=1,this.exitMultiSelectMode&&this.exitMultiSelectMode(),this.moveCursorTo(e-1,t||0),this.$blockScrolling-=1,this.isRowFullyVisible(e-1)||this.scrollToLine(e-1,!0,i)},this.navigateTo=function(e,t){this.selection.moveTo(e,t)},this.navigateUp=function(e){if(this.selection.isMultiLine()&&!this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(-e||-1,0)},this.navigateDown=function(e){if(this.selection.isMultiLine()&&this.selection.isBackwards()){var t=this.selection.anchor.getPosition();return this.moveCursorToPosition(t)}this.selection.clearSelection(),this.selection.moveCursorBy(e||1,0)},this.navigateLeft=function(e){if(this.selection.isEmpty())for(e=e||1;e--;)this.selection.moveCursorLeft();else{var t=this.getSelectionRange().start;this.moveCursorToPosition(t)}this.clearSelection()},this.navigateRight=function(e){if(this.selection.isEmpty())for(e=e||1;e--;)this.selection.moveCursorRight();else{var t=this.getSelectionRange().end;this.moveCursorToPosition(t)}this.clearSelection()},this.navigateLineStart=function(){this.selection.moveCursorLineStart(),this.clearSelection()},this.navigateLineEnd=function(){this.selection.moveCursorLineEnd(),this.clearSelection()},this.navigateFileEnd=function(){this.selection.moveCursorFileEnd(),this.clearSelection()},this.navigateFileStart=function(){this.selection.moveCursorFileStart(),this.clearSelection()},this.navigateWordRight=function(){this.selection.moveCursorWordRight(),this.clearSelection()},this.navigateWordLeft=function(){this.selection.moveCursorWordLeft(),this.clearSelection()},this.replace=function(e,t){t&&this.$search.set(t);var i=this.$search.find(this.session),n=0;return i?(this.$tryReplace(i,e)&&(n=1),null!==i&&(this.selection.setSelectionRange(i),this.renderer.scrollSelectionIntoView(i.start,i.end)),n):n},this.replaceAll=function(e,t){t&&this.$search.set(t);var i=this.$search.findAll(this.session),n=0;if(!i.length)return n;this.$blockScrolling+=1;var o=this.getSelectionRange();this.selection.moveTo(0,0);for(var r=i.length-1;r>=0;--r)this.$tryReplace(i[r],e)&&n++;return this.selection.setSelectionRange(o),this.$blockScrolling-=1,n},this.$tryReplace=function(e,t){var i=this.session.getTextRange(e);return t=this.$search.replace(i,t),null!==t?(e.end=this.session.replace(e,t),e):null},this.getLastSearchOptions=function(){return this.$search.getOptions()},this.find=function(e,t,i){t||(t={}),"string"==typeof e||e instanceof RegExp?t.needle=e:"object"==typeof e&&n.mixin(t,e);var o=this.selection.getRange();null==t.needle&&(e=this.session.getTextRange(o)||this.$search.$options.needle,e||(o=this.session.getWordRange(o.start.row,o.start.column),e=this.session.getTextRange(o)),this.$search.set({needle:e})),this.$search.set(t),t.start||this.$search.set({start:o});var r=this.$search.find(this.session);return t.preventScroll?r:r?(this.revealRange(r,i),r):(t.backwards?o.start=o.end:o.end=o.start,void this.selection.setRange(o))},this.findNext=function(e,t){this.find({skipCurrent:!0,backwards:!1},e,t)},this.findPrevious=function(e,t){this.find(e,{skipCurrent:!0,backwards:!0},t)},this.revealRange=function(e,t){this.$blockScrolling+=1,this.session.unfold(e),this.selection.setSelectionRange(e),this.$blockScrolling-=1;var i=this.renderer.scrollTop;this.renderer.scrollSelectionIntoView(e.start,e.end,.5),t!==!1&&this.renderer.animateScrolling(i)},this.undo=function(){this.$blockScrolling++,this.session.getUndoManager().undo(),this.$blockScrolling--,this.renderer.scrollCursorIntoView(null,.5)},this.redo=function(){this.$blockScrolling++,this.session.getUndoManager().redo(),this.$blockScrolling--,this.renderer.scrollCursorIntoView(null,.5)},this.destroy=function(){this.renderer.destroy(),this._signal("destroy",this),this.session&&this.session.destroy()},this.setAutoScrollEditorIntoView=function(e){if(e){var t,i=this,n=!1;this.$scrollAnchor||(this.$scrollAnchor=document.createElement("div"));var o=this.$scrollAnchor;o.style.cssText="position:absolute",this.container.insertBefore(o,this.container.firstChild);var r=this.on("changeSelection",function(){n=!0}),s=this.renderer.on("beforeRender",function(){n&&(t=i.renderer.container.getBoundingClientRect())}),a=this.renderer.on("afterRender",function(){if(n&&t&&(i.isFocused()||i.searchBox&&i.searchBox.isFocused())){var e=i.renderer,r=e.$cursorLayer.$pixelPos,s=e.layerConfig,a=r.top-s.offset;n=r.top>=0&&a+t.top<0?!0:r.top<s.height&&r.top+t.top+s.lineHeight>window.innerHeight?!1:null,null!=n&&(o.style.top=a+"px",o.style.left=r.left+"px",o.style.height=s.lineHeight+"px",o.scrollIntoView(n)),n=t=null}});this.setAutoScrollEditorIntoView=function(e){e||(delete this.setAutoScrollEditorIntoView,this.removeEventListener("changeSelection",r),this.renderer.removeEventListener("afterRender",a),this.renderer.removeEventListener("beforeRender",s))}}},this.$resetCursorStyle=function(){var e=this.$cursorStyle||"ace",t=this.renderer.$cursorLayer;t&&(t.setSmoothBlinking(/smooth/.test(e)),t.isBlinking=!this.$readOnly&&"wide"!=e,o.setCssClass(t.element,"ace_slim-cursors",/slim/.test(e)))}}).call(C.prototype),A.defineOptions(C.prototype,"editor",{selectionStyle:{set:function(e){this.onSelectionChange(),this._signal("changeSelectionStyle",{data:e})},initialValue:"line"},highlightActiveLine:{set:function(){this.$updateHighlightActiveLine()},initialValue:!0},highlightSelectedWord:{set:function(e){this.$onSelectionChange()},initialValue:!0},readOnly:{set:function(e){this.$resetCursorStyle()},initialValue:!1},cursorStyle:{set:function(e){this.$resetCursorStyle()},values:["ace","slim","smooth","wide"],initialValue:"ace"},mergeUndoDeltas:{values:[!1,!0,"always"],initialValue:!0},behavioursEnabled:{initialValue:!0},wrapBehavioursEnabled:{initialValue:!0},autoScrollEditorIntoView:{set:function(e){this.setAutoScrollEditorIntoView(e)}},hScrollBarAlwaysVisible:"renderer",vScrollBarAlwaysVisible:"renderer",highlightGutterLine:"renderer",animatedScroll:"renderer",showInvisibles:"renderer",showPrintMargin:"renderer",printMarginColumn:"renderer",printMargin:"renderer",fadeFoldWidgets:"renderer",showFoldWidgets:"renderer",showLineNumbers:"renderer",showGutter:"renderer",displayIndentGuides:"renderer",fontSize:"renderer",fontFamily:"renderer",maxLines:"renderer",minLines:"renderer",scrollPastEnd:"renderer",fixedWidthGutter:"renderer",theme:"renderer",scrollSpeed:"$mouseHandler",dragDelay:"$mouseHandler",dragEnabled:"$mouseHandler",focusTimout:"$mouseHandler",tooltipFollowsMouse:"$mouseHandler",firstLineNumber:"session",overwrite:"session",newLineMode:"session",useWorker:"session",useSoftTabs:"session",tabSize:"session",wrap:"session",indentedSoftWrap:"session",foldStyle:"session",mode:"session"}),t.Editor=C}),define("ace/undomanager",["require","exports","module"],function(e,t,i){"use strict";var n=function(){this.reset()};(function(){function e(e){return{action:e.action,start:e.start,end:e.end,lines:1==e.lines.length?null:e.lines,text:1==e.lines.length?e.lines[0]:null}}function t(e){return{action:e.action,start:e.start,end:e.end,lines:e.lines||[e.text]}}function i(e,t){for(var i=new Array(e.length),n=0;n<e.length;n++){for(var o=e[n],r={group:o.group,deltas:new Array(o.length)},s=0;s<o.deltas.length;s++){var a=o.deltas[s];r.deltas[s]=t(a)}i[n]=r}return i}this.execute=function(e){var t=e.args[0];this.$doc=e.args[1],e.merge&&this.hasUndo()&&(this.dirtyCounter--,t=this.$undoStack.pop().concat(t)),this.$undoStack.push(t),this.$redoStack=[],this.dirtyCounter<0&&(this.dirtyCounter=0/0),this.dirtyCounter++},this.undo=function(e){var t=this.$undoStack.pop(),i=null;return t&&(i=this.$doc.undoChanges(this.$deserializeDeltas(t),e),this.$redoStack.push(t),this.dirtyCounter--),i},this.redo=function(e){var t=this.$redoStack.pop(),i=null;return t&&(i=this.$doc.redoChanges(this.$deserializeDeltas(t),e),this.$undoStack.push(t),this.dirtyCounter++),i},this.reset=function(){this.$undoStack=[],this.$redoStack=[],this.dirtyCounter=0},this.hasUndo=function(){return this.$undoStack.length>0},this.hasRedo=function(){return this.$redoStack.length>0},this.markClean=function(){this.dirtyCounter=0},this.isClean=function(){return 0===this.dirtyCounter},this.$serializeDeltas=function(t){return i(t,e)},this.$deserializeDeltas=function(e){return i(e,t)}}).call(n.prototype),t.UndoManager=n}),define("ace/layer/gutter",["require","exports","module","ace/lib/dom","ace/lib/oop","ace/lib/lang","ace/lib/event_emitter"],function(e,t,i){"use strict";var n=e("../lib/dom"),o=e("../lib/oop"),r=e("../lib/lang"),s=e("../lib/event_emitter").EventEmitter,a=function(e){this.element=n.createElement("div"),this.element.className="ace_layer ace_gutter-layer",e.appendChild(this.element),this.setShowFoldWidgets(this.$showFoldWidgets),this.gutterWidth=0,this.$annotations=[],this.$updateAnnotations=this.$updateAnnotations.bind(this),this.$cells=[]};(function(){o.implement(this,s),this.setSession=function(e){this.session&&this.session.removeEventListener("change",this.$updateAnnotations),this.session=e,e&&e.on("change",this.$updateAnnotations)},this.addGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.addGutterDecoration"),this.session.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){window.console&&console.warn&&console.warn("deprecated use session.removeGutterDecoration"),this.session.removeGutterDecoration(e,t)},this.setAnnotations=function(e){this.$annotations=[];for(var t=0;t<e.length;t++){var i=e[t],n=i.row,o=this.$annotations[n];o||(o=this.$annotations[n]={text:[]});var s=i.text;s=s?r.escapeHTML(s):i.html||"",-1===o.text.indexOf(s)&&o.text.push(s);var a=i.type;"error"==a?o.className=" ace_error":"warning"==a&&" ace_error"!=o.className?o.className=" ace_warning":"info"!=a||o.className||(o.className=" ace_info")}},this.$updateAnnotations=function(e){if(this.$annotations.length){var t=e.start.row,i=e.end.row-t;if(0===i);else if("remove"==e.action)this.$annotations.splice(t,i+1,null);else{var n=new Array(i+1);n.unshift(t,1),this.$annotations.splice.apply(this.$annotations,n)}}},this.update=function(e){for(var t=this.session,i=e.firstRow,o=Math.min(e.lastRow+e.gutterOffset,t.getLength()-1),r=t.getNextFoldLine(i),s=r?r.start.row:1/0,a=this.$showFoldWidgets&&t.foldWidgets,l=t.$breakpoints,c=t.$decorations,h=t.$firstLineNumber,u=0,d=t.gutterRenderer||this.$renderer,g=null,f=-1,m=i;;){if(m>s&&(m=r.end.row+1,r=t.getNextFoldLine(m,r),s=r?r.start.row:1/0),m>o){for(;this.$cells.length>f+1;)g=this.$cells.pop(),this.element.removeChild(g.element);break}g=this.$cells[++f],g||(g={element:null,textNode:null,foldWidget:null},g.element=n.createElement("div"),g.textNode=document.createTextNode(""),g.element.appendChild(g.textNode),this.element.appendChild(g.element),this.$cells[f]=g);var p="ace_gutter-cell ";l[m]&&(p+=l[m]),c[m]&&(p+=c[m]),this.$annotations[m]&&(p+=this.$annotations[m].className),g.element.className!=p&&(g.element.className=p);var A=t.getRowLength(m)*e.lineHeight+"px";if(A!=g.element.style.height&&(g.element.style.height=A),a){var v=a[m];null==v&&(v=a[m]=t.getFoldWidget(m))}if(v){g.foldWidget||(g.foldWidget=n.createElement("span"),g.element.appendChild(g.foldWidget));var p="ace_fold-widget ace_"+v;p+="start"==v&&m==s&&m<r.end.row?" ace_closed":" ace_open",g.foldWidget.className!=p&&(g.foldWidget.className=p);var A=e.lineHeight+"px";g.foldWidget.style.height!=A&&(g.foldWidget.style.height=A)}else g.foldWidget&&(g.element.removeChild(g.foldWidget),g.foldWidget=null);var C=u=d?d.getText(t,m):m+h;C!=g.textNode.data&&(g.textNode.data=C),m++}this.element.style.height=e.minHeight+"px",(this.$fixedWidth||t.$useWrapMode)&&(u=t.getLength()+h);var w=d?d.getWidth(t,u,e):u.toString().length*e.characterWidth,F=this.$padding||this.$computePadding();w+=F.left+F.right,w===this.gutterWidth||isNaN(w)||(this.gutterWidth=w,this.element.style.width=Math.ceil(this.gutterWidth)+"px",this._emit("changeGutterWidth",w))},this.$fixedWidth=!1,this.$showLineNumbers=!0,this.$renderer="",this.setShowLineNumbers=function(e){this.$renderer=!e&&{getWidth:function(){return""},getText:function(){return""}}},this.getShowLineNumbers=function(){return this.$showLineNumbers},this.$showFoldWidgets=!0,this.setShowFoldWidgets=function(e){e?n.addCssClass(this.element,"ace_folding-enabled"):n.removeCssClass(this.element,"ace_folding-enabled"),this.$showFoldWidgets=e,this.$padding=null},this.getShowFoldWidgets=function(){return this.$showFoldWidgets},this.$computePadding=function(){if(!this.element.firstChild)return{left:0,right:0};var e=n.computedStyle(this.element.firstChild);return this.$padding={},this.$padding.left=parseInt(e.paddingLeft)+1||0,this.$padding.right=parseInt(e.paddingRight)||0,this.$padding},this.getRegion=function(e){var t=this.$padding||this.$computePadding(),i=this.element.getBoundingClientRect();return e.x<t.left+i.left?"markers":this.$showFoldWidgets&&e.x>i.right-t.right?"foldWidgets":void 0}}).call(a.prototype),t.Gutter=a}),define("ace/layer/marker",["require","exports","module","ace/range","ace/lib/dom"],function(e,t,i){"use strict";var n=e("../range").Range,o=e("../lib/dom"),r=function(e){this.element=o.createElement("div"),this.element.className="ace_layer ace_marker-layer",e.appendChild(this.element)};(function(){function e(e,t,i,n){return(e?1:0)|(t?2:0)|(i?4:0)|(n?8:0)}this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setMarkers=function(e){this.markers=e},this.update=function(e){var e=e||this.config;if(e){this.config=e;var t=[];for(var i in this.markers){var n=this.markers[i];if(n.range){var o=n.range.clipRows(e.firstRow,e.lastRow);if(!o.isEmpty())if(o=o.toScreenRange(this.session),n.renderer){var r=this.$getTop(o.start.row,e),s=this.$padding+o.start.column*e.characterWidth;n.renderer(t,o,s,r,e)}else"fullLine"==n.type?this.drawFullLineMarker(t,o,n.clazz,e):"screenLine"==n.type?this.drawScreenLineMarker(t,o,n.clazz,e):o.isMultiLine()?"text"==n.type?this.drawTextMarker(t,o,n.clazz,e):this.drawMultiLineMarker(t,o,n.clazz,e):this.drawSingleLineMarker(t,o,n.clazz+" ace_start ace_br15",e)}else n.update(t,this,this.session,e)}this.element.innerHTML=t.join("")}},this.$getTop=function(e,t){return(e-t.firstRowScreen)*t.lineHeight},this.drawTextMarker=function(t,i,o,r,s){for(var a=this.session,l=i.start.row,c=i.end.row,h=l,u=0,d=0,g=a.getScreenLastRowColumn(h),f=new n(h,i.start.column,h,d);c>=h;h++)f.start.row=f.end.row=h,f.start.column=h==l?i.start.column:a.getRowWrapIndent(h),f.end.column=g,u=d,d=g,g=c>h+1?a.getScreenLastRowColumn(h+1):h==c?0:i.end.column,this.drawSingleLineMarker(t,f,o+(h==l?" ace_start":"")+" ace_br"+e(h==l||h==l+1&&i.start.column,d>u,d>g,h==c),r,h==c?0:1,s)},this.drawMultiLineMarker=function(e,t,i,n,o){var r=this.$padding,s=n.lineHeight,a=this.$getTop(t.start.row,n),l=r+t.start.column*n.characterWidth;o=o||"",e.push("<div class='",i," ace_br1 ace_start' style='","height:",s,"px;","right:0;","top:",a,"px;","left:",l,"px;",o,"'></div>"),a=this.$getTop(t.end.row,n);var c=t.end.column*n.characterWidth;if(e.push("<div class='",i," ace_br12' style='","height:",s,"px;","width:",c,"px;","top:",a,"px;","left:",r,"px;",o,"'></div>"),s=(t.end.row-t.start.row-1)*n.lineHeight,!(0>=s)){a=this.$getTop(t.start.row+1,n);var h=(t.start.column?1:0)|(t.end.column?0:8);e.push("<div class='",i,h?" ace_br"+h:"","' style='","height:",s,"px;","right:0;","top:",a,"px;","left:",r,"px;",o,"'></div>")}},this.drawSingleLineMarker=function(e,t,i,n,o,r){var s=n.lineHeight,a=(t.end.column+(o||0)-t.start.column)*n.characterWidth,l=this.$getTop(t.start.row,n),c=this.$padding+t.start.column*n.characterWidth;e.push("<div class='",i,"' style='","height:",s,"px;","width:",a,"px;","top:",l,"px;","left:",c,"px;",r||"","'></div>")},this.drawFullLineMarker=function(e,t,i,n,o){var r=this.$getTop(t.start.row,n),s=n.lineHeight;t.start.row!=t.end.row&&(s+=this.$getTop(t.end.row,n)-r),e.push("<div class='",i,"' style='","height:",s,"px;","top:",r,"px;","left:0;right:0;",o||"","'></div>")},this.drawScreenLineMarker=function(e,t,i,n,o){var r=this.$getTop(t.start.row,n),s=n.lineHeight;e.push("<div class='",i,"' style='","height:",s,"px;","top:",r,"px;","left:0;right:0;",o||"","'></div>")}}).call(r.prototype),t.Marker=r}),define("ace/layer/text",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("../lib/dom"),r=e("../lib/lang"),s=(e("../lib/useragent"),e("../lib/event_emitter").EventEmitter),a=function(e){this.element=o.createElement("div"),this.element.className="ace_layer ace_text-layer",e.appendChild(this.element),this.$updateEolChar=this.$updateEolChar.bind(this)};(function(){n.implement(this,s),this.EOF_CHAR="¶",this.EOL_CHAR_LF="¬",this.EOL_CHAR_CRLF="¤",this.EOL_CHAR=this.EOL_CHAR_LF,this.TAB_CHAR="—",this.SPACE_CHAR="·",this.$padding=0,this.$updateEolChar=function(){var e="\n"==this.session.doc.getNewLineCharacter()?this.EOL_CHAR_LF:this.EOL_CHAR_CRLF;return this.EOL_CHAR!=e?(this.EOL_CHAR=e,!0):void 0},this.setPadding=function(e){this.$padding=e,this.element.style.padding="0 "+e+"px"},this.getLineHeight=function(){return this.$fontMetrics.$characterSize.height||0},this.getCharacterWidth=function(){return this.$fontMetrics.$characterSize.width||0},this.$setFontMetrics=function(e){this.$fontMetrics=e,this.$fontMetrics.on("changeCharacterSize",function(e){this._signal("changeCharacterSize",e)}.bind(this)),this.$pollSizeChanges()},this.checkForSizeChanges=function(){this.$fontMetrics.checkForSizeChanges()},this.$pollSizeChanges=function(){return this.$pollSizeChangesTimer=this.$fontMetrics.$pollSizeChanges()},this.setSession=function(e){this.session=e,e&&this.$computeTabString()},this.showInvisibles=!1,this.setShowInvisibles=function(e){return this.showInvisibles==e?!1:(this.showInvisibles=e,this.$computeTabString(),!0)},this.displayIndentGuides=!0,this.setDisplayIndentGuides=function(e){return this.displayIndentGuides==e?!1:(this.displayIndentGuides=e,this.$computeTabString(),!0)},this.$tabStrings=[],this.onChangeTabSize=this.$computeTabString=function(){var e=this.session.getTabSize();this.tabSize=e;for(var t=this.$tabStrings=[0],i=1;e+1>i;i++)t.push(this.showInvisibles?"<span class='ace_invisible ace_invisible_tab'>"+r.stringRepeat(this.TAB_CHAR,i)+"</span>":r.stringRepeat(" ",i));if(this.displayIndentGuides){this.$indentGuideRe=/\s\S| \t|\t |\s$/;var n="ace_indent-guide",o="",s="";if(this.showInvisibles){n+=" ace_invisible",o=" ace_invisible_space",s=" ace_invisible_tab";var a=r.stringRepeat(this.SPACE_CHAR,this.tabSize),l=r.stringRepeat(this.TAB_CHAR,this.tabSize)}else var a=r.stringRepeat(" ",this.tabSize),l=a;this.$tabStrings[" "]="<span class='"+n+o+"'>"+a+"</span>",this.$tabStrings[" "]="<span class='"+n+s+"'>"+l+"</span>"}},this.updateLines=function(e,t,i){(this.config.lastRow!=e.lastRow||this.config.firstRow!=e.firstRow)&&this.scrollLines(e),this.config=e;for(var n=Math.max(t,e.firstRow),o=Math.min(i,e.lastRow),r=this.element.childNodes,s=0,a=e.firstRow;n>a;a++){var l=this.session.getFoldLine(a);if(l){if(l.containsRow(n)){n=l.start.row;break}a=l.end.row}s++}for(var a=n,l=this.session.getNextFoldLine(a),c=l?l.start.row:1/0;;){if(a>c&&(a=l.end.row+1,l=this.session.getNextFoldLine(a,l),c=l?l.start.row:1/0),a>o)break;var h=r[s++];if(h){var u=[];this.$renderLine(u,a,!this.$useLineGroups(),a==c?l:!1),h.style.height=e.lineHeight*this.session.getRowLength(a)+"px",h.innerHTML=u.join("")}a++}},this.scrollLines=function(e){var t=this.config;if(this.config=e,!t||t.lastRow<e.firstRow)return this.update(e);if(e.lastRow<t.firstRow)return this.update(e);var i=this.element;if(t.firstRow<e.firstRow)for(var n=this.session.getFoldedRowCount(t.firstRow,e.firstRow-1);n>0;n--)i.removeChild(i.firstChild);if(t.lastRow>e.lastRow)for(var n=this.session.getFoldedRowCount(e.lastRow+1,t.lastRow);n>0;n--)i.removeChild(i.lastChild);if(e.firstRow<t.firstRow){var o=this.$renderLinesFragment(e,e.firstRow,t.firstRow-1);i.firstChild?i.insertBefore(o,i.firstChild):i.appendChild(o)}if(e.lastRow>t.lastRow){var o=this.$renderLinesFragment(e,t.lastRow+1,e.lastRow);i.appendChild(o)}},this.$renderLinesFragment=function(e,t,i){for(var n=this.element.ownerDocument.createDocumentFragment(),r=t,s=this.session.getNextFoldLine(r),a=s?s.start.row:1/0;;){if(r>a&&(r=s.end.row+1,s=this.session.getNextFoldLine(r,s),a=s?s.start.row:1/0),r>i)break;var l=o.createElement("div"),c=[];if(this.$renderLine(c,r,!1,r==a?s:!1),l.innerHTML=c.join(""),this.$useLineGroups())l.className="ace_line_group",n.appendChild(l),l.style.height=e.lineHeight*this.session.getRowLength(r)+"px";else for(;l.firstChild;)n.appendChild(l.firstChild);r++}return n},this.update=function(e){this.config=e;for(var t=[],i=e.firstRow,n=e.lastRow,o=i,r=this.session.getNextFoldLine(o),s=r?r.start.row:1/0;;){if(o>s&&(o=r.end.row+1,r=this.session.getNextFoldLine(o,r),s=r?r.start.row:1/0),o>n)break;this.$useLineGroups()&&t.push("<div class='ace_line_group' style='height:",e.lineHeight*this.session.getRowLength(o),"px'>"),this.$renderLine(t,o,!1,o==s?r:!1),this.$useLineGroups()&&t.push("</div>"),o++}this.element.innerHTML=t.join("")},this.$textToken={text:!0,rparen:!0,lparen:!0},this.$renderToken=function(e,t,i,n){var o=this,s=/\t|&|<|>|( +)|([\x00-\x1f\x80-\xa0\xad\u1680\u180E\u2000-\u200f\u2028\u2029\u202F\u205F\u3000\uFEFF])|[\u1100-\u115F\u11A3-\u11A7\u11FA-\u11FF\u2329-\u232A\u2E80-\u2E99\u2E9B-\u2EF3\u2F00-\u2FD5\u2FF0-\u2FFB\u3000-\u303E\u3041-\u3096\u3099-\u30FF\u3105-\u312D\u3131-\u318E\u3190-\u31BA\u31C0-\u31E3\u31F0-\u321E\u3220-\u3247\u3250-\u32FE\u3300-\u4DBF\u4E00-\uA48C\uA490-\uA4C6\uA960-\uA97C\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFAFF\uFE10-\uFE19\uFE30-\uFE52\uFE54-\uFE66\uFE68-\uFE6B\uFF01-\uFF60\uFFE0-\uFFE6]/g,a=function(e,i,n,s,a){if(i)return o.showInvisibles?"<span class='ace_invisible ace_invisible_space'>"+r.stringRepeat(o.SPACE_CHAR,e.length)+"</span>":e;if("&"==e)return"&";if("<"==e)return"<";if(">"==e)return">";if(" "==e){var l=o.session.getScreenTabSize(t+s);return t+=l-1,o.$tabStrings[l]}if(" "==e){var c=o.showInvisibles?"ace_cjk ace_invisible ace_invisible_space":"ace_cjk",h=o.showInvisibles?o.SPACE_CHAR:"";return t+=1,"<span class='"+c+"' style='width:"+2*o.config.characterWidth+"px'>"+h+"</span>"}return n?"<span class='ace_invisible ace_invisible_space ace_invalid'>"+o.SPACE_CHAR+"</span>":(t+=1,"<span class='ace_cjk' style='width:"+2*o.config.characterWidth+"px'>"+e+"</span>")},l=n.replace(s,a);if(this.$textToken[i.type])e.push(l);else{var c="ace_"+i.type.replace(/\./g," ace_"),h="";"fold"==i.type&&(h=" style='width:"+i.value.length*this.config.characterWidth+"px;' "),e.push("<span class='",c,"'",h,">",l,"</span>")}return t+n.length},this.renderIndentGuide=function(e,t,i){var n=t.search(this.$indentGuideRe);return 0>=n||n>=i?t:" "==t[0]?(n-=n%this.tabSize,e.push(r.stringRepeat(this.$tabStrings[" "],n/this.tabSize)),t.substr(n)):" "==t[0]?(e.push(r.stringRepeat(this.$tabStrings[" "],n)),t.substr(n)):t},this.$renderWrappedLine=function(e,t,i,n){for(var o=0,s=0,a=i[0],l=0,c=0;c<t.length;c++){var h=t[c],u=h.value;if(0==c&&this.displayIndentGuides){if(o=u.length,u=this.renderIndentGuide(e,u,a),!u)continue;o-=u.length}if(o+u.length<a)l=this.$renderToken(e,l,h,u),o+=u.length;else{for(;o+u.length>=a;)l=this.$renderToken(e,l,h,u.substring(0,a-o)),u=u.substring(a-o),o=a,n||e.push("</div>","<div class='ace_line' style='height:",this.config.lineHeight,"px'>"),e.push(r.stringRepeat(" ",i.indent)),s++,l=0,a=i[s]||Number.MAX_VALUE;0!=u.length&&(o+=u.length,l=this.$renderToken(e,l,h,u))}}},this.$renderSimpleLine=function(e,t){var i=0,n=t[0],o=n.value;this.displayIndentGuides&&(o=this.renderIndentGuide(e,o)),o&&(i=this.$renderToken(e,i,n,o));for(var r=1;r<t.length;r++)n=t[r],o=n.value,i=this.$renderToken(e,i,n,o)},this.$renderLine=function(e,t,i,n){if(n||0==n||(n=this.session.getFoldLine(t)),n)var o=this.$getFoldLineTokens(t,n);else var o=this.session.getTokens(t);if(i||e.push("<div class='ace_line' style='height:",this.config.lineHeight*(this.$useLineGroups()?1:this.session.getRowLength(t)),"px'>"),o.length){var r=this.session.getRowSplitData(t);r&&r.length?this.$renderWrappedLine(e,o,r,i):this.$renderSimpleLine(e,o)}this.showInvisibles&&(n&&(t=n.end.row),e.push("<span class='ace_invisible ace_invisible_eol'>",t==this.session.getLength()-1?this.EOF_CHAR:this.EOL_CHAR,"</span>")),i||e.push("</div>")},this.$getFoldLineTokens=function(e,t){function i(e,t,i){for(var n=0,r=0;r+e[n].value.length<t;)if(r+=e[n].value.length,n++,n==e.length)return;if(r!=t){var s=e[n].value.substring(t-r);s.length>i-t&&(s=s.substring(0,i-t)),o.push({type:e[n].type,value:s}),r=t+s.length,n+=1}for(;i>r&&n<e.length;){var s=e[n].value;o.push(s.length+r>i?{type:e[n].type,value:s.substring(0,i-r)}:e[n]),r+=s.length,n+=1}}var n=this.session,o=[],r=n.getTokens(e);return t.walk(function(e,t,s,a,l){null!=e?o.push({type:"fold",value:e}):(l&&(r=n.getTokens(t)),r.length&&i(r,a,s))},t.end.row,this.session.getLine(t.end.row).length),o},this.$useLineGroups=function(){return this.session.getUseWrapMode()},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.$measureNode&&this.$measureNode.parentNode.removeChild(this.$measureNode),delete this.$measureNode}}).call(a.prototype),t.Text=a}),define("ace/layer/cursor",["require","exports","module","ace/lib/dom"],function(e,t,i){"use strict";var n,o=e("../lib/dom"),r=function(e){this.element=o.createElement("div"),this.element.className="ace_layer ace_cursor-layer",e.appendChild(this.element),void 0===n&&(n=!("opacity"in this.element.style)),this.isVisible=!1,this.isBlinking=!0,this.blinkInterval=1e3,this.smoothBlinking=!1,this.cursors=[],this.cursor=this.addCursor(),o.addCssClass(this.element,"ace_hidden-cursors"),this.$updateCursors=(n?this.$updateVisibility:this.$updateOpacity).bind(this)};(function(){this.$updateVisibility=function(e){for(var t=this.cursors,i=t.length;i--;)t[i].style.visibility=e?"":"hidden"},this.$updateOpacity=function(e){for(var t=this.cursors,i=t.length;i--;)t[i].style.opacity=e?"":"0"},this.$padding=0,this.setPadding=function(e){this.$padding=e},this.setSession=function(e){this.session=e},this.setBlinking=function(e){e!=this.isBlinking&&(this.isBlinking=e,this.restartTimer())},this.setBlinkInterval=function(e){e!=this.blinkInterval&&(this.blinkInterval=e,this.restartTimer())},this.setSmoothBlinking=function(e){e==this.smoothBlinking||n||(this.smoothBlinking=e,o.setCssClass(this.element,"ace_smooth-blinking",e),this.$updateCursors(!0),this.$updateCursors=this.$updateOpacity.bind(this),this.restartTimer())},this.addCursor=function(){var e=o.createElement("div");return e.className="ace_cursor",this.element.appendChild(e),this.cursors.push(e),e},this.removeCursor=function(){if(this.cursors.length>1){var e=this.cursors.pop();return e.parentNode.removeChild(e),e}},this.hideCursor=function(){this.isVisible=!1,o.addCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.showCursor=function(){this.isVisible=!0,o.removeCssClass(this.element,"ace_hidden-cursors"),this.restartTimer()},this.restartTimer=function(){var e=this.$updateCursors;if(clearInterval(this.intervalId),clearTimeout(this.timeoutId),this.smoothBlinking&&o.removeCssClass(this.element,"ace_smooth-blinking"),e(!0),this.isBlinking&&this.blinkInterval&&this.isVisible){this.smoothBlinking&&setTimeout(function(){o.addCssClass(this.element,"ace_smooth-blinking")}.bind(this));var t=function(){this.timeoutId=setTimeout(function(){e(!1)},.6*this.blinkInterval)}.bind(this);this.intervalId=setInterval(function(){e(!0),t()},this.blinkInterval),t()}},this.getPixelPosition=function(e,t){if(!this.config||!this.session)return{left:0,top:0};e||(e=this.session.selection.getCursor());var i=this.session.documentToScreenPosition(e),n=this.$padding+i.column*this.config.characterWidth,o=(i.row-(t?this.config.firstRowScreen:0))*this.config.lineHeight;return{left:n,top:o}},this.update=function(e){this.config=e;var t=this.session.$selectionMarkers,i=0,n=0;(void 0===t||0===t.length)&&(t=[{cursor:null}]);for(var i=0,o=t.length;o>i;i++){var r=this.getPixelPosition(t[i].cursor,!0);if(!((r.top>e.height+e.offset||r.top<0)&&i>1)){var s=(this.cursors[n++]||this.addCursor()).style;this.drawCursor?this.drawCursor(s,r,e,t[i],this.session):(s.left=r.left+"px",s.top=r.top+"px",s.width=e.characterWidth+"px",s.height=e.lineHeight+"px")}}for(;this.cursors.length>n;)this.removeCursor();var a=this.session.getOverwrite();this.$setOverwrite(a),this.$pixelPos=r,this.restartTimer()},this.drawCursor=null,this.$setOverwrite=function(e){e!=this.overwrite&&(this.overwrite=e,e?o.addCssClass(this.element,"ace_overwrite-cursors"):o.removeCssClass(this.element,"ace_overwrite-cursors"));
|
|
|
+
|
|
|
+},this.destroy=function(){clearInterval(this.intervalId),clearTimeout(this.timeoutId)}}).call(r.prototype),t.Cursor=r}),define("ace/scrollbar",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/event","ace/lib/event_emitter"],function(e,t,i){"use strict";var n=e("./lib/oop"),o=e("./lib/dom"),r=e("./lib/event"),s=e("./lib/event_emitter").EventEmitter,a=function(e){this.element=o.createElement("div"),this.element.className="ace_scrollbar ace_scrollbar"+this.classSuffix,this.inner=o.createElement("div"),this.inner.className="ace_scrollbar-inner",this.element.appendChild(this.inner),e.appendChild(this.element),this.setVisible(!1),this.skipEvent=!1,r.addListener(this.element,"scroll",this.onScroll.bind(this)),r.addListener(this.element,"mousedown",r.preventDefault)};(function(){n.implement(this,s),this.setVisible=function(e){this.element.style.display=e?"":"none",this.isVisible=e}}).call(a.prototype);var l=function(e,t){a.call(this,e),this.scrollTop=0,t.$scrollbarWidth=this.width=o.scrollbarWidth(e.ownerDocument),this.inner.style.width=this.element.style.width=(this.width||15)+5+"px"};n.inherits(l,a),function(){this.classSuffix="-v",this.onScroll=function(){this.skipEvent||(this.scrollTop=this.element.scrollTop,this._emit("scroll",{data:this.scrollTop})),this.skipEvent=!1},this.getWidth=function(){return this.isVisible?this.width:0},this.setHeight=function(e){this.element.style.height=e+"px"},this.setInnerHeight=function(e){this.inner.style.height=e+"px"},this.setScrollHeight=function(e){this.inner.style.height=e+"px"},this.setScrollTop=function(e){this.scrollTop!=e&&(this.skipEvent=!0,this.scrollTop=this.element.scrollTop=e)}}.call(l.prototype);var c=function(e,t){a.call(this,e),this.scrollLeft=0,this.height=t.$scrollbarWidth,this.inner.style.height=this.element.style.height=(this.height||15)+5+"px"};n.inherits(c,a),function(){this.classSuffix="-h",this.onScroll=function(){this.skipEvent||(this.scrollLeft=this.element.scrollLeft,this._emit("scroll",{data:this.scrollLeft})),this.skipEvent=!1},this.getHeight=function(){return this.isVisible?this.height:0},this.setWidth=function(e){this.element.style.width=e+"px"},this.setInnerWidth=function(e){this.inner.style.width=e+"px"},this.setScrollWidth=function(e){this.inner.style.width=e+"px"},this.setScrollLeft=function(e){this.scrollLeft!=e&&(this.skipEvent=!0,this.scrollLeft=this.element.scrollLeft=e)}}.call(c.prototype),t.ScrollBar=l,t.ScrollBarV=l,t.ScrollBarH=c,t.VScrollBar=l,t.HScrollBar=c}),define("ace/renderloop",["require","exports","module","ace/lib/event"],function(e,t,i){"use strict";var n=e("./lib/event"),o=function(e,t){this.onRender=e,this.pending=!1,this.changes=0,this.window=t||window};(function(){this.schedule=function(e){if(this.changes=this.changes|e,!this.pending&&this.changes){this.pending=!0;var t=this;n.nextFrame(function(){t.pending=!1;for(var e;e=t.changes;)t.changes=0,t.onRender(e)},this.window)}}}).call(o.prototype),t.RenderLoop=o}),define("ace/layer/font_metrics",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/lib/lang","ace/lib/useragent","ace/lib/event_emitter"],function(e,t,i){var n=e("../lib/oop"),o=e("../lib/dom"),r=e("../lib/lang"),s=e("../lib/useragent"),a=e("../lib/event_emitter").EventEmitter,l=0,c=t.FontMetrics=function(e,t){this.el=o.createElement("div"),this.$setMeasureNodeStyles(this.el.style,!0),this.$main=o.createElement("div"),this.$setMeasureNodeStyles(this.$main.style),this.$measureNode=o.createElement("div"),this.$setMeasureNodeStyles(this.$measureNode.style),this.el.appendChild(this.$main),this.el.appendChild(this.$measureNode),e.appendChild(this.el),l||this.$testFractionalRect(),this.$measureNode.innerHTML=r.stringRepeat("X",l),this.$characterSize={width:0,height:0},this.checkForSizeChanges()};(function(){n.implement(this,a),this.$characterSize={width:0,height:0},this.$testFractionalRect=function(){var e=o.createElement("div");this.$setMeasureNodeStyles(e.style),e.style.width="0.2px",document.documentElement.appendChild(e);var t=e.getBoundingClientRect().width;l=t>0&&1>t?50:100,e.parentNode.removeChild(e)},this.$setMeasureNodeStyles=function(e,t){e.width=e.height="auto",e.left=e.top="0px",e.visibility="hidden",e.position="absolute",e.whiteSpace="pre",s.isIE<8?e["font-family"]="inherit":e.font="inherit",e.overflow=t?"hidden":"visible"},this.checkForSizeChanges=function(){var e=this.$measureSizes();if(e&&(this.$characterSize.width!==e.width||this.$characterSize.height!==e.height)){this.$measureNode.style.fontWeight="bold";var t=this.$measureSizes();this.$measureNode.style.fontWeight="",this.$characterSize=e,this.charSizes=Object.create(null),this.allowBoldFonts=t&&t.width===e.width&&t.height===e.height,this._emit("changeCharacterSize",{data:e})}},this.$pollSizeChanges=function(){if(this.$pollSizeChangesTimer)return this.$pollSizeChangesTimer;var e=this;return this.$pollSizeChangesTimer=setInterval(function(){e.checkForSizeChanges()},500)},this.setPolling=function(e){e?this.$pollSizeChanges():this.$pollSizeChangesTimer&&(clearInterval(this.$pollSizeChangesTimer),this.$pollSizeChangesTimer=0)},this.$measureSizes=function(){if(50===l){var e=null;try{e=this.$measureNode.getBoundingClientRect()}catch(t){e={width:0,height:0}}var i={height:e.height,width:e.width/l}}else var i={height:this.$measureNode.clientHeight,width:this.$measureNode.clientWidth/l};return 0===i.width||0===i.height?null:i},this.$measureCharWidth=function(e){this.$main.innerHTML=r.stringRepeat(e,l);var t=this.$main.getBoundingClientRect();return t.width/l},this.getCharacterWidth=function(e){var t=this.charSizes[e];return void 0===t&&(this.charSizes[e]=this.$measureCharWidth(e)/this.$characterSize.width),t},this.destroy=function(){clearInterval(this.$pollSizeChangesTimer),this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el)}}).call(c.prototype)}),define("ace/virtual_renderer",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/config","ace/lib/useragent","ace/layer/gutter","ace/layer/marker","ace/layer/text","ace/layer/cursor","ace/scrollbar","ace/scrollbar","ace/renderloop","ace/layer/font_metrics","ace/lib/event_emitter"],function(e,t,i){"use strict";var n=e("./lib/oop"),o=e("./lib/dom"),r=e("./config"),s=e("./lib/useragent"),a=e("./layer/gutter").Gutter,l=e("./layer/marker").Marker,c=e("./layer/text").Text,h=e("./layer/cursor").Cursor,u=e("./scrollbar").HScrollBar,d=e("./scrollbar").VScrollBar,g=e("./renderloop").RenderLoop,f=e("./layer/font_metrics").FontMetrics,m=e("./lib/event_emitter").EventEmitter,p='.ace_editor {position: relative;overflow: hidden;font: 12px/normal \'Monaco\', \'Menlo\', \'Ubuntu Mono\', \'Consolas\', \'source-code-pro\', monospace;direction: ltr;}.ace_scroller {position: absolute;overflow: hidden;top: 0;bottom: 0;background-color: inherit;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;cursor: text;}.ace_content {position: absolute;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;min-width: 100%;}.ace_dragging .ace_scroller:before{position: absolute;top: 0;left: 0;right: 0;bottom: 0;content: \'\';background: rgba(250, 250, 250, 0.01);z-index: 1000;}.ace_dragging.ace_dark .ace_scroller:before{background: rgba(0, 0, 0, 0.01);}.ace_selecting, .ace_selecting * {cursor: text !important;}.ace_gutter {position: absolute;overflow : hidden;width: auto;top: 0;bottom: 0;left: 0;cursor: default;z-index: 4;-ms-user-select: none;-moz-user-select: none;-webkit-user-select: none;user-select: none;}.ace_gutter-active-line {position: absolute;left: 0;right: 0;}.ace_scroller.ace_scroll-left {box-shadow: 17px 0 16px -16px rgba(0, 0, 0, 0.4) inset;}.ace_gutter-cell {padding-left: 19px;padding-right: 6px;background-repeat: no-repeat;}.ace_gutter-cell.ace_error {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAABOFBMVEX/////////QRswFAb/Ui4wFAYwFAYwFAaWGAfDRymzOSH/PxswFAb/SiUwFAYwFAbUPRvjQiDllog5HhHdRybsTi3/Tyv9Tir+Syj/UC3////XurebMBIwFAb/RSHbPx/gUzfdwL3kzMivKBAwFAbbvbnhPx66NhowFAYwFAaZJg8wFAaxKBDZurf/RB6mMxb/SCMwFAYwFAbxQB3+RB4wFAb/Qhy4Oh+4QifbNRcwFAYwFAYwFAb/QRzdNhgwFAYwFAbav7v/Uy7oaE68MBK5LxLewr/r2NXewLswFAaxJw4wFAbkPRy2PyYwFAaxKhLm1tMwFAazPiQwFAaUGAb/QBrfOx3bvrv/VC/maE4wFAbRPBq6MRO8Qynew8Dp2tjfwb0wFAbx6eju5+by6uns4uH9/f36+vr/GkHjAAAAYnRSTlMAGt+64rnWu/bo8eAA4InH3+DwoN7j4eLi4xP99Nfg4+b+/u9B/eDs1MD1mO7+4PHg2MXa347g7vDizMLN4eG+Pv7i5evs/v79yu7S3/DV7/498Yv24eH+4ufQ3Ozu/v7+y13sRqwAAADLSURBVHjaZc/XDsFgGIBhtDrshlitmk2IrbHFqL2pvXf/+78DPokj7+Fz9qpU/9UXJIlhmPaTaQ6QPaz0mm+5gwkgovcV6GZzd5JtCQwgsxoHOvJO15kleRLAnMgHFIESUEPmawB9ngmelTtipwwfASilxOLyiV5UVUyVAfbG0cCPHig+GBkzAENHS0AstVF6bacZIOzgLmxsHbt2OecNgJC83JERmePUYq8ARGkJx6XtFsdddBQgZE2nPR6CICZhawjA4Fb/chv+399kfR+MMMDGOQAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: 2px center;}.ace_gutter-cell.ace_warning {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAmVBMVEX///8AAAD///8AAAAAAABPSzb/5sAAAAB/blH/73z/ulkAAAAAAAD85pkAAAAAAAACAgP/vGz/rkDerGbGrV7/pkQICAf////e0IsAAAD/oED/qTvhrnUAAAD/yHD/njcAAADuv2r/nz//oTj/p064oGf/zHAAAAA9Nir/tFIAAAD/tlTiuWf/tkIAAACynXEAAAAAAAAtIRW7zBpBAAAAM3RSTlMAABR1m7RXO8Ln31Z36zT+neXe5OzooRDfn+TZ4p3h2hTf4t3k3ucyrN1K5+Xaks52Sfs9CXgrAAAAjklEQVR42o3PbQ+CIBQFYEwboPhSYgoYunIqqLn6/z8uYdH8Vmdnu9vz4WwXgN/xTPRD2+sgOcZjsge/whXZgUaYYvT8QnuJaUrjrHUQreGczuEafQCO/SJTufTbroWsPgsllVhq3wJEk2jUSzX3CUEDJC84707djRc5MTAQxoLgupWRwW6UB5fS++NV8AbOZgnsC7BpEAAAAABJRU5ErkJggg==");background-position: 2px center;}.ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAAJ0Uk5TAAB2k804AAAAPklEQVQY02NgIB68QuO3tiLznjAwpKTgNyDbMegwisCHZUETUZV0ZqOquBpXj2rtnpSJT1AEnnRmL2OgGgAAIKkRQap2htgAAAAASUVORK5CYII=");background-position: 2px center;}.ace_dark .ace_gutter-cell.ace_info {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAJFBMVEUAAAChoaGAgIAqKiq+vr6tra1ZWVmUlJSbm5s8PDxubm56enrdgzg3AAAAAXRSTlMAQObYZgAAAClJREFUeNpjYMAPdsMYHegyJZFQBlsUlMFVCWUYKkAZMxZAGdxlDMQBAG+TBP4B6RyJAAAAAElFTkSuQmCC");}.ace_scrollbar {position: absolute;right: 0;bottom: 0;z-index: 6;}.ace_scrollbar-inner {position: absolute;cursor: text;left: 0;top: 0;}.ace_scrollbar-v{overflow-x: hidden;overflow-y: scroll;top: 0;}.ace_scrollbar-h {overflow-x: scroll;overflow-y: hidden;left: 0;}.ace_print-margin {position: absolute;height: 100%;}.ace_text-input {position: absolute;z-index: 0;width: 0.5em;height: 1em;opacity: 0;background: transparent;-moz-appearance: none;appearance: none;border: none;resize: none;outline: none;overflow: hidden;font: inherit;padding: 0 1px;margin: 0 -1px;text-indent: -1em;-ms-user-select: text;-moz-user-select: text;-webkit-user-select: text;user-select: text;white-space: pre!important;}.ace_text-input.ace_composition {background: inherit;color: inherit;z-index: 1000;opacity: 1;text-indent: 0;}.ace_layer {z-index: 1;position: absolute;overflow: hidden;word-wrap: normal;white-space: pre;height: 100%;width: 100%;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;pointer-events: none;}.ace_gutter-layer {position: relative;width: auto;text-align: right;pointer-events: auto;}.ace_text-layer {font: inherit !important;}.ace_cjk {display: inline-block;text-align: center;}.ace_cursor-layer {z-index: 4;}.ace_cursor {z-index: 4;position: absolute;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;border-left: 2px solid;transform: translatez(0);}.ace_slim-cursors .ace_cursor {border-left-width: 1px;}.ace_overwrite-cursors .ace_cursor {border-left-width: 0;border-bottom: 1px solid;}.ace_hidden-cursors .ace_cursor {opacity: 0.2;}.ace_smooth-blinking .ace_cursor {-webkit-transition: opacity 0.18s;transition: opacity 0.18s;}.ace_editor.ace_multiselect .ace_cursor {border-left-width: 1px;}.ace_marker-layer .ace_step, .ace_marker-layer .ace_stack {position: absolute;z-index: 3;}.ace_marker-layer .ace_selection {position: absolute;z-index: 5;}.ace_marker-layer .ace_bracket {position: absolute;z-index: 6;}.ace_marker-layer .ace_active-line {position: absolute;z-index: 2;}.ace_marker-layer .ace_selected-word {position: absolute;z-index: 4;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}.ace_line .ace_fold {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;display: inline-block;height: 11px;margin-top: -2px;vertical-align: middle;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACJJREFUeNpi+P//fxgTAwPDBxDxD078RSX+YeEyDFMCIMAAI3INmXiwf2YAAAAASUVORK5CYII=");background-repeat: no-repeat, repeat-x;background-position: center center, top left;color: transparent;border: 1px solid black;border-radius: 2px;cursor: pointer;pointer-events: auto;}.ace_dark .ace_fold {}.ace_fold:hover{background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAJCAYAAADU6McMAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJpJREFUeNpi/P//PwOlgAXGYGRklAVSokD8GmjwY1wasKljQpYACtpCFeADcHVQfQyMQAwzwAZI3wJKvCLkfKBaMSClBlR7BOQikCFGQEErIH0VqkabiGCAqwUadAzZJRxQr/0gwiXIal8zQQPnNVTgJ1TdawL0T5gBIP1MUJNhBv2HKoQHHjqNrA4WO4zY0glyNKLT2KIfIMAAQsdgGiXvgnYAAAAASUVORK5CYII="),url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAA3CAYAAADNNiA5AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//fz4TAwPDZxDxD5X4i5fLMEwJgAADAEPVDbjNw87ZAAAAAElFTkSuQmCC");}.ace_tooltip {background-color: #FFF;background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.1));background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));border: 1px solid gray;border-radius: 1px;box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);color: black;max-width: 100%;padding: 3px 4px;position: fixed;z-index: 999999;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;cursor: default;white-space: pre;word-wrap: break-word;line-height: normal;font-style: normal;font-weight: normal;letter-spacing: normal;pointer-events: none;}.ace_folding-enabled > .ace_gutter-cell {padding-right: 13px;}.ace_fold-widget {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;margin: 0 -12px 0 1px;display: none;width: 11px;vertical-align: top;background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42mWKsQ0AMAzC8ixLlrzQjzmBiEjp0A6WwBCSPgKAXoLkqSot7nN3yMwR7pZ32NzpKkVoDBUxKAAAAABJRU5ErkJggg==");background-repeat: no-repeat;background-position: center;border-radius: 3px;border: 1px solid transparent;cursor: pointer;}.ace_folding-enabled .ace_fold-widget {display: inline-block; }.ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAANElEQVR42m3HwQkAMAhD0YzsRchFKI7sAikeWkrxwScEB0nh5e7KTPWimZki4tYfVbX+MNl4pyZXejUO1QAAAABJRU5ErkJggg==");}.ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAGCAYAAAAG5SQMAAAAOUlEQVR42jXKwQkAMAgDwKwqKD4EwQ26sSOkVWjgIIHAzPiCgaqiqnJHZnKICBERHN194O5b9vbLuAVRL+l0YWnZAAAAAElFTkSuQmCCXA==");}.ace_fold-widget:hover {border: 1px solid rgba(0, 0, 0, 0.3);background-color: rgba(255, 255, 255, 0.2);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);}.ace_fold-widget:active {border: 1px solid rgba(0, 0, 0, 0.4);background-color: rgba(0, 0, 0, 0.05);box-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);}.ace_dark .ace_fold-widget {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHklEQVQIW2P4//8/AzoGEQ7oGCaLLAhWiSwB146BAQCSTPYocqT0AAAAAElFTkSuQmCC");}.ace_dark .ace_fold-widget.ace_end {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAH0lEQVQIW2P4//8/AxQ7wNjIAjDMgC4AxjCVKBirIAAF0kz2rlhxpAAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget.ace_closed {background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAAFCAYAAACAcVaiAAAAHElEQVQIW2P4//+/AxAzgDADlOOAznHAKgPWAwARji8UIDTfQQAAAABJRU5ErkJggg==");}.ace_dark .ace_fold-widget:hover {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);background-color: rgba(255, 255, 255, 0.1);}.ace_dark .ace_fold-widget:active {box-shadow: 0 1px 1px rgba(255, 255, 255, 0.2);}.ace_fold-widget.ace_invalid {background-color: #FFB4B4;border-color: #DE5555;}.ace_fade-fold-widgets .ace_fold-widget {-webkit-transition: opacity 0.4s ease 0.05s;transition: opacity 0.4s ease 0.05s;opacity: 0;}.ace_fade-fold-widgets:hover .ace_fold-widget {-webkit-transition: opacity 0.05s ease 0.05s;transition: opacity 0.05s ease 0.05s;opacity:1;}.ace_underline {text-decoration: underline;}.ace_bold {font-weight: bold;}.ace_nobold .ace_bold {font-weight: normal;}.ace_italic {font-style: italic;}.ace_error-marker {background-color: rgba(255, 0, 0,0.2);position: absolute;z-index: 9;}.ace_highlight-marker {background-color: rgba(255, 255, 0,0.2);position: absolute;z-index: 8;}.ace_br1 {border-top-left-radius : 3px;}.ace_br2 {border-top-right-radius : 3px;}.ace_br3 {border-top-left-radius : 3px; border-top-right-radius: 3px;}.ace_br4 {border-bottom-right-radius: 3px;}.ace_br5 {border-top-left-radius : 3px; border-bottom-right-radius: 3px;}.ace_br6 {border-top-right-radius : 3px; border-bottom-right-radius: 3px;}.ace_br7 {border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px;}.ace_br8 {border-bottom-left-radius : 3px;}.ace_br9 {border-top-left-radius : 3px; border-bottom-left-radius: 3px;}.ace_br10{border-top-right-radius : 3px; border-bottom-left-radius: 3px;}.ace_br11{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br12{border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br13{border-top-left-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br14{border-top-right-radius : 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}.ace_br15{border-top-left-radius : 3px; border-top-right-radius: 3px; border-bottom-right-radius: 3px; border-bottom-left-radius: 3px;}';o.importCssString(p,"ace_editor.css");var A=function(e,t){var i=this;this.container=e||o.createElement("div"),this.$keepTextAreaAtCursor=!s.isOldIE,o.addCssClass(this.container,"ace_editor"),this.setTheme(t),this.$gutter=o.createElement("div"),this.$gutter.className="ace_gutter",this.container.appendChild(this.$gutter),this.scroller=o.createElement("div"),this.scroller.className="ace_scroller",this.container.appendChild(this.scroller),this.content=o.createElement("div"),this.content.className="ace_content",this.scroller.appendChild(this.content),this.$gutterLayer=new a(this.$gutter),this.$gutterLayer.on("changeGutterWidth",this.onGutterResize.bind(this)),this.$markerBack=new l(this.content);var n=this.$textLayer=new c(this.content);this.canvas=n.element,this.$markerFront=new l(this.content),this.$cursorLayer=new h(this.content),this.$horizScroll=!1,this.$vScroll=!1,this.scrollBar=this.scrollBarV=new d(this.container,this),this.scrollBarH=new u(this.container,this),this.scrollBarV.addEventListener("scroll",function(e){i.$scrollAnimation||i.session.setScrollTop(e.data-i.scrollMargin.top)}),this.scrollBarH.addEventListener("scroll",function(e){i.$scrollAnimation||i.session.setScrollLeft(e.data-i.scrollMargin.left)}),this.scrollTop=0,this.scrollLeft=0,this.cursorPos={row:0,column:0},this.$fontMetrics=new f(this.container,500),this.$textLayer.$setFontMetrics(this.$fontMetrics),this.$textLayer.addEventListener("changeCharacterSize",function(e){i.updateCharacterSize(),i.onResize(!0,i.gutterWidth,i.$size.width,i.$size.height),i._signal("changeCharacterSize",e)}),this.$size={width:0,height:0,scrollerHeight:0,scrollerWidth:0,$dirty:!0},this.layerConfig={width:1,padding:0,firstRow:0,firstRowScreen:0,lastRow:0,lineHeight:0,characterWidth:0,minHeight:1,maxHeight:1,offset:0,height:1,gutterOffset:1},this.scrollMargin={left:0,right:0,top:0,bottom:0,v:0,h:0},this.$loop=new g(this.$renderChanges.bind(this),this.container.ownerDocument.defaultView),this.$loop.schedule(this.CHANGE_FULL),this.updateCharacterSize(),this.setPadding(4),r.resetOptions(this),r._emit("renderer",this)};(function(){this.CHANGE_CURSOR=1,this.CHANGE_MARKER=2,this.CHANGE_GUTTER=4,this.CHANGE_SCROLL=8,this.CHANGE_LINES=16,this.CHANGE_TEXT=32,this.CHANGE_SIZE=64,this.CHANGE_MARKER_BACK=128,this.CHANGE_MARKER_FRONT=256,this.CHANGE_FULL=512,this.CHANGE_H_SCROLL=1024,n.implement(this,m),this.updateCharacterSize=function(){this.$textLayer.allowBoldFonts!=this.$allowBoldFonts&&(this.$allowBoldFonts=this.$textLayer.allowBoldFonts,this.setStyle("ace_nobold",!this.$allowBoldFonts)),this.layerConfig.characterWidth=this.characterWidth=this.$textLayer.getCharacterWidth(),this.layerConfig.lineHeight=this.lineHeight=this.$textLayer.getLineHeight(),this.$updatePrintMargin()},this.setSession=function(e){this.session&&this.session.doc.off("changeNewLineMode",this.onChangeNewLineMode),this.session=e,e&&this.scrollMargin.top&&e.getScrollTop()<=0&&e.setScrollTop(-this.scrollMargin.top),this.$cursorLayer.setSession(e),this.$markerBack.setSession(e),this.$markerFront.setSession(e),this.$gutterLayer.setSession(e),this.$textLayer.setSession(e),e&&(this.$loop.schedule(this.CHANGE_FULL),this.session.$setFontMetrics(this.$fontMetrics),this.onChangeNewLineMode=this.onChangeNewLineMode.bind(this),this.onChangeNewLineMode(),this.session.doc.on("changeNewLineMode",this.onChangeNewLineMode))},this.updateLines=function(e,t,i){if(void 0===t&&(t=1/0),this.$changedLines?(this.$changedLines.firstRow>e&&(this.$changedLines.firstRow=e),this.$changedLines.lastRow<t&&(this.$changedLines.lastRow=t)):this.$changedLines={firstRow:e,lastRow:t},this.$changedLines.lastRow<this.layerConfig.firstRow){if(!i)return;this.$changedLines.lastRow=this.layerConfig.lastRow}this.$changedLines.firstRow>this.layerConfig.lastRow||this.$loop.schedule(this.CHANGE_LINES)},this.onChangeNewLineMode=function(){this.$loop.schedule(this.CHANGE_TEXT),this.$textLayer.$updateEolChar()},this.onChangeTabSize=function(){this.$loop.schedule(this.CHANGE_TEXT|this.CHANGE_MARKER),this.$textLayer.onChangeTabSize()},this.updateText=function(){this.$loop.schedule(this.CHANGE_TEXT)},this.updateFull=function(e){e?this.$renderChanges(this.CHANGE_FULL,!0):this.$loop.schedule(this.CHANGE_FULL)},this.updateFontSize=function(){this.$textLayer.checkForSizeChanges()},this.$changes=0,this.$updateSizeAsync=function(){this.$loop.pending?this.$size.$dirty=!0:this.onResize()},this.onResize=function(e,t,i,n){if(!(this.resizing>2)){this.resizing>0?this.resizing++:this.resizing=e?1:0;var o=this.container;n||(n=o.clientHeight||o.scrollHeight),i||(i=o.clientWidth||o.scrollWidth);var r=this.$updateCachedSize(e,t,i,n);if(!this.$size.scrollerHeight||!i&&!n)return this.resizing=0;e&&(this.$gutterLayer.$padding=null),e?this.$renderChanges(r|this.$changes,!0):this.$loop.schedule(r|this.$changes),this.resizing&&(this.resizing=0),this.scrollBarV.scrollLeft=this.scrollBarV.scrollTop=null}},this.$updateCachedSize=function(e,t,i,n){n-=this.$extraHeight||0;var o=0,r=this.$size,s={width:r.width,height:r.height,scrollerHeight:r.scrollerHeight,scrollerWidth:r.scrollerWidth};return n&&(e||r.height!=n)&&(r.height=n,o|=this.CHANGE_SIZE,r.scrollerHeight=r.height,this.$horizScroll&&(r.scrollerHeight-=this.scrollBarH.getHeight()),this.scrollBarV.element.style.bottom=this.scrollBarH.getHeight()+"px",o|=this.CHANGE_SCROLL),i&&(e||r.width!=i)&&(o|=this.CHANGE_SIZE,r.width=i,null==t&&(t=this.$showGutter?this.$gutter.offsetWidth:0),this.gutterWidth=t,this.scrollBarH.element.style.left=this.scroller.style.left=t+"px",r.scrollerWidth=Math.max(0,i-t-this.scrollBarV.getWidth()),this.scrollBarH.element.style.right=this.scroller.style.right=this.scrollBarV.getWidth()+"px",this.scroller.style.bottom=this.scrollBarH.getHeight()+"px",(this.session&&this.session.getUseWrapMode()&&this.adjustWrapLimit()||e)&&(o|=this.CHANGE_FULL)),r.$dirty=!i||!n,o&&this._signal("resize",s),o},this.onGutterResize=function(){var e=this.$showGutter?this.$gutter.offsetWidth:0;e!=this.gutterWidth&&(this.$changes|=this.$updateCachedSize(!0,e,this.$size.width,this.$size.height)),this.session.getUseWrapMode()&&this.adjustWrapLimit()?this.$loop.schedule(this.CHANGE_FULL):this.$size.$dirty?this.$loop.schedule(this.CHANGE_FULL):(this.$computeLayerConfig(),this.$loop.schedule(this.CHANGE_MARKER))},this.adjustWrapLimit=function(){var e=this.$size.scrollerWidth-2*this.$padding,t=Math.floor(e/this.characterWidth);return this.session.adjustWrapLimit(t,this.$showPrintMargin&&this.$printMarginColumn)},this.setAnimatedScroll=function(e){this.setOption("animatedScroll",e)},this.getAnimatedScroll=function(){return this.$animatedScroll},this.setShowInvisibles=function(e){this.setOption("showInvisibles",e)},this.getShowInvisibles=function(){return this.getOption("showInvisibles")},this.getDisplayIndentGuides=function(){return this.getOption("displayIndentGuides")},this.setDisplayIndentGuides=function(e){this.setOption("displayIndentGuides",e)},this.setShowPrintMargin=function(e){this.setOption("showPrintMargin",e)},this.getShowPrintMargin=function(){return this.getOption("showPrintMargin")},this.setPrintMarginColumn=function(e){this.setOption("printMarginColumn",e)},this.getPrintMarginColumn=function(){return this.getOption("printMarginColumn")},this.getShowGutter=function(){return this.getOption("showGutter")},this.setShowGutter=function(e){return this.setOption("showGutter",e)},this.getFadeFoldWidgets=function(){return this.getOption("fadeFoldWidgets")},this.setFadeFoldWidgets=function(e){this.setOption("fadeFoldWidgets",e)},this.setHighlightGutterLine=function(e){this.setOption("highlightGutterLine",e)},this.getHighlightGutterLine=function(){return this.getOption("highlightGutterLine")},this.$updateGutterLineHighlight=function(){var e=this.$cursorLayer.$pixelPos,t=this.layerConfig.lineHeight;if(this.session.getUseWrapMode()){var i=this.session.selection.getCursor();i.column=0,e=this.$cursorLayer.getPixelPosition(i,!0),t*=this.session.getRowLength(i.row)}this.$gutterLineHighlight.style.top=e.top-this.layerConfig.offset+"px",this.$gutterLineHighlight.style.height=t+"px"},this.$updatePrintMargin=function(){if(this.$showPrintMargin||this.$printMarginEl){if(!this.$printMarginEl){var e=o.createElement("div");e.className="ace_layer ace_print-margin-layer",this.$printMarginEl=o.createElement("div"),this.$printMarginEl.className="ace_print-margin",e.appendChild(this.$printMarginEl),this.content.insertBefore(e,this.content.firstChild)}var t=this.$printMarginEl.style;t.left=this.characterWidth*this.$printMarginColumn+this.$padding+"px",t.visibility=this.$showPrintMargin?"visible":"hidden",this.session&&-1==this.session.$wrap&&this.adjustWrapLimit()}},this.getContainerElement=function(){return this.container},this.getMouseEventTarget=function(){return this.scroller},this.getTextAreaContainer=function(){return this.container},this.$moveTextAreaToCursor=function(){if(this.$keepTextAreaAtCursor){var e=this.layerConfig,t=this.$cursorLayer.$pixelPos.top,i=this.$cursorLayer.$pixelPos.left;t-=e.offset;var n=this.textarea.style,o=this.lineHeight;if(0>t||t>e.height-o)return void(n.top=n.left="0");var r=this.characterWidth;if(this.$composition){var s=this.textarea.value.replace(/^\x01+/,"");r*=this.session.$getStringScreenWidth(s)[0]+2,o+=2}i-=this.scrollLeft,i>this.$size.scrollerWidth-r&&(i=this.$size.scrollerWidth-r),i+=this.gutterWidth,n.height=o+"px",n.width=r+"px",n.left=Math.min(i,this.$size.scrollerWidth-r)+"px",n.top=Math.min(t,this.$size.height-o)+"px"}},this.getFirstVisibleRow=function(){return this.layerConfig.firstRow},this.getFirstFullyVisibleRow=function(){return this.layerConfig.firstRow+(0===this.layerConfig.offset?0:1)},this.getLastFullyVisibleRow=function(){var e=Math.floor((this.layerConfig.height+this.layerConfig.offset)/this.layerConfig.lineHeight);return this.layerConfig.firstRow-1+e},this.getLastVisibleRow=function(){return this.layerConfig.lastRow},this.$padding=null,this.setPadding=function(e){this.$padding=e,this.$textLayer.setPadding(e),this.$cursorLayer.setPadding(e),this.$markerFront.setPadding(e),this.$markerBack.setPadding(e),this.$loop.schedule(this.CHANGE_FULL),this.$updatePrintMargin()},this.setScrollMargin=function(e,t,i,n){var o=this.scrollMargin;o.top=0|e,o.bottom=0|t,o.right=0|n,o.left=0|i,o.v=o.top+o.bottom,o.h=o.left+o.right,o.top&&this.scrollTop<=0&&this.session&&this.session.setScrollTop(-o.top),this.updateFull()},this.getHScrollBarAlwaysVisible=function(){return this.$hScrollBarAlwaysVisible},this.setHScrollBarAlwaysVisible=function(e){this.setOption("hScrollBarAlwaysVisible",e)},this.getVScrollBarAlwaysVisible=function(){return this.$vScrollBarAlwaysVisible},this.setVScrollBarAlwaysVisible=function(e){this.setOption("vScrollBarAlwaysVisible",e)},this.$updateScrollBarV=function(){var e=this.layerConfig.maxHeight,t=this.$size.scrollerHeight;!this.$maxLines&&this.$scrollPastEnd&&(e-=(t-this.lineHeight)*this.$scrollPastEnd,this.scrollTop>e-t&&(e=this.scrollTop+t,this.scrollBarV.scrollTop=null)),this.scrollBarV.setScrollHeight(e+this.scrollMargin.v),this.scrollBarV.setScrollTop(this.scrollTop+this.scrollMargin.top)},this.$updateScrollBarH=function(){this.scrollBarH.setScrollWidth(this.layerConfig.width+2*this.$padding+this.scrollMargin.h),this.scrollBarH.setScrollLeft(this.scrollLeft+this.scrollMargin.left)},this.$frozen=!1,this.freeze=function(){this.$frozen=!0},this.unfreeze=function(){this.$frozen=!1},this.$renderChanges=function(e,t){if(this.$changes&&(e|=this.$changes,this.$changes=0),!this.session||!this.container.offsetWidth||this.$frozen||!e&&!t)return void(this.$changes|=e);if(this.$size.$dirty)return this.$changes|=e,this.onResize(!0);this.lineHeight||this.$textLayer.checkForSizeChanges(),this._signal("beforeRender");var i=this.layerConfig;if(e&this.CHANGE_FULL||e&this.CHANGE_SIZE||e&this.CHANGE_TEXT||e&this.CHANGE_LINES||e&this.CHANGE_SCROLL||e&this.CHANGE_H_SCROLL){if(e|=this.$computeLayerConfig(),i.firstRow!=this.layerConfig.firstRow&&i.firstRowScreen==this.layerConfig.firstRowScreen){var n=this.scrollTop+(i.firstRow-this.layerConfig.firstRow)*this.lineHeight;n>0&&(this.scrollTop=n,e|=this.CHANGE_SCROLL,e|=this.$computeLayerConfig())}i=this.layerConfig,this.$updateScrollBarV(),e&this.CHANGE_H_SCROLL&&this.$updateScrollBarH(),this.$gutterLayer.element.style.marginTop=-i.offset+"px",this.content.style.marginTop=-i.offset+"px",this.content.style.width=i.width+2*this.$padding+"px",this.content.style.height=i.minHeight+"px"}return e&this.CHANGE_H_SCROLL&&(this.content.style.marginLeft=-this.scrollLeft+"px",this.scroller.className=this.scrollLeft<=0?"ace_scroller":"ace_scroller ace_scroll-left"),e&this.CHANGE_FULL?(this.$textLayer.update(i),this.$showGutter&&this.$gutterLayer.update(i),this.$markerBack.update(i),this.$markerFront.update(i),this.$cursorLayer.update(i),this.$moveTextAreaToCursor(),this.$highlightGutterLine&&this.$updateGutterLineHighlight(),void this._signal("afterRender")):e&this.CHANGE_SCROLL?(e&this.CHANGE_TEXT||e&this.CHANGE_LINES?this.$textLayer.update(i):this.$textLayer.scrollLines(i),this.$showGutter&&this.$gutterLayer.update(i),this.$markerBack.update(i),this.$markerFront.update(i),this.$cursorLayer.update(i),this.$highlightGutterLine&&this.$updateGutterLineHighlight(),this.$moveTextAreaToCursor(),void this._signal("afterRender")):(e&this.CHANGE_TEXT?(this.$textLayer.update(i),this.$showGutter&&this.$gutterLayer.update(i)):e&this.CHANGE_LINES?(this.$updateLines()||e&this.CHANGE_GUTTER&&this.$showGutter)&&this.$gutterLayer.update(i):(e&this.CHANGE_TEXT||e&this.CHANGE_GUTTER)&&this.$showGutter&&this.$gutterLayer.update(i),
|
|
|
+e&this.CHANGE_CURSOR&&(this.$cursorLayer.update(i),this.$moveTextAreaToCursor(),this.$highlightGutterLine&&this.$updateGutterLineHighlight()),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_FRONT)&&this.$markerFront.update(i),e&(this.CHANGE_MARKER|this.CHANGE_MARKER_BACK)&&this.$markerBack.update(i),void this._signal("afterRender"))},this.$autosize=function(){var e=this.session.getScreenLength()*this.lineHeight,t=this.$maxLines*this.lineHeight,i=Math.max((this.$minLines||1)*this.lineHeight,Math.min(t,e))+this.scrollMargin.v+(this.$extraHeight||0);this.$horizScroll&&(i+=this.scrollBarH.getHeight());var n=e>t;if(i!=this.desiredHeight||this.$size.height!=this.desiredHeight||n!=this.$vScroll){n!=this.$vScroll&&(this.$vScroll=n,this.scrollBarV.setVisible(n));var o=this.container.clientWidth;this.container.style.height=i+"px",this.$updateCachedSize(!0,this.$gutterWidth,o,i),this.desiredHeight=i,this._signal("autosize")}},this.$computeLayerConfig=function(){var e=this.session,t=this.$size,i=t.height<=2*this.lineHeight,n=this.session.getScreenLength(),o=n*this.lineHeight,r=this.$getLongestLine(),s=!i&&(this.$hScrollBarAlwaysVisible||t.scrollerWidth-r-2*this.$padding<0),a=this.$horizScroll!==s;a&&(this.$horizScroll=s,this.scrollBarH.setVisible(s));var l=this.$vScroll;this.$maxLines&&this.lineHeight>1&&this.$autosize();var c=this.scrollTop%this.lineHeight,h=t.scrollerHeight+this.lineHeight,u=!this.$maxLines&&this.$scrollPastEnd?(t.scrollerHeight-this.lineHeight)*this.$scrollPastEnd:0;o+=u;var d=this.scrollMargin;this.session.setScrollTop(Math.max(-d.top,Math.min(this.scrollTop,o-t.scrollerHeight+d.bottom))),this.session.setScrollLeft(Math.max(-d.left,Math.min(this.scrollLeft,r+2*this.$padding-t.scrollerWidth+d.right)));var g=!i&&(this.$vScrollBarAlwaysVisible||t.scrollerHeight-o+u<0||this.scrollTop>d.top),f=l!==g;f&&(this.$vScroll=g,this.scrollBarV.setVisible(g));var m,p,A=Math.ceil(h/this.lineHeight)-1,v=Math.max(0,Math.round((this.scrollTop-c)/this.lineHeight)),C=v+A,w=this.lineHeight;v=e.screenToDocumentRow(v,0);var F=e.getFoldLine(v);F&&(v=F.start.row),m=e.documentToScreenRow(v,0),p=e.getRowLength(v)*w,C=Math.min(e.screenToDocumentRow(C,0),e.getLength()-1),h=t.scrollerHeight+e.getRowLength(C)*w+p,c=this.scrollTop-m*w;var E=0;return this.layerConfig.width!=r&&(E=this.CHANGE_H_SCROLL),(a||f)&&(E=this.$updateCachedSize(!0,this.gutterWidth,t.width,t.height),this._signal("scrollbarVisibilityChanged"),f&&(r=this.$getLongestLine())),this.layerConfig={width:r,padding:this.$padding,firstRow:v,firstRowScreen:m,lastRow:C,lineHeight:w,characterWidth:this.characterWidth,minHeight:h,maxHeight:o,offset:c,gutterOffset:Math.max(0,Math.ceil((c+t.height-t.scrollerHeight)/w)),height:this.$size.scrollerHeight},E},this.$updateLines=function(){var e=this.$changedLines.firstRow,t=this.$changedLines.lastRow;this.$changedLines=null;var i=this.layerConfig;return e>i.lastRow+1||t<i.firstRow?void 0:t===1/0?(this.$showGutter&&this.$gutterLayer.update(i),void this.$textLayer.update(i)):(this.$textLayer.updateLines(i,e,t),!0)},this.$getLongestLine=function(){var e=this.session.getScreenWidth();return this.showInvisibles&&!this.session.$useWrapMode&&(e+=1),Math.max(this.$size.scrollerWidth-2*this.$padding,Math.round(e*this.characterWidth))},this.updateFrontMarkers=function(){this.$markerFront.setMarkers(this.session.getMarkers(!0)),this.$loop.schedule(this.CHANGE_MARKER_FRONT)},this.updateBackMarkers=function(){this.$markerBack.setMarkers(this.session.getMarkers()),this.$loop.schedule(this.CHANGE_MARKER_BACK)},this.addGutterDecoration=function(e,t){this.$gutterLayer.addGutterDecoration(e,t)},this.removeGutterDecoration=function(e,t){this.$gutterLayer.removeGutterDecoration(e,t)},this.updateBreakpoints=function(e){this.$loop.schedule(this.CHANGE_GUTTER)},this.setAnnotations=function(e){this.$gutterLayer.setAnnotations(e),this.$loop.schedule(this.CHANGE_GUTTER)},this.updateCursor=function(){this.$loop.schedule(this.CHANGE_CURSOR)},this.hideCursor=function(){this.$cursorLayer.hideCursor()},this.showCursor=function(){this.$cursorLayer.showCursor()},this.scrollSelectionIntoView=function(e,t,i){this.scrollCursorIntoView(e,i),this.scrollCursorIntoView(t,i)},this.scrollCursorIntoView=function(e,t,i){if(0!==this.$size.scrollerHeight){var n=this.$cursorLayer.getPixelPosition(e),o=n.left,r=n.top,s=i&&i.top||0,a=i&&i.bottom||0,l=this.$scrollAnimation?this.session.getScrollTop():this.scrollTop;l+s>r?(t&&(r-=t*this.$size.scrollerHeight),0===r&&(r=-this.scrollMargin.top),this.session.setScrollTop(r)):l+this.$size.scrollerHeight-a<r+this.lineHeight&&(t&&(r+=t*this.$size.scrollerHeight),this.session.setScrollTop(r+this.lineHeight-this.$size.scrollerHeight));var c=this.scrollLeft;c>o?(o<this.$padding+2*this.layerConfig.characterWidth&&(o=-this.scrollMargin.left),this.session.setScrollLeft(o)):c+this.$size.scrollerWidth<o+this.characterWidth?this.session.setScrollLeft(Math.round(o+this.characterWidth-this.$size.scrollerWidth)):c<=this.$padding&&o-c<this.characterWidth&&this.session.setScrollLeft(0)}},this.getScrollTop=function(){return this.session.getScrollTop()},this.getScrollLeft=function(){return this.session.getScrollLeft()},this.getScrollTopRow=function(){return this.scrollTop/this.lineHeight},this.getScrollBottomRow=function(){return Math.max(0,Math.floor((this.scrollTop+this.$size.scrollerHeight)/this.lineHeight)-1)},this.scrollToRow=function(e){this.session.setScrollTop(e*this.lineHeight)},this.alignCursor=function(e,t){"number"==typeof e&&(e={row:e,column:0});var i=this.$cursorLayer.getPixelPosition(e),n=this.$size.scrollerHeight-this.lineHeight,o=i.top-n*(t||0);return this.session.setScrollTop(o),o},this.STEPS=8,this.$calcSteps=function(e,t){var i=0,n=this.STEPS,o=[],r=function(e,t,i){return i*(Math.pow(e-1,3)+1)+t};for(i=0;n>i;++i)o.push(r(i/this.STEPS,e,t-e));return o},this.scrollToLine=function(e,t,i,n){var o=this.$cursorLayer.getPixelPosition({row:e,column:0}),r=o.top;t&&(r-=this.$size.scrollerHeight/2);var s=this.scrollTop;this.session.setScrollTop(r),i!==!1&&this.animateScrolling(s,n)},this.animateScrolling=function(e,t){var i=this.scrollTop;if(this.$animatedScroll){var n=this;if(e!=i){if(this.$scrollAnimation){var o=this.$scrollAnimation.steps;if(o.length&&(e=o[0],e==i))return}var r=n.$calcSteps(e,i);this.$scrollAnimation={from:e,to:i,steps:r},clearInterval(this.$timer),n.session.setScrollTop(r.shift()),n.session.$scrollTop=i,this.$timer=setInterval(function(){r.length?(n.session.setScrollTop(r.shift()),n.session.$scrollTop=i):null!=i?(n.session.$scrollTop=-1,n.session.setScrollTop(i),i=null):(n.$timer=clearInterval(n.$timer),n.$scrollAnimation=null,t&&t())},10)}}},this.scrollToY=function(e){this.scrollTop!==e&&(this.$loop.schedule(this.CHANGE_SCROLL),this.scrollTop=e)},this.scrollToX=function(e){this.scrollLeft!==e&&(this.scrollLeft=e),this.$loop.schedule(this.CHANGE_H_SCROLL)},this.scrollTo=function(e,t){this.session.setScrollTop(t),this.session.setScrollLeft(t)},this.scrollBy=function(e,t){t&&this.session.setScrollTop(this.session.getScrollTop()+t),e&&this.session.setScrollLeft(this.session.getScrollLeft()+e)},this.isScrollableBy=function(e,t){return 0>t&&this.session.getScrollTop()>=1-this.scrollMargin.top?!0:t>0&&this.session.getScrollTop()+this.$size.scrollerHeight-this.layerConfig.maxHeight<-1+this.scrollMargin.bottom?!0:0>e&&this.session.getScrollLeft()>=1-this.scrollMargin.left?!0:e>0&&this.session.getScrollLeft()+this.$size.scrollerWidth-this.layerConfig.width<-1+this.scrollMargin.right?!0:void 0},this.pixelToScreenCoordinates=function(e,t){var i=this.scroller.getBoundingClientRect(),n=(e+this.scrollLeft-i.left-this.$padding)/this.characterWidth,o=Math.floor((t+this.scrollTop-i.top)/this.lineHeight),r=Math.round(n);return{row:o,column:r,side:n-r>0?1:-1}},this.screenToTextCoordinates=function(e,t){var i=this.scroller.getBoundingClientRect(),n=Math.round((e+this.scrollLeft-i.left-this.$padding)/this.characterWidth),o=(t+this.scrollTop-i.top)/this.lineHeight;return this.session.screenToDocumentPosition(o,Math.max(n,0))},this.textToScreenCoordinates=function(e,t){var i=this.scroller.getBoundingClientRect(),n=this.session.documentToScreenPosition(e,t),o=this.$padding+Math.round(n.column*this.characterWidth),r=n.row*this.lineHeight;return{pageX:i.left+o-this.scrollLeft,pageY:i.top+r-this.scrollTop}},this.visualizeFocus=function(){o.addCssClass(this.container,"ace_focus")},this.visualizeBlur=function(){o.removeCssClass(this.container,"ace_focus")},this.showComposition=function(e){this.$composition||(this.$composition={keepTextAreaAtCursor:this.$keepTextAreaAtCursor,cssText:this.textarea.style.cssText}),this.$keepTextAreaAtCursor=!0,o.addCssClass(this.textarea,"ace_composition"),this.textarea.style.cssText="",this.$moveTextAreaToCursor()},this.setCompositionText=function(e){this.$moveTextAreaToCursor()},this.hideComposition=function(){this.$composition&&(o.removeCssClass(this.textarea,"ace_composition"),this.$keepTextAreaAtCursor=this.$composition.keepTextAreaAtCursor,this.textarea.style.cssText=this.$composition.cssText,this.$composition=null)},this.setTheme=function(e,t){function i(i){if(n.$themeId!=e)return t&&t();if(i.cssClass){o.importCssString(i.cssText,i.cssClass,n.container.ownerDocument),n.theme&&o.removeCssClass(n.container,n.theme.cssClass);var r="padding"in i?i.padding:"padding"in(n.theme||{})?4:n.$padding;n.$padding&&r!=n.$padding&&n.setPadding(r),n.$theme=i.cssClass,n.theme=i,o.addCssClass(n.container,i.cssClass),o.setCssClass(n.container,"ace_dark",i.isDark),n.$size&&(n.$size.width=0,n.$updateSizeAsync()),n._dispatchEvent("themeLoaded",{theme:i}),t&&t()}}var n=this;if(this.$themeId=e,n._dispatchEvent("themeChange",{theme:e}),e&&"string"!=typeof e)i(e);else{var s=e||this.$options.theme.initialValue;r.loadModule(["theme",s],i)}},this.getTheme=function(){return this.$themeId},this.setStyle=function(e,t){o.setCssClass(this.container,e,t!==!1)},this.unsetStyle=function(e){o.removeCssClass(this.container,e)},this.setCursorStyle=function(e){this.scroller.style.cursor!=e&&(this.scroller.style.cursor=e)},this.setMouseCursor=function(e){this.scroller.style.cursor=e},this.destroy=function(){this.$textLayer.destroy(),this.$cursorLayer.destroy()}}).call(A.prototype),r.defineOptions(A.prototype,"renderer",{animatedScroll:{initialValue:!1},showInvisibles:{set:function(e){this.$textLayer.setShowInvisibles(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!1},showPrintMargin:{set:function(){this.$updatePrintMargin()},initialValue:!0},printMarginColumn:{set:function(){this.$updatePrintMargin()},initialValue:80},printMargin:{set:function(e){"number"==typeof e&&(this.$printMarginColumn=e),this.$showPrintMargin=!!e,this.$updatePrintMargin()},get:function(){return this.$showPrintMargin&&this.$printMarginColumn}},showGutter:{set:function(e){this.$gutter.style.display=e?"block":"none",this.$loop.schedule(this.CHANGE_FULL),this.onGutterResize()},initialValue:!0},fadeFoldWidgets:{set:function(e){o.setCssClass(this.$gutter,"ace_fade-fold-widgets",e)},initialValue:!1},showFoldWidgets:{set:function(e){this.$gutterLayer.setShowFoldWidgets(e)},initialValue:!0},showLineNumbers:{set:function(e){this.$gutterLayer.setShowLineNumbers(e),this.$loop.schedule(this.CHANGE_GUTTER)},initialValue:!0},displayIndentGuides:{set:function(e){this.$textLayer.setDisplayIndentGuides(e)&&this.$loop.schedule(this.CHANGE_TEXT)},initialValue:!0},highlightGutterLine:{set:function(e){return this.$gutterLineHighlight?(this.$gutterLineHighlight.style.display=e?"":"none",void(this.$cursorLayer.$pixelPos&&this.$updateGutterLineHighlight())):(this.$gutterLineHighlight=o.createElement("div"),this.$gutterLineHighlight.className="ace_gutter-active-line",void this.$gutter.appendChild(this.$gutterLineHighlight))},initialValue:!1,value:!0},hScrollBarAlwaysVisible:{set:function(e){this.$hScrollBarAlwaysVisible&&this.$horizScroll||this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},vScrollBarAlwaysVisible:{set:function(e){this.$vScrollBarAlwaysVisible&&this.$vScroll||this.$loop.schedule(this.CHANGE_SCROLL)},initialValue:!1},fontSize:{set:function(e){"number"==typeof e&&(e+="px"),this.container.style.fontSize=e,this.updateFontSize()},initialValue:12},fontFamily:{set:function(e){this.container.style.fontFamily=e,this.updateFontSize()}},maxLines:{set:function(e){this.updateFull()}},minLines:{set:function(e){this.updateFull()}},scrollPastEnd:{set:function(e){e=+e||0,this.$scrollPastEnd!=e&&(this.$scrollPastEnd=e,this.$loop.schedule(this.CHANGE_SCROLL))},initialValue:0,handlesSet:!0},fixedWidthGutter:{set:function(e){this.$gutterLayer.$fixedWidth=!!e,this.$loop.schedule(this.CHANGE_GUTTER)}},theme:{set:function(e){this.setTheme(e)},get:function(){return this.$themeId||this.theme},initialValue:"./theme/textmate",handlesSet:!0}}),t.VirtualRenderer=A}),define("ace/worker/worker_client",["require","exports","module","ace/lib/oop","ace/lib/net","ace/lib/event_emitter","ace/config"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("../lib/net"),r=e("../lib/event_emitter").EventEmitter,s=e("../config"),a=function(t,i,n,o){if(this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.onMessage=this.onMessage.bind(this),e.nameToUrl&&!e.toUrl&&(e.toUrl=e.nameToUrl),s.get("packaged")||!e.toUrl)o=o||s.moduleUrl(i,"worker");else{var r=this.$normalizePath;o=o||r(e.toUrl("ace/worker/worker.js",null,"_"));var a={};t.forEach(function(t){a[t]=r(e.toUrl(t,null,"_").replace(/(\.js)?(\?.*)?$/,""))})}try{this.$worker=new Worker(o)}catch(l){if(!(l instanceof window.DOMException))throw l;var c=this.$workerBlob(o),h=window.URL||window.webkitURL,u=h.createObjectURL(c);this.$worker=new Worker(u),h.revokeObjectURL(u)}this.$worker.postMessage({init:!0,tlns:a,module:i,classname:n}),this.callbackId=1,this.callbacks={},this.$worker.onmessage=this.onMessage};(function(){n.implement(this,r),this.onMessage=function(e){var t=e.data;switch(t.type){case"event":this._signal(t.name,{data:t.data});break;case"call":var i=this.callbacks[t.id];i&&(i(t.data),delete this.callbacks[t.id]);break;case"error":this.reportError(t.data);break;case"log":window.console&&console.log&&console.log.apply(console,t.data)}},this.reportError=function(e){window.console&&console.error&&console.error(e)},this.$normalizePath=function(e){return o.qualifyURL(e)},this.terminate=function(){this._signal("terminate",{}),this.deltaQueue=null,this.$worker.terminate(),this.$worker=null,this.$doc&&this.$doc.off("change",this.changeListener),this.$doc=null},this.send=function(e,t){this.$worker.postMessage({command:e,args:t})},this.call=function(e,t,i){if(i){var n=this.callbackId++;this.callbacks[n]=i,t.push(n)}this.send(e,t)},this.emit=function(e,t){try{this.$worker.postMessage({event:e,data:{data:t.data}})}catch(i){console.error(i.stack)}},this.attachToDocument=function(e){this.$doc&&this.terminate(),this.$doc=e,this.call("setValue",[e.getValue()]),e.on("change",this.changeListener)},this.changeListener=function(e){this.deltaQueue||(this.deltaQueue=[],setTimeout(this.$sendDeltaQueue,0)),"insert"==e.action?this.deltaQueue.push(e.start,e.lines):this.deltaQueue.push(e.start,e.end)},this.$sendDeltaQueue=function(){var e=this.deltaQueue;e&&(this.deltaQueue=null,e.length>50&&e.length>this.$doc.getLength()>>1?this.call("setValue",[this.$doc.getValue()]):this.emit("change",{data:e}))},this.$workerBlob=function(e){var t="importScripts('"+o.qualifyURL(e)+"');";try{return new Blob([t],{type:"application/javascript"})}catch(i){var n=window.BlobBuilder||window.WebKitBlobBuilder||window.MozBlobBuilder,r=new n;return r.append(t),r.getBlob("application/javascript")}}}).call(a.prototype);var l=function(e,t,i){this.$sendDeltaQueue=this.$sendDeltaQueue.bind(this),this.changeListener=this.changeListener.bind(this),this.callbackId=1,this.callbacks={},this.messageBuffer=[];var n=null,o=!1,a=Object.create(r),l=this;this.$worker={},this.$worker.terminate=function(){},this.$worker.postMessage=function(e){l.messageBuffer.push(e),n&&(o?setTimeout(c):c())},this.setEmitSync=function(e){o=e};var c=function(){var e=l.messageBuffer.shift();e.command?n[e.command].apply(n,e.args):e.event&&a._signal(e.event,e.data)};a.postMessage=function(e){l.onMessage({data:e})},a.callback=function(e,t){this.postMessage({type:"call",id:t,data:e})},a.emit=function(e,t){this.postMessage({type:"event",name:e,data:t})},s.loadModule(["worker",t],function(e){for(n=new e[i](a);l.messageBuffer.length;)c()})};l.prototype=a.prototype,t.UIWorkerClient=l,t.WorkerClient=a}),define("ace/placeholder",["require","exports","module","ace/range","ace/lib/event_emitter","ace/lib/oop"],function(e,t,i){"use strict";var n=e("./range").Range,o=e("./lib/event_emitter").EventEmitter,r=e("./lib/oop"),s=function(e,t,i,n,o,r){var s=this;this.length=t,this.session=e,this.doc=e.getDocument(),this.mainClass=o,this.othersClass=r,this.$onUpdate=this.onUpdate.bind(this),this.doc.on("change",this.$onUpdate),this.$others=n,this.$onCursorChange=function(){setTimeout(function(){s.onCursorChange()})},this.$pos=i;var a=e.getUndoManager().$undoStack||e.getUndoManager().$undostack||{length:-1};this.$undoStackDepth=a.length,this.setup(),e.selection.on("changeCursor",this.$onCursorChange)};(function(){r.implement(this,o),this.setup=function(){var e=this,t=this.doc,i=this.session,o=this.$pos;this.selectionBefore=i.selection.toJSON(),i.selection.inMultiSelectMode&&i.selection.toSingleRange(),this.pos=t.createAnchor(o.row,o.column),this.markerId=i.addMarker(new n(o.row,o.column,o.row,o.column+this.length),this.mainClass,null,!1),this.pos.on("change",function(t){i.removeMarker(e.markerId),e.markerId=i.addMarker(new n(t.value.row,t.value.column,t.value.row,t.value.column+e.length),e.mainClass,null,!1)}),this.others=[],this.$others.forEach(function(i){var n=t.createAnchor(i.row,i.column);e.others.push(n)}),i.setUndoSelect(!1)},this.showOtherMarkers=function(){if(!this.othersActive){var e=this.session,t=this;this.othersActive=!0,this.others.forEach(function(i){i.markerId=e.addMarker(new n(i.row,i.column,i.row,i.column+t.length),t.othersClass,null,!1),i.on("change",function(o){e.removeMarker(i.markerId),i.markerId=e.addMarker(new n(o.value.row,o.value.column,o.value.row,o.value.column+t.length),t.othersClass,null,!1)})})}},this.hideOtherMarkers=function(){if(this.othersActive){this.othersActive=!1;for(var e=0;e<this.others.length;e++)this.session.removeMarker(this.others[e].markerId)}},this.onUpdate=function(e){var t=e;if(t.start.row===t.end.row&&t.start.row===this.pos.row&&!this.$updating){this.$updating=!0;var i="insert"===e.action?t.end.column-t.start.column:t.start.column-t.end.column;if(t.start.column>=this.pos.column&&t.start.column<=this.pos.column+this.length+1){var o=t.start.column-this.pos.column;if(this.length+=i,!this.session.$fromUndo){if("insert"===e.action)for(var r=this.others.length-1;r>=0;r--){var s=this.others[r],a={row:s.row,column:s.column+o};s.row===t.start.row&&t.start.column<s.column&&(a.column+=i),this.doc.insertMergedLines(a,e.lines)}else if("remove"===e.action)for(var r=this.others.length-1;r>=0;r--){var s=this.others[r],a={row:s.row,column:s.column+o};s.row===t.start.row&&t.start.column<s.column&&(a.column+=i),this.doc.remove(new n(a.row,a.column,a.row,a.column-i))}t.start.column===this.pos.column&&"insert"===e.action?setTimeout(function(){this.pos.setPosition(this.pos.row,this.pos.column-i);for(var e=0;e<this.others.length;e++){var n=this.others[e],o={row:n.row,column:n.column-i};n.row===t.start.row&&t.start.column<n.column&&(o.column+=i),n.setPosition(o.row,o.column)}}.bind(this),0):t.start.column===this.pos.column&&"remove"===e.action&&setTimeout(function(){for(var e=0;e<this.others.length;e++){var n=this.others[e];n.row===t.start.row&&t.start.column<n.column&&n.setPosition(n.row,n.column-i)}}.bind(this),0)}this.pos._emit("change",{value:this.pos});for(var r=0;r<this.others.length;r++)this.others[r]._emit("change",{value:this.others[r]})}this.$updating=!1}},this.onCursorChange=function(e){if(!this.$updating&&this.session){var t=this.session.selection.getCursor();t.row===this.pos.row&&t.column>=this.pos.column&&t.column<=this.pos.column+this.length?(this.showOtherMarkers(),this._emit("cursorEnter",e)):(this.hideOtherMarkers(),this._emit("cursorLeave",e))}},this.detach=function(){this.session.removeMarker(this.markerId),this.hideOtherMarkers(),this.doc.removeEventListener("change",this.$onUpdate),this.session.selection.removeEventListener("changeCursor",this.$onCursorChange),this.pos.detach();for(var e=0;e<this.others.length;e++)this.others[e].detach();this.session.setUndoSelect(!0),this.session=null},this.cancel=function(){if(-1===this.$undoStackDepth)throw Error("Canceling placeholders only supported with undo manager attached to session.");for(var e=this.session.getUndoManager(),t=(e.$undoStack||e.$undostack).length-this.$undoStackDepth,i=0;t>i;i++)e.undo(!0);this.selectionBefore&&this.session.selection.fromJSON(this.selectionBefore)}}).call(s.prototype),t.PlaceHolder=s}),define("ace/mouse/multi_select_handler",["require","exports","module","ace/lib/event","ace/lib/useragent"],function(e,t,i){function n(e,t){return e.row==t.row&&e.column==t.column}function o(e){var t=e.domEvent,i=t.altKey,o=t.shiftKey,a=t.ctrlKey,l=e.getAccelKey(),c=e.getButton();if(a&&s.isMac&&(c=t.button),e.editor.inMultiSelectMode&&2==c)return void e.editor.textInput.onContextMenu(e.domEvent);if(!a&&!i&&!l)return void(0===c&&e.editor.inMultiSelectMode&&e.editor.exitMultiSelectMode());if(0===c){var h,u=e.editor,d=u.selection,g=u.inMultiSelectMode,f=e.getDocumentPosition(),m=d.getCursor(),p=e.inSelection()||d.isEmpty()&&n(f,m),A=e.x,v=e.y,C=function(e){A=e.clientX,v=e.clientY},w=u.session,F=u.renderer.pixelToScreenCoordinates(A,v),E=F;if(u.$mouseHandler.$enableJumpToDef)a&&i||l&&i?h=o?"block":"add":i&&u.$blockSelectEnabled&&(h="block");else if(l&&!i){if(h="add",!g&&o)return}else i&&u.$blockSelectEnabled&&(h="block");if(h&&s.isMac&&t.ctrlKey&&u.$mouseHandler.cancelContextMenu(),"add"==h){if(!g&&p)return;if(!g){var b=d.toOrientedRange();u.addSelectionMarker(b)}var y=d.rangeList.rangeAtPoint(f);u.$blockScrolling++,u.inVirtualSelectionMode=!0,o&&(y=null,b=d.ranges[0]||b,u.removeSelectionMarker(b)),u.once("mouseup",function(){var e=d.toOrientedRange();y&&e.isEmpty()&&n(y.cursor,e.cursor)?d.substractPoint(e.cursor):(o?d.substractPoint(b.cursor):b&&(u.removeSelectionMarker(b),d.addRange(b)),d.addRange(e)),u.$blockScrolling--,u.inVirtualSelectionMode=!1})}else if("block"==h){e.stop(),u.inVirtualSelectionMode=!0;var x,$=[],k=function(){var e=u.renderer.pixelToScreenCoordinates(A,v),t=w.screenToDocumentPosition(e.row,e.column);n(E,e)&&n(t,d.lead)||(E=e,u.$blockScrolling++,u.selection.moveToPosition(t),u.renderer.scrollCursorIntoView(),u.removeSelectionMarkers($),$=d.rectangularRangeBlock(E,F),u.$mouseHandler.$clickSelection&&1==$.length&&$[0].isEmpty()&&($[0]=u.$mouseHandler.$clickSelection.clone()),$.forEach(u.addSelectionMarker,u),u.updateSelectionMarkers(),u.$blockScrolling--)};u.$blockScrolling++,g&&!l?d.toSingleRange():!g&&l&&(x=d.toOrientedRange(),u.addSelectionMarker(x)),o?F=w.documentToScreenPosition(d.lead):d.moveToPosition(f),u.$blockScrolling--,E={row:-1,column:-1};var B=function(e){clearInterval(S),u.removeSelectionMarkers($),$.length||($=[d.toOrientedRange()]),u.$blockScrolling++,x&&(u.removeSelectionMarker(x),d.toSingleRange(x));for(var t=0;t<$.length;t++)d.addRange($[t]);u.inVirtualSelectionMode=!1,u.$mouseHandler.$clickSelection=null,u.$blockScrolling--},D=k;r.capture(u.container,C,B);var S=setInterval(function(){D()},20);return e.preventDefault()}}}var r=e("../lib/event"),s=e("../lib/useragent");t.onMouseDown=o}),define("ace/commands/multi_select_commands",["require","exports","module","ace/keyboard/hash_handler"],function(e,t,i){t.defaultCommands=[{name:"addCursorAbove",exec:function(e){e.selectMoreLines(-1)},bindKey:{win:"Ctrl-Alt-Up",mac:"Ctrl-Alt-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelow",exec:function(e){e.selectMoreLines(1)},bindKey:{win:"Ctrl-Alt-Down",mac:"Ctrl-Alt-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorAboveSkipCurrent",exec:function(e){e.selectMoreLines(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Up",mac:"Ctrl-Alt-Shift-Up"},scrollIntoView:"cursor",readOnly:!0},{name:"addCursorBelowSkipCurrent",exec:function(e){e.selectMoreLines(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Down",mac:"Ctrl-Alt-Shift-Down"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreBefore",exec:function(e){e.selectMore(-1)},bindKey:{win:"Ctrl-Alt-Left",mac:"Ctrl-Alt-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectMoreAfter",exec:function(e){e.selectMore(1)},bindKey:{win:"Ctrl-Alt-Right",mac:"Ctrl-Alt-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextBefore",exec:function(e){e.selectMore(-1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Left",mac:"Ctrl-Alt-Shift-Left"},scrollIntoView:"cursor",readOnly:!0},{name:"selectNextAfter",exec:function(e){e.selectMore(1,!0)},bindKey:{win:"Ctrl-Alt-Shift-Right",mac:"Ctrl-Alt-Shift-Right"},scrollIntoView:"cursor",readOnly:!0},{name:"splitIntoLines",exec:function(e){e.multiSelect.splitIntoLines()},bindKey:{win:"Ctrl-Alt-L",mac:"Ctrl-Alt-L"},readOnly:!0},{name:"alignCursors",exec:function(e){e.alignCursors()},bindKey:{win:"Ctrl-Alt-A",mac:"Ctrl-Alt-A"},scrollIntoView:"cursor"},{name:"findAll",exec:function(e){e.findAll()},bindKey:{win:"Ctrl-Alt-K",mac:"Ctrl-Alt-G"},scrollIntoView:"cursor",readOnly:!0}],t.multiSelectCommands=[{name:"singleSelection",bindKey:"esc",exec:function(e){e.exitMultiSelectMode()},scrollIntoView:"cursor",readOnly:!0,isAvailable:function(e){return e&&e.inMultiSelectMode}}];var n=e("../keyboard/hash_handler").HashHandler;t.keyboardHandler=new n(t.multiSelectCommands)}),define("ace/multi_select",["require","exports","module","ace/range_list","ace/range","ace/selection","ace/mouse/multi_select_handler","ace/lib/event","ace/lib/lang","ace/commands/multi_select_commands","ace/search","ace/edit_session","ace/editor","ace/config"],function(e,t,i){function n(e,t,i){return m.$options.wrap=!0,m.$options.needle=t,m.$options.backwards=-1==i,m.find(e)}function o(e,t){return e.row==t.row&&e.column==t.column}function r(e){e.$multiselectOnSessionChange||(e.$onAddRange=e.$onAddRange.bind(e),e.$onRemoveRange=e.$onRemoveRange.bind(e),e.$onMultiSelect=e.$onMultiSelect.bind(e),e.$onSingleSelect=e.$onSingleSelect.bind(e),e.$multiselectOnSessionChange=t.onSessionChange.bind(e),e.$checkMultiselectChange=e.$checkMultiselectChange.bind(e),e.$multiselectOnSessionChange(e),e.on("changeSession",e.$multiselectOnSessionChange),e.on("mousedown",h),e.commands.addCommands(g.defaultCommands),s(e))}function s(e){function t(t){n&&(e.renderer.setMouseCursor(""),n=!1)}var i=e.textInput.getElement(),n=!1;u.addListener(i,"keydown",function(i){var o=18==i.keyCode&&!(i.ctrlKey||i.shiftKey||i.metaKey);e.$blockSelectEnabled&&o?n||(e.renderer.setMouseCursor("crosshair"),n=!0):n&&t()}),u.addListener(i,"keyup",t),u.addListener(i,"blur",t)}var a=e("./range_list").RangeList,l=e("./range").Range,c=e("./selection").Selection,h=e("./mouse/multi_select_handler").onMouseDown,u=e("./lib/event"),d=e("./lib/lang"),g=e("./commands/multi_select_commands");t.commands=g.defaultCommands.concat(g.multiSelectCommands);var f=e("./search").Search,m=new f,p=e("./edit_session").EditSession;(function(){this.getSelectionMarkers=function(){return this.$selectionMarkers}}).call(p.prototype),function(){this.ranges=null,this.rangeList=null,this.addRange=function(e,t){if(e){if(!this.inMultiSelectMode&&0===this.rangeCount){var i=this.toOrientedRange();if(this.rangeList.add(i),this.rangeList.add(e),2!=this.rangeList.ranges.length)return this.rangeList.removeAll(),t||this.fromOrientedRange(e);this.rangeList.removeAll(),this.rangeList.add(i),this.$onAddRange(i)}e.cursor||(e.cursor=e.end);var n=this.rangeList.add(e);return this.$onAddRange(e),n.length&&this.$onRemoveRange(n),this.rangeCount>1&&!this.inMultiSelectMode&&(this._signal("multiSelect"),this.inMultiSelectMode=!0,this.session.$undoSelect=!1,this.rangeList.attach(this.session)),t||this.fromOrientedRange(e)}},this.toSingleRange=function(e){e=e||this.ranges[0];var t=this.rangeList.removeAll();t.length&&this.$onRemoveRange(t),e&&this.fromOrientedRange(e)},this.substractPoint=function(e){var t=this.rangeList.substractPoint(e);return t?(this.$onRemoveRange(t),t[0]):void 0},this.mergeOverlappingRanges=function(){var e=this.rangeList.merge();e.length?this.$onRemoveRange(e):this.ranges[0]&&this.fromOrientedRange(this.ranges[0])},this.$onAddRange=function(e){this.rangeCount=this.rangeList.ranges.length,this.ranges.unshift(e),this._signal("addRange",{range:e})},this.$onRemoveRange=function(e){if(this.rangeCount=this.rangeList.ranges.length,1==this.rangeCount&&this.inMultiSelectMode){var t=this.rangeList.ranges.pop();e.push(t),this.rangeCount=0}for(var i=e.length;i--;){var n=this.ranges.indexOf(e[i]);this.ranges.splice(n,1)}this._signal("removeRange",{ranges:e}),0===this.rangeCount&&this.inMultiSelectMode&&(this.inMultiSelectMode=!1,this._signal("singleSelect"),this.session.$undoSelect=!0,this.rangeList.detach(this.session)),t=t||this.ranges[0],t&&!t.isEqual(this.getRange())&&this.fromOrientedRange(t)},this.$initRangeList=function(){this.rangeList||(this.rangeList=new a,this.ranges=[],this.rangeCount=0)},this.getAllRanges=function(){return this.rangeCount?this.rangeList.ranges.concat():[this.getRange()]},this.splitIntoLines=function(){if(this.rangeCount>1){var e=this.rangeList.ranges,t=e[e.length-1],i=l.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(i,t.cursor==t.start)}else{var i=this.getRange(),n=this.isBackwards(),o=i.start.row,r=i.end.row;if(o==r){if(n)var s=i.end,a=i.start;else var s=i.start,a=i.end;return this.addRange(l.fromPoints(a,a)),void this.addRange(l.fromPoints(s,s))}var c=[],h=this.getLineRange(o,!0);h.start.column=i.start.column,c.push(h);for(var u=o+1;r>u;u++)c.push(this.getLineRange(u,!0));h=this.getLineRange(r,!0),h.end.column=i.end.column,c.push(h),c.forEach(this.addRange,this)}},this.toggleBlockSelection=function(){if(this.rangeCount>1){var e=this.rangeList.ranges,t=e[e.length-1],i=l.fromPoints(e[0].start,t.end);this.toSingleRange(),this.setSelectionRange(i,t.cursor==t.start)}else{var n=this.session.documentToScreenPosition(this.selectionLead),o=this.session.documentToScreenPosition(this.selectionAnchor),r=this.rectangularRangeBlock(n,o);r.forEach(this.addRange,this)}},this.rectangularRangeBlock=function(e,t,i){var n=[],r=e.column<t.column;if(r)var s=e.column,a=t.column;else var s=t.column,a=e.column;var c=e.row<t.row;if(c)var h=e.row,u=t.row;else var h=t.row,u=e.row;0>s&&(s=0),0>h&&(h=0),h==u&&(i=!0);for(var d=h;u>=d;d++){var g=l.fromPoints(this.session.screenToDocumentPosition(d,s),this.session.screenToDocumentPosition(d,a));if(g.isEmpty()){if(f&&o(g.end,f))break;var f=g.end}g.cursor=r?g.start:g.end,n.push(g)}if(c&&n.reverse(),!i){for(var m=n.length-1;n[m].isEmpty()&&m>0;)m--;if(m>0)for(var p=0;n[p].isEmpty();)p++;for(var A=m;A>=p;A--)n[A].isEmpty()&&n.splice(A,1)}return n}}.call(c.prototype);var A=e("./editor").Editor;(function(){this.updateSelectionMarkers=function(){this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.addSelectionMarker=function(e){e.cursor||(e.cursor=e.end);var t=this.getSelectionStyle();return e.marker=this.session.addMarker(e,"ace_selection",t),this.session.$selectionMarkers.push(e),this.session.selectionMarkerCount=this.session.$selectionMarkers.length,e},this.removeSelectionMarker=function(e){if(e.marker){this.session.removeMarker(e.marker);var t=this.session.$selectionMarkers.indexOf(e);-1!=t&&this.session.$selectionMarkers.splice(t,1),this.session.selectionMarkerCount=this.session.$selectionMarkers.length}},this.removeSelectionMarkers=function(e){for(var t=this.session.$selectionMarkers,i=e.length;i--;){var n=e[i];if(n.marker){this.session.removeMarker(n.marker);var o=t.indexOf(n);-1!=o&&t.splice(o,1)}}this.session.selectionMarkerCount=t.length},this.$onAddRange=function(e){
|
|
|
+this.addSelectionMarker(e.range),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onRemoveRange=function(e){this.removeSelectionMarkers(e.ranges),this.renderer.updateCursor(),this.renderer.updateBackMarkers()},this.$onMultiSelect=function(e){this.inMultiSelectMode||(this.inMultiSelectMode=!0,this.setStyle("ace_multiselect"),this.keyBinding.addKeyboardHandler(g.keyboardHandler),this.commands.setDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers())},this.$onSingleSelect=function(e){this.session.multiSelect.inVirtualMode||(this.inMultiSelectMode=!1,this.unsetStyle("ace_multiselect"),this.keyBinding.removeKeyboardHandler(g.keyboardHandler),this.commands.removeDefaultHandler("exec",this.$onMultiSelectExec),this.renderer.updateCursor(),this.renderer.updateBackMarkers(),this._emit("changeSelection"))},this.$onMultiSelectExec=function(e){var t=e.command,i=e.editor;if(i.multiSelect){if(t.multiSelectAction)"forEach"==t.multiSelectAction?n=i.forEachSelection(t,e.args):"forEachLine"==t.multiSelectAction?n=i.forEachSelection(t,e.args,!0):"single"==t.multiSelectAction?(i.exitMultiSelectMode(),n=t.exec(i,e.args||{})):n=t.multiSelectAction(i,e.args||{});else{var n=t.exec(i,e.args||{});i.multiSelect.addRange(i.multiSelect.toOrientedRange()),i.multiSelect.mergeOverlappingRanges()}return n}},this.forEachSelection=function(e,t,i){if(!this.inVirtualSelectionMode){var n,o=i&&i.keepOrder,r=1==i||i&&i.$byLines,s=this.session,a=this.selection,l=a.rangeList,h=(o?a:l).ranges;if(!h.length)return e.exec?e.exec(this,t||{}):e(this,t||{});var u=a._eventRegistry;a._eventRegistry={};var d=new c(s);this.inVirtualSelectionMode=!0;for(var g=h.length;g--;){if(r)for(;g>0&&h[g].start.row==h[g-1].end.row;)g--;d.fromOrientedRange(h[g]),d.index=g,this.selection=s.selection=d;var f=e.exec?e.exec(this,t||{}):e(this,t||{});n||void 0===f||(n=f),d.toOrientedRange(h[g])}d.detach(),this.selection=s.selection=a,this.inVirtualSelectionMode=!1,a._eventRegistry=u,a.mergeOverlappingRanges();var m=this.renderer.$scrollAnimation;return this.onCursorChange(),this.onSelectionChange(),m&&m.from==m.to&&this.renderer.animateScrolling(m.from),n}},this.exitMultiSelectMode=function(){this.inMultiSelectMode&&!this.inVirtualSelectionMode&&this.multiSelect.toSingleRange()},this.getSelectedText=function(){var e="";if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){for(var t=this.multiSelect.rangeList.ranges,i=[],n=0;n<t.length;n++)i.push(this.session.getTextRange(t[n]));var o=this.session.getDocument().getNewLineCharacter();e=i.join(o),e.length==(i.length-1)*o.length&&(e="")}else this.selection.isEmpty()||(e=this.session.getTextRange(this.getSelectionRange()));return e},this.$checkMultiselectChange=function(e,t){if(this.inMultiSelectMode&&!this.inVirtualSelectionMode){var i=this.multiSelect.ranges[0];if(this.multiSelect.isEmpty()&&t==this.multiSelect.anchor)return;var n=t==this.multiSelect.anchor?i.cursor==i.start?i.end:i.start:i.cursor;(n.row!=t.row||this.session.$clipPositionToDocument(n.row,n.column).column!=t.column)&&this.multiSelect.toSingleRange(this.multiSelect.toOrientedRange())}},this.findAll=function(e,t,i){if(t=t||{},t.needle=e||t.needle,void 0==t.needle){var n=this.selection.isEmpty()?this.selection.getWordRange():this.selection.getRange();t.needle=this.session.getTextRange(n)}this.$search.set(t);var o=this.$search.findAll(this.session);if(!o.length)return 0;this.$blockScrolling+=1;var r=this.multiSelect;i||r.toSingleRange(o[0]);for(var s=o.length;s--;)r.addRange(o[s],!0);return n&&r.rangeList.rangeAtPoint(n.start)&&r.addRange(n,!0),this.$blockScrolling-=1,o.length},this.selectMoreLines=function(e,t){var i=this.selection.toOrientedRange(),n=i.cursor==i.end,o=this.session.documentToScreenPosition(i.cursor);this.selection.$desiredColumn&&(o.column=this.selection.$desiredColumn);var r=this.session.screenToDocumentPosition(o.row+e,o.column);if(i.isEmpty())var s=r;else var a=this.session.documentToScreenPosition(n?i.end:i.start),s=this.session.screenToDocumentPosition(a.row+e,a.column);if(n){var c=l.fromPoints(r,s);c.cursor=c.start}else{var c=l.fromPoints(s,r);c.cursor=c.end}if(c.desiredColumn=o.column,this.selection.inMultiSelectMode){if(t)var h=i.cursor}else this.selection.addRange(i);this.selection.addRange(c),h&&this.selection.substractPoint(h)},this.transposeSelections=function(e){for(var t=this.session,i=t.multiSelect,n=i.ranges,o=n.length;o--;){var r=n[o];if(r.isEmpty()){var s=t.getWordRange(r.start.row,r.start.column);r.start.row=s.start.row,r.start.column=s.start.column,r.end.row=s.end.row,r.end.column=s.end.column}}i.mergeOverlappingRanges();for(var a=[],o=n.length;o--;){var r=n[o];a.unshift(t.getTextRange(r))}0>e?a.unshift(a.pop()):a.push(a.shift());for(var o=n.length;o--;){var r=n[o],s=r.clone();t.replace(r,a[o]),r.start.row=s.start.row,r.start.column=s.start.column}},this.selectMore=function(e,t,i){var o=this.session,r=o.multiSelect,s=r.toOrientedRange();if(!s.isEmpty()||(s=o.getWordRange(s.start.row,s.start.column),s.cursor=-1==e?s.start:s.end,this.multiSelect.addRange(s),!i)){var a=o.getTextRange(s),l=n(o,a,e);l&&(l.cursor=-1==e?l.start:l.end,this.$blockScrolling+=1,this.session.unfold(l),this.multiSelect.addRange(l),this.$blockScrolling-=1,this.renderer.scrollCursorIntoView(null,.5)),t&&this.multiSelect.substractPoint(s.cursor)}},this.alignCursors=function(){var e=this.session,t=e.multiSelect,i=t.ranges,n=-1,o=i.filter(function(e){return e.cursor.row==n?!0:void(n=e.cursor.row)});if(i.length&&o.length!=i.length-1){o.forEach(function(e){t.substractPoint(e.cursor)});var r=0,s=1/0,a=i.map(function(t){var i=t.cursor,n=e.getLine(i.row),o=n.substr(i.column).search(/\S/g);return-1==o&&(o=0),i.column>r&&(r=i.column),s>o&&(s=o),o});i.forEach(function(t,i){var n=t.cursor,o=r-n.column,c=a[i]-s;o>c?e.insert(n,d.stringRepeat(" ",o-c)):e.remove(new l(n.row,n.column,n.row,n.column-o+c)),t.start.column=t.end.column=r,t.start.row=t.end.row=n.row,t.cursor=t.end}),t.fromOrientedRange(i[0]),this.renderer.updateCursor(),this.renderer.updateBackMarkers()}else{var c=this.selection.getRange(),h=c.start.row,u=c.end.row,g=h==u;if(g){var f,m=this.session.getLength();do f=this.session.getLine(u);while(/[=:]/.test(f)&&++u<m);do f=this.session.getLine(h);while(/[=:]/.test(f)&&--h>0);0>h&&(h=0),u>=m&&(u=m-1)}var p=this.session.removeFullLines(h,u);p=this.$reAlignText(p,g),this.session.insert({row:h,column:0},p.join("\n")+"\n"),g||(c.start.column=0,c.end.column=p[p.length-1].length),this.selection.setRange(c)}},this.$reAlignText=function(e,t){function i(e){return d.stringRepeat(" ",e)}function n(e){return e[2]?i(s)+e[2]+i(a-e[2].length+l)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function o(e){return e[2]?i(s+a-e[2].length)+e[2]+i(l," ")+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}function r(e){return e[2]?i(s)+e[2]+i(l)+e[4].replace(/^([=:])\s+/,"$1 "):e[0]}var s,a,l,c=!0,h=!0;return e.map(function(e){var t=e.match(/(\s*)(.*?)(\s*)([=:].*)/);return t?null==s?(s=t[1].length,a=t[2].length,l=t[3].length,t):(s+a+l!=t[1].length+t[2].length+t[3].length&&(h=!1),s!=t[1].length&&(c=!1),s>t[1].length&&(s=t[1].length),a<t[2].length&&(a=t[2].length),l>t[3].length&&(l=t[3].length),t):[e]}).map(t?n:c?h?o:n:r)}}).call(A.prototype),t.onSessionChange=function(e){var t=e.session;t&&!t.multiSelect&&(t.$selectionMarkers=[],t.selection.$initRangeList(),t.multiSelect=t.selection),this.multiSelect=t&&t.multiSelect;var i=e.oldSession;i&&(i.multiSelect.off("addRange",this.$onAddRange),i.multiSelect.off("removeRange",this.$onRemoveRange),i.multiSelect.off("multiSelect",this.$onMultiSelect),i.multiSelect.off("singleSelect",this.$onSingleSelect),i.multiSelect.lead.off("change",this.$checkMultiselectChange),i.multiSelect.anchor.off("change",this.$checkMultiselectChange)),t&&(t.multiSelect.on("addRange",this.$onAddRange),t.multiSelect.on("removeRange",this.$onRemoveRange),t.multiSelect.on("multiSelect",this.$onMultiSelect),t.multiSelect.on("singleSelect",this.$onSingleSelect),t.multiSelect.lead.on("change",this.$checkMultiselectChange),t.multiSelect.anchor.on("change",this.$checkMultiselectChange)),t&&this.inMultiSelectMode!=t.selection.inMultiSelectMode&&(t.selection.inMultiSelectMode?this.$onMultiSelect():this.$onSingleSelect())},t.MultiSelect=r,e("./config").defineOptions(A.prototype,"editor",{enableMultiselect:{set:function(e){r(this),e?(this.on("changeSession",this.$multiselectOnSessionChange),this.on("mousedown",h)):(this.off("changeSession",this.$multiselectOnSessionChange),this.off("mousedown",h))},value:!0},enableBlockSelect:{set:function(e){this.$blockSelectEnabled=e},value:!0}})}),define("ace/mode/folding/fold_mode",["require","exports","module","ace/range"],function(e,t,i){"use strict";var n=e("../../range").Range,o=t.FoldMode=function(){};(function(){this.foldingStartMarker=null,this.foldingStopMarker=null,this.getFoldWidget=function(e,t,i){var n=e.getLine(i);return this.foldingStartMarker.test(n)?"start":"markbeginend"==t&&this.foldingStopMarker&&this.foldingStopMarker.test(n)?"end":""},this.getFoldWidgetRange=function(e,t,i){return null},this.indentationBlock=function(e,t,i){var o=/\S/,r=e.getLine(t),s=r.search(o);if(-1!=s){for(var a=i||r.length,l=e.getLength(),c=t,h=t;++t<l;){var u=e.getLine(t).search(o);if(-1!=u){if(s>=u)break;h=t}}if(h>c){var d=e.getLine(h).length;return new n(c,a,h,d)}}},this.openingBracketBlock=function(e,t,i,o,r){var s={row:i,column:o+1},a=e.$findClosingBracket(t,s,r);if(a){var l=e.foldWidgets[a.row];return null==l&&(l=e.getFoldWidget(a.row)),"start"==l&&a.row>s.row&&(a.row--,a.column=e.getLine(a.row).length),n.fromPoints(s,a)}},this.closingBracketBlock=function(e,t,i,o,r){var s={row:i,column:o},a=e.$findOpeningBracket(t,s);return a?(a.column++,s.column--,n.fromPoints(a,s)):void 0}}).call(o.prototype)}),define("ace/theme/textmate",["require","exports","module","ace/lib/dom"],function(e,t,i){"use strict";t.isDark=!1,t.cssClass="ace-tm",t.cssText='.ace-tm .ace_gutter {background: #f0f0f0;color: #333;}.ace-tm .ace_print-margin {width: 1px;background: #e8e8e8;}.ace-tm .ace_fold {background-color: #6B72E6;}.ace-tm {background-color: #FFFFFF;color: black;}.ace-tm .ace_cursor {color: black;}.ace-tm .ace_invisible {color: rgb(191, 191, 191);}.ace-tm .ace_storage,.ace-tm .ace_keyword {color: blue;}.ace-tm .ace_constant {color: rgb(197, 6, 11);}.ace-tm .ace_constant.ace_buildin {color: rgb(88, 72, 246);}.ace-tm .ace_constant.ace_language {color: rgb(88, 92, 246);}.ace-tm .ace_constant.ace_library {color: rgb(6, 150, 14);}.ace-tm .ace_invalid {background-color: rgba(255, 0, 0, 0.1);color: red;}.ace-tm .ace_support.ace_function {color: rgb(60, 76, 114);}.ace-tm .ace_support.ace_constant {color: rgb(6, 150, 14);}.ace-tm .ace_support.ace_type,.ace-tm .ace_support.ace_class {color: rgb(109, 121, 222);}.ace-tm .ace_keyword.ace_operator {color: rgb(104, 118, 135);}.ace-tm .ace_string {color: rgb(3, 106, 7);}.ace-tm .ace_comment {color: rgb(76, 136, 107);}.ace-tm .ace_comment.ace_doc {color: rgb(0, 102, 255);}.ace-tm .ace_comment.ace_doc.ace_tag {color: rgb(128, 159, 191);}.ace-tm .ace_constant.ace_numeric {color: rgb(0, 0, 205);}.ace-tm .ace_variable {color: rgb(49, 132, 149);}.ace-tm .ace_xml-pe {color: rgb(104, 104, 91);}.ace-tm .ace_entity.ace_name.ace_function {color: #0000A2;}.ace-tm .ace_heading {color: rgb(12, 7, 255);}.ace-tm .ace_list {color:rgb(185, 6, 144);}.ace-tm .ace_meta.ace_tag {color:rgb(0, 22, 142);}.ace-tm .ace_string.ace_regex {color: rgb(255, 0, 0)}.ace-tm .ace_marker-layer .ace_selection {background: rgb(181, 213, 255);}.ace-tm.ace_multiselect .ace_selection.ace_start {box-shadow: 0 0 3px 0px white;}.ace-tm .ace_marker-layer .ace_step {background: rgb(252, 255, 0);}.ace-tm .ace_marker-layer .ace_stack {background: rgb(164, 229, 101);}.ace-tm .ace_marker-layer .ace_bracket {margin: -1px 0 0 -1px;border: 1px solid rgb(192, 192, 192);}.ace-tm .ace_marker-layer .ace_active-line {background: rgba(0, 0, 0, 0.07);}.ace-tm .ace_gutter-active-line {background-color : #dcdcdc;}.ace-tm .ace_marker-layer .ace_selected-word {background: rgb(250, 250, 255);border: 1px solid rgb(200, 200, 250);}.ace-tm .ace_indent-guide {background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAE0lEQVQImWP4////f4bLly//BwAmVgd1/w11/gAAAABJRU5ErkJggg==") right repeat-y;}';var n=e("../lib/dom");n.importCssString(t.cssText,t.cssClass)}),define("ace/line_widgets",["require","exports","module","ace/lib/oop","ace/lib/dom","ace/range"],function(e,t,i){"use strict";function n(e){this.session=e,this.session.widgetManager=this,this.session.getRowLength=this.getRowLength,this.session.$getWidgetScreenLength=this.$getWidgetScreenLength,this.updateOnChange=this.updateOnChange.bind(this),this.renderWidgets=this.renderWidgets.bind(this),this.measureWidgets=this.measureWidgets.bind(this),this.session._changedWidgets=[],this.$onChangeEditor=this.$onChangeEditor.bind(this),this.session.on("change",this.updateOnChange),this.session.on("changeEditor",this.$onChangeEditor)}{var o=(e("./lib/oop"),e("./lib/dom"));e("./range").Range}(function(){this.getRowLength=function(e){var t;return t=this.lineWidgets?this.lineWidgets[e]&&this.lineWidgets[e].rowCount||0:0,this.$useWrapMode&&this.$wrapData[e]?this.$wrapData[e].length+1+t:1+t},this.$getWidgetScreenLength=function(){var e=0;return this.lineWidgets.forEach(function(t){t&&t.rowCount&&(e+=t.rowCount)}),e},this.$onChangeEditor=function(e){this.attach(e.editor)},this.attach=function(e){e&&e.widgetManager&&e.widgetManager!=this&&e.widgetManager.detach(),this.editor!=e&&(this.detach(),this.editor=e,e&&(e.widgetManager=this,e.renderer.on("beforeRender",this.measureWidgets),e.renderer.on("afterRender",this.renderWidgets)))},this.detach=function(e){var t=this.editor;if(t){this.editor=null,t.widgetManager=null,t.renderer.off("beforeRender",this.measureWidgets),t.renderer.off("afterRender",this.renderWidgets);var i=this.session.lineWidgets;i&&i.forEach(function(e){e&&e.el&&e.el.parentNode&&(e._inDocument=!1,e.el.parentNode.removeChild(e.el))})}},this.updateOnChange=function(e){var t=this.session.lineWidgets;if(t){var i=e.start.row,n=e.end.row-i;if(0===n);else if("remove"==e.action){var o=t.splice(i+1,n);o.forEach(function(e){e&&this.removeLineWidget(e)},this),this.$updateRows()}else{var r=new Array(n);r.unshift(i,0),t.splice.apply(t,r),this.$updateRows()}}},this.$updateRows=function(){var e=this.session.lineWidgets;if(e){var t=!0;e.forEach(function(e,i){e&&(t=!1,e.row=i)}),t&&(this.session.lineWidgets=null)}},this.addLineWidget=function(e){this.session.lineWidgets||(this.session.lineWidgets=new Array(this.session.getLength())),this.session.lineWidgets[e.row]=e;var t=this.editor.renderer;return e.html&&!e.el&&(e.el=o.createElement("div"),e.el.innerHTML=e.html),e.el&&(o.addCssClass(e.el,"ace_lineWidgetContainer"),e.el.style.position="absolute",e.el.style.zIndex=5,t.container.appendChild(e.el),e._inDocument=!0),e.coverGutter||(e.el.style.zIndex=3),e.pixelHeight||(e.pixelHeight=e.el.offsetHeight),null==e.rowCount&&(e.rowCount=e.pixelHeight/t.layerConfig.lineHeight),this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows(),this.renderWidgets(null,t),e},this.removeLineWidget=function(e){if(e._inDocument=!1,e.el&&e.el.parentNode&&e.el.parentNode.removeChild(e.el),e.editor&&e.editor.destroy)try{e.editor.destroy()}catch(t){}this.session.lineWidgets&&(this.session.lineWidgets[e.row]=void 0),this.session._emit("changeFold",{data:{start:{row:e.row}}}),this.$updateRows()},this.onWidgetChanged=function(e){this.session._changedWidgets.push(e),this.editor&&this.editor.renderer.updateFull()},this.measureWidgets=function(e,t){var i=this.session._changedWidgets,n=t.layerConfig;if(i&&i.length){for(var o=1/0,r=0;r<i.length;r++){var s=i[r];s._inDocument||(s._inDocument=!0,t.container.appendChild(s.el)),s.h=s.el.offsetHeight,s.fixedWidth||(s.w=s.el.offsetWidth,s.screenWidth=Math.ceil(s.w/n.characterWidth));var a=s.h/n.lineHeight;s.coverLine&&(a-=this.session.getRowLineCount(s.row),0>a&&(a=0)),s.rowCount!=a&&(s.rowCount=a,s.row<o&&(o=s.row))}o!=1/0&&(this.session._emit("changeFold",{data:{start:{row:o}}}),this.session.lineWidgetWidth=null),this.session._changedWidgets=[]}},this.renderWidgets=function(e,t){var i=t.layerConfig,n=this.session.lineWidgets;if(n){for(var o=Math.min(this.firstRow,i.firstRow),r=Math.max(this.lastRow,i.lastRow,n.length);o>0&&!n[o];)o--;this.firstRow=i.firstRow,this.lastRow=i.lastRow,t.$cursorLayer.config=i;for(var s=o;r>=s;s++){var a=n[s];if(a&&a.el){a._inDocument||(a._inDocument=!0,t.container.appendChild(a.el));var l=t.$cursorLayer.getPixelPosition({row:s,column:0},!0).top;a.coverLine||(l+=i.lineHeight*this.session.getRowLineCount(a.row)),a.el.style.top=l-i.offset+"px";var c=a.coverGutter?0:t.gutterWidth;a.fixedWidth||(c-=t.scrollLeft),a.el.style.left=c+"px",a.el.style.right=a.fixedWidth?t.scrollBar.getWidth()+"px":""}}}}}).call(n.prototype),t.LineWidgets=n}),define("ace/ext/error_marker",["require","exports","module","ace/line_widgets","ace/lib/dom","ace/range"],function(e,t,i){"use strict";function n(e,t,i){for(var n=0,o=e.length-1;o>=n;){var r=n+o>>1,s=i(t,e[r]);if(s>0)n=r+1;else{if(!(0>s))return r;o=r-1}}return-(n+1)}function o(e,t,i){var o=e.getAnnotations().sort(a.comparePoints);if(o.length){var r=n(o,{row:t,column:-1},a.comparePoints);0>r&&(r=-r-1),r>=o.length?r=i>0?0:o.length-1:0===r&&0>i&&(r=o.length-1);var s=o[r];if(s&&i){if(s.row===t){do s=o[r+=i];while(s&&s.row===t);if(!s)return o.slice()}var l=[];t=s.row;do l[0>i?"unshift":"push"](s),s=o[r+=i];while(s&&s.row==t);return l.length&&l}}}var r=e("../line_widgets").LineWidgets,s=e("../lib/dom"),a=e("../range").Range;t.showErrorMarker=function(e,t){var i=e.session;i.widgetManager||(i.widgetManager=new r(i),i.widgetManager.attach(e));var n=e.getCursorPosition(),a=n.row,l=i.lineWidgets&&i.lineWidgets[a];l?l.destroy():a-=t;var c,h=o(i,a,t);if(h){var u=h[0];n.column=(u.pos&&"number"!=typeof u.column?u.pos.sc:u.column)||0,n.row=u.row,c=e.renderer.$gutterLayer.$annotations[n.row]}else{if(l)return;c={text:["Looks good!"],className:"ace_ok"}}e.session.unfold(n.row),e.selection.moveToPosition(n);var d={row:n.row,fixedWidth:!0,coverGutter:!0,el:s.createElement("div")},g=d.el.appendChild(s.createElement("div")),f=d.el.appendChild(s.createElement("div"));f.className="error_widget_arrow "+c.className;var m=e.renderer.$cursorLayer.getPixelPosition(n).left;f.style.left=m+e.renderer.gutterWidth-5+"px",d.el.className="error_widget_wrapper",g.className="error_widget "+c.className,g.innerHTML=c.text.join("<br>"),g.appendChild(s.createElement("div"));var p=function(e,t,i){return 0!==t||"esc"!==i&&"return"!==i?void 0:(d.destroy(),{command:"null"})};d.destroy=function(){e.$mouseHandler.isMousePressed||(e.keyBinding.removeKeyboardHandler(p),i.widgetManager.removeLineWidget(d),e.off("changeSelection",d.destroy),e.off("changeSession",d.destroy),e.off("mouseup",d.destroy),e.off("change",d.destroy))},e.keyBinding.addKeyboardHandler(p),e.on("changeSelection",d.destroy),e.on("changeSession",d.destroy),e.on("mouseup",d.destroy),e.on("change",d.destroy),e.session.widgetManager.addLineWidget(d),d.el.onmousedown=e.focus.bind(e),e.renderer.scrollCursorIntoView(null,.5,{bottom:d.el.offsetHeight})},s.importCssString(" .error_widget_wrapper { background: inherit; color: inherit; border:none } .error_widget { border-top: solid 2px; border-bottom: solid 2px; margin: 5px 0; padding: 10px 40px; white-space: pre-wrap; } .error_widget.ace_error, .error_widget_arrow.ace_error{ border-color: #ff5a5a } .error_widget.ace_warning, .error_widget_arrow.ace_warning{ border-color: #F1D817 } .error_widget.ace_info, .error_widget_arrow.ace_info{ border-color: #5a5a5a } .error_widget.ace_ok, .error_widget_arrow.ace_ok{ border-color: #5aaa5a } .error_widget_arrow { position: absolute; border: solid 5px; border-top-color: transparent!important; border-right-color: transparent!important; border-left-color: transparent!important; top: -5px; }","")}),define("ace/ace",["require","exports","module","ace/lib/fixoldbrowsers","ace/lib/dom","ace/lib/event","ace/editor","ace/edit_session","ace/undomanager","ace/virtual_renderer","ace/worker/worker_client","ace/keyboard/hash_handler","ace/placeholder","ace/multi_select","ace/mode/folding/fold_mode","ace/theme/textmate","ace/ext/error_marker","ace/config"],function(e,t,i){"use strict";e("./lib/fixoldbrowsers");var n=e("./lib/dom"),o=e("./lib/event"),r=e("./editor").Editor,s=e("./edit_session").EditSession,a=e("./undomanager").UndoManager,l=e("./virtual_renderer").VirtualRenderer;e("./worker/worker_client"),e("./keyboard/hash_handler"),e("./placeholder"),e("./multi_select"),e("./mode/folding/fold_mode"),e("./theme/textmate"),e("./ext/error_marker"),t.config=e("./config"),t.require=e,t.edit=function(e){if("string"==typeof e){var i=e;if(e=document.getElementById(i),!e)throw new Error("ace.edit can't find div #"+i)}if(e&&e.env&&e.env.editor instanceof r)return e.env.editor;var s="";if(e&&/input|textarea/i.test(e.tagName)){var a=e;s=a.value,e=n.createElement("pre"),a.parentNode.replaceChild(e,a)}else e&&(s=n.getInnerText(e),e.innerHTML="");var c=t.createEditSession(s),h=new r(new l(e));h.setSession(c);var u={document:c,editor:h,onResize:h.resize.bind(h,null)};return a&&(u.textarea=a),o.addListener(window,"resize",u.onResize),h.on("destroy",function(){o.removeListener(window,"resize",u.onResize),u.editor.container.env=null}),h.container.env=h.env=u,h},t.createEditSession=function(e,t){var i=new s(e,t);return i.setUndoManager(new a),i},t.EditSession=s,t.UndoManager=a}),function(){window.require(["ace/ace"],function(e){e&&e.config.init(!0),window.ace||(window.ace=e);for(var t in e)e.hasOwnProperty(t)&&(window.ace[t]=e[t])})}(),define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("./text_highlight_rules").TextHighlightRules,r=function(){this.$rules={start:[{token:"comment.doc.tag",regex:"@[\\w\\d_]+"},r.getTagRule(),{defaultToken:"comment.doc",caseInsensitive:!0}]}};n.inherits(r,o),r.getTagRule=function(e){return{token:"comment.doc.tag.storage.type",regex:"\\b(?:TODO|FIXME|XXX|HACK)\\b"}},r.getStartRule=function(e){return{token:"comment.doc",regex:"\\/\\*(?=\\*)",next:e}},r.getEndRule=function(e){return{token:"comment.doc",regex:"\\*\\/",next:e}},t.DocCommentHighlightRules=r}),define("ace/mode/javascript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("./doc_comment_highlight_rules").DocCommentHighlightRules,r=e("./text_highlight_rules").TextHighlightRules,s=function(e){var t=this.createKeywordMapper({"variable.language":"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|Namespace|QName|XML|XMLList|ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|SyntaxError|TypeError|URIError|decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|isNaN|parseFloat|parseInt|JSON|Math|this|arguments|prototype|window|document",keyword:"const|yield|import|get|set|break|case|catch|continue|default|delete|do|else|finally|for|function|if|in|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|__parent__|__count__|escape|unescape|with|__proto__|class|enum|extends|super|export|implements|private|public|interface|package|protected|static","storage.type":"const|let|var|function","constant.language":"null|Infinity|NaN|undefined","support.function":"alert","constant.language.boolean":"true|false"},"identifier"),i="case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void",n="[a-zA-Z\\$_¡-][a-zA-Z\\d\\$_¡-]*\\b",r="\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|[0-2][0-7]{0,2}|3[0-6][0-7]?|37[0-7]?|[4-7][0-7]?|.)";this.$rules={no_regex:[{token:"comment",regex:"\\/\\/",next:"line_comment"},o.getStartRule("doc-start"),{token:"comment",regex:/\/\*/,next:"comment"},{token:"string",regex:"'(?=.)",next:"qstring"},{token:"string",regex:'"(?=.)',next:"qqstring"},{token:"constant.numeric",regex:/0[xX][0-9a-fA-F]+\b/},{token:"constant.numeric",regex:/[+-]?\d+(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?\b/},{token:["storage.type","punctuation.operator","support.function","punctuation.operator","entity.name.function","text","keyword.operator"],regex:"("+n+")(\\.)(prototype)(\\.)("+n+")(\\s*)(=)",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+n+")(\\.)("+n+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+n+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","entity.name.function","text","paren.lparen"],regex:"("+n+")(\\.)("+n+")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","text","entity.name.function","text","paren.lparen"],regex:"(function)(\\s+)("+n+")(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","punctuation.operator","text","storage.type","text","paren.lparen"],regex:"("+n+")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["text","text","storage.type","text","paren.lparen"],regex:"(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:"keyword",regex:"(?:"+i+")\\b",next:"start"},{token:["punctuation.operator","support.function"],regex:/(\.)(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/},{token:["punctuation.operator","support.function.dom"],regex:/(\.)(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/},{token:["punctuation.operator","support.constant"],regex:/(\.)(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/},{token:["support.constant"],regex:/that\b/},{token:["storage.type","punctuation.operator","support.function.firebug"],regex:/(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/},{token:t,regex:n},{token:"keyword.operator",regex:/--|\+\+|===|==|=|!=|!==|<=|>=|<<=|>>=|>>>=|<>|<|>|!|&&|\|\||\?\:|[!$%&*+\-~\/^]=?/,next:"start"},{token:"punctuation.operator",regex:/[?:,;.]/,next:"start"},{token:"paren.lparen",regex:/[\[({]/,next:"start"},{token:"paren.rparen",regex:/[\])}]/},{token:"comment",regex:/^#!.*$/}],start:[o.getStartRule("doc-start"),{token:"comment",regex:"\\/\\*",next:"comment_regex_allowed"},{token:"comment",regex:"\\/\\/",next:"line_comment_regex_allowed"},{token:"string.regexp",regex:"\\/",next:"regex"},{token:"text",regex:"\\s+|^$",next:"start"},{token:"empty",regex:"",next:"no_regex"}],regex:[{token:"regexp.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"string.regexp",regex:"/[sxngimy]*",next:"no_regex"},{token:"invalid",regex:/\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/},{token:"constant.language.escape",regex:/\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/},{token:"constant.language.delimiter",regex:/\|/},{token:"constant.language.escape",regex:/\[\^?/,next:"regex_character_class"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp"}],regex_character_class:[{token:"regexp.charclass.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"constant.language.escape",regex:"]",next:"regex"},{token:"constant.language.escape",regex:"-"},{token:"empty",regex:"$",next:"no_regex"
|
|
|
+},{defaultToken:"string.regexp.charachterclass"}],function_arguments:[{token:"variable.parameter",regex:n},{token:"punctuation.operator",regex:"[, ]+"},{token:"punctuation.operator",regex:"$"},{token:"empty",regex:"",next:"no_regex"}],comment_regex_allowed:[o.getTagRule(),{token:"comment",regex:"\\*\\/",next:"start"},{defaultToken:"comment",caseInsensitive:!0}],comment:[o.getTagRule(),{token:"comment",regex:"\\*\\/",next:"no_regex"},{defaultToken:"comment",caseInsensitive:!0}],line_comment_regex_allowed:[o.getTagRule(),{token:"comment",regex:"$|^",next:"start"},{defaultToken:"comment",caseInsensitive:!0}],line_comment:[o.getTagRule(),{token:"comment",regex:"$|^",next:"no_regex"},{defaultToken:"comment",caseInsensitive:!0}],qqstring:[{token:"constant.language.escape",regex:r},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"no_regex"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:r},{token:"string",regex:"\\\\$",next:"qstring"},{token:"string",regex:"'|$",next:"no_regex"},{defaultToken:"string"}]},e&&e.noES6||this.$rules.no_regex.unshift({regex:"[{}]",onMatch:function(e,t,i){return this.next="{"==e?this.nextState:"","{"==e&&i.length?(i.unshift("start",t),"paren"):"}"==e&&i.length&&(i.shift(),this.next=i.shift(),-1!=this.next.indexOf("string"))?"paren.quasi.end":"{"==e?"paren.lparen":"paren.rparen"},nextState:"start"},{token:"string.quasi.start",regex:/`/,push:[{token:"constant.language.escape",regex:r},{token:"paren.quasi.start",regex:/\${/,push:"start"},{token:"string.quasi.end",regex:/`/,next:"pop"},{defaultToken:"string.quasi"}]}),this.embedRules(o,"doc-",[o.getEndRule("no_regex")]),this.normalizeRules()};n.inherits(s,r),t.JavaScriptHighlightRules=s}),define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(e,t,i){"use strict";var n=e("../range").Range,o=function(){};(function(){this.checkOutdent=function(e,t){return/^\s+$/.test(e)?/^\s*\}/.test(t):!1},this.autoOutdent=function(e,t){var i=e.getLine(t),o=i.match(/^(\s*\})/);if(!o)return 0;var r=o[1].length,s=e.findMatchingBracket({row:t,column:r});if(!s||s.row==t)return 0;var a=this.$getIndent(e.getLine(s.row));e.replace(new n(t,0,t,r-1),a)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(o.prototype),t.MatchingBraceOutdent=o}),define("ace/mode/behaviour/cstyle",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,i){"use strict";var n,o=e("../../lib/oop"),r=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,a=e("../../lib/lang"),l=["text","paren.rparen","punctuation.operator"],c=["text","paren.rparen","punctuation.operator","comment"],h={},u=function(e){var t=-1;return e.multiSelect&&(t=e.selection.index,h.rangeCount!=e.multiSelect.rangeCount&&(h={rangeCount:e.multiSelect.rangeCount})),h[t]?n=h[t]:void(n=h[t]={autoInsertedBrackets:0,autoInsertedRow:-1,autoInsertedLineEnd:"",maybeInsertedBrackets:0,maybeInsertedRow:-1,maybeInsertedLineStart:"",maybeInsertedLineEnd:""})},d=function(e,t,i,n){var o=e.end.row-e.start.row;return{text:i+t+n,selection:[0,e.start.column+1,o,e.end.column+(o?0:1)]}},g=function(){this.add("braces","insertion",function(e,t,i,o,r){var s=i.getCursorPosition(),l=o.doc.getLine(s.row);if("{"==r){u(i);var c=i.getSelectionRange(),h=o.doc.getTextRange(c);if(""!==h&&"{"!==h&&i.getWrapBehavioursEnabled())return d(c,h,"{","}");if(g.isSaneInsertion(i,o))return/[\]\}\)]/.test(l[s.column])||i.inMultiSelectMode?(g.recordAutoInsert(i,o,"}"),{text:"{}",selection:[1,1]}):(g.recordMaybeInsert(i,o,"{"),{text:"{",selection:[1,1]})}else if("}"==r){u(i);var f=l.substring(s.column,s.column+1);if("}"==f){var m=o.$findOpeningBracket("}",{column:s.column+1,row:s.row});if(null!==m&&g.isAutoInsertedClosing(s,l,r))return g.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}else{if("\n"==r||"\r\n"==r){u(i);var p="";g.isMaybeInsertedClosing(s,l)&&(p=a.stringRepeat("}",n.maybeInsertedBrackets),g.clearMaybeInsertedClosing());var f=l.substring(s.column,s.column+1);if("}"===f){var A=o.findMatchingBracket({row:s.row,column:s.column+1},"}");if(!A)return null;var v=this.$getIndent(o.getLine(A.row))}else{if(!p)return void g.clearMaybeInsertedClosing();var v=this.$getIndent(l)}var C=v+o.getTabString();return{text:"\n"+C+"\n"+v+p,selection:[1,C.length,1,C.length]}}g.clearMaybeInsertedClosing()}}),this.add("braces","deletion",function(e,t,i,o,r){var s=o.doc.getTextRange(r);if(!r.isMultiLine()&&"{"==s){u(i);var a=o.doc.getLine(r.start.row),l=a.substring(r.end.column,r.end.column+1);if("}"==l)return r.end.column++,r;n.maybeInsertedBrackets--}}),this.add("parens","insertion",function(e,t,i,n,o){if("("==o){u(i);var r=i.getSelectionRange(),s=n.doc.getTextRange(r);if(""!==s&&i.getWrapBehavioursEnabled())return d(r,s,"(",")");if(g.isSaneInsertion(i,n))return g.recordAutoInsert(i,n,")"),{text:"()",selection:[1,1]}}else if(")"==o){u(i);var a=i.getCursorPosition(),l=n.doc.getLine(a.row),c=l.substring(a.column,a.column+1);if(")"==c){var h=n.$findOpeningBracket(")",{column:a.column+1,row:a.row});if(null!==h&&g.isAutoInsertedClosing(a,l,o))return g.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("parens","deletion",function(e,t,i,n,o){var r=n.doc.getTextRange(o);if(!o.isMultiLine()&&"("==r){u(i);var s=n.doc.getLine(o.start.row),a=s.substring(o.start.column+1,o.start.column+2);if(")"==a)return o.end.column++,o}}),this.add("brackets","insertion",function(e,t,i,n,o){if("["==o){u(i);var r=i.getSelectionRange(),s=n.doc.getTextRange(r);if(""!==s&&i.getWrapBehavioursEnabled())return d(r,s,"[","]");if(g.isSaneInsertion(i,n))return g.recordAutoInsert(i,n,"]"),{text:"[]",selection:[1,1]}}else if("]"==o){u(i);var a=i.getCursorPosition(),l=n.doc.getLine(a.row),c=l.substring(a.column,a.column+1);if("]"==c){var h=n.$findOpeningBracket("]",{column:a.column+1,row:a.row});if(null!==h&&g.isAutoInsertedClosing(a,l,o))return g.popAutoInsertedClosing(),{text:"",selection:[1,1]}}}}),this.add("brackets","deletion",function(e,t,i,n,o){var r=n.doc.getTextRange(o);if(!o.isMultiLine()&&"["==r){u(i);var s=n.doc.getLine(o.start.row),a=s.substring(o.start.column+1,o.start.column+2);if("]"==a)return o.end.column++,o}}),this.add("string_dquotes","insertion",function(e,t,i,n,o){if('"'==o||"'"==o){u(i);var r=o,s=i.getSelectionRange(),a=n.doc.getTextRange(s);if(""!==a&&"'"!==a&&'"'!=a&&i.getWrapBehavioursEnabled())return d(s,a,r,r);if(!a){var l=i.getCursorPosition(),c=n.doc.getLine(l.row),h=c.substring(l.column-1,l.column),g=c.substring(l.column,l.column+1),f=n.getTokenAt(l.row,l.column),m=n.getTokenAt(l.row,l.column+1);if("\\"==h&&f&&/escape/.test(f.type))return null;var p,A=f&&/string|escape/.test(f.type),v=!m||/string|escape/.test(m.type);if(g==r)p=A!==v;else{if(A&&!v)return null;if(A&&v)return null;var C=n.$mode.tokenRe;C.lastIndex=0;var w=C.test(h);C.lastIndex=0;var F=C.test(h);if(w||F)return null;if(g&&!/[\s;,.})\]\\]/.test(g))return null;p=!0}return{text:p?r+r:"",selection:[1,1]}}}}),this.add("string_dquotes","deletion",function(e,t,i,n,o){var r=n.doc.getTextRange(o);if(!o.isMultiLine()&&('"'==r||"'"==r)){u(i);var s=n.doc.getLine(o.start.row),a=s.substring(o.start.column+1,o.start.column+2);if(a==r)return o.end.column++,o}})};g.isSaneInsertion=function(e,t){var i=e.getCursorPosition(),n=new s(t,i.row,i.column);if(!this.$matchTokenType(n.getCurrentToken()||"text",l)){var o=new s(t,i.row,i.column+1);if(!this.$matchTokenType(o.getCurrentToken()||"text",l))return!1}return n.stepForward(),n.getCurrentTokenRow()!==i.row||this.$matchTokenType(n.getCurrentToken()||"text",c)},g.$matchTokenType=function(e,t){return t.indexOf(e.type||e)>-1},g.recordAutoInsert=function(e,t,i){var o=e.getCursorPosition(),r=t.doc.getLine(o.row);this.isAutoInsertedClosing(o,r,n.autoInsertedLineEnd[0])||(n.autoInsertedBrackets=0),n.autoInsertedRow=o.row,n.autoInsertedLineEnd=i+r.substr(o.column),n.autoInsertedBrackets++},g.recordMaybeInsert=function(e,t,i){var o=e.getCursorPosition(),r=t.doc.getLine(o.row);this.isMaybeInsertedClosing(o,r)||(n.maybeInsertedBrackets=0),n.maybeInsertedRow=o.row,n.maybeInsertedLineStart=r.substr(0,o.column)+i,n.maybeInsertedLineEnd=r.substr(o.column),n.maybeInsertedBrackets++},g.isAutoInsertedClosing=function(e,t,i){return n.autoInsertedBrackets>0&&e.row===n.autoInsertedRow&&i===n.autoInsertedLineEnd[0]&&t.substr(e.column)===n.autoInsertedLineEnd},g.isMaybeInsertedClosing=function(e,t){return n.maybeInsertedBrackets>0&&e.row===n.maybeInsertedRow&&t.substr(e.column)===n.maybeInsertedLineEnd&&t.substr(0,e.column)==n.maybeInsertedLineStart},g.popAutoInsertedClosing=function(){n.autoInsertedLineEnd=n.autoInsertedLineEnd.substr(1),n.autoInsertedBrackets--},g.clearMaybeInsertedClosing=function(){n&&(n.maybeInsertedBrackets=0,n.maybeInsertedRow=-1)},o.inherits(g,r),t.CstyleBehaviour=g}),define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(e,t,i){"use strict";var n=e("../../lib/oop"),o=e("../../range").Range,r=e("./fold_mode").FoldMode,s=t.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};n.inherits(s,r),function(){this.foldingStartMarker=/(\{|\[)[^\}\]]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{]*(\}|\])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,t,i){var n=e.getLine(i);if(this.singleLineBlockCommentRe.test(n)&&!this.startRegionRe.test(n)&&!this.tripleStarBlockCommentRe.test(n))return"";var o=this._getFoldWidgetBase(e,t,i);return!o&&this.startRegionRe.test(n)?"start":o},this.getFoldWidgetRange=function(e,t,i,n){var o=e.getLine(i);if(this.startRegionRe.test(o))return this.getCommentRegionBlock(e,o,i);var r=o.match(this.foldingStartMarker);if(r){var s=r.index;if(r[1])return this.openingBracketBlock(e,r[1],i,s);var a=e.getCommentFoldRange(i,s+r[0].length,1);return a&&!a.isMultiLine()&&(n?a=this.getSectionRange(e,i):"all"!=t&&(a=null)),a}if("markbegin"!==t){var r=o.match(this.foldingStopMarker);if(r){var s=r.index+r[0].length;return r[1]?this.closingBracketBlock(e,r[1],i,s):e.getCommentFoldRange(i,s,-1)}}},this.getSectionRange=function(e,t){var i=e.getLine(t),n=i.search(/\S/),r=t,s=i.length;t+=1;for(var a=t,l=e.getLength();++t<l;){i=e.getLine(t);var c=i.search(/\S/);if(-1!==c){if(n>c)break;var h=this.getFoldWidgetRange(e,"all",t);if(h){if(h.start.row<=r)break;if(h.isMultiLine())t=h.end.row;else if(n==c)break}a=t}}return new o(r,s,a,e.getLine(a).length)},this.getCommentRegionBlock=function(e,t,i){for(var n=t.search(/\s*$/),r=e.getLength(),s=i,a=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,l=1;++i<r;){t=e.getLine(i);var c=a.exec(t);if(c&&(c[1]?l--:l++,!l))break}var h=i;return h>s?new o(s,n,h,t.length):void 0}}.call(s.prototype)}),define("ace/mode/javascript",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/javascript_highlight_rules","ace/mode/matching_brace_outdent","ace/range","ace/worker/worker_client","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("./text").Mode,r=e("./javascript_highlight_rules").JavaScriptHighlightRules,s=e("./matching_brace_outdent").MatchingBraceOutdent,a=(e("../range").Range,e("../worker/worker_client").WorkerClient),l=e("./behaviour/cstyle").CstyleBehaviour,c=e("./folding/cstyle").FoldMode,h=function(){this.HighlightRules=r,this.$outdent=new s,this.$behaviour=new l,this.foldingRules=new c};n.inherits(h,o),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(e,t,i){var n=this.$getIndent(t),o=this.getTokenizer().getLineTokens(t,e),r=o.tokens,s=o.state;if(r.length&&"comment"==r[r.length-1].type)return n;if("start"==e||"no_regex"==e){var a=t.match(/^.*(?:\bcase\b.*\:|[\{\(\[])\s*$/);a&&(n+=i)}else if("doc-start"==e){if("start"==s||"no_regex"==s)return"";var a=t.match(/^\s*(\/?)\*/);a&&(a[1]&&(n+=" "),n+="* ")}return n},this.checkOutdent=function(e,t,i){return this.$outdent.checkOutdent(t,i)},this.autoOutdent=function(e,t,i){this.$outdent.autoOutdent(t,i)},this.createWorker=function(e){var t=new a(["ace"],"ace/mode/javascript_worker","JavaScriptWorker");return t.attachToDocument(e.getDocument()),t.on("annotate",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/javascript"}.call(h.prototype),t.Mode=h}),define("ace/mode/xml_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("./text_highlight_rules").TextHighlightRules,r=function(e){var t="[_:a-zA-ZÀ-][-_:.a-zA-Z0-9À-]*";this.$rules={start:[{token:"string.cdata.xml",regex:"<\\!\\[CDATA\\[",next:"cdata"},{token:["punctuation.xml-decl.xml","keyword.xml-decl.xml"],regex:"(<\\?)(xml)(?=[\\s])",next:"xml_decl",caseInsensitive:!0},{token:["punctuation.instruction.xml","keyword.instruction.xml"],regex:"(<\\?)("+t+")",next:"processing_instruction"},{token:"comment.xml",regex:"<\\!--",next:"comment"},{token:["xml-pe.doctype.xml","xml-pe.doctype.xml"],regex:"(<\\!)(DOCTYPE)(?=[\\s])",next:"doctype",caseInsensitive:!0},{include:"tag"},{token:"text.end-tag-open.xml",regex:"</"},{token:"text.tag-open.xml",regex:"<"},{include:"reference"},{defaultToken:"text.xml"}],xml_decl:[{token:"entity.other.attribute-name.decl-attribute-name.xml",regex:"(?:"+t+":)?"+t},{token:"keyword.operator.decl-attribute-equals.xml",regex:"="},{include:"whitespace"},{include:"string"},{token:"punctuation.xml-decl.xml",regex:"\\?>",next:"start"}],processing_instruction:[{token:"punctuation.instruction.xml",regex:"\\?>",next:"start"},{defaultToken:"instruction.xml"}],doctype:[{include:"whitespace"},{include:"string"},{token:"xml-pe.doctype.xml",regex:">",next:"start"},{token:"xml-pe.xml",regex:"[-_a-zA-Z0-9:]+"},{token:"punctuation.int-subset",regex:"\\[",push:"int_subset"}],int_subset:[{token:"text.xml",regex:"\\s+"},{token:"punctuation.int-subset.xml",regex:"]",next:"pop"},{token:["punctuation.markup-decl.xml","keyword.markup-decl.xml"],regex:"(<\\!)("+t+")",push:[{token:"text",regex:"\\s+"},{token:"punctuation.markup-decl.xml",regex:">",next:"pop"},{include:"string"}]}],cdata:[{token:"string.cdata.xml",regex:"\\]\\]>",next:"start"},{token:"text.xml",regex:"\\s+"},{token:"text.xml",regex:"(?:[^\\]]|\\](?!\\]>))+"}],comment:[{token:"comment.xml",regex:"-->",next:"start"},{defaultToken:"comment.xml"}],reference:[{token:"constant.language.escape.reference.xml",regex:"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"}],attr_reference:[{token:"constant.language.escape.reference.attribute-value.xml",regex:"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"}],tag:[{token:["meta.tag.punctuation.tag-open.xml","meta.tag.punctuation.end-tag-open.xml","meta.tag.tag-name.xml"],regex:"(?:(<)|(</))((?:"+t+":)?"+t+")",next:[{include:"attributes"},{token:"meta.tag.punctuation.tag-close.xml",regex:"/?>",next:"start"}]}],tag_whitespace:[{token:"text.tag-whitespace.xml",regex:"\\s+"}],whitespace:[{token:"text.whitespace.xml",regex:"\\s+"}],string:[{token:"string.xml",regex:"'",push:[{token:"string.xml",regex:"'",next:"pop"},{defaultToken:"string.xml"}]},{token:"string.xml",regex:'"',push:[{token:"string.xml",regex:'"',next:"pop"},{defaultToken:"string.xml"}]}],attributes:[{token:"entity.other.attribute-name.xml",regex:"(?:"+t+":)?"+t},{token:"keyword.operator.attribute-equals.xml",regex:"="},{include:"tag_whitespace"},{include:"attribute_value"}],attribute_value:[{token:"string.attribute-value.xml",regex:"'",push:[{token:"string.attribute-value.xml",regex:"'",next:"pop"},{include:"attr_reference"},{defaultToken:"string.attribute-value.xml"}]},{token:"string.attribute-value.xml",regex:'"',push:[{token:"string.attribute-value.xml",regex:'"',next:"pop"},{include:"attr_reference"},{defaultToken:"string.attribute-value.xml"}]}]},this.constructor===r&&this.normalizeRules()};(function(){this.embedTagRules=function(e,t,i){this.$rules.tag.unshift({token:["meta.tag.punctuation.tag-open.xml","meta.tag."+i+".tag-name.xml"],regex:"(<)("+i+"(?=\\s|>|$))",next:[{include:"attributes"},{token:"meta.tag.punctuation.tag-close.xml",regex:"/?>",next:t+"start"}]}),this.$rules[i+"-end"]=[{include:"attributes"},{token:"meta.tag.punctuation.tag-close.xml",regex:"/?>",next:"start",onMatch:function(e,t,i){return i.splice(0),this.token}}],this.embedRules(e,t,[{token:["meta.tag.punctuation.end-tag-open.xml","meta.tag."+i+".tag-name.xml"],regex:"(</)("+i+"(?=\\s|>|$))",next:i+"-end"},{token:"string.cdata.xml",regex:"<\\!\\[CDATA\\["},{token:"string.cdata.xml",regex:"\\]\\]>"}])}}).call(o.prototype),n.inherits(r,o),t.XmlHighlightRules=r}),define("ace/mode/behaviour/xml",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/token_iterator","ace/lib/lang"],function(e,t,i){"use strict";function n(e,t){return e.type.lastIndexOf(t+".xml")>-1}var o=e("../../lib/oop"),r=e("../behaviour").Behaviour,s=e("../../token_iterator").TokenIterator,a=(e("../../lib/lang"),function(){this.add("string_dquotes","insertion",function(e,t,i,o,r){if('"'==r||"'"==r){var a=r,l=o.doc.getTextRange(i.getSelectionRange());if(""!==l&&"'"!==l&&'"'!=l&&i.getWrapBehavioursEnabled())return{text:a+l+a,selection:!1};var c=i.getCursorPosition(),h=o.doc.getLine(c.row),u=h.substring(c.column,c.column+1),d=new s(o,c.row,c.column),g=d.getCurrentToken();if(u==a&&(n(g,"attribute-value")||n(g,"string")))return{text:"",selection:[1,1]};if(g||(g=d.stepBackward()),!g)return;for(;n(g,"tag-whitespace")||n(g,"whitespace");)g=d.stepBackward();var f=!u||u.match(/\s/);if(n(g,"attribute-equals")&&(f||">"==u)||n(g,"decl-attribute-equals")&&(f||"?"==u))return{text:a+a,selection:[1,1]}}}),this.add("string_dquotes","deletion",function(e,t,i,n,o){var r=n.doc.getTextRange(o);if(!o.isMultiLine()&&('"'==r||"'"==r)){var s=n.doc.getLine(o.start.row),a=s.substring(o.start.column+1,o.start.column+2);if(a==r)return o.end.column++,o}}),this.add("autoclosing","insertion",function(e,t,i,o,r){if(">"==r){var a=i.getCursorPosition(),l=new s(o,a.row,a.column),c=l.getCurrentToken()||l.stepBackward();if(!c||!(n(c,"tag-name")||n(c,"tag-whitespace")||n(c,"attribute-name")||n(c,"attribute-equals")||n(c,"attribute-value")))return;if(n(c,"reference.attribute-value"))return;if(n(c,"attribute-value")){var h=c.value.charAt(0);if('"'==h||"'"==h){var u=c.value.charAt(c.value.length-1),d=l.getCurrentTokenColumn()+c.value.length;if(d>a.column||d==a.column&&h!=u)return}}for(;!n(c,"tag-name");)c=l.stepBackward();var g=l.getCurrentTokenRow(),f=l.getCurrentTokenColumn();if(n(l.stepBackward(),"end-tag-open"))return;var m=c.value;if(g==a.row&&(m=m.substring(0,a.column-f)),this.voidElements.hasOwnProperty(m.toLowerCase()))return;return{text:"></"+m+">",selection:[1,1]}}}),this.add("autoindent","insertion",function(e,t,i,n,o){if("\n"==o){var r=i.getCursorPosition(),a=n.getLine(r.row),l=new s(n,r.row,r.column),c=l.getCurrentToken();if(c&&-1!==c.type.indexOf("tag-close")){if("/>"==c.value)return;for(;c&&-1===c.type.indexOf("tag-name");)c=l.stepBackward();if(!c)return;var h=c.value,u=l.getCurrentTokenRow();if(c=l.stepBackward(),!c||-1!==c.type.indexOf("end-tag"))return;if(this.voidElements&&!this.voidElements[h]){var d=n.getTokenAt(r.row,r.column+1),a=n.getLine(u),g=this.$getIndent(a),f=g+n.getTabString();return d&&"</"===d.value?{text:"\n"+f+"\n"+g,selection:[1,f.length,1,f.length]}:{text:"\n"+f}}}}})});o.inherits(a,r),t.XmlBehaviour=a}),define("ace/mode/folding/xml",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/range","ace/mode/folding/fold_mode","ace/token_iterator"],function(e,t,i){"use strict";function n(e,t){return e.type.lastIndexOf(t+".xml")>-1}var o=e("../../lib/oop"),r=(e("../../lib/lang"),e("../../range").Range),s=e("./fold_mode").FoldMode,a=e("../../token_iterator").TokenIterator,l=t.FoldMode=function(e,t){s.call(this),this.voidElements=e||{},this.optionalEndTags=o.mixin({},this.voidElements),t&&o.mixin(this.optionalEndTags,t)};o.inherits(l,s);var c=function(){this.tagName="",this.closing=!1,this.selfClosing=!1,this.start={row:0,column:0},this.end={row:0,column:0}};(function(){this.getFoldWidget=function(e,t,i){var n=this._getFirstTagInLine(e,i);return n?n.closing||!n.tagName&&n.selfClosing?"markbeginend"==t?"end":"":!n.tagName||n.selfClosing||this.voidElements.hasOwnProperty(n.tagName.toLowerCase())?"":this._findEndTagInLine(e,i,n.tagName,n.end.column)?"":"start":""},this._getFirstTagInLine=function(e,t){for(var i=e.getTokens(t),o=new c,r=0;r<i.length;r++){var s=i[r];if(n(s,"tag-open")){if(o.end.column=o.start.column+s.value.length,o.closing=n(s,"end-tag-open"),s=i[++r],!s)return null;for(o.tagName=s.value,o.end.column+=s.value.length,r++;r<i.length;r++)if(s=i[r],o.end.column+=s.value.length,n(s,"tag-close")){o.selfClosing="/>"==s.value;break}return o}if(n(s,"tag-close"))return o.selfClosing="/>"==s.value,o;o.start.column+=s.value.length}return null},this._findEndTagInLine=function(e,t,i,o){for(var r=e.getTokens(t),s=0,a=0;a<r.length;a++){var l=r[a];if(s+=l.value.length,!(o>s)&&n(l,"end-tag-open")&&(l=r[a+1],l&&l.value==i))return!0}return!1},this._readTagForward=function(e){var t=e.getCurrentToken();if(!t)return null;var i=new c;do if(n(t,"tag-open"))i.closing=n(t,"end-tag-open"),i.start.row=e.getCurrentTokenRow(),i.start.column=e.getCurrentTokenColumn();else if(n(t,"tag-name"))i.tagName=t.value;else if(n(t,"tag-close"))return i.selfClosing="/>"==t.value,i.end.row=e.getCurrentTokenRow(),i.end.column=e.getCurrentTokenColumn()+t.value.length,e.stepForward(),i;while(t=e.stepForward());return null},this._readTagBackward=function(e){var t=e.getCurrentToken();if(!t)return null;var i=new c;do{if(n(t,"tag-open"))return i.closing=n(t,"end-tag-open"),i.start.row=e.getCurrentTokenRow(),i.start.column=e.getCurrentTokenColumn(),e.stepBackward(),i;n(t,"tag-name")?i.tagName=t.value:n(t,"tag-close")&&(i.selfClosing="/>"==t.value,i.end.row=e.getCurrentTokenRow(),i.end.column=e.getCurrentTokenColumn()+t.value.length)}while(t=e.stepBackward());return null},this._pop=function(e,t){for(;e.length;){var i=e[e.length-1];if(t&&i.tagName!=t.tagName){if(this.optionalEndTags.hasOwnProperty(i.tagName)){e.pop();continue}return null}return e.pop()}},this.getFoldWidgetRange=function(e,t,i){var n=this._getFirstTagInLine(e,i);if(!n)return null;var o,s=n.closing||n.selfClosing,l=[];if(s)for(var c=new a(e,i,n.end.column),h={row:i,column:n.start.column};o=this._readTagBackward(c);){if(o.selfClosing){if(l.length)continue;return o.start.column+=o.tagName.length+2,o.end.column-=2,r.fromPoints(o.start,o.end)}if(o.closing)l.push(o);else if(this._pop(l,o),0==l.length)return o.start.column+=o.tagName.length+2,o.start.row==o.end.row&&o.start.column<o.end.column&&(o.start.column=o.end.column),r.fromPoints(o.start,h)}else{var c=new a(e,i,n.start.column),u={row:i,column:n.start.column+n.tagName.length+2};for(n.start.row==n.end.row&&(u.column=n.end.column);o=this._readTagForward(c);){if(o.selfClosing){if(l.length)continue;return o.start.column+=o.tagName.length+2,o.end.column-=2,r.fromPoints(o.start,o.end)}if(o.closing){if(this._pop(l,o),0==l.length)return r.fromPoints(u,o.start)}else l.push(o)}}}}).call(l.prototype)}),define("ace/mode/xml",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text","ace/mode/xml_highlight_rules","ace/mode/behaviour/xml","ace/mode/folding/xml","ace/worker/worker_client"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("../lib/lang"),r=e("./text").Mode,s=e("./xml_highlight_rules").XmlHighlightRules,a=e("./behaviour/xml").XmlBehaviour,l=e("./folding/xml").FoldMode,c=e("../worker/worker_client").WorkerClient,h=function(){this.HighlightRules=s,this.$behaviour=new a,this.foldingRules=new l};n.inherits(h,r),function(){this.voidElements=o.arrayToMap([]),this.blockComment={start:"<!--",end:"-->"},this.createWorker=function(e){var t=new c(["ace"],"ace/mode/xml_worker","Worker");return t.attachToDocument(e.getDocument()),t.on("error",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/xml"}.call(h.prototype),t.Mode=h}),define("ace/mode/css_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=(e("../lib/lang"),e("./text_highlight_rules").TextHighlightRules),r=t.supportType="animation-fill-mode|alignment-adjust|alignment-baseline|animation-delay|animation-direction|animation-duration|animation-iteration-count|animation-name|animation-play-state|animation-timing-function|animation|appearance|azimuth|backface-visibility|background-attachment|background-break|background-clip|background-color|background-image|background-origin|background-position|background-repeat|background-size|background|baseline-shift|binding|bleed|bookmark-label|bookmark-level|bookmark-state|bookmark-target|border-bottom|border-bottom-color|border-bottom-left-radius|border-bottom-right-radius|border-bottom-style|border-bottom-width|border-collapse|border-color|border-image|border-image-outset|border-image-repeat|border-image-slice|border-image-source|border-image-width|border-left|border-left-color|border-left-style|border-left-width|border-radius|border-right|border-right-color|border-right-style|border-right-width|border-spacing|border-style|border-top|border-top-color|border-top-left-radius|border-top-right-radius|border-top-style|border-top-width|border-width|border|bottom|box-align|box-decoration-break|box-direction|box-flex-group|box-flex|box-lines|box-ordinal-group|box-orient|box-pack|box-shadow|box-sizing|break-after|break-before|break-inside|caption-side|clear|clip|color-profile|color|column-count|column-fill|column-gap|column-rule|column-rule-color|column-rule-style|column-rule-width|column-span|column-width|columns|content|counter-increment|counter-reset|crop|cue-after|cue-before|cue|cursor|direction|display|dominant-baseline|drop-initial-after-adjust|drop-initial-after-align|drop-initial-before-adjust|drop-initial-before-align|drop-initial-size|drop-initial-value|elevation|empty-cells|fit|fit-position|float-offset|float|font-family|font-size|font-size-adjust|font-stretch|font-style|font-variant|font-weight|font|grid-columns|grid-rows|hanging-punctuation|height|hyphenate-after|hyphenate-before|hyphenate-character|hyphenate-lines|hyphenate-resource|hyphens|icon|image-orientation|image-rendering|image-resolution|inline-box-align|left|letter-spacing|line-height|line-stacking-ruby|line-stacking-shift|line-stacking-strategy|line-stacking|list-style-image|list-style-position|list-style-type|list-style|margin-bottom|margin-left|margin-right|margin-top|margin|mark-after|mark-before|mark|marks|marquee-direction|marquee-play-count|marquee-speed|marquee-style|max-height|max-width|min-height|min-width|move-to|nav-down|nav-index|nav-left|nav-right|nav-up|opacity|orphans|outline-color|outline-offset|outline-style|outline-width|outline|overflow-style|overflow-x|overflow-y|overflow|padding-bottom|padding-left|padding-right|padding-top|padding|page-break-after|page-break-before|page-break-inside|page-policy|page|pause-after|pause-before|pause|perspective-origin|perspective|phonemes|pitch-range|pitch|play-during|pointer-events|position|presentation-level|punctuation-trim|quotes|rendering-intent|resize|rest-after|rest-before|rest|richness|right|rotation-point|rotation|ruby-align|ruby-overhang|ruby-position|ruby-span|size|speak-header|speak-numeral|speak-punctuation|speak|speech-rate|stress|string-set|table-layout|target-name|target-new|target-position|target|text-align-last|text-align|text-decoration|text-emphasis|text-height|text-indent|text-justify|text-outline|text-shadow|text-transform|text-wrap|top|transform-origin|transform-style|transform|transition-delay|transition-duration|transition-property|transition-timing-function|transition|unicode-bidi|vertical-align|visibility|voice-balance|voice-duration|voice-family|voice-pitch-range|voice-pitch|voice-rate|voice-stress|voice-volume|volume|white-space-collapse|white-space|widows|width|word-break|word-spacing|word-wrap|z-index",s=t.supportFunction="rgb|rgba|url|attr|counter|counters",a=t.supportConstant="absolute|after-edge|after|all-scroll|all|alphabetic|always|antialiased|armenian|auto|avoid-column|avoid-page|avoid|balance|baseline|before-edge|before|below|bidi-override|block-line-height|block|bold|bolder|border-box|both|bottom|box|break-all|break-word|capitalize|caps-height|caption|center|central|char|circle|cjk-ideographic|clone|close-quote|col-resize|collapse|column|consider-shifts|contain|content-box|cover|crosshair|cubic-bezier|dashed|decimal-leading-zero|decimal|default|disabled|disc|disregard-shifts|distribute-all-lines|distribute-letter|distribute-space|distribute|dotted|double|e-resize|ease-in|ease-in-out|ease-out|ease|ellipsis|end|exclude-ruby|fill|fixed|georgian|glyphs|grid-height|groove|hand|hanging|hebrew|help|hidden|hiragana-iroha|hiragana|horizontal|icon|ideograph-alpha|ideograph-numeric|ideograph-parenthesis|ideograph-space|ideographic|inactive|include-ruby|inherit|initial|inline-block|inline-box|inline-line-height|inline-table|inline|inset|inside|inter-ideograph|inter-word|invert|italic|justify|katakana-iroha|katakana|keep-all|last|left|lighter|line-edge|line-through|line|linear|list-item|local|loose|lower-alpha|lower-greek|lower-latin|lower-roman|lowercase|lr-tb|ltr|mathematical|max-height|max-size|medium|menu|message-box|middle|move|n-resize|ne-resize|newspaper|no-change|no-close-quote|no-drop|no-open-quote|no-repeat|none|normal|not-allowed|nowrap|nw-resize|oblique|open-quote|outset|outside|overline|padding-box|page|pointer|pre-line|pre-wrap|pre|preserve-3d|progress|relative|repeat-x|repeat-y|repeat|replaced|reset-size|ridge|right|round|row-resize|rtl|s-resize|scroll|se-resize|separate|slice|small-caps|small-caption|solid|space|square|start|static|status-bar|step-end|step-start|steps|stretch|strict|sub|super|sw-resize|table-caption|table-cell|table-column-group|table-column|table-footer-group|table-header-group|table-row-group|table-row|table|tb-rl|text-after-edge|text-before-edge|text-bottom|text-size|text-top|text|thick|thin|transparent|underline|upper-alpha|upper-latin|upper-roman|uppercase|use-script|vertical-ideographic|vertical-text|visible|w-resize|wait|whitespace|z-index|zero",l=t.supportConstantColor="aqua|black|blue|fuchsia|gray|green|lime|maroon|navy|olive|orange|purple|red|silver|teal|white|yellow",c=t.supportConstantFonts="arial|century|comic|courier|cursive|fantasy|garamond|georgia|helvetica|impact|lucida|symbol|system|tahoma|times|trebuchet|utopia|verdana|webdings|sans-serif|serif|monospace",h=t.numRe="\\-?(?:(?:[0-9]+)|(?:[0-9]*\\.[0-9]+))",u=t.pseudoElements="(\\:+)\\b(after|before|first-letter|first-line|moz-selection|selection)\\b",d=t.pseudoClasses="(:)\\b(active|checked|disabled|empty|enabled|first-child|first-of-type|focus|hover|indeterminate|invalid|last-child|last-of-type|link|not|nth-child|nth-last-child|nth-last-of-type|nth-of-type|only-child|only-of-type|required|root|target|valid|visited)\\b",g=function(){var e=this.createKeywordMapper({"support.function":s,"support.constant":a,"support.type":r,"support.constant.color":l,"support.constant.fonts":c},"text",!0);this.$rules={start:[{token:"comment",regex:"\\/\\*",push:"comment"},{token:"paren.lparen",regex:"\\{",push:"ruleset"},{token:"string",regex:"@.*?{",push:"media"},{token:"keyword",regex:"#[a-z0-9-_]+"},{token:"variable",regex:"\\.[a-z0-9-_]+"},{token:"string",regex:":[a-z0-9-_]+"},{token:"constant",regex:"[a-z0-9-_]+"},{caseInsensitive:!0}],media:[{token:"comment",regex:"\\/\\*",push:"comment"},{token:"paren.lparen",regex:"\\{",push:"ruleset"},{
|
|
|
+token:"string",regex:"\\}",next:"pop"},{token:"keyword",regex:"#[a-z0-9-_]+"},{token:"variable",regex:"\\.[a-z0-9-_]+"},{token:"string",regex:":[a-z0-9-_]+"},{token:"constant",regex:"[a-z0-9-_]+"},{caseInsensitive:!0}],comment:[{token:"comment",regex:"\\*\\/",next:"pop"},{defaultToken:"comment"}],ruleset:[{token:"paren.rparen",regex:"\\}",next:"pop"},{token:"comment",regex:"\\/\\*",push:"comment"},{token:"string",regex:'["](?:(?:\\\\.)|(?:[^"\\\\]))*?["]'},{token:"string",regex:"['](?:(?:\\\\.)|(?:[^'\\\\]))*?[']"},{token:["constant.numeric","keyword"],regex:"("+h+")(ch|cm|deg|em|ex|fr|gd|grad|Hz|in|kHz|mm|ms|pc|pt|px|rad|rem|s|turn|vh|vm|vw|%)"},{token:"constant.numeric",regex:h},{token:"constant.numeric",regex:"#[a-f0-9]{6}"},{token:"constant.numeric",regex:"#[a-f0-9]{3}"},{token:["punctuation","entity.other.attribute-name.pseudo-element.css"],regex:u},{token:["punctuation","entity.other.attribute-name.pseudo-class.css"],regex:d},{token:["support.function","string","support.function"],regex:"(url\\()(.*)(\\))"},{token:e,regex:"\\-?[a-zA-Z_][a-zA-Z0-9_\\-]*"},{caseInsensitive:!0}]},this.normalizeRules()};n.inherits(g,o),t.CssHighlightRules=g}),define("ace/mode/behaviour/css",["require","exports","module","ace/lib/oop","ace/mode/behaviour","ace/mode/behaviour/cstyle","ace/token_iterator"],function(e,t,i){"use strict";var n=e("../../lib/oop"),o=(e("../behaviour").Behaviour,e("./cstyle").CstyleBehaviour),r=e("../../token_iterator").TokenIterator,s=function(){this.inherit(o),this.add("colon","insertion",function(e,t,i,n,o){if(":"===o){var s=i.getCursorPosition(),a=new r(n,s.row,s.column),l=a.getCurrentToken();if(l&&l.value.match(/\s+/)&&(l=a.stepBackward()),l&&"support.type"===l.type){var c=n.doc.getLine(s.row),h=c.substring(s.column,s.column+1);if(":"===h)return{text:"",selection:[1,1]};if(!c.substring(s.column).match(/^\s*;/))return{text:":;",selection:[1,1]}}}}),this.add("colon","deletion",function(e,t,i,n,o){var s=n.doc.getTextRange(o);if(!o.isMultiLine()&&":"===s){var a=i.getCursorPosition(),l=new r(n,a.row,a.column),c=l.getCurrentToken();if(c&&c.value.match(/\s+/)&&(c=l.stepBackward()),c&&"support.type"===c.type){var h=n.doc.getLine(o.start.row),u=h.substring(o.end.column,o.end.column+1);if(";"===u)return o.end.column++,o}}}),this.add("semicolon","insertion",function(e,t,i,n,o){if(";"===o){var r=i.getCursorPosition(),s=n.doc.getLine(r.row),a=s.substring(r.column,r.column+1);if(";"===a)return{text:"",selection:[1,1]}}})};n.inherits(s,o),t.CssBehaviour=s}),define("ace/mode/css",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/css_highlight_rules","ace/mode/matching_brace_outdent","ace/worker/worker_client","ace/mode/behaviour/css","ace/mode/folding/cstyle"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("./text").Mode,r=e("./css_highlight_rules").CssHighlightRules,s=e("./matching_brace_outdent").MatchingBraceOutdent,a=e("../worker/worker_client").WorkerClient,l=e("./behaviour/css").CssBehaviour,c=e("./folding/cstyle").FoldMode,h=function(){this.HighlightRules=r,this.$outdent=new s,this.$behaviour=new l,this.foldingRules=new c};n.inherits(h,o),function(){this.foldingRules="cStyle",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(e,t,i){var n=this.$getIndent(t),o=this.getTokenizer().getLineTokens(t,e).tokens;if(o.length&&"comment"==o[o.length-1].type)return n;var r=t.match(/^.*\{\s*$/);return r&&(n+=i),n},this.checkOutdent=function(e,t,i){return this.$outdent.checkOutdent(t,i)},this.autoOutdent=function(e,t,i){this.$outdent.autoOutdent(t,i)},this.createWorker=function(e){var t=new a(["ace"],"ace/mode/css_worker","Worker");return t.attachToDocument(e.getDocument()),t.on("annotate",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/css"}.call(h.prototype),t.Mode=h}),define("ace/mode/html_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/css_highlight_rules","ace/mode/javascript_highlight_rules","ace/mode/xml_highlight_rules"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("../lib/lang"),r=e("./css_highlight_rules").CssHighlightRules,s=e("./javascript_highlight_rules").JavaScriptHighlightRules,a=e("./xml_highlight_rules").XmlHighlightRules,l=o.createMap({a:"anchor",button:"form",form:"form",img:"image",input:"form",label:"form",option:"form",script:"script",select:"form",textarea:"form",style:"style",table:"table",tbody:"table",td:"table",tfoot:"table",th:"table",tr:"table"}),c=function(){a.call(this),this.addRules({attributes:[{include:"tag_whitespace"},{token:"entity.other.attribute-name.xml",regex:"[-_a-zA-Z0-9:.]+"},{token:"keyword.operator.attribute-equals.xml",regex:"=",push:[{include:"tag_whitespace"},{token:"string.unquoted.attribute-value.html",regex:"[^<>='\"`\\s]+",next:"pop"},{token:"empty",regex:"",next:"pop"}]},{include:"attribute_value"}],tag:[{token:function(e,t){var i=l[t];return["meta.tag.punctuation."+("<"==e?"":"end-")+"tag-open.xml","meta.tag"+(i?"."+i:"")+".tag-name.xml"]},regex:"(</?)([-_a-zA-Z0-9:.]+)",next:"tag_stuff"}],tag_stuff:[{include:"attributes"},{token:"meta.tag.punctuation.tag-close.xml",regex:"/?>",next:"start"}]}),this.embedTagRules(r,"css-","style"),this.embedTagRules(s,"js-","script"),this.constructor===c&&this.normalizeRules()};n.inherits(c,a),t.HtmlHighlightRules=c}),define("ace/mode/folding/mixed",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode"],function(e,t,i){"use strict";var n=e("../../lib/oop"),o=e("./fold_mode").FoldMode,r=t.FoldMode=function(e,t){this.defaultMode=e,this.subModes=t};n.inherits(r,o),function(){this.$getMode=function(e){"string"!=typeof e&&(e=e[0]);for(var t in this.subModes)if(0===e.indexOf(t))return this.subModes[t];return null},this.$tryMode=function(e,t,i,n){var o=this.$getMode(e);return o?o.getFoldWidget(t,i,n):""},this.getFoldWidget=function(e,t,i){return this.$tryMode(e.getState(i-1),e,t,i)||this.$tryMode(e.getState(i),e,t,i)||this.defaultMode.getFoldWidget(e,t,i)},this.getFoldWidgetRange=function(e,t,i){var n=this.$getMode(e.getState(i-1));return n&&n.getFoldWidget(e,t,i)||(n=this.$getMode(e.getState(i))),n&&n.getFoldWidget(e,t,i)||(n=this.defaultMode),n.getFoldWidgetRange(e,t,i)}}.call(r.prototype)}),define("ace/mode/folding/html",["require","exports","module","ace/lib/oop","ace/mode/folding/mixed","ace/mode/folding/xml","ace/mode/folding/cstyle"],function(e,t,i){"use strict";var n=e("../../lib/oop"),o=e("./mixed").FoldMode,r=e("./xml").FoldMode,s=e("./cstyle").FoldMode,a=t.FoldMode=function(e,t){o.call(this,new r(e,t),{"js-":new s,"css-":new s})};n.inherits(a,o)}),define("ace/mode/html_completions",["require","exports","module","ace/token_iterator"],function(e,t,i){"use strict";function n(e,t){return e.type.lastIndexOf(t+".xml")>-1}function o(e,t){for(var i=new r(e,t.row,t.column),o=i.getCurrentToken();o&&!n(o,"tag-name");)o=i.stepBackward();return o?o.value:void 0}var r=e("../token_iterator").TokenIterator,s=["accesskey","class","contenteditable","contextmenu","dir","draggable","dropzone","hidden","id","inert","itemid","itemprop","itemref","itemscope","itemtype","lang","spellcheck","style","tabindex","title","translate"],a=["onabort","onblur","oncancel","oncanplay","oncanplaythrough","onchange","onclick","onclose","oncontextmenu","oncuechange","ondblclick","ondrag","ondragend","ondragenter","ondragleave","ondragover","ondragstart","ondrop","ondurationchange","onemptied","onended","onerror","onfocus","oninput","oninvalid","onkeydown","onkeypress","onkeyup","onload","onloadeddata","onloadedmetadata","onloadstart","onmousedown","onmousemove","onmouseout","onmouseover","onmouseup","onmousewheel","onpause","onplay","onplaying","onprogress","onratechange","onreset","onscroll","onseeked","onseeking","onselect","onshow","onstalled","onsubmit","onsuspend","ontimeupdate","onvolumechange","onwaiting"],l=s.concat(a),c={html:["manifest"],head:[],title:[],base:["href","target"],link:["href","hreflang","rel","media","type","sizes"],meta:["http-equiv","name","content","charset"],style:["type","media","scoped"],script:["charset","type","src","defer","async"],noscript:["href"],body:["onafterprint","onbeforeprint","onbeforeunload","onhashchange","onmessage","onoffline","onpopstate","onredo","onresize","onstorage","onundo","onunload"],section:[],nav:[],article:["pubdate"],aside:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],header:[],footer:[],address:[],main:[],p:[],hr:[],pre:[],blockquote:["cite"],ol:["start","reversed"],ul:[],li:["value"],dl:[],dt:[],dd:[],figure:[],figcaption:[],div:[],a:["href","target","ping","rel","media","hreflang","type"],em:[],strong:[],small:[],s:[],cite:[],q:["cite"],dfn:[],abbr:[],data:[],time:["datetime"],code:[],"var":[],samp:[],kbd:[],sub:[],sup:[],i:[],b:[],u:[],mark:[],ruby:[],rt:[],rp:[],bdi:[],bdo:[],span:[],br:[],wbr:[],ins:["cite","datetime"],del:["cite","datetime"],img:["alt","src","height","width","usemap","ismap"],iframe:["name","src","height","width","sandbox","seamless"],embed:["src","height","width","type"],object:["param","data","type","height","width","usemap","name","form","classid"],param:["name","value"],video:["src","autobuffer","autoplay","loop","controls","width","height","poster"],audio:["src","autobuffer","autoplay","loop","controls"],source:["src","type","media"],track:["kind","src","srclang","label","default"],canvas:["width","height"],map:["name"],area:["shape","coords","href","hreflang","alt","target","media","rel","ping","type"],svg:[],math:[],table:["summary"],caption:[],colgroup:["span"],col:["span"],tbody:[],thead:[],tfoot:[],tr:[],td:["headers","rowspan","colspan"],th:["headers","rowspan","colspan","scope"],form:["accept-charset","action","autocomplete","enctype","method","name","novalidate","target"],fieldset:["disabled","form","name"],legend:[],label:["form","for"],input:["type","accept","alt","autocomplete","checked","disabled","form","formaction","formenctype","formmethod","formnovalidate","formtarget","height","list","max","maxlength","min","multiple","pattern","placeholder","readonly","required","size","src","step","width","files","value"],button:["autofocus","disabled","form","formaction","formenctype","formmethod","formnovalidate","formtarget","name","value","type"],select:["autofocus","disabled","form","multiple","name","size"],datalist:[],optgroup:["disabled","label"],option:["disabled","selected","label","value"],textarea:["autofocus","disabled","form","maxlength","name","placeholder","readonly","required","rows","cols","wrap"],keygen:["autofocus","challenge","disabled","form","keytype","name"],output:["for","form","name"],progress:["value","max"],meter:["value","min","max","low","high","optimum"],details:["open"],summary:[],command:["type","label","icon","disabled","checked","radiogroup","command"],menu:["type","label"],dialog:["open"]},h=Object.keys(c),u=function(){};(function(){this.getCompletions=function(e,t,i,o){var r=t.getTokenAt(i.row,i.column);return r?n(r,"tag-name")||n(r,"tag-open")||n(r,"end-tag-open")?this.getTagCompletions(e,t,i,o):n(r,"tag-whitespace")||n(r,"attribute-name")?this.getAttributeCompetions(e,t,i,o):[]:[]},this.getTagCompletions=function(e,t,i,n){return h.map(function(e){return{value:e,meta:"tag",score:Number.MAX_VALUE}})},this.getAttributeCompetions=function(e,t,i,n){var r=o(t,i);if(!r)return[];var s=l;return r in c&&(s=s.concat(c[r])),s.map(function(e){return{caption:e,snippet:e+'="$0"',meta:"attribute",score:Number.MAX_VALUE}})}}).call(u.prototype),t.HtmlCompletions=u}),define("ace/mode/html",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text","ace/mode/javascript","ace/mode/css","ace/mode/html_highlight_rules","ace/mode/behaviour/xml","ace/mode/folding/html","ace/mode/html_completions","ace/worker/worker_client"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("../lib/lang"),r=e("./text").Mode,s=e("./javascript").Mode,a=e("./css").Mode,l=e("./html_highlight_rules").HtmlHighlightRules,c=e("./behaviour/xml").XmlBehaviour,h=e("./folding/html").FoldMode,u=e("./html_completions").HtmlCompletions,d=e("../worker/worker_client").WorkerClient,g=["area","base","br","col","embed","hr","img","input","keygen","link","meta","menuitem","param","source","track","wbr"],f=["li","dt","dd","p","rt","rp","optgroup","option","colgroup","td","th"],m=function(e){this.fragmentContext=e&&e.fragmentContext,this.HighlightRules=l,this.$behaviour=new c,this.$completer=new u,this.createModeDelegates({"js-":s,"css-":a}),this.foldingRules=new h(this.voidElements,o.arrayToMap(f))};n.inherits(m,r),function(){this.blockComment={start:"<!--",end:"-->"},this.voidElements=o.arrayToMap(g),this.getNextLineIndent=function(e,t,i){return this.$getIndent(t)},this.checkOutdent=function(e,t,i){return!1},this.getCompletions=function(e,t,i,n){return this.$completer.getCompletions(e,t,i,n)},this.createWorker=function(e){if(this.constructor==m){var t=new d(["ace"],"ace/mode/html_worker","Worker");return t.attachToDocument(e.getDocument()),this.fragmentContext&&t.call("setOptions",[{context:this.fragmentContext}]),t.on("error",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t}},this.$id="ace/mode/html"}.call(m.prototype),t.Mode=m}),define("ace/mode/markdown_highlight_rules",["require","exports","module","ace/lib/oop","ace/lib/lang","ace/mode/text_highlight_rules","ace/mode/javascript_highlight_rules","ace/mode/xml_highlight_rules","ace/mode/html_highlight_rules","ace/mode/css_highlight_rules"],function(e,t,i){"use strict";function n(e,t){return{token:"support.function",regex:"^\\s*```"+e+"\\s*$",push:t+"start"}}var o=e("../lib/oop"),r=e("../lib/lang"),s=e("./text_highlight_rules").TextHighlightRules,a=e("./javascript_highlight_rules").JavaScriptHighlightRules,l=e("./xml_highlight_rules").XmlHighlightRules,c=e("./html_highlight_rules").HtmlHighlightRules,h=e("./css_highlight_rules").CssHighlightRules,u=function(e){return"(?:[^"+r.escapeRegExp(e)+"\\\\]|\\\\.)*"},d=function(){c.call(this),this.$rules.start.unshift({token:"empty_line",regex:"^$",next:"allowBlock"},{token:"markup.heading.1",regex:"^=+(?=\\s*$)"},{token:"markup.heading.2",regex:"^\\-+(?=\\s*$)"},{token:function(e){return"markup.heading."+e.length},regex:/^#{1,6}(?=\s*[^ #]|\s+#.)/,next:"header"},n("(?:javascript|js)","jscode-"),n("xml","xmlcode-"),n("html","htmlcode-"),n("css","csscode-"),{token:"support.function",regex:"^\\s*```\\s*\\S*(?:{.*?\\})?\\s*$",next:"githubblock"},{token:"string.blockquote",regex:"^\\s*>\\s*(?:[*+-]|\\d+\\.)?\\s+",next:"blockquote"},{token:"constant",regex:"^ {0,2}(?:(?: ?\\* ?){3,}|(?: ?\\- ?){3,}|(?: ?\\_ ?){3,})\\s*$",next:"allowBlock"},{token:"markup.list",regex:"^\\s{0,3}(?:[*+-]|\\d+\\.)\\s+",next:"listblock-start"},{include:"basic"}),this.addRules({basic:[{token:"constant.language.escape",regex:/\\[\\`*_{}\[\]()#+\-.!]/},{token:"support.function",regex:"(`+)(.*?[^`])(\\1)"},{token:["text","constant","text","url","string","text"],regex:'^([ ]{0,3}\\[)([^\\]]+)(\\]:\\s*)([^ ]+)(\\s*(?:["][^"]+["])?(\\s*))$'},{token:["text","string","text","constant","text"],regex:"(\\[)("+u("]")+")(\\]s*\\[)("+u("]")+")(\\])"},{token:["text","string","text","markup.underline","string","text"],regex:"(\\[)("+u("]")+')(\\]\\()((?:[^\\)\\s\\\\]|\\\\.|\\s(?=[^"]))*)(\\s*"'+u('"')+'"\\s*)?(\\))'},{token:"string.strong",regex:"([*]{2}|[_]{2}(?=\\S))(.*?\\S[*_]*)(\\1)"},{token:"string.emphasis",regex:"([*]|[_](?=\\S))(.*?\\S[*_]*)(\\1)"},{token:["text","url","text"],regex:"(<)((?:https?|ftp|dict):[^'\">\\s]+|(?:mailto:)?[-.\\w]+\\@[-a-z0-9]+(?:\\.[-a-z0-9]+)*\\.[a-z]+)(>)"}],allowBlock:[{token:"support.function",regex:"^ {4}.+",next:"allowBlock"},{token:"empty",regex:"",next:"start"}],header:[{regex:"$",next:"start"},{include:"basic"},{defaultToken:"heading"}],"listblock-start":[{token:"support.variable",regex:/(?:\[[ x]\])?/,next:"listblock"}],listblock:[{token:"empty_line",regex:"^$",next:"start"},{token:"markup.list",regex:"^\\s{0,3}(?:[*+-]|\\d+\\.)\\s+",next:"listblock-start"},{include:"basic",noEscape:!0},{token:"support.function",regex:"^\\s*```\\s*[a-zA-Z]*(?:{.*?\\})?\\s*$",next:"githubblock"},{defaultToken:"list"}],blockquote:[{token:"empty_line",regex:"^\\s*$",next:"start"},{token:"string.blockquote",regex:"^\\s*>\\s*(?:[*+-]|\\d+\\.)?\\s+",next:"blockquote"},{include:"basic",noEscape:!0},{defaultToken:"string.blockquote"}],githubblock:[{token:"support.function",regex:"^\\s*```",next:"start"},{token:"support.function",regex:".+"}]}),this.embedRules(a,"jscode-",[{token:"support.function",regex:"^\\s*```",next:"pop"}]),this.embedRules(c,"htmlcode-",[{token:"support.function",regex:"^\\s*```",next:"pop"}]),this.embedRules(h,"csscode-",[{token:"support.function",regex:"^\\s*```",next:"pop"}]),this.embedRules(l,"xmlcode-",[{token:"support.function",regex:"^\\s*```",next:"pop"}]),this.normalizeRules()};o.inherits(d,s),t.MarkdownHighlightRules=d}),define("ace/mode/folding/markdown",["require","exports","module","ace/lib/oop","ace/mode/folding/fold_mode","ace/range"],function(e,t,i){"use strict";var n=e("../../lib/oop"),o=e("./fold_mode").FoldMode,r=e("../../range").Range,s=t.FoldMode=function(){};n.inherits(s,o),function(){this.foldingStartMarker=/^(?:[=-]+\s*$|#{1,6} |`{3})/,this.getFoldWidget=function(e,t,i){var n=e.getLine(i);return this.foldingStartMarker.test(n)?"`"==n[0]&&"start"==e.bgTokenizer.getState(i)?"end":"start":""},this.getFoldWidgetRange=function(e,t,i){function n(t){return u=e.getTokens(t)[0],u&&0===u.type.lastIndexOf(d,0)}function o(){var e=u.value[0];return"="==e?6:"-"==e?5:7-u.value.search(/[^#]/)}var s=e.getLine(i),a=s.length,l=e.getLength(),c=i,h=i;if(s.match(this.foldingStartMarker)){if("`"==s[0]){if("start"!==e.bgTokenizer.getState(i)){for(;++i<l&&(s=e.getLine(i),!("`"==s[0]&"```"==s.substring(0,3))););return new r(c,a,i,0)}for(;i-->0&&(s=e.getLine(i),!("`"==s[0]&"```"==s.substring(0,3))););return new r(i,s.length,c,0)}var u,d="markup.heading";if(n(i)){for(var g=o();++i<l;)if(n(i)){var f=o();if(f>=g)break}if(h=i-(u&&-1!=["=","-"].indexOf(u.value[0])?2:1),h>c)for(;h>c&&/^\s*$/.test(e.getLine(h));)h--;if(h>c){var m=e.getLine(h).length;return new r(c,a,h,m)}}}}}.call(s.prototype)}),define("ace/mode/markdown",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/javascript","ace/mode/xml","ace/mode/html","ace/mode/markdown_highlight_rules","ace/mode/folding/markdown"],function(e,t,i){"use strict";var n=e("../lib/oop"),o=e("./text").Mode,r=e("./javascript").Mode,s=e("./xml").Mode,a=e("./html").Mode,l=e("./markdown_highlight_rules").MarkdownHighlightRules,c=e("./folding/markdown").FoldMode,h=function(){this.HighlightRules=l,this.createModeDelegates({"js-":r,"xml-":s,"html-":a}),this.foldingRules=new c};n.inherits(h,o),function(){this.type="text",this.blockComment={start:"<!--",end:"-->"},this.getNextLineIndent=function(e,t,i){if("listblock"==e){var n=/^(\s*)(?:([-+*])|(\d+)\.)(\s+)/.exec(t);if(!n)return"";var o=n[2];return o||(o=parseInt(n[3],10)+1+"."),n[1]+o+n[4]}return this.$getIndent(t)},this.$id="ace/mode/markdown"}.call(h.prototype),t.Mode=h});
|
|
|
+//# sourceMappingURL=/ace.js.map
|