ramaze 2009.03 → 2009.04

Sign up to get free protection for your applications and to get access to all the features.
Files changed (545) hide show
  1. data/.mailmap +25 -0
  2. data/CHANGELOG +16750 -0
  3. data/MANIFEST +485 -0
  4. data/{README.md → README.markdown} +0 -5
  5. data/Rakefile +79 -242
  6. data/bin/ramaze +275 -52
  7. data/doc/AUTHORS +36 -28
  8. data/doc/FAQ +1 -1
  9. data/doc/tutorial/todolist.html +1415 -742
  10. data/doc/tutorial/todolist.txt +939 -0
  11. data/examples/app/auth/layout/auth.xhtml +25 -0
  12. data/examples/app/auth/start.rb +23 -0
  13. data/examples/app/auth/view/index.xhtml +4 -0
  14. data/examples/app/auth/view/login.xhtml +20 -0
  15. data/examples/app/auth/view/secret.xhtml +1 -0
  16. data/examples/app/blog/app.rb +69 -0
  17. data/{lib/proto/start.ru → examples/app/blog/config.ru} +8 -7
  18. data/examples/app/blog/controller/comment.rb +45 -0
  19. data/examples/app/blog/controller/entry.rb +85 -0
  20. data/examples/app/blog/controller/init.rb +86 -0
  21. data/examples/app/blog/controller/main.rb +16 -25
  22. data/examples/app/blog/controller/tag.rb +9 -0
  23. data/examples/app/blog/layout/default.nag +31 -0
  24. data/examples/app/blog/model/comment.rb +58 -0
  25. data/examples/app/blog/model/entry.rb +81 -22
  26. data/examples/app/blog/model/init.rb +15 -0
  27. data/examples/app/blog/model/tag.rb +36 -0
  28. data/examples/app/blog/public/css/screen.css +273 -0
  29. data/examples/app/blog/start.rb +3 -5
  30. data/examples/app/blog/view/comment/form.nag +10 -0
  31. data/examples/app/blog/view/comment/show.nag +16 -0
  32. data/examples/app/blog/view/entry/edit.nag +14 -0
  33. data/examples/app/blog/view/entry/feed.atom.nag +8 -0
  34. data/examples/app/blog/view/entry/feed.rss.nag +7 -0
  35. data/examples/app/blog/view/entry/index.nag +7 -0
  36. data/examples/app/blog/view/entry/new.nag +13 -0
  37. data/examples/app/blog/view/entry/show.nag +36 -0
  38. data/examples/app/blog/view/feed.atom.nag +18 -0
  39. data/examples/app/blog/view/feed.rss.nag +25 -0
  40. data/examples/app/blog/view/index.nag +6 -0
  41. data/examples/app/blog/view/tag/index.nag +5 -0
  42. data/examples/app/chat/{view/layout.xhtml → layout/default.nag} +1 -1
  43. data/examples/app/chat/model/history.rb +13 -11
  44. data/examples/app/chat/public/css/chat.css +9 -13
  45. data/examples/app/chat/public/js/chat.js +6 -0
  46. data/examples/app/chat/start.rb +16 -17
  47. data/examples/app/chat/view/{chat.xhtml → chat.nag} +0 -0
  48. data/examples/app/chat/view/{index.xhtml → index.nag} +0 -0
  49. data/examples/app/sourceview/{sourceview.rb → start.rb} +36 -34
  50. data/examples/app/sourceview/{template → view}/index.haml +0 -0
  51. data/examples/app/todolist/controller/init.rb +10 -0
  52. data/examples/app/todolist/controller/task.rb +39 -0
  53. data/examples/app/todolist/layout/default.xhtml +14 -0
  54. data/examples/app/todolist/model/init.rb +14 -0
  55. data/examples/app/todolist/model/task.rb +39 -0
  56. data/examples/app/todolist/public/css/screen.css +63 -0
  57. data/examples/app/todolist/start.rb +6 -6
  58. data/examples/app/todolist/view/index.xhtml +29 -0
  59. data/examples/app/wikore/spec/wikore.rb +4 -6
  60. data/examples/app/wikore/src/controller.rb +9 -11
  61. data/examples/app/wikore/src/model.rb +7 -10
  62. data/examples/app/wikore/start.rb +1 -1
  63. data/examples/app/wikore/{template → view}/index.xhtml +0 -0
  64. data/examples/basic/element.rb +5 -3
  65. data/examples/basic/gestalt.rb +1 -2
  66. data/examples/basic/hello.rb +3 -4
  67. data/examples/basic/layout.rb +2 -2
  68. data/examples/basic/linking.rb +7 -7
  69. data/examples/basic/partial.rb +3 -5
  70. data/examples/basic/simple.rb +1 -5
  71. data/examples/helpers/cache.rb +5 -5
  72. data/examples/helpers/httpdigest.rb +31 -32
  73. data/examples/misc/memleak_detector.rb +17 -12
  74. data/examples/misc/rapp.rb +28 -17
  75. data/examples/misc/serve_directory.rb +6 -0
  76. data/examples/templates/template_erubis.rb +9 -10
  77. data/examples/templates/template_ezamar.rb +8 -7
  78. data/examples/templates/template_haml.rb +6 -7
  79. data/examples/templates/template_liquid.rb +20 -19
  80. data/examples/templates/template_markaby.rb +2 -3
  81. data/examples/templates/template_nagoro.rb +6 -7
  82. data/examples/templates/template_redcloth.rb +8 -9
  83. data/examples/templates/template_remarkably.rb +7 -8
  84. data/examples/templates/template_tenjin.rb +6 -7
  85. data/examples/templates/{template → view}/external.haml +4 -4
  86. data/examples/templates/{template → view}/external.liquid +0 -0
  87. data/examples/templates/{template → view}/external.mab +0 -0
  88. data/examples/templates/{template → view}/external.nag +4 -4
  89. data/examples/templates/{template → view}/external.redcloth +4 -4
  90. data/examples/templates/{template → view}/external.rem +4 -4
  91. data/examples/templates/{template → view}/external.rhtml +6 -6
  92. data/examples/templates/{template → view}/external.tenjin +4 -4
  93. data/examples/templates/{template → view}/external.zmr +6 -6
  94. data/lib/proto/app.rb +15 -0
  95. data/lib/proto/config.ru +16 -0
  96. data/lib/proto/controller/init.rb +2 -2
  97. data/lib/proto/{view/page.xhtml → layout/default.xhtml} +1 -4
  98. data/lib/proto/public/.htaccess +24 -0
  99. data/lib/proto/public/css/screen.css +30 -0
  100. data/lib/proto/public/js/jquery.js +2121 -1294
  101. data/lib/proto/spec/main.rb +11 -15
  102. data/lib/proto/start.rb +6 -10
  103. data/lib/proto/view/index.xhtml +34 -27
  104. data/lib/ramaze.rb +78 -129
  105. data/lib/ramaze/app.rb +124 -0
  106. data/lib/ramaze/cache.rb +9 -104
  107. data/lib/ramaze/cache/localmemcache.rb +56 -0
  108. data/lib/ramaze/cache/memcache.rb +99 -0
  109. data/lib/ramaze/cache/sequel.rb +67 -0
  110. data/lib/ramaze/contrib/app_graph.rb +64 -0
  111. data/lib/ramaze/contrib/email.rb +2 -0
  112. data/lib/ramaze/contrib/gettext/po.rb +23 -23
  113. data/lib/ramaze/contrib/gzip_filter.rb +1 -69
  114. data/lib/ramaze/contrib/rest.rb +20 -15
  115. data/lib/ramaze/contrib/sequel/create_join.rb +1 -0
  116. data/lib/ramaze/contrib/sequel/form_field.rb +4 -4
  117. data/lib/ramaze/contrib/sequel/image.rb +9 -11
  118. data/lib/ramaze/contrib/sequel/relation.rb +21 -5
  119. data/lib/ramaze/controller.rb +63 -257
  120. data/lib/ramaze/controller/default.rb +12 -0
  121. data/lib/ramaze/current.rb +3 -47
  122. data/lib/ramaze/files.rb +24 -0
  123. data/lib/ramaze/gestalt.rb +6 -1
  124. data/lib/ramaze/helper.rb +6 -81
  125. data/lib/ramaze/helper/auth.rb +68 -104
  126. data/lib/ramaze/helper/bench.rb +0 -2
  127. data/lib/ramaze/helper/cache.rb +71 -120
  128. data/lib/ramaze/helper/disqus.rb +26 -0
  129. data/lib/ramaze/helper/flash.rb +32 -44
  130. data/lib/ramaze/helper/form.rb +83 -252
  131. data/lib/ramaze/helper/formatting.rb +32 -5
  132. data/lib/ramaze/helper/gestalt.rb +1 -1
  133. data/lib/ramaze/helper/gravatar.rb +66 -19
  134. data/lib/ramaze/helper/httpdigest.rb +66 -62
  135. data/lib/ramaze/helper/link.rb +62 -109
  136. data/lib/ramaze/helper/localize.rb +138 -0
  137. data/lib/ramaze/helper/markaby.rb +1 -1
  138. data/lib/ramaze/helper/maruku.rb +10 -3
  139. data/lib/ramaze/helper/pager.rb +2 -1
  140. data/lib/ramaze/helper/paginate.rb +17 -9
  141. data/lib/ramaze/helper/partial.rb +86 -91
  142. data/lib/ramaze/helper/remarkably.rb +14 -0
  143. data/lib/ramaze/helper/request_accessor.rb +16 -0
  144. data/lib/ramaze/helper/sequel_form.rb +284 -0
  145. data/lib/ramaze/helper/simple_captcha.rb +46 -16
  146. data/lib/ramaze/helper/stack.rb +64 -66
  147. data/lib/ramaze/helper/user.rb +141 -22
  148. data/lib/ramaze/helper/xhtml.rb +27 -16
  149. data/lib/ramaze/log.rb +19 -7
  150. data/lib/ramaze/log/analogger.rb +1 -2
  151. data/lib/ramaze/log/informer.rb +1 -0
  152. data/lib/ramaze/log/logging.rb +2 -8
  153. data/lib/ramaze/log/syslog.rb +36 -36
  154. data/lib/ramaze/middleware_compiler.rb +13 -0
  155. data/lib/ramaze/plugin.rb +69 -0
  156. data/lib/ramaze/reloader.rb +8 -6
  157. data/lib/ramaze/request.rb +118 -0
  158. data/lib/ramaze/{current/response.rb → response.rb} +9 -10
  159. data/lib/ramaze/setup.rb +93 -33
  160. data/lib/ramaze/snippets/ramaze/deprecated.rb +3 -1
  161. data/lib/ramaze/snippets/{dictionary.rb → ramaze/dictionary.rb} +0 -104
  162. data/lib/ramaze/snippets/ramaze/fiber.rb +5 -5
  163. data/lib/ramaze/spec.rb +34 -1
  164. data/lib/ramaze/spec/helper/bacon.rb +4 -3
  165. data/lib/ramaze/spec/helper/snippets.rb +3 -1
  166. data/lib/ramaze/spec/helper/template_examples.rb +29 -0
  167. data/lib/ramaze/tool/create.rb +1 -1
  168. data/lib/ramaze/version.rb +1 -4
  169. data/lib/ramaze/view.rb +48 -0
  170. data/lib/ramaze/view/erubis.rb +23 -0
  171. data/lib/ramaze/view/ezamar.rb +23 -0
  172. data/lib/ramaze/view/haml.rb +16 -0
  173. data/lib/ramaze/view/liquid.rb +100 -0
  174. data/lib/ramaze/view/maruku.rb +14 -0
  175. data/lib/ramaze/view/nagoro.rb +44 -0
  176. data/lib/ramaze/view/nagoro/render_partial.rb +32 -0
  177. data/lib/ramaze/view/redcloth.rb +21 -0
  178. data/lib/ramaze/view/remarkably.rb +21 -0
  179. data/lib/ramaze/view/sass.rb +21 -0
  180. data/lib/ramaze/view/tagz.rb +63 -0
  181. data/lib/ramaze/view/tenjin.rb +29 -0
  182. data/lib/vendor/etag.rb +20 -0
  183. data/lib/vendor/route_exceptions.rb +48 -0
  184. data/ramaze.gemspec +44 -0
  185. data/spec/contrib/rest.rb +28 -0
  186. data/spec/examples/caching.rb +1 -2
  187. data/spec/examples/css.rb +1 -2
  188. data/spec/examples/element.rb +1 -2
  189. data/spec/examples/hello.rb +2 -3
  190. data/spec/examples/helpers/httpdigest.rb +64 -0
  191. data/spec/examples/linking.rb +1 -2
  192. data/spec/examples/simple.rb +1 -6
  193. data/spec/examples/templates/template_erubis.rb +3 -17
  194. data/spec/examples/templates/template_ezamar.rb +3 -18
  195. data/spec/examples/templates/template_haml.rb +3 -17
  196. data/spec/examples/templates/template_liquid.rb +3 -23
  197. data/spec/examples/templates/template_markaby.rb +6 -19
  198. data/spec/examples/templates/template_nagoro.rb +9 -0
  199. data/spec/examples/templates/template_redcloth.rb +3 -22
  200. data/spec/examples/templates/template_remarkably.rb +3 -17
  201. data/spec/examples/templates/template_tenjin.rb +3 -22
  202. data/spec/helper.rb +10 -3
  203. data/spec/ramaze/action/render.rb +5 -15
  204. data/spec/ramaze/action/view/other_wrapper.erb +1 -0
  205. data/spec/ramaze/action/view/sub/sub_wrapper.erb +1 -0
  206. data/spec/ramaze/app.rb +47 -0
  207. data/spec/ramaze/cache/localmemcache.rb +49 -0
  208. data/spec/ramaze/cache/memcache.rb +54 -0
  209. data/spec/ramaze/cache/sequel.rb +51 -0
  210. data/spec/ramaze/controller/actionless_templates.rb +14 -10
  211. data/spec/ramaze/controller/mapping.rb +57 -0
  212. data/spec/ramaze/controller/provide_inheritance.rb +47 -0
  213. data/spec/ramaze/controller/resolve.rb +7 -9
  214. data/spec/ramaze/controller/subclass.rb +13 -13
  215. data/spec/ramaze/controller/template_resolving.rb +21 -57
  216. data/spec/ramaze/dispatcher/directory.rb +38 -24
  217. data/spec/ramaze/dispatcher/file.rb +55 -44
  218. data/spec/ramaze/error.rb +56 -62
  219. data/spec/ramaze/files.rb +29 -0
  220. data/spec/ramaze/files/public_1/plain.txt +1 -0
  221. data/spec/ramaze/files/public_2/rich.txt +1 -0
  222. data/spec/ramaze/gestalt.rb +2 -4
  223. data/spec/ramaze/helper/auth.rb +41 -24
  224. data/spec/ramaze/helper/bench.rb +17 -0
  225. data/spec/ramaze/helper/cache.rb +65 -101
  226. data/spec/ramaze/helper/flash.rb +20 -112
  227. data/spec/ramaze/helper/form.rb +336 -98
  228. data/spec/ramaze/helper/formatting.rb +66 -9
  229. data/spec/ramaze/helper/gestalt.rb +15 -0
  230. data/spec/ramaze/helper/gravatar.rb +40 -0
  231. data/spec/ramaze/helper/httpdigest.rb +144 -0
  232. data/spec/ramaze/helper/link.rb +25 -100
  233. data/spec/ramaze/helper/localize.rb +60 -0
  234. data/spec/ramaze/helper/maruku.rb +19 -0
  235. data/spec/ramaze/helper/pager.rb +13 -16
  236. data/spec/ramaze/helper/paginate.rb +68 -0
  237. data/spec/ramaze/helper/request_accessor.rb +19 -0
  238. data/spec/ramaze/helper/sequel_form.rb +89 -0
  239. data/spec/ramaze/helper/simple_captcha.rb +35 -12
  240. data/spec/ramaze/helper/stack.rb +52 -39
  241. data/spec/ramaze/helper/user.rb +39 -10
  242. data/spec/ramaze/helper/xhtml.rb +32 -0
  243. data/spec/ramaze/log/informer.rb +20 -19
  244. data/spec/ramaze/log/logging.rb +63 -0
  245. data/spec/ramaze/log/syslog.rb +59 -62
  246. data/spec/ramaze/params.rb +8 -11
  247. data/spec/ramaze/request.rb +57 -181
  248. data/spec/ramaze/view.rb +36 -0
  249. data/spec/ramaze/view/erubis.rb +73 -0
  250. data/spec/ramaze/view/erubis/external.rhtml +8 -0
  251. data/spec/ramaze/view/erubis/sum.rhtml +1 -0
  252. data/spec/ramaze/view/ezamar.rb +73 -0
  253. data/spec/ramaze/view/ezamar/external.zmr +8 -0
  254. data/spec/ramaze/view/ezamar/sum.zmr +1 -0
  255. data/spec/ramaze/view/haml.rb +86 -0
  256. data/spec/ramaze/view/haml/external.haml +5 -0
  257. data/spec/ramaze/view/haml/sum.haml +2 -0
  258. data/spec/ramaze/view/liquid.rb +73 -0
  259. data/spec/ramaze/view/liquid/external.liquid +8 -0
  260. data/spec/ramaze/view/liquid/sum.liquid +1 -0
  261. data/spec/ramaze/view/nagoro.rb +73 -0
  262. data/spec/ramaze/view/nagoro/external.nag +8 -0
  263. data/spec/ramaze/view/nagoro/sum.nag +1 -0
  264. data/spec/ramaze/view/redcloth.rb +66 -0
  265. data/spec/ramaze/view/redcloth/external.redcloth +8 -0
  266. data/spec/ramaze/view/remarkably.rb +49 -0
  267. data/spec/ramaze/{template → view}/remarkably/external.rem +0 -0
  268. data/spec/ramaze/{template → view}/remarkably/sum.rem +0 -0
  269. data/spec/ramaze/view/sass.rb +73 -0
  270. data/spec/ramaze/{template → view}/sass/file.css.sass +0 -0
  271. data/spec/ramaze/{template → view}/tagz.rb +18 -29
  272. data/spec/ramaze/{template → view}/tagz/external.tagz +0 -0
  273. data/spec/ramaze/{template → view}/tagz/sum.tagz +0 -0
  274. data/spec/ramaze/view/tenjin.rb +57 -0
  275. data/spec/ramaze/view/tenjin/external.rbhtml +8 -0
  276. data/spec/ramaze/view/tenjin/sum.rbhtml +1 -0
  277. data/spec/snippets/ramaze/dictionary.rb +110 -0
  278. data/spec/snippets/ramaze/struct.rb +12 -0
  279. data/spec/snippets/thread/into.rb +3 -14
  280. data/tasks/authors.rake +30 -0
  281. data/tasks/bacon.rake +66 -0
  282. data/tasks/changelog.rake +18 -0
  283. data/tasks/copyright.rake +21 -0
  284. data/tasks/gem.rake +22 -0
  285. data/tasks/gem_installer.rake +76 -0
  286. data/{rake_tasks → tasks}/git.rake +10 -5
  287. data/tasks/grancher.rake +12 -0
  288. data/tasks/install_dependencies.rake +6 -0
  289. data/tasks/jquery.rake +15 -0
  290. data/tasks/manifest.rake +4 -0
  291. data/{rake_tasks/metric.rake → tasks/metric_changes.rake} +7 -7
  292. data/tasks/rcov.rake +23 -0
  293. data/tasks/release.rake +51 -0
  294. data/tasks/reversion.rake +8 -0
  295. data/tasks/setup.rake +24 -0
  296. data/tasks/todo.rake +29 -0
  297. data/tasks/traits.rake +21 -0
  298. data/tasks/yard.rake +4 -0
  299. metadata +191 -452
  300. data/benchmark/suite/template_amrita2.rb +0 -17
  301. data/doc/readme_chunks/appendix.txt +0 -10
  302. data/doc/readme_chunks/examples.txt +0 -38
  303. data/doc/readme_chunks/features.txt +0 -148
  304. data/doc/readme_chunks/getting_help.txt +0 -5
  305. data/doc/readme_chunks/getting_started.txt +0 -18
  306. data/doc/readme_chunks/installing.txt +0 -92
  307. data/doc/readme_chunks/introduction.txt +0 -18
  308. data/doc/readme_chunks/principles.txt +0 -56
  309. data/doc/readme_chunks/thanks.txt +0 -59
  310. data/examples/app/auth/auth.rb +0 -54
  311. data/examples/app/auth/template/layout.haml +0 -20
  312. data/examples/app/auth/template/login.haml +0 -16
  313. data/examples/app/blog/public/styles/blog.css +0 -132
  314. data/examples/app/blog/view/edit.xhtml +0 -17
  315. data/examples/app/blog/view/index.xhtml +0 -17
  316. data/examples/app/blog/view/layout.xhtml +0 -11
  317. data/examples/app/blog/view/new.xhtml +0 -16
  318. data/examples/app/rapaste/Rakefile +0 -34
  319. data/examples/app/rapaste/controller/paste.rb +0 -101
  320. data/examples/app/rapaste/model/paste.rb +0 -58
  321. data/examples/app/rapaste/public/css/active4d.css +0 -114
  322. data/examples/app/rapaste/public/css/all_hallows_eve.css +0 -72
  323. data/examples/app/rapaste/public/css/amy.css +0 -147
  324. data/examples/app/rapaste/public/css/blackboard.css +0 -88
  325. data/examples/app/rapaste/public/css/brilliance_black.css +0 -605
  326. data/examples/app/rapaste/public/css/brilliance_dull.css +0 -599
  327. data/examples/app/rapaste/public/css/cobalt.css +0 -149
  328. data/examples/app/rapaste/public/css/dawn.css +0 -121
  329. data/examples/app/rapaste/public/css/display.css +0 -197
  330. data/examples/app/rapaste/public/css/eiffel.css +0 -121
  331. data/examples/app/rapaste/public/css/espresso_libre.css +0 -109
  332. data/examples/app/rapaste/public/css/idle.css +0 -62
  333. data/examples/app/rapaste/public/css/iplastic.css +0 -80
  334. data/examples/app/rapaste/public/css/lazy.css +0 -73
  335. data/examples/app/rapaste/public/css/mac_classic.css +0 -123
  336. data/examples/app/rapaste/public/css/magicwb_amiga.css +0 -104
  337. data/examples/app/rapaste/public/css/pastels_on_dark.css +0 -188
  338. data/examples/app/rapaste/public/css/slush_poppies.css +0 -85
  339. data/examples/app/rapaste/public/css/spacecadet.css +0 -51
  340. data/examples/app/rapaste/public/css/sunburst.css +0 -180
  341. data/examples/app/rapaste/public/css/twilight.css +0 -137
  342. data/examples/app/rapaste/public/css/zenburnesque.css +0 -91
  343. data/examples/app/rapaste/public/js/jquery.js +0 -11
  344. data/examples/app/rapaste/spec/rapaste.rb +0 -51
  345. data/examples/app/rapaste/start.rb +0 -25
  346. data/examples/app/rapaste/view/copy.xhtml +0 -10
  347. data/examples/app/rapaste/view/index.xhtml +0 -9
  348. data/examples/app/rapaste/view/layout.xhtml +0 -25
  349. data/examples/app/rapaste/view/list.xhtml +0 -29
  350. data/examples/app/rapaste/view/search.xhtml +0 -41
  351. data/examples/app/rapaste/view/view.xhtml +0 -40
  352. data/examples/app/todolist/README +0 -1
  353. data/examples/app/todolist/public/js/jquery.js +0 -1923
  354. data/examples/app/todolist/public/ramaze.png +0 -0
  355. data/examples/app/todolist/spec/todolist.rb +0 -132
  356. data/examples/app/todolist/src/controller/main.rb +0 -70
  357. data/examples/app/todolist/src/element/page.rb +0 -31
  358. data/examples/app/todolist/src/model.rb +0 -14
  359. data/examples/app/todolist/template/index.xhtml +0 -17
  360. data/examples/app/todolist/template/new.xhtml +0 -7
  361. data/examples/helpers/provide.rb +0 -23
  362. data/examples/misc/simple_auth.rb +0 -35
  363. data/examples/templates/template/external.amrita +0 -19
  364. data/examples/templates/template/external.xsl +0 -57
  365. data/examples/templates/template_amrita2.rb +0 -74
  366. data/examples/templates/template_xslt.rb +0 -49
  367. data/lib/proto/public/css/ramaze_error.css +0 -90
  368. data/lib/proto/view/error.xhtml +0 -64
  369. data/lib/ramaze/action.rb +0 -159
  370. data/lib/ramaze/action/render.rb +0 -192
  371. data/lib/ramaze/adapter.rb +0 -97
  372. data/lib/ramaze/adapter/base.rb +0 -128
  373. data/lib/ramaze/adapter/cgi.rb +0 -20
  374. data/lib/ramaze/adapter/ebb.rb +0 -18
  375. data/lib/ramaze/adapter/evented_mongrel.rb +0 -7
  376. data/lib/ramaze/adapter/fake.rb +0 -12
  377. data/lib/ramaze/adapter/fcgi.rb +0 -18
  378. data/lib/ramaze/adapter/lsws.rb +0 -19
  379. data/lib/ramaze/adapter/mongrel.rb +0 -21
  380. data/lib/ramaze/adapter/scgi.rb +0 -18
  381. data/lib/ramaze/adapter/swiftiplied_mongrel.rb +0 -7
  382. data/lib/ramaze/adapter/thin.rb +0 -17
  383. data/lib/ramaze/adapter/webrick.rb +0 -43
  384. data/lib/ramaze/cache/file.rb +0 -71
  385. data/lib/ramaze/cache/memcached.rb +0 -69
  386. data/lib/ramaze/cache/memory.rb +0 -6
  387. data/lib/ramaze/cache/yaml_store.rb +0 -68
  388. data/lib/ramaze/contrib.rb +0 -82
  389. data/lib/ramaze/contrib/file_cache.rb +0 -3
  390. data/lib/ramaze/contrib/gems.rb +0 -82
  391. data/lib/ramaze/contrib/sequel/fill.rb +0 -12
  392. data/lib/ramaze/contrib/sequel_cache.rb +0 -92
  393. data/lib/ramaze/controller/error.rb +0 -46
  394. data/lib/ramaze/controller/main.rb +0 -2
  395. data/lib/ramaze/controller/resolve.rb +0 -278
  396. data/lib/ramaze/current/request.rb +0 -231
  397. data/lib/ramaze/current/session.rb +0 -179
  398. data/lib/ramaze/current/session/flash.rb +0 -88
  399. data/lib/ramaze/current/session/hash.rb +0 -62
  400. data/lib/ramaze/dispatcher.rb +0 -145
  401. data/lib/ramaze/dispatcher/action.rb +0 -50
  402. data/lib/ramaze/dispatcher/directory.rb +0 -119
  403. data/lib/ramaze/dispatcher/error.rb +0 -108
  404. data/lib/ramaze/dispatcher/file.rb +0 -100
  405. data/lib/ramaze/error.rb +0 -24
  406. data/lib/ramaze/helper/aspect.rb +0 -106
  407. data/lib/ramaze/helper/cgi.rb +0 -39
  408. data/lib/ramaze/helper/redirect.rb +0 -100
  409. data/lib/ramaze/helper/rest.rb +0 -43
  410. data/lib/ramaze/helper/sendfile.rb +0 -16
  411. data/lib/ramaze/option.rb +0 -156
  412. data/lib/ramaze/option/dsl.rb +0 -45
  413. data/lib/ramaze/option/holder.rb +0 -131
  414. data/lib/ramaze/option/merger.rb +0 -108
  415. data/lib/ramaze/route.rb +0 -97
  416. data/lib/ramaze/snippets/object/traits.rb +0 -76
  417. data/lib/ramaze/snippets/ramaze/caller_info.rb +0 -30
  418. data/lib/ramaze/snippets/ramaze/caller_lines.rb +0 -51
  419. data/lib/ramaze/snippets/ramaze/state.rb +0 -86
  420. data/lib/ramaze/snippets/string/each.rb +0 -19
  421. data/lib/ramaze/spec/helper.rb +0 -135
  422. data/lib/ramaze/spec/helper/browser.rb +0 -88
  423. data/lib/ramaze/spec/helper/mock_http.rb +0 -64
  424. data/lib/ramaze/spec/helper/requester.rb +0 -63
  425. data/lib/ramaze/spec/helper/simple_http.rb +0 -434
  426. data/lib/ramaze/store/default.rb +0 -109
  427. data/lib/ramaze/template.rb +0 -87
  428. data/lib/ramaze/template/amrita2.rb +0 -49
  429. data/lib/ramaze/template/builder.rb +0 -28
  430. data/lib/ramaze/template/erubis.rb +0 -41
  431. data/lib/ramaze/template/ezamar.rb +0 -42
  432. data/lib/ramaze/template/ezamar/element.rb +0 -169
  433. data/lib/ramaze/template/ezamar/engine.rb +0 -76
  434. data/lib/ramaze/template/ezamar/morpher.rb +0 -135
  435. data/lib/ramaze/template/ezamar/render_partial.rb +0 -39
  436. data/lib/ramaze/template/ezamar/textpow.syntax +0 -34
  437. data/lib/ramaze/template/haml.rb +0 -37
  438. data/lib/ramaze/template/liquid.rb +0 -36
  439. data/lib/ramaze/template/markaby.rb +0 -52
  440. data/lib/ramaze/template/maruku.rb +0 -34
  441. data/lib/ramaze/template/nagoro.rb +0 -52
  442. data/lib/ramaze/template/none.rb +0 -14
  443. data/lib/ramaze/template/redcloth.rb +0 -25
  444. data/lib/ramaze/template/remarkably.rb +0 -38
  445. data/lib/ramaze/template/sass.rb +0 -38
  446. data/lib/ramaze/template/tagz.rb +0 -79
  447. data/lib/ramaze/template/tenjin.rb +0 -74
  448. data/lib/ramaze/template/xslt.rb +0 -100
  449. data/lib/ramaze/tool.rb +0 -9
  450. data/lib/ramaze/tool/daemonize.rb +0 -37
  451. data/lib/ramaze/tool/localize.rb +0 -202
  452. data/lib/ramaze/tool/mime.rb +0 -35
  453. data/lib/ramaze/tool/mime_types.yaml +0 -615
  454. data/lib/ramaze/tool/record.rb +0 -6
  455. data/lib/ramaze/trinity.rb +0 -16
  456. data/lib/vendor/bacon.rb +0 -323
  457. data/rake_tasks/conf.rake +0 -71
  458. data/rake_tasks/coverage.rake +0 -45
  459. data/rake_tasks/gem.rake +0 -74
  460. data/rake_tasks/maintenance.rake +0 -386
  461. data/rake_tasks/release.rake +0 -76
  462. data/rake_tasks/spec.rake +0 -61
  463. data/spec/contrib/profiling.rb +0 -29
  464. data/spec/contrib/sequel/fill.rb +0 -47
  465. data/spec/examples/simple_auth.rb +0 -32
  466. data/spec/examples/templates/template_amrita2.rb +0 -16
  467. data/spec/ramaze/action/basics.rb +0 -36
  468. data/spec/ramaze/action/cache.rb +0 -87
  469. data/spec/ramaze/action/file_cache.rb +0 -70
  470. data/spec/ramaze/action/layout.rb +0 -190
  471. data/spec/ramaze/adapter.rb +0 -49
  472. data/spec/ramaze/adapter/ebb.rb +0 -12
  473. data/spec/ramaze/adapter/mongrel.rb +0 -12
  474. data/spec/ramaze/adapter/record.rb +0 -31
  475. data/spec/ramaze/adapter/webrick.rb +0 -12
  476. data/spec/ramaze/cache.rb +0 -140
  477. data/spec/ramaze/controller.rb +0 -180
  478. data/spec/ramaze/current/request.rb +0 -30
  479. data/spec/ramaze/current/session.rb +0 -97
  480. data/spec/ramaze/dispatcher.rb +0 -31
  481. data/spec/ramaze/element.rb +0 -107
  482. data/spec/ramaze/helper/aspect.rb +0 -101
  483. data/spec/ramaze/helper/cgi.rb +0 -43
  484. data/spec/ramaze/helper/file.rb +0 -18
  485. data/spec/ramaze/helper/partial.rb +0 -88
  486. data/spec/ramaze/helper/redirect.rb +0 -112
  487. data/spec/ramaze/localize.rb +0 -89
  488. data/spec/ramaze/morpher.rb +0 -111
  489. data/spec/ramaze/public/error404.xhtml +0 -1
  490. data/spec/ramaze/request/ebb.rb +0 -9
  491. data/spec/ramaze/request/mongrel.rb +0 -9
  492. data/spec/ramaze/request/thin.rb +0 -9
  493. data/spec/ramaze/request/webrick.rb +0 -5
  494. data/spec/ramaze/rewrite.rb +0 -36
  495. data/spec/ramaze/route.rb +0 -131
  496. data/spec/ramaze/session.rb +0 -94
  497. data/spec/ramaze/store/default.rb +0 -71
  498. data/spec/ramaze/template.rb +0 -128
  499. data/spec/ramaze/template/amrita2.rb +0 -50
  500. data/spec/ramaze/template/amrita2/external.amrita +0 -6
  501. data/spec/ramaze/template/amrita2/sum.amrita +0 -1
  502. data/spec/ramaze/template/builder.rb +0 -51
  503. data/spec/ramaze/template/builder/external.rxml +0 -3
  504. data/spec/ramaze/template/erubis.rb +0 -41
  505. data/spec/ramaze/template/erubis/sum.rhtml +0 -1
  506. data/spec/ramaze/template/ezamar.rb +0 -63
  507. data/spec/ramaze/template/ezamar/another/long/action.zmr +0 -1
  508. data/spec/ramaze/template/ezamar/combined.zmr +0 -1
  509. data/spec/ramaze/template/ezamar/file_only.zmr +0 -1
  510. data/spec/ramaze/template/ezamar/index.zmr +0 -1
  511. data/spec/ramaze/template/ezamar/nested.zmr +0 -1
  512. data/spec/ramaze/template/ezamar/other__index.xhtml +0 -1
  513. data/spec/ramaze/template/ezamar/some__long__action.zmr +0 -1
  514. data/spec/ramaze/template/ezamar/sum.zmr +0 -1
  515. data/spec/ramaze/template/haml.rb +0 -66
  516. data/spec/ramaze/template/haml/index.haml +0 -5
  517. data/spec/ramaze/template/haml/locals.haml +0 -2
  518. data/spec/ramaze/template/haml/with_vars.haml +0 -4
  519. data/spec/ramaze/template/liquid.rb +0 -99
  520. data/spec/ramaze/template/liquid/index.liquid +0 -1
  521. data/spec/ramaze/template/liquid/products.liquid +0 -45
  522. data/spec/ramaze/template/markaby.rb +0 -61
  523. data/spec/ramaze/template/markaby/external.mab +0 -8
  524. data/spec/ramaze/template/markaby/sum.mab +0 -1
  525. data/spec/ramaze/template/nagoro.rb +0 -64
  526. data/spec/ramaze/template/nagoro/another/long/action.nag +0 -1
  527. data/spec/ramaze/template/nagoro/combined.nag +0 -1
  528. data/spec/ramaze/template/nagoro/file_only.nag +0 -1
  529. data/spec/ramaze/template/nagoro/index.nag +0 -1
  530. data/spec/ramaze/template/nagoro/nested.nag +0 -1
  531. data/spec/ramaze/template/nagoro/some__long__action.nag +0 -1
  532. data/spec/ramaze/template/nagoro/sum.nag +0 -1
  533. data/spec/ramaze/template/redcloth.rb +0 -38
  534. data/spec/ramaze/template/redcloth/external.redcloth +0 -1
  535. data/spec/ramaze/template/remarkably.rb +0 -58
  536. data/spec/ramaze/template/sass.rb +0 -70
  537. data/spec/ramaze/template/tenjin.rb +0 -47
  538. data/spec/ramaze/template/tenjin/external.tenjin +0 -1
  539. data/spec/ramaze/template/xslt.rb +0 -90
  540. data/spec/ramaze/template/xslt/concat_words.xsl +0 -16
  541. data/spec/ramaze/template/xslt/index.xsl +0 -14
  542. data/spec/ramaze/template/xslt/products.xsl +0 -32
  543. data/spec/ramaze/template/xslt/ruby_version.xsl +0 -14
  544. data/spec/snippets/ramaze/caller_info.rb +0 -39
  545. data/spec/snippets/ramaze/caller_lines.rb +0 -30
@@ -1,599 +0,0 @@
1
- pre.brilliance_dull .MetaGroupBraces2 {
2
- background-color: #0E0E0E;
3
- }
4
- pre.brilliance_dull .StringEmbeddedSource {
5
- color: #555F68;
6
- }
7
- pre.brilliance_dull .line-numbers {
8
- background-color: #2B2F53;
9
- color: #FFFFFF;
10
- }
11
- pre.brilliance_dull .StorageModifier {
12
- }
13
- pre.brilliance_dull .TagWildcard {
14
- font-weight: bold;
15
- color: #A57C57;
16
- }
17
- pre.brilliance_dull .MUnderline {
18
- text-decoration: underline;
19
- }
20
- pre.brilliance_dull .MetaGroupBraces3 {
21
- background-color: #111111;
22
- }
23
- pre.brilliance_dull .MiscPunctuation {
24
- font-weight: bold;
25
- color: #666666;
26
- }
27
- pre.brilliance_dull .LEntityNameSection {
28
- background-color: #FFFFFF;
29
- color: #000000;
30
- }
31
- pre.brilliance_dull .MItalic {
32
- font-style: italic;
33
- }
34
- pre.brilliance_dull .MetaGroupBraces4 {
35
- background-color: #151515;
36
- }
37
- pre.brilliance_dull .DDiffDelete {
38
- background-color: #28151F;
39
- color: #BB82A0;
40
- }
41
- pre.brilliance_dull .LMetaEnvironmentList {
42
- background-color: #000000;
43
- color: #515151;
44
- }
45
- pre.brilliance_dull .InheritedClass {
46
- background-color: #2C1818;
47
- color: #A45880;
48
- }
49
- pre.brilliance_dull .LKeywordOperatorBraces {
50
- color: #666666;
51
- }
52
- pre.brilliance_dull .MetaGroupBraces5 {
53
- background-color: #191919;
54
- }
55
- pre.brilliance_dull .ObjectPunctuation {
56
- font-weight: bold;
57
- color: #345741;
58
- }
59
- pre.brilliance_dull .LMetaEndDocument {
60
- background-color: #CCCCCC;
61
- color: #000000;
62
- }
63
- pre.brilliance_dull .LibraryConstant {
64
- color: #57A5A3;
65
- }
66
- pre.brilliance_dull .LibraryVariable {
67
- background-color: #182D2C;
68
- color: #57A5A3;
69
- }
70
- pre.brilliance_dull .MetaGroupBraces6 {
71
- background-color: #1C1C1C;
72
- }
73
- pre.brilliance_dull .MetaSourceEmbedded {
74
- background-color: #000000;
75
- color: #666666;
76
- }
77
- pre.brilliance_dull .MetaBracePipe {
78
- background-color: #1C1C1C;
79
- color: #4C4C4C;
80
- }
81
- pre.brilliance_dull .KeywordOperatorArithmetic {
82
- color: #5B6190;
83
- }
84
- pre.brilliance_dull .LMetaLabelReference {
85
- background-color: #3C3C3C;
86
- }
87
- pre.brilliance_dull .MetaGroupBraces7 {
88
- background-color: #1F1F1F;
89
- }
90
- pre.brilliance_dull .LVariableParameterCite {
91
- background-color: #28151F;
92
- color: #E7D4DF;
93
- }
94
- pre.brilliance_dull .TagBlockForm {
95
- background-color: #10181F;
96
- }
97
- pre.brilliance_dull .MRawBlock {
98
- background-color: #000000;
99
- color: #999999;
100
- }
101
- pre.brilliance_dull .KeywordControl {
102
- color: #A358A5;
103
- }
104
- pre.brilliance_dull .MetaGroupBraces8 {
105
- background-color: #212121;
106
- }
107
- pre.brilliance_dull .MetaDelimiter {
108
- font-weight: bold;
109
- background-color: #111111;
110
- color: #FFFFFF;
111
- }
112
- pre.brilliance_dull .LMetaEnvironmentList2 {
113
- background-color: #000000;
114
- color: #515151;
115
- }
116
- pre.brilliance_dull .LMetaFootnote {
117
- background-color: #18172D;
118
- color: #7A7BB0;
119
- }
120
- pre.brilliance_dull .RegexKeyword {
121
- }
122
- pre.brilliance_dull .StringRegexGroup1 {
123
- background-color: #232D18;
124
- }
125
- pre.brilliance_dull .TagName {
126
- color: #EFEFEF;
127
- }
128
- pre.brilliance_dull .VariableLanguageThisJsPrototype {
129
- color: #666666;
130
- }
131
- pre.brilliance_dull .MetaGroupBraces9 {
132
- background-color: #242424;
133
- }
134
- pre.brilliance_dull .BoldStringQuotes {
135
- font-weight: bold;
136
- }
137
- pre.brilliance_dull .MetaDelimiterObjectJs {
138
- background-color: #000000;
139
- }
140
- pre.brilliance_dull .MetaDelimiterStatementJs {
141
- background-color: #000000;
142
- }
143
- pre.brilliance_dull .Invalid {
144
- font-weight: bold;
145
- background-color: #A5585A;
146
- color: #201111;
147
- }
148
- pre.brilliance_dull .LMetaEnvironmentList3 {
149
- background-color: #000000;
150
- color: #515151;
151
- }
152
- pre.brilliance_dull .MQuoteBlock {
153
- background-color: #616161;
154
- }
155
- pre.brilliance_dull .ClassMethod {
156
- color: #A45880;
157
- }
158
- pre.brilliance_dull .Keyword {
159
- }
160
- pre.brilliance_dull .AttributeMatch {
161
- background-color: #18172D;
162
- color: #5859A5;
163
- }
164
- pre.brilliance_dull .StringRegexGroup2 {
165
- background-color: #232D18;
166
- color: #EAEAEA;
167
- }
168
- pre.brilliance_dull .DDiffAdd {
169
- background-color: #14281D;
170
- color: #82BB9C;
171
- }
172
- pre.brilliance_dull .MetaBraceErbReturnValue {
173
- background-color: #182D25;
174
- color: #58A58A;
175
- }
176
- pre.brilliance_dull .LMetaEnvironmentList4 {
177
- color: #515151;
178
- }
179
- pre.brilliance_dull .FunctionDeclarationParametersPunctuation {
180
- color: #512C2C;
181
- }
182
- pre.brilliance_dull .TagAttribute {
183
- color: #F4F4F4;
184
- }
185
- pre.brilliance_dull .MReference {
186
- color: #5780A5;
187
- }
188
- pre.brilliance_dull .StringRegexGroup3 {
189
- background-color: #232D18;
190
- color: #EAEAEA;
191
- }
192
- pre.brilliance_dull .GlobalVariable {
193
- background-color: #18232D;
194
- color: #2C5251;
195
- }
196
- pre.brilliance_dull .LMetaEnvironmentList5 {
197
- color: #515151;
198
- }
199
- pre.brilliance_dull .EntityNamePreprocessor {
200
- }
201
- pre.brilliance_dull .FunctionDeclarationParameters {
202
- color: #BABBD9;
203
- }
204
- pre.brilliance_dull .StringRegexGroup4 {
205
- background-color: #232D18;
206
- color: #EAEAEA;
207
- }
208
- pre.brilliance_dull .LSupportFunctionSection {
209
- color: #D8D8D8;
210
- }
211
- pre.brilliance_dull .LMetaEnvironmentList6 {
212
- color: #515151;
213
- }
214
- pre.brilliance_dull .Id {
215
- color: #A45880;
216
- }
217
- pre.brilliance_dull .CurlyPunctuation {
218
- font-weight: bold;
219
- color: #FFFFFF;
220
- }
221
- pre.brilliance_dull .SubtlegradientCom {
222
- background-color: #FFFFFF;
223
- text-decoration: underline;
224
- color: #555555;
225
- }
226
- pre.brilliance_dull .StringPunctuation {
227
- }
228
- pre.brilliance_dull .LSupportFunction {
229
- color: #A358A5;
230
- }
231
- pre.brilliance_dull .TextSubversionCommit {
232
- background-color: #FFFFFF;
233
- color: #000000;
234
- }
235
- pre.brilliance_dull .SourceEmbededSource {
236
- background-color: #131313;
237
- }
238
- pre.brilliance_dull .LVariableParameterLabel {
239
- color: #E5E5E5;
240
- }
241
- pre.brilliance_dull .TagOther {
242
- background-color: #2C1818;
243
- color: #A5585A;
244
- }
245
- pre.brilliance_dull .ClassVariable {
246
- background-color: #30305A;
247
- color: #5780A5;
248
- }
249
- pre.brilliance_dull .MetaGroupAssertionRegexp {
250
- background-color: #2F465A;
251
- }
252
- pre.brilliance_dull .KeywordOperatorLogical {
253
- background-color: #1C1C36;
254
- color: #7C85B8;
255
- }
256
- pre.brilliance_dull .DDiffChanged {
257
- color: #C2C28F;
258
- }
259
- pre.brilliance_dull .HtmlComment {
260
- font-style: italic;
261
- }
262
- pre.brilliance_dull .StringInterpolated {
263
- background-color: #1A1A1A;
264
- color: #D1D1AB;
265
- }
266
- pre.brilliance_dull .BuiltInConstant1 {
267
- background-color: #182D18;
268
- color: #5AA557;
269
- }
270
- pre.brilliance_dull .InstanceConstructor {
271
- background-color: #2D1823;
272
- }
273
- pre.brilliance_dull .Instance {
274
- color: #A5585A;
275
- }
276
- pre.brilliance_dull .MetaPropertyList {
277
- font-weight: bold;
278
- color: #333333;
279
- }
280
- pre.brilliance_dull .FunctionDeclarationName {
281
- }
282
- pre.brilliance_dull .Latex {
283
- }
284
- pre.brilliance_dull .LMarkupRaw {
285
- background-color: #000000;
286
- }
287
- pre.brilliance_dull .StringPunctuationIi {
288
- color: #ACAB6F;
289
- }
290
- pre.brilliance_dull .LKeywordControlRef {
291
- background-color: #170C0C;
292
- color: #A5585A;
293
- }
294
- pre.brilliance_dull .Css {
295
- }
296
- pre.brilliance_dull .ClassName {
297
- color: #A5585A;
298
- }
299
- pre.brilliance_dull .MetaPropertyName {
300
- color: #999999;
301
- }
302
- pre.brilliance_dull .MetaHeadersBlogKeywordOtherBlog {
303
- background-color: #213F3E;
304
- color: #182A29;
305
- }
306
- pre.brilliance_dull .PseudoClass {
307
- color: #7D58A4;
308
- }
309
- pre.brilliance_dull {
310
- background-color: #000000;
311
- color: #CCCCCC;
312
- }
313
- pre.brilliance_dull .TagBlockHead {
314
- background-color: #121212;
315
- }
316
- pre.brilliance_dull .StringRegexArbitraryRepitition {
317
- background-color: #232D18;
318
- color: #57A5A3;
319
- }
320
- pre.brilliance_dull .LKeywordOperatorDelimiter {
321
- background-color: #000000;
322
- }
323
- pre.brilliance_dull .MReferenceName {
324
- background-color: #18232D;
325
- color: #57A5A3;
326
- }
327
- pre.brilliance_dull .TextSubversionCommitMetaScopeChangedFiles {
328
- background-color: #000000;
329
- color: #FFFFFF;
330
- }
331
- pre.brilliance_dull .VariablePunctuation {
332
- color: #666666;
333
- }
334
- pre.brilliance_dull .MUnderlineLink {
335
- text-decoration: underline;
336
- color: #57A5A3;
337
- }
338
- pre.brilliance_dull .Selector {
339
- background-color: #000000;
340
- color: #666666;
341
- }
342
- pre.brilliance_dull .TagDoctype {
343
- background-color: #333333;
344
- color: #CCCCCC;
345
- }
346
- pre.brilliance_dull .Class {
347
- background-color: #5A3031;
348
- color: #512C2C;
349
- }
350
- pre.brilliance_dull .BuiltInConstant {
351
- color: #5AA557;
352
- }
353
- pre.brilliance_dull .MBold {
354
- font-weight: bold;
355
- }
356
- pre.brilliance_dull .MHeading {
357
- background-color: #262626;
358
- color: #666666;
359
- }
360
- pre.brilliance_dull .ConstantVariable {
361
- color: #57A5A3;
362
- }
363
- pre.brilliance_dull .LKeywordControlCite {
364
- background-color: #170C12;
365
- color: #A45880;
366
- }
367
- pre.brilliance_dull .XmlTag {
368
- color: #666666;
369
- }
370
- pre.brilliance_dull .MHr {
371
- background-color: #FFFFFF;
372
- color: #000000;
373
- }
374
- pre.brilliance_dull .FunctionPunctuation {
375
- font-weight: bold;
376
- color: #A358A5;
377
- }
378
- pre.brilliance_dull .Variable {
379
- color: #789BB6;
380
- }
381
- pre.brilliance_dull .FunctionCallArgumentsPunctuation {
382
- color: #A358A5;
383
- }
384
- pre.brilliance_dull .Syntax {
385
- color: #333333;
386
- }
387
- pre.brilliance_dull .MetaPropertyValue {
388
- background-color: #0D0D0D;
389
- color: #999999;
390
- }
391
- pre.brilliance_dull .KeywordOperator {
392
- color: #5B6190;
393
- }
394
- pre.brilliance_dull .StringUnquoted {
395
- color: #D1BDAB;
396
- }
397
- pre.brilliance_dull .LConstantLanguageGeneral {
398
- }
399
- pre.brilliance_dull .TextStringSource {
400
- color: #999999;
401
- }
402
- pre.brilliance_dull .LVariableParameterLabelReference {
403
- background-color: #281516;
404
- color: #D1BDAB;
405
- }
406
- pre.brilliance_dull .FunctionDeclarationParameters1 {
407
- color: #BABBD9;
408
- }
409
- pre.brilliance_dull .Source {
410
- background-color: #000000;
411
- }
412
- pre.brilliance_dull .LibraryFunctionCall {
413
- color: #9D80BA;
414
- }
415
- pre.brilliance_dull .MetaHeadersBlogStringUnquotedBlog {
416
- background-color: #4A4A36;
417
- }
418
- pre.brilliance_dull .StringRegexCharacterClass {
419
- background-color: #232D18;
420
- color: #80A557;
421
- }
422
- pre.brilliance_dull .LibraryFunctionName {
423
- background-color: #332D39;
424
- color: #5E5368;
425
- }
426
- pre.brilliance_dull .MetaBlockContentSlate {
427
- color: #CCCCCC;
428
- }
429
- pre.brilliance_dull .TextStringSourceStringSource {
430
- }
431
- pre.brilliance_dull .MetaBraceErb1 {
432
- background-color: #000000;
433
- }
434
- pre.brilliance_dull .String {
435
- color: #D2D191;
436
- }
437
- pre.brilliance_dull .TagInline {
438
- color: #A57C57;
439
- }
440
- pre.brilliance_dull .MetaBlockSlate {
441
- color: #666666;
442
- }
443
- pre.brilliance_dull .MetaHeadersBlog1 {
444
- background-color: #FFFFFF;
445
- color: #666666;
446
- }
447
- pre.brilliance_dull .SourceRubyRailsEmbeddedOneLine {
448
- background-color: #213F3E;
449
- }
450
- pre.brilliance_dull .SourceRubyRailsEmbeddedReturnValueOneLine {
451
- background-color: #464646;
452
- }
453
- pre.brilliance_dull .MMarkup {
454
- background-color: #1C1C1C;
455
- color: #A5A358;
456
- }
457
- pre.brilliance_dull .TagBlock {
458
- background-color: #292929;
459
- color: #4C4C4C;
460
- }
461
- pre.brilliance_dull .SourceStringInterpolatedSource {
462
- background-color: #000000;
463
- color: #999999;
464
- }
465
- pre.brilliance_dull .SourceStringSource {
466
- background-color: #262626;
467
- color: #FFFFFF;
468
- }
469
- pre.brilliance_dull .xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx {
470
- background-color: #FFFFFF;
471
- color: #E6E6E6;
472
- }
473
- pre.brilliance_dull .LKeywordOperatorBrackets {
474
- color: #999999;
475
- }
476
- pre.brilliance_dull .TagMeta {
477
- background-color: #22182D;
478
- color: #A358A5;
479
- }
480
- pre.brilliance_dull .GlobalPreDefinedVariable {
481
- background-color: #182D2C;
482
- color: #58A57C;
483
- }
484
- pre.brilliance_dull .TagForm {
485
- background-color: #18232D;
486
- color: #5780A5;
487
- }
488
- pre.brilliance_dull .Tag {
489
- color: #333333;
490
- }
491
- pre.brilliance_dull .UserDefinedConstant {
492
- color: #58A57C;
493
- }
494
- pre.brilliance_dull .NormalVariables {
495
- color: #555F68;
496
- }
497
- pre.brilliance_dull .ThomasAylott {
498
- font-weight: bold;
499
- background-color: #FFFFFF;
500
- color: #000000;
501
- }
502
- pre.brilliance_dull .TextSource {
503
- background-color: #000000;
504
- color: #CCCCCC;
505
- }
506
- pre.brilliance_dull .MetaBraceErb {
507
- background-color: #213F3E;
508
- color: #57A5A3;
509
- }
510
- pre.brilliance_dull .SupportTypePropertyName {
511
- background-color: #000000;
512
- color: #FFFFFF;
513
- }
514
- pre.brilliance_dull .StringLiteral {
515
- background-color: #232D18;
516
- color: #A5A358;
517
- }
518
- pre.brilliance_dull .KeywordOperatorAssignment {
519
- background-color: #1C1C36;
520
- color: #464684;
521
- }
522
- pre.brilliance_dull .KeywordOperatorComparison {
523
- color: #A9ACD0;
524
- }
525
- pre.brilliance_dull .MetaGroupBracesRoundJs {
526
- }
527
- pre.brilliance_dull .MetaHeadersBlog {
528
- background-color: #FFFFFF;
529
- }
530
- pre.brilliance_dull .Comment {
531
- background-color: #1C1C1C;
532
- color: #ACACAC;
533
- }
534
- pre.brilliance_dull .Class1 {
535
- color: #A358A5;
536
- }
537
- pre.brilliance_dull .Text {
538
- color: #FFFFFF;
539
- }
540
- pre.brilliance_dull .FunctionCallWithoutArguments {
541
- color: #A79EAE;
542
- }
543
- pre.brilliance_dull .StringRegex {
544
- background-color: #232D18;
545
- color: #A5A358;
546
- }
547
- pre.brilliance_dull .FunctionCall {
548
- color: #765F8C;
549
- }
550
- pre.brilliance_dull .CommentPunctuation {
551
- }
552
- pre.brilliance_dull .LMetaGroupBraces {
553
- color: #515151;
554
- }
555
- pre.brilliance_dull .MetaTagInlineSource {
556
- }
557
- pre.brilliance_dull .TagStructure {
558
- background-color: #292929;
559
- color: #666666;
560
- }
561
- pre.brilliance_dull .Tag1 {
562
- color: #A5585A;
563
- }
564
- pre.brilliance_dull .Storage {
565
- color: #A57C57;
566
- }
567
- pre.brilliance_dull .MetaAssertion {
568
- color: #5780A5;
569
- }
570
- pre.brilliance_dull .MetaBraceCurlyMetaGroup {
571
- background-color: #000000;
572
- color: #CCCCCC;
573
- }
574
- pre.brilliance_dull .ArrayPunctuation {
575
- font-weight: bold;
576
- color: #675D54;
577
- }
578
- pre.brilliance_dull .InstanceVariable {
579
- color: #555F68;
580
- }
581
- pre.brilliance_dull .CharacterConstant {
582
- color: #80A557;
583
- }
584
- pre.brilliance_dull .LibraryClassType {
585
- background-color: #2C1818;
586
- color: #A5585A;
587
- }
588
- pre.brilliance_dull .Number {
589
- color: #94A558;
590
- }
591
- pre.brilliance_dull .MetaGroupBraces1 {
592
- background-color: #0A0A0A;
593
- }
594
- pre.brilliance_dull .TagValue {
595
- color: #EAEAEA;
596
- }
597
- pre.brilliance_dull .FunctionDeclaration {
598
- color: #A45880;
599
- }