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,252 @@
1
+ <!doctype html>
2
+
3
+ <title>CodeMirror: C-like 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="../../addon/edit/matchbrackets.js"></script>
10
+ <link rel="stylesheet" href="../../addon/hint/show-hint.css">
11
+ <script src="../../addon/hint/show-hint.js"></script>
12
+ <script src="clike.js"></script>
13
+ <style>.CodeMirror {border: 2px inset #dee;}</style>
14
+ <div id=nav>
15
+ <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
16
+
17
+ <ul>
18
+ <li><a href="../../index.html">Home</a>
19
+ <li><a href="../../doc/manual.html">Manual</a>
20
+ <li><a href="https://github.com/codemirror/codemirror">Code</a>
21
+ </ul>
22
+ <ul>
23
+ <li><a href="../index.html">Language modes</a>
24
+ <li><a class=active href="#">C-like</a>
25
+ </ul>
26
+ </div>
27
+
28
+ <article>
29
+ <h2>C-like mode</h2>
30
+
31
+ <div><textarea id="c-code">
32
+ /* C demo code */
33
+
34
+ #include <zmq.h>
35
+ #include <pthread.h>
36
+ #include <semaphore.h>
37
+ #include <time.h>
38
+ #include <stdio.h>
39
+ #include <fcntl.h>
40
+ #include <malloc.h>
41
+
42
+ typedef struct {
43
+ void* arg_socket;
44
+ zmq_msg_t* arg_msg;
45
+ char* arg_string;
46
+ unsigned long arg_len;
47
+ int arg_int, arg_command;
48
+
49
+ int signal_fd;
50
+ int pad;
51
+ void* context;
52
+ sem_t sem;
53
+ } acl_zmq_context;
54
+
55
+ #define p(X) (context->arg_##X)
56
+
57
+ void* zmq_thread(void* context_pointer) {
58
+ acl_zmq_context* context = (acl_zmq_context*)context_pointer;
59
+ char ok = 'K', err = 'X';
60
+ int res;
61
+
62
+ while (1) {
63
+ while ((res = sem_wait(&amp;context->sem)) == EINTR);
64
+ if (res) {write(context->signal_fd, &amp;err, 1); goto cleanup;}
65
+ switch(p(command)) {
66
+ case 0: goto cleanup;
67
+ case 1: p(socket) = zmq_socket(context->context, p(int)); break;
68
+ case 2: p(int) = zmq_close(p(socket)); break;
69
+ case 3: p(int) = zmq_bind(p(socket), p(string)); break;
70
+ case 4: p(int) = zmq_connect(p(socket), p(string)); break;
71
+ case 5: p(int) = zmq_getsockopt(p(socket), p(int), (void*)p(string), &amp;p(len)); break;
72
+ case 6: p(int) = zmq_setsockopt(p(socket), p(int), (void*)p(string), p(len)); break;
73
+ case 7: p(int) = zmq_send(p(socket), p(msg), p(int)); break;
74
+ case 8: p(int) = zmq_recv(p(socket), p(msg), p(int)); break;
75
+ case 9: p(int) = zmq_poll(p(socket), p(int), p(len)); break;
76
+ }
77
+ p(command) = errno;
78
+ write(context->signal_fd, &amp;ok, 1);
79
+ }
80
+ cleanup:
81
+ close(context->signal_fd);
82
+ free(context_pointer);
83
+ return 0;
84
+ }
85
+
86
+ void* zmq_thread_init(void* zmq_context, int signal_fd) {
87
+ acl_zmq_context* context = malloc(sizeof(acl_zmq_context));
88
+ pthread_t thread;
89
+
90
+ context->context = zmq_context;
91
+ context->signal_fd = signal_fd;
92
+ sem_init(&amp;context->sem, 1, 0);
93
+ pthread_create(&amp;thread, 0, &amp;zmq_thread, context);
94
+ pthread_detach(thread);
95
+ return context;
96
+ }
97
+ </textarea></div>
98
+
99
+ <h2>C++ example</h2>
100
+
101
+ <div><textarea id="cpp-code">
102
+ #include <iostream>
103
+ #include "mystuff/util.h"
104
+
105
+ namespace {
106
+ enum Enum {
107
+ VAL1, VAL2, VAL3
108
+ };
109
+
110
+ char32_t unicode_string = U"\U0010FFFF";
111
+ string raw_string = R"delim(anything
112
+ you
113
+ want)delim";
114
+
115
+ int Helper(const MyType& param) {
116
+ return 0;
117
+ }
118
+ } // namespace
119
+
120
+ class ForwardDec;
121
+
122
+ template <class T, class V>
123
+ class Class : public BaseClass {
124
+ const MyType<T, V> member_;
125
+
126
+ public:
127
+ const MyType<T, V>& Method() const {
128
+ return member_;
129
+ }
130
+
131
+ void Method2(MyType<T, V>* value);
132
+ }
133
+
134
+ template <class T, class V>
135
+ void Class::Method2(MyType<T, V>* value) {
136
+ std::out << 1 >> method();
137
+ value->Method3(member_);
138
+ member_ = value;
139
+ }
140
+ </textarea></div>
141
+
142
+ <h2>Objective-C example</h2>
143
+
144
+ <div><textarea id="objectivec-code">
145
+ /*
146
+ This is a longer comment
147
+ That spans two lines
148
+ */
149
+
150
+ #import <Test/Test.h>
151
+ @implementation YourAppDelegate
152
+
153
+ // This is a one-line comment
154
+
155
+ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
156
+ char myString[] = "This is a C character array";
157
+ int test = 5;
158
+ return YES;
159
+ }
160
+ </textarea></div>
161
+
162
+ <h2>Java example</h2>
163
+
164
+ <div><textarea id="java-code">
165
+ import com.demo.util.MyType;
166
+ import com.demo.util.MyInterface;
167
+
168
+ public enum Enum {
169
+ VAL1, VAL2, VAL3
170
+ }
171
+
172
+ public class Class<T, V> implements MyInterface {
173
+ public static final MyType<T, V> member;
174
+
175
+ private class InnerClass {
176
+ public int zero() {
177
+ return 0;
178
+ }
179
+ }
180
+
181
+ @Override
182
+ public MyType method() {
183
+ return member;
184
+ }
185
+
186
+ public void method2(MyType<T, V> value) {
187
+ method();
188
+ value.method3();
189
+ member = value;
190
+ }
191
+ }
192
+ </textarea></div>
193
+
194
+ <h2>Scala example</h2>
195
+
196
+ <div><textarea id="scala-code">
197
+ object FilterTest extends App {
198
+ def filter(xs: List[Int], threshold: Int) = {
199
+ def process(ys: List[Int]): List[Int] =
200
+ if (ys.isEmpty) ys
201
+ else if (ys.head < threshold) ys.head :: process(ys.tail)
202
+ else process(ys.tail)
203
+ process(xs)
204
+ }
205
+ println(filter(List(1, 9, 2, 8, 3, 7, 4), 5))
206
+ }
207
+ </textarea></div>
208
+
209
+ <script>
210
+ var cEditor = CodeMirror.fromTextArea(document.getElementById("c-code"), {
211
+ lineNumbers: true,
212
+ matchBrackets: true,
213
+ mode: "text/x-csrc"
214
+ });
215
+ var cppEditor = CodeMirror.fromTextArea(document.getElementById("cpp-code"), {
216
+ lineNumbers: true,
217
+ matchBrackets: true,
218
+ mode: "text/x-c++src"
219
+ });
220
+ var javaEditor = CodeMirror.fromTextArea(document.getElementById("java-code"), {
221
+ lineNumbers: true,
222
+ matchBrackets: true,
223
+ mode: "text/x-java"
224
+ });
225
+ var objectivecEditor = CodeMirror.fromTextArea(document.getElementById("objectivec-code"), {
226
+ lineNumbers: true,
227
+ matchBrackets: true,
228
+ mode: "text/x-objectivec"
229
+ });
230
+ var scalaEditor = CodeMirror.fromTextArea(document.getElementById("scala-code"), {
231
+ lineNumbers: true,
232
+ matchBrackets: true,
233
+ mode: "text/x-scala"
234
+ });
235
+ var mac = CodeMirror.keyMap.default == CodeMirror.keyMap.macDefault;
236
+ CodeMirror.keyMap.default[(mac ? "Cmd" : "Ctrl") + "-Space"] = "autocomplete";
237
+ </script>
238
+
239
+ <p>Simple mode that tries to handle C-like languages as well as it
240
+ can. Takes two configuration parameters: <code>keywords</code>, an
241
+ object whose property names are the keywords in the language,
242
+ and <code>useCPP</code>, which determines whether C preprocessor
243
+ directives are recognized.</p>
244
+
245
+ <p><strong>MIME types defined:</strong> <code>text/x-csrc</code>
246
+ (C), <code>text/x-c++src</code> (C++), <code>text/x-java</code>
247
+ (Java), <code>text/x-csharp</code> (C#),
248
+ <code>text/x-objectivec</code> (Objective-C),
249
+ <code>text/x-scala</code> (Scala), <code>text/x-vertex</code>
250
+ and <code>x-shader/x-fragment</code> (shader programs),
251
+ <code>text/x-squirrel</code> (Squirrel).</p>
252
+ </article>
@@ -0,0 +1,767 @@
1
+ <!doctype html>
2
+
3
+ <title>CodeMirror: Scala 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
+ <link rel="stylesheet" href="../../theme/ambiance.css">
9
+ <script src="../../lib/codemirror.js"></script>
10
+ <script src="../../addon/edit/matchbrackets.js"></script>
11
+ <script src="clike.js"></script>
12
+ <div id=nav>
13
+ <a href="http://codemirror.net"><h1>CodeMirror</h1><img id=logo src="../../doc/logo.png"></a>
14
+
15
+ <ul>
16
+ <li><a href="../../index.html">Home</a>
17
+ <li><a href="../../doc/manual.html">Manual</a>
18
+ <li><a href="https://github.com/codemirror/codemirror">Code</a>
19
+ </ul>
20
+ <ul>
21
+ <li><a href="../index.html">Language modes</a>
22
+ <li><a class=active href="#">Scala</a>
23
+ </ul>
24
+ </div>
25
+
26
+ <article>
27
+ <h2>Scala mode</h2>
28
+ <form>
29
+ <textarea id="code" name="code">
30
+
31
+ /* __ *\
32
+ ** ________ ___ / / ___ Scala API **
33
+ ** / __/ __// _ | / / / _ | (c) 2003-2011, LAMP/EPFL **
34
+ ** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
35
+ ** /____/\___/_/ |_/____/_/ | | **
36
+ ** |/ **
37
+ \* */
38
+
39
+ package scala.collection
40
+
41
+ import generic._
42
+ import mutable.{ Builder, ListBuffer }
43
+ import annotation.{tailrec, migration, bridge}
44
+ import annotation.unchecked.{ uncheckedVariance => uV }
45
+ import parallel.ParIterable
46
+
47
+ /** A template trait for traversable collections of type `Traversable[A]`.
48
+ *
49
+ * $traversableInfo
50
+ * @define mutability
51
+ * @define traversableInfo
52
+ * This is a base trait of all kinds of $mutability Scala collections. It
53
+ * implements the behavior common to all collections, in terms of a method
54
+ * `foreach` with signature:
55
+ * {{{
56
+ * def foreach[U](f: Elem => U): Unit
57
+ * }}}
58
+ * Collection classes mixing in this trait provide a concrete
59
+ * `foreach` method which traverses all the
60
+ * elements contained in the collection, applying a given function to each.
61
+ * They also need to provide a method `newBuilder`
62
+ * which creates a builder for collections of the same kind.
63
+ *
64
+ * A traversable class might or might not have two properties: strictness
65
+ * and orderedness. Neither is represented as a type.
66
+ *
67
+ * The instances of a strict collection class have all their elements
68
+ * computed before they can be used as values. By contrast, instances of
69
+ * a non-strict collection class may defer computation of some of their
70
+ * elements until after the instance is available as a value.
71
+ * A typical example of a non-strict collection class is a
72
+ * <a href="../immutable/Stream.html" target="ContentFrame">
73
+ * `scala.collection.immutable.Stream`</a>.
74
+ * A more general class of examples are `TraversableViews`.
75
+ *
76
+ * If a collection is an instance of an ordered collection class, traversing
77
+ * its elements with `foreach` will always visit elements in the
78
+ * same order, even for different runs of the program. If the class is not
79
+ * ordered, `foreach` can visit elements in different orders for
80
+ * different runs (but it will keep the same order in the same run).'
81
+ *
82
+ * A typical example of a collection class which is not ordered is a
83
+ * `HashMap` of objects. The traversal order for hash maps will
84
+ * depend on the hash codes of its elements, and these hash codes might
85
+ * differ from one run to the next. By contrast, a `LinkedHashMap`
86
+ * is ordered because it's `foreach` method visits elements in the
87
+ * order they were inserted into the `HashMap`.
88
+ *
89
+ * @author Martin Odersky
90
+ * @version 2.8
91
+ * @since 2.8
92
+ * @tparam A the element type of the collection
93
+ * @tparam Repr the type of the actual collection containing the elements.
94
+ *
95
+ * @define Coll Traversable
96
+ * @define coll traversable collection
97
+ */
98
+ trait TraversableLike[+A, +Repr] extends HasNewBuilder[A, Repr]
99
+ with FilterMonadic[A, Repr]
100
+ with TraversableOnce[A]
101
+ with GenTraversableLike[A, Repr]
102
+ with Parallelizable[A, ParIterable[A]]
103
+ {
104
+ self =>
105
+
106
+ import Traversable.breaks._
107
+
108
+ /** The type implementing this traversable */
109
+ protected type Self = Repr
110
+
111
+ /** The collection of type $coll underlying this `TraversableLike` object.
112
+ * By default this is implemented as the `TraversableLike` object itself,
113
+ * but this can be overridden.
114
+ */
115
+ def repr: Repr = this.asInstanceOf[Repr]
116
+
117
+ /** The underlying collection seen as an instance of `$Coll`.
118
+ * By default this is implemented as the current collection object itself,
119
+ * but this can be overridden.
120
+ */
121
+ protected[this] def thisCollection: Traversable[A] = this.asInstanceOf[Traversable[A]]
122
+
123
+ /** A conversion from collections of type `Repr` to `$Coll` objects.
124
+ * By default this is implemented as just a cast, but this can be overridden.
125
+ */
126
+ protected[this] def toCollection(repr: Repr): Traversable[A] = repr.asInstanceOf[Traversable[A]]
127
+
128
+ /** Creates a new builder for this collection type.
129
+ */
130
+ protected[this] def newBuilder: Builder[A, Repr]
131
+
132
+ protected[this] def parCombiner = ParIterable.newCombiner[A]
133
+
134
+ /** Applies a function `f` to all elements of this $coll.
135
+ *
136
+ * Note: this method underlies the implementation of most other bulk operations.
137
+ * It's important to implement this method in an efficient way.
138
+ *
139
+ *
140
+ * @param f the function that is applied for its side-effect to every element.
141
+ * The result of function `f` is discarded.
142
+ *
143
+ * @tparam U the type parameter describing the result of function `f`.
144
+ * This result will always be ignored. Typically `U` is `Unit`,
145
+ * but this is not necessary.
146
+ *
147
+ * @usecase def foreach(f: A => Unit): Unit
148
+ */
149
+ def foreach[U](f: A => U): Unit
150
+
151
+ /** Tests whether this $coll is empty.
152
+ *
153
+ * @return `true` if the $coll contain no elements, `false` otherwise.
154
+ */
155
+ def isEmpty: Boolean = {
156
+ var result = true
157
+ breakable {
158
+ for (x <- this) {
159
+ result = false
160
+ break
161
+ }
162
+ }
163
+ result
164
+ }
165
+
166
+ /** Tests whether this $coll is known to have a finite size.
167
+ * All strict collections are known to have finite size. For a non-strict collection
168
+ * such as `Stream`, the predicate returns `true` if all elements have been computed.
169
+ * It returns `false` if the stream is not yet evaluated to the end.
170
+ *
171
+ * Note: many collection methods will not work on collections of infinite sizes.
172
+ *
173
+ * @return `true` if this collection is known to have finite size, `false` otherwise.
174
+ */
175
+ def hasDefiniteSize = true
176
+
177
+ def ++[B >: A, That](that: GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
178
+ val b = bf(repr)
179
+ if (that.isInstanceOf[IndexedSeqLike[_, _]]) b.sizeHint(this, that.seq.size)
180
+ b ++= thisCollection
181
+ b ++= that.seq
182
+ b.result
183
+ }
184
+
185
+ @bridge
186
+ def ++[B >: A, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That =
187
+ ++(that: GenTraversableOnce[B])(bf)
188
+
189
+ /** Concatenates this $coll with the elements of a traversable collection.
190
+ * It differs from ++ in that the right operand determines the type of the
191
+ * resulting collection rather than the left one.
192
+ *
193
+ * @param that the traversable to append.
194
+ * @tparam B the element type of the returned collection.
195
+ * @tparam That $thatinfo
196
+ * @param bf $bfinfo
197
+ * @return a new collection of type `That` which contains all elements
198
+ * of this $coll followed by all elements of `that`.
199
+ *
200
+ * @usecase def ++:[B](that: TraversableOnce[B]): $Coll[B]
201
+ *
202
+ * @return a new $coll which contains all elements of this $coll
203
+ * followed by all elements of `that`.
204
+ */
205
+ def ++:[B >: A, That](that: TraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
206
+ val b = bf(repr)
207
+ if (that.isInstanceOf[IndexedSeqLike[_, _]]) b.sizeHint(this, that.size)
208
+ b ++= that
209
+ b ++= thisCollection
210
+ b.result
211
+ }
212
+
213
+ /** This overload exists because: for the implementation of ++: we should reuse
214
+ * that of ++ because many collections override it with more efficient versions.
215
+ * Since TraversableOnce has no '++' method, we have to implement that directly,
216
+ * but Traversable and down can use the overload.
217
+ */
218
+ def ++:[B >: A, That](that: Traversable[B])(implicit bf: CanBuildFrom[Repr, B, That]): That =
219
+ (that ++ seq)(breakOut)
220
+
221
+ def map[B, That](f: A => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
222
+ val b = bf(repr)
223
+ b.sizeHint(this)
224
+ for (x <- this) b += f(x)
225
+ b.result
226
+ }
227
+
228
+ def flatMap[B, That](f: A => GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
229
+ val b = bf(repr)
230
+ for (x <- this) b ++= f(x).seq
231
+ b.result
232
+ }
233
+
234
+ /** Selects all elements of this $coll which satisfy a predicate.
235
+ *
236
+ * @param p the predicate used to test elements.
237
+ * @return a new $coll consisting of all elements of this $coll that satisfy the given
238
+ * predicate `p`. The order of the elements is preserved.
239
+ */
240
+ def filter(p: A => Boolean): Repr = {
241
+ val b = newBuilder
242
+ for (x <- this)
243
+ if (p(x)) b += x
244
+ b.result
245
+ }
246
+
247
+ /** Selects all elements of this $coll which do not satisfy a predicate.
248
+ *
249
+ * @param p the predicate used to test elements.
250
+ * @return a new $coll consisting of all elements of this $coll that do not satisfy the given
251
+ * predicate `p`. The order of the elements is preserved.
252
+ */
253
+ def filterNot(p: A => Boolean): Repr = filter(!p(_))
254
+
255
+ def collect[B, That](pf: PartialFunction[A, B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
256
+ val b = bf(repr)
257
+ for (x <- this) if (pf.isDefinedAt(x)) b += pf(x)
258
+ b.result
259
+ }
260
+
261
+ /** Builds a new collection by applying an option-valued function to all
262
+ * elements of this $coll on which the function is defined.
263
+ *
264
+ * @param f the option-valued function which filters and maps the $coll.
265
+ * @tparam B the element type of the returned collection.
266
+ * @tparam That $thatinfo
267
+ * @param bf $bfinfo
268
+ * @return a new collection of type `That` resulting from applying the option-valued function
269
+ * `f` to each element and collecting all defined results.
270
+ * The order of the elements is preserved.
271
+ *
272
+ * @usecase def filterMap[B](f: A => Option[B]): $Coll[B]
273
+ *
274
+ * @param pf the partial function which filters and maps the $coll.
275
+ * @return a new $coll resulting from applying the given option-valued function
276
+ * `f` to each element and collecting all defined results.
277
+ * The order of the elements is preserved.
278
+ def filterMap[B, That](f: A => Option[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
279
+ val b = bf(repr)
280
+ for (x <- this)
281
+ f(x) match {
282
+ case Some(y) => b += y
283
+ case _ =>
284
+ }
285
+ b.result
286
+ }
287
+ */
288
+
289
+ /** Partitions this $coll in two ${coll}s according to a predicate.
290
+ *
291
+ * @param p the predicate on which to partition.
292
+ * @return a pair of ${coll}s: the first $coll consists of all elements that
293
+ * satisfy the predicate `p` and the second $coll consists of all elements
294
+ * that don't. The relative order of the elements in the resulting ${coll}s
295
+ * is the same as in the original $coll.
296
+ */
297
+ def partition(p: A => Boolean): (Repr, Repr) = {
298
+ val l, r = newBuilder
299
+ for (x <- this) (if (p(x)) l else r) += x
300
+ (l.result, r.result)
301
+ }
302
+
303
+ def groupBy[K](f: A => K): immutable.Map[K, Repr] = {
304
+ val m = mutable.Map.empty[K, Builder[A, Repr]]
305
+ for (elem <- this) {
306
+ val key = f(elem)
307
+ val bldr = m.getOrElseUpdate(key, newBuilder)
308
+ bldr += elem
309
+ }
310
+ val b = immutable.Map.newBuilder[K, Repr]
311
+ for ((k, v) <- m)
312
+ b += ((k, v.result))
313
+
314
+ b.result
315
+ }
316
+
317
+ /** Tests whether a predicate holds for all elements of this $coll.
318
+ *
319
+ * $mayNotTerminateInf
320
+ *
321
+ * @param p the predicate used to test elements.
322
+ * @return `true` if the given predicate `p` holds for all elements
323
+ * of this $coll, otherwise `false`.
324
+ */
325
+ def forall(p: A => Boolean): Boolean = {
326
+ var result = true
327
+ breakable {
328
+ for (x <- this)
329
+ if (!p(x)) { result = false; break }
330
+ }
331
+ result
332
+ }
333
+
334
+ /** Tests whether a predicate holds for some of the elements of this $coll.
335
+ *
336
+ * $mayNotTerminateInf
337
+ *
338
+ * @param p the predicate used to test elements.
339
+ * @return `true` if the given predicate `p` holds for some of the
340
+ * elements of this $coll, otherwise `false`.
341
+ */
342
+ def exists(p: A => Boolean): Boolean = {
343
+ var result = false
344
+ breakable {
345
+ for (x <- this)
346
+ if (p(x)) { result = true; break }
347
+ }
348
+ result
349
+ }
350
+
351
+ /** Finds the first element of the $coll satisfying a predicate, if any.
352
+ *
353
+ * $mayNotTerminateInf
354
+ * $orderDependent
355
+ *
356
+ * @param p the predicate used to test elements.
357
+ * @return an option value containing the first element in the $coll
358
+ * that satisfies `p`, or `None` if none exists.
359
+ */
360
+ def find(p: A => Boolean): Option[A] = {
361
+ var result: Option[A] = None
362
+ breakable {
363
+ for (x <- this)
364
+ if (p(x)) { result = Some(x); break }
365
+ }
366
+ result
367
+ }
368
+
369
+ def scan[B >: A, That](z: B)(op: (B, B) => B)(implicit cbf: CanBuildFrom[Repr, B, That]): That = scanLeft(z)(op)
370
+
371
+ def scanLeft[B, That](z: B)(op: (B, A) => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
372
+ val b = bf(repr)
373
+ b.sizeHint(this, 1)
374
+ var acc = z
375
+ b += acc
376
+ for (x <- this) { acc = op(acc, x); b += acc }
377
+ b.result
378
+ }
379
+
380
+ @migration(2, 9,
381
+ "This scanRight definition has changed in 2.9.\n" +
382
+ "The previous behavior can be reproduced with scanRight.reverse."
383
+ )
384
+ def scanRight[B, That](z: B)(op: (A, B) => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
385
+ var scanned = List(z)
386
+ var acc = z
387
+ for (x <- reversed) {
388
+ acc = op(x, acc)
389
+ scanned ::= acc
390
+ }
391
+ val b = bf(repr)
392
+ for (elem <- scanned) b += elem
393
+ b.result
394
+ }
395
+
396
+ /** Selects the first element of this $coll.
397
+ * $orderDependent
398
+ * @return the first element of this $coll.
399
+ * @throws `NoSuchElementException` if the $coll is empty.
400
+ */
401
+ def head: A = {
402
+ var result: () => A = () => throw new NoSuchElementException
403
+ breakable {
404
+ for (x <- this) {
405
+ result = () => x
406
+ break
407
+ }
408
+ }
409
+ result()
410
+ }
411
+
412
+ /** Optionally selects the first element.
413
+ * $orderDependent
414
+ * @return the first element of this $coll if it is nonempty, `None` if it is empty.
415
+ */
416
+ def headOption: Option[A] = if (isEmpty) None else Some(head)
417
+
418
+ /** Selects all elements except the first.
419
+ * $orderDependent
420
+ * @return a $coll consisting of all elements of this $coll
421
+ * except the first one.
422
+ * @throws `UnsupportedOperationException` if the $coll is empty.
423
+ */
424
+ override def tail: Repr = {
425
+ if (isEmpty) throw new UnsupportedOperationException("empty.tail")
426
+ drop(1)
427
+ }
428
+
429
+ /** Selects the last element.
430
+ * $orderDependent
431
+ * @return The last element of this $coll.
432
+ * @throws NoSuchElementException If the $coll is empty.
433
+ */
434
+ def last: A = {
435
+ var lst = head
436
+ for (x <- this)
437
+ lst = x
438
+ lst
439
+ }
440
+
441
+ /** Optionally selects the last element.
442
+ * $orderDependent
443
+ * @return the last element of this $coll$ if it is nonempty, `None` if it is empty.
444
+ */
445
+ def lastOption: Option[A] = if (isEmpty) None else Some(last)
446
+
447
+ /** Selects all elements except the last.
448
+ * $orderDependent
449
+ * @return a $coll consisting of all elements of this $coll
450
+ * except the last one.
451
+ * @throws `UnsupportedOperationException` if the $coll is empty.
452
+ */
453
+ def init: Repr = {
454
+ if (isEmpty) throw new UnsupportedOperationException("empty.init")
455
+ var lst = head
456
+ var follow = false
457
+ val b = newBuilder
458
+ b.sizeHint(this, -1)
459
+ for (x <- this.seq) {
460
+ if (follow) b += lst
461
+ else follow = true
462
+ lst = x
463
+ }
464
+ b.result
465
+ }
466
+
467
+ def take(n: Int): Repr = slice(0, n)
468
+
469
+ def drop(n: Int): Repr =
470
+ if (n <= 0) {
471
+ val b = newBuilder
472
+ b.sizeHint(this)
473
+ b ++= thisCollection result
474
+ }
475
+ else sliceWithKnownDelta(n, Int.MaxValue, -n)
476
+
477
+ def slice(from: Int, until: Int): Repr = sliceWithKnownBound(math.max(from, 0), until)
478
+
479
+ // Precondition: from >= 0, until > 0, builder already configured for building.
480
+ private[this] def sliceInternal(from: Int, until: Int, b: Builder[A, Repr]): Repr = {
481
+ var i = 0
482
+ breakable {
483
+ for (x <- this.seq) {
484
+ if (i >= from) b += x
485
+ i += 1
486
+ if (i >= until) break
487
+ }
488
+ }
489
+ b.result
490
+ }
491
+ // Precondition: from >= 0
492
+ private[scala] def sliceWithKnownDelta(from: Int, until: Int, delta: Int): Repr = {
493
+ val b = newBuilder
494
+ if (until <= from) b.result
495
+ else {
496
+ b.sizeHint(this, delta)
497
+ sliceInternal(from, until, b)
498
+ }
499
+ }
500
+ // Precondition: from >= 0
501
+ private[scala] def sliceWithKnownBound(from: Int, until: Int): Repr = {
502
+ val b = newBuilder
503
+ if (until <= from) b.result
504
+ else {
505
+ b.sizeHintBounded(until - from, this)
506
+ sliceInternal(from, until, b)
507
+ }
508
+ }
509
+
510
+ def takeWhile(p: A => Boolean): Repr = {
511
+ val b = newBuilder
512
+ breakable {
513
+ for (x <- this) {
514
+ if (!p(x)) break
515
+ b += x
516
+ }
517
+ }
518
+ b.result
519
+ }
520
+
521
+ def dropWhile(p: A => Boolean): Repr = {
522
+ val b = newBuilder
523
+ var go = false
524
+ for (x <- this) {
525
+ if (!p(x)) go = true
526
+ if (go) b += x
527
+ }
528
+ b.result
529
+ }
530
+
531
+ def span(p: A => Boolean): (Repr, Repr) = {
532
+ val l, r = newBuilder
533
+ var toLeft = true
534
+ for (x <- this) {
535
+ toLeft = toLeft && p(x)
536
+ (if (toLeft) l else r) += x
537
+ }
538
+ (l.result, r.result)
539
+ }
540
+
541
+ def splitAt(n: Int): (Repr, Repr) = {
542
+ val l, r = newBuilder
543
+ l.sizeHintBounded(n, this)
544
+ if (n >= 0) r.sizeHint(this, -n)
545
+ var i = 0
546
+ for (x <- this) {
547
+ (if (i < n) l else r) += x
548
+ i += 1
549
+ }
550
+ (l.result, r.result)
551
+ }
552
+
553
+ /** Iterates over the tails of this $coll. The first value will be this
554
+ * $coll and the final one will be an empty $coll, with the intervening
555
+ * values the results of successive applications of `tail`.
556
+ *
557
+ * @return an iterator over all the tails of this $coll
558
+ * @example `List(1,2,3).tails = Iterator(List(1,2,3), List(2,3), List(3), Nil)`
559
+ */
560
+ def tails: Iterator[Repr] = iterateUntilEmpty(_.tail)
561
+
562
+ /** Iterates over the inits of this $coll. The first value will be this
563
+ * $coll and the final one will be an empty $coll, with the intervening
564
+ * values the results of successive applications of `init`.
565
+ *
566
+ * @return an iterator over all the inits of this $coll
567
+ * @example `List(1,2,3).inits = Iterator(List(1,2,3), List(1,2), List(1), Nil)`
568
+ */
569
+ def inits: Iterator[Repr] = iterateUntilEmpty(_.init)
570
+
571
+ /** Copies elements of this $coll to an array.
572
+ * Fills the given array `xs` with at most `len` elements of
573
+ * this $coll, starting at position `start`.
574
+ * Copying will stop once either the end of the current $coll is reached,
575
+ * or the end of the array is reached, or `len` elements have been copied.
576
+ *
577
+ * $willNotTerminateInf
578
+ *
579
+ * @param xs the array to fill.
580
+ * @param start the starting index.
581
+ * @param len the maximal number of elements to copy.
582
+ * @tparam B the type of the elements of the array.
583
+ *
584
+ *
585
+ * @usecase def copyToArray(xs: Array[A], start: Int, len: Int): Unit
586
+ */
587
+ def copyToArray[B >: A](xs: Array[B], start: Int, len: Int) {
588
+ var i = start
589
+ val end = (start + len) min xs.length
590
+ breakable {
591
+ for (x <- this) {
592
+ if (i >= end) break
593
+ xs(i) = x
594
+ i += 1
595
+ }
596
+ }
597
+ }
598
+
599
+ def toTraversable: Traversable[A] = thisCollection
600
+ def toIterator: Iterator[A] = toStream.iterator
601
+ def toStream: Stream[A] = toBuffer.toStream
602
+
603
+ /** Converts this $coll to a string.
604
+ *
605
+ * @return a string representation of this collection. By default this
606
+ * string consists of the `stringPrefix` of this $coll,
607
+ * followed by all elements separated by commas and enclosed in parentheses.
608
+ */
609
+ override def toString = mkString(stringPrefix + "(", ", ", ")")
610
+
611
+ /** Defines the prefix of this object's `toString` representation.
612
+ *
613
+ * @return a string representation which starts the result of `toString`
614
+ * applied to this $coll. By default the string prefix is the
615
+ * simple name of the collection class $coll.
616
+ */
617
+ def stringPrefix : String = {
618
+ var string = repr.asInstanceOf[AnyRef].getClass.getName
619
+ val idx1 = string.lastIndexOf('.' : Int)
620
+ if (idx1 != -1) string = string.substring(idx1 + 1)
621
+ val idx2 = string.indexOf('$')
622
+ if (idx2 != -1) string = string.substring(0, idx2)
623
+ string
624
+ }
625
+
626
+ /** Creates a non-strict view of this $coll.
627
+ *
628
+ * @return a non-strict view of this $coll.
629
+ */
630
+ def view = new TraversableView[A, Repr] {
631
+ protected lazy val underlying = self.repr
632
+ override def foreach[U](f: A => U) = self foreach f
633
+ }
634
+
635
+ /** Creates a non-strict view of a slice of this $coll.
636
+ *
637
+ * Note: the difference between `view` and `slice` is that `view` produces
638
+ * a view of the current $coll, whereas `slice` produces a new $coll.
639
+ *
640
+ * Note: `view(from, to)` is equivalent to `view.slice(from, to)`
641
+ * $orderDependent
642
+ *
643
+ * @param from the index of the first element of the view
644
+ * @param until the index of the element following the view
645
+ * @return a non-strict view of a slice of this $coll, starting at index `from`
646
+ * and extending up to (but not including) index `until`.
647
+ */
648
+ def view(from: Int, until: Int): TraversableView[A, Repr] = view.slice(from, until)
649
+
650
+ /** Creates a non-strict filter of this $coll.
651
+ *
652
+ * Note: the difference between `c filter p` and `c withFilter p` is that
653
+ * the former creates a new collection, whereas the latter only
654
+ * restricts the domain of subsequent `map`, `flatMap`, `foreach`,
655
+ * and `withFilter` operations.
656
+ * $orderDependent
657
+ *
658
+ * @param p the predicate used to test elements.
659
+ * @return an object of class `WithFilter`, which supports
660
+ * `map`, `flatMap`, `foreach`, and `withFilter` operations.
661
+ * All these operations apply to those elements of this $coll which
662
+ * satisfy the predicate `p`.
663
+ */
664
+ def withFilter(p: A => Boolean): FilterMonadic[A, Repr] = new WithFilter(p)
665
+
666
+ /** A class supporting filtered operations. Instances of this class are
667
+ * returned by method `withFilter`.
668
+ */
669
+ class WithFilter(p: A => Boolean) extends FilterMonadic[A, Repr] {
670
+
671
+ /** Builds a new collection by applying a function to all elements of the
672
+ * outer $coll containing this `WithFilter` instance that satisfy predicate `p`.
673
+ *
674
+ * @param f the function to apply to each element.
675
+ * @tparam B the element type of the returned collection.
676
+ * @tparam That $thatinfo
677
+ * @param bf $bfinfo
678
+ * @return a new collection of type `That` resulting from applying
679
+ * the given function `f` to each element of the outer $coll
680
+ * that satisfies predicate `p` and collecting the results.
681
+ *
682
+ * @usecase def map[B](f: A => B): $Coll[B]
683
+ *
684
+ * @return a new $coll resulting from applying the given function
685
+ * `f` to each element of the outer $coll that satisfies
686
+ * predicate `p` and collecting the results.
687
+ */
688
+ def map[B, That](f: A => B)(implicit bf: CanBuildFrom[Repr, B, That]): That = {
689
+ val b = bf(repr)
690
+ for (x <- self)
691
+ if (p(x)) b += f(x)
692
+ b.result
693
+ }
694
+
695
+ /** Builds a new collection by applying a function to all elements of the
696
+ * outer $coll containing this `WithFilter` instance that satisfy
697
+ * predicate `p` and concatenating the results.
698
+ *
699
+ * @param f the function to apply to each element.
700
+ * @tparam B the element type of the returned collection.
701
+ * @tparam That $thatinfo
702
+ * @param bf $bfinfo
703
+ * @return a new collection of type `That` resulting from applying
704
+ * the given collection-valued function `f` to each element
705
+ * of the outer $coll that satisfies predicate `p` and
706
+ * concatenating the results.
707
+ *
708
+ * @usecase def flatMap[B](f: A => TraversableOnce[B]): $Coll[B]
709
+ *
710
+ * @return a new $coll resulting from applying the given collection-valued function
711
+ * `f` to each element of the outer $coll that satisfies predicate `p` and concatenating the results.
712
+ */
713
+ def flatMap[B, That](f: A => GenTraversableOnce[B])(implicit bf: CanBuildFrom[Repr, B, That]): That = {
714
+ val b = bf(repr)
715
+ for (x <- self)
716
+ if (p(x)) b ++= f(x).seq
717
+ b.result
718
+ }
719
+
720
+ /** Applies a function `f` to all elements of the outer $coll containing
721
+ * this `WithFilter` instance that satisfy predicate `p`.
722
+ *
723
+ * @param f the function that is applied for its side-effect to every element.
724
+ * The result of function `f` is discarded.
725
+ *
726
+ * @tparam U the type parameter describing the result of function `f`.
727
+ * This result will always be ignored. Typically `U` is `Unit`,
728
+ * but this is not necessary.
729
+ *
730
+ * @usecase def foreach(f: A => Unit): Unit
731
+ */
732
+ def foreach[U](f: A => U): Unit =
733
+ for (x <- self)
734
+ if (p(x)) f(x)
735
+
736
+ /** Further refines the filter for this $coll.
737
+ *
738
+ * @param q the predicate used to test elements.
739
+ * @return an object of class `WithFilter`, which supports
740
+ * `map`, `flatMap`, `foreach`, and `withFilter` operations.
741
+ * All these operations apply to those elements of this $coll which
742
+ * satisfy the predicate `q` in addition to the predicate `p`.
743
+ */
744
+ def withFilter(q: A => Boolean): WithFilter =
745
+ new WithFilter(x => p(x) && q(x))
746
+ }
747
+
748
+ // A helper for tails and inits.
749
+ private def iterateUntilEmpty(f: Traversable[A @uV] => Traversable[A @uV]): Iterator[Repr] = {
750
+ val it = Iterator.iterate(thisCollection)(f) takeWhile (x => !x.isEmpty)
751
+ it ++ Iterator(Nil) map (newBuilder ++= _ result)
752
+ }
753
+ }
754
+
755
+
756
+ </textarea>
757
+ </form>
758
+
759
+ <script>
760
+ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
761
+ lineNumbers: true,
762
+ matchBrackets: true,
763
+ theme: "ambiance",
764
+ mode: "text/x-scala"
765
+ });
766
+ </script>
767
+ </article>