Pistos-ramaze 2008.09
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.markdown +481 -0
- data/Rakefile +228 -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 +37 -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/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 +50 -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 +10 -0
- data/lib/proto/controller/main.rb +20 -0
- data/lib/proto/model/init.rb +4 -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 +8 -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 +191 -0
- data/lib/ramaze/action.rb +153 -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/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 +113 -0
- data/lib/ramaze/contrib/auto_params/get_args.rb +58 -0
- data/lib/ramaze/contrib/auto_params.rb +135 -0
- data/lib/ramaze/contrib/email.rb +84 -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 +65 -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 +273 -0
- data/lib/ramaze/controller.rb +280 -0
- data/lib/ramaze/current/request.rb +205 -0
- data/lib/ramaze/current/response.rb +39 -0
- data/lib/ramaze/current/session/flash.rb +87 -0
- data/lib/ramaze/current/session/hash.rb +66 -0
- data/lib/ramaze/current/session.rb +181 -0
- data/lib/ramaze/current.rb +110 -0
- data/lib/ramaze/dispatcher/action.rb +48 -0
- data/lib/ramaze/dispatcher/directory.rb +119 -0
- data/lib/ramaze/dispatcher/error.rb +108 -0
- data/lib/ramaze/dispatcher/file.rb +95 -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/cache.rb +140 -0
- data/lib/ramaze/helper/cgi.rb +39 -0
- data/lib/ramaze/helper/flash.rb +59 -0
- data/lib/ramaze/helper/form.rb +281 -0
- data/lib/ramaze/helper/formatting.rb +158 -0
- data/lib/ramaze/helper/gestalt.rb +15 -0
- data/lib/ramaze/helper/gravatar.rb +15 -0
- data/lib/ramaze/helper/httpdigest.rb +59 -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 +7 -0
- data/lib/ramaze/helper/nitroform.rb +14 -0
- data/lib/ramaze/helper/pager.rb +366 -0
- data/lib/ramaze/helper/paginate.rb +234 -0
- data/lib/ramaze/helper/partial.rb +105 -0
- data/lib/ramaze/helper/redirect.rb +82 -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 +79 -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/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.rb +186 -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 +20 -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 +40 -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/caller_info.rb +30 -0
- data/lib/ramaze/snippets/ramaze/caller_lines.rb +51 -0
- data/lib/ramaze/snippets/ramaze/deprecated.rb +20 -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 +63 -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 +45 -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 +31 -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 +37 -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 +110 -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 +133 -0
- data/lib/vendor/bacon.rb +323 -0
- data/rake_tasks/conf.rake +71 -0
- data/rake_tasks/coverage.rake +46 -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 +773 -0
- data/spec/contrib/auto_params.rb +121 -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 +73 -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 +69 -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/divide.rb +19 -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 +8 -0
- data/spec/snippets/object/acquire.rb +71 -0
- data/spec/snippets/ordered_set.rb +63 -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 +823 -0
@@ -0,0 +1,62 @@
|
|
1
|
+
pre.idle .InheritedClass {
|
2
|
+
}
|
3
|
+
pre.idle .TypeName {
|
4
|
+
color: #21439C;
|
5
|
+
}
|
6
|
+
pre.idle .Number {
|
7
|
+
}
|
8
|
+
pre.idle .LibraryVariable {
|
9
|
+
color: #A535AE;
|
10
|
+
}
|
11
|
+
pre.idle .Storage {
|
12
|
+
color: #FF5600;
|
13
|
+
}
|
14
|
+
pre.idle .line-numbers {
|
15
|
+
background-color: #BAD6FD;
|
16
|
+
color: #000000;
|
17
|
+
}
|
18
|
+
pre.idle {
|
19
|
+
background-color: #FFFFFF;
|
20
|
+
color: #000000;
|
21
|
+
}
|
22
|
+
pre.idle .StringInterpolation {
|
23
|
+
color: #990000;
|
24
|
+
}
|
25
|
+
pre.idle .TagName {
|
26
|
+
}
|
27
|
+
pre.idle .LibraryConstant {
|
28
|
+
color: #A535AE;
|
29
|
+
}
|
30
|
+
pre.idle .FunctionArgument {
|
31
|
+
}
|
32
|
+
pre.idle .BuiltInConstant {
|
33
|
+
color: #A535AE;
|
34
|
+
}
|
35
|
+
pre.idle .Invalid {
|
36
|
+
background-color: #990000;
|
37
|
+
color: #FFFFFF;
|
38
|
+
}
|
39
|
+
pre.idle .LibraryClassType {
|
40
|
+
color: #A535AE;
|
41
|
+
}
|
42
|
+
pre.idle .LibraryFunction {
|
43
|
+
color: #A535AE;
|
44
|
+
}
|
45
|
+
pre.idle .TagAttribute {
|
46
|
+
}
|
47
|
+
pre.idle .Keyword {
|
48
|
+
color: #FF5600;
|
49
|
+
}
|
50
|
+
pre.idle .UserDefinedConstant {
|
51
|
+
}
|
52
|
+
pre.idle .String {
|
53
|
+
color: #00A33F;
|
54
|
+
}
|
55
|
+
pre.idle .FunctionName {
|
56
|
+
color: #21439C;
|
57
|
+
}
|
58
|
+
pre.idle .Variable {
|
59
|
+
}
|
60
|
+
pre.idle .Comment {
|
61
|
+
color: #919191;
|
62
|
+
}
|
@@ -0,0 +1,80 @@
|
|
1
|
+
pre.iplastic .Constant {
|
2
|
+
color: #6782D3;
|
3
|
+
}
|
4
|
+
pre.iplastic .Support {
|
5
|
+
font-weight: bold;
|
6
|
+
color: #3333FF;
|
7
|
+
}
|
8
|
+
pre.iplastic .EmbeddedSource {
|
9
|
+
background-color: #F9F9F9;
|
10
|
+
color: #000000;
|
11
|
+
}
|
12
|
+
pre.iplastic .Arguments {
|
13
|
+
font-style: italic;
|
14
|
+
}
|
15
|
+
pre.iplastic .TypeName {
|
16
|
+
font-weight: bold;
|
17
|
+
}
|
18
|
+
pre.iplastic .Identifier {
|
19
|
+
color: #9700CC;
|
20
|
+
}
|
21
|
+
pre.iplastic .Number {
|
22
|
+
color: #0066FF;
|
23
|
+
}
|
24
|
+
pre.iplastic .SectionName {
|
25
|
+
font-weight: bold;
|
26
|
+
}
|
27
|
+
pre.iplastic .Storage {
|
28
|
+
font-weight: bold;
|
29
|
+
}
|
30
|
+
pre.iplastic .line-numbers {
|
31
|
+
background-color: #BAD6FD;
|
32
|
+
color: #000000;
|
33
|
+
}
|
34
|
+
pre.iplastic {
|
35
|
+
background-color: #EEEEEE;
|
36
|
+
color: #000000;
|
37
|
+
}
|
38
|
+
pre.iplastic .FrameTitle {
|
39
|
+
font-weight: bold;
|
40
|
+
color: #000000;
|
41
|
+
}
|
42
|
+
pre.iplastic .TagName {
|
43
|
+
font-weight: bold;
|
44
|
+
}
|
45
|
+
pre.iplastic .Tag {
|
46
|
+
color: #0033CC;
|
47
|
+
}
|
48
|
+
pre.iplastic .Exception {
|
49
|
+
color: #990000;
|
50
|
+
}
|
51
|
+
pre.iplastic .XmlDeclaration {
|
52
|
+
color: #333333;
|
53
|
+
}
|
54
|
+
pre.iplastic .TrailingWhitespace {
|
55
|
+
background-color: #EEEEEE;
|
56
|
+
}
|
57
|
+
pre.iplastic .TagAttribute {
|
58
|
+
color: #3366CC;
|
59
|
+
font-style: italic;
|
60
|
+
}
|
61
|
+
pre.iplastic .Invalid {
|
62
|
+
background-color: #E7342D;
|
63
|
+
color: #FF0000;
|
64
|
+
}
|
65
|
+
pre.iplastic .Keyword {
|
66
|
+
color: #0000FF;
|
67
|
+
}
|
68
|
+
pre.iplastic .String {
|
69
|
+
color: #009933;
|
70
|
+
}
|
71
|
+
pre.iplastic .Comment {
|
72
|
+
color: #0066FF;
|
73
|
+
font-style: italic;
|
74
|
+
}
|
75
|
+
pre.iplastic .FunctionName {
|
76
|
+
color: #FF8000;
|
77
|
+
}
|
78
|
+
pre.iplastic .RegularExpression {
|
79
|
+
color: #FF0080;
|
80
|
+
}
|
@@ -0,0 +1,73 @@
|
|
1
|
+
pre.lazy .OcamlInfixFPOperator {
|
2
|
+
text-decoration: underline;
|
3
|
+
}
|
4
|
+
pre.lazy .OcamlInfixOperator {
|
5
|
+
color: #3B5BB5;
|
6
|
+
}
|
7
|
+
pre.lazy .MetaFunctionCallPy {
|
8
|
+
color: #3E4558;
|
9
|
+
}
|
10
|
+
pre.lazy .Superclass {
|
11
|
+
color: #3B5BB5;
|
12
|
+
font-style: italic;
|
13
|
+
}
|
14
|
+
pre.lazy .LatexEntity {
|
15
|
+
color: #D62A28;
|
16
|
+
}
|
17
|
+
pre.lazy .Constant {
|
18
|
+
color: #3B5BB5;
|
19
|
+
}
|
20
|
+
pre.lazy .OcamlFPConstant {
|
21
|
+
text-decoration: underline;
|
22
|
+
}
|
23
|
+
pre.lazy .Support {
|
24
|
+
color: #3B5BB5;
|
25
|
+
}
|
26
|
+
pre.lazy .OcamlOperator {
|
27
|
+
color: #000000;
|
28
|
+
}
|
29
|
+
pre.lazy .line-numbers {
|
30
|
+
background-color: #E3FC8D;
|
31
|
+
color: #000000;
|
32
|
+
}
|
33
|
+
pre.lazy .StringInterpolation {
|
34
|
+
color: #671EBB;
|
35
|
+
}
|
36
|
+
pre.lazy .InvalidIllegal {
|
37
|
+
background-color: #9D1E15;
|
38
|
+
color: #F8F8F8;
|
39
|
+
}
|
40
|
+
pre.lazy .OcamlVariant {
|
41
|
+
color: #7F90AA;
|
42
|
+
}
|
43
|
+
pre.lazy .MetaTag {
|
44
|
+
color: #3A4A64;
|
45
|
+
}
|
46
|
+
pre.lazy .OcamlPrefixFPOperator {
|
47
|
+
text-decoration: underline;
|
48
|
+
}
|
49
|
+
pre.lazy .OcamlPrefixOperator {
|
50
|
+
color: #3B5BB5;
|
51
|
+
}
|
52
|
+
pre.lazy .String {
|
53
|
+
color: #409B1C;
|
54
|
+
}
|
55
|
+
pre.lazy .Keyword {
|
56
|
+
color: #FF7800;
|
57
|
+
}
|
58
|
+
pre.lazy {
|
59
|
+
background-color: #FFFFFF;
|
60
|
+
color: #000000;
|
61
|
+
}
|
62
|
+
pre.lazy .InvalidDeprecated {
|
63
|
+
color: #990000;
|
64
|
+
font-style: italic;
|
65
|
+
}
|
66
|
+
pre.lazy .Variable {
|
67
|
+
}
|
68
|
+
pre.lazy .Entity {
|
69
|
+
color: #3B5BB5;
|
70
|
+
}
|
71
|
+
pre.lazy .Comment {
|
72
|
+
color: #8C868F;
|
73
|
+
}
|
@@ -0,0 +1,123 @@
|
|
1
|
+
pre.mac_classic .EmbeddedSource {
|
2
|
+
background-color: #0C0C0C;
|
3
|
+
}
|
4
|
+
pre.mac_classic .LibraryObject {
|
5
|
+
font-weight: bold;
|
6
|
+
color: #6D79DE;
|
7
|
+
}
|
8
|
+
pre.mac_classic .Section {
|
9
|
+
font-style: italic;
|
10
|
+
}
|
11
|
+
pre.mac_classic .FunctionArgumentAndResultTypes {
|
12
|
+
color: #70727E;
|
13
|
+
}
|
14
|
+
pre.mac_classic .TypeName {
|
15
|
+
text-decoration: underline;
|
16
|
+
}
|
17
|
+
pre.mac_classic .Number {
|
18
|
+
color: #0000CD;
|
19
|
+
}
|
20
|
+
pre.mac_classic {
|
21
|
+
background-color: #FFFFFF;
|
22
|
+
color: #000000;
|
23
|
+
}
|
24
|
+
pre.mac_classic .MarkupList {
|
25
|
+
color: #B90690;
|
26
|
+
}
|
27
|
+
pre.mac_classic .MarkupTagAttribute {
|
28
|
+
font-style: italic;
|
29
|
+
}
|
30
|
+
pre.mac_classic .LibraryVariable {
|
31
|
+
font-weight: bold;
|
32
|
+
color: #21439C;
|
33
|
+
}
|
34
|
+
pre.mac_classic .line-numbers {
|
35
|
+
background-color: #4D97FF;
|
36
|
+
color: #000000;
|
37
|
+
}
|
38
|
+
pre.mac_classic .FunctionParameter {
|
39
|
+
font-style: italic;
|
40
|
+
}
|
41
|
+
pre.mac_classic .MarkupTag {
|
42
|
+
color: #1C02FF;
|
43
|
+
}
|
44
|
+
pre.mac_classic .MarkupHeading {
|
45
|
+
font-weight: bold;
|
46
|
+
color: #0C07FF;
|
47
|
+
}
|
48
|
+
pre.mac_classic .JsOperator {
|
49
|
+
color: #687687;
|
50
|
+
}
|
51
|
+
pre.mac_classic .InheritedClassName {
|
52
|
+
font-style: italic;
|
53
|
+
}
|
54
|
+
pre.mac_classic .StringInterpolation {
|
55
|
+
color: #26B31A;
|
56
|
+
}
|
57
|
+
pre.mac_classic .MarkupQuote {
|
58
|
+
color: #000000;
|
59
|
+
font-style: italic;
|
60
|
+
}
|
61
|
+
pre.mac_classic .MarkupNameOfTag {
|
62
|
+
font-weight: bold;
|
63
|
+
}
|
64
|
+
pre.mac_classic .InvalidTrailingWhitespace {
|
65
|
+
background-color: #FFD0D0;
|
66
|
+
}
|
67
|
+
pre.mac_classic .LibraryConstant {
|
68
|
+
font-weight: bold;
|
69
|
+
color: #06960E;
|
70
|
+
}
|
71
|
+
pre.mac_classic .MarkupXmlDeclaration {
|
72
|
+
color: #68685B;
|
73
|
+
}
|
74
|
+
pre.mac_classic .EmbeddedEmbeddedSource {
|
75
|
+
background-color: #0E0E0E;
|
76
|
+
}
|
77
|
+
pre.mac_classic .PreprocessorDirective {
|
78
|
+
font-weight: bold;
|
79
|
+
color: #0C450D;
|
80
|
+
}
|
81
|
+
pre.mac_classic .BuiltInConstant {
|
82
|
+
font-weight: bold;
|
83
|
+
color: #585CF6;
|
84
|
+
}
|
85
|
+
pre.mac_classic .MarkupDtd {
|
86
|
+
font-style: italic;
|
87
|
+
}
|
88
|
+
pre.mac_classic .Invalid {
|
89
|
+
background-color: #990000;
|
90
|
+
color: #FFFFFF;
|
91
|
+
}
|
92
|
+
pre.mac_classic .LibraryFunction {
|
93
|
+
font-weight: bold;
|
94
|
+
color: #3C4C72;
|
95
|
+
}
|
96
|
+
pre.mac_classic .String {
|
97
|
+
color: #036A07;
|
98
|
+
}
|
99
|
+
pre.mac_classic .UserDefinedConstant {
|
100
|
+
font-weight: bold;
|
101
|
+
color: #C5060B;
|
102
|
+
}
|
103
|
+
pre.mac_classic .Keyword {
|
104
|
+
font-weight: bold;
|
105
|
+
color: #0000FF;
|
106
|
+
}
|
107
|
+
pre.mac_classic .MarkupDoctype {
|
108
|
+
color: #888888;
|
109
|
+
}
|
110
|
+
pre.mac_classic .FunctionName {
|
111
|
+
font-weight: bold;
|
112
|
+
color: #0000A2;
|
113
|
+
}
|
114
|
+
pre.mac_classic .PreprocessorLine {
|
115
|
+
color: #1A921C;
|
116
|
+
}
|
117
|
+
pre.mac_classic .Variable {
|
118
|
+
color: #318495;
|
119
|
+
}
|
120
|
+
pre.mac_classic .Comment {
|
121
|
+
color: #0066FF;
|
122
|
+
font-style: italic;
|
123
|
+
}
|
@@ -0,0 +1,104 @@
|
|
1
|
+
pre.magicwb_amiga .MarkupQuoteEmail {
|
2
|
+
color: #00F0C9;
|
3
|
+
}
|
4
|
+
pre.magicwb_amiga .EmbeddedSource {
|
5
|
+
background-color: #8A9ECB;
|
6
|
+
}
|
7
|
+
pre.magicwb_amiga .InheritedClass {
|
8
|
+
font-style: italic;
|
9
|
+
}
|
10
|
+
pre.magicwb_amiga .TypeName {
|
11
|
+
text-decoration: underline;
|
12
|
+
}
|
13
|
+
pre.magicwb_amiga .Number {
|
14
|
+
color: #FFFFFF;
|
15
|
+
}
|
16
|
+
pre.magicwb_amiga .LibraryVariable {
|
17
|
+
color: #3A68A3;
|
18
|
+
}
|
19
|
+
pre.magicwb_amiga .Storage {
|
20
|
+
font-weight: bold;
|
21
|
+
color: #3A68A3;
|
22
|
+
}
|
23
|
+
pre.magicwb_amiga .line-numbers {
|
24
|
+
background-color: #B1B1B1;
|
25
|
+
color: #000000;
|
26
|
+
}
|
27
|
+
pre.magicwb_amiga .IncludeUser {
|
28
|
+
background-color: #969696;
|
29
|
+
color: #FFA995;
|
30
|
+
}
|
31
|
+
pre.magicwb_amiga .ObjectiveCMethodCall {
|
32
|
+
color: #000000;
|
33
|
+
}
|
34
|
+
pre.magicwb_amiga .ConstantUserDefined {
|
35
|
+
background-color: #1D1DEA;
|
36
|
+
color: #FFA995;
|
37
|
+
}
|
38
|
+
pre.magicwb_amiga .LibraryConstant {
|
39
|
+
color: #FFFFFF;
|
40
|
+
}
|
41
|
+
pre.magicwb_amiga .EntityName {
|
42
|
+
font-weight: bold;
|
43
|
+
color: #0000FF;
|
44
|
+
}
|
45
|
+
pre.magicwb_amiga .ConstantBuiltIn {
|
46
|
+
font-weight: bold;
|
47
|
+
color: #FFA995;
|
48
|
+
}
|
49
|
+
pre.magicwb_amiga .MarkupRaw {
|
50
|
+
background-color: #0000FF;
|
51
|
+
color: #FFFFFF;
|
52
|
+
}
|
53
|
+
pre.magicwb_amiga .MarkupListItem {
|
54
|
+
color: #4D4E60;
|
55
|
+
}
|
56
|
+
pre.magicwb_amiga .FunctionArgument {
|
57
|
+
font-style: italic;
|
58
|
+
}
|
59
|
+
pre.magicwb_amiga .ObjectiveCMethodCall1 {
|
60
|
+
font-style: italic;
|
61
|
+
}
|
62
|
+
pre.magicwb_amiga .MarkupQuoteDoubleEmail {
|
63
|
+
color: #4C457E;
|
64
|
+
}
|
65
|
+
pre.magicwb_amiga .IncludeSystem {
|
66
|
+
background-color: #969696;
|
67
|
+
color: #FFA995;
|
68
|
+
font-style: italic;
|
69
|
+
}
|
70
|
+
pre.magicwb_amiga .Invalid {
|
71
|
+
background-color: #797979;
|
72
|
+
color: #FFFFFF;
|
73
|
+
}
|
74
|
+
pre.magicwb_amiga .LibraryClassType {
|
75
|
+
color: #FFA995;
|
76
|
+
}
|
77
|
+
pre.magicwb_amiga .LibraryFunction {
|
78
|
+
color: #E5B3FF;
|
79
|
+
}
|
80
|
+
pre.magicwb_amiga .TagAttribute {
|
81
|
+
color: #3A68A3;
|
82
|
+
font-style: italic;
|
83
|
+
}
|
84
|
+
pre.magicwb_amiga .Keyword {
|
85
|
+
font-weight: bold;
|
86
|
+
}
|
87
|
+
pre.magicwb_amiga .String {
|
88
|
+
background-color: #EA1D1D;
|
89
|
+
color: #FFFFFF;
|
90
|
+
}
|
91
|
+
pre.magicwb_amiga {
|
92
|
+
background-color: #969696;
|
93
|
+
color: #000000;
|
94
|
+
}
|
95
|
+
pre.magicwb_amiga .FunctionName {
|
96
|
+
color: #FFA995;
|
97
|
+
}
|
98
|
+
pre.magicwb_amiga .Variable {
|
99
|
+
color: #FFA995;
|
100
|
+
}
|
101
|
+
pre.magicwb_amiga .Comment {
|
102
|
+
color: #8D2E75;
|
103
|
+
font-style: italic;
|
104
|
+
}
|
@@ -0,0 +1,188 @@
|
|
1
|
+
pre.pastels_on_dark .CssPropertyColours {
|
2
|
+
color: #666633;
|
3
|
+
}
|
4
|
+
pre.pastels_on_dark .CssPropertyValue {
|
5
|
+
color: #9B2E4D;
|
6
|
+
}
|
7
|
+
pre.pastels_on_dark .HtmlDocinfoDtd {
|
8
|
+
font-style: italic;
|
9
|
+
}
|
10
|
+
pre.pastels_on_dark .Exceptions {
|
11
|
+
font-weight: bold;
|
12
|
+
color: #C82255;
|
13
|
+
}
|
14
|
+
pre.pastels_on_dark .ClassInheritance {
|
15
|
+
font-style: italic;
|
16
|
+
}
|
17
|
+
pre.pastels_on_dark .CssInvalidComma {
|
18
|
+
background-color: #FF0000;
|
19
|
+
color: #FFFFFF;
|
20
|
+
}
|
21
|
+
pre.pastels_on_dark .HtmlTag {
|
22
|
+
color: #858EF4;
|
23
|
+
}
|
24
|
+
pre.pastels_on_dark .Constants {
|
25
|
+
color: #6782D3;
|
26
|
+
}
|
27
|
+
pre.pastels_on_dark .Section {
|
28
|
+
font-style: italic;
|
29
|
+
}
|
30
|
+
pre.pastels_on_dark .PhpPhpdocs {
|
31
|
+
color: #777777;
|
32
|
+
}
|
33
|
+
pre.pastels_on_dark .Variables {
|
34
|
+
color: #C1C144;
|
35
|
+
}
|
36
|
+
pre.pastels_on_dark .RegularExpressions {
|
37
|
+
color: #666666;
|
38
|
+
}
|
39
|
+
pre.pastels_on_dark .Comments {
|
40
|
+
color: #555555;
|
41
|
+
}
|
42
|
+
pre.pastels_on_dark .line-numbers {
|
43
|
+
background-color: #73597E;
|
44
|
+
color: #FFFFFF;
|
45
|
+
}
|
46
|
+
pre.pastels_on_dark .PhpVariablesGlobals {
|
47
|
+
color: #B72E1D;
|
48
|
+
}
|
49
|
+
pre.pastels_on_dark .PhpConstantsCorePredefined {
|
50
|
+
font-weight: bold;
|
51
|
+
color: #DE8E20;
|
52
|
+
}
|
53
|
+
pre.pastels_on_dark .HtmlDoctype {
|
54
|
+
color: #888888;
|
55
|
+
}
|
56
|
+
pre.pastels_on_dark .HtmlDocinfoXml {
|
57
|
+
color: #68685B;
|
58
|
+
}
|
59
|
+
pre.pastels_on_dark .AttributeName {
|
60
|
+
color: #9B456F;
|
61
|
+
}
|
62
|
+
pre.pastels_on_dark .ClassName {
|
63
|
+
text-decoration: underline;
|
64
|
+
}
|
65
|
+
pre.pastels_on_dark .FunctionArgumentName {
|
66
|
+
font-weight: bold;
|
67
|
+
}
|
68
|
+
pre.pastels_on_dark .FunctionResult {
|
69
|
+
color: #0000FF;
|
70
|
+
}
|
71
|
+
pre.pastels_on_dark .TmlangdefKeys {
|
72
|
+
color: #7171F3;
|
73
|
+
}
|
74
|
+
pre.pastels_on_dark .CssSelectorsElements {
|
75
|
+
font-weight: bold;
|
76
|
+
color: #B8CD06;
|
77
|
+
}
|
78
|
+
pre.pastels_on_dark .CssSelectorsId {
|
79
|
+
color: #EC9E00;
|
80
|
+
}
|
81
|
+
pre.pastels_on_dark .ControlStructures {
|
82
|
+
font-weight: bold;
|
83
|
+
color: #6969FA;
|
84
|
+
}
|
85
|
+
pre.pastels_on_dark .Interpolation {
|
86
|
+
color: #C10006;
|
87
|
+
}
|
88
|
+
pre.pastels_on_dark .CommentsBlock {
|
89
|
+
color: #555555;
|
90
|
+
}
|
91
|
+
pre.pastels_on_dark .CssSelectorsPseudoclass {
|
92
|
+
color: #2E759C;
|
93
|
+
}
|
94
|
+
pre.pastels_on_dark .Operators {
|
95
|
+
color: #47B8D6;
|
96
|
+
}
|
97
|
+
pre.pastels_on_dark .TagName {
|
98
|
+
color: #858EF4;
|
99
|
+
}
|
100
|
+
pre.pastels_on_dark .EmbeddedCode {
|
101
|
+
text-decoration: underline;
|
102
|
+
}
|
103
|
+
pre.pastels_on_dark .PhpVariablesSaferGlobals {
|
104
|
+
color: #00FF00;
|
105
|
+
}
|
106
|
+
pre.pastels_on_dark .InvalidTrailingWhitespace {
|
107
|
+
background-color: #FFD0D0;
|
108
|
+
}
|
109
|
+
pre.pastels_on_dark .Functions {
|
110
|
+
color: #A1A1FF;
|
111
|
+
}
|
112
|
+
pre.pastels_on_dark .Keywords {
|
113
|
+
color: #A1A1FF;
|
114
|
+
}
|
115
|
+
pre.pastels_on_dark {
|
116
|
+
background-color: #211E1E;
|
117
|
+
color: #DADADA;
|
118
|
+
}
|
119
|
+
pre.pastels_on_dark .PhpKeywordsStorage {
|
120
|
+
color: #6969FA;
|
121
|
+
}
|
122
|
+
pre.pastels_on_dark .PhpIncludeRequire {
|
123
|
+
color: #C82255;
|
124
|
+
}
|
125
|
+
pre.pastels_on_dark .HtmlAttribute {
|
126
|
+
color: #9B456F;
|
127
|
+
}
|
128
|
+
pre.pastels_on_dark .AttributeWithValue {
|
129
|
+
color: #9B456F;
|
130
|
+
}
|
131
|
+
pre.pastels_on_dark .FunctionArgumentType {
|
132
|
+
color: #0000FF;
|
133
|
+
}
|
134
|
+
pre.pastels_on_dark .PreprocessorDirective {
|
135
|
+
font-weight: bold;
|
136
|
+
}
|
137
|
+
pre.pastels_on_dark .CssUnits {
|
138
|
+
color: #6969FA;
|
139
|
+
}
|
140
|
+
pre.pastels_on_dark .CssFontNames {
|
141
|
+
color: #666633;
|
142
|
+
}
|
143
|
+
pre.pastels_on_dark .CssSelectorsClassname {
|
144
|
+
color: #EDCA06;
|
145
|
+
}
|
146
|
+
pre.pastels_on_dark .PhpStringsSingleQuoted {
|
147
|
+
color: #BFA36D;
|
148
|
+
}
|
149
|
+
pre.pastels_on_dark .PhpConstantsStandardPredefined {
|
150
|
+
font-weight: bold;
|
151
|
+
color: #DE8E10;
|
152
|
+
}
|
153
|
+
pre.pastels_on_dark .HtmlServersideIncludes {
|
154
|
+
color: #909090;
|
155
|
+
}
|
156
|
+
pre.pastels_on_dark .CssPropertyKeyword {
|
157
|
+
color: #E1C96B;
|
158
|
+
}
|
159
|
+
pre.pastels_on_dark .LanguageConstants {
|
160
|
+
font-weight: bold;
|
161
|
+
color: #DE8E30;
|
162
|
+
}
|
163
|
+
pre.pastels_on_dark .CharacterConstants {
|
164
|
+
color: #AFA472;
|
165
|
+
}
|
166
|
+
pre.pastels_on_dark .Invalid {
|
167
|
+
font-weight: bold;
|
168
|
+
background-color: #FF0000;
|
169
|
+
color: #FFF9F9;
|
170
|
+
}
|
171
|
+
pre.pastels_on_dark .FunctionArgumentVariable {
|
172
|
+
font-style: italic;
|
173
|
+
}
|
174
|
+
pre.pastels_on_dark .Strings {
|
175
|
+
color: #AD9361;
|
176
|
+
}
|
177
|
+
pre.pastels_on_dark .PhpStringsDoubleQuoted {
|
178
|
+
color: #AD9361;
|
179
|
+
}
|
180
|
+
pre.pastels_on_dark .FunctionName {
|
181
|
+
font-weight: bold;
|
182
|
+
}
|
183
|
+
pre.pastels_on_dark .PreprocessorLine {
|
184
|
+
color: #2F006E;
|
185
|
+
}
|
186
|
+
pre.pastels_on_dark .Numbers {
|
187
|
+
color: #CCCCCC;
|
188
|
+
}
|
@@ -0,0 +1,85 @@
|
|
1
|
+
pre.slush_poppies .Directives {
|
2
|
+
font-weight: bold;
|
3
|
+
}
|
4
|
+
pre.slush_poppies .TypeName {
|
5
|
+
color: #800080;
|
6
|
+
}
|
7
|
+
pre.slush_poppies .InheritedClass {
|
8
|
+
}
|
9
|
+
pre.slush_poppies .OcamlInfixFPOperators {
|
10
|
+
text-decoration: underline;
|
11
|
+
}
|
12
|
+
pre.slush_poppies .Number {
|
13
|
+
color: #0080A0;
|
14
|
+
}
|
15
|
+
pre.slush_poppies .LibraryVariable {
|
16
|
+
}
|
17
|
+
pre.slush_poppies .Storage {
|
18
|
+
color: #008080;
|
19
|
+
}
|
20
|
+
pre.slush_poppies .line-numbers {
|
21
|
+
background-color: #B0B0FF;
|
22
|
+
color: #000000;
|
23
|
+
}
|
24
|
+
pre.slush_poppies .OcamlPrefixFPOperators {
|
25
|
+
text-decoration: underline;
|
26
|
+
}
|
27
|
+
pre.slush_poppies .OcamlFloatingPointConstants {
|
28
|
+
text-decoration: underline;
|
29
|
+
}
|
30
|
+
pre.slush_poppies .LineNumberDirectives {
|
31
|
+
}
|
32
|
+
pre.slush_poppies .TagName {
|
33
|
+
}
|
34
|
+
pre.slush_poppies .StorageTypes {
|
35
|
+
color: #A08000;
|
36
|
+
}
|
37
|
+
pre.slush_poppies .Operators {
|
38
|
+
color: #2060A0;
|
39
|
+
}
|
40
|
+
pre.slush_poppies .LibraryConstant {
|
41
|
+
}
|
42
|
+
pre.slush_poppies .VariantTypes {
|
43
|
+
color: #C08060;
|
44
|
+
}
|
45
|
+
pre.slush_poppies .FunctionArgument {
|
46
|
+
}
|
47
|
+
pre.slush_poppies .BuiltInConstant {
|
48
|
+
}
|
49
|
+
pre.slush_poppies .ClassTypeName {
|
50
|
+
color: #8000C0;
|
51
|
+
}
|
52
|
+
pre.slush_poppies .ModuleKeyword {
|
53
|
+
color: #0080FF;
|
54
|
+
}
|
55
|
+
pre.slush_poppies .Invalid {
|
56
|
+
}
|
57
|
+
pre.slush_poppies .LibraryClassType {
|
58
|
+
}
|
59
|
+
pre.slush_poppies .LibraryFunction {
|
60
|
+
}
|
61
|
+
pre.slush_poppies .TagAttribute {
|
62
|
+
}
|
63
|
+
pre.slush_poppies .Keyword {
|
64
|
+
color: #2060A0;
|
65
|
+
}
|
66
|
+
pre.slush_poppies .UserDefinedConstant {
|
67
|
+
}
|
68
|
+
pre.slush_poppies .CharacterConstants {
|
69
|
+
color: #800000;
|
70
|
+
}
|
71
|
+
pre.slush_poppies .String {
|
72
|
+
color: #C03030;
|
73
|
+
}
|
74
|
+
pre.slush_poppies {
|
75
|
+
background-color: #F1F1F1;
|
76
|
+
color: #000000;
|
77
|
+
}
|
78
|
+
pre.slush_poppies .FunctionName {
|
79
|
+
color: #800000;
|
80
|
+
}
|
81
|
+
pre.slush_poppies .Variable {
|
82
|
+
}
|
83
|
+
pre.slush_poppies .Comment {
|
84
|
+
color: #406040;
|
85
|
+
}
|