marty 2.4.7 → 2.4.8

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 (225) hide show
  1. checksums.yaml +4 -4
  2. data/Dockerfile.dummy +8 -5
  3. data/Gemfile.lock +1 -1
  4. data/README.md +8 -0
  5. data/app/assets/javascripts/marty/application.js +1 -0
  6. data/app/assets/javascripts/marty/codemirror/codemirror.js +9730 -0
  7. data/app/{components/marty/script_form/client → assets/javascripts/marty/codemirror}/mode/delorean/delorean.js +0 -0
  8. data/app/assets/javascripts/marty/codemirror/mode/javascript/javascript.js +900 -0
  9. data/app/assets/javascripts/marty/codemirror/mode/python/python.js +399 -0
  10. data/app/{components/marty/script_form/client → assets/javascripts/marty/codemirror}/mode/ruby/ruby.js +135 -34
  11. data/app/{components/marty/script_form/client/Ext.ux.form.field.CodeMirror.js → assets/javascripts/marty/extjs/extensions/marty.js} +87 -6
  12. data/app/assets/stylesheets/marty/application.css +1 -13
  13. data/app/assets/stylesheets/marty/codemirror/codemirror.css +346 -0
  14. data/app/{components/marty/script_form/client → assets/stylesheets/marty/codemirror}/delorean.css +0 -0
  15. data/app/components/marty/auth_app/client/auth_app.js +82 -80
  16. data/app/components/marty/data_grid_view.rb +1 -54
  17. data/app/components/marty/data_grid_view/client/data_grid_view.js +49 -0
  18. data/app/components/marty/form.rb +1 -5
  19. data/app/components/marty/form/client/form.js +5 -0
  20. data/app/components/marty/grid.rb +1 -146
  21. data/app/components/marty/grid/client/grid.js +146 -0
  22. data/app/components/marty/import_view.rb +1 -32
  23. data/app/components/marty/import_view/client/import_view.js +32 -0
  24. data/app/components/marty/live_search_grid_panel.rb +1 -21
  25. data/app/components/marty/live_search_grid_panel/client/live_search_grid_panel.js +27 -0
  26. data/app/components/marty/main_auth_app.rb +4 -145
  27. data/app/components/marty/main_auth_app/client/main_auth_app.js +124 -0
  28. data/app/components/marty/mcfly_grid_panel.rb +1 -17
  29. data/app/components/marty/mcfly_grid_panel/client/mcfly_grid_panel.js +37 -0
  30. data/app/components/marty/new_posting_form.rb +1 -6
  31. data/app/components/marty/new_posting_form/client/new_posting_form.js +6 -0
  32. data/app/components/marty/panel.rb +1 -5
  33. data/app/components/marty/panel/client/panel.js +5 -0
  34. data/app/components/marty/posting_grid.rb +4 -55
  35. data/app/components/marty/posting_grid/client/posting_grid.js +50 -0
  36. data/app/components/marty/promise_view.rb +2 -75
  37. data/app/components/marty/promise_view/client/promise_view.css +12 -9
  38. data/app/components/marty/promise_view/client/promise_view.js +57 -0
  39. data/app/components/marty/report_form.rb +3 -69
  40. data/app/components/marty/report_form/client/report_form.js +78 -0
  41. data/app/components/marty/report_select.rb +1 -45
  42. data/app/components/marty/report_select/client/report_select.js +50 -0
  43. data/app/components/marty/reporting.rb +1 -8
  44. data/app/components/marty/reporting/client/reporting.js +8 -0
  45. data/app/components/marty/script_form.rb +2 -63
  46. data/app/components/marty/script_form/client/script_form.js +44 -0
  47. data/app/components/marty/script_tester.rb +1 -7
  48. data/app/components/marty/script_tester/client/script_tester.js +7 -0
  49. data/app/components/marty/scripting.rb +1 -55
  50. data/app/components/marty/scripting/client/scripting.js +62 -0
  51. data/app/components/marty/simple_app/client/simple_app.js +21 -13
  52. data/app/models/marty/promise.rb +22 -1
  53. data/app/views/layouts/marty/application.html.erb +8 -6
  54. data/docker-compose.dummy.yml +2 -0
  55. data/lib/marty/monkey.rb +0 -16
  56. data/lib/marty/version.rb +1 -1
  57. data/spec/dummy/config/initializers/assets.rb +1 -0
  58. data/spec/features/reporting_spec.rb +1 -0
  59. data/spec/features/scripting_spec.rb +4 -4
  60. data/spec/spec_helper.rb +1 -0
  61. data/spec/support/chromedriver.rb +5 -1
  62. data/spec/support/shared_connection_db_helpers.rb +42 -2
  63. metadata +29 -168
  64. data/app/assets/images/marty/.gitkeep +0 -0
  65. data/app/components/marty/mcfly_grid_panel/client/dup_in_form.js +0 -20
  66. data/app/components/marty/script_form/client/codemirror.css +0 -172
  67. data/app/components/marty/script_form/client/codemirror.js +0 -3130
  68. data/app/components/marty/script_form/client/mode/clike/clike.js +0 -284
  69. data/app/components/marty/script_form/client/mode/clike/index.html +0 -102
  70. data/app/components/marty/script_form/client/mode/clike/scala.html +0 -766
  71. data/app/components/marty/script_form/client/mode/clojure/clojure.js +0 -206
  72. data/app/components/marty/script_form/client/mode/clojure/index.html +0 -67
  73. data/app/components/marty/script_form/client/mode/coffeescript/LICENSE +0 -22
  74. data/app/components/marty/script_form/client/mode/coffeescript/coffeescript.js +0 -346
  75. data/app/components/marty/script_form/client/mode/coffeescript/index.html +0 -728
  76. data/app/components/marty/script_form/client/mode/commonlisp/commonlisp.js +0 -101
  77. data/app/components/marty/script_form/client/mode/commonlisp/index.html +0 -165
  78. data/app/components/marty/script_form/client/mode/css/css.js +0 -448
  79. data/app/components/marty/script_form/client/mode/css/index.html +0 -58
  80. data/app/components/marty/script_form/client/mode/css/test.js +0 -501
  81. data/app/components/marty/script_form/client/mode/diff/diff.js +0 -32
  82. data/app/components/marty/script_form/client/mode/diff/index.html +0 -105
  83. data/app/components/marty/script_form/client/mode/ecl/ecl.js +0 -203
  84. data/app/components/marty/script_form/client/mode/ecl/index.html +0 -42
  85. data/app/components/marty/script_form/client/mode/erlang/erlang.js +0 -463
  86. data/app/components/marty/script_form/client/mode/erlang/index.html +0 -63
  87. data/app/components/marty/script_form/client/mode/gfm/gfm.js +0 -150
  88. data/app/components/marty/script_form/client/mode/gfm/index.html +0 -48
  89. data/app/components/marty/script_form/client/mode/go/go.js +0 -170
  90. data/app/components/marty/script_form/client/mode/go/index.html +0 -73
  91. data/app/components/marty/script_form/client/mode/groovy/groovy.js +0 -210
  92. data/app/components/marty/script_form/client/mode/groovy/index.html +0 -72
  93. data/app/components/marty/script_form/client/mode/haskell/haskell.js +0 -242
  94. data/app/components/marty/script_form/client/mode/haskell/index.html +0 -61
  95. data/app/components/marty/script_form/client/mode/haxe/haxe.js +0 -429
  96. data/app/components/marty/script_form/client/mode/haxe/index.html +0 -91
  97. data/app/components/marty/script_form/client/mode/htmlembedded/htmlembedded.js +0 -72
  98. data/app/components/marty/script_form/client/mode/htmlembedded/index.html +0 -50
  99. data/app/components/marty/script_form/client/mode/htmlmixed/htmlmixed.js +0 -84
  100. data/app/components/marty/script_form/client/mode/htmlmixed/index.html +0 -52
  101. data/app/components/marty/script_form/client/mode/javascript/index.html +0 -78
  102. data/app/components/marty/script_form/client/mode/javascript/javascript.js +0 -361
  103. data/app/components/marty/script_form/client/mode/jinja2/index.html +0 -38
  104. data/app/components/marty/script_form/client/mode/jinja2/jinja2.js +0 -42
  105. data/app/components/marty/script_form/client/mode/less/index.html +0 -740
  106. data/app/components/marty/script_form/client/mode/less/less.js +0 -266
  107. data/app/components/marty/script_form/client/mode/lua/index.html +0 -73
  108. data/app/components/marty/script_form/client/mode/lua/lua.js +0 -140
  109. data/app/components/marty/script_form/client/mode/markdown/index.html +0 -343
  110. data/app/components/marty/script_form/client/mode/markdown/markdown.js +0 -382
  111. data/app/components/marty/script_form/client/mode/markdown/test.js +0 -1084
  112. data/app/components/marty/script_form/client/mode/mysql/index.html +0 -42
  113. data/app/components/marty/script_form/client/mode/mysql/mysql.js +0 -186
  114. data/app/components/marty/script_form/client/mode/ntriples/index.html +0 -33
  115. data/app/components/marty/script_form/client/mode/ntriples/ntriples.js +0 -172
  116. data/app/components/marty/script_form/client/mode/ocaml/index.html +0 -130
  117. data/app/components/marty/script_form/client/mode/ocaml/ocaml.js +0 -114
  118. data/app/components/marty/script_form/client/mode/pascal/LICENSE +0 -7
  119. data/app/components/marty/script_form/client/mode/pascal/index.html +0 -49
  120. data/app/components/marty/script_form/client/mode/pascal/pascal.js +0 -94
  121. data/app/components/marty/script_form/client/mode/perl/LICENSE +0 -19
  122. data/app/components/marty/script_form/client/mode/perl/index.html +0 -63
  123. data/app/components/marty/script_form/client/mode/perl/perl.js +0 -816
  124. data/app/components/marty/script_form/client/mode/php/index.html +0 -49
  125. data/app/components/marty/script_form/client/mode/php/php.js +0 -148
  126. data/app/components/marty/script_form/client/mode/pig/index.html +0 -43
  127. data/app/components/marty/script_form/client/mode/pig/pig.js +0 -172
  128. data/app/components/marty/script_form/client/mode/plsql/index.html +0 -63
  129. data/app/components/marty/script_form/client/mode/plsql/plsql.js +0 -217
  130. data/app/components/marty/script_form/client/mode/properties/index.html +0 -41
  131. data/app/components/marty/script_form/client/mode/properties/properties.js +0 -63
  132. data/app/components/marty/script_form/client/mode/python/LICENSE.txt +0 -21
  133. data/app/components/marty/script_form/client/mode/python/index.html +0 -123
  134. data/app/components/marty/script_form/client/mode/python/python.js +0 -338
  135. data/app/components/marty/script_form/client/mode/r/LICENSE +0 -24
  136. data/app/components/marty/script_form/client/mode/r/index.html +0 -74
  137. data/app/components/marty/script_form/client/mode/r/r.js +0 -141
  138. data/app/components/marty/script_form/client/mode/rpm/changes/changes.js +0 -19
  139. data/app/components/marty/script_form/client/mode/rpm/changes/index.html +0 -54
  140. data/app/components/marty/script_form/client/mode/rpm/spec/index.html +0 -100
  141. data/app/components/marty/script_form/client/mode/rpm/spec/spec.css +0 -5
  142. data/app/components/marty/script_form/client/mode/rpm/spec/spec.js +0 -66
  143. data/app/components/marty/script_form/client/mode/rst/index.html +0 -526
  144. data/app/components/marty/script_form/client/mode/rst/rst.js +0 -326
  145. data/app/components/marty/script_form/client/mode/ruby/LICENSE +0 -24
  146. data/app/components/marty/script_form/client/mode/ruby/index.html +0 -172
  147. data/app/components/marty/script_form/client/mode/rust/index.html +0 -49
  148. data/app/components/marty/script_form/client/mode/rust/rust.js +0 -432
  149. data/app/components/marty/script_form/client/mode/scheme/index.html +0 -65
  150. data/app/components/marty/script_form/client/mode/scheme/scheme.js +0 -230
  151. data/app/components/marty/script_form/client/mode/shell/index.html +0 -50
  152. data/app/components/marty/script_form/client/mode/shell/shell.js +0 -118
  153. data/app/components/marty/script_form/client/mode/sieve/LICENSE +0 -23
  154. data/app/components/marty/script_form/client/mode/sieve/index.html +0 -81
  155. data/app/components/marty/script_form/client/mode/sieve/sieve.js +0 -156
  156. data/app/components/marty/script_form/client/mode/smalltalk/index.html +0 -56
  157. data/app/components/marty/script_form/client/mode/smalltalk/smalltalk.js +0 -139
  158. data/app/components/marty/script_form/client/mode/smarty/index.html +0 -83
  159. data/app/components/marty/script_form/client/mode/smarty/smarty.js +0 -148
  160. data/app/components/marty/script_form/client/mode/sparql/index.html +0 -41
  161. data/app/components/marty/script_form/client/mode/sparql/sparql.js +0 -143
  162. data/app/components/marty/script_form/client/mode/stex/index.html +0 -98
  163. data/app/components/marty/script_form/client/mode/stex/stex.js +0 -182
  164. data/app/components/marty/script_form/client/mode/stex/test.js +0 -343
  165. data/app/components/marty/script_form/client/mode/tiddlywiki/index.html +0 -141
  166. data/app/components/marty/script_form/client/mode/tiddlywiki/tiddlywiki.css +0 -14
  167. data/app/components/marty/script_form/client/mode/tiddlywiki/tiddlywiki.js +0 -384
  168. data/app/components/marty/script_form/client/mode/tiki/index.html +0 -83
  169. data/app/components/marty/script_form/client/mode/tiki/tiki.css +0 -26
  170. data/app/components/marty/script_form/client/mode/tiki/tiki.js +0 -309
  171. data/app/components/marty/script_form/client/mode/vb/LICENSE.txt +0 -21
  172. data/app/components/marty/script_form/client/mode/vb/index.html +0 -89
  173. data/app/components/marty/script_form/client/mode/vb/vb.js +0 -260
  174. data/app/components/marty/script_form/client/mode/vbscript/index.html +0 -43
  175. data/app/components/marty/script_form/client/mode/vbscript/vbscript.js +0 -26
  176. data/app/components/marty/script_form/client/mode/velocity/index.html +0 -104
  177. data/app/components/marty/script_form/client/mode/velocity/velocity.js +0 -146
  178. data/app/components/marty/script_form/client/mode/verilog/index.html +0 -211
  179. data/app/components/marty/script_form/client/mode/verilog/verilog.js +0 -194
  180. data/app/components/marty/script_form/client/mode/xml/index.html +0 -45
  181. data/app/components/marty/script_form/client/mode/xml/xml.js +0 -318
  182. data/app/components/marty/script_form/client/mode/xquery/LICENSE +0 -20
  183. data/app/components/marty/script_form/client/mode/xquery/index.html +0 -223
  184. data/app/components/marty/script_form/client/mode/xquery/test/index.html +0 -27
  185. data/app/components/marty/script_form/client/mode/xquery/test/testBase.js +0 -42
  186. data/app/components/marty/script_form/client/mode/xquery/test/testEmptySequenceKeyword.js +0 -16
  187. data/app/components/marty/script_form/client/mode/xquery/test/testMultiAttr.js +0 -16
  188. data/app/components/marty/script_form/client/mode/xquery/test/testNamespaces.js +0 -91
  189. data/app/components/marty/script_form/client/mode/xquery/test/testProcessingInstructions.js +0 -16
  190. data/app/components/marty/script_form/client/mode/xquery/test/testQuotes.js +0 -19
  191. data/app/components/marty/script_form/client/mode/xquery/xquery.js +0 -451
  192. data/app/components/marty/script_form/client/mode/yaml/index.html +0 -68
  193. data/app/components/marty/script_form/client/mode/yaml/yaml.js +0 -95
  194. data/app/components/marty/script_form/client/theme/ambiance.css +0 -81
  195. data/app/components/marty/script_form/client/theme/blackboard.css +0 -25
  196. data/app/components/marty/script_form/client/theme/cobalt.css +0 -18
  197. data/app/components/marty/script_form/client/theme/eclipse.css +0 -25
  198. data/app/components/marty/script_form/client/theme/elegant.css +0 -10
  199. data/app/components/marty/script_form/client/theme/erlang-dark.css +0 -21
  200. data/app/components/marty/script_form/client/theme/lesser-dark.css +0 -44
  201. data/app/components/marty/script_form/client/theme/monokai.css +0 -28
  202. data/app/components/marty/script_form/client/theme/neat.css +0 -9
  203. data/app/components/marty/script_form/client/theme/night.css +0 -21
  204. data/app/components/marty/script_form/client/theme/rubyblue.css +0 -21
  205. data/app/components/marty/script_form/client/theme/vibrant-ink.css +0 -27
  206. data/app/components/marty/script_form/client/theme/xq-dark.css +0 -46
  207. data/app/components/marty/script_form/client/util/closetag.js +0 -164
  208. data/app/components/marty/script_form/client/util/dialog.css +0 -27
  209. data/app/components/marty/script_form/client/util/dialog.js +0 -70
  210. data/app/components/marty/script_form/client/util/foldcode.js +0 -196
  211. data/app/components/marty/script_form/client/util/formatting.js +0 -193
  212. data/app/components/marty/script_form/client/util/javascript-hint.js +0 -134
  213. data/app/components/marty/script_form/client/util/loadmode.js +0 -51
  214. data/app/components/marty/script_form/client/util/match-highlighter.js +0 -44
  215. data/app/components/marty/script_form/client/util/multiplex.js +0 -77
  216. data/app/components/marty/script_form/client/util/overlay.js +0 -54
  217. data/app/components/marty/script_form/client/util/pig-hint.js +0 -123
  218. data/app/components/marty/script_form/client/util/runmode-standalone.js +0 -90
  219. data/app/components/marty/script_form/client/util/runmode.js +0 -53
  220. data/app/components/marty/script_form/client/util/search.js +0 -118
  221. data/app/components/marty/script_form/client/util/searchcursor.js +0 -119
  222. data/app/components/marty/script_form/client/util/simple-hint.css +0 -16
  223. data/app/components/marty/script_form/client/util/simple-hint.js +0 -97
  224. data/app/components/marty/script_form/client/util/xml-hint.js +0 -137
  225. data/lib/marty/javascript/grid_view_in_form.js +0 -81
@@ -1,326 +0,0 @@
1
- CodeMirror.defineMode('rst', function(config, options) {
2
- function setState(state, fn, ctx) {
3
- state.fn = fn;
4
- setCtx(state, ctx);
5
- }
6
-
7
- function setCtx(state, ctx) {
8
- state.ctx = ctx || {};
9
- }
10
-
11
- function setNormal(state, ch) {
12
- if (ch && (typeof ch !== 'string')) {
13
- var str = ch.current();
14
- ch = str[str.length-1];
15
- }
16
-
17
- setState(state, normal, {back: ch});
18
- }
19
-
20
- function hasMode(mode) {
21
- if (mode) {
22
- var modes = CodeMirror.listModes();
23
-
24
- for (var i in modes) {
25
- if (modes[i] == mode) {
26
- return true;
27
- }
28
- }
29
- }
30
-
31
- return false;
32
- }
33
-
34
- function getMode(mode) {
35
- if (hasMode(mode)) {
36
- return CodeMirror.getMode(config, mode);
37
- } else {
38
- return null;
39
- }
40
- }
41
-
42
- var verbatimMode = getMode(options.verbatim);
43
- var pythonMode = getMode('python');
44
-
45
- var reSection = /^[!"#$%&'()*+,-./:;<=>?@[\\\]^_`{|}~]/;
46
- var reDirective = /^\s*\w([-:.\w]*\w)?::(\s|$)/;
47
- var reHyperlink = /^\s*_[\w-]+:(\s|$)/;
48
- var reFootnote = /^\s*\[(\d+|#)\](\s|$)/;
49
- var reCitation = /^\s*\[[A-Za-z][\w-]*\](\s|$)/;
50
- var reFootnoteRef = /^\[(\d+|#)\]_/;
51
- var reCitationRef = /^\[[A-Za-z][\w-]*\]_/;
52
- var reDirectiveMarker = /^\.\.(\s|$)/;
53
- var reVerbatimMarker = /^::\s*$/;
54
- var rePreInline = /^[-\s"([{</:]/;
55
- var rePostInline = /^[-\s`'")\]}>/:.,;!?\\_]/;
56
- var reEnumeratedList = /^\s*((\d+|[A-Za-z#])[.)]|\((\d+|[A-Z-a-z#])\))\s/;
57
- var reBulletedList = /^\s*[-\+\*]\s/;
58
- var reExamples = /^\s+(>>>|In \[\d+\]:)\s/;
59
-
60
- function normal(stream, state) {
61
- var ch, sol, i;
62
-
63
- if (stream.eat(/\\/)) {
64
- ch = stream.next();
65
- setNormal(state, ch);
66
- return null;
67
- }
68
-
69
- sol = stream.sol();
70
-
71
- if (sol && (ch = stream.eat(reSection))) {
72
- for (i = 0; stream.eat(ch); i++);
73
-
74
- if (i >= 3 && stream.match(/^\s*$/)) {
75
- setNormal(state, null);
76
- return 'header';
77
- } else {
78
- stream.backUp(i + 1);
79
- }
80
- }
81
-
82
- if (sol && stream.match(reDirectiveMarker)) {
83
- if (!stream.eol()) {
84
- setState(state, directive);
85
- }
86
- return 'meta';
87
- }
88
-
89
- if (stream.match(reVerbatimMarker)) {
90
- if (!verbatimMode) {
91
- setState(state, verbatim);
92
- } else {
93
- var mode = verbatimMode;
94
-
95
- setState(state, verbatim, {
96
- mode: mode,
97
- local: mode.startState()
98
- });
99
- }
100
- return 'meta';
101
- }
102
-
103
- if (sol && stream.match(reExamples, false)) {
104
- if (!pythonMode) {
105
- setState(state, verbatim);
106
- return 'meta';
107
- } else {
108
- var mode = pythonMode;
109
-
110
- setState(state, verbatim, {
111
- mode: mode,
112
- local: mode.startState()
113
- });
114
-
115
- return null;
116
- }
117
- }
118
-
119
- function testBackward(re) {
120
- return sol || !state.ctx.back || re.test(state.ctx.back);
121
- }
122
-
123
- function testForward(re) {
124
- return stream.eol() || stream.match(re, false);
125
- }
126
-
127
- function testInline(re) {
128
- return stream.match(re) && testBackward(/\W/) && testForward(/\W/);
129
- }
130
-
131
- if (testInline(reFootnoteRef)) {
132
- setNormal(state, stream);
133
- return 'footnote';
134
- }
135
-
136
- if (testInline(reCitationRef)) {
137
- setNormal(state, stream);
138
- return 'citation';
139
- }
140
-
141
- ch = stream.next();
142
-
143
- if (testBackward(rePreInline)) {
144
- if ((ch === ':' || ch === '|') && stream.eat(/\S/)) {
145
- var token;
146
-
147
- if (ch === ':') {
148
- token = 'builtin';
149
- } else {
150
- token = 'atom';
151
- }
152
-
153
- setState(state, inline, {
154
- ch: ch,
155
- wide: false,
156
- prev: null,
157
- token: token
158
- });
159
-
160
- return token;
161
- }
162
-
163
- if (ch === '*' || ch === '`') {
164
- var orig = ch,
165
- wide = false;
166
-
167
- ch = stream.next();
168
-
169
- if (ch == orig) {
170
- wide = true;
171
- ch = stream.next();
172
- }
173
-
174
- if (ch && !/\s/.test(ch)) {
175
- var token;
176
-
177
- if (orig === '*') {
178
- token = wide ? 'strong' : 'em';
179
- } else {
180
- token = wide ? 'string' : 'string-2';
181
- }
182
-
183
- setState(state, inline, {
184
- ch: orig, // inline() has to know what to search for
185
- wide: wide, // are we looking for `ch` or `chch`
186
- prev: null, // terminator must not be preceeded with whitespace
187
- token: token // I don't want to recompute this all the time
188
- });
189
-
190
- return token;
191
- }
192
- }
193
- }
194
-
195
- setNormal(state, ch);
196
- return null;
197
- }
198
-
199
- function inline(stream, state) {
200
- var ch = stream.next(),
201
- token = state.ctx.token;
202
-
203
- function finish(ch) {
204
- state.ctx.prev = ch;
205
- return token;
206
- }
207
-
208
- if (ch != state.ctx.ch) {
209
- return finish(ch);
210
- }
211
-
212
- if (/\s/.test(state.ctx.prev)) {
213
- return finish(ch);
214
- }
215
-
216
- if (state.ctx.wide) {
217
- ch = stream.next();
218
-
219
- if (ch != state.ctx.ch) {
220
- return finish(ch);
221
- }
222
- }
223
-
224
- if (!stream.eol() && !rePostInline.test(stream.peek())) {
225
- if (state.ctx.wide) {
226
- stream.backUp(1);
227
- }
228
-
229
- return finish(ch);
230
- }
231
-
232
- setState(state, normal);
233
- setNormal(state, ch);
234
-
235
- return token;
236
- }
237
-
238
- function directive(stream, state) {
239
- var token = null;
240
-
241
- if (stream.match(reDirective)) {
242
- token = 'attribute';
243
- } else if (stream.match(reHyperlink)) {
244
- token = 'link';
245
- } else if (stream.match(reFootnote)) {
246
- token = 'quote';
247
- } else if (stream.match(reCitation)) {
248
- token = 'quote';
249
- } else {
250
- stream.eatSpace();
251
-
252
- if (stream.eol()) {
253
- setNormal(state, stream);
254
- return null;
255
- } else {
256
- stream.skipToEnd();
257
- setState(state, comment);
258
- return 'comment';
259
- }
260
- }
261
-
262
- // FIXME this is unreachable
263
- setState(state, body, {start: true});
264
- return token;
265
- }
266
-
267
- function body(stream, state) {
268
- var token = 'body';
269
-
270
- if (!state.ctx.start || stream.sol()) {
271
- return block(stream, state, token);
272
- }
273
-
274
- stream.skipToEnd();
275
- setCtx(state);
276
-
277
- return token;
278
- }
279
-
280
- function comment(stream, state) {
281
- return block(stream, state, 'comment');
282
- }
283
-
284
- function verbatim(stream, state) {
285
- if (!verbatimMode) {
286
- return block(stream, state, 'meta');
287
- } else {
288
- if (stream.sol()) {
289
- if (!stream.eatSpace()) {
290
- setNormal(state, stream);
291
- }
292
-
293
- return null;
294
- }
295
-
296
- return verbatimMode.token(stream, state.ctx.local);
297
- }
298
- }
299
-
300
- function block(stream, state, token) {
301
- if (stream.eol() || stream.eatSpace()) {
302
- stream.skipToEnd();
303
- return token;
304
- } else {
305
- setNormal(state, stream);
306
- return null;
307
- }
308
- }
309
-
310
- return {
311
- startState: function() {
312
- return {fn: normal, ctx: {}};
313
- },
314
-
315
- copyState: function(state) {
316
- return {fn: state.fn, ctx: state.ctx};
317
- },
318
-
319
- token: function(stream, state) {
320
- var token = state.fn(stream, state);
321
- return token;
322
- }
323
- };
324
- }, "python");
325
-
326
- CodeMirror.defineMIME("text/x-rst", "rst");
@@ -1,24 +0,0 @@
1
- Copyright (c) 2011, Ubalo, Inc.
2
- All rights reserved.
3
-
4
- Redistribution and use in source and binary forms, with or without
5
- modification, are permitted provided that the following conditions are met:
6
- * Redistributions of source code must retain the above copyright
7
- notice, this list of conditions and the following disclaimer.
8
- * Redistributions in binary form must reproduce the above copyright
9
- notice, this list of conditions and the following disclaimer in the
10
- documentation and/or other materials provided with the distribution.
11
- * Neither the name of the Ubalo, Inc. nor the names of its
12
- contributors may be used to endorse or promote products derived
13
- from this software without specific prior written permission.
14
-
15
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
16
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18
- DISCLAIMED. IN NO EVENT SHALL UBALO, INC BE LIABLE FOR ANY
19
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -1,172 +0,0 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8">
5
- <title>CodeMirror: Ruby mode</title>
6
- <link rel="stylesheet" href="../../lib/codemirror.css">
7
- <script src="../../lib/codemirror.js"></script>
8
- <script src="ruby.js"></script>
9
- <style>
10
- .CodeMirror {border-top: 1px solid black; border-bottom: 1px solid black;}
11
- .cm-s-default span.cm-arrow { color: red; }
12
- </style>
13
- <link rel="stylesheet" href="../../doc/docs.css">
14
- </head>
15
- <body>
16
- <h1>CodeMirror: Ruby mode</h1>
17
- <form><textarea id="code" name="code">
18
- # Code from http://sandbox.mc.edu/~bennet/ruby/code/poly_rb.html
19
- #
20
- # This program evaluates polynomials. It first asks for the coefficients
21
- # of a polynomial, which must be entered on one line, highest-order first.
22
- # It then requests values of x and will compute the value of the poly for
23
- # each x. It will repeatly ask for x values, unless you the user enters
24
- # a blank line. It that case, it will ask for another polynomial. If the
25
- # user types quit for either input, the program immediately exits.
26
- #
27
-
28
- #
29
- # Function to evaluate a polynomial at x. The polynomial is given
30
- # as a list of coefficients, from the greatest to the least.
31
- def polyval(x, coef)
32
- sum = 0
33
- coef = coef.clone # Don't want to destroy the original
34
- while true
35
- sum += coef.shift # Add and remove the next coef
36
- break if coef.empty? # If no more, done entirely.
37
- sum *= x # This happens the right number of times.
38
- end
39
- return sum
40
- end
41
-
42
- #
43
- # Function to read a line containing a list of integers and return
44
- # them as an array of integers. If the string conversion fails, it
45
- # throws TypeError. If the input line is the word 'quit', then it
46
- # converts it to an end-of-file exception
47
- def readints(prompt)
48
- # Read a line
49
- print prompt
50
- line = readline.chomp
51
- raise EOFError.new if line == 'quit' # You can also use a real EOF.
52
-
53
- # Go through each item on the line, converting each one and adding it
54
- # to retval.
55
- retval = [ ]
56
- for str in line.split(/\s+/)
57
- if str =~ /^\-?\d+$/
58
- retval.push(str.to_i)
59
- else
60
- raise TypeError.new
61
- end
62
- end
63
-
64
- return retval
65
- end
66
-
67
- #
68
- # Take a coeff and an exponent and return the string representation, ignoring
69
- # the sign of the coefficient.
70
- def term_to_str(coef, exp)
71
- ret = ""
72
-
73
- # Show coeff, unless it's 1 or at the right
74
- coef = coef.abs
75
- ret = coef.to_s unless coef == 1 && exp > 0
76
- ret += "x" if exp > 0 # x if exponent not 0
77
- ret += "^" + exp.to_s if exp > 1 # ^exponent, if > 1.
78
-
79
- return ret
80
- end
81
-
82
- #
83
- # Create a string of the polynomial in sort-of-readable form.
84
- def polystr(p)
85
- # Get the exponent of first coefficient, plus 1.
86
- exp = p.length
87
-
88
- # Assign exponents to each term, making pairs of coeff and exponent,
89
- # Then get rid of the zero terms.
90
- p = (p.map { |c| exp -= 1; [ c, exp ] }).select { |p| p[0] != 0 }
91
-
92
- # If there's nothing left, it's a zero
93
- return "0" if p.empty?
94
-
95
- # *** Now p is a non-empty list of [ coef, exponent ] pairs. ***
96
-
97
- # Convert the first term, preceded by a "-" if it's negative.
98
- result = (if p[0][0] < 0 then "-" else "" end) + term_to_str(*p[0])
99
-
100
- # Convert the rest of the terms, in each case adding the appropriate
101
- # + or - separating them.
102
- for term in p[1...p.length]
103
- # Add the separator then the rep. of the term.
104
- result += (if term[0] < 0 then " - " else " + " end) +
105
- term_to_str(*term)
106
- end
107
-
108
- return result
109
- end
110
-
111
- #
112
- # Run until some kind of endfile.
113
- begin
114
- # Repeat until an exception or quit gets us out.
115
- while true
116
- # Read a poly until it works. An EOF will except out of the
117
- # program.
118
- print "\n"
119
- begin
120
- poly = readints("Enter a polynomial coefficients: ")
121
- rescue TypeError
122
- print "Try again.\n"
123
- retry
124
- end
125
- break if poly.empty?
126
-
127
- # Read and evaluate x values until the user types a blank line.
128
- # Again, an EOF will except out of the pgm.
129
- while true
130
- # Request an integer.
131
- print "Enter x value or blank line: "
132
- x = readline.chomp
133
- break if x == ''
134
- raise EOFError.new if x == 'quit'
135
-
136
- # If it looks bad, let's try again.
137
- if x !~ /^\-?\d+$/
138
- print "That doesn't look like an integer. Please try again.\n"
139
- next
140
- end
141
-
142
- # Convert to an integer and print the result.
143
- x = x.to_i
144
- print "p(x) = ", polystr(poly), "\n"
145
- print "p(", x, ") = ", polyval(x, poly), "\n"
146
- end
147
- end
148
- rescue EOFError
149
- print "\n=== EOF ===\n"
150
- rescue Interrupt, SignalException
151
- print "\n=== Interrupted ===\n"
152
- else
153
- print "--- Bye ---\n"
154
- end
155
- </textarea></form>
156
- <script>
157
- var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
158
- mode: "text/x-ruby",
159
- tabMode: "indent",
160
- matchBrackets: true,
161
- indentUnit: 4
162
- });
163
- </script>
164
-
165
- <p><strong>MIME types defined:</strong> <code>text/x-ruby</code>.</p>
166
-
167
- <p>Development of the CodeMirror Ruby mode was kindly sponsored
168
- by <a href="http://ubalo.com/">Ubalo</a>, who hold
169
- the <a href="LICENSE">license</a>.</p>
170
-
171
- </body>
172
- </html>