Skip to content

Commit 02e1c03

Browse files
committed
add makefile
1 parent 968ebb1 commit 02e1c03

67 files changed

Lines changed: 244 additions & 7 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
package:
2+
rm -rf build
3+
support/requirejs/build/build.sh build.js

build/ace/BackgroundTokenizer.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
require.def("ace/BackgroundTokenizer", ["ace/lib/oop", "ace/MEventEmitter"], function(i, j) {
25
var h = function(a, c) {
36
this.running = false;

build/ace/Document.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
require.def("ace/Document", ["ace/lib/oop", "ace/lib/lang", "ace/MEventEmitter", "ace/Selection", "ace/mode/Text", "ace/Range"], function(l, i, m, n, o, g) {
25
var j = function(a, b) {
36
this.modified = true;

build/ace/Editor.js

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,39 @@
11
/*
2+
RequireJS text Copyright (c) 2010, The Dojo Foundation All Rights Reserved.
3+
Available via the MIT or new BSD license.
4+
see: http://github.com/jrburke/requirejs for details
5+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
6+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
7+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
8+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
9+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
10+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
11+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
12+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
13+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
14+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
15+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
16+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
17+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
18+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
19+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
20+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
21+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
22+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
23+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
24+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
25+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
26+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
27+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
28+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
29+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
30+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
31+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
32+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
33+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
34+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
35+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
36+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
237
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
338
*/
439
(function() {
@@ -2676,7 +2711,7 @@ require.def("ace/layer/Text", ["ace/lib/oop", "ace/lib/dom", "ace/MEventEmitter"
26762711
this.$computeTabString = function() {
26772712
var i = this.doc.getTabSize();
26782713
if(this.$showInvisibles) {
2679-
i /= 2;
2714+
i = i / 2;
26802715
this.$tabString = "<span class='ace_invisible'>" + (new Array(Math.floor(i))).join("&nbsp;") + this.TAB_CHAR + (new Array(Math.ceil(i) + 1)).join("&nbsp;") + "</span>"
26812716
}else {
26822717
this.$tabString = (new Array(i + 1)).join("&nbsp;")
@@ -3243,7 +3278,7 @@ function(k, f, a, h, i, e, j, c, g, l, m, b) {
32433278
this.textToScreenCoordinates = function(d, n) {
32443279
var o = this.scroller.getBoundingClientRect();
32453280
n = this.padding + Math.round(this.doc.documentToScreenColumn(d, n) * this.characterWidth);
3246-
d *= this.lineHeight;
3281+
d = d * this.lineHeight;
32473282
return{pageX:o.left + n - this.getScrollLeft(), pageY:o.top + d - this.getScrollTop()}
32483283
};
32493284
this.visualizeFocus = function() {
@@ -3370,7 +3405,7 @@ require.def("ace/mode/JavaScript", ["ace/lib/oop", "ace/mode/Text", "ace/Tokeniz
33703405
if(d.length && d[d.length - 1].type == "comment") {
33713406
return m
33723407
}if(c == "start") {
3373-
if(g.match(/^.*[\{\(\[]\s*$/)) {
3408+
if(c = g.match(/^.*[\{\(\[]\s*$/)) {
33743409
m += l
33753410
}
33763411
}else {

build/ace/KeyBinding.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
require.def("ace/KeyBinding", ["ace/lib/core", "ace/lib/event", "ace/conf/keybindings/default_mac", "ace/conf/keybindings/default_win", "ace/PluginManager", "ace/commands/DefaultCommands"], function(m, k, n, o, p) {
25
var l = function(i, g, j) {
36
this.setConfig(j);

build/ace/MEventEmitter.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
if(!require.def) {
25
require.def = require("requireJS-node")(module, require)
36
}require.def("ace/MEventEmitter", ["ace/lib/lang"], function(e) {

build/ace/PluginManager.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
require.def("ace/PluginManager", [], function() {
25
return{commands:{}, registerCommand:function(a, b) {
36
this.commands[a] = b

build/ace/Range.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
require.def("ace/Range", function() {
25
var c = function(a, b, d, e) {
36
this.start = {row:a, column:b};

build/ace/RenderLoop.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
require.def("ace/RenderLoop", function() {
25
var d = function(b) {
36
this.onRender = b;

build/ace/ScrollBar.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
/*
2+
LGPLv3 <http://www.gnu.org/licenses/lgpl-3.0.txt>
3+
*/
14
require.def("ace/ScrollBar", ["ace/lib/oop", "ace/lib/lang", "ace/lib/dom", "ace/lib/event", "ace/MEventEmitter"], function(c, d, e, f, g) {
25
var b = function(a) {
36
this.element = document.createElement("div");

0 commit comments

Comments
 (0)