ptomato-ramaze 2009.02
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +481 -0
- data/Rakefile +248 -0
- data/benchmark/results.txt +131 -0
- data/benchmark/run.rb +362 -0
- data/benchmark/suite/minimal.rb +13 -0
- data/benchmark/suite/no_informer.rb +9 -0
- data/benchmark/suite/no_sessions.rb +10 -0
- data/benchmark/suite/no_template.rb +9 -0
- data/benchmark/suite/simple.rb +7 -0
- data/benchmark/suite/template_amrita2.rb +17 -0
- data/benchmark/suite/template_builder.rb +12 -0
- data/benchmark/suite/template_erubis.rb +10 -0
- data/benchmark/suite/template_ezamar.rb +10 -0
- data/benchmark/suite/template_haml.rb +15 -0
- data/benchmark/suite/template_liquid.rb +13 -0
- data/benchmark/suite/template_markaby.rb +11 -0
- data/benchmark/suite/template_nagoro.rb +10 -0
- data/benchmark/suite/template_redcloth.rb +15 -0
- data/benchmark/suite/template_tenjin.rb +10 -0
- data/benchmark/test.rb +35 -0
- data/bin/ramaze +80 -0
- data/doc/AUTHORS +29 -0
- data/doc/CHANGELOG +19530 -0
- data/doc/COPYING +56 -0
- data/doc/FAQ +92 -0
- data/doc/GPL +339 -0
- data/doc/INSTALL +92 -0
- data/doc/LEGAL +26 -0
- data/doc/TODO +29 -0
- data/doc/meta/announcement.txt +99 -0
- data/doc/meta/configuration.txt +163 -0
- data/doc/meta/internals.txt +278 -0
- data/doc/meta/users.kml +64 -0
- data/doc/readme_chunks/appendix.txt +10 -0
- data/doc/readme_chunks/examples.txt +38 -0
- data/doc/readme_chunks/features.txt +148 -0
- data/doc/readme_chunks/getting_help.txt +5 -0
- data/doc/readme_chunks/getting_started.txt +18 -0
- data/doc/readme_chunks/installing.txt +92 -0
- data/doc/readme_chunks/introduction.txt +18 -0
- data/doc/readme_chunks/principles.txt +56 -0
- data/doc/readme_chunks/thanks.txt +59 -0
- data/doc/tutorial/todolist.html +742 -0
- data/doc/tutorial/todolist.mkd +787 -0
- data/examples/app/auth/auth.rb +54 -0
- data/examples/app/auth/template/layout.haml +20 -0
- data/examples/app/auth/template/login.haml +16 -0
- data/examples/app/blog/README +3 -0
- data/examples/app/blog/controller/main.rb +29 -0
- data/examples/app/blog/model/entry.rb +30 -0
- data/examples/app/blog/public/styles/blog.css +132 -0
- data/examples/app/blog/spec/blog.rb +87 -0
- data/examples/app/blog/start.rb +7 -0
- data/examples/app/blog/view/edit.xhtml +17 -0
- data/examples/app/blog/view/index.xhtml +17 -0
- data/examples/app/blog/view/layout.xhtml +11 -0
- data/examples/app/blog/view/new.xhtml +16 -0
- data/examples/app/chat/model/history.rb +36 -0
- data/examples/app/chat/model/message.rb +7 -0
- data/examples/app/chat/public/css/chat.css +13 -0
- data/examples/app/chat/public/js/chat.js +22 -0
- data/examples/app/chat/public/js/jquery.js +3436 -0
- data/examples/app/chat/start.rb +40 -0
- data/examples/app/chat/view/chat.xhtml +9 -0
- data/examples/app/chat/view/index.xhtml +7 -0
- data/examples/app/chat/view/layout.xhtml +13 -0
- data/examples/app/localization/start.rb +35 -0
- data/examples/app/rapaste/Rakefile +34 -0
- data/examples/app/rapaste/controller/paste.rb +101 -0
- data/examples/app/rapaste/model/paste.rb +58 -0
- data/examples/app/rapaste/public/css/active4d.css +114 -0
- data/examples/app/rapaste/public/css/all_hallows_eve.css +72 -0
- data/examples/app/rapaste/public/css/amy.css +147 -0
- data/examples/app/rapaste/public/css/blackboard.css +88 -0
- data/examples/app/rapaste/public/css/brilliance_black.css +605 -0
- data/examples/app/rapaste/public/css/brilliance_dull.css +599 -0
- data/examples/app/rapaste/public/css/cobalt.css +149 -0
- data/examples/app/rapaste/public/css/dawn.css +121 -0
- data/examples/app/rapaste/public/css/display.css +197 -0
- data/examples/app/rapaste/public/css/eiffel.css +121 -0
- data/examples/app/rapaste/public/css/espresso_libre.css +109 -0
- data/examples/app/rapaste/public/css/idle.css +62 -0
- data/examples/app/rapaste/public/css/iplastic.css +80 -0
- data/examples/app/rapaste/public/css/lazy.css +73 -0
- data/examples/app/rapaste/public/css/mac_classic.css +123 -0
- data/examples/app/rapaste/public/css/magicwb_amiga.css +104 -0
- data/examples/app/rapaste/public/css/pastels_on_dark.css +188 -0
- data/examples/app/rapaste/public/css/slush_poppies.css +85 -0
- data/examples/app/rapaste/public/css/spacecadet.css +51 -0
- data/examples/app/rapaste/public/css/sunburst.css +180 -0
- data/examples/app/rapaste/public/css/twilight.css +137 -0
- data/examples/app/rapaste/public/css/zenburnesque.css +91 -0
- data/examples/app/rapaste/public/js/jquery.js +11 -0
- data/examples/app/rapaste/spec/rapaste.rb +51 -0
- data/examples/app/rapaste/start.rb +25 -0
- data/examples/app/rapaste/view/copy.xhtml +10 -0
- data/examples/app/rapaste/view/index.xhtml +9 -0
- data/examples/app/rapaste/view/layout.xhtml +25 -0
- data/examples/app/rapaste/view/list.xhtml +29 -0
- data/examples/app/rapaste/view/search.xhtml +41 -0
- data/examples/app/rapaste/view/view.xhtml +40 -0
- data/examples/app/sourceview/public/coderay.css +104 -0
- data/examples/app/sourceview/public/images/file.gif +0 -0
- data/examples/app/sourceview/public/images/folder.gif +0 -0
- data/examples/app/sourceview/public/images/tv-collapsable-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-collapsable.gif +0 -0
- data/examples/app/sourceview/public/images/tv-expandable-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-expandable.gif +0 -0
- data/examples/app/sourceview/public/images/tv-item-last.gif +0 -0
- data/examples/app/sourceview/public/images/tv-item.gif +0 -0
- data/examples/app/sourceview/public/jquery.js +11 -0
- data/examples/app/sourceview/public/jquery.treeview.css +48 -0
- data/examples/app/sourceview/public/jquery.treeview.js +223 -0
- data/examples/app/sourceview/public/sourceview.js +52 -0
- data/examples/app/sourceview/sourceview.rb +77 -0
- data/examples/app/sourceview/template/index.haml +59 -0
- data/examples/app/todolist/README +1 -0
- data/examples/app/todolist/public/favicon.ico +0 -0
- data/examples/app/todolist/public/js/jquery.js +1923 -0
- data/examples/app/todolist/public/ramaze.png +0 -0
- data/examples/app/todolist/spec/todolist.rb +132 -0
- data/examples/app/todolist/src/controller/main.rb +70 -0
- data/examples/app/todolist/src/element/page.rb +31 -0
- data/examples/app/todolist/src/model.rb +14 -0
- data/examples/app/todolist/start.rb +11 -0
- data/examples/app/todolist/template/index.xhtml +17 -0
- data/examples/app/todolist/template/new.xhtml +7 -0
- data/examples/app/upload/start.rb +19 -0
- data/examples/app/upload/view/index.xhtml +25 -0
- data/examples/app/whywiki/spec/whywiki.rb +58 -0
- data/examples/app/whywiki/start.rb +46 -0
- data/examples/app/whywiki/template/edit.xhtml +14 -0
- data/examples/app/whywiki/template/show.xhtml +18 -0
- data/examples/app/wikore/spec/wikore.rb +111 -0
- data/examples/app/wikore/src/controller.rb +80 -0
- data/examples/app/wikore/src/model.rb +53 -0
- data/examples/app/wikore/start.rb +9 -0
- data/examples/app/wikore/template/index.xhtml +8 -0
- data/examples/app/wiktacular/README +2 -0
- data/examples/app/wiktacular/mkd/link/2007-07-20_19-45-51.mkd +1 -0
- data/examples/app/wiktacular/mkd/link/current.mkd +1 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_16-31-33.mkd +1 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-21-12.mkd +1 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-23-10.mkd +2 -0
- data/examples/app/wiktacular/mkd/main/2007-07-20_19-45-07.mkd +2 -0
- data/examples/app/wiktacular/mkd/main/current.mkd +2 -0
- data/examples/app/wiktacular/mkd/markdown/current.mkd +3 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-20_16-43-46.mkd +2 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-20_19-43-50.mkd +3 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-46-01.mkd +11 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-46-32.mkd +13 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-47-08.mkd +17 -0
- data/examples/app/wiktacular/mkd/testing/2007-07-21_18-47-54.mkd +17 -0
- data/examples/app/wiktacular/mkd/testing/current.mkd +17 -0
- data/examples/app/wiktacular/public/favicon.ico +0 -0
- data/examples/app/wiktacular/public/screen.css +72 -0
- data/examples/app/wiktacular/spec/wiktacular.rb +157 -0
- data/examples/app/wiktacular/src/controller.rb +55 -0
- data/examples/app/wiktacular/src/model.rb +102 -0
- data/examples/app/wiktacular/start.rb +8 -0
- data/examples/app/wiktacular/template/edit.xhtml +6 -0
- data/examples/app/wiktacular/template/html_layout.xhtml +27 -0
- data/examples/app/wiktacular/template/index.xhtml +9 -0
- data/examples/app/wiktacular/template/new.xhtml +6 -0
- data/examples/basic/element.rb +45 -0
- data/examples/basic/gestalt.rb +27 -0
- data/examples/basic/hello.rb +15 -0
- data/examples/basic/layout.rb +28 -0
- data/examples/basic/linking.rb +29 -0
- data/examples/basic/partial.rb +28 -0
- data/examples/basic/simple.rb +56 -0
- data/examples/helpers/cache.rb +31 -0
- data/examples/helpers/form_with_sequel.rb +24 -0
- data/examples/helpers/httpdigest.rb +108 -0
- data/examples/helpers/identity.rb +18 -0
- data/examples/helpers/nitro_form.rb +23 -0
- data/examples/helpers/paginate.rb +71 -0
- data/examples/helpers/provide.rb +23 -0
- data/examples/helpers/rest.rb +28 -0
- data/examples/helpers/simple_captcha.rb +29 -0
- data/examples/misc/css.rb +37 -0
- data/examples/misc/facebook.rb +159 -0
- data/examples/misc/memleak_detector.rb +32 -0
- data/examples/misc/nagoro_element.rb +43 -0
- data/examples/misc/ramaise.rb +132 -0
- data/examples/misc/rapp.rb +45 -0
- data/examples/misc/sequel_scaffolding.rb +34 -0
- data/examples/misc/simple_auth.rb +35 -0
- data/examples/templates/template/external.amrita +19 -0
- data/examples/templates/template/external.haml +22 -0
- data/examples/templates/template/external.liquid +28 -0
- data/examples/templates/template/external.mab +30 -0
- data/examples/templates/template/external.nag +28 -0
- data/examples/templates/template/external.redcloth +19 -0
- data/examples/templates/template/external.rem +30 -0
- data/examples/templates/template/external.rhtml +28 -0
- data/examples/templates/template/external.tenjin +28 -0
- data/examples/templates/template/external.xsl +57 -0
- data/examples/templates/template/external.zmr +28 -0
- data/examples/templates/template_amrita2.rb +74 -0
- data/examples/templates/template_erubis.rb +53 -0
- data/examples/templates/template_ezamar.rb +50 -0
- data/examples/templates/template_haml.rb +50 -0
- data/examples/templates/template_liquid.rb +65 -0
- data/examples/templates/template_markaby.rb +58 -0
- data/examples/templates/template_nagoro.rb +51 -0
- data/examples/templates/template_redcloth.rb +59 -0
- data/examples/templates/template_remarkably.rb +55 -0
- data/examples/templates/template_tenjin.rb +53 -0
- data/examples/templates/template_xslt.rb +49 -0
- data/lib/proto/controller/init.rb +11 -0
- data/lib/proto/controller/main.rb +20 -0
- data/lib/proto/model/init.rb +4 -0
- data/lib/proto/public/.htaccess +24 -0
- data/lib/proto/public/css/ramaze_error.css +90 -0
- data/lib/proto/public/dispatch.fcgi +11 -0
- data/lib/proto/public/favicon.ico +0 -0
- data/lib/proto/public/js/jquery.js +3549 -0
- data/lib/proto/public/ramaze.png +0 -0
- data/lib/proto/spec/main.rb +25 -0
- data/lib/proto/start.rb +12 -0
- data/lib/proto/start.ru +16 -0
- data/lib/proto/view/error.xhtml +64 -0
- data/lib/proto/view/index.xhtml +34 -0
- data/lib/proto/view/page.xhtml +27 -0
- data/lib/ramaze/action/render.rb +192 -0
- data/lib/ramaze/action.rb +159 -0
- data/lib/ramaze/adapter/base.rb +128 -0
- data/lib/ramaze/adapter/cgi.rb +20 -0
- data/lib/ramaze/adapter/ebb.rb +18 -0
- data/lib/ramaze/adapter/evented_mongrel.rb +7 -0
- data/lib/ramaze/adapter/fake.rb +12 -0
- data/lib/ramaze/adapter/fcgi.rb +18 -0
- data/lib/ramaze/adapter/lsws.rb +19 -0
- data/lib/ramaze/adapter/mongrel.rb +21 -0
- data/lib/ramaze/adapter/scgi.rb +18 -0
- data/lib/ramaze/adapter/swiftiplied_mongrel.rb +7 -0
- data/lib/ramaze/adapter/thin.rb +17 -0
- data/lib/ramaze/adapter/webrick.rb +43 -0
- data/lib/ramaze/adapter.rb +97 -0
- data/lib/ramaze/cache/file.rb +71 -0
- data/lib/ramaze/cache/memcached.rb +69 -0
- data/lib/ramaze/cache/memory.rb +6 -0
- data/lib/ramaze/cache/yaml_store.rb +68 -0
- data/lib/ramaze/cache.rb +114 -0
- data/lib/ramaze/contrib/email.rb +86 -0
- data/lib/ramaze/contrib/facebook/facebook.rb +171 -0
- data/lib/ramaze/contrib/facebook.rb +23 -0
- data/lib/ramaze/contrib/file_cache.rb +3 -0
- data/lib/ramaze/contrib/gems.rb +78 -0
- data/lib/ramaze/contrib/gettext/mo.rb +155 -0
- data/lib/ramaze/contrib/gettext/parser.rb +46 -0
- data/lib/ramaze/contrib/gettext/po.rb +109 -0
- data/lib/ramaze/contrib/gettext.rb +113 -0
- data/lib/ramaze/contrib/gzip_filter.rb +69 -0
- data/lib/ramaze/contrib/maruku_uv.rb +59 -0
- data/lib/ramaze/contrib/profiling.rb +36 -0
- data/lib/ramaze/contrib/rest.rb +17 -0
- data/lib/ramaze/contrib/sequel/create_join.rb +25 -0
- data/lib/ramaze/contrib/sequel/fill.rb +12 -0
- data/lib/ramaze/contrib/sequel/form_field.rb +129 -0
- data/lib/ramaze/contrib/sequel/image.rb +198 -0
- data/lib/ramaze/contrib/sequel/relation.rb +82 -0
- data/lib/ramaze/contrib/sequel_cache.rb +92 -0
- data/lib/ramaze/contrib.rb +82 -0
- data/lib/ramaze/controller/error.rb +46 -0
- data/lib/ramaze/controller/main.rb +2 -0
- data/lib/ramaze/controller/resolve.rb +278 -0
- data/lib/ramaze/controller.rb +288 -0
- data/lib/ramaze/current/request.rb +231 -0
- data/lib/ramaze/current/response.rb +37 -0
- data/lib/ramaze/current/session/flash.rb +88 -0
- data/lib/ramaze/current/session/hash.rb +62 -0
- data/lib/ramaze/current/session.rb +179 -0
- data/lib/ramaze/current.rb +51 -0
- data/lib/ramaze/dispatcher/action.rb +50 -0
- data/lib/ramaze/dispatcher/directory.rb +119 -0
- data/lib/ramaze/dispatcher/error.rb +108 -0
- data/lib/ramaze/dispatcher/file.rb +100 -0
- data/lib/ramaze/dispatcher.rb +145 -0
- data/lib/ramaze/error.rb +24 -0
- data/lib/ramaze/gestalt.rb +124 -0
- data/lib/ramaze/helper/aspect.rb +106 -0
- data/lib/ramaze/helper/auth.rb +125 -0
- data/lib/ramaze/helper/bench.rb +43 -0
- data/lib/ramaze/helper/cache.rb +140 -0
- data/lib/ramaze/helper/cgi.rb +39 -0
- data/lib/ramaze/helper/flash.rb +74 -0
- data/lib/ramaze/helper/form.rb +284 -0
- data/lib/ramaze/helper/formatting.rb +162 -0
- data/lib/ramaze/helper/gestalt.rb +15 -0
- data/lib/ramaze/helper/gravatar.rb +32 -0
- data/lib/ramaze/helper/httpdigest.rb +88 -0
- data/lib/ramaze/helper/identity.rb +119 -0
- data/lib/ramaze/helper/link.rb +122 -0
- data/lib/ramaze/helper/markaby.rb +31 -0
- data/lib/ramaze/helper/maruku.rb +9 -0
- data/lib/ramaze/helper/nitroform.rb +14 -0
- data/lib/ramaze/helper/pager.rb +366 -0
- data/lib/ramaze/helper/paginate.rb +233 -0
- data/lib/ramaze/helper/partial.rb +105 -0
- data/lib/ramaze/helper/redirect.rb +100 -0
- data/lib/ramaze/helper/rest.rb +43 -0
- data/lib/ramaze/helper/sendfile.rb +16 -0
- data/lib/ramaze/helper/sequel.rb +55 -0
- data/lib/ramaze/helper/simple_captcha.rb +31 -0
- data/lib/ramaze/helper/stack.rb +77 -0
- data/lib/ramaze/helper/tagz.rb +19 -0
- data/lib/ramaze/helper/thread.rb +17 -0
- data/lib/ramaze/helper/ultraviolet.rb +44 -0
- data/lib/ramaze/helper/user.rb +110 -0
- data/lib/ramaze/helper/xhtml.rb +23 -0
- data/lib/ramaze/helper.rb +87 -0
- data/lib/ramaze/log/analogger.rb +40 -0
- data/lib/ramaze/log/growl.rb +38 -0
- data/lib/ramaze/log/hub.rb +41 -0
- data/lib/ramaze/log/informer.rb +128 -0
- data/lib/ramaze/log/knotify.rb +28 -0
- data/lib/ramaze/log/logger.rb +26 -0
- data/lib/ramaze/log/logging.rb +89 -0
- data/lib/ramaze/log/rotatinginformer.rb +168 -0
- data/lib/ramaze/log/syslog.rb +51 -0
- data/lib/ramaze/log/xosd.rb +92 -0
- data/lib/ramaze/log.rb +27 -0
- data/lib/ramaze/option/dsl.rb +45 -0
- data/lib/ramaze/option/holder.rb +131 -0
- data/lib/ramaze/option/merger.rb +108 -0
- data/lib/ramaze/option.rb +156 -0
- data/lib/ramaze/reloader/watch_inotify.rb +85 -0
- data/lib/ramaze/reloader/watch_stat.rb +58 -0
- data/lib/ramaze/reloader.rb +170 -0
- data/lib/ramaze/route.rb +97 -0
- data/lib/ramaze/setup.rb +50 -0
- data/lib/ramaze/snippets/array/put_within.rb +44 -0
- data/lib/ramaze/snippets/binding/locals.rb +25 -0
- data/lib/ramaze/snippets/blankslate.rb +7 -0
- data/lib/ramaze/snippets/dictionary.rb +504 -0
- data/lib/ramaze/snippets/divide.rb +22 -0
- data/lib/ramaze/snippets/fiber.rb +63 -0
- data/lib/ramaze/snippets/kernel/constant.rb +41 -0
- data/lib/ramaze/snippets/kernel/pretty_inspect.rb +21 -0
- data/lib/ramaze/snippets/metaid.rb +17 -0
- data/lib/ramaze/snippets/numeric/filesize_format.rb +32 -0
- data/lib/ramaze/snippets/numeric/time.rb +63 -0
- data/lib/ramaze/snippets/object/__dir__.rb +29 -0
- data/lib/ramaze/snippets/object/acquire.rb +37 -0
- data/lib/ramaze/snippets/object/instance_variable_defined.rb +19 -0
- data/lib/ramaze/snippets/object/pretty.rb +16 -0
- data/lib/ramaze/snippets/object/scope.rb +18 -0
- data/lib/ramaze/snippets/object/traits.rb +76 -0
- data/lib/ramaze/snippets/ordered_set.rb +51 -0
- data/lib/ramaze/snippets/proc/locals.rb +19 -0
- data/lib/ramaze/snippets/ramaze/acquire.rb +31 -0
- data/lib/ramaze/snippets/ramaze/caller_info.rb +30 -0
- data/lib/ramaze/snippets/ramaze/caller_lines.rb +51 -0
- data/lib/ramaze/snippets/ramaze/deprecated.rb +21 -0
- data/lib/ramaze/snippets/ramaze/fiber.rb +24 -0
- data/lib/ramaze/snippets/ramaze/state.rb +86 -0
- data/lib/ramaze/snippets/ramaze/struct.rb +45 -0
- data/lib/ramaze/snippets/string/camel_case.rb +21 -0
- data/lib/ramaze/snippets/string/color.rb +31 -0
- data/lib/ramaze/snippets/string/each.rb +19 -0
- data/lib/ramaze/snippets/string/end_with.rb +20 -0
- data/lib/ramaze/snippets/string/esc.rb +34 -0
- data/lib/ramaze/snippets/string/ord.rb +21 -0
- data/lib/ramaze/snippets/string/snake_case.rb +21 -0
- data/lib/ramaze/snippets/string/start_with.rb +19 -0
- data/lib/ramaze/snippets/string/unindent.rb +28 -0
- data/lib/ramaze/snippets/thread/into.rb +18 -0
- data/lib/ramaze/snippets.rb +22 -0
- data/lib/ramaze/spec/helper/bacon.rb +7 -0
- data/lib/ramaze/spec/helper/browser.rb +88 -0
- data/lib/ramaze/spec/helper/mock_http.rb +64 -0
- data/lib/ramaze/spec/helper/pretty_output.rb +82 -0
- data/lib/ramaze/spec/helper/requester.rb +63 -0
- data/lib/ramaze/spec/helper/simple_http.rb +434 -0
- data/lib/ramaze/spec/helper/snippets.rb +14 -0
- data/lib/ramaze/spec/helper.rb +135 -0
- data/lib/ramaze/spec.rb +1 -0
- data/lib/ramaze/store/default.rb +109 -0
- data/lib/ramaze/template/amrita2.rb +49 -0
- data/lib/ramaze/template/builder.rb +28 -0
- data/lib/ramaze/template/erubis.rb +41 -0
- data/lib/ramaze/template/ezamar/element.rb +169 -0
- data/lib/ramaze/template/ezamar/engine.rb +76 -0
- data/lib/ramaze/template/ezamar/morpher.rb +135 -0
- data/lib/ramaze/template/ezamar/render_partial.rb +39 -0
- data/lib/ramaze/template/ezamar/textpow.syntax +34 -0
- data/lib/ramaze/template/ezamar.rb +42 -0
- data/lib/ramaze/template/haml.rb +37 -0
- data/lib/ramaze/template/liquid.rb +36 -0
- data/lib/ramaze/template/markaby.rb +52 -0
- data/lib/ramaze/template/maruku.rb +34 -0
- data/lib/ramaze/template/nagoro.rb +52 -0
- data/lib/ramaze/template/none.rb +14 -0
- data/lib/ramaze/template/redcloth.rb +25 -0
- data/lib/ramaze/template/remarkably.rb +38 -0
- data/lib/ramaze/template/sass.rb +38 -0
- data/lib/ramaze/template/tagz.rb +79 -0
- data/lib/ramaze/template/tenjin.rb +74 -0
- data/lib/ramaze/template/xslt.rb +100 -0
- data/lib/ramaze/template.rb +87 -0
- data/lib/ramaze/tool/create.rb +48 -0
- data/lib/ramaze/tool/daemonize.rb +37 -0
- data/lib/ramaze/tool/localize.rb +202 -0
- data/lib/ramaze/tool/mime.rb +35 -0
- data/lib/ramaze/tool/mime_types.yaml +615 -0
- data/lib/ramaze/tool/project_creator.rb +111 -0
- data/lib/ramaze/tool/record.rb +6 -0
- data/lib/ramaze/tool.rb +9 -0
- data/lib/ramaze/trinity.rb +16 -0
- data/lib/ramaze/version.rb +6 -0
- data/lib/ramaze.rb +139 -0
- data/lib/vendor/bacon.rb +323 -0
- data/rake_tasks/conf.rake +71 -0
- data/rake_tasks/coverage.rake +45 -0
- data/rake_tasks/gem.rake +74 -0
- data/rake_tasks/git.rake +41 -0
- data/rake_tasks/maintenance.rake +386 -0
- data/rake_tasks/metric.rake +24 -0
- data/rake_tasks/release.rake +76 -0
- data/rake_tasks/spec.rake +61 -0
- data/ramaze.gemspec +611 -0
- data/spec/contrib/profiling.rb +29 -0
- data/spec/contrib/sequel/fill.rb +47 -0
- data/spec/examples/caching.rb +19 -0
- data/spec/examples/css.rb +15 -0
- data/spec/examples/element.rb +15 -0
- data/spec/examples/hello.rb +11 -0
- data/spec/examples/linking.rb +18 -0
- data/spec/examples/simple.rb +45 -0
- data/spec/examples/simple_auth.rb +32 -0
- data/spec/examples/templates/template_amrita2.rb +16 -0
- data/spec/examples/templates/template_erubis.rb +23 -0
- data/spec/examples/templates/template_ezamar.rb +23 -0
- data/spec/examples/templates/template_haml.rb +23 -0
- data/spec/examples/templates/template_liquid.rb +29 -0
- data/spec/examples/templates/template_markaby.rb +23 -0
- data/spec/examples/templates/template_redcloth.rb +28 -0
- data/spec/examples/templates/template_remarkably.rb +23 -0
- data/spec/examples/templates/template_tenjin.rb +28 -0
- data/spec/helper.rb +3 -0
- data/spec/ramaze/action/basics.rb +36 -0
- data/spec/ramaze/action/cache.rb +87 -0
- data/spec/ramaze/action/file_cache.rb +70 -0
- data/spec/ramaze/action/layout.rb +190 -0
- data/spec/ramaze/action/render.rb +31 -0
- data/spec/ramaze/action/view/bar.xhtml +1 -0
- data/spec/ramaze/action/view/instancevars/layout.xhtml +1 -0
- data/spec/ramaze/action/view/other_wrapper.xhtml +1 -0
- data/spec/ramaze/action/view/single_wrapper.xhtml +1 -0
- data/spec/ramaze/action/view/sub/sub_wrapper.xhtml +1 -0
- data/spec/ramaze/adapter/ebb.rb +12 -0
- data/spec/ramaze/adapter/mongrel.rb +12 -0
- data/spec/ramaze/adapter/record.rb +31 -0
- data/spec/ramaze/adapter/webrick.rb +12 -0
- data/spec/ramaze/adapter.rb +49 -0
- data/spec/ramaze/cache.rb +140 -0
- data/spec/ramaze/controller/actionless_templates.rb +32 -0
- data/spec/ramaze/controller/resolve.rb +32 -0
- data/spec/ramaze/controller/subclass.rb +36 -0
- data/spec/ramaze/controller/template_resolving.rb +113 -0
- data/spec/ramaze/controller/view/bar.xhtml +1 -0
- data/spec/ramaze/controller/view/base/another.xhtml +1 -0
- data/spec/ramaze/controller/view/greet.xhtml +1 -0
- data/spec/ramaze/controller/view/list.xhtml +1 -0
- data/spec/ramaze/controller/view/other/greet/other.xhtml +1 -0
- data/spec/ramaze/controller/view/other_wrapper.xhtml +1 -0
- data/spec/ramaze/controller.rb +180 -0
- data/spec/ramaze/current/request.rb +30 -0
- data/spec/ramaze/current/session.rb +97 -0
- data/spec/ramaze/dispatcher/directory.rb +55 -0
- data/spec/ramaze/dispatcher/file.rb +60 -0
- data/spec/ramaze/dispatcher/public/favicon.ico +0 -0
- data/spec/ramaze/dispatcher/public/file name.txt +1 -0
- data/spec/ramaze/dispatcher/public/test_download.css +141 -0
- data/spec/ramaze/dispatcher.rb +31 -0
- data/spec/ramaze/element.rb +107 -0
- data/spec/ramaze/error.rb +94 -0
- data/spec/ramaze/gestalt.rb +131 -0
- data/spec/ramaze/helper/aspect.rb +101 -0
- data/spec/ramaze/helper/auth.rb +66 -0
- data/spec/ramaze/helper/cache.rb +160 -0
- data/spec/ramaze/helper/cgi.rb +43 -0
- data/spec/ramaze/helper/file.rb +18 -0
- data/spec/ramaze/helper/flash.rb +133 -0
- data/spec/ramaze/helper/form.rb +118 -0
- data/spec/ramaze/helper/formatting.rb +54 -0
- data/spec/ramaze/helper/link.rb +124 -0
- data/spec/ramaze/helper/pager.rb +99 -0
- data/spec/ramaze/helper/partial.rb +88 -0
- data/spec/ramaze/helper/redirect.rb +112 -0
- data/spec/ramaze/helper/simple_captcha.rb +22 -0
- data/spec/ramaze/helper/stack.rb +73 -0
- data/spec/ramaze/helper/user.rb +43 -0
- data/spec/ramaze/helper/view/locals.xhtml +1 -0
- data/spec/ramaze/helper/view/loop.xhtml +4 -0
- data/spec/ramaze/helper/view/num.xhtml +1 -0
- data/spec/ramaze/helper/view/partial.xhtml +1 -0
- data/spec/ramaze/helper/view/recursive.xhtml +8 -0
- data/spec/ramaze/helper/view/recursive_local_ivars.xhtml +7 -0
- data/spec/ramaze/helper/view/recursive_locals.xhtml +7 -0
- data/spec/ramaze/helper/view/test_template.xhtml +1 -0
- data/spec/ramaze/localize.rb +89 -0
- data/spec/ramaze/log/informer.rb +72 -0
- data/spec/ramaze/log/syslog.rb +76 -0
- data/spec/ramaze/morpher.rb +111 -0
- data/spec/ramaze/params.rb +157 -0
- data/spec/ramaze/public/error404.xhtml +1 -0
- data/spec/ramaze/public/favicon.ico +0 -0
- data/spec/ramaze/public/ramaze.png +0 -0
- data/spec/ramaze/public/test_download.css +141 -0
- data/spec/ramaze/request/ebb.rb +9 -0
- data/spec/ramaze/request/mongrel.rb +9 -0
- data/spec/ramaze/request/thin.rb +9 -0
- data/spec/ramaze/request/webrick.rb +5 -0
- data/spec/ramaze/request.rb +185 -0
- data/spec/ramaze/rewrite/file.css +1 -0
- data/spec/ramaze/rewrite.rb +36 -0
- data/spec/ramaze/route.rb +131 -0
- data/spec/ramaze/session.rb +94 -0
- data/spec/ramaze/store/default.rb +71 -0
- data/spec/ramaze/struct.rb +47 -0
- data/spec/ramaze/template/amrita2/external.amrita +6 -0
- data/spec/ramaze/template/amrita2/sum.amrita +1 -0
- data/spec/ramaze/template/amrita2.rb +50 -0
- data/spec/ramaze/template/builder/external.rxml +3 -0
- data/spec/ramaze/template/builder.rb +51 -0
- data/spec/ramaze/template/erubis/sum.rhtml +1 -0
- data/spec/ramaze/template/erubis.rb +41 -0
- data/spec/ramaze/template/ezamar/another/long/action.zmr +1 -0
- data/spec/ramaze/template/ezamar/combined.zmr +1 -0
- data/spec/ramaze/template/ezamar/file_only.zmr +1 -0
- data/spec/ramaze/template/ezamar/index.zmr +1 -0
- data/spec/ramaze/template/ezamar/nested.zmr +1 -0
- data/spec/ramaze/template/ezamar/other__index.xhtml +1 -0
- data/spec/ramaze/template/ezamar/some__long__action.zmr +1 -0
- data/spec/ramaze/template/ezamar/sum.zmr +1 -0
- data/spec/ramaze/template/ezamar.rb +63 -0
- data/spec/ramaze/template/haml/index.haml +5 -0
- data/spec/ramaze/template/haml/locals.haml +2 -0
- data/spec/ramaze/template/haml/with_vars.haml +4 -0
- data/spec/ramaze/template/haml.rb +66 -0
- data/spec/ramaze/template/liquid/index.liquid +1 -0
- data/spec/ramaze/template/liquid/products.liquid +45 -0
- data/spec/ramaze/template/liquid.rb +99 -0
- data/spec/ramaze/template/markaby/external.mab +8 -0
- data/spec/ramaze/template/markaby/sum.mab +1 -0
- data/spec/ramaze/template/markaby.rb +61 -0
- data/spec/ramaze/template/nagoro/another/long/action.nag +1 -0
- data/spec/ramaze/template/nagoro/combined.nag +1 -0
- data/spec/ramaze/template/nagoro/file_only.nag +1 -0
- data/spec/ramaze/template/nagoro/index.nag +1 -0
- data/spec/ramaze/template/nagoro/nested.nag +1 -0
- data/spec/ramaze/template/nagoro/some__long__action.nag +1 -0
- data/spec/ramaze/template/nagoro/sum.nag +1 -0
- data/spec/ramaze/template/nagoro.rb +64 -0
- data/spec/ramaze/template/ramaze/external.test +1 -0
- data/spec/ramaze/template/redcloth/external.redcloth +1 -0
- data/spec/ramaze/template/redcloth.rb +38 -0
- data/spec/ramaze/template/remarkably/external.rem +8 -0
- data/spec/ramaze/template/remarkably/sum.rem +1 -0
- data/spec/ramaze/template/remarkably.rb +58 -0
- data/spec/ramaze/template/sass/file.css.sass +5 -0
- data/spec/ramaze/template/sass.rb +70 -0
- data/spec/ramaze/template/tagz/external.tagz +8 -0
- data/spec/ramaze/template/tagz/sum.tagz +1 -0
- data/spec/ramaze/template/tagz.rb +62 -0
- data/spec/ramaze/template/tenjin/external.tenjin +1 -0
- data/spec/ramaze/template/tenjin.rb +47 -0
- data/spec/ramaze/template/xslt/concat_words.xsl +16 -0
- data/spec/ramaze/template/xslt/index.xsl +14 -0
- data/spec/ramaze/template/xslt/products.xsl +32 -0
- data/spec/ramaze/template/xslt/ruby_version.xsl +14 -0
- data/spec/ramaze/template/xslt.rb +90 -0
- data/spec/ramaze/template.rb +128 -0
- data/spec/snippets/array/put_within.rb +33 -0
- data/spec/snippets/binding/locals.rb +9 -0
- data/spec/snippets/kernel/constant.rb +23 -0
- data/spec/snippets/numeric/filesize_format.rb +12 -0
- data/spec/snippets/numeric/time.rb +12 -0
- data/spec/snippets/object/__dir__.rb +14 -0
- data/spec/snippets/ordered_set.rb +63 -0
- data/spec/snippets/ramaze/acquire.rb +77 -0
- data/spec/snippets/ramaze/caller_info.rb +39 -0
- data/spec/snippets/ramaze/caller_lines.rb +30 -0
- data/spec/snippets/string/camel_case.rb +25 -0
- data/spec/snippets/string/color.rb +11 -0
- data/spec/snippets/string/snake_case.rb +24 -0
- data/spec/snippets/string/unindent.rb +43 -0
- data/spec/snippets/thread/into.rb +20 -0
- metadata +661 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
|
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
|
3
|
+
|
|
4
|
+
# gzip_filter.rb
|
|
5
|
+
#
|
|
6
|
+
# Use this to compress "large" pages with gzip. All major browsers support
|
|
7
|
+
# gzipped pages.
|
|
8
|
+
# This filter brought to you by your friends in #ramaze:
|
|
9
|
+
# Pistos, manveru, rikur and Kashia.
|
|
10
|
+
#
|
|
11
|
+
# Usage, in start.rb:
|
|
12
|
+
#
|
|
13
|
+
# require 'ramaze/contrib/gzip_filter'
|
|
14
|
+
# Ramaze::Dispatcher::Action::FILTER << Ramaze::Filter::Gzip
|
|
15
|
+
#
|
|
16
|
+
# Setting options (at any point in your code):
|
|
17
|
+
#
|
|
18
|
+
# Ramaze::Filter::Gzip.trait(
|
|
19
|
+
# :threshold => 1024,
|
|
20
|
+
# :content_type => /^text\/.+/
|
|
21
|
+
# )
|
|
22
|
+
|
|
23
|
+
require 'zlib'
|
|
24
|
+
|
|
25
|
+
module Ramaze
|
|
26
|
+
module Filter
|
|
27
|
+
class Gzip
|
|
28
|
+
|
|
29
|
+
trait :enabled => true,
|
|
30
|
+
:content_type => /^text\/.+/,
|
|
31
|
+
:threshold => 32768 # bytes
|
|
32
|
+
|
|
33
|
+
class << self
|
|
34
|
+
|
|
35
|
+
include Ramaze::Trinity
|
|
36
|
+
|
|
37
|
+
# Enables being plugged into Dispatcher::Action::FILTER
|
|
38
|
+
|
|
39
|
+
def call( response, options = {} )
|
|
40
|
+
return response unless trait[ :enabled ]
|
|
41
|
+
return response unless body = response.body
|
|
42
|
+
return response if body.respond_to?( :read )
|
|
43
|
+
|
|
44
|
+
accepts = request.env[ 'HTTP_ACCEPT_ENCODING' ]
|
|
45
|
+
return response if accepts.nil? || ( accepts !~ /(x-gzip|gzip)/ )
|
|
46
|
+
|
|
47
|
+
acceptable_size = body.size >= trait[ :threshold ]
|
|
48
|
+
acceptable_type = response.content_type =~ trait[:content_type]
|
|
49
|
+
|
|
50
|
+
if acceptable_type and acceptable_size
|
|
51
|
+
output = StringIO.new
|
|
52
|
+
def output.close
|
|
53
|
+
# Zlib closes the file handle, so we want to circumvent this
|
|
54
|
+
rewind
|
|
55
|
+
end
|
|
56
|
+
gz = Zlib::GzipWriter.new( output )
|
|
57
|
+
gz.write( body )
|
|
58
|
+
gz.close
|
|
59
|
+
|
|
60
|
+
response.body = output.string
|
|
61
|
+
response.header[ 'Content-encoding' ] = 'gzip'
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
response
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
end
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# A hack to make MaRuKu use UltraViolet for highlighting
|
|
2
|
+
# To specify the style to use use for example:
|
|
3
|
+
# uv_style: amy
|
|
4
|
+
# html_use_syntax: true
|
|
5
|
+
# code_lang: ruby
|
|
6
|
+
# In the document header area.
|
|
7
|
+
|
|
8
|
+
require 'maruku'
|
|
9
|
+
|
|
10
|
+
module MaRuKu
|
|
11
|
+
module Out
|
|
12
|
+
module HTML
|
|
13
|
+
def uv_highlight(source, lang, style)
|
|
14
|
+
require 'uv'
|
|
15
|
+
|
|
16
|
+
html = Uv.parse(source, 'xhtml', lang, lines = false, style)
|
|
17
|
+
|
|
18
|
+
# Prepare <code> containing <pre>
|
|
19
|
+
code = Document.new(html, :respect_whitespace => :all).root
|
|
20
|
+
code.name = 'code'
|
|
21
|
+
code.attributes['class'] = lang
|
|
22
|
+
code.attributes['lang'] = lang
|
|
23
|
+
|
|
24
|
+
# Prepare <pre>
|
|
25
|
+
pre = Element.new('pre')
|
|
26
|
+
pre << code
|
|
27
|
+
pre.attributes['class'] = style
|
|
28
|
+
pre
|
|
29
|
+
rescue => ex
|
|
30
|
+
puts ex
|
|
31
|
+
to_html_code_using_pre(source)
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def to_html_code
|
|
35
|
+
source = self.raw_code
|
|
36
|
+
use_syntax = get_setting(:html_use_syntax)
|
|
37
|
+
uv_style = get_setting(:uv_style)
|
|
38
|
+
|
|
39
|
+
lang = self.attributes[:lang] || @doc.attributes[:code_lang]
|
|
40
|
+
lang ||= 'ruby' if attributes[:ruby]
|
|
41
|
+
|
|
42
|
+
# we always use syntax highlighting, this is a doc wiki
|
|
43
|
+
if lang and use_syntax
|
|
44
|
+
element = uv_highlight(source, lang, uv_style)
|
|
45
|
+
else
|
|
46
|
+
element = to_html_code_using_pre(source)
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
color = get_setting(:code_background_color)
|
|
50
|
+
|
|
51
|
+
if color != Globals[:code_background_color]
|
|
52
|
+
element.attributes['style'] = "background-color: #{color};"
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
add_ws element
|
|
56
|
+
end
|
|
57
|
+
end # HTML
|
|
58
|
+
end # Out
|
|
59
|
+
end # MaRuKu
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
require "ruby-prof"
|
|
2
|
+
|
|
3
|
+
module Ramaze
|
|
4
|
+
class Dispatcher
|
|
5
|
+
class ActionProfiler < Action
|
|
6
|
+
def self.call(path)
|
|
7
|
+
if RubyProf.running?
|
|
8
|
+
super
|
|
9
|
+
else
|
|
10
|
+
result = RubyProf.profile { super }
|
|
11
|
+
output = StringIO.new
|
|
12
|
+
printer = RubyProf::FlatPrinter.new(result)
|
|
13
|
+
options = {
|
|
14
|
+
:min_percent => Contrib::Profiling.trait[:min_percent],
|
|
15
|
+
:print_file => false
|
|
16
|
+
}
|
|
17
|
+
printer.print(output, options)
|
|
18
|
+
output.string.split("\n").each do |line|
|
|
19
|
+
Log.info(line)
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
module Contrib
|
|
27
|
+
class Profiling
|
|
28
|
+
trait :min_percent => 1
|
|
29
|
+
|
|
30
|
+
def self.startup
|
|
31
|
+
Dispatcher::FILTER.delete(Dispatcher::Action)
|
|
32
|
+
Dispatcher::FILTER << Dispatcher::ActionProfiler
|
|
33
|
+
end
|
|
34
|
+
end
|
|
35
|
+
end
|
|
36
|
+
end
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
Ramaze::Rewrite['REST dispatch'] = lambda do |path, request|
|
|
2
|
+
path << '/' unless path[-1] == '/'
|
|
3
|
+
|
|
4
|
+
method = if request.request_method == 'POST' and request.params.has_key?('method')
|
|
5
|
+
request.params['method'].upcase
|
|
6
|
+
else
|
|
7
|
+
request.request_method
|
|
8
|
+
end
|
|
9
|
+
|
|
10
|
+
case method
|
|
11
|
+
when 'GET' then path << 'show/'
|
|
12
|
+
when 'POST' then path << 'create/'
|
|
13
|
+
when 'PUT' then path << 'update/'
|
|
14
|
+
when 'DELETE' then path << 'destroy/'
|
|
15
|
+
else path
|
|
16
|
+
end
|
|
17
|
+
end
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require 'sequel'
|
|
2
|
+
|
|
3
|
+
module Sequel
|
|
4
|
+
class Model
|
|
5
|
+
# Force join table generation
|
|
6
|
+
#
|
|
7
|
+
# Usage:
|
|
8
|
+
# User.create_join(Article, 'articles_users')
|
|
9
|
+
# # or let the method figure out the correct join table using sequel
|
|
10
|
+
# # conventions.
|
|
11
|
+
# User.create_join(Article)
|
|
12
|
+
def self.create_join(to, name = nil)
|
|
13
|
+
from = self
|
|
14
|
+
name ||= [table_name.to_s, to.table_name.to_s].sort.join('_')
|
|
15
|
+
from_key = "#{from.table_name.to_s.singularize}_id"
|
|
16
|
+
to_key = "#{to.table_name.to_s.singularize}_id"
|
|
17
|
+
|
|
18
|
+
db.create_table! name do
|
|
19
|
+
primary_key :id
|
|
20
|
+
foreign_key from_key, :class => from
|
|
21
|
+
foreign_key to_key, :class => to
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
|
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
|
3
|
+
|
|
4
|
+
module Sequel
|
|
5
|
+
class Model
|
|
6
|
+
class << self
|
|
7
|
+
def fill request_object = Ramaze::Request.current
|
|
8
|
+
create(request_object.params)
|
|
9
|
+
end
|
|
10
|
+
end
|
|
11
|
+
end
|
|
12
|
+
end
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
require 'ramaze/gestalt'
|
|
2
|
+
|
|
3
|
+
# job = Job[4]
|
|
4
|
+
# puts CGI::pretty(FormField.new(job, :contract, show_errors = true, Job::CONTRACTS).to_s)
|
|
5
|
+
|
|
6
|
+
class FormField
|
|
7
|
+
attr_accessor :this, :field, :show_errors, :hint, :db_type, :id, :value
|
|
8
|
+
|
|
9
|
+
# show_errors may be a number indicating how many errors it should display at
|
|
10
|
+
# maximum, 0 displays none, -1 all
|
|
11
|
+
|
|
12
|
+
def initialize(this, field, show_errors = true, hint = nil)
|
|
13
|
+
@this, @field, @show_errors, @hint =
|
|
14
|
+
this, field.to_sym, show_errors, hint
|
|
15
|
+
@db_type = db_type
|
|
16
|
+
@id = "form_#{@field}"
|
|
17
|
+
@value = this.send(@field)
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def db_type
|
|
21
|
+
if field_schema = this.class.db_schema[field]
|
|
22
|
+
field_schema[:db_type]
|
|
23
|
+
else
|
|
24
|
+
nil
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def to_s
|
|
29
|
+
unless label = @this.class::FORM_LABEL[field]
|
|
30
|
+
raise("No FORM_LABEL for %p on %p" % [field, @this.class])
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
label += ':'
|
|
34
|
+
id = @id
|
|
35
|
+
_self = self
|
|
36
|
+
|
|
37
|
+
Ramaze::Gestalt.build{
|
|
38
|
+
div(:class => :pair){
|
|
39
|
+
label(:for => id){ label }
|
|
40
|
+
_self.build_tag(self)
|
|
41
|
+
_self.build_errors(self)
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def password(gestalt)
|
|
47
|
+
gestalt.input(@args.merge :type => :password, :value => value)
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def checkbox(gestalt)
|
|
51
|
+
@args[:checked] = :checked if value
|
|
52
|
+
gestalt.input(@args.merge :type => :checkbox)
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
def select(gestalt)
|
|
56
|
+
gestalt.select @args do
|
|
57
|
+
v = value.to_s
|
|
58
|
+
hint.each do |h|
|
|
59
|
+
h = h.to_s
|
|
60
|
+
if h == v
|
|
61
|
+
gestalt.option(:value => h, :selected => :selected){ h }
|
|
62
|
+
else
|
|
63
|
+
gestalt.option(:value => h){ h }
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
end
|
|
67
|
+
end
|
|
68
|
+
|
|
69
|
+
def input(gestalt)
|
|
70
|
+
gestalt.input(@args.merge :type => :text, :value => value)
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
def file(gestalt)
|
|
74
|
+
gestalt.input(@args.merge :type => :file)
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def textarea(gestalt)
|
|
78
|
+
gestalt.textarea(@args){ value.to_s }
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
def build_tag(gestalt)
|
|
82
|
+
@args = {:id => id, :name => field}
|
|
83
|
+
|
|
84
|
+
case hint
|
|
85
|
+
when :password
|
|
86
|
+
password(gestalt)
|
|
87
|
+
when :boolean, :checkbox
|
|
88
|
+
checkbox(gestalt)
|
|
89
|
+
when :textarea
|
|
90
|
+
textarea(gestalt)
|
|
91
|
+
when :file
|
|
92
|
+
file(gestalt)
|
|
93
|
+
when Array, Range
|
|
94
|
+
select(gestalt)
|
|
95
|
+
else
|
|
96
|
+
case db_type
|
|
97
|
+
when 'varchar', 'integer'
|
|
98
|
+
input(gestalt)
|
|
99
|
+
when 'boolean'
|
|
100
|
+
checkbox(gestalt)
|
|
101
|
+
when 'string'
|
|
102
|
+
textarea(gestalt)
|
|
103
|
+
else
|
|
104
|
+
raise "Unsupported type: (#{db_type || hint} : #{field})"
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
def build_errors(gestalt)
|
|
110
|
+
each_error do |error|
|
|
111
|
+
gestalt.span(:class => :error){ error }
|
|
112
|
+
end
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# TODO: suggest 'validated?' feature to sequel
|
|
116
|
+
def each_error(&block)
|
|
117
|
+
return unless show_errors
|
|
118
|
+
|
|
119
|
+
this.validate if this.errors.empty?
|
|
120
|
+
this.errors[field].first(show_errors).each(&block)
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
module Model
|
|
124
|
+
def form_field(field, hint = nil)
|
|
125
|
+
show_errors = Ramaze::Request.current.post? ? 1 : 0
|
|
126
|
+
FormField.new(self, field, show_errors, hint).to_s
|
|
127
|
+
end
|
|
128
|
+
end
|
|
129
|
+
end
|
|
@@ -0,0 +1,198 @@
|
|
|
1
|
+
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com
|
|
2
|
+
# All files in this distribution are subject to the terms of the Ruby license.
|
|
3
|
+
|
|
4
|
+
# Scaffold image models utilizing thumbnailing and Ramaze integration.
|
|
5
|
+
# Resizing is done by ImageScience.
|
|
6
|
+
#
|
|
7
|
+
# Usage:
|
|
8
|
+
# class Avatar < Sequel::Model
|
|
9
|
+
# IMAGE = {
|
|
10
|
+
# # specifies belongs_to, will create relation and foreign key
|
|
11
|
+
#
|
|
12
|
+
# :owner => :User,
|
|
13
|
+
#
|
|
14
|
+
#
|
|
15
|
+
# # Remove original and thumbnails on Avatar#destroy
|
|
16
|
+
#
|
|
17
|
+
# :cleanup => true,
|
|
18
|
+
#
|
|
19
|
+
#
|
|
20
|
+
# # Algorithm to use in ImageScience
|
|
21
|
+
# #
|
|
22
|
+
# # * resize(width, height)
|
|
23
|
+
# # Resizes the image to +width+ and +height+ using a cubic-bspline
|
|
24
|
+
# # filter.
|
|
25
|
+
# #
|
|
26
|
+
# # * thumbnail(size)
|
|
27
|
+
# # Creates a proportional thumbnail of the image scaled so its
|
|
28
|
+
# # longest edge is resized to +size+.
|
|
29
|
+
# #
|
|
30
|
+
# # * cropped_thumbnail(size)
|
|
31
|
+
# # Creates a square thumbnail of the image cropping the longest edge
|
|
32
|
+
# # to match the shortest edge, resizes to +size+.
|
|
33
|
+
#
|
|
34
|
+
# :algorithm => :thumbnail,
|
|
35
|
+
#
|
|
36
|
+
#
|
|
37
|
+
# # Key specifies the filename and accessors, value are arguments to the
|
|
38
|
+
# # algorithm
|
|
39
|
+
#
|
|
40
|
+
# :sizes => {
|
|
41
|
+
# :small => 150,
|
|
42
|
+
# :medium => 300,
|
|
43
|
+
# :large => 600
|
|
44
|
+
# }
|
|
45
|
+
# }
|
|
46
|
+
#
|
|
47
|
+
# # Perform the scaffold
|
|
48
|
+
# include SequelImage
|
|
49
|
+
# end
|
|
50
|
+
|
|
51
|
+
module SequelImage
|
|
52
|
+
def self.included(model)
|
|
53
|
+
args = model::IMAGE
|
|
54
|
+
set_foreign_key = args[:foreign_key] || "#{args[:owner]}_id".downcase.to_sym
|
|
55
|
+
set_belongs_to = args[:belongs_to] || args[:owner].to_s.downcase.to_sym
|
|
56
|
+
|
|
57
|
+
# Define schema
|
|
58
|
+
model.set_schema do
|
|
59
|
+
primary_key :id
|
|
60
|
+
|
|
61
|
+
varchar :original # path to the original image
|
|
62
|
+
varchar :mime, :size => 22 # average of /etc/mime.types
|
|
63
|
+
|
|
64
|
+
time :created_at
|
|
65
|
+
time :updated_at
|
|
66
|
+
|
|
67
|
+
foreign_key set_foreign_key
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
# Define Relations
|
|
71
|
+
model.belongs_to set_belongs_to
|
|
72
|
+
|
|
73
|
+
# Define Hooks
|
|
74
|
+
model.send(:hooks).clear
|
|
75
|
+
|
|
76
|
+
model.before_create do
|
|
77
|
+
generate_thumbnails
|
|
78
|
+
self.created_at = Time.now
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
model.before_save do
|
|
82
|
+
self.updated_at = Time.now
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
model.before_destroy do
|
|
86
|
+
cleanup if conf[:cleanup]
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
# Define singleton methods
|
|
90
|
+
model.extend(SingletonMethods)
|
|
91
|
+
|
|
92
|
+
# Define instance methods
|
|
93
|
+
model.send(:include,
|
|
94
|
+
InstanceMethods,
|
|
95
|
+
Ramaze::Helper::CGI,
|
|
96
|
+
Ramaze::Helper::Link)
|
|
97
|
+
|
|
98
|
+
args[:sizes].each do |size, *args|
|
|
99
|
+
model.send(:define_method, size){ public_file(size) }
|
|
100
|
+
model.send(:define_method, "#{size}_url"){ file(size) }
|
|
101
|
+
end
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
module SingletonMethods
|
|
105
|
+
def store(file, uid, hash = {})
|
|
106
|
+
image = new(hash)
|
|
107
|
+
|
|
108
|
+
type = file[:type]
|
|
109
|
+
filename = file[:filename]
|
|
110
|
+
tempfile = file[:tempfile]
|
|
111
|
+
raise ArgumentError, 'Empty tempfile' if tempfile.size == 0
|
|
112
|
+
|
|
113
|
+
ext = Ramaze::Tool::MIME.ext_for(type)
|
|
114
|
+
image.mime = type
|
|
115
|
+
target_name = image.next_name(File.basename(filename, File.extname(filename)), ext)
|
|
116
|
+
target_path = File.join(image.public_root, image.path, target_name)
|
|
117
|
+
|
|
118
|
+
FileUtils.mkdir_p(File.dirname(target_path))
|
|
119
|
+
FileUtils.cp(tempfile.path, target_path)
|
|
120
|
+
|
|
121
|
+
image.original = target_path
|
|
122
|
+
image.save
|
|
123
|
+
end
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
module InstanceMethods
|
|
127
|
+
def file(size = nil)
|
|
128
|
+
File.join('/', path, filename(size))
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
def public_file(size)
|
|
132
|
+
File.join(public_path, filename(size))
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
def public_path
|
|
136
|
+
File.join(public_root, path)
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
def path
|
|
140
|
+
conf[:path] || conf[:owner].to_s.downcase
|
|
141
|
+
end
|
|
142
|
+
|
|
143
|
+
def next_name(uid, ext)
|
|
144
|
+
uid = uid.to_s.scan(%r![^\\/'".:?&;\s]+!).join('-')
|
|
145
|
+
"#{uid}#{ext}"
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
def basename
|
|
149
|
+
File.basename(original, File.extname(original))
|
|
150
|
+
end
|
|
151
|
+
|
|
152
|
+
def public_root
|
|
153
|
+
Ramaze::Global.public_root
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
def filename(size)
|
|
157
|
+
if size
|
|
158
|
+
"#{basename}_#{size}.png"
|
|
159
|
+
else
|
|
160
|
+
"#{basename}.png"
|
|
161
|
+
end
|
|
162
|
+
end
|
|
163
|
+
|
|
164
|
+
def conf
|
|
165
|
+
self.class::IMAGE
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
def cleanup
|
|
169
|
+
conf[:sizes].each do |name, args|
|
|
170
|
+
out = public_file(name)
|
|
171
|
+
Ramaze::Log.debug "Remove Thumbnail: #{out}"
|
|
172
|
+
FileUtils.rm_f(out)
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
Ramaze::Log.debug "Remove original: #{original}"
|
|
176
|
+
FileUtils.rm_f(original)
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
def generate_thumbnails
|
|
180
|
+
FileUtils.mkdir_p(public_path)
|
|
181
|
+
|
|
182
|
+
sizes, algorithm = conf.values_at(:sizes, :algorithm)
|
|
183
|
+
|
|
184
|
+
ImageScience.with_image(original) do |img|
|
|
185
|
+
Ramaze::Log.debug "Process original: #{original}"
|
|
186
|
+
|
|
187
|
+
sizes.each do |name, args|
|
|
188
|
+
out = public_file(name)
|
|
189
|
+
Ramaze::Log.debug "Generate Thumbnail: #{out}"
|
|
190
|
+
|
|
191
|
+
img.send(algorithm, *args) do |thumb|
|
|
192
|
+
thumb.save(out)
|
|
193
|
+
end
|
|
194
|
+
end
|
|
195
|
+
end
|
|
196
|
+
end
|
|
197
|
+
end
|
|
198
|
+
end
|