Merge remote-tracking branch 'remotes/pull/1874'
Conflicts: Makefile.dryice.js
This commit is contained in:
commit
56631344ba
4 changed files with 49 additions and 181 deletions
|
|
@ -267,7 +267,7 @@ function workers(path) {
|
||||||
}).filter(function(x) { return !!x; });
|
}).filter(function(x) { return !!x; });
|
||||||
}
|
}
|
||||||
function modeList() {
|
function modeList() {
|
||||||
return jsFileList("lib/ace/mode", /_highlight_rules|_test|_worker|xml_util|_outdent|behaviour|completions/)
|
return jsFileList("lib/ace/mode", /_highlight_rules|_test|_worker|_outdent|behaviour|completions/)
|
||||||
}
|
}
|
||||||
|
|
||||||
function addSuffix(options) {
|
function addSuffix(options) {
|
||||||
|
|
@ -280,7 +280,7 @@ function addSuffix(options) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function getWriteFilters(options, projectType, main) {
|
function getWriteFilters(options, projectType) {
|
||||||
var filters = [
|
var filters = [
|
||||||
copy.filter.moduleDefines,
|
copy.filter.moduleDefines,
|
||||||
removeUseStrict,
|
removeUseStrict,
|
||||||
|
|
@ -294,29 +294,28 @@ function getWriteFilters(options, projectType, main) {
|
||||||
if (options.noconflict)
|
if (options.noconflict)
|
||||||
filters.push(namespace(options.ns));
|
filters.push(namespace(options.ns));
|
||||||
|
|
||||||
if (options.exportModule && projectType == "main" || projectType == "ext") {
|
|
||||||
filters.push(exportAce(options.ns, options.exportModule,
|
|
||||||
options.noconflict ? options.ns : "", projectType == "ext" && main));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (options.compress)
|
if (options.compress)
|
||||||
filters.push(copy.filter.uglifyjs);
|
filters.push(copy.filter.uglifyjs);
|
||||||
|
|
||||||
// copy.filter.uglifyjs.options.ascii_only = true; doesn't work with some uglify.js versions
|
// copy.filter.uglifyjs.options.ascii = true; doesn't work with some uglify.js versions
|
||||||
filters.push(function(text) {
|
filters.push(function(text) {
|
||||||
var text = text.replace(/[\x00-\x08\x0b\x0c\x0e\x19\x80-\uffff]/g, function(c) {
|
var t1 = text.replace(/[\x80-\uffff]/g, function(c) {
|
||||||
c = c.charCodeAt(0).toString(16);
|
c = c.charCodeAt(0).toString(16);
|
||||||
if (c.length == 1)
|
|
||||||
return "\\x0" + c;
|
|
||||||
if (c.length == 2)
|
if (c.length == 2)
|
||||||
return "\\x" + c;
|
return "\\x" + c;
|
||||||
if (c.length == 3)
|
if (c.length == 3)
|
||||||
return "\\u0" + c;
|
c = "0" + c;
|
||||||
return "\\u" + c;
|
return "\\u" + c;
|
||||||
});
|
});
|
||||||
return text;
|
return text;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (options.exportModule && projectType == "main") {
|
||||||
|
if (options.noconflict)
|
||||||
|
filters.push(exportAce(options.ns, options.exportModule, options.ns));
|
||||||
|
else
|
||||||
|
filters.push(exportAce(options.ns, options.exportModule));
|
||||||
|
}
|
||||||
return filters;
|
return filters;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -391,7 +390,7 @@ var buildAce = function(options) {
|
||||||
project: cloneProject(project),
|
project: cloneProject(project),
|
||||||
require: [ 'ace/ext/' + ext ]
|
require: [ 'ace/ext/' + ext ]
|
||||||
}],
|
}],
|
||||||
filter: getWriteFilters(options, "ext", 'ace/ext/' + ext),
|
filter: getWriteFilters(options, "ext"),
|
||||||
dest: targetDir + "/ext-" + ext + ".js"
|
dest: targetDir + "/ext-" + ext + ".js"
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
@ -553,6 +552,15 @@ var detectTextModules = function(input, source) {
|
||||||
detectTextModules.onRead = true;
|
detectTextModules.onRead = true;
|
||||||
copy.filter.addDefines = detectTextModules;
|
copy.filter.addDefines = detectTextModules;
|
||||||
|
|
||||||
|
function generateThemesModule(themes) {
|
||||||
|
var themelist = [
|
||||||
|
'define(function(require, exports, module) {',
|
||||||
|
'\n\nmodule.exports.themes = ' + JSON.stringify(themes, null, ' '),
|
||||||
|
';\n\n});'
|
||||||
|
].join('');
|
||||||
|
fs.writeFileSync(__dirname + '/lib/ace/ext/themelist_utils/themes.js', themelist, 'utf8');
|
||||||
|
}
|
||||||
|
|
||||||
function inlineTextModules(text) {
|
function inlineTextModules(text) {
|
||||||
var deps = [];
|
var deps = [];
|
||||||
return text.replace(/, *['"]ace\/requirejs\/text!(.*?)['"]| require\(['"](?:ace|[.\/]+)\/requirejs\/text!(.*?)['"]\)/g, function(_, dep, call) {
|
return text.replace(/, *['"]ace\/requirejs\/text!(.*?)['"]| require\(['"](?:ace|[.\/]+)\/requirejs\/text!(.*?)['"]\)/g, function(_, dep, call) {
|
||||||
|
|
@ -568,38 +576,14 @@ function inlineTextModules(text) {
|
||||||
});
|
});
|
||||||
|
|
||||||
call = textModules[dep];
|
call = textModules[dep];
|
||||||
|
// if (deps.length > 1)
|
||||||
|
// console.log(call.length)
|
||||||
if (call)
|
if (call)
|
||||||
return " " + call;
|
return " " + call;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
var CommonJsProject = copy.createCommonJsProject({roots:[]}).constructor;
|
|
||||||
CommonJsProject.prototype.getCurrentModules = function() {
|
|
||||||
function isDep(child, parent) {
|
|
||||||
if (!modules[parent])
|
|
||||||
return false;
|
|
||||||
var deps = modules[parent].deps;
|
|
||||||
if (deps[child]) return true;
|
|
||||||
return Object.keys(deps).some(function(x) {
|
|
||||||
return isDep(child, x)
|
|
||||||
});
|
|
||||||
}
|
|
||||||
var depMap = {}, modules = this.currentModules;
|
|
||||||
return Object.keys(this.currentModules).map(function(moduleName) {
|
|
||||||
module = modules[moduleName];
|
|
||||||
module.id = moduleName;
|
|
||||||
module.isSpecial = !/define\(\'[^']*',/.test(module.source);
|
|
||||||
return module;
|
|
||||||
}).sort(function(a, b) {
|
|
||||||
if (a.isSpecial) return -1;
|
|
||||||
if (b.isSpecial) return 1;
|
|
||||||
if (isDep(a.id, b.id)) return -1;
|
|
||||||
if (isDep(b.id, a.id)) return 1;
|
|
||||||
return Object.keys(a.deps).length - Object.keys(b.deps).length || a.id.localeCompare(b.id)
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// TODO: replace with project.clone once it is fixed in dryice
|
// TODO: replace with project.clone once it is fixed in dryice
|
||||||
function cloneProject(project) {
|
function cloneProject(project) {
|
||||||
var clone = copy.createCommonJsProject({
|
var clone = copy.createCommonJsProject({
|
||||||
|
|
@ -620,12 +604,16 @@ function cloneProject(project) {
|
||||||
}
|
}
|
||||||
|
|
||||||
function copyFileSync(srcFile, destFile) {
|
function copyFileSync(srcFile, destFile) {
|
||||||
var BUF_LENGTH = 64*1024;
|
var BUF_LENGTH = 64*1024,
|
||||||
var buf = new Buffer(BUF_LENGTH);
|
buf = new Buffer(BUF_LENGTH),
|
||||||
var bytesRead = BUF_LENGTH;
|
bytesRead = BUF_LENGTH,
|
||||||
var pos = 0;
|
pos = 0,
|
||||||
var fdr = fs.openSync(srcFile, 'r');
|
fdr = null,
|
||||||
var fdw = fs.openSync(destFile, 'w');
|
fdw = null;
|
||||||
|
|
||||||
|
|
||||||
|
fdr = fs.openSync(srcFile, 'r');
|
||||||
|
fdw = fs.openSync(destFile, 'w');
|
||||||
|
|
||||||
while (bytesRead === BUF_LENGTH) {
|
while (bytesRead === BUF_LENGTH) {
|
||||||
bytesRead = fs.readSync(fdr, buf, 0, BUF_LENGTH, pos);
|
bytesRead = fs.readSync(fdr, buf, 0, BUF_LENGTH, pos);
|
||||||
|
|
@ -662,33 +650,23 @@ function namespace(ns) {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
function exportAce(ns, module, requireBase, extModule) {
|
function exportAce(ns, module, requireBase) {
|
||||||
requireBase = requireBase || "window";
|
requireBase = requireBase || "window";
|
||||||
module = module || "ace/ace";
|
module = module || "ace/ace";
|
||||||
return function(text) {
|
return function(text) {
|
||||||
|
|
||||||
var template = function() {
|
var template = function() {
|
||||||
(function() {
|
(function() {
|
||||||
REQUIRE_NS.require(["MODULE"], function(a) {
|
REQUIRE_NS.require(["MODULE"], function(a) {
|
||||||
a && a.config.init(true);
|
a && a.config.init();
|
||||||
if (!window.NS)
|
if (!window.NS)
|
||||||
window.NS = a;
|
window.NS = {};
|
||||||
for (var key in a) if (a.hasOwnProperty(key))
|
for (var key in a) if (a.hasOwnProperty(key))
|
||||||
NS[key] = a[key];
|
NS[key] = a[key];
|
||||||
});
|
});
|
||||||
})();
|
})();
|
||||||
};
|
};
|
||||||
|
|
||||||
if (extModule) {
|
|
||||||
module = extModule;
|
|
||||||
template = function() {
|
|
||||||
(function() {
|
|
||||||
REQUIRE_NS.require(["MODULE"], function() {});
|
|
||||||
})();
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
text = text.replace(/function init\(packaged\) {/, "init(true);$&\n");
|
|
||||||
|
|
||||||
return (text + ";" + template
|
return (text + ";" + template
|
||||||
.toString()
|
.toString()
|
||||||
.replace(/MODULE/g, module)
|
.replace(/MODULE/g, module)
|
||||||
|
|
@ -711,15 +689,6 @@ function updateModes() {
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateThemesModule(themes) {
|
|
||||||
var themelist = [
|
|
||||||
'define(function(require, exports, module) {',
|
|
||||||
'\n\nmodule.exports.themes = ' + JSON.stringify(themes, null, ' '),
|
|
||||||
';\n\n});'
|
|
||||||
].join('');
|
|
||||||
fs.writeFileSync(__dirname + '/lib/ace/ext/themelist_utils/themes.js', themelist, 'utf8');
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!module.parent)
|
if (!module.parent)
|
||||||
main(process.argv);
|
main(process.argv);
|
||||||
else
|
else
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ define(function(require, exports, module) {
|
||||||
|
|
||||||
var oop = require("../lib/oop");
|
var oop = require("../lib/oop");
|
||||||
var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
|
var HtmlHighlightRules = require("./html_highlight_rules").HtmlHighlightRules;
|
||||||
var xmlUtil = require("./xml_util");
|
|
||||||
function pop2(currentState, stack) {
|
function pop2(currentState, stack) {
|
||||||
stack.splice(0, 3);
|
stack.splice(0, 3);
|
||||||
return stack.shift() || "start";
|
return stack.shift() || "start";
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@ define(function(require, exports, module) {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
var oop = require("../lib/oop");
|
var oop = require("../lib/oop");
|
||||||
var xmlUtil = require("./xml_util");
|
|
||||||
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
var TextHighlightRules = require("./text_highlight_rules").TextHighlightRules;
|
||||||
|
|
||||||
var XmlHighlightRules = function(normalize) {
|
var XmlHighlightRules = function(normalize) {
|
||||||
|
|
|
||||||
|
|
@ -1,100 +0,0 @@
|
||||||
/* ***** 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(function(require, exports, module) {
|
|
||||||
"use strict";
|
|
||||||
|
|
||||||
function string(state) {
|
|
||||||
return [{
|
|
||||||
token : "string",
|
|
||||||
regex : '"',
|
|
||||||
next : state + "_qqstring"
|
|
||||||
}, {
|
|
||||||
token : "string",
|
|
||||||
regex : "'",
|
|
||||||
next : state + "_qstring"
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
|
|
||||||
function multiLineString(quote, state) {
|
|
||||||
return [
|
|
||||||
{token : "string", regex : quote, next : state},
|
|
||||||
{
|
|
||||||
token : "constant.language.escape",
|
|
||||||
regex : "(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"
|
|
||||||
},
|
|
||||||
{defaultToken : "string"}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
|
|
||||||
exports.tag = function(states, name, nextState, tagMap) {
|
|
||||||
states[name] = [{
|
|
||||||
token : "text",
|
|
||||||
regex : "\\s+"
|
|
||||||
}, {
|
|
||||||
//token : "meta.tag",
|
|
||||||
|
|
||||||
token : !tagMap ? "meta.tag.tag-name" : function(value) {
|
|
||||||
if (tagMap[value])
|
|
||||||
return "meta.tag.tag-name." + tagMap[value];
|
|
||||||
else
|
|
||||||
return "meta.tag.tag-name";
|
|
||||||
},
|
|
||||||
regex : "[-_a-zA-Z0-9:]+",
|
|
||||||
next : name + "_embed_attribute_list"
|
|
||||||
}, {
|
|
||||||
token: "empty",
|
|
||||||
regex: "",
|
|
||||||
next : name + "_embed_attribute_list"
|
|
||||||
}];
|
|
||||||
|
|
||||||
states[name + "_qstring"] = multiLineString("'", name + "_embed_attribute_list");
|
|
||||||
states[name + "_qqstring"] = multiLineString("\"", name + "_embed_attribute_list");
|
|
||||||
|
|
||||||
states[name + "_embed_attribute_list"] = [{
|
|
||||||
token : "meta.tag.r",
|
|
||||||
regex : "/?>",
|
|
||||||
next : nextState
|
|
||||||
}, {
|
|
||||||
token : "keyword.operator",
|
|
||||||
regex : "="
|
|
||||||
}, {
|
|
||||||
token : "entity.other.attribute-name",
|
|
||||||
regex : "[-_a-zA-Z0-9:]+"
|
|
||||||
}, {
|
|
||||||
token : "constant.numeric", // float
|
|
||||||
regex : "[+-]?\\d+(?:(?:\\.\\d*)?(?:[eE][+-]?\\d+)?)?\\b"
|
|
||||||
}, {
|
|
||||||
token : "text",
|
|
||||||
regex : "\\s+"
|
|
||||||
}].concat(string(name));
|
|
||||||
};
|
|
||||||
|
|
||||||
});
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue