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
Binary file
|
@@ -0,0 +1,132 @@
|
|
1
|
+
require 'ramaze'
|
2
|
+
require 'ramaze/spec/helper'
|
3
|
+
|
4
|
+
spec_require 'hpricot'
|
5
|
+
|
6
|
+
$LOAD_PATH.unshift base = __DIR__/'..'
|
7
|
+
require 'start'
|
8
|
+
|
9
|
+
describe 'todolist' do
|
10
|
+
behaves_like 'http'
|
11
|
+
|
12
|
+
def h_get(*args)
|
13
|
+
Hpricot(get(*args).body)
|
14
|
+
end
|
15
|
+
|
16
|
+
def task_titles
|
17
|
+
doc = h_get('/')
|
18
|
+
doc.search("td[@class='title']").
|
19
|
+
map{|t| t.inner_html.strip}.sort
|
20
|
+
end
|
21
|
+
|
22
|
+
def tasks
|
23
|
+
(h_get('/')/:tr)
|
24
|
+
end
|
25
|
+
|
26
|
+
def task(name)
|
27
|
+
tasks.find do |task|
|
28
|
+
(task/:td).find do |td|
|
29
|
+
td['class'] == 'title' and
|
30
|
+
td.inner_html.strip == name
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
def spectask
|
36
|
+
task('spectask')
|
37
|
+
end
|
38
|
+
|
39
|
+
def spectask_status
|
40
|
+
spectask.search("td[@class='status']").inner_html.strip
|
41
|
+
end
|
42
|
+
|
43
|
+
def error_on_page(url, response)
|
44
|
+
doc = h_get(url, :cookie => response.headers['Set-Cookie'])
|
45
|
+
|
46
|
+
error = doc.search("div[@class='error']")
|
47
|
+
error.inner_html.strip
|
48
|
+
end
|
49
|
+
|
50
|
+
it 'should start' do
|
51
|
+
ramaze :public_root => base/:public,
|
52
|
+
:view_root => base/:template
|
53
|
+
get('/').status.should == 200
|
54
|
+
end
|
55
|
+
|
56
|
+
it 'should have no empty mainpage' do
|
57
|
+
get('/').body.should.not == nil
|
58
|
+
end
|
59
|
+
|
60
|
+
it 'should have two preset tasks' do
|
61
|
+
task_titles.should == %w[Laundry Wash\ dishes]
|
62
|
+
end
|
63
|
+
|
64
|
+
it 'should have a link to new tasks' do
|
65
|
+
doc = h_get('/')
|
66
|
+
link = (doc/:a).find{|a| a.inner_html == 'New Task'}
|
67
|
+
link['href'].should == '/new'
|
68
|
+
end
|
69
|
+
|
70
|
+
it 'should have a page to create new tasks' do
|
71
|
+
get('/new').body.should.not == nil
|
72
|
+
end
|
73
|
+
|
74
|
+
it 'should have a form to create a tasks on the /new page' do
|
75
|
+
doc = h_get('/new')
|
76
|
+
form = doc.at :form
|
77
|
+
form.should.not == nil
|
78
|
+
input = form.at(:input)
|
79
|
+
input['type'].should == 'text'
|
80
|
+
input['name'].should == 'title'
|
81
|
+
end
|
82
|
+
|
83
|
+
it 'should POST new task and redirect to /' do
|
84
|
+
result = post('/create', 'title' => 'spectask')
|
85
|
+
result.status.should == 302
|
86
|
+
end
|
87
|
+
|
88
|
+
it 'should show have the new task' do
|
89
|
+
task_titles.should.include('spectask')
|
90
|
+
end
|
91
|
+
|
92
|
+
it 'should toggle the spectask' do
|
93
|
+
get('/close/spectask').status.should == 302
|
94
|
+
spectask.should.not == nil
|
95
|
+
spectask_status.should == 'done'
|
96
|
+
get('/open/spectask').status.should == 302
|
97
|
+
spectask.should.not == nil
|
98
|
+
spectask_status.should == 'not done'
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'should raise on modifying a not existing task' do
|
102
|
+
%w[open close].each do |action|
|
103
|
+
response = get("/#{action}/nothere", :referrer => "/")
|
104
|
+
response.status.should == 302
|
105
|
+
response.original_headers['Location'].should == '/'
|
106
|
+
error_on_page('/', response).should == "No such Task: `nothere'"
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
it 'should delete the new task' do
|
111
|
+
get('/delete/spectask').status.should == 302
|
112
|
+
task_titles.should.not.include('spectask')
|
113
|
+
end
|
114
|
+
|
115
|
+
it 'should not create empty tasks but show a subtle error message' do
|
116
|
+
response = post('/create', 'title' => '', :referrer => "/new")
|
117
|
+
|
118
|
+
response.status.should == 302
|
119
|
+
response.original_headers['Location'].should == '/new'
|
120
|
+
|
121
|
+
error_on_page('/new', response).should == 'Please enter a title'
|
122
|
+
end
|
123
|
+
|
124
|
+
it 'should escape harmful titles' do
|
125
|
+
response = post('/create', 'title' => '#{puts "gotcha"}')
|
126
|
+
|
127
|
+
task('#{puts "gotcha"}').should.be.nil
|
128
|
+
task('#{puts "gotcha"}').should.not.be.nil
|
129
|
+
end
|
130
|
+
|
131
|
+
FileUtils.rm('todolist.db') rescue nil
|
132
|
+
end
|
@@ -0,0 +1,70 @@
|
|
1
|
+
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
3
|
+
|
4
|
+
# Default url mappings are:
|
5
|
+
# a controller called Main is mapped on the root of the site: /
|
6
|
+
# a controller called Something is mapped on: /something
|
7
|
+
# If you want to override this, add a line like this inside the class
|
8
|
+
# map '/otherurl'
|
9
|
+
# this will force the controller to be mounted on: /otherurl
|
10
|
+
|
11
|
+
class MainController < Ramaze::Controller
|
12
|
+
|
13
|
+
def index
|
14
|
+
@tasks = []
|
15
|
+
TodoList.original.each do |title, value|
|
16
|
+
if value[:done]
|
17
|
+
status = 'done'
|
18
|
+
toggle = A('Open Task', :href => Rs(:open, title))
|
19
|
+
else
|
20
|
+
status = 'not done'
|
21
|
+
toggle = A('Close Task', :href => Rs(:close, title))
|
22
|
+
end
|
23
|
+
delete = A('Delete', :href => Rs(:delete, title))
|
24
|
+
@tasks << [title, status, toggle, delete]
|
25
|
+
end
|
26
|
+
@tasks.sort!
|
27
|
+
end
|
28
|
+
|
29
|
+
def create
|
30
|
+
if title = request['title']
|
31
|
+
title.strip!
|
32
|
+
if title.empty?
|
33
|
+
failed("Please enter a title")
|
34
|
+
redirect '/new'
|
35
|
+
end
|
36
|
+
TodoList[title] = {:done => false}
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
def open title
|
41
|
+
task_status title, false
|
42
|
+
end
|
43
|
+
|
44
|
+
def close title
|
45
|
+
task_status title, true
|
46
|
+
end
|
47
|
+
|
48
|
+
def delete title
|
49
|
+
TodoList.delete title
|
50
|
+
end
|
51
|
+
|
52
|
+
helper :aspect
|
53
|
+
after(:create, :open, :close, :delete){ redirect(Rs()) unless redirected? }
|
54
|
+
|
55
|
+
private
|
56
|
+
|
57
|
+
def failed(message)
|
58
|
+
flash[:error] = message
|
59
|
+
end
|
60
|
+
|
61
|
+
def task_status title, status
|
62
|
+
unless task = TodoList[title]
|
63
|
+
failed "No such Task: `#{title}'"
|
64
|
+
redirect_referer
|
65
|
+
end
|
66
|
+
|
67
|
+
task[:done] = status
|
68
|
+
TodoList[title] = task
|
69
|
+
end
|
70
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
3
|
+
|
4
|
+
class Page < Ezamar::Element
|
5
|
+
def render
|
6
|
+
%{
|
7
|
+
<html>
|
8
|
+
<head>
|
9
|
+
<title>TodoList</title>
|
10
|
+
<style>
|
11
|
+
table { width: 100%; }
|
12
|
+
tr { background: #efe; width: 100%; }
|
13
|
+
tr:hover { background: #dfd; }
|
14
|
+
td.title { font-weight: bold; width: 60%; }
|
15
|
+
td.status { margin: 1em; }
|
16
|
+
a { color: #3a3; }
|
17
|
+
</style>
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<h1>#{@title}</h1>
|
21
|
+
<?r if flash[:error] ?>
|
22
|
+
<div class="error">
|
23
|
+
\#{flash[:error]}
|
24
|
+
</div>
|
25
|
+
<?r end ?>
|
26
|
+
#{content}
|
27
|
+
</body>
|
28
|
+
</html>
|
29
|
+
}
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,14 @@
|
|
1
|
+
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
3
|
+
|
4
|
+
require 'ramaze/store/default'
|
5
|
+
|
6
|
+
TodoList = Ramaze::Store::Default.new('todolist.db')
|
7
|
+
|
8
|
+
{
|
9
|
+
'Laundry' => {:done => false},
|
10
|
+
'Wash dishes' => {:done => false},
|
11
|
+
|
12
|
+
}.each do |title, value|
|
13
|
+
TodoList[title] = value
|
14
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# Copyright (c) 2006 Michael Fellinger m.fellinger@gmail.com
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
3
|
+
|
4
|
+
require 'rubygems'
|
5
|
+
require 'ramaze'
|
6
|
+
|
7
|
+
require 'src/controller/main'
|
8
|
+
require 'src/element/page'
|
9
|
+
require 'src/model'
|
10
|
+
|
11
|
+
Ramaze.start
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<Page title="TodoList">
|
2
|
+
<a href="/new">New Task</a>
|
3
|
+
<?r if @tasks.empty? ?>
|
4
|
+
No Tasks
|
5
|
+
<?r else ?>
|
6
|
+
<table>
|
7
|
+
<?r @tasks.each do |title, status, toggle, delete| ?>
|
8
|
+
<tr>
|
9
|
+
<td class="title"> #{h title} </td>
|
10
|
+
<td class="status"> #{status} </td>
|
11
|
+
<td class="toggle"> #{toggle} </td>
|
12
|
+
<td class="delete"> #{delete} </td>
|
13
|
+
</tr>
|
14
|
+
<?r end ?>
|
15
|
+
</table>
|
16
|
+
<?r end ?>
|
17
|
+
</Page>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'ramaze'
|
3
|
+
|
4
|
+
class MainController < Ramaze::Controller
|
5
|
+
def index
|
6
|
+
return unless request.post?
|
7
|
+
@inspection = h(request.params.pretty_inspect)
|
8
|
+
tempfile, filename, @type =
|
9
|
+
request[:file].values_at(:tempfile, :filename, :type)
|
10
|
+
@extname, @basename = File.extname(filename), File.basename(filename)
|
11
|
+
@file_size = tempfile.size
|
12
|
+
|
13
|
+
FileUtils.move(tempfile.path, Ramaze::Global.public_root/@basename)
|
14
|
+
|
15
|
+
@is_image = @type.split('/').first == 'image'
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
Ramaze.start
|
@@ -0,0 +1,25 @@
|
|
1
|
+
<html>
|
2
|
+
|
3
|
+
<body>
|
4
|
+
<form method="POST" enctype="multipart/form-data">
|
5
|
+
Upload file: <input type="file" name="file" /><br />
|
6
|
+
<input type="submit" name="submit" value="Submit" />
|
7
|
+
</form>
|
8
|
+
|
9
|
+
<?r if @inspection ?>
|
10
|
+
<h3>#{@basename}</h3>
|
11
|
+
File size: #{@file_size} bytes
|
12
|
+
|
13
|
+
<?r if @is_image ?>
|
14
|
+
<h4>Uploaded Image</h4>
|
15
|
+
<img src="#{@basename}" alt="Uploaded Image"/><br/>
|
16
|
+
<?r else ?>
|
17
|
+
<p>You uploaded a #{@type} file. Upload an image file to see it here.</p>
|
18
|
+
<?r end ?>
|
19
|
+
|
20
|
+
<h4>request.params.inspect:</h4>
|
21
|
+
<pre>#{@inspection}</pre>
|
22
|
+
<?r end ?>
|
23
|
+
</body>
|
24
|
+
|
25
|
+
</html>
|
@@ -0,0 +1,58 @@
|
|
1
|
+
require 'ramaze'
|
2
|
+
require 'ramaze/spec/helper'
|
3
|
+
|
4
|
+
spec_require 'bluecloth', 'hpricot'
|
5
|
+
|
6
|
+
$LOAD_PATH.unshift base = __DIR__/'..'
|
7
|
+
|
8
|
+
Db = Ramaze::YAMLStoreCache.new("#{base}/testwiki.yaml")
|
9
|
+
require 'start'
|
10
|
+
|
11
|
+
describe 'WikiController' do
|
12
|
+
behaves_like 'http'
|
13
|
+
|
14
|
+
def page(name)
|
15
|
+
page = get(name)
|
16
|
+
page.status.should == 200
|
17
|
+
page.body.should.not == nil
|
18
|
+
|
19
|
+
doc = Hpricot(page.body)
|
20
|
+
title = doc.at('title').inner_html
|
21
|
+
|
22
|
+
body = doc.at('body')
|
23
|
+
return title, body
|
24
|
+
end
|
25
|
+
|
26
|
+
it 'should start' do
|
27
|
+
ramaze :public_root => base/:public,
|
28
|
+
:view_root => base/:template
|
29
|
+
get('/').status.should == 302
|
30
|
+
end
|
31
|
+
|
32
|
+
it 'should have main page' do
|
33
|
+
t,body = page('/show/Home')
|
34
|
+
t.should.match(/^MicroWiki Home$/)
|
35
|
+
body.at('h1').inner_html.should == 'Home'
|
36
|
+
body.at('a[@href=/edit/Home]').inner_html.should == 'Create Home'
|
37
|
+
end
|
38
|
+
|
39
|
+
it 'should have edit page' do
|
40
|
+
t,body = page('/edit/Home')
|
41
|
+
t.should.match(/^MicroWiki Edit Home$/)
|
42
|
+
|
43
|
+
body.at('a[@href=/]').inner_html.should == '< Home'
|
44
|
+
body.at('h1').inner_html.should == 'Edit Home'
|
45
|
+
body.at('form/textarea').should.not == nil
|
46
|
+
end
|
47
|
+
|
48
|
+
it 'should create pages' do
|
49
|
+
post('/save','text'=>'the text','page'=>'ThePage').status.should == 302
|
50
|
+
page = Hpricot(get('/show/ThePage').body)
|
51
|
+
body = page.at('body>div')
|
52
|
+
body.should.not == nil
|
53
|
+
body.at('a[@href=/edit/ThePage]').inner_html.should =='Edit ThePage'
|
54
|
+
body.at('p').inner_html.should == 'the text'
|
55
|
+
end
|
56
|
+
|
57
|
+
FileUtils.rm("#{base}/testwiki.yaml")
|
58
|
+
end
|
@@ -0,0 +1,46 @@
|
|
1
|
+
# written as an example of how to implement the minimal _why wiki
|
2
|
+
|
3
|
+
require 'rubygems'
|
4
|
+
require 'ramaze'
|
5
|
+
require 'bluecloth'
|
6
|
+
|
7
|
+
Db = Ramaze::YAMLStoreCache.new('wiki.yaml') unless defined?(Db)
|
8
|
+
|
9
|
+
class WikiController < Ramaze::Controller
|
10
|
+
map :/
|
11
|
+
|
12
|
+
def index
|
13
|
+
redirect R(:show, 'Home')
|
14
|
+
end
|
15
|
+
|
16
|
+
def show page = 'Home'
|
17
|
+
@page = url_decode(page)
|
18
|
+
@text = Db[page].to_s
|
19
|
+
@edit_link = "/edit/#{page}"
|
20
|
+
|
21
|
+
@text.gsub!(/\[\[(.*?)\]\]/) do |m|
|
22
|
+
exists = Db[$1] ? 'exists' : 'nonexists'
|
23
|
+
A($1, :href => Rs(:show, url_encode($1)), :class => exists)
|
24
|
+
end
|
25
|
+
|
26
|
+
@text = BlueCloth.new(@text).to_html
|
27
|
+
end
|
28
|
+
|
29
|
+
def edit page = 'Home'
|
30
|
+
@page = url_decode(page)
|
31
|
+
@text = Db[page]
|
32
|
+
end
|
33
|
+
|
34
|
+
def save
|
35
|
+
redirect_referer unless request.post?
|
36
|
+
|
37
|
+
page = request['page'].to_s
|
38
|
+
text = request['text'].to_s
|
39
|
+
|
40
|
+
Db[page] = text
|
41
|
+
|
42
|
+
redirect Rs(:show, url_encode(page))
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
Ramaze.start :adapter => :mongrel
|
@@ -0,0 +1,14 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>MicroWiki Edit #{@page}</title>
|
4
|
+
</head>
|
5
|
+
<body>
|
6
|
+
<h1>Edit #{@page}</h1>
|
7
|
+
#{ A("< Home", :href => Rs()) }
|
8
|
+
<form method="POST" action="#{Rs(:save)}">
|
9
|
+
<input type="hidden" name="page" value="#{url_encode(@page)}" />
|
10
|
+
<textarea name="text" style="width: 90%; height: 20em;">#{@text}</textarea>
|
11
|
+
<input type="submit" />
|
12
|
+
</form>
|
13
|
+
</body>
|
14
|
+
</html>
|
@@ -0,0 +1,18 @@
|
|
1
|
+
<html>
|
2
|
+
<head>
|
3
|
+
<title>MicroWiki #{@page}</title>
|
4
|
+
<style>
|
5
|
+
a.exists{ color: #00f; }
|
6
|
+
a.nonexists{ color: #f00; }
|
7
|
+
</style>
|
8
|
+
</head>
|
9
|
+
<body>
|
10
|
+
<a href="/show/Home" unless="@page == 'Home'">< Home</a>
|
11
|
+
<h1>#{@page}</h1>
|
12
|
+
<a href="#@edit_link" if="@text.empty?">Create #@page</a>
|
13
|
+
<div unless="@text.empty?">
|
14
|
+
<a href="#@edit_link">Edit #@page</a>
|
15
|
+
#@text
|
16
|
+
</div>
|
17
|
+
</body>
|
18
|
+
</html>
|
@@ -0,0 +1,111 @@
|
|
1
|
+
require 'ramaze'
|
2
|
+
require 'ramaze/spec/helper'
|
3
|
+
|
4
|
+
spec_require 'hpricot', 'sequel'
|
5
|
+
|
6
|
+
$LOAD_PATH.unshift base = __DIR__/'..'
|
7
|
+
require 'start'
|
8
|
+
|
9
|
+
describe 'Wikore' do
|
10
|
+
behaves_like 'http'
|
11
|
+
ramaze :public_root => base/:public,
|
12
|
+
:view_root => base/:template
|
13
|
+
|
14
|
+
def check_redirect(to = '/')
|
15
|
+
response = yield
|
16
|
+
response.status.should == 302
|
17
|
+
response.body.should =~ /<a href="#{to}">/
|
18
|
+
end
|
19
|
+
|
20
|
+
def page_should_exist(name, *matches)
|
21
|
+
page = get("/#{name}")
|
22
|
+
page.status.should == 200
|
23
|
+
matches.each do |match|
|
24
|
+
page.body.should =~ match
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
it 'should have no Main page' do
|
29
|
+
page = get('/Main')
|
30
|
+
page.status.should == 200
|
31
|
+
page.body.should =~ /No Page known as 'Main'/
|
32
|
+
end
|
33
|
+
|
34
|
+
it 'should create a Main page' do
|
35
|
+
check_redirect '/Main' do
|
36
|
+
post('/page/create', 'title' => 'Main', 'text' => 'Newly created Main page')
|
37
|
+
end
|
38
|
+
|
39
|
+
matches = [
|
40
|
+
/Newly created Main page/,
|
41
|
+
/Version: 1/
|
42
|
+
]
|
43
|
+
page_should_exist('Main', *matches)
|
44
|
+
end
|
45
|
+
|
46
|
+
it 'should update Main page' do
|
47
|
+
check_redirect '/Main' do
|
48
|
+
post('/page/save', 'title' => 'Main', 'text' => 'Newly updated Main page')
|
49
|
+
end
|
50
|
+
|
51
|
+
matches = [
|
52
|
+
/Newly updated Main page/,
|
53
|
+
/Version: 2/
|
54
|
+
]
|
55
|
+
page_should_exist('Main', *matches)
|
56
|
+
end
|
57
|
+
|
58
|
+
it 'should maintain a backup' do
|
59
|
+
matches = [
|
60
|
+
/Newly created Main page/,
|
61
|
+
/Version: 1/
|
62
|
+
]
|
63
|
+
page_should_exist('Main/1', *matches)
|
64
|
+
end
|
65
|
+
|
66
|
+
it 'should revert' do
|
67
|
+
get('/page/revert/Main')
|
68
|
+
|
69
|
+
matches = [
|
70
|
+
/Newly created Main page/,
|
71
|
+
/Version: 1/
|
72
|
+
]
|
73
|
+
page_should_exist('Main', *matches)
|
74
|
+
end
|
75
|
+
|
76
|
+
|
77
|
+
it 'should incrememt version of Main page' do
|
78
|
+
(2..4).each do |n|
|
79
|
+
post('/page/save', 'title' => 'Main', 'text' => 'updated Main page')
|
80
|
+
|
81
|
+
matches = [ /updated Main page/, /Version: #{n}/ ]
|
82
|
+
page_should_exist('Main', *matches)
|
83
|
+
end
|
84
|
+
end
|
85
|
+
|
86
|
+
it 'should rename Main page to Other and back' do
|
87
|
+
check_redirect '/Other' do
|
88
|
+
get('/page/rename/Main/Other')
|
89
|
+
end
|
90
|
+
check_redirect '/Main' do
|
91
|
+
get('/page/rename/Other/Main')
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
it 'should delete Main page' do
|
96
|
+
get('/page/delete/Main')
|
97
|
+
|
98
|
+
page_should_exist('Main', /No Page known as 'Main'/)
|
99
|
+
end
|
100
|
+
|
101
|
+
it 'should fail if create/save is not POSTed to' do
|
102
|
+
check_redirect '/' do
|
103
|
+
get('/page/save', 'title' => 'Main', 'text' => 'Newly updated Main page')
|
104
|
+
end
|
105
|
+
check_redirect '/' do
|
106
|
+
get('/page/create', 'title' => 'Main', 'text' => 'Newly updated Main page')
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
FileUtils.rm_f(DB_FILE)
|
111
|
+
end
|
@@ -0,0 +1,80 @@
|
|
1
|
+
class Ramaze::Controller
|
2
|
+
Page = Model::Page
|
3
|
+
OldPage = Model::OldPage
|
4
|
+
end
|
5
|
+
|
6
|
+
class MainController < Ramaze::Controller
|
7
|
+
def index(title = 'Main', version = nil)
|
8
|
+
query = {:title => title}
|
9
|
+
query[:version] = version.to_i if version
|
10
|
+
model = version ? OldPage : Page
|
11
|
+
|
12
|
+
if page = model[query]
|
13
|
+
@text, @version = page.text, page.version
|
14
|
+
else
|
15
|
+
@text = "No Page known as '#{title}'"
|
16
|
+
@version = false
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
20
|
+
|
21
|
+
class PageController < Ramaze::Controller
|
22
|
+
map '/page'
|
23
|
+
|
24
|
+
helper :aspect
|
25
|
+
|
26
|
+
def create
|
27
|
+
change "Created Page '%s'" do |title, text|
|
28
|
+
Page.create(:title => title, :text => text, :version => 1)
|
29
|
+
redirect R(MainController, title)
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
def save
|
34
|
+
change "Updated Page '%s'" do |title, text|
|
35
|
+
page = Page[:title => title]
|
36
|
+
page.backup
|
37
|
+
page.text = text
|
38
|
+
page.version += 1
|
39
|
+
page.save
|
40
|
+
redirect R(MainController, title)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
def delete(title)
|
45
|
+
page = Page[:title => title]
|
46
|
+
page.backup
|
47
|
+
page.delete
|
48
|
+
end
|
49
|
+
|
50
|
+
def rename(title, to)
|
51
|
+
change("Renamed #{title} to '%s'", to) do |title, text|
|
52
|
+
page = Page[:title => title]
|
53
|
+
page.backup
|
54
|
+
page.title = to
|
55
|
+
page.version += 1
|
56
|
+
page.save
|
57
|
+
end
|
58
|
+
end
|
59
|
+
|
60
|
+
def revert(title)
|
61
|
+
page = Page[:title => title]
|
62
|
+
page.revert
|
63
|
+
redirect R(MainController, title)
|
64
|
+
end
|
65
|
+
|
66
|
+
before :create, :save do
|
67
|
+
redirect_referer unless request.post?
|
68
|
+
end
|
69
|
+
|
70
|
+
private
|
71
|
+
|
72
|
+
def change(message, redirect_to = '/')
|
73
|
+
if title = request['title'] and text = request['text']
|
74
|
+
yield(title, text)
|
75
|
+
message % title
|
76
|
+
end
|
77
|
+
|
78
|
+
redirect(R(MainController, redirect_to))
|
79
|
+
end
|
80
|
+
end
|