From 02e1c03bece8557cc7fa412f7b506faa7e21746f Mon Sep 17 00:00:00 2001 From: Fabian Jakobs Date: Thu, 4 Nov 2010 16:45:29 +0100 Subject: [PATCH] add makefile --- Makefile | 3 ++ build/ace/BackgroundTokenizer.js | 3 ++ build/ace/Document.js | 3 ++ build/ace/Editor.js | 41 +++++++++++++++++-- build/ace/KeyBinding.js | 3 ++ build/ace/MEventEmitter.js | 3 ++ build/ace/PluginManager.js | 3 ++ build/ace/Range.js | 3 ++ build/ace/RenderLoop.js | 3 ++ build/ace/ScrollBar.js | 3 ++ build/ace/Search.js | 3 ++ build/ace/Selection.js | 3 ++ build/ace/TextInput.js | 3 ++ build/ace/Tokenizer.js | 3 ++ build/ace/UndoManager.js | 3 ++ build/ace/VirtualRenderer.js | 5 ++- build/ace/commands/DefaultCommands.js | 3 ++ build/ace/conf/keybindings/default_mac.js | 3 ++ build/ace/conf/keybindings/default_win.js | 3 ++ build/ace/layer/Cursor.js | 3 ++ build/ace/layer/Gutter.js | 3 ++ build/ace/layer/Marker.js | 3 ++ build/ace/layer/Text.js | 5 ++- build/ace/lib/core.js | 3 ++ build/ace/lib/dom.js | 3 ++ build/ace/lib/event.js | 3 ++ build/ace/lib/lang.js | 3 ++ build/ace/lib/oop.js | 3 ++ build/ace/mode/Css.js | 2 + build/ace/mode/CssHighlightRules.js | 3 ++ build/ace/mode/DocCommentHighlightRules.js | 3 ++ build/ace/mode/Html.js | 1 + build/ace/mode/HtmlHighlightRules.js | 3 ++ build/ace/mode/JavaScript.js | 5 ++- build/ace/mode/JavaScriptHighlightRules.js | 3 ++ build/ace/mode/MatchingBraceOutdent.js | 3 ++ build/ace/mode/Text.js | 3 ++ build/ace/mode/TextHighlightRules.js | 3 ++ build/ace/mode/Xml.js | 1 + build/ace/mode/XmlHighlightRules.js | 3 ++ build/ace/test/ChangeDocumentTest.js | 3 ++ build/ace/test/DocumentTest.js | 3 ++ build/ace/test/EventEmitterTest.js | 3 ++ build/ace/test/MockRenderer.js | 3 ++ build/ace/test/NavigationTest.js | 3 ++ build/ace/test/RangeTest.js | 3 ++ build/ace/test/SearchTest.js | 3 ++ build/ace/test/SelectionTest.js | 3 ++ build/ace/test/TextEditTest.js | 3 ++ build/ace/test/VirtualRendererTest.js | 3 ++ build/ace/test/assertions.js | 3 ++ build/ace/test/mode/CssTest.js | 3 ++ build/ace/test/mode/CssTokenizerTest.js | 3 ++ build/ace/test/mode/HtmlTest.js | 3 ++ build/ace/test/mode/HtmlTokenizerTest.js | 3 ++ build/ace/test/mode/JavaScriptTest.js | 3 ++ .../ace/test/mode/JavaScriptTokenizerTest.js | 3 ++ build/ace/test/mode/TextTest.js | 3 ++ build/ace/test/mode/XmlTest.js | 3 ++ build/ace/test/mode/XmlTokenizerTest.js | 3 ++ build/ace/theme/Eclipse.js | 2 +- build/require/i18n.js | 5 +++ build/require/jsonp.js | 5 +++ build/require/order.js | 5 +++ build/require/rhino.js | 5 +++ build/require/text.js | 5 +++ build/require/transportD.js | 5 +++ 67 files changed, 244 insertions(+), 7 deletions(-) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..82e66a2c --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +package: + rm -rf build + support/requirejs/build/build.sh build.js diff --git a/build/ace/BackgroundTokenizer.js b/build/ace/BackgroundTokenizer.js index daab6732..57711cbe 100644 --- a/build/ace/BackgroundTokenizer.js +++ b/build/ace/BackgroundTokenizer.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/BackgroundTokenizer", ["ace/lib/oop", "ace/MEventEmitter"], function(i, j) { var h = function(a, c) { this.running = false; diff --git a/build/ace/Document.js b/build/ace/Document.js index eccc81a9..b4400664 100644 --- a/build/ace/Document.js +++ b/build/ace/Document.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ 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) { var j = function(a, b) { this.modified = true; diff --git a/build/ace/Editor.js b/build/ace/Editor.js index 05b07bf1..6eba462a 100644 --- a/build/ace/Editor.js +++ b/build/ace/Editor.js @@ -1,4 +1,39 @@ /* + RequireJS text Copyright (c) 2010, The Dojo Foundation All Rights Reserved. + Available via the MIT or new BSD license. + see: http://github.com/jrburke/requirejs for details + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 + LGPLv3 LGPLv3 */ (function() { @@ -2676,7 +2711,7 @@ require.def("ace/layer/Text", ["ace/lib/oop", "ace/lib/dom", "ace/MEventEmitter" this.$computeTabString = function() { var i = this.doc.getTabSize(); if(this.$showInvisibles) { - i /= 2; + i = i / 2; this.$tabString = "" + (new Array(Math.floor(i))).join(" ") + this.TAB_CHAR + (new Array(Math.ceil(i) + 1)).join(" ") + "" }else { this.$tabString = (new Array(i + 1)).join(" ") @@ -3243,7 +3278,7 @@ function(k, f, a, h, i, e, j, c, g, l, m, b) { this.textToScreenCoordinates = function(d, n) { var o = this.scroller.getBoundingClientRect(); n = this.padding + Math.round(this.doc.documentToScreenColumn(d, n) * this.characterWidth); - d *= this.lineHeight; + d = d * this.lineHeight; return{pageX:o.left + n - this.getScrollLeft(), pageY:o.top + d - this.getScrollTop()} }; this.visualizeFocus = function() { @@ -3370,7 +3405,7 @@ require.def("ace/mode/JavaScript", ["ace/lib/oop", "ace/mode/Text", "ace/Tokeniz if(d.length && d[d.length - 1].type == "comment") { return m }if(c == "start") { - if(g.match(/^.*[\{\(\[]\s*$/)) { + if(c = g.match(/^.*[\{\(\[]\s*$/)) { m += l } }else { diff --git a/build/ace/KeyBinding.js b/build/ace/KeyBinding.js index 92b38426..630b8b96 100644 --- a/build/ace/KeyBinding.js +++ b/build/ace/KeyBinding.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ 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) { var l = function(i, g, j) { this.setConfig(j); diff --git a/build/ace/MEventEmitter.js b/build/ace/MEventEmitter.js index 2238b0f0..488095fa 100644 --- a/build/ace/MEventEmitter.js +++ b/build/ace/MEventEmitter.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ if(!require.def) { require.def = require("requireJS-node")(module, require) }require.def("ace/MEventEmitter", ["ace/lib/lang"], function(e) { diff --git a/build/ace/PluginManager.js b/build/ace/PluginManager.js index 2a5a6d65..0378800b 100644 --- a/build/ace/PluginManager.js +++ b/build/ace/PluginManager.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/PluginManager", [], function() { return{commands:{}, registerCommand:function(a, b) { this.commands[a] = b diff --git a/build/ace/Range.js b/build/ace/Range.js index f7004437..e3268974 100644 --- a/build/ace/Range.js +++ b/build/ace/Range.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/Range", function() { var c = function(a, b, d, e) { this.start = {row:a, column:b}; diff --git a/build/ace/RenderLoop.js b/build/ace/RenderLoop.js index 147bdb5f..0d7ed9b1 100644 --- a/build/ace/RenderLoop.js +++ b/build/ace/RenderLoop.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/RenderLoop", function() { var d = function(b) { this.onRender = b; diff --git a/build/ace/ScrollBar.js b/build/ace/ScrollBar.js index b75a8cbf..8d5cee59 100644 --- a/build/ace/ScrollBar.js +++ b/build/ace/ScrollBar.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/ScrollBar", ["ace/lib/oop", "ace/lib/lang", "ace/lib/dom", "ace/lib/event", "ace/MEventEmitter"], function(c, d, e, f, g) { var b = function(a) { this.element = document.createElement("div"); diff --git a/build/ace/Search.js b/build/ace/Search.js index 39d7d591..a8c334c3 100644 --- a/build/ace/Search.js +++ b/build/ace/Search.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/Search", ["ace/lib/lang", "ace/lib/oop", "ace/Range"], function(o, q, r) { var l = function() { this.$options = {needle:"", backwards:false, wrap:false, caseSensitive:false, wholeWord:false, scope:l.ALL, regExp:false} diff --git a/build/ace/Selection.js b/build/ace/Selection.js index 23e7a8e3..b401b0e4 100644 --- a/build/ace/Selection.js +++ b/build/ace/Selection.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/Selection", ["ace/lib/oop", "ace/lib/lang", "ace/MEventEmitter", "ace/Range"], function(g, h, i, e) { var f = function(a) { this.doc = a; diff --git a/build/ace/TextInput.js b/build/ace/TextInput.js index 10027f25..e34a8351 100644 --- a/build/ace/TextInput.js +++ b/build/ace/TextInput.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/TextInput", ["ace/lib/event"], function(b) { return function(l, c) { function e() { diff --git a/build/ace/Tokenizer.js b/build/ace/Tokenizer.js index 864ed739..c651721a 100644 --- a/build/ace/Tokenizer.js +++ b/build/ace/Tokenizer.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/Tokenizer", [], function() { var k = function(f) { this.rules = f; diff --git a/build/ace/UndoManager.js b/build/ace/UndoManager.js index 9db6a766..e7b54308 100644 --- a/build/ace/UndoManager.js +++ b/build/ace/UndoManager.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/UndoManager", function() { var b = function() { this.$undoStack = []; diff --git a/build/ace/VirtualRenderer.js b/build/ace/VirtualRenderer.js index f73941b0..07b07452 100644 --- a/build/ace/VirtualRenderer.js +++ b/build/ace/VirtualRenderer.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/VirtualRenderer", ["ace/lib/oop", "ace/lib/lang", "ace/lib/dom", "ace/lib/event", "ace/layer/Gutter", "ace/layer/Marker", "ace/layer/Text", "ace/layer/Cursor", "ace/ScrollBar", "ace/RenderLoop", "ace/MEventEmitter", 'text!ace/css/editor.css!.ace_editor {\n position: absolute;\n overflow: hidden;\n\n font-family: "Menlo", "Monaco", "Courier New", monospace;\n font-size: 12px; \n}\n\n.ace_scroller {\n position: absolute;\n overflow-x: scroll;\n overflow-y: hidden; \n}\n\n.ace_gutter {\n position: absolute;\n overflow-x: hidden;\n overflow-y: hidden;\n height: 100%;\n}\n\n.ace_editor .ace_sb {\n position: absolute;\n overflow-x: hidden;\n overflow-y: scroll;\n right: 0;\n}\n\n.ace_editor .ace_sb div {\n position: absolute;\n width: 1px;\n left: 0px;\n}\n\n.ace_editor .ace_printMargin {\n position: absolute;\n height: 100%;\n}\n\n.ace_layer {\n z-index: 0;\n position: absolute;\n overflow: hidden; \n white-space: nowrap;\n height: 100%;\n}\n\n.ace_text-layer {\n font-family: Monaco, "Courier New", monospace;\n color: black;\n}\n\n.ace_cursor-layer {\n cursor: text;\n}\n\n.ace_cursor {\n z-index: 3;\n position: absolute;\n}\n\n.ace_line {\n white-space: nowrap;\n}\n\n.ace_marker-layer {\n}\n\n.ace_marker-layer .ace_step {\n position: absolute;\n z-index: 2;\n}\n\n.ace_marker-layer .ace_selection {\n position: absolute;\n z-index: 3;\n}\n\n.ace_marker-layer .ace_bracket {\n position: absolute;\n z-index: 4;\n}\n\n.ace_marker-layer .ace_active_line {\n position: absolute;\n z-index: 1;\n}'], function(k, h, e, i, l, m, n, o, p, q, r, j) { e.importCssString(j); @@ -335,7 +338,7 @@ function(k, h, e, i, l, m, n, o, p, q, r, j) { this.textToScreenCoordinates = function(a, b) { var c = this.scroller.getBoundingClientRect(); b = this.padding + Math.round(this.doc.documentToScreenColumn(a, b) * this.characterWidth); - a *= this.lineHeight; + a = a * this.lineHeight; return{pageX:c.left + b - this.getScrollLeft(), pageY:c.top + a - this.getScrollTop()} }; this.visualizeFocus = function() { diff --git a/build/ace/commands/DefaultCommands.js b/build/ace/commands/DefaultCommands.js index b6d6c150..263d0aa4 100644 --- a/build/ace/commands/DefaultCommands.js +++ b/build/ace/commands/DefaultCommands.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/commands/DefaultCommands", ["ace/PluginManager"], function(b) { b.registerCommand("selectall", function(a, c) { c.selectAll() diff --git a/build/ace/conf/keybindings/default_mac.js b/build/ace/conf/keybindings/default_mac.js index 6c665156..bedb40f1 100644 --- a/build/ace/conf/keybindings/default_mac.js +++ b/build/ace/conf/keybindings/default_mac.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/conf/keybindings/default_mac", function() { return{selectall:"Command-A", removeline:"Command-D", gotoline:"Command-L", togglecomment:"Command-7", findnext:"Command-K", findprevious:"Command-Shift-K", find:"Command-F", replace:"Command-R", undo:"Command-Z", redo:"Command-Shift-Z|Command-Y", overwrite:"Insert", copylinesup:"Command-Option-Up", movelinesup:"Option-Up", selecttostart:"Command-Shift-Up", gotostart:"Command-Home|Command-Up", selectup:"Shift-Up", golineup:"Up", copylinesdown:"Command-Option-Down", movelinesdown:"Option-Down", selecttoend:"Command-Shift-Down", gotoend:"Command-End|Command-Down", selectdown:"Shift-Down", godown:"Down", selectwordleft:"Option-Shift-Left", gotowordleft:"Option-Left", selecttolinestart:"Command-Shift-Left", gotolinestart:"Command-Left|Home", selectleft:"Shift-Left", gotoleft:"Left", selectwordright:"Option-Shift-Right", gotowordright:"Option-Right", selecttolineend:"Command-Shift-Right", gotolineend:"Command-Right|End", selectright:"Shift-Right", gotoright:"Right", selectpagedown:"Shift-PageDown", diff --git a/build/ace/conf/keybindings/default_win.js b/build/ace/conf/keybindings/default_win.js index 2650f0da..bcec8dd3 100644 --- a/build/ace/conf/keybindings/default_win.js +++ b/build/ace/conf/keybindings/default_win.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/conf/keybindings/default_win", function() { return{selectall:"Ctrl-A", removeline:"Ctrl-D", gotoline:"Ctrl-L", togglecomment:"Ctrl-7", findnext:"Ctrl-K", findprevious:"Ctrl-Shift-K", find:"Ctrl-F", replace:"Ctrl-R", undo:"Ctrl-Z", redo:"Ctrl-Shift-Z|Ctrl-Y", overwrite:"Insert", copylinesup:"Ctrl-Alt-Up", movelinesup:"Alt-Up", selecttostart:"Ctrl-Shift-Up", gotostart:"Ctrl-Home|Ctrl-Up", selectup:"Shift-Up", golineup:"Up", copylinesdown:"Ctrl-Alt-Down", movelinesdown:"Alt-Down", selecttoend:"Ctrl-Shift-Down", gotoend:"Ctrl-End|Ctrl-Down", selectdown:"Shift-Down", godown:"Down", selectwordleft:"Alt-Shift-Left", gotowordleft:"Alt-Left", selecttolinestart:"Ctrl-Shift-Left", gotolinestart:"Ctrl-Left|Home", selectleft:"Shift-Left", gotoleft:"Left", selectwordright:"Alt-Shift-Right", gotowordright:"Alt-Right", selecttolineend:"Ctrl-Shift-Right", gotolineend:"Ctrl-Right|End", selectright:"Shift-Right", gotoright:"Right", selectpagedown:"Shift-PageDown", pagedown:"PageDown", selectpageup:"Shift-PageUp", pageup:"PageUp", selectlinestart:"Shift-Home", diff --git a/build/ace/layer/Cursor.js b/build/ace/layer/Cursor.js index e22033b5..433092f9 100644 --- a/build/ace/layer/Cursor.js +++ b/build/ace/layer/Cursor.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/layer/Cursor", ["ace/lib/dom"], function(c) { var d = function(a) { this.element = document.createElement("div"); diff --git a/build/ace/layer/Gutter.js b/build/ace/layer/Gutter.js index 9ca9a44b..8848d2f9 100644 --- a/build/ace/layer/Gutter.js +++ b/build/ace/layer/Gutter.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/layer/Gutter", [], function() { var d = function(a) { this.element = document.createElement("div"); diff --git a/build/ace/layer/Marker.js b/build/ace/layer/Marker.js index f3c679cc..35038256 100644 --- a/build/ace/layer/Marker.js +++ b/build/ace/layer/Marker.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/layer/Marker", ["ace/Range"], function(h) { var i = function(c) { this.element = document.createElement("div"); diff --git a/build/ace/layer/Text.js b/build/ace/layer/Text.js index ced02a51..a38df019 100644 --- a/build/ace/layer/Text.js +++ b/build/ace/layer/Text.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/layer/Text", ["ace/lib/oop", "ace/lib/dom", "ace/MEventEmitter"], function(m, n, o) { var k = function(a) { this.element = document.createElement("div"); @@ -58,7 +61,7 @@ require.def("ace/layer/Text", ["ace/lib/oop", "ace/lib/dom", "ace/MEventEmitter" this.$computeTabString = function() { var a = this.doc.getTabSize(); if(this.$showInvisibles) { - a /= 2; + a = a / 2; this.$tabString = "" + (new Array(Math.floor(a))).join(" ") + this.TAB_CHAR + (new Array(Math.ceil(a) + 1)).join(" ") + "" }else { this.$tabString = (new Array(a + 1)).join(" ") diff --git a/build/ace/lib/core.js b/build/ace/lib/core.js index 34ad9edb..de0d02e6 100644 --- a/build/ace/lib/core.js +++ b/build/ace/lib/core.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ if(!require.def) { require.def = require("requireJS-node")(module, require) }require.def("ace/lib/core", function() { diff --git a/build/ace/lib/dom.js b/build/ace/lib/dom.js index c1b4be91..b8a6919f 100644 --- a/build/ace/lib/dom.js +++ b/build/ace/lib/dom.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ if(!require.def) { require.def = require("requireJS-node")(module, require) }require.def("ace/lib/dom", ["ace/lib/lang"], function(f) { diff --git a/build/ace/lib/event.js b/build/ace/lib/event.js index a8a16dae..d53e9a5d 100644 --- a/build/ace/lib/event.js +++ b/build/ace/lib/event.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ if(!require.def) { require.def = require("requireJS-node")(module, require) }require.def("ace/lib/event", ["ace/lib/core"], function(i) { diff --git a/build/ace/lib/lang.js b/build/ace/lib/lang.js index 8179e523..186c175d 100644 --- a/build/ace/lib/lang.js +++ b/build/ace/lib/lang.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ if(!require.def) { require.def = require("requireJS-node")(module, require) }require.def("ace/lib/lang", function() { diff --git a/build/ace/lib/oop.js b/build/ace/lib/oop.js index 6b13344d..6bb3fd09 100644 --- a/build/ace/lib/oop.js +++ b/build/ace/lib/oop.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ if(!require.def) { require.def = require("requireJS-node")(module, require) }require.def("ace/lib/oop", function() { diff --git a/build/ace/mode/Css.js b/build/ace/mode/Css.js index 655c8a26..dadcb7eb 100644 --- a/build/ace/mode/Css.js +++ b/build/ace/mode/Css.js @@ -1,5 +1,7 @@ /* LGPLv3 + LGPLv3 + LGPLv3 */ require.def("ace/mode/CssHighlightRules", ["ace/lib/oop", "ace/lib/lang", "ace/mode/TextHighlightRules"], function(j, f, b) { var e = function() { diff --git a/build/ace/mode/CssHighlightRules.js b/build/ace/mode/CssHighlightRules.js index fd4ded86..1773ce2a 100644 --- a/build/ace/mode/CssHighlightRules.js +++ b/build/ace/mode/CssHighlightRules.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/CssHighlightRules", ["ace/lib/oop", "ace/lib/lang", "ace/mode/TextHighlightRules"], function(g, c, h) { var f = function() { function a(b) { diff --git a/build/ace/mode/DocCommentHighlightRules.js b/build/ace/mode/DocCommentHighlightRules.js index 989753ae..f85873bb 100644 --- a/build/ace/mode/DocCommentHighlightRules.js +++ b/build/ace/mode/DocCommentHighlightRules.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/DocCommentHighlightRules", ["ace/lib/oop", "ace/mode/TextHighlightRules"], function(b, c) { var a = function() { this.$rules = {start:[{token:"comment.doc", regex:"\\*\\/", next:"start"}, {token:"comment.doc.tag", regex:"@[\\w\\d_]+"}, {token:"comment.doc", regex:"s+"}, {token:"comment.doc", regex:"[^@\\*]+"}, {token:"comment.doc", regex:"."}]} diff --git a/build/ace/mode/Html.js b/build/ace/mode/Html.js index 22637317..5c75edf2 100644 --- a/build/ace/mode/Html.js +++ b/build/ace/mode/Html.js @@ -1,5 +1,6 @@ /* LGPLv3 + LGPLv3 */ require.def("ace/mode/HtmlHighlightRules", ["ace/lib/oop", "ace/mode/CssHighlightRules", "ace/mode/JavaScriptHighlightRules", "ace/mode/TextHighlightRules"], function(e, f, g, h) { var c = function() { diff --git a/build/ace/mode/HtmlHighlightRules.js b/build/ace/mode/HtmlHighlightRules.js index 6f26146f..b3257846 100644 --- a/build/ace/mode/HtmlHighlightRules.js +++ b/build/ace/mode/HtmlHighlightRules.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/HtmlHighlightRules", ["ace/lib/oop", "ace/mode/CssHighlightRules", "ace/mode/JavaScriptHighlightRules", "ace/mode/TextHighlightRules"], function(b, c, d, e) { var a = function() { this.$rules = {start:[{token:"text", regex:"<\\!\\[CDATA\\[", next:"cdata"}, {token:"xml_pe", regex:"<\\?.*?\\?>"}, {token:"comment", regex:"<\\!--", next:"comment"}, {token:"text", regex:"<(?=s*script)", next:"script"}, {token:"text", regex:"<(?=s*style)", next:"css"}, {token:"text", regex:"<\\/?", next:"tag"}, {token:"text", regex:"\\s+"}, {token:"text", regex:"[^<]+"}], script:[{token:"text", regex:">", next:"js-start"}, {token:"keyword", regex:"[-_a-zA-Z0-9:]+"}, {token:"text", regex:"\\s+"}, diff --git a/build/ace/mode/JavaScript.js b/build/ace/mode/JavaScript.js index a253fe46..a4bceb82 100644 --- a/build/ace/mode/JavaScript.js +++ b/build/ace/mode/JavaScript.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/JavaScript", ["ace/lib/oop", "ace/mode/Text", "ace/Tokenizer", "ace/mode/JavaScriptHighlightRules", "ace/mode/MatchingBraceOutdent", "ace/Range"], function(h, i, j, k, l, m) { var g = function() { this.$tokenizer = new j((new k).getRules()); @@ -32,7 +35,7 @@ require.def("ace/mode/JavaScript", ["ace/lib/oop", "ace/mode/Text", "ace/Tokeniz if(f.length && f[f.length - 1].type == "comment") { return c }if(d == "start") { - if(b.match(/^.*[\{\(\[]\s*$/)) { + if(d = b.match(/^.*[\{\(\[]\s*$/)) { c += e } }else { diff --git a/build/ace/mode/JavaScriptHighlightRules.js b/build/ace/mode/JavaScriptHighlightRules.js index 38352948..18ae6f17 100644 --- a/build/ace/mode/JavaScriptHighlightRules.js +++ b/build/ace/mode/JavaScriptHighlightRules.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/JavaScriptHighlightRules", ["ace/lib/oop", "ace/lib/lang", "ace/mode/DocCommentHighlightRules", "ace/mode/TextHighlightRules"], function(d, b, e, f) { JavaScriptHighlightRules = function() { var c = new e, g = b.arrayToMap("break|case|catch|continue|default|delete|do|else|finally|for|function|if|in|instanceof|new|return|switch|throw|try|typeof|var|while|with".split("|")), h = b.arrayToMap("true|false|null|undefined|Infinity|NaN|undefined".split("|")), i = b.arrayToMap("abstract|boolean|byte|char|class|const|enum|export|extends|final|float|goto|implements|int|interface|long|native|package|private|protected|short|static|super|synchronized|throws|transient|volatiledouble|import|public".split("|")); diff --git a/build/ace/mode/MatchingBraceOutdent.js b/build/ace/mode/MatchingBraceOutdent.js index 02258f1c..d2cc35e5 100644 --- a/build/ace/mode/MatchingBraceOutdent.js +++ b/build/ace/mode/MatchingBraceOutdent.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/MatchingBraceOutdent", ["ace/Range"], function(f) { var e = function() { }; diff --git a/build/ace/mode/Text.js b/build/ace/mode/Text.js index d29784dc..0a665da4 100644 --- a/build/ace/mode/Text.js +++ b/build/ace/mode/Text.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/Text", ["ace/Tokenizer", "ace/mode/TextHighlightRules"], function(c, d) { var b = function() { this.$tokenizer = new c((new d).getRules()) diff --git a/build/ace/mode/TextHighlightRules.js b/build/ace/mode/TextHighlightRules.js index ca66f6f9..31d047c9 100644 --- a/build/ace/mode/TextHighlightRules.js +++ b/build/ace/mode/TextHighlightRules.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/TextHighlightRules", [], function() { var f = function() { this.$rules = {start:[{token:"text", regex:".+"}]} diff --git a/build/ace/mode/Xml.js b/build/ace/mode/Xml.js index 1690adef..d56249da 100644 --- a/build/ace/mode/Xml.js +++ b/build/ace/mode/Xml.js @@ -1,5 +1,6 @@ /* LGPLv3 + LGPLv3 */ require.def("ace/mode/XmlHighlightRules", ["ace/lib/oop", "ace/mode/TextHighlightRules"], function(b, c) { var a = function() { diff --git a/build/ace/mode/XmlHighlightRules.js b/build/ace/mode/XmlHighlightRules.js index 554abe05..8969598a 100644 --- a/build/ace/mode/XmlHighlightRules.js +++ b/build/ace/mode/XmlHighlightRules.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def("ace/mode/XmlHighlightRules", ["ace/lib/oop", "ace/mode/TextHighlightRules"], function(b, c) { var a = function() { this.$rules = {start:[{token:"text", regex:"<\\!\\[CDATA\\[", next:"cdata"}, {token:"xml_pe", regex:"<\\?.*?\\?>"}, {token:"comment", regex:"<\\!--", next:"comment"}, {token:"text", regex:"<\\/?", next:"tag"}, {token:"text", regex:"\\s+"}, {token:"text", regex:"[^<]+"}], tag:[{token:"text", regex:">", next:"start"}, {token:"keyword", regex:"[-_a-zA-Z0-9:]+"}, {token:"text", regex:"\\s+"}, {token:"string", regex:'".*?"'}, {token:"string", regex:"'.*?'"}], cdata:[{token:"text", regex:"\\]\\]>", diff --git a/build/ace/test/ChangeDocumentTest.js b/build/ace/test/ChangeDocumentTest.js index 0ca28513..afd3d113 100644 --- a/build/ace/test/ChangeDocumentTest.js +++ b/build/ace/test/ChangeDocumentTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Editor", "ace/mode/Text", "ace/mode/JavaScript", "ace/test/MockRenderer"], function(b, c, f, d, e) { new TestCase("ChangeDocumentTest", {setUp:function() { this.doc1 = new b("abc\ndef"); diff --git a/build/ace/test/DocumentTest.js b/build/ace/test/DocumentTest.js index 96ea71b1..c9e44b04 100644 --- a/build/ace/test/DocumentTest.js +++ b/build/ace/test/DocumentTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/UndoManager", "ace/Editor", "ace/test/MockRenderer"], function(b, h, i, j) { new TestCase("TextDocumentTest", {"test: find matching opening bracket":function() { var a = new b(["(()(", "())))"]); diff --git a/build/ace/test/EventEmitterTest.js b/build/ace/test/EventEmitterTest.js index 04988647..5b91cdfa 100644 --- a/build/ace/test/EventEmitterTest.js +++ b/build/ace/test/EventEmitterTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/lib/oop", "ace/MEventEmitter"], function(d, e) { var a = function() { }; diff --git a/build/ace/test/MockRenderer.js b/build/ace/test/MockRenderer.js index bea533b1..80df09eb 100644 --- a/build/ace/test/MockRenderer.js +++ b/build/ace/test/MockRenderer.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def([], function() { MockRenderer = function(a) { this.container = document.createElement("div"); diff --git a/build/ace/test/NavigationTest.js b/build/ace/test/NavigationTest.js index f58de436..7a33ea4d 100644 --- a/build/ace/test/NavigationTest.js +++ b/build/ace/test/NavigationTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Editor", "ace/test/MockRenderer"], function(e, c, d) { TestCase("NavigationTest", {createTextDocument:function(a, b) { b = (new Array(b + 1)).join("a"); diff --git a/build/ace/test/RangeTest.js b/build/ace/test/RangeTest.js index 8180b6c5..56243724 100644 --- a/build/ace/test/RangeTest.js +++ b/build/ace/test/RangeTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Range"], function(b) { RangeTest = new TestCase("RangeTest", {"test: create range":function() { var a = new b(1, 2, 3, 4); diff --git a/build/ace/test/SearchTest.js b/build/ace/test/SearchTest.js index a85c847f..83494e64 100644 --- a/build/ace/test/SearchTest.js +++ b/build/ace/test/SearchTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Search"], function(c, b) { new TestCase("SearchTest", {"test: configure the search object":function() { (new b).set({needle:"juhu", scope:b.ALL}) diff --git a/build/ace/test/SelectionTest.js b/build/ace/test/SelectionTest.js index 67909201..18170315 100644 --- a/build/ace/test/SelectionTest.js +++ b/build/ace/test/SelectionTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document"], function(c) { TestCase("SelectionTest", {createTextDocument:function(a, b) { b = (new Array(b + 1)).join("a"); diff --git a/build/ace/test/TextEditTest.js b/build/ace/test/TextEditTest.js index e19bef66..f69ce6f4 100644 --- a/build/ace/test/TextEditTest.js +++ b/build/ace/test/TextEditTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Editor", "ace/mode/JavaScript", "ace/test/MockRenderer"], function(c, d, g, e) { TestCase("TextEditTest", {"test: delete line from the middle":function() { var b = new c("a\nb\nc\nd"), a = new d(new e, b); diff --git a/build/ace/test/VirtualRendererTest.js b/build/ace/test/VirtualRendererTest.js index c9a901f0..8c3a51c3 100644 --- a/build/ace/test/VirtualRendererTest.js +++ b/build/ace/test/VirtualRendererTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/VirtualRenderer"], function(c, d) { new TestCase("VirtualRendererTest", {"test: screen2text the column should be rounded to the next character edge":function() { var b = document.createElement("div"); diff --git a/build/ace/test/assertions.js b/build/ace/test/assertions.js index 695f31e3..c7c5eefa 100644 --- a/build/ace/test/assertions.js +++ b/build/ace/test/assertions.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def([], function() { window.assertPosition = function(a, b, c) { assertEquals(a, c.row); diff --git a/build/ace/test/mode/CssTest.js b/build/ace/test/mode/CssTest.js index a932861b..d2a1eef8 100644 --- a/build/ace/test/mode/CssTest.js +++ b/build/ace/test/mode/CssTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Range", "ace/mode/Css"], function(b, c, d) { new TestCase("mode.CssTest", {setUp:function() { this.mode = new d diff --git a/build/ace/test/mode/CssTokenizerTest.js b/build/ace/test/mode/CssTokenizerTest.js index 794252ec..759dfb95 100644 --- a/build/ace/test/mode/CssTokenizerTest.js +++ b/build/ace/test/mode/CssTokenizerTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/mode/Css"], function(b) { new TestCase("mode.CssTest", {setUp:function() { this.tokenizer = (new b).getTokenizer() diff --git a/build/ace/test/mode/HtmlTest.js b/build/ace/test/mode/HtmlTest.js index 29658521..2af56ba6 100644 --- a/build/ace/test/mode/HtmlTest.js +++ b/build/ace/test/mode/HtmlTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Range", "ace/mode/Html"], function(b, c, d) { new TestCase("mode.HtmlTest", {setUp:function() { this.mode = new d diff --git a/build/ace/test/mode/HtmlTokenizerTest.js b/build/ace/test/mode/HtmlTokenizerTest.js index 3a917b32..3ed6b4b2 100644 --- a/build/ace/test/mode/HtmlTokenizerTest.js +++ b/build/ace/test/mode/HtmlTokenizerTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/mode/Html"], function(b) { new TestCase("mode.HtmlTest", {setUp:function() { this.tokenizer = (new b).getTokenizer() diff --git a/build/ace/test/mode/JavaScriptTest.js b/build/ace/test/mode/JavaScriptTest.js index c69dc658..ec27d63d 100644 --- a/build/ace/test/mode/JavaScriptTest.js +++ b/build/ace/test/mode/JavaScriptTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Range", "ace/Tokenizer", "ace/mode/JavaScript"], function(c, d, e, f) { new TestCase("mode.JavaScriptTest", {setUp:function() { this.mode = new f diff --git a/build/ace/test/mode/JavaScriptTokenizerTest.js b/build/ace/test/mode/JavaScriptTokenizerTest.js index ffd72026..8a4676f0 100644 --- a/build/ace/test/mode/JavaScriptTokenizerTest.js +++ b/build/ace/test/mode/JavaScriptTokenizerTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/mode/JavaScript"], function(b) { new TestCase("mode.JavaScriptTokenizerTest", {setUp:function() { this.tokenizer = (new b).getTokenizer() diff --git a/build/ace/test/mode/TextTest.js b/build/ace/test/mode/TextTest.js index 36a29819..c252bdad 100644 --- a/build/ace/test/mode/TextTest.js +++ b/build/ace/test/mode/TextTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Range", "ace/mode/Text"], function(b, c, d) { new TestCase("mode.TextTest", {setUp:function() { this.mode = new d diff --git a/build/ace/test/mode/XmlTest.js b/build/ace/test/mode/XmlTest.js index 6234e140..57a96024 100644 --- a/build/ace/test/mode/XmlTest.js +++ b/build/ace/test/mode/XmlTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/Document", "ace/Range", "ace/Tokenizer", "ace/mode/Xml"], function(b, c, d, e) { new TestCase("mode.XmlTest", {setUp:function() { this.mode = new e diff --git a/build/ace/test/mode/XmlTokenizerTest.js b/build/ace/test/mode/XmlTokenizerTest.js index c2f6eca4..7fe16311 100644 --- a/build/ace/test/mode/XmlTokenizerTest.js +++ b/build/ace/test/mode/XmlTokenizerTest.js @@ -1,3 +1,6 @@ +/* + LGPLv3 +*/ require.def(["ace/mode/Xml"], function(b) { new TestCase("mode.XmlTest", {setUp:function() { this.tokenizer = (new b).getTokenizer() diff --git a/build/ace/theme/Eclipse.js b/build/ace/theme/Eclipse.js index 6c110aef..4d887a5f 100644 --- a/build/ace/theme/Eclipse.js +++ b/build/ace/theme/Eclipse.js @@ -1,4 +1,4 @@ -require.def("ace/theme/Eclipse", ["ace/lib/dom", "text!ace/theme/eclipse.css!.ace-eclipse .ace_editor {\n border: 2px solid rgb(159, 159, 159);\n}\n.ace-eclipse .ace_editor.ace_focus {\n border: 2px solid #327fbd;\n}\n.ace-eclipse .ace_gutter {\n width: 40px;\n background: rgb(227, 227, 227);\n border-right: 1px solid rgb(159, 159, 159);\t \n color: rgb(136, 136, 136);\n}\n.ace-eclipse .ace_gutter-layer {\n right: 10px;\n text-align: right;\n}\n.ace-eclipse .ace_text-layer {\n cursor: text;\n}\n.ace-eclipse .ace_cursor {\n border-left: 1px solid black;\n}\n.ace-eclipse .ace_line .ace_keyword, .ace-eclipse .ace_line .ace_variable {\n color: rgb(127, 0, 85);\n}\n.ace-eclipse .ace_line .ace_constant.ace_buildin {\n color: rgb(88, 72, 246);\n}\n.ace-eclipse .ace_line .ace_constant.ace_library {\n color: rgb(6, 150, 14);\n}\n.ace-eclipse .ace_line .ace_function {\n color: rgb(60, 76, 114);\n}\n.ace-eclipse .ace_line .ace_string {\n color: rgb(42, 0, 255);\n}\n.ace-eclipse .ace_line .ace_comment {\n color: rgb(63, 127, 95);\n}\n.ace-eclipse .ace_line .ace_comment.ace_doc {\n color: rgb(63, 95, 191);\n}\n.ace-eclipse .ace_line .ace_comment.ace_doc.ace_tag {\n color: rgb(127, 159, 191);\n}\n.ace-eclipse .ace_line .ace_constant.ace_numeric {\n}\n.ace-eclipse .ace_line .ace_tag {\n\tcolor: rgb(63, 127, 127);\n}\n.ace-eclipse .ace_line .ace_xml_pe {\n color: rgb(104, 104, 91);\n}\n.ace-eclipse .ace_marker-layer .ace_selection {\n background: rgb(181, 213, 255);\n}\n.ace-eclipse .ace_marker-layer .ace_bracket {\n margin: -1px 0 0 -1px;\n border: 1px solid rgb(192, 192, 192);\n}\n.ace-eclipse .ace_marker-layer .ace_active_line {\n background: rgb(232, 242, 254);\n}\n"], +require.def("ace/theme/Eclipse", ["ace/lib/dom", "text!ace/theme/eclipse.css!.ace-eclipse .ace_editor {\n border: 2px solid rgb(159, 159, 159);\n}\n\n.ace-eclipse .ace_editor.ace_focus {\n border: 2px solid #327fbd;\n}\n\n.ace-eclipse .ace_gutter {\n width: 40px;\n background: rgb(227, 227, 227);\n border-right: 1px solid rgb(159, 159, 159);\t \n color: rgb(136, 136, 136);\n}\n\n.ace-eclipse .ace_gutter-layer {\n right: 10px;\n text-align: right;\n}\n\n.ace-eclipse .ace_text-layer {\n cursor: text;\n}\n\n.ace-eclipse .ace_cursor {\n border-left: 1px solid black;\n}\n\n.ace-eclipse .ace_line .ace_keyword, .ace-eclipse .ace_line .ace_variable {\n color: rgb(127, 0, 85);\n}\n\n.ace-eclipse .ace_line .ace_constant.ace_buildin {\n color: rgb(88, 72, 246);\n}\n\n.ace-eclipse .ace_line .ace_constant.ace_library {\n color: rgb(6, 150, 14);\n}\n\n.ace-eclipse .ace_line .ace_function {\n color: rgb(60, 76, 114);\n}\n\n.ace-eclipse .ace_line .ace_string {\n color: rgb(42, 0, 255);\n}\n\n.ace-eclipse .ace_line .ace_comment {\n color: rgb(63, 127, 95);\n}\n\n.ace-eclipse .ace_line .ace_comment.ace_doc {\n color: rgb(63, 95, 191);\n}\n\n.ace-eclipse .ace_line .ace_comment.ace_doc.ace_tag {\n color: rgb(127, 159, 191);\n}\n\n.ace-eclipse .ace_line .ace_constant.ace_numeric {\n}\n\n.ace-eclipse .ace_line .ace_tag {\n\tcolor: rgb(63, 127, 127);\n}\n\n.ace-eclipse .ace_line .ace_xml_pe {\n color: rgb(104, 104, 91);\n}\n\n.ace-eclipse .ace_marker-layer .ace_selection {\n background: rgb(181, 213, 255);\n}\n\n.ace-eclipse .ace_marker-layer .ace_bracket {\n margin: -1px 0 0 -1px;\n border: 1px solid rgb(192, 192, 192);\n}\n\n.ace-eclipse .ace_marker-layer .ace_active_line {\n background: rgb(232, 242, 254);\n}"], function(a, b) { a.importCssString(b); return{cssClass:"ace-eclipse"} diff --git a/build/require/i18n.js b/build/require/i18n.js index fa1849be..6850dd49 100644 --- a/build/require/i18n.js +++ b/build/require/i18n.js @@ -1,3 +1,8 @@ +/* + RequireJS i18n Copyright (c) 2010, The Dojo Foundation All Rights Reserved. + Available via the MIT or new BSD license. + see: http://github.com/jrburke/requirejs for details +*/ (function() { function p(a, c) { c = c.nlsWaiting; diff --git a/build/require/jsonp.js b/build/require/jsonp.js index 61e039eb..9319c44e 100644 --- a/build/require/jsonp.js +++ b/build/require/jsonp.js @@ -1,3 +1,8 @@ +/* + RequireJS jsonp Copyright (c) 2010, The Dojo Foundation All Rights Reserved. + Available via the MIT or new BSD license. + see: http://github.com/jrburke/requirejs for details +*/ (function() { var j = 0; require._jsonp = {}; diff --git a/build/require/order.js b/build/require/order.js index 256783cf..e26cb3c5 100644 --- a/build/require/order.js +++ b/build/require/order.js @@ -1,3 +1,8 @@ +/* + RequireJS order Copyright (c) 2010, The Dojo Foundation All Rights Reserved. + Available via the MIT or new BSD license. + see: http://github.com/jrburke/requirejs for details +*/ (function() { function g(a) { var b = a.currentTarget || a.srcElement, c, d, e, f; diff --git a/build/require/rhino.js b/build/require/rhino.js index c1d623c2..657acb78 100644 --- a/build/require/rhino.js +++ b/build/require/rhino.js @@ -1,3 +1,8 @@ +/* + RequireJS rhino Copyright (c) 2010, The Dojo Foundation All Rights Reserved. + Available via the MIT or new BSD license. + see: http://github.com/jrburke/requirejs for details +*/ require.load = function(b, a) { var c = require.nameToUrl(b, null, a); a = require.s.contexts[a]; diff --git a/build/require/text.js b/build/require/text.js index 1a774785..c6c94bb0 100644 --- a/build/require/text.js +++ b/build/require/text.js @@ -1,3 +1,8 @@ +/* + RequireJS text Copyright (c) 2010, The Dojo Foundation All Rights Reserved. + Available via the MIT or new BSD license. + see: http://github.com/jrburke/requirejs for details +*/ (function() { var j = ["Msxml2.XMLHTTP", "Microsoft.XMLHTTP", "Msxml2.XMLHTTP.4.0"], l = /^\s*<\?xml(\s)+version=[\'\"](\d)*.(\d)*[\'\"](\s)*\?>/im, m = /]*>\s*([\s\S]+)\s*<\/body>/im; if(!require.textStrip) { diff --git a/build/require/transportD.js b/build/require/transportD.js index 4709f1e6..64f0580b 100644 --- a/build/require/transportD.js +++ b/build/require/transportD.js @@ -1,3 +1,8 @@ +/* + RequireJS transportD Copyright (c) 2010, The Dojo Foundation All Rights Reserved. + Available via the MIT or new BSD license. + see: http://github.com/jrburke/requirejs for details +*/ require.define = function(c, d) { var b, a; for(b in c) {