datagram 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. data/.env.sample +7 -0
  2. data/.gitignore +20 -0
  3. data/.rbenv-version +1 -0
  4. data/Gemfile +12 -0
  5. data/LICENSE.txt +22 -0
  6. data/Procfile +1 -0
  7. data/README.md +29 -0
  8. data/Rakefile +1 -0
  9. data/config.ru +5 -0
  10. data/datagram.gemspec +23 -0
  11. data/db/migrate/1_create_queries.rb +9 -0
  12. data/db/migrate/2_add_name_to_queries.rb +5 -0
  13. data/lib/datagram/version.rb +3 -0
  14. data/lib/datagram.rb +135 -0
  15. data/lib/views/application.coffee +222 -0
  16. data/lib/views/index.haml +47 -0
  17. data/lib/views/layout.haml +17 -0
  18. data/lib/views/style.sass +179 -0
  19. data/public/ace/ace.js +15209 -0
  20. data/public/ace/ext-elastic_tabstops_lite.js +301 -0
  21. data/public/ace/ext-emmet.js +253 -0
  22. data/public/ace/ext-searchbox.js +441 -0
  23. data/public/ace/ext-spellcheck.js +67 -0
  24. data/public/ace/ext-static_highlight.js +96 -0
  25. data/public/ace/ext-textarea.js +492 -0
  26. data/public/ace/ext-whitespace.js +204 -0
  27. data/public/ace/keybinding-emacs.js +962 -0
  28. data/public/ace/keybinding-vim.js +1704 -0
  29. data/public/ace/mode-abap.js +260 -0
  30. data/public/ace/mode-asciidoc.js +372 -0
  31. data/public/ace/mode-c9search.js +182 -0
  32. data/public/ace/mode-c_cpp.js +737 -0
  33. data/public/ace/mode-clojure.js +299 -0
  34. data/public/ace/mode-coffee.js +426 -0
  35. data/public/ace/mode-coldfusion.js +1753 -0
  36. data/public/ace/mode-csharp.js +612 -0
  37. data/public/ace/mode-css.js +773 -0
  38. data/public/ace/mode-curly.js +1950 -0
  39. data/public/ace/mode-dart.js +945 -0
  40. data/public/ace/mode-diff.js +166 -0
  41. data/public/ace/mode-django.js +1969 -0
  42. data/public/ace/mode-dot.js +320 -0
  43. data/public/ace/mode-ftl.js +907 -0
  44. data/public/ace/mode-glsl.js +810 -0
  45. data/public/ace/mode-golang.js +632 -0
  46. data/public/ace/mode-groovy.js +1037 -0
  47. data/public/ace/mode-haml.js +487 -0
  48. data/public/ace/mode-haxe.js +609 -0
  49. data/public/ace/mode-html.js +1881 -0
  50. data/public/ace/mode-jade.js +1951 -0
  51. data/public/ace/mode-java.js +996 -0
  52. data/public/ace/mode-javascript.js +876 -0
  53. data/public/ace/mode-json.js +578 -0
  54. data/public/ace/mode-jsp.js +1351 -0
  55. data/public/ace/mode-jsx.js +635 -0
  56. data/public/ace/mode-latex.js +189 -0
  57. data/public/ace/mode-less.js +807 -0
  58. data/public/ace/mode-liquid.js +862 -0
  59. data/public/ace/mode-lisp.js +138 -0
  60. data/public/ace/mode-livescript.js +288 -0
  61. data/public/ace/mode-logiql.js +664 -0
  62. data/public/ace/mode-lsl.js +828 -0
  63. data/public/ace/mode-lua.js +455 -0
  64. data/public/ace/mode-luapage.js +2340 -0
  65. data/public/ace/mode-lucene.js +64 -0
  66. data/public/ace/mode-makefile.js +313 -0
  67. data/public/ace/mode-markdown.js +2280 -0
  68. data/public/ace/mode-mushcode.js +704 -0
  69. data/public/ace/mode-mushcode_high_rules.js +569 -0
  70. data/public/ace/mode-objectivec.js +659 -0
  71. data/public/ace/mode-ocaml.js +443 -0
  72. data/public/ace/mode-pascal.js +233 -0
  73. data/public/ace/mode-perl.js +316 -0
  74. data/public/ace/mode-pgsql.js +908 -0
  75. data/public/ace/mode-php.js +2291 -0
  76. data/public/ace/mode-powershell.js +618 -0
  77. data/public/ace/mode-python.js +264 -0
  78. data/public/ace/mode-r.js +404 -0
  79. data/public/ace/mode-rdoc.js +184 -0
  80. data/public/ace/mode-rhtml.js +2168 -0
  81. data/public/ace/mode-ruby.js +431 -0
  82. data/public/ace/mode-sass.js +442 -0
  83. data/public/ace/mode-scad.js +670 -0
  84. data/public/ace/mode-scala.js +1025 -0
  85. data/public/ace/mode-scheme.js +144 -0
  86. data/public/ace/mode-scss.js +832 -0
  87. data/public/ace/mode-sh.js +204 -0
  88. data/public/ace/mode-sql.js +118 -0
  89. data/public/ace/mode-stylus.js +483 -0
  90. data/public/ace/mode-svg.js +1442 -0
  91. data/public/ace/mode-tcl.js +319 -0
  92. data/public/ace/mode-tex.js +166 -0
  93. data/public/ace/mode-text.js +0 -0
  94. data/public/ace/mode-textile.js +170 -0
  95. data/public/ace/mode-tmsnippet.js +200 -0
  96. data/public/ace/mode-toml.js +180 -0
  97. data/public/ace/mode-typescript.js +961 -0
  98. data/public/ace/mode-vbscript.js +281 -0
  99. data/public/ace/mode-velocity.js +962 -0
  100. data/public/ace/mode-xml.js +789 -0
  101. data/public/ace/mode-xquery.js +2750 -0
  102. data/public/ace/mode-yaml.js +289 -0
  103. data/public/ace/theme-ambiance.js +202 -0
  104. data/public/ace/theme-chaos.js +182 -0
  105. data/public/ace/theme-chrome.js +161 -0
  106. data/public/ace/theme-clouds.js +135 -0
  107. data/public/ace/theme-clouds_midnight.js +136 -0
  108. data/public/ace/theme-cobalt.js +150 -0
  109. data/public/ace/theme-crimson_editor.js +154 -0
  110. data/public/ace/theme-dawn.js +146 -0
  111. data/public/ace/theme-dreamweaver.js +173 -0
  112. data/public/ace/theme-eclipse.js +122 -0
  113. data/public/ace/theme-github.js +136 -0
  114. data/public/ace/theme-idle_fingers.js +136 -0
  115. data/public/ace/theme-kr.js +143 -0
  116. data/public/ace/theme-merbivore.js +135 -0
  117. data/public/ace/theme-merbivore_soft.js +136 -0
  118. data/public/ace/theme-mono_industrial.js +148 -0
  119. data/public/ace/theme-monokai.js +140 -0
  120. data/public/ace/theme-pastel_on_dark.js +148 -0
  121. data/public/ace/theme-solarized_dark.js +128 -0
  122. data/public/ace/theme-solarized_light.js +131 -0
  123. data/public/ace/theme-terminal.js +154 -0
  124. data/public/ace/theme-textmate.js +0 -0
  125. data/public/ace/theme-tomorrow.js +147 -0
  126. data/public/ace/theme-tomorrow_night.js +147 -0
  127. data/public/ace/theme-tomorrow_night_blue.js +145 -0
  128. data/public/ace/theme-tomorrow_night_bright.js +147 -0
  129. data/public/ace/theme-tomorrow_night_eighties.js +144 -0
  130. data/public/ace/theme-twilight.js +147 -0
  131. data/public/ace/theme-vibrant_ink.js +131 -0
  132. data/public/ace/theme-xcode.js +125 -0
  133. data/public/ace/worker-coffee.js +7091 -0
  134. data/public/ace/worker-css.js +8289 -0
  135. data/public/ace/worker-javascript.js +6496 -0
  136. data/public/ace/worker-json.js +2305 -0
  137. data/public/ace/worker-lua.js +3313 -0
  138. data/public/ace/worker-php.js +6743 -0
  139. data/public/ace/worker-xquery.js +21897 -0
  140. data/public/font/FontAwesome.otf +0 -0
  141. data/public/font/fontawesome-webfont.eot +0 -0
  142. data/public/font/fontawesome-webfont.svg +284 -0
  143. data/public/font/fontawesome-webfont.ttf +0 -0
  144. data/public/font/fontawesome-webfont.woff +0 -0
  145. data/public/font-awesome.css +540 -0
  146. data/public/jquery.js +9597 -0
  147. data/script/migrate.sh +2 -0
  148. metadata +242 -0
@@ -0,0 +1,492 @@
1
+ /* ***** BEGIN LICENSE BLOCK *****
2
+ * Distributed under the BSD license:
3
+ *
4
+ * Copyright (c) 2010, Ajax.org B.V.
5
+ * All rights reserved.
6
+ *
7
+ * Redistribution and use in source and binary forms, with or without
8
+ * modification, are permitted provided that the following conditions are met:
9
+ * * Redistributions of source code must retain the above copyright
10
+ * notice, this list of conditions and the following disclaimer.
11
+ * * Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in the
13
+ * documentation and/or other materials provided with the distribution.
14
+ * * Neither the name of Ajax.org B.V. nor the
15
+ * names of its contributors may be used to endorse or promote products
16
+ * derived from this software without specific prior written permission.
17
+ *
18
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
22
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+ *
29
+ * ***** END LICENSE BLOCK ***** */
30
+
31
+ define('ace/ext/textarea', ['require', 'exports', 'module' , 'ace/lib/event', 'ace/lib/useragent', 'ace/lib/net', 'ace/ace', 'ace/theme/textmate', 'ace/mode/text'], function(require, exports, module) {
32
+
33
+
34
+ var event = require("../lib/event");
35
+ var UA = require("../lib/useragent");
36
+ var net = require("../lib/net");
37
+ var ace = require("../ace");
38
+
39
+ require("../theme/textmate");
40
+
41
+ module.exports = exports = ace;
42
+ var getCSSProperty = function(element, container, property) {
43
+ var ret = element.style[property];
44
+
45
+ if (!ret) {
46
+ if (window.getComputedStyle) {
47
+ ret = window.getComputedStyle(element, '').getPropertyValue(property);
48
+ } else {
49
+ ret = element.currentStyle[property];
50
+ }
51
+ }
52
+
53
+ if (!ret || ret == 'auto' || ret == 'intrinsic') {
54
+ ret = container.style[property];
55
+ }
56
+ return ret;
57
+ };
58
+
59
+ function applyStyles(elm, styles) {
60
+ for (var style in styles) {
61
+ elm.style[style] = styles[style];
62
+ }
63
+ }
64
+
65
+ function setupContainer(element, getValue) {
66
+ if (element.type != 'textarea') {
67
+ throw "Textarea required!";
68
+ }
69
+
70
+ var parentNode = element.parentNode;
71
+ var container = document.createElement('div');
72
+ var resizeEvent = function() {
73
+ var style = 'position:relative;';
74
+ [
75
+ 'margin-top', 'margin-left', 'margin-right', 'margin-bottom'
76
+ ].forEach(function(item) {
77
+ style += item + ':' +
78
+ getCSSProperty(element, container, item) + ';';
79
+ });
80
+ var width = getCSSProperty(element, container, 'width') || (element.clientWidth + "px");
81
+ var height = getCSSProperty(element, container, 'height') || (element.clientHeight + "px");
82
+ style += 'height:' + height + ';width:' + width + ';';
83
+ style += 'display:inline-block;';
84
+ container.setAttribute('style', style);
85
+ };
86
+ event.addListener(window, 'resize', resizeEvent);
87
+ resizeEvent();
88
+ parentNode.insertBefore(container, element.nextSibling);
89
+ while (parentNode !== document) {
90
+ if (parentNode.tagName.toUpperCase() === 'FORM') {
91
+ var oldSumit = parentNode.onsubmit;
92
+ parentNode.onsubmit = function(evt) {
93
+ element.value = getValue();
94
+ if (oldSumit) {
95
+ oldSumit.call(this, evt);
96
+ }
97
+ };
98
+ break;
99
+ }
100
+ parentNode = parentNode.parentNode;
101
+ }
102
+ return container;
103
+ }
104
+
105
+ exports.transformTextarea = function(element, loader) {
106
+ var session;
107
+ var container = setupContainer(element, function() {
108
+ return session.getValue();
109
+ });
110
+ element.style.display = 'none';
111
+ container.style.background = 'white';
112
+ var editorDiv = document.createElement("div");
113
+ applyStyles(editorDiv, {
114
+ top: "0px",
115
+ left: "0px",
116
+ right: "0px",
117
+ bottom: "0px",
118
+ border: "1px solid gray",
119
+ position: "absolute"
120
+ });
121
+ container.appendChild(editorDiv);
122
+
123
+ var settingOpener = document.createElement("div");
124
+ applyStyles(settingOpener, {
125
+ position: "absolute",
126
+ right: "0px",
127
+ bottom: "0px",
128
+ background: "red",
129
+ cursor: "nw-resize",
130
+ borderStyle: "solid",
131
+ borderWidth: "9px 8px 10px 9px",
132
+ width: "2px",
133
+ borderColor: "lightblue gray gray lightblue",
134
+ zIndex: 101
135
+ });
136
+
137
+ var settingDiv = document.createElement("div");
138
+ var settingDivStyles = {
139
+ top: "0px",
140
+ left: "20%",
141
+ right: "0px",
142
+ bottom: "0px",
143
+ position: "absolute",
144
+ padding: "5px",
145
+ zIndex: 100,
146
+ color: "white",
147
+ display: "none",
148
+ overflow: "auto",
149
+ fontSize: "14px",
150
+ boxShadow: "-5px 2px 3px gray"
151
+ };
152
+ if (!UA.isOldIE) {
153
+ settingDivStyles.backgroundColor = "rgba(0, 0, 0, 0.6)";
154
+ } else {
155
+ settingDivStyles.backgroundColor = "#333";
156
+ }
157
+
158
+ applyStyles(settingDiv, settingDivStyles);
159
+ container.appendChild(settingDiv);
160
+ var options = {};
161
+
162
+ var editor = ace.edit(editorDiv);
163
+ session = editor.getSession();
164
+
165
+ session.setValue(element.value || element.innerHTML);
166
+ editor.focus();
167
+ container.appendChild(settingOpener);
168
+ setupApi(editor, editorDiv, settingDiv, ace, options, loader);
169
+ setupSettingPanel(settingDiv, settingOpener, editor, options);
170
+
171
+ var state = "";
172
+ event.addListener(settingOpener, "mousemove", function(e) {
173
+ var rect = this.getBoundingClientRect();
174
+ var x = e.clientX - rect.left, y = e.clientY - rect.top;
175
+ if (x + y < (rect.width + rect.height)/2) {
176
+ this.style.cursor = "pointer";
177
+ state = "toggle";
178
+ } else {
179
+ state = "resize";
180
+ this.style.cursor = "nw-resize";
181
+ }
182
+ });
183
+
184
+ event.addListener(settingOpener, "mousedown", function(e) {
185
+ if (state == "toggle") {
186
+ editor.setDisplaySettings();
187
+ return;
188
+ }
189
+ container.style.zIndex = 100000;
190
+ var rect = container.getBoundingClientRect();
191
+ var startX = rect.width + rect.left - e.clientX;
192
+ var startY = rect.height + rect.top - e.clientY;
193
+ event.capture(settingOpener, function(e) {
194
+ container.style.width = e.clientX - rect.left + startX + "px";
195
+ container.style.height = e.clientY - rect.top + startY + "px";
196
+ editor.resize();
197
+ }, function() {});
198
+ });
199
+
200
+ return editor;
201
+ };
202
+
203
+ function load(url, module, callback) {
204
+ net.loadScript(url, function() {
205
+ require([module], callback);
206
+ });
207
+ }
208
+
209
+ function setupApi(editor, editorDiv, settingDiv, ace, options, loader) {
210
+ var session = editor.getSession();
211
+ var renderer = editor.renderer;
212
+ loader = loader || load;
213
+
214
+ function toBool(value) {
215
+ return value === "true" || value == true;
216
+ }
217
+
218
+ editor.setDisplaySettings = function(display) {
219
+ if (display == null)
220
+ display = settingDiv.style.display == "none";
221
+ if (display) {
222
+ settingDiv.style.display = "block";
223
+ settingDiv.hideButton.focus();
224
+ editor.on("focus", function onFocus() {
225
+ editor.removeListener("focus", onFocus);
226
+ settingDiv.style.display = "none"
227
+ });
228
+ } else {
229
+ editor.focus();
230
+ };
231
+ };
232
+
233
+ editor.setOption = function(key, value) {
234
+ if (options[key] == value) return;
235
+
236
+ switch (key) {
237
+ case "gutter":
238
+ renderer.setShowGutter(toBool(value));
239
+ break;
240
+
241
+ case "mode":
242
+ if (value != "text") {
243
+ loader("mode-" + value + ".js", "ace/mode/" + value, function() {
244
+ var aceMode = require("../mode/" + value).Mode;
245
+ session.setMode(new aceMode());
246
+ });
247
+ } else {
248
+ session.setMode(new (require("../mode/text").Mode));
249
+ }
250
+ break;
251
+
252
+ case "theme":
253
+ if (value != "textmate") {
254
+ loader("theme-" + value + ".js", "ace/theme/" + value, function() {
255
+ editor.setTheme("ace/theme/" + value);
256
+ });
257
+ } else {
258
+ editor.setTheme("ace/theme/textmate");
259
+ }
260
+ break;
261
+
262
+ case "fontSize":
263
+ editorDiv.style.fontSize = value;
264
+ break;
265
+
266
+ case "keybindings":
267
+ switch (value) {
268
+ case "vim":
269
+ editor.setKeyboardHandler("ace/keyboard/vim");
270
+ break;
271
+ case "emacs":
272
+ editor.setKeyboardHandler("ace/keyboard/emacs");
273
+ break;
274
+ default:
275
+ editor.setKeyboardHandler(null);
276
+ }
277
+ break;
278
+
279
+ case "softWrap":
280
+ switch (value) {
281
+ case "off":
282
+ session.setUseWrapMode(false);
283
+ renderer.setPrintMarginColumn(80);
284
+ break;
285
+ case "40":
286
+ session.setUseWrapMode(true);
287
+ session.setWrapLimitRange(40, 40);
288
+ renderer.setPrintMarginColumn(40);
289
+ break;
290
+ case "80":
291
+ session.setUseWrapMode(true);
292
+ session.setWrapLimitRange(80, 80);
293
+ renderer.setPrintMarginColumn(80);
294
+ break;
295
+ case "free":
296
+ session.setUseWrapMode(true);
297
+ session.setWrapLimitRange(null, null);
298
+ renderer.setPrintMarginColumn(80);
299
+ break;
300
+ }
301
+ break;
302
+
303
+ case "useSoftTabs":
304
+ session.setUseSoftTabs(toBool(value));
305
+ break;
306
+
307
+ case "showPrintMargin":
308
+ renderer.setShowPrintMargin(toBool(value));
309
+ break;
310
+
311
+ case "showInvisibles":
312
+ editor.setShowInvisibles(toBool(value));
313
+ break;
314
+ }
315
+
316
+ options[key] = value;
317
+ };
318
+
319
+ editor.getOption = function(key) {
320
+ return options[key];
321
+ };
322
+
323
+ editor.getOptions = function() {
324
+ return options;
325
+ };
326
+
327
+ for (var option in exports.options) {
328
+ editor.setOption(option, exports.options[option]);
329
+ }
330
+
331
+ return editor;
332
+ }
333
+
334
+ function setupSettingPanel(settingDiv, settingOpener, editor, options) {
335
+ var BOOL = null;
336
+
337
+ var desc = {
338
+ mode: "Mode:",
339
+ gutter: "Display Gutter:",
340
+ theme: "Theme:",
341
+ fontSize: "Font Size:",
342
+ softWrap: "Soft Wrap:",
343
+ keybindings: "Keyboard",
344
+ showPrintMargin: "Show Print Margin:",
345
+ useSoftTabs: "Use Soft Tabs:",
346
+ showInvisibles: "Show Invisibles"
347
+ };
348
+
349
+ var optionValues = {
350
+ mode: {
351
+ text: "Plain",
352
+ javascript: "JavaScript",
353
+ xml: "XML",
354
+ html: "HTML",
355
+ css: "CSS",
356
+ scss: "SCSS",
357
+ python: "Python",
358
+ php: "PHP",
359
+ java: "Java",
360
+ ruby: "Ruby",
361
+ c_cpp: "C/C++",
362
+ coffee: "CoffeeScript",
363
+ json: "json",
364
+ perl: "Perl",
365
+ clojure: "Clojure",
366
+ ocaml: "OCaml",
367
+ csharp: "C#",
368
+ haxe: "haXe",
369
+ svg: "SVG",
370
+ textile: "Textile",
371
+ groovy: "Groovy",
372
+ liquid: "Liquid",
373
+ Scala: "Scala"
374
+ },
375
+ theme: {
376
+ clouds: "Clouds",
377
+ clouds_midnight: "Clouds Midnight",
378
+ cobalt: "Cobalt",
379
+ crimson_editor: "Crimson Editor",
380
+ dawn: "Dawn",
381
+ eclipse: "Eclipse",
382
+ idle_fingers: "Idle Fingers",
383
+ kr_theme: "Kr Theme",
384
+ merbivore: "Merbivore",
385
+ merbivore_soft: "Merbivore Soft",
386
+ mono_industrial: "Mono Industrial",
387
+ monokai: "Monokai",
388
+ pastel_on_dark: "Pastel On Dark",
389
+ solarized_dark: "Solarized Dark",
390
+ solarized_light: "Solarized Light",
391
+ textmate: "Textmate",
392
+ twilight: "Twilight",
393
+ vibrant_ink: "Vibrant Ink"
394
+ },
395
+ gutter: BOOL,
396
+ fontSize: {
397
+ "10px": "10px",
398
+ "11px": "11px",
399
+ "12px": "12px",
400
+ "14px": "14px",
401
+ "16px": "16px"
402
+ },
403
+ softWrap: {
404
+ off: "Off",
405
+ 40: "40",
406
+ 80: "80",
407
+ free: "Free"
408
+ },
409
+ keybindings: {
410
+ ace: "ace",
411
+ vim: "vim",
412
+ emacs: "emacs"
413
+ },
414
+ showPrintMargin: BOOL,
415
+ useSoftTabs: BOOL,
416
+ showInvisibles: BOOL
417
+ };
418
+
419
+ var table = [];
420
+ table.push("<table><tr><th>Setting</th><th>Value</th></tr>");
421
+
422
+ function renderOption(builder, option, obj, cValue) {
423
+ if (!obj) {
424
+ builder.push(
425
+ "<input type='checkbox' title='", option, "' ",
426
+ cValue == "true" ? "checked='true'" : "",
427
+ "'></input>"
428
+ );
429
+ return
430
+ }
431
+ builder.push("<select title='" + option + "'>");
432
+ for (var value in obj) {
433
+ builder.push("<option value='" + value + "' ");
434
+
435
+ if (cValue == value) {
436
+ builder.push(" selected ");
437
+ }
438
+
439
+ builder.push(">",
440
+ obj[value],
441
+ "</option>");
442
+ }
443
+ builder.push("</select>");
444
+ }
445
+
446
+ for (var option in options) {
447
+ table.push("<tr><td>", desc[option], "</td>");
448
+ table.push("<td>");
449
+ renderOption(table, option, optionValues[option], options[option]);
450
+ table.push("</td></tr>");
451
+ }
452
+ table.push("</table>");
453
+ settingDiv.innerHTML = table.join("");
454
+
455
+ var onChange = function(e) {
456
+ var select = e.currentTarget;
457
+ editor.setOption(select.title, select.value);
458
+ };
459
+ var onClick = function(e) {
460
+ var cb = e.currentTarget;
461
+ editor.setOption(cb.title, cb.checked);
462
+ };
463
+ var selects = settingDiv.getElementsByTagName("select");
464
+ for (var i = 0; i < selects.length; i++)
465
+ selects[i].onchange = onChange;
466
+ var cbs = settingDiv.getElementsByTagName("input");
467
+ for (var i = 0; i < cbs.length; i++)
468
+ cbs[i].onclick = onClick;
469
+
470
+
471
+ var button = document.createElement("input");
472
+ button.type = "button";
473
+ button.value = "Hide";
474
+ event.addListener(button, "click", function() {
475
+ editor.setDisplaySettings(false);
476
+ });
477
+ settingDiv.appendChild(button);
478
+ settingDiv.hideButton = button;
479
+ }
480
+ exports.options = {
481
+ mode: "text",
482
+ theme: "textmate",
483
+ gutter: "false",
484
+ fontSize: "12px",
485
+ softWrap: "off",
486
+ keybindings: "ace",
487
+ showPrintMargin: "false",
488
+ useSoftTabs: "true",
489
+ showInvisibles: "false"
490
+ };
491
+
492
+ });
@@ -0,0 +1,204 @@
1
+ /* ***** BEGIN LICENSE BLOCK *****
2
+ * Distributed under the BSD license:
3
+ *
4
+ * Copyright (c) 2010, Ajax.org B.V.
5
+ * All rights reserved.
6
+ *
7
+ * Redistribution and use in source and binary forms, with or without
8
+ * modification, are permitted provided that the following conditions are met:
9
+ * * Redistributions of source code must retain the above copyright
10
+ * notice, this list of conditions and the following disclaimer.
11
+ * * Redistributions in binary form must reproduce the above copyright
12
+ * notice, this list of conditions and the following disclaimer in the
13
+ * documentation and/or other materials provided with the distribution.
14
+ * * Neither the name of Ajax.org B.V. nor the
15
+ * names of its contributors may be used to endorse or promote products
16
+ * derived from this software without specific prior written permission.
17
+ *
18
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
19
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21
+ * DISCLAIMED. IN NO EVENT SHALL AJAX.ORG B.V. BE LIABLE FOR ANY
22
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
+ *
29
+ * ***** END LICENSE BLOCK ***** */
30
+
31
+ define('ace/ext/whitespace', ['require', 'exports', 'module' , 'ace/lib/lang'], function(require, exports, module) {
32
+
33
+
34
+ var lang = require("../lib/lang");
35
+ exports.$detectIndentation = function(lines, fallback) {
36
+ var stats = [];
37
+ var changes = [];
38
+ var tabIndents = 0;
39
+ var prevSpaces = 0;
40
+ var max = Math.min(lines.length, 1000);
41
+ for (var i = 0; i < max; i++) {
42
+ var line = lines[i];
43
+ if (!/^\s*[^*+\-\s]/.test(line))
44
+ continue;
45
+
46
+ var tabs = line.match(/^\t*/)[0].length;
47
+ if (line[0] == "\t")
48
+ tabIndents++;
49
+
50
+ var spaces = line.match(/^ */)[0].length;
51
+ if (spaces && line[spaces] != "\t") {
52
+ var diff = spaces - prevSpaces;
53
+ if (diff > 0 && !(prevSpaces%diff) && !(spaces%diff))
54
+ changes[diff] = (changes[diff] || 0) + 1;
55
+
56
+ stats[spaces] = (stats[spaces] || 0) + 1;
57
+ }
58
+ prevSpaces = spaces;
59
+ while (line[line.length - 1] == "\\")
60
+ line = lines[i++];
61
+ };
62
+
63
+ function getScore(indent) {
64
+ var score = 0;
65
+ for (var i = indent; i < stats.length; i += indent)
66
+ score += stats[i] || 0;
67
+ return score;
68
+ }
69
+
70
+ var changesTotal = changes.reduce(function(a,b){return a+b}, 0);
71
+
72
+ var first = {score: 0, length: 0};
73
+ var spaceIndents = 0;
74
+ for (var i = 1; i < 12; i++) {
75
+ if (i == 1) {
76
+ spaceIndents = getScore(i);
77
+ var score = 1;
78
+ } else
79
+ var score = getScore(i) / spaceIndents;
80
+
81
+ if (changes[i]) {
82
+ score += changes[i] / changesTotal;
83
+ }
84
+
85
+ if (score > first.score)
86
+ first = {score: score, length: i};
87
+ }
88
+
89
+ if (first.score && first.score > 1.4)
90
+ var tabLength = first.length;
91
+
92
+ if (tabIndents > spaceIndents + 1)
93
+ return {ch: "\t", length: tabLength};
94
+
95
+ if (spaceIndents + 1 > tabIndents)
96
+ return {ch: " ", length: tabLength};
97
+ };
98
+
99
+ exports.detectIndentation = function(session) {
100
+ var lines = session.getLines(0, 1000);
101
+ var indent = exports.$detectIndentation(lines) || {};
102
+
103
+ if (indent.ch)
104
+ session.setUseSoftTabs(indent.ch == " ");
105
+
106
+ if (indent.length)
107
+ session.setTabSize(indent.length);
108
+ return indent;
109
+ };
110
+
111
+ exports.trimTrailingSpace = function(session) {
112
+ var doc = session.getDocument();
113
+ var lines = doc.getAllLines();
114
+
115
+ for (var i = 0, l=lines.length; i < l; i++) {
116
+ var line = lines[i];
117
+ var index = line.search(/\s+$/);
118
+
119
+ if (index !== -1)
120
+ doc.removeInLine(i, index, line.length);
121
+ }
122
+ };
123
+
124
+ exports.convertIndentation = function(session, ch, len) {
125
+ var oldCh = session.getTabString()[0];
126
+ var oldLen = session.getTabSize();
127
+ if (!len) len = oldLen;
128
+ if (!ch) ch = oldCh;
129
+
130
+ var tab = ch == "\t" ? ch: lang.stringRepeat(ch, len);
131
+
132
+ var doc = session.doc;
133
+ var lines = doc.getAllLines();
134
+
135
+ var cache = {};
136
+ var spaceCache = {};
137
+ for (var i = 0, l=lines.length; i < l; i++) {
138
+ var line = lines[i];
139
+ var match = line.match(/^\s*/)[0];
140
+ if (match) {
141
+ var w = session.$getStringScreenWidth(match)[0];
142
+ var tabCount = Math.floor(w/oldLen);
143
+ var reminder = w%oldLen;
144
+ var toInsert = cache[tabCount] || (cache[tabCount] = lang.stringRepeat(tab, tabCount));
145
+ toInsert += spaceCache[reminder] || (spaceCache[reminder] = lang.stringRepeat(" ", reminder));
146
+
147
+ if (toInsert != match) {
148
+ doc.removeInLine(i, 0, match.length);
149
+ doc.insertInLine({row: i, column: 0}, toInsert);
150
+ }
151
+ }
152
+ }
153
+ session.setTabSize(len);
154
+ session.setUseSoftTabs(ch == " ");
155
+ };
156
+
157
+ exports.$parseStringArg = function(text) {
158
+ var indent = {}
159
+ if (/t/.test(text))
160
+ indent.ch = "\t";
161
+ else if (/s/.test(text))
162
+ indent.ch = " ";
163
+ var m = text.match(/\d+/);
164
+ if (m)
165
+ indent.length = parseInt(m[0]);
166
+ return indent;
167
+ };
168
+
169
+ exports.$parseArg = function(arg) {
170
+ if (!arg)
171
+ return {};
172
+ if (typeof arg == "string")
173
+ return exports.$parseStringArg(arg);
174
+ if (typeof arg.text == "string")
175
+ return exports.$parseStringArg(arg.text);
176
+ return arg;
177
+ }
178
+
179
+ exports.commands = [{
180
+ name: "detectIndentation",
181
+ exec: function(editor) {
182
+ exports.detectIndentation(editor.session);
183
+ }
184
+ }, {
185
+ name: "trimTrailingSpace",
186
+ exec: function(editor) {
187
+ exports.trimTrailingSpace(editor.session);
188
+ }
189
+ }, {
190
+ name: "convertIndentation",
191
+ exec: function(editor, arg) {
192
+ var indent = exports.$parseArg(arg);
193
+ exports.convertIndentation(editor.session, arg.ch, arg.length);
194
+ }
195
+ }, {
196
+ name: "setIndentation",
197
+ exec: function(editor, arg) {
198
+ var indent = exports.$parseArg(arg);
199
+ indent.length && editor.session.setTabSize(indent.length);
200
+ indent.ch && editor.session.setUseSoftTabs(indent.ch == " ");
201
+ }
202
+ }]
203
+
204
+ });