lines-engine 0.6.2 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (572) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data.tar.gz.sig +0 -0
  4. data/.gitignore +1 -0
  5. data/CHANGELOG.md +10 -3
  6. data/Gemfile +1 -0
  7. data/Gemfile.lock +10 -6
  8. data/app/assets/images/favicon.ico +0 -0
  9. data/app/assets/images/gplus.svg +17 -0
  10. data/app/assets/javascripts/lines/admin/admin.js +299 -0
  11. data/app/assets/javascripts/lines/{autosize.min.js → admin/autosize.min.js} +0 -0
  12. data/app/assets/javascripts/lines/admin/navbar.js +51 -0
  13. data/app/assets/javascripts/lines/{pictures.js.coffee → admin/pictures.js.coffee} +2 -1
  14. data/app/assets/javascripts/lines/application.js +3 -0
  15. data/app/assets/javascripts/lines/articles.js.coffee +1 -0
  16. data/app/assets/javascripts/lines/viewer.js.coffee +3 -0
  17. data/app/assets/stylesheets/lines/admin/admin.scss +609 -0
  18. data/app/assets/stylesheets/lines/admin/variables_and_mixins.scss +36 -0
  19. data/app/assets/stylesheets/lines/application.scss +2 -13
  20. data/app/assets/stylesheets/lines/article.scss +165 -69
  21. data/app/assets/stylesheets/lines/fonts.scss +2 -2
  22. data/app/assets/stylesheets/lines/footer.scss +10 -56
  23. data/app/assets/stylesheets/lines/general.scss +18 -13
  24. data/app/assets/stylesheets/lines/media_queries.scss +5 -1
  25. data/app/assets/stylesheets/lines/messages.scss +28 -0
  26. data/app/assets/stylesheets/lines/navbar.scss +199 -122
  27. data/app/assets/stylesheets/lines/pagination.scss +8 -31
  28. data/app/assets/stylesheets/lines/pygments.css.erb +1 -2
  29. data/app/assets/stylesheets/lines/variables_and_mixins.scss +4 -0
  30. data/app/controllers/lines/admin/articles_controller.rb +8 -6
  31. data/app/controllers/lines/admin/authors_controller.rb +2 -2
  32. data/app/controllers/lines/admin/pictures_controller.rb +1 -1
  33. data/app/controllers/lines/application_controller.rb +1 -1
  34. data/app/controllers/lines/articles_controller.rb +3 -1
  35. data/app/controllers/lines/password_resets_controller.rb +4 -7
  36. data/app/controllers/lines/sessions_controller.rb +3 -3
  37. data/app/helpers/lines/application_helper.rb +25 -4
  38. data/app/mailers/lines/user_mailer.rb +1 -1
  39. data/app/models/lines/article.rb +13 -3
  40. data/app/models/lines/user.rb +2 -2
  41. data/app/uploaders/picture_uploader.rb +1 -1
  42. data/app/views/layouts/lines/_markdown_cheatsheet.html.erb +72 -0
  43. data/app/views/layouts/lines/admin.html.erb +15 -4
  44. data/app/views/layouts/lines/application.html.erb +16 -4
  45. data/app/views/layouts/lines/preview.html.erb +30 -2
  46. data/app/views/lines/admin/articles/_form.html.erb +50 -148
  47. data/app/views/lines/admin/articles/_picture_box.html.erb +37 -8
  48. data/app/views/lines/admin/articles/edit.html.erb +2 -12
  49. data/app/views/lines/admin/articles/index.html.erb +40 -28
  50. data/app/views/lines/admin/articles/new.html.erb +3 -10
  51. data/app/views/lines/admin/articles/show.html.erb +6 -4
  52. data/app/views/lines/admin/authors/_form.html.erb +12 -41
  53. data/app/views/lines/admin/authors/index.html.erb +18 -13
  54. data/app/views/lines/admin/authors/show.html.erb +19 -48
  55. data/app/views/lines/admin/pictures/_picture.html.erb +5 -4
  56. data/app/views/lines/admin/pictures/create.js.erb +1 -1
  57. data/app/views/lines/admin/pictures/destroy.js.erb +1 -1
  58. data/app/views/lines/articles/_article.html.erb +10 -6
  59. data/app/views/lines/articles/_article_collection.html.erb +1 -1
  60. data/app/views/lines/articles/_article_small.html.erb +9 -7
  61. data/app/views/lines/articles/index.atom.builder +10 -9
  62. data/app/views/lines/articles/index.html.erb +2 -2
  63. data/app/views/lines/articles/show.html.erb +5 -1
  64. data/app/views/lines/password_resets/edit.html.erb +25 -12
  65. data/app/views/lines/password_resets/new.html.erb +14 -8
  66. data/app/views/lines/sessions/new.html.erb +6 -10
  67. data/app/views/lines/shared/_flash.html.erb +1 -1
  68. data/app/views/lines/shared/_footer.html.erb +5 -28
  69. data/app/views/lines/user_mailer/password_reset.html.erb +6 -5
  70. data/app/views/lines/user_mailer/password_reset.text.erb +8 -4
  71. data/config/lines_config.yml +15 -14
  72. data/config/routes.rb +2 -2
  73. data/db/seeds.rb +5 -5
  74. data/lib/lines/engine.rb +1 -1
  75. data/lib/lines/version.rb +1 -1
  76. data/lines.gemspec +1 -1
  77. data/public/codemirror/.gitattributes +8 -0
  78. data/public/codemirror/.gitignore +8 -0
  79. data/public/codemirror/.npmignore +9 -0
  80. data/public/codemirror/.travis.yml +4 -0
  81. data/public/codemirror/AUTHORS +474 -0
  82. data/public/codemirror/CONTRIBUTING.md +88 -0
  83. data/public/codemirror/LICENSE +19 -0
  84. data/public/codemirror/README.md +27 -0
  85. data/public/codemirror/addon/comment/comment.js +183 -0
  86. data/public/codemirror/addon/comment/continuecomment.js +85 -0
  87. data/public/codemirror/addon/dialog/dialog.css +32 -0
  88. data/public/codemirror/addon/dialog/dialog.js +157 -0
  89. data/public/codemirror/addon/display/fullscreen.css +6 -0
  90. data/public/codemirror/addon/display/fullscreen.js +41 -0
  91. data/public/codemirror/addon/display/panel.js +112 -0
  92. data/public/codemirror/addon/display/placeholder.js +58 -0
  93. data/public/codemirror/addon/display/rulers.js +63 -0
  94. data/public/codemirror/addon/edit/closebrackets.js +185 -0
  95. data/public/codemirror/addon/edit/closetag.js +166 -0
  96. data/public/codemirror/addon/edit/continuelist.js +51 -0
  97. data/public/codemirror/addon/edit/matchbrackets.js +120 -0
  98. data/public/codemirror/addon/edit/matchtags.js +66 -0
  99. data/public/codemirror/addon/edit/trailingspace.js +27 -0
  100. data/public/codemirror/addon/fold/brace-fold.js +105 -0
  101. data/public/codemirror/addon/fold/comment-fold.js +57 -0
  102. data/public/codemirror/addon/fold/foldcode.js +149 -0
  103. data/public/codemirror/addon/fold/foldgutter.css +20 -0
  104. data/public/codemirror/addon/fold/foldgutter.js +146 -0
  105. data/public/codemirror/addon/fold/indent-fold.js +44 -0
  106. data/public/codemirror/addon/fold/markdown-fold.js +49 -0
  107. data/public/codemirror/addon/fold/xml-fold.js +182 -0
  108. data/public/codemirror/addon/hint/anyword-hint.js +41 -0
  109. data/public/codemirror/addon/hint/css-hint.js +60 -0
  110. data/public/codemirror/addon/hint/html-hint.js +348 -0
  111. data/public/codemirror/addon/hint/javascript-hint.js +146 -0
  112. data/public/codemirror/addon/hint/show-hint.css +38 -0
  113. data/public/codemirror/addon/hint/show-hint.js +386 -0
  114. data/public/codemirror/addon/hint/sql-hint.js +254 -0
  115. data/public/codemirror/addon/hint/xml-hint.js +110 -0
  116. data/public/codemirror/addon/lint/coffeescript-lint.js +41 -0
  117. data/public/codemirror/addon/lint/css-lint.js +35 -0
  118. data/public/codemirror/addon/lint/javascript-lint.js +136 -0
  119. data/public/codemirror/addon/lint/json-lint.js +31 -0
  120. data/public/codemirror/addon/lint/lint.css +73 -0
  121. data/public/codemirror/addon/lint/lint.js +207 -0
  122. data/public/codemirror/addon/lint/yaml-lint.js +28 -0
  123. data/public/codemirror/addon/merge/merge.css +112 -0
  124. data/public/codemirror/addon/merge/merge.js +775 -0
  125. data/public/codemirror/addon/mode/loadmode.js +64 -0
  126. data/public/codemirror/addon/mode/multiplex.js +123 -0
  127. data/public/codemirror/addon/mode/multiplex_test.js +33 -0
  128. data/public/codemirror/addon/mode/overlay.js +85 -0
  129. data/public/codemirror/addon/mode/simple.js +213 -0
  130. data/public/codemirror/addon/runmode/colorize.js +40 -0
  131. data/public/codemirror/addon/runmode/runmode-standalone.js +157 -0
  132. data/public/codemirror/addon/runmode/runmode.js +72 -0
  133. data/public/codemirror/addon/runmode/runmode.node.js +178 -0
  134. data/public/codemirror/addon/scroll/annotatescrollbar.js +115 -0
  135. data/public/codemirror/addon/scroll/scrollpastend.js +46 -0
  136. data/public/codemirror/addon/scroll/simplescrollbars.css +66 -0
  137. data/public/codemirror/addon/scroll/simplescrollbars.js +147 -0
  138. data/public/codemirror/addon/search/match-highlighter.js +128 -0
  139. data/public/codemirror/addon/search/matchesonscrollbar.css +8 -0
  140. data/public/codemirror/addon/search/matchesonscrollbar.js +97 -0
  141. data/public/codemirror/addon/search/search.js +202 -0
  142. data/public/codemirror/addon/search/searchcursor.js +189 -0
  143. data/public/codemirror/addon/selection/active-line.js +71 -0
  144. data/public/codemirror/addon/selection/mark-selection.js +118 -0
  145. data/public/codemirror/addon/selection/selection-pointer.js +98 -0
  146. data/public/codemirror/addon/tern/tern.css +87 -0
  147. data/public/codemirror/addon/tern/tern.js +699 -0
  148. data/public/codemirror/addon/tern/worker.js +44 -0
  149. data/public/codemirror/addon/wrap/hardwrap.js +139 -0
  150. data/public/codemirror/bin/authors.sh +6 -0
  151. data/public/codemirror/bin/compress +92 -0
  152. data/public/codemirror/bin/lint +3 -0
  153. data/public/codemirror/bin/release +45 -0
  154. data/public/codemirror/bin/source-highlight +51 -0
  155. data/public/codemirror/bower.json +17 -0
  156. data/public/codemirror/demo/activeline.html +78 -0
  157. data/public/codemirror/demo/anywordhint.html +79 -0
  158. data/public/codemirror/demo/bidi.html +74 -0
  159. data/public/codemirror/demo/btree.html +85 -0
  160. data/public/codemirror/demo/buffers.html +109 -0
  161. data/public/codemirror/demo/changemode.html +58 -0
  162. data/public/codemirror/demo/closebrackets.html +52 -0
  163. data/public/codemirror/demo/closetag.html +41 -0
  164. data/public/codemirror/demo/complete.html +79 -0
  165. data/public/codemirror/demo/emacs.html +75 -0
  166. data/public/codemirror/demo/folding.html +95 -0
  167. data/public/codemirror/demo/fullscreen.html +83 -0
  168. data/public/codemirror/demo/hardwrap.html +72 -0
  169. data/public/codemirror/demo/html5complete.html +56 -0
  170. data/public/codemirror/demo/indentwrap.html +59 -0
  171. data/public/codemirror/demo/lint.html +171 -0
  172. data/public/codemirror/demo/loadmode.html +72 -0
  173. data/public/codemirror/demo/marker.html +52 -0
  174. data/public/codemirror/demo/markselection.html +52 -0
  175. data/public/codemirror/demo/matchhighlighter.html +47 -0
  176. data/public/codemirror/demo/matchtags.html +48 -0
  177. data/public/codemirror/demo/merge.html +122 -0
  178. data/public/codemirror/demo/multiplex.html +75 -0
  179. data/public/codemirror/demo/mustache.html +69 -0
  180. data/public/codemirror/demo/panel.html +136 -0
  181. data/public/codemirror/demo/placeholder.html +45 -0
  182. data/public/codemirror/demo/preview.html +87 -0
  183. data/public/codemirror/demo/requirejs.html +70 -0
  184. data/public/codemirror/demo/resize.html +51 -0
  185. data/public/codemirror/demo/rulers.html +49 -0
  186. data/public/codemirror/demo/runmode.html +62 -0
  187. data/public/codemirror/demo/search.html +95 -0
  188. data/public/codemirror/demo/simplemode.html +186 -0
  189. data/public/codemirror/demo/simplescrollbars.html +82 -0
  190. data/public/codemirror/demo/spanaffectswrapping_shim.html +85 -0
  191. data/public/codemirror/demo/sublime.html +76 -0
  192. data/public/codemirror/demo/tern.html +133 -0
  193. data/public/codemirror/demo/theme.html +152 -0
  194. data/public/codemirror/demo/trailingspace.html +48 -0
  195. data/public/codemirror/demo/variableheight.html +67 -0
  196. data/public/codemirror/demo/vim.html +104 -0
  197. data/public/codemirror/demo/visibletabs.html +62 -0
  198. data/public/codemirror/demo/widget.html +85 -0
  199. data/public/codemirror/demo/xmlcomplete.html +119 -0
  200. data/public/codemirror/doc/activebookmark.js +57 -0
  201. data/public/codemirror/doc/compress.html +329 -0
  202. data/public/codemirror/doc/docs.css +271 -0
  203. data/public/codemirror/doc/internals.html +503 -0
  204. data/public/codemirror/doc/logo.png +0 -0
  205. data/public/codemirror/doc/logo.svg +181 -0
  206. data/public/codemirror/doc/manual.html +3327 -0
  207. data/public/codemirror/doc/realworld.html +174 -0
  208. data/public/codemirror/doc/releases.html +1116 -0
  209. data/public/codemirror/doc/reporting.html +61 -0
  210. data/public/codemirror/doc/upgrade_v2.2.html +96 -0
  211. data/public/codemirror/doc/upgrade_v3.html +230 -0
  212. data/public/codemirror/doc/upgrade_v4.html +144 -0
  213. data/public/codemirror/doc/yinyang.png +0 -0
  214. data/public/codemirror/index.html +199 -0
  215. data/public/codemirror/keymap/emacs.js +412 -0
  216. data/public/codemirror/keymap/sublime.js +555 -0
  217. data/public/codemirror/keymap/vim.js +5060 -0
  218. data/public/codemirror/lib/codemirror.css +332 -0
  219. data/public/codemirror/lib/codemirror.js +8788 -0
  220. data/public/codemirror/mode/apl/apl.js +174 -0
  221. data/public/codemirror/mode/apl/index.html +72 -0
  222. data/public/codemirror/mode/asciiarmor/asciiarmor.js +73 -0
  223. data/public/codemirror/mode/asciiarmor/index.html +46 -0
  224. data/public/codemirror/mode/asn.1/asn.1.js +204 -0
  225. data/public/codemirror/mode/asn.1/index.html +78 -0
  226. data/public/codemirror/mode/asterisk/asterisk.js +196 -0
  227. data/public/codemirror/mode/asterisk/index.html +154 -0
  228. data/public/codemirror/mode/brainfuck/brainfuck.js +85 -0
  229. data/public/codemirror/mode/brainfuck/index.html +85 -0
  230. data/public/codemirror/mode/clike/clike.js +604 -0
  231. data/public/codemirror/mode/clike/index.html +252 -0
  232. data/public/codemirror/mode/clike/scala.html +767 -0
  233. data/public/codemirror/mode/clike/test.js +33 -0
  234. data/public/codemirror/mode/clojure/clojure.js +244 -0
  235. data/public/codemirror/mode/clojure/index.html +88 -0
  236. data/public/codemirror/mode/cmake/cmake.js +97 -0
  237. data/public/codemirror/mode/cmake/index.html +129 -0
  238. data/public/codemirror/mode/cobol/cobol.js +255 -0
  239. data/public/codemirror/mode/cobol/index.html +210 -0
  240. data/public/codemirror/mode/coffeescript/coffeescript.js +369 -0
  241. data/public/codemirror/mode/coffeescript/index.html +740 -0
  242. data/public/codemirror/mode/commonlisp/commonlisp.js +123 -0
  243. data/public/codemirror/mode/commonlisp/index.html +177 -0
  244. data/public/codemirror/mode/css/css.js +756 -0
  245. data/public/codemirror/mode/css/index.html +75 -0
  246. data/public/codemirror/mode/css/less.html +152 -0
  247. data/public/codemirror/mode/css/less_test.js +54 -0
  248. data/public/codemirror/mode/css/scss.html +157 -0
  249. data/public/codemirror/mode/css/scss_test.js +110 -0
  250. data/public/codemirror/mode/css/test.js +188 -0
  251. data/public/codemirror/mode/cypher/cypher.js +146 -0
  252. data/public/codemirror/mode/cypher/index.html +63 -0
  253. data/public/codemirror/mode/d/d.js +218 -0
  254. data/public/codemirror/mode/d/index.html +273 -0
  255. data/public/codemirror/mode/dart/dart.js +50 -0
  256. data/public/codemirror/mode/dart/index.html +71 -0
  257. data/public/codemirror/mode/diff/diff.js +47 -0
  258. data/public/codemirror/mode/diff/index.html +117 -0
  259. data/public/codemirror/mode/django/django.js +350 -0
  260. data/public/codemirror/mode/django/index.html +73 -0
  261. data/public/codemirror/mode/dockerfile/dockerfile.js +76 -0
  262. data/public/codemirror/mode/dockerfile/index.html +73 -0
  263. data/public/codemirror/mode/dtd/dtd.js +142 -0
  264. data/public/codemirror/mode/dtd/index.html +89 -0
  265. data/public/codemirror/mode/dylan/dylan.js +291 -0
  266. data/public/codemirror/mode/dylan/index.html +407 -0
  267. data/public/codemirror/mode/ebnf/ebnf.js +195 -0
  268. data/public/codemirror/mode/ebnf/index.html +102 -0
  269. data/public/codemirror/mode/ecl/ecl.js +206 -0
  270. data/public/codemirror/mode/ecl/index.html +52 -0
  271. data/public/codemirror/mode/eiffel/eiffel.js +160 -0
  272. data/public/codemirror/mode/eiffel/index.html +429 -0
  273. data/public/codemirror/mode/elm/elm.js +205 -0
  274. data/public/codemirror/mode/elm/index.html +61 -0
  275. data/public/codemirror/mode/erlang/erlang.js +618 -0
  276. data/public/codemirror/mode/erlang/index.html +76 -0
  277. data/public/codemirror/mode/factor/factor.js +83 -0
  278. data/public/codemirror/mode/factor/index.html +77 -0
  279. data/public/codemirror/mode/forth/forth.js +180 -0
  280. data/public/codemirror/mode/forth/index.html +75 -0
  281. data/public/codemirror/mode/fortran/fortran.js +188 -0
  282. data/public/codemirror/mode/fortran/index.html +81 -0
  283. data/public/codemirror/mode/gas/gas.js +345 -0
  284. data/public/codemirror/mode/gas/index.html +68 -0
  285. data/public/codemirror/mode/gfm/gfm.js +124 -0
  286. data/public/codemirror/mode/gfm/index.html +93 -0
  287. data/public/codemirror/mode/gfm/test.js +213 -0
  288. data/public/codemirror/mode/gherkin/gherkin.js +178 -0
  289. data/public/codemirror/mode/gherkin/index.html +48 -0
  290. data/public/codemirror/mode/go/go.js +185 -0
  291. data/public/codemirror/mode/go/index.html +85 -0
  292. data/public/codemirror/mode/groovy/groovy.js +230 -0
  293. data/public/codemirror/mode/groovy/index.html +84 -0
  294. data/public/codemirror/mode/haml/haml.js +159 -0
  295. data/public/codemirror/mode/haml/index.html +79 -0
  296. data/public/codemirror/mode/haml/test.js +97 -0
  297. data/public/codemirror/mode/handlebars/handlebars.js +53 -0
  298. data/public/codemirror/mode/handlebars/index.html +83 -0
  299. data/public/codemirror/mode/haskell/haskell.js +267 -0
  300. data/public/codemirror/mode/haskell/index.html +73 -0
  301. data/public/codemirror/mode/haxe/haxe.js +518 -0
  302. data/public/codemirror/mode/haxe/index.html +124 -0
  303. data/public/codemirror/mode/htmlembedded/htmlembedded.js +28 -0
  304. data/public/codemirror/mode/htmlembedded/index.html +59 -0
  305. data/public/codemirror/mode/htmlmixed/htmlmixed.js +121 -0
  306. data/public/codemirror/mode/htmlmixed/index.html +89 -0
  307. data/public/codemirror/mode/http/http.js +113 -0
  308. data/public/codemirror/mode/http/index.html +45 -0
  309. data/public/codemirror/mode/idl/idl.js +290 -0
  310. data/public/codemirror/mode/idl/index.html +64 -0
  311. data/public/codemirror/mode/index.html +149 -0
  312. data/public/codemirror/mode/jade/index.html +70 -0
  313. data/public/codemirror/mode/jade/jade.js +590 -0
  314. data/public/codemirror/mode/javascript/index.html +114 -0
  315. data/public/codemirror/mode/javascript/javascript.js +704 -0
  316. data/public/codemirror/mode/javascript/json-ld.html +72 -0
  317. data/public/codemirror/mode/javascript/test.js +205 -0
  318. data/public/codemirror/mode/javascript/typescript.html +61 -0
  319. data/public/codemirror/mode/jinja2/index.html +54 -0
  320. data/public/codemirror/mode/jinja2/jinja2.js +142 -0
  321. data/public/codemirror/mode/julia/index.html +195 -0
  322. data/public/codemirror/mode/julia/julia.js +299 -0
  323. data/public/codemirror/mode/kotlin/index.html +89 -0
  324. data/public/codemirror/mode/kotlin/kotlin.js +284 -0
  325. data/public/codemirror/mode/livescript/index.html +459 -0
  326. data/public/codemirror/mode/livescript/livescript.js +280 -0
  327. data/public/codemirror/mode/lua/index.html +85 -0
  328. data/public/codemirror/mode/lua/lua.js +159 -0
  329. data/public/codemirror/mode/markdown/index.html +359 -0
  330. data/public/codemirror/mode/markdown/markdown.js +781 -0
  331. data/public/codemirror/mode/markdown/test.js +792 -0
  332. data/public/codemirror/mode/mathematica/index.html +72 -0
  333. data/public/codemirror/mode/mathematica/mathematica.js +175 -0
  334. data/public/codemirror/mode/meta.js +190 -0
  335. data/public/codemirror/mode/mirc/index.html +160 -0
  336. data/public/codemirror/mode/mirc/mirc.js +193 -0
  337. data/public/codemirror/mode/mllike/index.html +179 -0
  338. data/public/codemirror/mode/mllike/mllike.js +205 -0
  339. data/public/codemirror/mode/modelica/index.html +67 -0
  340. data/public/codemirror/mode/modelica/modelica.js +245 -0
  341. data/public/codemirror/mode/mumps/index.html +85 -0
  342. data/public/codemirror/mode/mumps/mumps.js +148 -0
  343. data/public/codemirror/mode/nginx/index.html +181 -0
  344. data/public/codemirror/mode/nginx/nginx.js +178 -0
  345. data/public/codemirror/mode/ntriples/index.html +45 -0
  346. data/public/codemirror/mode/ntriples/ntriples.js +186 -0
  347. data/public/codemirror/mode/octave/index.html +83 -0
  348. data/public/codemirror/mode/octave/octave.js +135 -0
  349. data/public/codemirror/mode/pascal/index.html +61 -0
  350. data/public/codemirror/mode/pascal/pascal.js +109 -0
  351. data/public/codemirror/mode/pegjs/index.html +66 -0
  352. data/public/codemirror/mode/pegjs/pegjs.js +114 -0
  353. data/public/codemirror/mode/perl/index.html +75 -0
  354. data/public/codemirror/mode/perl/perl.js +837 -0
  355. data/public/codemirror/mode/php/index.html +64 -0
  356. data/public/codemirror/mode/php/php.js +230 -0
  357. data/public/codemirror/mode/php/test.js +154 -0
  358. data/public/codemirror/mode/pig/index.html +55 -0
  359. data/public/codemirror/mode/pig/pig.js +178 -0
  360. data/public/codemirror/mode/properties/index.html +53 -0
  361. data/public/codemirror/mode/properties/properties.js +78 -0
  362. data/public/codemirror/mode/puppet/index.html +121 -0
  363. data/public/codemirror/mode/puppet/puppet.js +220 -0
  364. data/public/codemirror/mode/python/index.html +198 -0
  365. data/public/codemirror/mode/python/python.js +358 -0
  366. data/public/codemirror/mode/q/index.html +144 -0
  367. data/public/codemirror/mode/q/q.js +139 -0
  368. data/public/codemirror/mode/r/index.html +85 -0
  369. data/public/codemirror/mode/r/r.js +162 -0
  370. data/public/codemirror/mode/rpm/changes/index.html +66 -0
  371. data/public/codemirror/mode/rpm/index.html +149 -0
  372. data/public/codemirror/mode/rpm/rpm.js +101 -0
  373. data/public/codemirror/mode/rst/index.html +535 -0
  374. data/public/codemirror/mode/rst/rst.js +557 -0
  375. data/public/codemirror/mode/ruby/index.html +183 -0
  376. data/public/codemirror/mode/ruby/ruby.js +285 -0
  377. data/public/codemirror/mode/ruby/test.js +14 -0
  378. data/public/codemirror/mode/rust/index.html +60 -0
  379. data/public/codemirror/mode/rust/rust.js +451 -0
  380. data/public/codemirror/mode/sass/index.html +66 -0
  381. data/public/codemirror/mode/sass/sass.js +414 -0
  382. data/public/codemirror/mode/scheme/index.html +77 -0
  383. data/public/codemirror/mode/scheme/scheme.js +249 -0
  384. data/public/codemirror/mode/shell/index.html +66 -0
  385. data/public/codemirror/mode/shell/shell.js +139 -0
  386. data/public/codemirror/mode/shell/test.js +58 -0
  387. data/public/codemirror/mode/sieve/index.html +93 -0
  388. data/public/codemirror/mode/sieve/sieve.js +193 -0
  389. data/public/codemirror/mode/slim/index.html +96 -0
  390. data/public/codemirror/mode/slim/slim.js +575 -0
  391. data/public/codemirror/mode/slim/test.js +96 -0
  392. data/public/codemirror/mode/smalltalk/index.html +68 -0
  393. data/public/codemirror/mode/smalltalk/smalltalk.js +168 -0
  394. data/public/codemirror/mode/smarty/index.html +138 -0
  395. data/public/codemirror/mode/smarty/smarty.js +225 -0
  396. data/public/codemirror/mode/solr/index.html +57 -0
  397. data/public/codemirror/mode/solr/solr.js +104 -0
  398. data/public/codemirror/mode/soy/index.html +68 -0
  399. data/public/codemirror/mode/soy/soy.js +198 -0
  400. data/public/codemirror/mode/sparql/index.html +61 -0
  401. data/public/codemirror/mode/sparql/sparql.js +174 -0
  402. data/public/codemirror/mode/spreadsheet/index.html +42 -0
  403. data/public/codemirror/mode/spreadsheet/spreadsheet.js +109 -0
  404. data/public/codemirror/mode/sql/index.html +84 -0
  405. data/public/codemirror/mode/sql/sql.js +391 -0
  406. data/public/codemirror/mode/stex/index.html +110 -0
  407. data/public/codemirror/mode/stex/stex.js +251 -0
  408. data/public/codemirror/mode/stex/test.js +123 -0
  409. data/public/codemirror/mode/stylus/index.html +106 -0
  410. data/public/codemirror/mode/stylus/stylus.js +768 -0
  411. data/public/codemirror/mode/swift/index.html +88 -0
  412. data/public/codemirror/mode/swift/swift.js +203 -0
  413. data/public/codemirror/mode/tcl/index.html +142 -0
  414. data/public/codemirror/mode/tcl/tcl.js +147 -0
  415. data/public/codemirror/mode/textile/index.html +191 -0
  416. data/public/codemirror/mode/textile/test.js +417 -0
  417. data/public/codemirror/mode/textile/textile.js +469 -0
  418. data/public/codemirror/mode/tiddlywiki/index.html +154 -0
  419. data/public/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  420. data/public/codemirror/mode/tiddlywiki/tiddlywiki.js +358 -0
  421. data/public/codemirror/mode/tiki/index.html +95 -0
  422. data/public/codemirror/mode/tiki/tiki.css +26 -0
  423. data/public/codemirror/mode/tiki/tiki.js +312 -0
  424. data/public/codemirror/mode/toml/index.html +73 -0
  425. data/public/codemirror/mode/toml/toml.js +88 -0
  426. data/public/codemirror/mode/tornado/index.html +63 -0
  427. data/public/codemirror/mode/tornado/tornado.js +68 -0
  428. data/public/codemirror/mode/troff/index.html +146 -0
  429. data/public/codemirror/mode/troff/troff.js +82 -0
  430. data/public/codemirror/mode/ttcn-cfg/index.html +115 -0
  431. data/public/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
  432. data/public/codemirror/mode/ttcn/index.html +118 -0
  433. data/public/codemirror/mode/ttcn/ttcn.js +283 -0
  434. data/public/codemirror/mode/turtle/index.html +50 -0
  435. data/public/codemirror/mode/turtle/turtle.js +162 -0
  436. data/public/codemirror/mode/twig/index.html +45 -0
  437. data/public/codemirror/mode/twig/twig.js +132 -0
  438. data/public/codemirror/mode/vb/index.html +102 -0
  439. data/public/codemirror/mode/vb/vb.js +276 -0
  440. data/public/codemirror/mode/vbscript/index.html +55 -0
  441. data/public/codemirror/mode/vbscript/vbscript.js +350 -0
  442. data/public/codemirror/mode/velocity/index.html +118 -0
  443. data/public/codemirror/mode/velocity/velocity.js +201 -0
  444. data/public/codemirror/mode/verilog/index.html +120 -0
  445. data/public/codemirror/mode/verilog/test.js +273 -0
  446. data/public/codemirror/mode/verilog/verilog.js +537 -0
  447. data/public/codemirror/mode/vhdl/index.html +95 -0
  448. data/public/codemirror/mode/vhdl/vhdl.js +189 -0
  449. data/public/codemirror/mode/xml/index.html +57 -0
  450. data/public/codemirror/mode/xml/test.js +51 -0
  451. data/public/codemirror/mode/xml/xml.js +385 -0
  452. data/public/codemirror/mode/xquery/index.html +210 -0
  453. data/public/codemirror/mode/xquery/test.js +67 -0
  454. data/public/codemirror/mode/xquery/xquery.js +437 -0
  455. data/public/codemirror/mode/yaml/index.html +80 -0
  456. data/public/codemirror/mode/yaml/yaml.js +117 -0
  457. data/public/codemirror/mode/z80/index.html +53 -0
  458. data/public/codemirror/mode/z80/z80.js +116 -0
  459. data/public/codemirror/package.json +20 -0
  460. data/public/codemirror/test/comment_test.js +100 -0
  461. data/public/codemirror/test/doc_test.js +371 -0
  462. data/public/codemirror/test/driver.js +138 -0
  463. data/public/codemirror/test/emacs_test.js +147 -0
  464. data/public/codemirror/test/index.html +241 -0
  465. data/public/codemirror/test/lint.js +11 -0
  466. data/public/codemirror/test/mode_test.css +23 -0
  467. data/public/codemirror/test/mode_test.js +192 -0
  468. data/public/codemirror/test/multi_test.js +285 -0
  469. data/public/codemirror/test/phantom_driver.js +31 -0
  470. data/public/codemirror/test/run.js +31 -0
  471. data/public/codemirror/test/scroll_test.js +115 -0
  472. data/public/codemirror/test/search_test.js +62 -0
  473. data/public/codemirror/test/sql-hint-test.js +189 -0
  474. data/public/codemirror/test/sublime_test.js +303 -0
  475. data/public/codemirror/test/test.js +2142 -0
  476. data/public/codemirror/test/vim_test.js +3955 -0
  477. data/public/codemirror/theme/3024-day.css +41 -0
  478. data/public/codemirror/theme/3024-night.css +39 -0
  479. data/public/codemirror/theme/ambiance-mobile.css +5 -0
  480. data/public/codemirror/theme/ambiance.css +76 -0
  481. data/public/codemirror/theme/base16-dark.css +38 -0
  482. data/public/codemirror/theme/base16-light.css +38 -0
  483. data/public/codemirror/theme/blackboard.css +32 -0
  484. data/public/codemirror/theme/cobalt.css +25 -0
  485. data/public/codemirror/theme/colorforth.css +33 -0
  486. data/public/codemirror/theme/dracula.css +87 -0
  487. data/public/codemirror/theme/eclipse.css +23 -0
  488. data/public/codemirror/theme/elegant.css +13 -0
  489. data/public/codemirror/theme/erlang-dark.css +34 -0
  490. data/public/codemirror/theme/icecoder.css +42 -0
  491. data/public/codemirror/theme/lesser-dark.css +47 -0
  492. data/public/codemirror/theme/lines.css +109 -0
  493. data/public/codemirror/theme/liquibyte.css +95 -0
  494. data/public/codemirror/theme/material.css +105 -0
  495. data/public/codemirror/theme/mbo.css +37 -0
  496. data/public/codemirror/theme/mdn-like.css +46 -0
  497. data/public/codemirror/theme/midnight.css +47 -0
  498. data/public/codemirror/theme/monokai.css +35 -0
  499. data/public/codemirror/theme/neat.css +12 -0
  500. data/public/codemirror/theme/neo.css +43 -0
  501. data/public/codemirror/theme/night.css +28 -0
  502. data/public/codemirror/theme/paraiso-dark.css +38 -0
  503. data/public/codemirror/theme/paraiso-light.css +38 -0
  504. data/public/codemirror/theme/pastel-on-dark.css +53 -0
  505. data/public/codemirror/theme/rubyblue.css +25 -0
  506. data/public/codemirror/theme/seti.css +88 -0
  507. data/public/codemirror/theme/solarized.css +165 -0
  508. data/public/codemirror/theme/the-matrix.css +30 -0
  509. data/public/codemirror/theme/tomorrow-night-bright.css +35 -0
  510. data/public/codemirror/theme/tomorrow-night-eighties.css +38 -0
  511. data/public/codemirror/theme/ttcn.css +65 -0
  512. data/public/codemirror/theme/twilight.css +32 -0
  513. data/public/codemirror/theme/vibrant-ink.css +34 -0
  514. data/public/codemirror/theme/xq-dark.css +53 -0
  515. data/public/codemirror/theme/xq-light.css +43 -0
  516. data/public/codemirror/theme/yeti.css +86 -0
  517. data/public/codemirror/theme/zenburn.css +37 -0
  518. data/public/fira-mono/FiraMono-Bold.eot +0 -0
  519. data/public/fira-mono/FiraMono-Bold.otf +0 -0
  520. data/public/fira-mono/FiraMono-Bold.ttf +0 -0
  521. data/public/fira-mono/FiraMono-Bold.woff +0 -0
  522. data/public/fira-mono/FiraMono-Medium.eot +0 -0
  523. data/public/fira-mono/FiraMono-Medium.otf +0 -0
  524. data/public/fira-mono/FiraMono-Medium.ttf +0 -0
  525. data/public/fira-mono/FiraMono-Medium.woff +0 -0
  526. data/public/fira-mono/FiraMono-Regular.eot +0 -0
  527. data/public/fira-mono/FiraMono-Regular.otf +0 -0
  528. data/public/fira-mono/FiraMono-Regular.ttf +0 -0
  529. data/public/fira-mono/FiraMono-Regular.woff +0 -0
  530. data/public/fira-mono/fira-mono.css +32 -0
  531. data/public/heroes/lines_default_01.png +0 -0
  532. data/public/heroes/lines_default_02.png +0 -0
  533. data/public/heroes/lines_default_03.png +0 -0
  534. data/public/iconfont/iconfont.css +48 -0
  535. data/public/iconfont/iconfont.eot +0 -0
  536. data/public/iconfont/iconfont.svg +18 -0
  537. data/public/iconfont/iconfont.ttf +0 -0
  538. data/public/iconfont/iconfont.woff +0 -0
  539. data/spec/dummy/config/environments/test.rb +3 -1
  540. data/spec/dummy/db/migrate/20140505122014_base_migration.rb +84 -0
  541. data/spec/dummy/db/migrate/20140702160602_acts_as_taggable_on_migration.acts_as_taggable_on_engine.rb +31 -0
  542. data/spec/dummy/db/migrate/20140702160603_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
  543. data/spec/dummy/db/migrate/20140702160604_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
  544. data/spec/dummy/db/migrate/20141027143656_add_teaser_to_article.rb +5 -0
  545. data/spec/dummy/db/migrate/20150421093311_add_reset_password_fields_to_users.rb +6 -0
  546. data/spec/dummy/db/schema.rb +50 -50
  547. data/spec/dummy/db/seeds.rb +5 -5
  548. data/spec/factories/users.rb +1 -1
  549. data/spec/features/article_spec.rb +4 -4
  550. data/spec/features/password_reset_spec.rb +17 -17
  551. data/spec/features/user_logs_in_spec.rb +6 -8
  552. data/spec/mailers/lines/user_mailer_spec.rb +1 -1
  553. data/spec/models/article_spec.rb +6 -6
  554. data/spec/support/auth_macros.rb +2 -2
  555. metadata +492 -26
  556. metadata.gz.sig +0 -0
  557. data/app/assets/images/ic_gplus.png +0 -0
  558. data/app/assets/images/ic_gplus_hover.png +0 -0
  559. data/app/assets/images/logo.png +0 -0
  560. data/app/assets/images/logo_opoloo.png +0 -0
  561. data/app/assets/images/signet.png +0 -0
  562. data/app/assets/javascripts/lines/admin.js +0 -201
  563. data/app/assets/stylesheets/lines/admin.scss +0 -970
  564. data/app/views/layouts/lines/_messages.html.erb +0 -8
  565. data/app/views/lines/admin/articles/_formatting_guide.html.erb +0 -89
  566. data/public/heroes/001.jpg +0 -0
  567. data/public/heroes/001_dark.jpg +0 -0
  568. data/public/heroes/002.jpg +0 -0
  569. data/public/heroes/002_dark.jpg +0 -0
  570. data/public/heroes/003.jpg +0 -0
  571. data/public/heroes/003_dark.jpg +0 -0
  572. data/spec/dummy/config/lines_config.yml +0 -58
@@ -0,0 +1,369 @@
1
+ // CodeMirror, copyright (c) by Marijn Haverbeke and others
2
+ // Distributed under an MIT license: http://codemirror.net/LICENSE
3
+
4
+ /**
5
+ * Link to the project's GitHub page:
6
+ * https://github.com/pickhardt/coffeescript-codemirror-mode
7
+ */
8
+ (function(mod) {
9
+ if (typeof exports == "object" && typeof module == "object") // CommonJS
10
+ mod(require("../../lib/codemirror"));
11
+ else if (typeof define == "function" && define.amd) // AMD
12
+ define(["../../lib/codemirror"], mod);
13
+ else // Plain browser env
14
+ mod(CodeMirror);
15
+ })(function(CodeMirror) {
16
+ "use strict";
17
+
18
+ CodeMirror.defineMode("coffeescript", function(conf, parserConf) {
19
+ var ERRORCLASS = "error";
20
+
21
+ function wordRegexp(words) {
22
+ return new RegExp("^((" + words.join(")|(") + "))\\b");
23
+ }
24
+
25
+ var operators = /^(?:->|=>|\+[+=]?|-[\-=]?|\*[\*=]?|\/[\/=]?|[=!]=|<[><]?=?|>>?=?|%=?|&=?|\|=?|\^=?|\~|!|\?|(or|and|\|\||&&|\?)=)/;
26
+ var delimiters = /^(?:[()\[\]{},:`=;]|\.\.?\.?)/;
27
+ var identifiers = /^[_A-Za-z$][_A-Za-z$0-9]*/;
28
+ var properties = /^(@|this\.)[_A-Za-z$][_A-Za-z$0-9]*/;
29
+
30
+ var wordOperators = wordRegexp(["and", "or", "not",
31
+ "is", "isnt", "in",
32
+ "instanceof", "typeof"]);
33
+ var indentKeywords = ["for", "while", "loop", "if", "unless", "else",
34
+ "switch", "try", "catch", "finally", "class"];
35
+ var commonKeywords = ["break", "by", "continue", "debugger", "delete",
36
+ "do", "in", "of", "new", "return", "then",
37
+ "this", "@", "throw", "when", "until", "extends"];
38
+
39
+ var keywords = wordRegexp(indentKeywords.concat(commonKeywords));
40
+
41
+ indentKeywords = wordRegexp(indentKeywords);
42
+
43
+
44
+ var stringPrefixes = /^('{3}|\"{3}|['\"])/;
45
+ var regexPrefixes = /^(\/{3}|\/)/;
46
+ var commonConstants = ["Infinity", "NaN", "undefined", "null", "true", "false", "on", "off", "yes", "no"];
47
+ var constants = wordRegexp(commonConstants);
48
+
49
+ // Tokenizers
50
+ function tokenBase(stream, state) {
51
+ // Handle scope changes
52
+ if (stream.sol()) {
53
+ if (state.scope.align === null) state.scope.align = false;
54
+ var scopeOffset = state.scope.offset;
55
+ if (stream.eatSpace()) {
56
+ var lineOffset = stream.indentation();
57
+ if (lineOffset > scopeOffset && state.scope.type == "coffee") {
58
+ return "indent";
59
+ } else if (lineOffset < scopeOffset) {
60
+ return "dedent";
61
+ }
62
+ return null;
63
+ } else {
64
+ if (scopeOffset > 0) {
65
+ dedent(stream, state);
66
+ }
67
+ }
68
+ }
69
+ if (stream.eatSpace()) {
70
+ return null;
71
+ }
72
+
73
+ var ch = stream.peek();
74
+
75
+ // Handle docco title comment (single line)
76
+ if (stream.match("####")) {
77
+ stream.skipToEnd();
78
+ return "comment";
79
+ }
80
+
81
+ // Handle multi line comments
82
+ if (stream.match("###")) {
83
+ state.tokenize = longComment;
84
+ return state.tokenize(stream, state);
85
+ }
86
+
87
+ // Single line comment
88
+ if (ch === "#") {
89
+ stream.skipToEnd();
90
+ return "comment";
91
+ }
92
+
93
+ // Handle number literals
94
+ if (stream.match(/^-?[0-9\.]/, false)) {
95
+ var floatLiteral = false;
96
+ // Floats
97
+ if (stream.match(/^-?\d*\.\d+(e[\+\-]?\d+)?/i)) {
98
+ floatLiteral = true;
99
+ }
100
+ if (stream.match(/^-?\d+\.\d*/)) {
101
+ floatLiteral = true;
102
+ }
103
+ if (stream.match(/^-?\.\d+/)) {
104
+ floatLiteral = true;
105
+ }
106
+
107
+ if (floatLiteral) {
108
+ // prevent from getting extra . on 1..
109
+ if (stream.peek() == "."){
110
+ stream.backUp(1);
111
+ }
112
+ return "number";
113
+ }
114
+ // Integers
115
+ var intLiteral = false;
116
+ // Hex
117
+ if (stream.match(/^-?0x[0-9a-f]+/i)) {
118
+ intLiteral = true;
119
+ }
120
+ // Decimal
121
+ if (stream.match(/^-?[1-9]\d*(e[\+\-]?\d+)?/)) {
122
+ intLiteral = true;
123
+ }
124
+ // Zero by itself with no other piece of number.
125
+ if (stream.match(/^-?0(?![\dx])/i)) {
126
+ intLiteral = true;
127
+ }
128
+ if (intLiteral) {
129
+ return "number";
130
+ }
131
+ }
132
+
133
+ // Handle strings
134
+ if (stream.match(stringPrefixes)) {
135
+ state.tokenize = tokenFactory(stream.current(), false, "string");
136
+ return state.tokenize(stream, state);
137
+ }
138
+ // Handle regex literals
139
+ if (stream.match(regexPrefixes)) {
140
+ if (stream.current() != "/" || stream.match(/^.*\//, false)) { // prevent highlight of division
141
+ state.tokenize = tokenFactory(stream.current(), true, "string-2");
142
+ return state.tokenize(stream, state);
143
+ } else {
144
+ stream.backUp(1);
145
+ }
146
+ }
147
+
148
+ // Handle operators and delimiters
149
+ if (stream.match(operators) || stream.match(wordOperators)) {
150
+ return "operator";
151
+ }
152
+ if (stream.match(delimiters)) {
153
+ return "punctuation";
154
+ }
155
+
156
+ if (stream.match(constants)) {
157
+ return "atom";
158
+ }
159
+
160
+ if (stream.match(keywords)) {
161
+ return "keyword";
162
+ }
163
+
164
+ if (stream.match(identifiers)) {
165
+ return "variable";
166
+ }
167
+
168
+ if (stream.match(properties)) {
169
+ return "property";
170
+ }
171
+
172
+ // Handle non-detected items
173
+ stream.next();
174
+ return ERRORCLASS;
175
+ }
176
+
177
+ function tokenFactory(delimiter, singleline, outclass) {
178
+ return function(stream, state) {
179
+ while (!stream.eol()) {
180
+ stream.eatWhile(/[^'"\/\\]/);
181
+ if (stream.eat("\\")) {
182
+ stream.next();
183
+ if (singleline && stream.eol()) {
184
+ return outclass;
185
+ }
186
+ } else if (stream.match(delimiter)) {
187
+ state.tokenize = tokenBase;
188
+ return outclass;
189
+ } else {
190
+ stream.eat(/['"\/]/);
191
+ }
192
+ }
193
+ if (singleline) {
194
+ if (parserConf.singleLineStringErrors) {
195
+ outclass = ERRORCLASS;
196
+ } else {
197
+ state.tokenize = tokenBase;
198
+ }
199
+ }
200
+ return outclass;
201
+ };
202
+ }
203
+
204
+ function longComment(stream, state) {
205
+ while (!stream.eol()) {
206
+ stream.eatWhile(/[^#]/);
207
+ if (stream.match("###")) {
208
+ state.tokenize = tokenBase;
209
+ break;
210
+ }
211
+ stream.eatWhile("#");
212
+ }
213
+ return "comment";
214
+ }
215
+
216
+ function indent(stream, state, type) {
217
+ type = type || "coffee";
218
+ var offset = 0, align = false, alignOffset = null;
219
+ for (var scope = state.scope; scope; scope = scope.prev) {
220
+ if (scope.type === "coffee" || scope.type == "}") {
221
+ offset = scope.offset + conf.indentUnit;
222
+ break;
223
+ }
224
+ }
225
+ if (type !== "coffee") {
226
+ align = null;
227
+ alignOffset = stream.column() + stream.current().length;
228
+ } else if (state.scope.align) {
229
+ state.scope.align = false;
230
+ }
231
+ state.scope = {
232
+ offset: offset,
233
+ type: type,
234
+ prev: state.scope,
235
+ align: align,
236
+ alignOffset: alignOffset
237
+ };
238
+ }
239
+
240
+ function dedent(stream, state) {
241
+ if (!state.scope.prev) return;
242
+ if (state.scope.type === "coffee") {
243
+ var _indent = stream.indentation();
244
+ var matched = false;
245
+ for (var scope = state.scope; scope; scope = scope.prev) {
246
+ if (_indent === scope.offset) {
247
+ matched = true;
248
+ break;
249
+ }
250
+ }
251
+ if (!matched) {
252
+ return true;
253
+ }
254
+ while (state.scope.prev && state.scope.offset !== _indent) {
255
+ state.scope = state.scope.prev;
256
+ }
257
+ return false;
258
+ } else {
259
+ state.scope = state.scope.prev;
260
+ return false;
261
+ }
262
+ }
263
+
264
+ function tokenLexer(stream, state) {
265
+ var style = state.tokenize(stream, state);
266
+ var current = stream.current();
267
+
268
+ // Handle "." connected identifiers
269
+ if (current === ".") {
270
+ style = state.tokenize(stream, state);
271
+ current = stream.current();
272
+ if (/^\.[\w$]+$/.test(current)) {
273
+ return "variable";
274
+ } else {
275
+ return ERRORCLASS;
276
+ }
277
+ }
278
+
279
+ // Handle scope changes.
280
+ if (current === "return") {
281
+ state.dedent = true;
282
+ }
283
+ if (((current === "->" || current === "=>") &&
284
+ !state.lambda &&
285
+ !stream.peek())
286
+ || style === "indent") {
287
+ indent(stream, state);
288
+ }
289
+ var delimiter_index = "[({".indexOf(current);
290
+ if (delimiter_index !== -1) {
291
+ indent(stream, state, "])}".slice(delimiter_index, delimiter_index+1));
292
+ }
293
+ if (indentKeywords.exec(current)){
294
+ indent(stream, state);
295
+ }
296
+ if (current == "then"){
297
+ dedent(stream, state);
298
+ }
299
+
300
+
301
+ if (style === "dedent") {
302
+ if (dedent(stream, state)) {
303
+ return ERRORCLASS;
304
+ }
305
+ }
306
+ delimiter_index = "])}".indexOf(current);
307
+ if (delimiter_index !== -1) {
308
+ while (state.scope.type == "coffee" && state.scope.prev)
309
+ state.scope = state.scope.prev;
310
+ if (state.scope.type == current)
311
+ state.scope = state.scope.prev;
312
+ }
313
+ if (state.dedent && stream.eol()) {
314
+ if (state.scope.type == "coffee" && state.scope.prev)
315
+ state.scope = state.scope.prev;
316
+ state.dedent = false;
317
+ }
318
+
319
+ return style;
320
+ }
321
+
322
+ var external = {
323
+ startState: function(basecolumn) {
324
+ return {
325
+ tokenize: tokenBase,
326
+ scope: {offset:basecolumn || 0, type:"coffee", prev: null, align: false},
327
+ lastToken: null,
328
+ lambda: false,
329
+ dedent: 0
330
+ };
331
+ },
332
+
333
+ token: function(stream, state) {
334
+ var fillAlign = state.scope.align === null && state.scope;
335
+ if (fillAlign && stream.sol()) fillAlign.align = false;
336
+
337
+ var style = tokenLexer(stream, state);
338
+ if (fillAlign && style && style != "comment") fillAlign.align = true;
339
+
340
+ state.lastToken = {style:style, content: stream.current()};
341
+
342
+ if (stream.eol() && stream.lambda) {
343
+ state.lambda = false;
344
+ }
345
+
346
+ return style;
347
+ },
348
+
349
+ indent: function(state, text) {
350
+ if (state.tokenize != tokenBase) return 0;
351
+ var scope = state.scope;
352
+ var closer = text && "])}".indexOf(text.charAt(0)) > -1;
353
+ if (closer) while (scope.type == "coffee" && scope.prev) scope = scope.prev;
354
+ var closes = closer && scope.type === text.charAt(0);
355
+ if (scope.align)
356
+ return scope.alignOffset - (closes ? 1 : 0);
357
+ else
358
+ return (closes ? scope.prev : scope).offset;
359
+ },
360
+
361
+ lineComment: "#",
362
+ fold: "indent"
363
+ };
364
+ return external;
365
+ });
366
+
367
+ CodeMirror.defineMIME("text/x-coffeescript", "coffeescript");
368
+
369
+ });
@@ -0,0 +1,740 @@
1
+ <!doctype html>
2
+
3
+ <title>CodeMirror: CoffeeScript mode</title>
4
+ <meta charset="utf-8"/>
5
+ <link rel=stylesheet href="../../doc/docs.css">
6
+
7
+ <link rel="stylesheet" href="../../lib/codemirror.css">
8
+ <script src="../../lib/codemirror.js"></script>
9
+ <script src="coffeescript.js"></script>
10
+ <style>.CodeMirror {border-top: 1px solid silver; border-bottom: 1px solid silver;}</style>
11
+ <div id=nav>
12
+ <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
13
+
14
+ <ul>
15
+ <li><a href="../../index.html">Home</a>
16
+ <li><a href="../../doc/manual.html">Manual</a>
17
+ <li><a href="https://github.com/codemirror/codemirror">Code</a>
18
+ </ul>
19
+ <ul>
20
+ <li><a href="../index.html">Language modes</a>
21
+ <li><a class=active href="#">CoffeeScript</a>
22
+ </ul>
23
+ </div>
24
+
25
+ <article>
26
+ <h2>CoffeeScript mode</h2>
27
+ <form><textarea id="code" name="code">
28
+ # CoffeeScript mode for CodeMirror
29
+ # Copyright (c) 2011 Jeff Pickhardt, released under
30
+ # the MIT License.
31
+ #
32
+ # Modified from the Python CodeMirror mode, which also is
33
+ # under the MIT License Copyright (c) 2010 Timothy Farrell.
34
+ #
35
+ # The following script, Underscore.coffee, is used to
36
+ # demonstrate CoffeeScript mode for CodeMirror.
37
+ #
38
+ # To download CoffeeScript mode for CodeMirror, go to:
39
+ # https://github.com/pickhardt/coffeescript-codemirror-mode
40
+
41
+ # **Underscore.coffee
42
+ # (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.**
43
+ # Underscore is freely distributable under the terms of the
44
+ # [MIT license](http://en.wikipedia.org/wiki/MIT_License).
45
+ # Portions of Underscore are inspired by or borrowed from
46
+ # [Prototype.js](http://prototypejs.org/api), Oliver Steele's
47
+ # [Functional](http://osteele.com), and John Resig's
48
+ # [Micro-Templating](http://ejohn.org).
49
+ # For all details and documentation:
50
+ # http://documentcloud.github.com/underscore/
51
+
52
+
53
+ # Baseline setup
54
+ # --------------
55
+
56
+ # Establish the root object, `window` in the browser, or `global` on the server.
57
+ root = this
58
+
59
+
60
+ # Save the previous value of the `_` variable.
61
+ previousUnderscore = root._
62
+
63
+ ### Multiline
64
+ comment
65
+ ###
66
+
67
+ # Establish the object that gets thrown to break out of a loop iteration.
68
+ # `StopIteration` is SOP on Mozilla.
69
+ breaker = if typeof(StopIteration) is 'undefined' then '__break__' else StopIteration
70
+
71
+
72
+ #### Docco style single line comment (title)
73
+
74
+
75
+ # Helper function to escape **RegExp** contents, because JS doesn't have one.
76
+ escapeRegExp = (string) -> string.replace(/([.*+?^${}()|[\]\/\\])/g, '\\$1')
77
+
78
+
79
+ # Save bytes in the minified (but not gzipped) version:
80
+ ArrayProto = Array.prototype
81
+ ObjProto = Object.prototype
82
+
83
+
84
+ # Create quick reference variables for speed access to core prototypes.
85
+ slice = ArrayProto.slice
86
+ unshift = ArrayProto.unshift
87
+ toString = ObjProto.toString
88
+ hasOwnProperty = ObjProto.hasOwnProperty
89
+ propertyIsEnumerable = ObjProto.propertyIsEnumerable
90
+
91
+
92
+ # All **ECMA5** native implementations we hope to use are declared here.
93
+ nativeForEach = ArrayProto.forEach
94
+ nativeMap = ArrayProto.map
95
+ nativeReduce = ArrayProto.reduce
96
+ nativeReduceRight = ArrayProto.reduceRight
97
+ nativeFilter = ArrayProto.filter
98
+ nativeEvery = ArrayProto.every
99
+ nativeSome = ArrayProto.some
100
+ nativeIndexOf = ArrayProto.indexOf
101
+ nativeLastIndexOf = ArrayProto.lastIndexOf
102
+ nativeIsArray = Array.isArray
103
+ nativeKeys = Object.keys
104
+
105
+
106
+ # Create a safe reference to the Underscore object for use below.
107
+ _ = (obj) -> new wrapper(obj)
108
+
109
+
110
+ # Export the Underscore object for **CommonJS**.
111
+ if typeof(exports) != 'undefined' then exports._ = _
112
+
113
+
114
+ # Export Underscore to global scope.
115
+ root._ = _
116
+
117
+
118
+ # Current version.
119
+ _.VERSION = '1.1.0'
120
+
121
+
122
+ # Collection Functions
123
+ # --------------------
124
+
125
+ # The cornerstone, an **each** implementation.
126
+ # Handles objects implementing **forEach**, arrays, and raw objects.
127
+ _.each = (obj, iterator, context) ->
128
+ try
129
+ if nativeForEach and obj.forEach is nativeForEach
130
+ obj.forEach iterator, context
131
+ else if _.isNumber obj.length
132
+ iterator.call context, obj[i], i, obj for i in [0...obj.length]
133
+ else
134
+ iterator.call context, val, key, obj for own key, val of obj
135
+ catch e
136
+ throw e if e isnt breaker
137
+ obj
138
+
139
+
140
+ # Return the results of applying the iterator to each element. Use JavaScript
141
+ # 1.6's version of **map**, if possible.
142
+ _.map = (obj, iterator, context) ->
143
+ return obj.map(iterator, context) if nativeMap and obj.map is nativeMap
144
+ results = []
145
+ _.each obj, (value, index, list) ->
146
+ results.push iterator.call context, value, index, list
147
+ results
148
+
149
+
150
+ # **Reduce** builds up a single result from a list of values. Also known as
151
+ # **inject**, or **foldl**. Uses JavaScript 1.8's version of **reduce**, if possible.
152
+ _.reduce = (obj, iterator, memo, context) ->
153
+ if nativeReduce and obj.reduce is nativeReduce
154
+ iterator = _.bind iterator, context if context
155
+ return obj.reduce iterator, memo
156
+ _.each obj, (value, index, list) ->
157
+ memo = iterator.call context, memo, value, index, list
158
+ memo
159
+
160
+
161
+ # The right-associative version of **reduce**, also known as **foldr**. Uses
162
+ # JavaScript 1.8's version of **reduceRight**, if available.
163
+ _.reduceRight = (obj, iterator, memo, context) ->
164
+ if nativeReduceRight and obj.reduceRight is nativeReduceRight
165
+ iterator = _.bind iterator, context if context
166
+ return obj.reduceRight iterator, memo
167
+ reversed = _.clone(_.toArray(obj)).reverse()
168
+ _.reduce reversed, iterator, memo, context
169
+
170
+
171
+ # Return the first value which passes a truth test.
172
+ _.detect = (obj, iterator, context) ->
173
+ result = null
174
+ _.each obj, (value, index, list) ->
175
+ if iterator.call context, value, index, list
176
+ result = value
177
+ _.breakLoop()
178
+ result
179
+
180
+
181
+ # Return all the elements that pass a truth test. Use JavaScript 1.6's
182
+ # **filter**, if it exists.
183
+ _.filter = (obj, iterator, context) ->
184
+ return obj.filter iterator, context if nativeFilter and obj.filter is nativeFilter
185
+ results = []
186
+ _.each obj, (value, index, list) ->
187
+ results.push value if iterator.call context, value, index, list
188
+ results
189
+
190
+
191
+ # Return all the elements for which a truth test fails.
192
+ _.reject = (obj, iterator, context) ->
193
+ results = []
194
+ _.each obj, (value, index, list) ->
195
+ results.push value if not iterator.call context, value, index, list
196
+ results
197
+
198
+
199
+ # Determine whether all of the elements match a truth test. Delegate to
200
+ # JavaScript 1.6's **every**, if it is present.
201
+ _.every = (obj, iterator, context) ->
202
+ iterator ||= _.identity
203
+ return obj.every iterator, context if nativeEvery and obj.every is nativeEvery
204
+ result = true
205
+ _.each obj, (value, index, list) ->
206
+ _.breakLoop() unless (result = result and iterator.call(context, value, index, list))
207
+ result
208
+
209
+
210
+ # Determine if at least one element in the object matches a truth test. Use
211
+ # JavaScript 1.6's **some**, if it exists.
212
+ _.some = (obj, iterator, context) ->
213
+ iterator ||= _.identity
214
+ return obj.some iterator, context if nativeSome and obj.some is nativeSome
215
+ result = false
216
+ _.each obj, (value, index, list) ->
217
+ _.breakLoop() if (result = iterator.call(context, value, index, list))
218
+ result
219
+
220
+
221
+ # Determine if a given value is included in the array or object,
222
+ # based on `===`.
223
+ _.include = (obj, target) ->
224
+ return _.indexOf(obj, target) isnt -1 if nativeIndexOf and obj.indexOf is nativeIndexOf
225
+ return true for own key, val of obj when val is target
226
+ false
227
+
228
+
229
+ # Invoke a method with arguments on every item in a collection.
230
+ _.invoke = (obj, method) ->
231
+ args = _.rest arguments, 2
232
+ (if method then val[method] else val).apply(val, args) for val in obj
233
+
234
+
235
+ # Convenience version of a common use case of **map**: fetching a property.
236
+ _.pluck = (obj, key) ->
237
+ _.map(obj, (val) -> val[key])
238
+
239
+
240
+ # Return the maximum item or (item-based computation).
241
+ _.max = (obj, iterator, context) ->
242
+ return Math.max.apply(Math, obj) if not iterator and _.isArray(obj)
243
+ result = computed: -Infinity
244
+ _.each obj, (value, index, list) ->
245
+ computed = if iterator then iterator.call(context, value, index, list) else value
246
+ computed >= result.computed and (result = {value: value, computed: computed})
247
+ result.value
248
+
249
+
250
+ # Return the minimum element (or element-based computation).
251
+ _.min = (obj, iterator, context) ->
252
+ return Math.min.apply(Math, obj) if not iterator and _.isArray(obj)
253
+ result = computed: Infinity
254
+ _.each obj, (value, index, list) ->
255
+ computed = if iterator then iterator.call(context, value, index, list) else value
256
+ computed < result.computed and (result = {value: value, computed: computed})
257
+ result.value
258
+
259
+
260
+ # Sort the object's values by a criterion produced by an iterator.
261
+ _.sortBy = (obj, iterator, context) ->
262
+ _.pluck(((_.map obj, (value, index, list) ->
263
+ {value: value, criteria: iterator.call(context, value, index, list)}
264
+ ).sort((left, right) ->
265
+ a = left.criteria; b = right.criteria
266
+ if a < b then -1 else if a > b then 1 else 0
267
+ )), 'value')
268
+
269
+
270
+ # Use a comparator function to figure out at what index an object should
271
+ # be inserted so as to maintain order. Uses binary search.
272
+ _.sortedIndex = (array, obj, iterator) ->
273
+ iterator ||= _.identity
274
+ low = 0
275
+ high = array.length
276
+ while low < high
277
+ mid = (low + high) >> 1
278
+ if iterator(array[mid]) < iterator(obj) then low = mid + 1 else high = mid
279
+ low
280
+
281
+
282
+ # Convert anything iterable into a real, live array.
283
+ _.toArray = (iterable) ->
284
+ return [] if (!iterable)
285
+ return iterable.toArray() if (iterable.toArray)
286
+ return iterable if (_.isArray(iterable))
287
+ return slice.call(iterable) if (_.isArguments(iterable))
288
+ _.values(iterable)
289
+
290
+
291
+ # Return the number of elements in an object.
292
+ _.size = (obj) -> _.toArray(obj).length
293
+
294
+
295
+ # Array Functions
296
+ # ---------------
297
+
298
+ # Get the first element of an array. Passing `n` will return the first N
299
+ # values in the array. Aliased as **head**. The `guard` check allows it to work
300
+ # with **map**.
301
+ _.first = (array, n, guard) ->
302
+ if n and not guard then slice.call(array, 0, n) else array[0]
303
+
304
+
305
+ # Returns everything but the first entry of the array. Aliased as **tail**.
306
+ # Especially useful on the arguments object. Passing an `index` will return
307
+ # the rest of the values in the array from that index onward. The `guard`
308
+ # check allows it to work with **map**.
309
+ _.rest = (array, index, guard) ->
310
+ slice.call(array, if _.isUndefined(index) or guard then 1 else index)
311
+
312
+
313
+ # Get the last element of an array.
314
+ _.last = (array) -> array[array.length - 1]
315
+
316
+
317
+ # Trim out all falsy values from an array.
318
+ _.compact = (array) -> item for item in array when item
319
+
320
+
321
+ # Return a completely flattened version of an array.
322
+ _.flatten = (array) ->
323
+ _.reduce array, (memo, value) ->
324
+ return memo.concat(_.flatten(value)) if _.isArray value
325
+ memo.push value
326
+ memo
327
+ , []
328
+
329
+
330
+ # Return a version of the array that does not contain the specified value(s).
331
+ _.without = (array) ->
332
+ values = _.rest arguments
333
+ val for val in _.toArray(array) when not _.include values, val
334
+
335
+
336
+ # Produce a duplicate-free version of the array. If the array has already
337
+ # been sorted, you have the option of using a faster algorithm.
338
+ _.uniq = (array, isSorted) ->
339
+ memo = []
340
+ for el, i in _.toArray array
341
+ memo.push el if i is 0 || (if isSorted is true then _.last(memo) isnt el else not _.include(memo, el))
342
+ memo
343
+
344
+
345
+ # Produce an array that contains every item shared between all the
346
+ # passed-in arrays.
347
+ _.intersect = (array) ->
348
+ rest = _.rest arguments
349
+ _.select _.uniq(array), (item) ->
350
+ _.all rest, (other) ->
351
+ _.indexOf(other, item) >= 0
352
+
353
+
354
+ # Zip together multiple lists into a single array -- elements that share
355
+ # an index go together.
356
+ _.zip = ->
357
+ length = _.max _.pluck arguments, 'length'
358
+ results = new Array length
359
+ for i in [0...length]
360
+ results[i] = _.pluck arguments, String i
361
+ results
362
+
363
+
364
+ # If the browser doesn't supply us with **indexOf** (I'm looking at you, MSIE),
365
+ # we need this function. Return the position of the first occurrence of an
366
+ # item in an array, or -1 if the item is not included in the array.
367
+ _.indexOf = (array, item) ->
368
+ return array.indexOf item if nativeIndexOf and array.indexOf is nativeIndexOf
369
+ i = 0; l = array.length
370
+ while l - i
371
+ if array[i] is item then return i else i++
372
+ -1
373
+
374
+
375
+ # Provide JavaScript 1.6's **lastIndexOf**, delegating to the native function,
376
+ # if possible.
377
+ _.lastIndexOf = (array, item) ->
378
+ return array.lastIndexOf(item) if nativeLastIndexOf and array.lastIndexOf is nativeLastIndexOf
379
+ i = array.length
380
+ while i
381
+ if array[i] is item then return i else i--
382
+ -1
383
+
384
+
385
+ # Generate an integer Array containing an arithmetic progression. A port of
386
+ # [the native Python **range** function](http://docs.python.org/library/functions.html#range).
387
+ _.range = (start, stop, step) ->
388
+ a = arguments
389
+ solo = a.length <= 1
390
+ i = start = if solo then 0 else a[0]
391
+ stop = if solo then a[0] else a[1]
392
+ step = a[2] or 1
393
+ len = Math.ceil((stop - start) / step)
394
+ return [] if len <= 0
395
+ range = new Array len
396
+ idx = 0
397
+ loop
398
+ return range if (if step > 0 then i - stop else stop - i) >= 0
399
+ range[idx] = i
400
+ idx++
401
+ i+= step
402
+
403
+
404
+ # Function Functions
405
+ # ------------------
406
+
407
+ # Create a function bound to a given object (assigning `this`, and arguments,
408
+ # optionally). Binding with arguments is also known as **curry**.
409
+ _.bind = (func, obj) ->
410
+ args = _.rest arguments, 2
411
+ -> func.apply obj or root, args.concat arguments
412
+
413
+
414
+ # Bind all of an object's methods to that object. Useful for ensuring that
415
+ # all callbacks defined on an object belong to it.
416
+ _.bindAll = (obj) ->
417
+ funcs = if arguments.length > 1 then _.rest(arguments) else _.functions(obj)
418
+ _.each funcs, (f) -> obj[f] = _.bind obj[f], obj
419
+ obj
420
+
421
+
422
+ # Delays a function for the given number of milliseconds, and then calls
423
+ # it with the arguments supplied.
424
+ _.delay = (func, wait) ->
425
+ args = _.rest arguments, 2
426
+ setTimeout((-> func.apply(func, args)), wait)
427
+
428
+
429
+ # Memoize an expensive function by storing its results.
430
+ _.memoize = (func, hasher) ->
431
+ memo = {}
432
+ hasher or= _.identity
433
+ ->
434
+ key = hasher.apply this, arguments
435
+ return memo[key] if key of memo
436
+ memo[key] = func.apply this, arguments
437
+
438
+
439
+ # Defers a function, scheduling it to run after the current call stack has
440
+ # cleared.
441
+ _.defer = (func) ->
442
+ _.delay.apply _, [func, 1].concat _.rest arguments
443
+
444
+
445
+ # Returns the first function passed as an argument to the second,
446
+ # allowing you to adjust arguments, run code before and after, and
447
+ # conditionally execute the original function.
448
+ _.wrap = (func, wrapper) ->
449
+ -> wrapper.apply wrapper, [func].concat arguments
450
+
451
+
452
+ # Returns a function that is the composition of a list of functions, each
453
+ # consuming the return value of the function that follows.
454
+ _.compose = ->
455
+ funcs = arguments
456
+ ->
457
+ args = arguments
458
+ for i in [funcs.length - 1..0] by -1
459
+ args = [funcs[i].apply(this, args)]
460
+ args[0]
461
+
462
+
463
+ # Object Functions
464
+ # ----------------
465
+
466
+ # Retrieve the names of an object's properties.
467
+ _.keys = nativeKeys or (obj) ->
468
+ return _.range 0, obj.length if _.isArray(obj)
469
+ key for key, val of obj
470
+
471
+
472
+ # Retrieve the values of an object's properties.
473
+ _.values = (obj) ->
474
+ _.map obj, _.identity
475
+
476
+
477
+ # Return a sorted list of the function names available in Underscore.
478
+ _.functions = (obj) ->
479
+ _.filter(_.keys(obj), (key) -> _.isFunction(obj[key])).sort()
480
+
481
+
482
+ # Extend a given object with all of the properties in a source object.
483
+ _.extend = (obj) ->
484
+ for source in _.rest(arguments)
485
+ obj[key] = val for key, val of source
486
+ obj
487
+
488
+
489
+ # Create a (shallow-cloned) duplicate of an object.
490
+ _.clone = (obj) ->
491
+ return obj.slice 0 if _.isArray obj
492
+ _.extend {}, obj
493
+
494
+
495
+ # Invokes interceptor with the obj, and then returns obj.
496
+ # The primary purpose of this method is to "tap into" a method chain,
497
+ # in order to perform operations on intermediate results within
498
+ the chain.
499
+ _.tap = (obj, interceptor) ->
500
+ interceptor obj
501
+ obj
502
+
503
+
504
+ # Perform a deep comparison to check if two objects are equal.
505
+ _.isEqual = (a, b) ->
506
+ # Check object identity.
507
+ return true if a is b
508
+ # Different types?
509
+ atype = typeof(a); btype = typeof(b)
510
+ return false if atype isnt btype
511
+ # Basic equality test (watch out for coercions).
512
+ return true if `a == b`
513
+ # One is falsy and the other truthy.
514
+ return false if (!a and b) or (a and !b)
515
+ # One of them implements an `isEqual()`?
516
+ return a.isEqual(b) if a.isEqual
517
+ # Check dates' integer values.
518
+ return a.getTime() is b.getTime() if _.isDate(a) and _.isDate(b)
519
+ # Both are NaN?
520
+ return false if _.isNaN(a) and _.isNaN(b)
521
+ # Compare regular expressions.
522
+ if _.isRegExp(a) and _.isRegExp(b)
523
+ return a.source is b.source and
524
+ a.global is b.global and
525
+ a.ignoreCase is b.ignoreCase and
526
+ a.multiline is b.multiline
527
+ # If a is not an object by this point, we can't handle it.
528
+ return false if atype isnt 'object'
529
+ # Check for different array lengths before comparing contents.
530
+ return false if a.length and (a.length isnt b.length)
531
+ # Nothing else worked, deep compare the contents.
532
+ aKeys = _.keys(a); bKeys = _.keys(b)
533
+ # Different object sizes?
534
+ return false if aKeys.length isnt bKeys.length
535
+ # Recursive comparison of contents.
536
+ return false for key, val of a when !(key of b) or !_.isEqual(val, b[key])
537
+ true
538
+
539
+
540
+ # Is a given array or object empty?
541
+ _.isEmpty = (obj) ->
542
+ return obj.length is 0 if _.isArray(obj) or _.isString(obj)
543
+ return false for own key of obj
544
+ true
545
+
546
+
547
+ # Is a given value a DOM element?
548
+ _.isElement = (obj) -> obj and obj.nodeType is 1
549
+
550
+
551
+ # Is a given value an array?
552
+ _.isArray = nativeIsArray or (obj) -> !!(obj and obj.concat and obj.unshift and not obj.callee)
553
+
554
+
555
+ # Is a given variable an arguments object?
556
+ _.isArguments = (obj) -> obj and obj.callee
557
+
558
+
559
+ # Is the given value a function?
560
+ _.isFunction = (obj) -> !!(obj and obj.constructor and obj.call and obj.apply)
561
+
562
+
563
+ # Is the given value a string?
564
+ _.isString = (obj) -> !!(obj is '' or (obj and obj.charCodeAt and obj.substr))
565
+
566
+
567
+ # Is a given value a number?
568
+ _.isNumber = (obj) -> (obj is +obj) or toString.call(obj) is '[object Number]'
569
+
570
+
571
+ # Is a given value a boolean?
572
+ _.isBoolean = (obj) -> obj is true or obj is false
573
+
574
+
575
+ # Is a given value a Date?
576
+ _.isDate = (obj) -> !!(obj and obj.getTimezoneOffset and obj.setUTCFullYear)
577
+
578
+
579
+ # Is the given value a regular expression?
580
+ _.isRegExp = (obj) -> !!(obj and obj.exec and (obj.ignoreCase or obj.ignoreCase is false))
581
+
582
+
583
+ # Is the given value NaN -- this one is interesting. `NaN != NaN`, and
584
+ # `isNaN(undefined) == true`, so we make sure it's a number first.
585
+ _.isNaN = (obj) -> _.isNumber(obj) and window.isNaN(obj)
586
+
587
+
588
+ # Is a given value equal to null?
589
+ _.isNull = (obj) -> obj is null
590
+
591
+
592
+ # Is a given variable undefined?
593
+ _.isUndefined = (obj) -> typeof obj is 'undefined'
594
+
595
+
596
+ # Utility Functions
597
+ # -----------------
598
+
599
+ # Run Underscore.js in noConflict mode, returning the `_` variable to its
600
+ # previous owner. Returns a reference to the Underscore object.
601
+ _.noConflict = ->
602
+ root._ = previousUnderscore
603
+ this
604
+
605
+
606
+ # Keep the identity function around for default iterators.
607
+ _.identity = (value) -> value
608
+
609
+
610
+ # Run a function `n` times.
611
+ _.times = (n, iterator, context) ->
612
+ iterator.call context, i for i in [0...n]
613
+
614
+
615
+ # Break out of the middle of an iteration.
616
+ _.breakLoop = -> throw breaker
617
+
618
+
619
+ # Add your own custom functions to the Underscore object, ensuring that
620
+ # they're correctly added to the OOP wrapper as well.
621
+ _.mixin = (obj) ->
622
+ for name in _.functions(obj)
623
+ addToWrapper name, _[name] = obj[name]
624
+
625
+
626
+ # Generate a unique integer id (unique within the entire client session).
627
+ # Useful for temporary DOM ids.
628
+ idCounter = 0
629
+ _.uniqueId = (prefix) ->
630
+ (prefix or '') + idCounter++
631
+
632
+
633
+ # By default, Underscore uses **ERB**-style template delimiters, change the
634
+ # following template settings to use alternative delimiters.
635
+ _.templateSettings = {
636
+ start: '<%'
637
+ end: '%>'
638
+ interpolate: /<%=(.+?)%>/g
639
+ }
640
+
641
+
642
+ # JavaScript templating a-la **ERB**, pilfered from John Resig's
643
+ # *Secrets of the JavaScript Ninja*, page 83.
644
+ # Single-quote fix from Rick Strahl.
645
+ # With alterations for arbitrary delimiters, and to preserve whitespace.
646
+ _.template = (str, data) ->
647
+ c = _.templateSettings
648
+ endMatch = new RegExp("'(?=[^"+c.end.substr(0, 1)+"]*"+escapeRegExp(c.end)+")","g")
649
+ fn = new Function 'obj',
650
+ 'var p=[],print=function(){p.push.apply(p,arguments);};' +
651
+ 'with(obj||{}){p.push(\'' +
652
+ str.replace(/\r/g, '\\r')
653
+ .replace(/\n/g, '\\n')
654
+ .replace(/\t/g, '\\t')
655
+ .replace(endMatch,"���")
656
+ .split("'").join("\\'")
657
+ .split("���").join("'")
658
+ .replace(c.interpolate, "',$1,'")
659
+ .split(c.start).join("');")
660
+ .split(c.end).join("p.push('") +
661
+ "');}return p.join('');"
662
+ if data then fn(data) else fn
663
+
664
+
665
+ # Aliases
666
+ # -------
667
+
668
+ _.forEach = _.each
669
+ _.foldl = _.inject = _.reduce
670
+ _.foldr = _.reduceRight
671
+ _.select = _.filter
672
+ _.all = _.every
673
+ _.any = _.some
674
+ _.contains = _.include
675
+ _.head = _.first
676
+ _.tail = _.rest
677
+ _.methods = _.functions
678
+
679
+
680
+ # Setup the OOP Wrapper
681
+ # ---------------------
682
+
683
+ # If Underscore is called as a function, it returns a wrapped object that
684
+ # can be used OO-style. This wrapper holds altered versions of all the
685
+ # underscore functions. Wrapped objects may be chained.
686
+ wrapper = (obj) ->
687
+ this._wrapped = obj
688
+ this
689
+
690
+
691
+ # Helper function to continue chaining intermediate results.
692
+ result = (obj, chain) ->
693
+ if chain then _(obj).chain() else obj
694
+
695
+
696
+ # A method to easily add functions to the OOP wrapper.
697
+ addToWrapper = (name, func) ->
698
+ wrapper.prototype[name] = ->
699
+ args = _.toArray arguments
700
+ unshift.call args, this._wrapped
701
+ result func.apply(_, args), this._chain
702
+
703
+
704
+ # Add all ofthe Underscore functions to the wrapper object.
705
+ _.mixin _
706
+
707
+
708
+ # Add all mutator Array functions to the wrapper.
709
+ _.each ['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], (name) ->
710
+ method = Array.prototype[name]
711
+ wrapper.prototype[name] = ->
712
+ method.apply(this._wrapped, arguments)
713
+ result(this._wrapped, this._chain)
714
+
715
+
716
+ # Add all accessor Array functions to the wrapper.
717
+ _.each ['concat', 'join', 'slice'], (name) ->
718
+ method = Array.prototype[name]
719
+ wrapper.prototype[name] = ->
720
+ result(method.apply(this._wrapped, arguments), this._chain)
721
+
722
+
723
+ # Start chaining a wrapped Underscore object.
724
+ wrapper::chain = ->
725
+ this._chain = true
726
+ this
727
+
728
+
729
+ # Extracts the result from a wrapped and chained object.
730
+ wrapper::value = -> this._wrapped
731
+ </textarea></form>
732
+ <script>
733
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {});
734
+ </script>
735
+
736
+ <p><strong>MIME types defined:</strong> <code>text/x-coffeescript</code>.</p>
737
+
738
+ <p>The CoffeeScript mode was written by Jeff Pickhardt.</p>
739
+
740
+ </article>