ptomato-ramaze 2009.02
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +481 -0
- data/Rakefile +248 -0
- data/benchmark/results.txt +131 -0
- data/benchmark/run.rb +362 -0
- data/benchmark/suite/minimal.rb +13 -0
- data/benchmark/suite/no_informer.rb +9 -0
- data/benchmark/suite/no_sessions.rb +10 -0
- data/benchmark/suite/no_template.rb +9 -0
- data/benchmark/suite/simple.rb +7 -0
- data/benchmark/suite/template_amrita2.rb +17 -0
- data/benchmark/suite/template_builder.rb +12 -0
- data/benchmark/suite/template_erubis.rb +10 -0
- data/benchmark/suite/template_ezamar.rb +10 -0
- data/benchmark/suite/template_haml.rb +15 -0
- data/benchmark/suite/template_liquid.rb +13 -0
- data/benchmark/suite/template_markaby.rb +11 -0
- data/benchmark/suite/template_nagoro.rb +10 -0
- data/benchmark/suite/template_redcloth.rb +15 -0
- data/benchmark/suite/template_tenjin.rb +10 -0
- data/benchmark/test.rb +35 -0
- data/bin/ramaze +80 -0
- data/doc/AUTHORS +29 -0
- data/doc/CHANGELOG +19530 -0
- data/doc/COPYING +56 -0
- data/doc/FAQ +92 -0
- data/doc/GPL +339 -0
- data/doc/INSTALL +92 -0
- data/doc/LEGAL +26 -0
- data/doc/TODO +29 -0
- data/doc/meta/announcement.txt +99 -0
- data/doc/meta/configuration.txt +163 -0
- data/doc/meta/internals.txt +278 -0
- data/doc/meta/users.kml +64 -0
- data/doc/readme_chunks/appendix.txt +10 -0
- data/doc/readme_chunks/examples.txt +38 -0
- data/doc/readme_chunks/features.txt +148 -0
- data/doc/readme_chunks/getting_help.txt +5 -0
- data/doc/readme_chunks/getting_started.txt +18 -0
- data/doc/readme_chunks/installing.txt +92 -0
- data/doc/readme_chunks/introduction.txt +18 -0
- data/doc/readme_chunks/principles.txt +56 -0
- data/doc/readme_chunks/thanks.txt +59 -0
- data/doc/tutorial/todolist.html +742 -0
- data/doc/tutorial/todolist.mkd +787 -0
- data/examples/app/auth/auth.rb +54 -0
- data/examples/app/auth/template/layout.haml +20 -0
- data/examples/app/auth/template/login.haml +16 -0
- data/examples/app/blog/README +3 -0
- data/examples/app/blog/controller/main.rb +29 -0
- data/examples/app/blog/model/entry.rb +30 -0
- data/examples/app/blog/public/styles/blog.css +132 -0
- data/examples/app/blog/spec/blog.rb +87 -0
- data/examples/app/blog/start.rb +7 -0
- data/examples/app/blog/view/edit.xhtml +17 -0
- data/examples/app/blog/view/index.xhtml +17 -0
- data/examples/app/blog/view/layout.xhtml +11 -0
- data/examples/app/blog/view/new.xhtml +16 -0
- data/examples/app/chat/model/history.rb +36 -0
- data/examples/app/chat/model/message.rb +7 -0
- data/examples/app/chat/public/css/chat.css +13 -0
- data/examples/app/chat/public/js/chat.js +22 -0
- data/examples/app/chat/public/js/jquery.js +3436 -0
- data/examples/app/chat/start.rb +40 -0
- data/examples/app/chat/view/chat.xhtml +9 -0
- data/examples/app/chat/view/index.xhtml +7 -0
- data/examples/app/chat/view/layout.xhtml +13 -0
- data/examples/app/localization/start.rb +35 -0
- data/examples/app/rapaste/Rakefile +34 -0
- data/examples/app/rapaste/controller/paste.rb +101 -0
- data/examples/app/rapaste/model/paste.rb +58 -0
- data/examples/app/rapaste/public/css/active4d.css +114 -0
- data/examples/app/rapaste/public/css/all_hallows_eve.css +72 -0
- data/examples/app/rapaste/public/css/amy.css +147 -0
- data/examples/app/rapaste/public/css/blackboard.css +88 -0
- data/examples/app/rapaste/public/css/brilliance_black.css +605 -0
- data/examples/app/rapaste/public/css/brilliance_dull.css +599 -0
- data/examples/app/rapaste/public/css/cobalt.css +149 -0
- data/examples/app/rapaste/public/css/dawn.css +121 -0
- data/examples/app/rapaste/public/css/display.css +197 -0
- data/examples/app/rapaste/public/css/eiffel.css +121 -0
- data/examples/app/rapaste/public/css/espresso_libre.css +109 -0
- data/examples/app/rapaste/public/css/idle.css +62 -0
- data/examples/app/rapaste/public/css/iplastic.css +80 -0
- data/examples/app/rapaste/public/css/lazy.css +73 -0
- data/examples/app/rapaste/public/css/mac_classic.css +123 -0
- data/examples/app/rapaste/public/css/magicwb_amiga.css +104 -0
- data/examples/app/rapaste/public/css/pastels_on_dark.css +188 -0
- data/examples/app/rapaste/public/css/slush_poppies.css +85 -0
- data/examples/app/rapaste/public/css/spacecadet.css +51 -0
- data/examples/app/rapaste/public/css/sunburst.css +180 -0
- data/examples/app/rapaste/public/css/twilight.css +137 -0
- data/examples/app/rapaste/public/css/zenburnesque.css +91 -0
- data/examples/app/rapaste/public/js/jquery.js +11 -0
- data/examples/app/rapaste/spec/rapaste.rb +51 -0
- data/examples/app/rapaste/start.rb +25 -0
- data/examples/app/rapaste/view/copy.xhtml +10 -0
- data/examples/app/rapaste/view/index.xhtml +9 -0
- data/examples/app/rapaste/view/layout.xhtml +25 -0
- data/examples/app/rapaste/view/list.xhtml +29 -0
- data/examples/app/rapaste/view/search.xhtml +41 -0
- data/examples/app/rapaste/view/view.xhtml +40 -0
- data/examples/app/sourceview/public/coderay.css +104 -0
- data/examples/app/sourceview/public/images/file.gif +0 -0
- data/examples/app/sourceview/public/images/folder.gif +0 -0
- data/examples/app/sourceview/public/images/tv-collapsable-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-collapsable.gif +0 -0
- data/examples/app/sourceview/public/images/tv-expandable-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-expandable.gif +0 -0
- data/examples/app/sourceview/public/images/tv-item-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-item.gif +0 -0
- data/examples/app/sourceview/public/jquery.js +11 -0
- data/examples/app/sourceview/public/jquery.treeview.css +48 -0
- data/examples/app/sourceview/public/jquery.treeview.js +223 -0
- data/examples/app/sourceview/public/sourceview.js +52 -0
- data/examples/app/sourceview/sourceview.rb +77 -0
- data/examples/app/sourceview/template/index.haml +59 -0
- data/examples/app/todolist/README +1 -0
- data/examples/app/todolist/public/favicon.ico +0 -0
- data/examples/app/todolist/public/js/jquery.js +1923 -0
- data/examples/app/todolist/public/ramaze.png +0 -0
- data/examples/app/todolist/spec/todolist.rb +132 -0
- data/examples/app/todolist/src/controller/main.rb +70 -0
- data/examples/app/todolist/src/element/page.rb +31 -0
- data/examples/app/todolist/src/model.rb +14 -0
- data/examples/app/todolist/start.rb +11 -0
- data/examples/app/todolist/template/index.xhtml +17 -0
- data/examples/app/todolist/template/new.xhtml +7 -0
- data/examples/app/upload/start.rb +19 -0
- data/examples/app/upload/view/index.xhtml +25 -0
- data/examples/app/whywiki/spec/whywiki.rb +58 -0
- data/examples/app/whywiki/start.rb +46 -0
- data/examples/app/whywiki/template/edit.xhtml +14 -0
- data/examples/app/whywiki/template/show.xhtml +18 -0
- data/examples/app/wikore/spec/wikore.rb +111 -0
- data/examples/app/wikore/src/controller.rb +80 -0
- data/examples/app/wikore/src/model.rb +53 -0
- data/examples/app/wikore/start.rb +9 -0
- data/examples/app/wikore/template/index.xhtml +8 -0
- data/examples/app/wiktacular/README +2 -0
- data/examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd +1 -0
- data/examples/app/wiktacular/mkd/link/current.mkd +1 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd +1 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd +1 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +2 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +2 -0
- data/examples/app/wiktacular/mkd/main/current.mkd +2 -0
- data/examples/app/wiktacular/mkd/markdown/current.mkd +3 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +2 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd +3 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd +11 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd +13 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd +17 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd +17 -0
- data/examples/app/wiktacular/mkd/testing/current.mkd +17 -0
- data/examples/app/wiktacular/public/favicon.ico +0 -0
- data/examples/app/wiktacular/public/screen.css +72 -0
- data/examples/app/wiktacular/spec/wiktacular.rb +157 -0
- data/examples/app/wiktacular/src/controller.rb +55 -0
- data/examples/app/wiktacular/src/model.rb +102 -0
- data/examples/app/wiktacular/start.rb +8 -0
- data/examples/app/wiktacular/template/edit.xhtml +6 -0
- data/examples/app/wiktacular/template/html_layout.xhtml +27 -0
- data/examples/app/wiktacular/template/index.xhtml +9 -0
- data/examples/app/wiktacular/template/new.xhtml +6 -0
- data/examples/basic/element.rb +45 -0
- data/examples/basic/gestalt.rb +27 -0
- data/examples/basic/hello.rb +15 -0
- data/examples/basic/layout.rb +28 -0
- data/examples/basic/linking.rb +29 -0
- data/examples/basic/partial.rb +28 -0
- data/examples/basic/simple.rb +56 -0
- data/examples/helpers/cache.rb +31 -0
- data/examples/helpers/form_with_sequel.rb +24 -0
- data/examples/helpers/httpdigest.rb +108 -0
- data/examples/helpers/identity.rb +18 -0
- data/examples/helpers/nitro_form.rb +23 -0
- data/examples/helpers/paginate.rb +71 -0
- data/examples/helpers/provide.rb +23 -0
- data/examples/helpers/rest.rb +28 -0
- data/examples/helpers/simple_captcha.rb +29 -0
- data/examples/misc/css.rb +37 -0
- data/examples/misc/facebook.rb +159 -0
- data/examples/misc/memleak_detector.rb +32 -0
- data/examples/misc/nagoro_element.rb +43 -0
- data/examples/misc/ramaise.rb +132 -0
- data/examples/misc/rapp.rb +45 -0
- data/examples/misc/sequel_scaffolding.rb +34 -0
- data/examples/misc/simple_auth.rb +35 -0
- data/examples/templates/template/external.amrita +19 -0
- data/examples/templates/template/external.haml +22 -0
- data/examples/templates/template/external.liquid +28 -0
- data/examples/templates/template/external.mab +30 -0
- data/examples/templates/template/external.nag +28 -0
- data/examples/templates/template/external.redcloth +19 -0
- data/examples/templates/template/external.rem +30 -0
- data/examples/templates/template/external.rhtml +28 -0
- data/examples/templates/template/external.tenjin +28 -0
- data/examples/templates/template/external.xsl +57 -0
- data/examples/templates/template/external.zmr +28 -0
- data/examples/templates/template_amrita2.rb +74 -0
- data/examples/templates/template_erubis.rb +53 -0
- data/examples/templates/template_ezamar.rb +50 -0
- data/examples/templates/template_haml.rb +50 -0
- data/examples/templates/template_liquid.rb +65 -0
- data/examples/templates/template_markaby.rb +58 -0
- data/examples/templates/template_nagoro.rb +51 -0
- data/examples/templates/template_redcloth.rb +59 -0
- data/examples/templates/template_remarkably.rb +55 -0
- data/examples/templates/template_tenjin.rb +53 -0
- data/examples/templates/template_xslt.rb +49 -0
- data/lib/proto/controller/init.rb +11 -0
- data/lib/proto/controller/main.rb +20 -0
- data/lib/proto/model/init.rb +4 -0
- data/lib/proto/public/.htaccess +24 -0
- data/lib/proto/public/css/ramaze_error.css +90 -0
- data/lib/proto/public/dispatch.fcgi +11 -0
- data/lib/proto/public/favicon.ico +0 -0
- data/lib/proto/public/js/jquery.js +3549 -0
- data/lib/proto/public/ramaze.png +0 -0
- data/lib/proto/spec/main.rb +25 -0
- data/lib/proto/start.rb +12 -0
- data/lib/proto/start.ru +16 -0
- data/lib/proto/view/error.xhtml +64 -0
- data/lib/proto/view/index.xhtml +34 -0
- data/lib/proto/view/page.xhtml +27 -0
- data/lib/ramaze/action/render.rb +192 -0
- data/lib/ramaze/action.rb +159 -0
- data/lib/ramaze/adapter/base.rb +128 -0
- data/lib/ramaze/adapter/cgi.rb +20 -0
- data/lib/ramaze/adapter/ebb.rb +18 -0
- data/lib/ramaze/adapter/evented_mongrel.rb +7 -0
- data/lib/ramaze/adapter/fake.rb +12 -0
- data/lib/ramaze/adapter/fcgi.rb +18 -0
- data/lib/ramaze/adapter/lsws.rb +19 -0
- data/lib/ramaze/adapter/mongrel.rb +21 -0
- data/lib/ramaze/adapter/scgi.rb +18 -0
- data/lib/ramaze/adapter/swiftiplied_mongrel.rb +7 -0
- data/lib/ramaze/adapter/thin.rb +17 -0
- data/lib/ramaze/adapter/webrick.rb +43 -0
- data/lib/ramaze/adapter.rb +97 -0
- data/lib/ramaze/cache/file.rb +71 -0
- data/lib/ramaze/cache/memcached.rb +69 -0
- data/lib/ramaze/cache/memory.rb +6 -0
- data/lib/ramaze/cache/yaml_store.rb +68 -0
- data/lib/ramaze/cache.rb +114 -0
- data/lib/ramaze/contrib/email.rb +86 -0
- data/lib/ramaze/contrib/facebook/facebook.rb +171 -0
- data/lib/ramaze/contrib/facebook.rb +23 -0
- data/lib/ramaze/contrib/file_cache.rb +3 -0
- data/lib/ramaze/contrib/gems.rb +78 -0
- data/lib/ramaze/contrib/gettext/mo.rb +155 -0
- data/lib/ramaze/contrib/gettext/parser.rb +46 -0
- data/lib/ramaze/contrib/gettext/po.rb +109 -0
- data/lib/ramaze/contrib/gettext.rb +113 -0
- data/lib/ramaze/contrib/gzip_filter.rb +69 -0
- data/lib/ramaze/contrib/maruku_uv.rb +59 -0
- data/lib/ramaze/contrib/profiling.rb +36 -0
- data/lib/ramaze/contrib/rest.rb +17 -0
- data/lib/ramaze/contrib/sequel/create_join.rb +25 -0
- data/lib/ramaze/contrib/sequel/fill.rb +12 -0
- data/lib/ramaze/contrib/sequel/form_field.rb +129 -0
- data/lib/ramaze/contrib/sequel/image.rb +198 -0
- data/lib/ramaze/contrib/sequel/relation.rb +82 -0
- data/lib/ramaze/contrib/sequel_cache.rb +92 -0
- data/lib/ramaze/contrib.rb +82 -0
- data/lib/ramaze/controller/error.rb +46 -0
- data/lib/ramaze/controller/main.rb +2 -0
- data/lib/ramaze/controller/resolve.rb +278 -0
- data/lib/ramaze/controller.rb +288 -0
- data/lib/ramaze/current/request.rb +231 -0
- data/lib/ramaze/current/response.rb +37 -0
- data/lib/ramaze/current/session/flash.rb +88 -0
- data/lib/ramaze/current/session/hash.rb +62 -0
- data/lib/ramaze/current/session.rb +179 -0
- data/lib/ramaze/current.rb +51 -0
- data/lib/ramaze/dispatcher/action.rb +50 -0
- data/lib/ramaze/dispatcher/directory.rb +119 -0
- data/lib/ramaze/dispatcher/error.rb +108 -0
- data/lib/ramaze/dispatcher/file.rb +100 -0
- data/lib/ramaze/dispatcher.rb +145 -0
- data/lib/ramaze/error.rb +24 -0
- data/lib/ramaze/gestalt.rb +124 -0
- data/lib/ramaze/helper/aspect.rb +106 -0
- data/lib/ramaze/helper/auth.rb +125 -0
- data/lib/ramaze/helper/bench.rb +43 -0
- data/lib/ramaze/helper/cache.rb +140 -0
- data/lib/ramaze/helper/cgi.rb +39 -0
- data/lib/ramaze/helper/flash.rb +74 -0
- data/lib/ramaze/helper/form.rb +284 -0
- data/lib/ramaze/helper/formatting.rb +162 -0
- data/lib/ramaze/helper/gestalt.rb +15 -0
- data/lib/ramaze/helper/gravatar.rb +32 -0
- data/lib/ramaze/helper/httpdigest.rb +88 -0
- data/lib/ramaze/helper/identity.rb +119 -0
- data/lib/ramaze/helper/link.rb +122 -0
- data/lib/ramaze/helper/markaby.rb +31 -0
- data/lib/ramaze/helper/maruku.rb +9 -0
- data/lib/ramaze/helper/nitroform.rb +14 -0
- data/lib/ramaze/helper/pager.rb +366 -0
- data/lib/ramaze/helper/paginate.rb +233 -0
- data/lib/ramaze/helper/partial.rb +105 -0
- data/lib/ramaze/helper/redirect.rb +100 -0
- data/lib/ramaze/helper/rest.rb +43 -0
- data/lib/ramaze/helper/sendfile.rb +16 -0
- data/lib/ramaze/helper/sequel.rb +55 -0
- data/lib/ramaze/helper/simple_captcha.rb +31 -0
- data/lib/ramaze/helper/stack.rb +77 -0
- data/lib/ramaze/helper/tagz.rb +19 -0
- data/lib/ramaze/helper/thread.rb +17 -0
- data/lib/ramaze/helper/ultraviolet.rb +44 -0
- data/lib/ramaze/helper/user.rb +110 -0
- data/lib/ramaze/helper/xhtml.rb +23 -0
- data/lib/ramaze/helper.rb +87 -0
- data/lib/ramaze/log/analogger.rb +40 -0
- data/lib/ramaze/log/growl.rb +38 -0
- data/lib/ramaze/log/hub.rb +41 -0
- data/lib/ramaze/log/informer.rb +128 -0
- data/lib/ramaze/log/knotify.rb +28 -0
- data/lib/ramaze/log/logger.rb +26 -0
- data/lib/ramaze/log/logging.rb +89 -0
- data/lib/ramaze/log/rotatinginformer.rb +168 -0
- data/lib/ramaze/log/syslog.rb +51 -0
- data/lib/ramaze/log/xosd.rb +92 -0
- data/lib/ramaze/log.rb +27 -0
- data/lib/ramaze/option/dsl.rb +45 -0
- data/lib/ramaze/option/holder.rb +131 -0
- data/lib/ramaze/option/merger.rb +108 -0
- data/lib/ramaze/option.rb +156 -0
- data/lib/ramaze/reloader/watch_inotify.rb +85 -0
- data/lib/ramaze/reloader/watch_stat.rb +58 -0
- data/lib/ramaze/reloader.rb +170 -0
- data/lib/ramaze/route.rb +97 -0
- data/lib/ramaze/setup.rb +50 -0
- data/lib/ramaze/snippets/array/put_within.rb +44 -0
- data/lib/ramaze/snippets/binding/locals.rb +25 -0
- data/lib/ramaze/snippets/blankslate.rb +7 -0
- data/lib/ramaze/snippets/dictionary.rb +504 -0
- data/lib/ramaze/snippets/divide.rb +22 -0
- data/lib/ramaze/snippets/fiber.rb +63 -0
- data/lib/ramaze/snippets/kernel/constant.rb +41 -0
- data/lib/ramaze/snippets/kernel/pretty_inspect.rb +21 -0
- data/lib/ramaze/snippets/metaid.rb +17 -0
- data/lib/ramaze/snippets/numeric/filesize_format.rb +32 -0
- data/lib/ramaze/snippets/numeric/time.rb +63 -0
- data/lib/ramaze/snippets/object/__dir__.rb +29 -0
- data/lib/ramaze/snippets/object/acquire.rb +37 -0
- data/lib/ramaze/snippets/object/instance_variable_defined.rb +19 -0
- data/lib/ramaze/snippets/object/pretty.rb +16 -0
- data/lib/ramaze/snippets/object/scope.rb +18 -0
- data/lib/ramaze/snippets/object/traits.rb +76 -0
- data/lib/ramaze/snippets/ordered_set.rb +51 -0
- data/lib/ramaze/snippets/proc/locals.rb +19 -0
- data/lib/ramaze/snippets/ramaze/acquire.rb +31 -0
- data/lib/ramaze/snippets/ramaze/caller_info.rb +30 -0
- data/lib/ramaze/snippets/ramaze/caller_lines.rb +51 -0
- data/lib/ramaze/snippets/ramaze/deprecated.rb +21 -0
- data/lib/ramaze/snippets/ramaze/fiber.rb +24 -0
- data/lib/ramaze/snippets/ramaze/state.rb +86 -0
- data/lib/ramaze/snippets/ramaze/struct.rb +45 -0
- data/lib/ramaze/snippets/string/camel_case.rb +21 -0
- data/lib/ramaze/snippets/string/color.rb +31 -0
- data/lib/ramaze/snippets/string/each.rb +19 -0
- data/lib/ramaze/snippets/string/end_with.rb +20 -0
- data/lib/ramaze/snippets/string/esc.rb +34 -0
- data/lib/ramaze/snippets/string/ord.rb +21 -0
- data/lib/ramaze/snippets/string/snake_case.rb +21 -0
- data/lib/ramaze/snippets/string/start_with.rb +19 -0
- data/lib/ramaze/snippets/string/unindent.rb +28 -0
- data/lib/ramaze/snippets/thread/into.rb +18 -0
- data/lib/ramaze/snippets.rb +22 -0
- data/lib/ramaze/spec/helper/bacon.rb +7 -0
- data/lib/ramaze/spec/helper/browser.rb +88 -0
- data/lib/ramaze/spec/helper/mock_http.rb +64 -0
- data/lib/ramaze/spec/helper/pretty_output.rb +82 -0
- data/lib/ramaze/spec/helper/requester.rb +63 -0
- data/lib/ramaze/spec/helper/simple_http.rb +434 -0
- data/lib/ramaze/spec/helper/snippets.rb +14 -0
- data/lib/ramaze/spec/helper.rb +135 -0
- data/lib/ramaze/spec.rb +1 -0
- data/lib/ramaze/store/default.rb +109 -0
- data/lib/ramaze/template/amrita2.rb +49 -0
- data/lib/ramaze/template/builder.rb +28 -0
- data/lib/ramaze/template/erubis.rb +41 -0
- data/lib/ramaze/template/ezamar/element.rb +169 -0
- data/lib/ramaze/template/ezamar/engine.rb +76 -0
- data/lib/ramaze/template/ezamar/morpher.rb +135 -0
- data/lib/ramaze/template/ezamar/render_partial.rb +39 -0
- data/lib/ramaze/template/ezamar/textpow.syntax +34 -0
- data/lib/ramaze/template/ezamar.rb +42 -0
- data/lib/ramaze/template/haml.rb +37 -0
- data/lib/ramaze/template/liquid.rb +36 -0
- data/lib/ramaze/template/markaby.rb +52 -0
- data/lib/ramaze/template/maruku.rb +34 -0
- data/lib/ramaze/template/nagoro.rb +52 -0
- data/lib/ramaze/template/none.rb +14 -0
- data/lib/ramaze/template/redcloth.rb +25 -0
- data/lib/ramaze/template/remarkably.rb +38 -0
- data/lib/ramaze/template/sass.rb +38 -0
- data/lib/ramaze/template/tagz.rb +79 -0
- data/lib/ramaze/template/tenjin.rb +74 -0
- data/lib/ramaze/template/xslt.rb +100 -0
- data/lib/ramaze/template.rb +87 -0
- data/lib/ramaze/tool/create.rb +48 -0
- data/lib/ramaze/tool/daemonize.rb +37 -0
- data/lib/ramaze/tool/localize.rb +202 -0
- data/lib/ramaze/tool/mime.rb +35 -0
- data/lib/ramaze/tool/mime_types.yaml +615 -0
- data/lib/ramaze/tool/project_creator.rb +111 -0
- data/lib/ramaze/tool/record.rb +6 -0
- data/lib/ramaze/tool.rb +9 -0
- data/lib/ramaze/trinity.rb +16 -0
- data/lib/ramaze/version.rb +6 -0
- data/lib/ramaze.rb +139 -0
- data/lib/vendor/bacon.rb +323 -0
- data/rake_tasks/conf.rake +71 -0
- data/rake_tasks/coverage.rake +45 -0
- data/rake_tasks/gem.rake +74 -0
- data/rake_tasks/git.rake +41 -0
- data/rake_tasks/maintenance.rake +386 -0
- data/rake_tasks/metric.rake +24 -0
- data/rake_tasks/release.rake +76 -0
- data/rake_tasks/spec.rake +61 -0
- data/ramaze.gemspec +611 -0
- data/spec/contrib/profiling.rb +29 -0
- data/spec/contrib/sequel/fill.rb +47 -0
- data/spec/examples/caching.rb +19 -0
- data/spec/examples/css.rb +15 -0
- data/spec/examples/element.rb +15 -0
- data/spec/examples/hello.rb +11 -0
- data/spec/examples/linking.rb +18 -0
- data/spec/examples/simple.rb +45 -0
- data/spec/examples/simple_auth.rb +32 -0
- data/spec/examples/templates/template_amrita2.rb +16 -0
- data/spec/examples/templates/template_erubis.rb +23 -0
- data/spec/examples/templates/template_ezamar.rb +23 -0
- data/spec/examples/templates/template_haml.rb +23 -0
- data/spec/examples/templates/template_liquid.rb +29 -0
- data/spec/examples/templates/template_markaby.rb +23 -0
- data/spec/examples/templates/template_redcloth.rb +28 -0
- data/spec/examples/templates/template_remarkably.rb +23 -0
- data/spec/examples/templates/template_tenjin.rb +28 -0
- data/spec/helper.rb +3 -0
- data/spec/ramaze/action/basics.rb +36 -0
- data/spec/ramaze/action/cache.rb +87 -0
- data/spec/ramaze/action/file_cache.rb +70 -0
- data/spec/ramaze/action/layout.rb +190 -0
- data/spec/ramaze/action/render.rb +31 -0
- data/spec/ramaze/action/view/bar.xhtml +1 -0
- data/spec/ramaze/action/view/instancevars/layout.xhtml +1 -0
- data/spec/ramaze/action/view/other_wrapper.xhtml +1 -0
- data/spec/ramaze/action/view/single_wrapper.xhtml +1 -0
- data/spec/ramaze/action/view/sub/sub_wrapper.xhtml +1 -0
- data/spec/ramaze/adapter/ebb.rb +12 -0
- data/spec/ramaze/adapter/mongrel.rb +12 -0
- data/spec/ramaze/adapter/record.rb +31 -0
- data/spec/ramaze/adapter/webrick.rb +12 -0
- data/spec/ramaze/adapter.rb +49 -0
- data/spec/ramaze/cache.rb +140 -0
- data/spec/ramaze/controller/actionless_templates.rb +32 -0
- data/spec/ramaze/controller/resolve.rb +32 -0
- data/spec/ramaze/controller/subclass.rb +36 -0
- data/spec/ramaze/controller/template_resolving.rb +113 -0
- data/spec/ramaze/controller/view/bar.xhtml +1 -0
- data/spec/ramaze/controller/view/base/another.xhtml +1 -0
- data/spec/ramaze/controller/view/greet.xhtml +1 -0
- data/spec/ramaze/controller/view/list.xhtml +1 -0
- data/spec/ramaze/controller/view/other/greet/other.xhtml +1 -0
- data/spec/ramaze/controller/view/other_wrapper.xhtml +1 -0
- data/spec/ramaze/controller.rb +180 -0
- data/spec/ramaze/current/request.rb +30 -0
- data/spec/ramaze/current/session.rb +97 -0
- data/spec/ramaze/dispatcher/directory.rb +55 -0
- data/spec/ramaze/dispatcher/file.rb +60 -0
- data/spec/ramaze/dispatcher/public/favicon.ico +0 -0
- data/spec/ramaze/dispatcher/public/file name.txt +1 -0
- data/spec/ramaze/dispatcher/public/test_download.css +141 -0
- data/spec/ramaze/dispatcher.rb +31 -0
- data/spec/ramaze/element.rb +107 -0
- data/spec/ramaze/error.rb +94 -0
- data/spec/ramaze/gestalt.rb +131 -0
- data/spec/ramaze/helper/aspect.rb +101 -0
- data/spec/ramaze/helper/auth.rb +66 -0
- data/spec/ramaze/helper/cache.rb +160 -0
- data/spec/ramaze/helper/cgi.rb +43 -0
- data/spec/ramaze/helper/file.rb +18 -0
- data/spec/ramaze/helper/flash.rb +133 -0
- data/spec/ramaze/helper/form.rb +118 -0
- data/spec/ramaze/helper/formatting.rb +54 -0
- data/spec/ramaze/helper/link.rb +124 -0
- data/spec/ramaze/helper/pager.rb +99 -0
- data/spec/ramaze/helper/partial.rb +88 -0
- data/spec/ramaze/helper/redirect.rb +112 -0
- data/spec/ramaze/helper/simple_captcha.rb +22 -0
- data/spec/ramaze/helper/stack.rb +73 -0
- data/spec/ramaze/helper/user.rb +43 -0
- data/spec/ramaze/helper/view/locals.xhtml +1 -0
- data/spec/ramaze/helper/view/loop.xhtml +4 -0
- data/spec/ramaze/helper/view/num.xhtml +1 -0
- data/spec/ramaze/helper/view/partial.xhtml +1 -0
- data/spec/ramaze/helper/view/recursive.xhtml +8 -0
- data/spec/ramaze/helper/view/recursive_local_ivars.xhtml +7 -0
- data/spec/ramaze/helper/view/recursive_locals.xhtml +7 -0
- data/spec/ramaze/helper/view/test_template.xhtml +1 -0
- data/spec/ramaze/localize.rb +89 -0
- data/spec/ramaze/log/informer.rb +72 -0
- data/spec/ramaze/log/syslog.rb +76 -0
- data/spec/ramaze/morpher.rb +111 -0
- data/spec/ramaze/params.rb +157 -0
- data/spec/ramaze/public/error404.xhtml +1 -0
- data/spec/ramaze/public/favicon.ico +0 -0
- data/spec/ramaze/public/ramaze.png +0 -0
- data/spec/ramaze/public/test_download.css +141 -0
- data/spec/ramaze/request/ebb.rb +9 -0
- data/spec/ramaze/request/mongrel.rb +9 -0
- data/spec/ramaze/request/thin.rb +9 -0
- data/spec/ramaze/request/webrick.rb +5 -0
- data/spec/ramaze/request.rb +185 -0
- data/spec/ramaze/rewrite/file.css +1 -0
- data/spec/ramaze/rewrite.rb +36 -0
- data/spec/ramaze/route.rb +131 -0
- data/spec/ramaze/session.rb +94 -0
- data/spec/ramaze/store/default.rb +71 -0
- data/spec/ramaze/struct.rb +47 -0
- data/spec/ramaze/template/amrita2/external.amrita +6 -0
- data/spec/ramaze/template/amrita2/sum.amrita +1 -0
- data/spec/ramaze/template/amrita2.rb +50 -0
- data/spec/ramaze/template/builder/external.rxml +3 -0
- data/spec/ramaze/template/builder.rb +51 -0
- data/spec/ramaze/template/erubis/sum.rhtml +1 -0
- data/spec/ramaze/template/erubis.rb +41 -0
- data/spec/ramaze/template/ezamar/another/long/action.zmr +1 -0
- data/spec/ramaze/template/ezamar/combined.zmr +1 -0
- data/spec/ramaze/template/ezamar/file_only.zmr +1 -0
- data/spec/ramaze/template/ezamar/index.zmr +1 -0
- data/spec/ramaze/template/ezamar/nested.zmr +1 -0
- data/spec/ramaze/template/ezamar/other__index.xhtml +1 -0
- data/spec/ramaze/template/ezamar/some__long__action.zmr +1 -0
- data/spec/ramaze/template/ezamar/sum.zmr +1 -0
- data/spec/ramaze/template/ezamar.rb +63 -0
- data/spec/ramaze/template/haml/index.haml +5 -0
- data/spec/ramaze/template/haml/locals.haml +2 -0
- data/spec/ramaze/template/haml/with_vars.haml +4 -0
- data/spec/ramaze/template/haml.rb +66 -0
- data/spec/ramaze/template/liquid/index.liquid +1 -0
- data/spec/ramaze/template/liquid/products.liquid +45 -0
- data/spec/ramaze/template/liquid.rb +99 -0
- data/spec/ramaze/template/markaby/external.mab +8 -0
- data/spec/ramaze/template/markaby/sum.mab +1 -0
- data/spec/ramaze/template/markaby.rb +61 -0
- data/spec/ramaze/template/nagoro/another/long/action.nag +1 -0
- data/spec/ramaze/template/nagoro/combined.nag +1 -0
- data/spec/ramaze/template/nagoro/file_only.nag +1 -0
- data/spec/ramaze/template/nagoro/index.nag +1 -0
- data/spec/ramaze/template/nagoro/nested.nag +1 -0
- data/spec/ramaze/template/nagoro/some__long__action.nag +1 -0
- data/spec/ramaze/template/nagoro/sum.nag +1 -0
- data/spec/ramaze/template/nagoro.rb +64 -0
- data/spec/ramaze/template/ramaze/external.test +1 -0
- data/spec/ramaze/template/redcloth/external.redcloth +1 -0
- data/spec/ramaze/template/redcloth.rb +38 -0
- data/spec/ramaze/template/remarkably/external.rem +8 -0
- data/spec/ramaze/template/remarkably/sum.rem +1 -0
- data/spec/ramaze/template/remarkably.rb +58 -0
- data/spec/ramaze/template/sass/file.css.sass +5 -0
- data/spec/ramaze/template/sass.rb +70 -0
- data/spec/ramaze/template/tagz/external.tagz +8 -0
- data/spec/ramaze/template/tagz/sum.tagz +1 -0
- data/spec/ramaze/template/tagz.rb +62 -0
- data/spec/ramaze/template/tenjin/external.tenjin +1 -0
- data/spec/ramaze/template/tenjin.rb +47 -0
- data/spec/ramaze/template/xslt/concat_words.xsl +16 -0
- data/spec/ramaze/template/xslt/index.xsl +14 -0
- data/spec/ramaze/template/xslt/products.xsl +32 -0
- data/spec/ramaze/template/xslt/ruby_version.xsl +14 -0
- data/spec/ramaze/template/xslt.rb +90 -0
- data/spec/ramaze/template.rb +128 -0
- data/spec/snippets/array/put_within.rb +33 -0
- data/spec/snippets/binding/locals.rb +9 -0
- data/spec/snippets/kernel/constant.rb +23 -0
- data/spec/snippets/numeric/filesize_format.rb +12 -0
- data/spec/snippets/numeric/time.rb +12 -0
- data/spec/snippets/object/__dir__.rb +14 -0
- data/spec/snippets/ordered_set.rb +63 -0
- data/spec/snippets/ramaze/acquire.rb +77 -0
- data/spec/snippets/ramaze/caller_info.rb +39 -0
- data/spec/snippets/ramaze/caller_lines.rb +30 -0
- data/spec/snippets/string/camel_case.rb +25 -0
- data/spec/snippets/string/color.rb +11 -0
- data/spec/snippets/string/snake_case.rb +24 -0
- data/spec/snippets/string/unindent.rb +43 -0
- data/spec/snippets/thread/into.rb +20 -0
- metadata +661 -0
|
@@ -0,0 +1,599 @@
|
|
|
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
|
+
}
|