spiderfw 0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/README +4 -0
- data/Rakefile +74 -0
- data/apps/cas_server/_init.rb +23 -0
- data/apps/cas_server/config/options.rb +9 -0
- data/apps/cas_server/controllers/mixins/cas_login_mixin.rb +353 -0
- data/apps/cas_server/lib/cas.rb +329 -0
- data/apps/cas_server/lib/utils.rb +30 -0
- data/apps/cas_server/models/login_ticket.rb +11 -0
- data/apps/cas_server/models/mixins/consumable.rb +10 -0
- data/apps/cas_server/models/proxy_granting_ticket.rb +12 -0
- data/apps/cas_server/models/proxy_ticket.rb +12 -0
- data/apps/cas_server/models/service_ticket.rb +22 -0
- data/apps/cas_server/models/ticket.rb +20 -0
- data/apps/cas_server/models/ticket_granting_ticket.rb +15 -0
- data/apps/cas_server/views/logout.shtml +3 -0
- data/apps/core/admin/_init.rb +23 -0
- data/apps/core/admin/admin.rb +17 -0
- data/apps/core/admin/controllers/admin_controller.rb +15 -0
- data/apps/core/admin/views/index.shtml +1 -0
- data/apps/core/admin/views/spider_admin.layout.shtml +23 -0
- data/apps/core/admin/widgets/admin_menu/admin_menu.rb +17 -0
- data/apps/core/auth/_init.rb +42 -0
- data/apps/core/auth/controllers/login_controller.rb +94 -0
- data/apps/core/auth/controllers/mixins/auth_helper.rb +114 -0
- data/apps/core/auth/controllers/mixins/http_basic_auth.rb +24 -0
- data/apps/core/auth/controllers/mixins/http_digest_auth.rb +26 -0
- data/apps/core/auth/lib/authenticable.rb +86 -0
- data/apps/core/auth/lib/authenticator.rb +11 -0
- data/apps/core/auth/lib/digest_authenticator.rb +44 -0
- data/apps/core/auth/lib/login_authenticator.rb +27 -0
- data/apps/core/auth/models/digest_user.rb +34 -0
- data/apps/core/auth/models/group.rb +22 -0
- data/apps/core/auth/models/login_user.rb +15 -0
- data/apps/core/auth/models/mixins/access_control.rb +71 -0
- data/apps/core/auth/models/mixins/authentication_tracking.rb +19 -0
- data/apps/core/auth/models/super_user.rb +8 -0
- data/apps/core/auth/models/user.rb +15 -0
- data/apps/core/auth/po/it/spider_auth.po +33 -0
- data/apps/core/auth/po/spider_auth.pot +31 -0
- data/apps/core/auth/views/login.shtml +25 -0
- data/apps/core/components/_init.rb +21 -0
- data/apps/core/components/po/it/spider_components.po +52 -0
- data/apps/core/components/po/spider_components.pot +53 -0
- data/apps/core/components/public/css/admin.css +73 -0
- data/apps/core/components/public/css/crud.css +58 -0
- data/apps/core/components/public/css/img/add.gif +0 -0
- data/apps/core/components/public/css/img/ajax-loader.gif +0 -0
- data/apps/core/components/public/css/img/back.gif +0 -0
- data/apps/core/components/public/css/img/bg_header.png +0 -0
- data/apps/core/components/public/css/img/body_bg.jpg +0 -0
- data/apps/core/components/public/css/img/gray_gradient.gif +0 -0
- data/apps/core/components/public/css/img/li_bg.png +0 -0
- data/apps/core/components/public/css/img/li_bg_active.png +0 -0
- data/apps/core/components/public/css/img/li_bg_hover.png +0 -0
- data/apps/core/components/public/css/img/logo.png +0 -0
- data/apps/core/components/public/css/img/menu_bg.png +0 -0
- data/apps/core/components/public/css/img/menu_bottom.png +0 -0
- data/apps/core/components/public/css/img/menu_top.png +0 -0
- data/apps/core/components/public/css/img/section-bottom.jpg +0 -0
- data/apps/core/components/public/css/list.css +7 -0
- data/apps/core/components/public/css/menu.css +47 -0
- data/apps/core/components/public/css/spider.css +9 -0
- data/apps/core/components/public/css/switcher.css +13 -0
- data/apps/core/components/public/css/table.css +99 -0
- data/apps/core/components/public/js/inheritance.js +71 -0
- data/apps/core/components/public/js/jquery/jquery-1.3.2.js +4376 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/jquery-ui-1.7.2.custom.css +406 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/jquery-ui-1.7.2.custom.css +406 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/AUTHORS.txt +30 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/GPL-LICENSE.txt +278 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/MIT-LICENSE.txt +25 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/ChangeLog.txt +20 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/META.json +32 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.js +100 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.min.js +10 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.pack.js +10 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/test/index.html +197 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.js +97 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.min.js +10 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.pack.js +10 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.zip +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/jsdiff/jsdiff.js +159 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/qunit/testrunner.js +780 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/qunit/testsuite.css +120 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/simulate/jquery.simulate.js +152 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/jquery-1.3.2.js +4376 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.accordion.css +9 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.all.css +2 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.base.css +8 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.core.css +37 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.datepicker.css +62 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.dialog.css +13 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.progressbar.css +4 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.resizable.css +13 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.slider.css +17 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.tabs.css +11 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.theme.css +245 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/jquery-ui-1.7.2.custom.css +406 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.accordion.css +9 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.all.css +2 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.base.css +8 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.core.css +37 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.datepicker.css +62 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.dialog.css +13 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.progressbar.css +4 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.resizable.css +13 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.slider.css +17 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.tabs.css +11 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.theme.css +247 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.blind.js +49 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.bounce.js +78 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.clip.js +54 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.core.js +545 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.drop.js +50 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.explode.js +79 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.fold.js +56 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js +48 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.pulsate.js +56 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.scale.js +180 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.shake.js +57 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.slide.js +50 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.transfer.js +45 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +771 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ar.js +20 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-bg.js +20 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ca.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-cs.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-da.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-de.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-el.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-eo.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-es.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fa.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fi.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fr.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-he.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hr.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hu.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hy.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-id.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-is.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-it.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ja.js +20 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ko.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-lt.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-lv.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ms.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-nl.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-no.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-pl.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-pt-BR.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ro.js +22 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ru.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sk.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sl.js +20 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sq.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sr-SR.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sr.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sv.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-th.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-tr.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-uk.js +25 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-zh-CN.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-zh-TW.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/jquery-ui-1.7.2.custom.js +9133 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.accordion.js +477 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.core.js +519 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.datepicker.js +1636 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.dialog.js +671 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.draggable.js +766 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.droppable.js +282 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.progressbar.js +116 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.resizable.js +800 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.selectable.js +257 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.slider.js +558 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.sortable.js +1019 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.tabs.js +685 -0
- data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/version.txt +1 -0
- data/apps/core/components/public/js/jquery/jquery-ui/index.html +367 -0
- data/apps/core/components/public/js/jquery/jquery-ui/js/jquery-1.3.2.min.js +19 -0
- data/apps/core/components/public/js/jquery/jquery-ui/js/jquery-ui-1.7.2.custom.min.js +298 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/changelog.txt +27 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.css +48 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.js +808 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.min.js +13 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.pack.js +12 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.ajaxQueue.js +116 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.bgiframe.min.js +10 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.js +3558 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/thickbox-compressed.js +10 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/thickbox.css +163 -0
- data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/todo +166 -0
- data/apps/core/components/public/js/jquery/plugins/jquery.form.js +653 -0
- data/apps/core/components/public/js/jquery/plugins/jquery.query-2.1.6.js +224 -0
- data/apps/core/components/public/js/jquery/plugins/jquery.url.js +214 -0
- data/apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.1.0.js +187 -0
- data/apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.1.0.min.js +1 -0
- data/apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.spider.1.0.js +193 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/changelog.txt +35 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/ajax-loader.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/file.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/folder-closed.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/folder.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/minus.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/plus.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-black-line.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-black.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-default-line.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-default.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-famfamfam-line.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-famfamfam.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-gray-line.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-gray.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-red-line.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-red.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.async.js +110 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.css +74 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.edit.js +37 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.js +256 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.min.js +15 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.pack.js +16 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.sortable.js +386 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/lib/jquery.cookie.js +92 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/lib/jquery.js +3534 -0
- data/apps/core/components/public/js/jquery/plugins/treeview/todo +8 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/LICENSE +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/README +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.css +34 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.js +1413 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.min.js +10 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/222222_256x240_icons_icons.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/2e83ff_256x240_icons_icons.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/454545_256x240_icons_icons.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/888888_256x240_icons_icons.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/aaaaaa_40x100_textures_01_flat_0.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/cccccc_40x100_textures_03_highlight_soft_75.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/cd0a0a_256x240_icons_icons.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/dadada_40x100_textures_02_glass_75.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/e6e6e6_40x100_textures_02_glass_75.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/fbf9ee_40x100_textures_02_glass_55.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/fef1ec_40x100_textures_05_inset_soft_95.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/ffffff_40x100_textures_02_glass_65.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/ffffff_40x100_textures_02_glass_75.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.accordion.css +9 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.all.css +4 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.allplugins.css +7 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.core.css +37 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.datepicker.css +60 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.dialog.css +13 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.progressbar.css +4 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.resizable.css +13 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.slider.css +13 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.tabs.css +9 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.theme.css +238 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.timepickr.css +44 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/ui.timepickr.js +2307 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/ui.timepickr.min.js +10 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/body-bg.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/btn-hover.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/btn.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/buttons.psd +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/index.html +326 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.anchorHandler.js +44 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.strings.js +290 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.ui.all.js +518 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.utils.js +255 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.utils.ui.min.js +26 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo-ff.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo-ie.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo.psd +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/package.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/reset.css +48 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/script_code.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/styles.css +308 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/themeroller_ready_black_200px.gif +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/weather_sun.png +0 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/css/ui.dropslide.css +26 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/css/ui.timepickr.css +18 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/ui.dropslide.js +132 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/ui.timepickr.js +217 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/data/testrunner.js +1 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/index.html +34 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/otherlibs/jquery/1.2.1/jquery.js +11 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/otherlibs/jquery/1.2.3/jquery.js +11 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/qunit/testrunner.js +780 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/qunit/testsuite.css +120 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/styles.css +201 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/test.js +41 -0
- data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/unit/ui.timepickr.js +154 -0
- data/apps/core/components/public/js/list.js +234 -0
- data/apps/core/components/public/js/spider.js +484 -0
- data/apps/core/components/public/widgets/search_table.js +10 -0
- data/apps/core/components/public/widgets/table.js +9 -0
- data/apps/core/components/widgets/admin/admin.rb +75 -0
- data/apps/core/components/widgets/admin/admin.shtml +16 -0
- data/apps/core/components/widgets/confirm/confirm.rb +37 -0
- data/apps/core/components/widgets/confirm/confirm.shtml +9 -0
- data/apps/core/components/widgets/crud/crud.rb +119 -0
- data/apps/core/components/widgets/crud/crud.shtml +59 -0
- data/apps/core/components/widgets/crud/form_table/form_table.rb +13 -0
- data/apps/core/components/widgets/crud/form_table/form_table.shtml +3 -0
- data/apps/core/components/widgets/list/list.rb +294 -0
- data/apps/core/components/widgets/list/list.shtml +38 -0
- data/apps/core/components/widgets/list/plugins/exportable/exportable_list.rb +19 -0
- data/apps/core/components/widgets/list/plugins/exportable/exportable_list.shtml +5 -0
- data/apps/core/components/widgets/menu/menu.rb +20 -0
- data/apps/core/components/widgets/menu/menu.shtml +13 -0
- data/apps/core/components/widgets/search_table/search_table.rb +22 -0
- data/apps/core/components/widgets/search_table/search_table.shtml +11 -0
- data/apps/core/components/widgets/switcher/switcher.rb +68 -0
- data/apps/core/components/widgets/switcher/switcher.shtml +17 -0
- data/apps/core/components/widgets/table/table.rb +153 -0
- data/apps/core/components/widgets/table/table.shtml +41 -0
- data/apps/core/components/widgets/tabs/tabs.rb +38 -0
- data/apps/core/components/widgets/tabs/tabs.shtml +2 -0
- data/apps/core/forms/_init.rb +22 -0
- data/apps/core/forms/po/it/spider_forms.po +36 -0
- data/apps/core/forms/po/spider_forms.pot +37 -0
- data/apps/core/forms/public/date_time.js +23 -0
- data/apps/core/forms/public/form.css +81 -0
- data/apps/core/forms/public/form.js +19 -0
- data/apps/core/forms/public/input.js +30 -0
- data/apps/core/forms/public/search_select.js +123 -0
- data/apps/core/forms/public/select.js +11 -0
- data/apps/core/forms/tags/element_label.erb +1 -0
- data/apps/core/forms/tags/element_row.erb +4 -0
- data/apps/core/forms/tags/row.erb +4 -0
- data/apps/core/forms/widgets/form/form.rb +430 -0
- data/apps/core/forms/widgets/form/form.shtml +47 -0
- data/apps/core/forms/widgets/inputs/checkbox/checkbox.rb +13 -0
- data/apps/core/forms/widgets/inputs/checkbox/checkbox.shtml +3 -0
- data/apps/core/forms/widgets/inputs/date_time/date_time.rb +48 -0
- data/apps/core/forms/widgets/inputs/date_time/date_time.shtml +4 -0
- data/apps/core/forms/widgets/inputs/hidden/hidden.rb +8 -0
- data/apps/core/forms/widgets/inputs/hidden/hidden.shtml +3 -0
- data/apps/core/forms/widgets/inputs/input/input.rb +105 -0
- data/apps/core/forms/widgets/inputs/input/input.shtml +3 -0
- data/apps/core/forms/widgets/inputs/input/readonly.shtml +6 -0
- data/apps/core/forms/widgets/inputs/password/password.rb +24 -0
- data/apps/core/forms/widgets/inputs/password/password.shtml +5 -0
- data/apps/core/forms/widgets/inputs/search_select/search_select.rb +168 -0
- data/apps/core/forms/widgets/inputs/search_select/search_select.shtml +42 -0
- data/apps/core/forms/widgets/inputs/select/select.rb +126 -0
- data/apps/core/forms/widgets/inputs/select/select.shtml +8 -0
- data/apps/core/forms/widgets/inputs/subform/subform.rb +10 -0
- data/apps/core/forms/widgets/inputs/subform/subform.shtml +5 -0
- data/apps/core/forms/widgets/inputs/text/text.rb +9 -0
- data/apps/core/forms/widgets/inputs/text/text.shtml +3 -0
- data/apps/core/forms/widgets/inputs/text_area/text_area.rb +10 -0
- data/apps/core/forms/widgets/inputs/text_area/text_area.shtml +1 -0
- data/apps/drb_server/_init.rb +8 -0
- data/apps/drb_server/lib/model_server.rb +41 -0
- data/apps/drb_server/script/start_server.rb +19 -0
- data/apps/hippo/_init.rb +10 -0
- data/apps/hippo/models/mixins/hippo_struct.rb +210 -0
- data/apps/hippo/models/security_group.rb +21 -0
- data/apps/hippo/models/security_user.rb +29 -0
- data/apps/messenger/_init.rb +24 -0
- data/apps/messenger/config/options.rb +15 -0
- data/apps/messenger/config/worker.rb +3 -0
- data/apps/messenger/controllers/messenger_controller.rb +80 -0
- data/apps/messenger/controllers/mixins/messenger_controller_mixin.rb +54 -0
- data/apps/messenger/lib/backends/email/smtp.rb +0 -0
- data/apps/messenger/messenger.rb +94 -0
- data/apps/messenger/models/email.rb +22 -0
- data/apps/messenger/models/message.rb +44 -0
- data/apps/messenger/po/it/spider_messenger.po +77 -0
- data/apps/messenger/po/spider_messenger.pot +77 -0
- data/apps/messenger/views/index.shtml +13 -0
- data/apps/messenger/views/list.shtml +5 -0
- data/apps/messenger/views/messenger.layout.shtml +4 -0
- data/apps/messenger/views/queue.shtml +8 -0
- data/apps/messenger/views/tags/sent_messages.shtml +1 -0
- data/apps/soap/_init.rb +16 -0
- data/apps/soap/controllers/soap_controller.rb +334 -0
- data/apps/soap/doc/examples/example.rb +28 -0
- data/apps/soap/lib/soap.rb +217 -0
- data/apps/sso/_init.rb +16 -0
- data/apps/sso/config/options.rb +13 -0
- data/apps/sso/controllers/mixins/saml2_mixin.rb +149 -0
- data/apps/sso/lib/saml2/backend.rb +16 -0
- data/apps/sso/lib/saml2/lasso_backend.rb +88 -0
- data/apps/sso/lib/saml2.rb +112 -0
- data/apps/sso/views/saml2_post.shtml +19 -0
- data/apps/webdav/_init.rb +15 -0
- data/apps/webdav/controllers/webdav_controller.rb +862 -0
- data/apps/webdav/lib/locking.rb +193 -0
- data/apps/webdav/lib/vfs/abstract.rb +78 -0
- data/apps/webdav/lib/vfs/local.rb +126 -0
- data/apps/webdav/lib/vfs/mapped.rb +235 -0
- data/apps/webdav/lib/vfs/properties.rb +41 -0
- data/apps/worker/_init.rb +13 -0
- data/apps/worker/cmd.rb +65 -0
- data/apps/worker/config/options.rb +9 -0
- data/apps/worker/lib/runner.rb +43 -0
- data/apps/worker/lib/task.rb +9 -0
- data/apps/worker/models/job.rb +20 -0
- data/apps/worker/worker.rb +168 -0
- data/bin/spider +9 -0
- data/blueprints/app/_init.rb +10 -0
- data/blueprints/app/controllers/__APP___controller.rb +14 -0
- data/blueprints/app/views/__APP__.layout.shtml +8 -0
- data/blueprints/app/views/index.shtml +3 -0
- data/blueprints/install/config/config.yml +14 -0
- data/blueprints/install/init.rb +3 -0
- data/data/locale/it/LC_MESSAGES/spider.mo +0 -0
- data/data/locale/it/LC_MESSAGES/spider_auth.mo +0 -0
- data/data/locale/it/LC_MESSAGES/spider_components.mo +0 -0
- data/data/locale/it/LC_MESSAGES/spider_forms.mo +0 -0
- data/data/locale/it/LC_MESSAGES/spider_messenger.mo +0 -0
- data/lib/spiderfw/app.rb +186 -0
- data/lib/spiderfw/autoload.rb +12 -0
- data/lib/spiderfw/cache/template_cache.rb +136 -0
- data/lib/spiderfw/cmd/cmd.rb +72 -0
- data/lib/spiderfw/cmd/commands/cert.rb +427 -0
- data/lib/spiderfw/cmd/commands/console.rb +27 -0
- data/lib/spiderfw/cmd/commands/init.rb +52 -0
- data/lib/spiderfw/cmd/commands/model.rb +131 -0
- data/lib/spiderfw/cmd/commands/setup.rb +54 -0
- data/lib/spiderfw/cmd/commands/test.rb +61 -0
- data/lib/spiderfw/cmd/commands/webserver.rb +93 -0
- data/lib/spiderfw/config/configurable.rb +38 -0
- data/lib/spiderfw/config/configuration.rb +281 -0
- data/lib/spiderfw/config/options/spider.rb +122 -0
- data/lib/spiderfw/controller/app_controller.rb +14 -0
- data/lib/spiderfw/controller/controller.rb +321 -0
- data/lib/spiderfw/controller/controller_exceptions.rb +27 -0
- data/lib/spiderfw/controller/controller_io.rb +26 -0
- data/lib/spiderfw/controller/controller_mixin.rb +12 -0
- data/lib/spiderfw/controller/cookie.rb +20 -0
- data/lib/spiderfw/controller/cookies.rb +17 -0
- data/lib/spiderfw/controller/dispatcher.rb +269 -0
- data/lib/spiderfw/controller/first_responder.rb +59 -0
- data/lib/spiderfw/controller/formats/html.rb +90 -0
- data/lib/spiderfw/controller/helpers/widget_helper.rb +73 -0
- data/lib/spiderfw/controller/home_controller.rb +26 -0
- data/lib/spiderfw/controller/http_controller.rb +112 -0
- data/lib/spiderfw/controller/mixins/http_mixin.rb +228 -0
- data/lib/spiderfw/controller/mixins/static_content.rb +90 -0
- data/lib/spiderfw/controller/mixins/visual.rb +489 -0
- data/lib/spiderfw/controller/page_controller.rb +39 -0
- data/lib/spiderfw/controller/request.rb +48 -0
- data/lib/spiderfw/controller/response.rb +50 -0
- data/lib/spiderfw/controller/router.rb +9 -0
- data/lib/spiderfw/controller/scene.rb +27 -0
- data/lib/spiderfw/controller/session/file_session.rb +83 -0
- data/lib/spiderfw/controller/session/flash_hash.rb +56 -0
- data/lib/spiderfw/controller/session/memory_session.rb +62 -0
- data/lib/spiderfw/controller/session/transient_hash.rb +18 -0
- data/lib/spiderfw/controller/session.rb +106 -0
- data/lib/spiderfw/controller/spider_controller.rb +20 -0
- data/lib/spiderfw/create.rb +64 -0
- data/lib/spiderfw/env.rb +17 -0
- data/lib/spiderfw/exceptions.rb +2 -0
- data/lib/spiderfw/home.rb +26 -0
- data/lib/spiderfw/http/adapters/cgi.rb +62 -0
- data/lib/spiderfw/http/adapters/cgi_io.rb +27 -0
- data/lib/spiderfw/http/adapters/fcgi.rb +62 -0
- data/lib/spiderfw/http/adapters/mongrel.rb +207 -0
- data/lib/spiderfw/http/adapters/rack.rb +152 -0
- data/lib/spiderfw/http/adapters/thin.rb +38 -0
- data/lib/spiderfw/http/adapters/webrick.rb +176 -0
- data/lib/spiderfw/http/http.rb +297 -0
- data/lib/spiderfw/http/server.rb +40 -0
- data/lib/spiderfw/i18n/cldr.rb +114 -0
- data/lib/spiderfw/i18n/gettext.rb +8 -0
- data/lib/spiderfw/i18n/i18n.rb +120 -0
- data/lib/spiderfw/i18n/provider.rb +12 -0
- data/lib/spiderfw/i18n/rails.rb +89 -0
- data/lib/spiderfw/i18n/shtml_parser.rb +41 -0
- data/lib/spiderfw/model/active_record.rb +335 -0
- data/lib/spiderfw/model/base_model.rb +2068 -0
- data/lib/spiderfw/model/condition.rb +416 -0
- data/lib/spiderfw/model/data_type.rb +75 -0
- data/lib/spiderfw/model/datatypes/binary.rb +10 -0
- data/lib/spiderfw/model/datatypes/bool.rb +10 -0
- data/lib/spiderfw/model/datatypes/decimal.rb +22 -0
- data/lib/spiderfw/model/datatypes/email.rb +13 -0
- data/lib/spiderfw/model/datatypes/password.rb +63 -0
- data/lib/spiderfw/model/datatypes/serialized_object.rb +32 -0
- data/lib/spiderfw/model/datatypes/text.rb +10 -0
- data/lib/spiderfw/model/datatypes/uuid.rb +29 -0
- data/lib/spiderfw/model/datatypes.rb +19 -0
- data/lib/spiderfw/model/element.rb +250 -0
- data/lib/spiderfw/model/extended_models/managed.rb +43 -0
- data/lib/spiderfw/model/identity_mapper.rb +89 -0
- data/lib/spiderfw/model/inline_model.rb +37 -0
- data/lib/spiderfw/model/mappers/db_mapper.rb +1126 -0
- data/lib/spiderfw/model/mappers/hash_mapper.rb +114 -0
- data/lib/spiderfw/model/mappers/mapper.rb +926 -0
- data/lib/spiderfw/model/mappers/mappers.rb +7 -0
- data/lib/spiderfw/model/mappers/proxy_mapper.rb +25 -0
- data/lib/spiderfw/model/mappers/vfs/flat_file.rb +31 -0
- data/lib/spiderfw/model/mixins/converted.rb +110 -0
- data/lib/spiderfw/model/mixins/list.rb +135 -0
- data/lib/spiderfw/model/mixins/mixins.rb +7 -0
- data/lib/spiderfw/model/mixins/state_machine.rb +81 -0
- data/lib/spiderfw/model/mixins/synchronized.rb +88 -0
- data/lib/spiderfw/model/mixins/tree.rb +296 -0
- data/lib/spiderfw/model/mixins/versioned.rb +147 -0
- data/lib/spiderfw/model/model.rb +226 -0
- data/lib/spiderfw/model/model_hash.rb +50 -0
- data/lib/spiderfw/model/proxy_model.rb +37 -0
- data/lib/spiderfw/model/query.rb +147 -0
- data/lib/spiderfw/model/query_funcs.rb +99 -0
- data/lib/spiderfw/model/query_set.rb +700 -0
- data/lib/spiderfw/model/request.rb +80 -0
- data/lib/spiderfw/model/storage/base_storage.rb +110 -0
- data/lib/spiderfw/model/storage/db/adapters/mssql.rb +129 -0
- data/lib/spiderfw/model/storage/db/adapters/mysql.rb +436 -0
- data/lib/spiderfw/model/storage/db/adapters/oci8.rb +533 -0
- data/lib/spiderfw/model/storage/db/adapters/sqlite.rb +163 -0
- data/lib/spiderfw/model/storage/db/connectors/odbc.rb +213 -0
- data/lib/spiderfw/model/storage/db/db.rb +13 -0
- data/lib/spiderfw/model/storage/db/db_connection_pool.rb +126 -0
- data/lib/spiderfw/model/storage/db/db_connector.rb +9 -0
- data/lib/spiderfw/model/storage/db/db_schema.rb +233 -0
- data/lib/spiderfw/model/storage/db/db_storage.rb +872 -0
- data/lib/spiderfw/model/storage/db/dialects/no_total_rows.rb +18 -0
- data/lib/spiderfw/model/storage/db/reflector.rb +36 -0
- data/lib/spiderfw/model/storage/null_storage.rb +18 -0
- data/lib/spiderfw/model/storage/schema.rb +19 -0
- data/lib/spiderfw/model/storage.rb +72 -0
- data/lib/spiderfw/model/sync.rb +94 -0
- data/lib/spiderfw/model/type.rb +13 -0
- data/lib/spiderfw/model/unit_of_work.rb +75 -0
- data/lib/spiderfw/requires.rb +21 -0
- data/lib/spiderfw/resource.rb +18 -0
- data/lib/spiderfw/setup/setup_task.rb +44 -0
- data/lib/spiderfw/tag/tag.rb +28 -0
- data/lib/spiderfw/templates/blocks/attr_if.rb +32 -0
- data/lib/spiderfw/templates/blocks/comment.rb +38 -0
- data/lib/spiderfw/templates/blocks/debugger.rb +16 -0
- data/lib/spiderfw/templates/blocks/each.rb +51 -0
- data/lib/spiderfw/templates/blocks/html.rb +70 -0
- data/lib/spiderfw/templates/blocks/if.rb +35 -0
- data/lib/spiderfw/templates/blocks/pass.rb +16 -0
- data/lib/spiderfw/templates/blocks/render.rb +23 -0
- data/lib/spiderfw/templates/blocks/run.rb +30 -0
- data/lib/spiderfw/templates/blocks/tag.rb +21 -0
- data/lib/spiderfw/templates/blocks/tag_if.rb +29 -0
- data/lib/spiderfw/templates/blocks/text.rb +43 -0
- data/lib/spiderfw/templates/blocks/widget.rb +58 -0
- data/lib/spiderfw/templates/blocks/yield.rb +18 -0
- data/lib/spiderfw/templates/layout.rb +44 -0
- data/lib/spiderfw/templates/resources/less.rb +14 -0
- data/lib/spiderfw/templates/template.rb +625 -0
- data/lib/spiderfw/templates/template_blocks.rb +185 -0
- data/lib/spiderfw/utils/annotations.rb +201 -0
- data/lib/spiderfw/utils/fork.rb +75 -0
- data/lib/spiderfw/utils/hash_comparison.rb +8 -0
- data/lib/spiderfw/utils/inflector.rb +42 -0
- data/lib/spiderfw/utils/logger.rb +92 -0
- data/lib/spiderfw/utils/monkey/class.rb +59 -0
- data/lib/spiderfw/utils/monkey/date_time.rb +34 -0
- data/lib/spiderfw/utils/monkey/debugger.rb +25 -0
- data/lib/spiderfw/utils/monkey/exception.rb +23 -0
- data/lib/spiderfw/utils/monkey/kernel.rb +12 -0
- data/lib/spiderfw/utils/monkey/module.rb +12 -0
- data/lib/spiderfw/utils/monkey/symbol.rb +7 -0
- data/lib/spiderfw/utils/monkey/time.rb +17 -0
- data/lib/spiderfw/utils/multi_level_hash.rb +33 -0
- data/lib/spiderfw/utils/periodic_runner.rb +50 -0
- data/lib/spiderfw/utils/rails.rb +78 -0
- data/lib/spiderfw/utils/rails_app.rb +53 -0
- data/lib/spiderfw/utils/sanitizer.rb +178 -0
- data/lib/spiderfw/utils/setup_task.rb +35 -0
- data/lib/spiderfw/utils/shared_store/file_shared_store.rb +73 -0
- data/lib/spiderfw/utils/shared_store/memory_shared_store.rb +46 -0
- data/lib/spiderfw/utils/shared_store.rb +47 -0
- data/lib/spiderfw/utils/test_case.rb +24 -0
- data/lib/spiderfw/utils/thread_out.rb +24 -0
- data/lib/spiderfw/version.rb +3 -0
- data/lib/spiderfw/widget/rest_model.rb +20 -0
- data/lib/spiderfw/widget/widget.rb +671 -0
- data/lib/spiderfw/widget/widget_attributes.rb +54 -0
- data/lib/spiderfw/widget/widget_plugin.rb +37 -0
- data/lib/spiderfw.rb +509 -0
- data/spider.gemspec +43 -0
- data/views/errors/404.shtml +6 -0
- data/views/errors/error.layout.shtml +70 -0
- data/views/errors/error_generic.shtml +6 -0
- metadata +800 -0
@@ -0,0 +1,297 @@
|
|
1
|
+
module Spider
|
2
|
+
module HTTP
|
3
|
+
autoload :Server, 'spiderfw/http/server'
|
4
|
+
#autoload :Thin, 'spiderfw/http/servers/thin'
|
5
|
+
autoload :WEBrick, 'spiderfw/http/adapters/webrick'
|
6
|
+
autoload :Mongrel, 'spiderfw/http/adapters/mongrel'
|
7
|
+
autoload :Thin, 'spiderfw/http/adapters/thin'
|
8
|
+
#autoload :Rack, 'spiderfw/http/adapters/rack/rack'
|
9
|
+
|
10
|
+
@multipart_regexp = /\Amultipart\/form-data.*boundary=\"?([^\";,]+)/n.freeze
|
11
|
+
|
12
|
+
module StatusCodes
|
13
|
+
|
14
|
+
CONTINUE = 100
|
15
|
+
SWITCHING_PROTOCOLS = 101
|
16
|
+
WEBDAV_PROCESSING = 102
|
17
|
+
OK = 200
|
18
|
+
CREATED = 201
|
19
|
+
ACCEPTED = 202
|
20
|
+
NON_AUTHORITATIVE = 203
|
21
|
+
NO_CONTENT = 204
|
22
|
+
RESET_CONTENT = 205
|
23
|
+
PARTIAL_CONTENT = 206
|
24
|
+
WEBDAV_MULTI_STATUS = 207
|
25
|
+
MULTIPLE_CHOICES = 300
|
26
|
+
MOVED_PERMANENTLY = 301
|
27
|
+
FOUND = 302
|
28
|
+
SEE_OTHER = 303
|
29
|
+
NOT_MODIFIED = 304
|
30
|
+
USE_PROXY = 305
|
31
|
+
TEMPORARY_REDIRECT = 307
|
32
|
+
BAD_REQUEST = 400
|
33
|
+
UNAUTHORIZED = 401
|
34
|
+
FORBIDDEN = 403
|
35
|
+
NOT_FOUND = 404
|
36
|
+
METHOD_NOT_ALLOWED = 405
|
37
|
+
NOT_ACCEPTABLE = 406
|
38
|
+
PROXY_AUTHENTICATION_REQUIRED = 407
|
39
|
+
REQUEST_TIMEOUT = 408
|
40
|
+
CONFLICT = 409
|
41
|
+
GONE = 410
|
42
|
+
LENGTH_REQUIRED = 411
|
43
|
+
PRECONDITION_FAILED = 412
|
44
|
+
REQUEST_ENTITY_TOO_LARGE = 413
|
45
|
+
REQUEST_URI_TOO_LONG = 414
|
46
|
+
UNSUPPORTED_MEDIA_TYPE = 415
|
47
|
+
REQUESTED_RANGE_NOT_SATISFIABLE = 416
|
48
|
+
EXPECTATION_FAILED = 417
|
49
|
+
WEBDAV_UNPROCESSABLE_ENTITY = 422
|
50
|
+
WEBDAV_LOCKED = 423
|
51
|
+
WEBDAV_FAILED_DEPENDENCY = 424
|
52
|
+
UPGRADE_REQUIRED = 426
|
53
|
+
INTERNAL_SERVER_ERROR = 500
|
54
|
+
NOT_IMPLEMENTED = 501
|
55
|
+
BAD_GATEWAY = 502
|
56
|
+
SERVICE_UNAVAILABLE = 503
|
57
|
+
GATEWAY_TIMEOUT = 504
|
58
|
+
HTTP_VERSION_NOT_SUPPORTED = 505
|
59
|
+
VARIANT_ALSO_NEGOTIATES = 506
|
60
|
+
WEBDAV_INSUFFICIENT_STORAGE = 507
|
61
|
+
BANDWIDTH_LIMIT_EXCEEDED = 509
|
62
|
+
NOT_EXTENDED = 510
|
63
|
+
|
64
|
+
@status_messages = {
|
65
|
+
CONTINUE => 'Continue',
|
66
|
+
SWITCHING_PROTOCOLS => 'Switching Protocols',
|
67
|
+
WEBDAV_PROCESSING => 'Processing',
|
68
|
+
OK => 'OK',
|
69
|
+
CREATED => 'Created',
|
70
|
+
ACCEPTED => 'Accepted',
|
71
|
+
NON_AUTHORITATIVE => 'Non Authoritative',
|
72
|
+
NO_CONTENT => 'No Content',
|
73
|
+
RESET_CONTENT => 'Reset Content',
|
74
|
+
PARTIAL_CONTENT => 'Partial Content',
|
75
|
+
WEBDAV_MULTI_STATUS => 'Multi-Status',
|
76
|
+
MULTIPLE_CHOICES => 'Multiple Choices',
|
77
|
+
MOVED_PERMANENTLY => 'Moved Permanently',
|
78
|
+
FOUND => 'Found',
|
79
|
+
SEE_OTHER => 'See Other',
|
80
|
+
NOT_MODIFIED => 'Not Modified',
|
81
|
+
USE_PROXY => 'Use Proxy',
|
82
|
+
TEMPORARY_REDIRECT => 'Temporary Redirect',
|
83
|
+
BAD_REQUEST => 'Bad Request',
|
84
|
+
UNAUTHORIZED => 'Unauthorized',
|
85
|
+
FORBIDDEN => 'Forbidden',
|
86
|
+
NOT_FOUND => 'Not Found',
|
87
|
+
METHOD_NOT_ALLOWED => 'Method Not Allowed',
|
88
|
+
NOT_ACCEPTABLE => 'Not Acceptable',
|
89
|
+
PROXY_AUTHENTICATION_REQUIRED => 'Proxy Authentication Required',
|
90
|
+
REQUEST_TIMEOUT => 'Request Timeout',
|
91
|
+
CONFLICT => 'Conflict',
|
92
|
+
GONE => 'Gone',
|
93
|
+
LENGTH_REQUIRED => 'Length Required',
|
94
|
+
PRECONDITION_FAILED => 'Precondition Failed',
|
95
|
+
REQUEST_ENTITY_TOO_LARGE => 'Request Entity Too Large',
|
96
|
+
REQUEST_URI_TOO_LONG => 'Request-URI Too Long',
|
97
|
+
UNSUPPORTED_MEDIA_TYPE => 'Unsupported Media Type',
|
98
|
+
REQUESTED_RANGE_NOT_SATISFIABLE => 'Requested Range Not Satisfiable',
|
99
|
+
EXPECTATION_FAILED => 'Expectation Failed',
|
100
|
+
WEBDAV_UNPROCESSABLE_ENTITY => 'Unprocessable Entity',
|
101
|
+
WEBDAV_LOCKED => 'Locked',
|
102
|
+
WEBDAV_FAILED_DEPENDENCY => 'Failed Dependency',
|
103
|
+
UPGRADE_REQUIRED => 'Upgrade Required',
|
104
|
+
INTERNAL_SERVER_ERROR => 'Internal Server Error',
|
105
|
+
NOT_IMPLEMENTED => 'Not Implemented',
|
106
|
+
BAD_GATEWAY => 'Bad Gateway',
|
107
|
+
SERVICE_UNAVAILABLE => 'Service Unavailable',
|
108
|
+
GATEWAY_TIMEOUT => 'Gateway Timeout',
|
109
|
+
HTTP_VERSION_NOT_SUPPORTED => 'HTTP Version Not Supported',
|
110
|
+
VARIANT_ALSO_NEGOTIATES => 'Variant Also Negotiates',
|
111
|
+
WEBDAV_INSUFFICIENT_STORAGE => 'Insufficient Storage',
|
112
|
+
BANDWIDTH_LIMIT_EXCEEDED => 'Bandwidth Limit Exceeded',
|
113
|
+
NOT_EXTENDED => 'Not Extended'
|
114
|
+
}
|
115
|
+
|
116
|
+
def self.status_messages
|
117
|
+
@status_messages
|
118
|
+
end
|
119
|
+
|
120
|
+
end
|
121
|
+
|
122
|
+
include StatusCodes
|
123
|
+
|
124
|
+
def self.status_messages
|
125
|
+
StatusCodes.status_messages
|
126
|
+
end
|
127
|
+
|
128
|
+
# ==== Parameters
|
129
|
+
# s<String>:: String to URL escape.
|
130
|
+
#
|
131
|
+
# ==== returns
|
132
|
+
# String:: The escaped string.
|
133
|
+
#--
|
134
|
+
# from Merb
|
135
|
+
def self.urlencode(s)
|
136
|
+
s.to_s.gsub(/([^ a-zA-Z0-9_.-]+)/n) {
|
137
|
+
'%'+$1.unpack('H2'*$1.size).join('%').upcase
|
138
|
+
}.tr(' ', '+')
|
139
|
+
end
|
140
|
+
|
141
|
+
# ==== Parameter
|
142
|
+
# s<String>:: String to URL unescape.
|
143
|
+
#
|
144
|
+
# ==== returns
|
145
|
+
# String:: The unescaped string.
|
146
|
+
#--
|
147
|
+
# from Merb
|
148
|
+
def self.urldecode(s)
|
149
|
+
s.tr('+', ' ').gsub(/((?:%[0-9a-fA-F]{2})+)/n){
|
150
|
+
[$1.delete('%')].pack('H*')
|
151
|
+
}
|
152
|
+
end
|
153
|
+
|
154
|
+
# ==== Parameters
|
155
|
+
# qs<String>:: The query string.
|
156
|
+
# d<String>:: The query string divider. Defaults to "&".
|
157
|
+
#
|
158
|
+
# ==== Returns
|
159
|
+
# Mash:: The parsed query string.
|
160
|
+
#
|
161
|
+
# ==== Examples
|
162
|
+
# query_parse("bar=nik&post[body]=heya")
|
163
|
+
# # => { :bar => "nik", :post => { :body => "heya" } }
|
164
|
+
#--
|
165
|
+
# from Merb
|
166
|
+
def self.parse_query(qs, d = '&;')
|
167
|
+
return (qs||'').split(/[#{d}] */n).inject({}) { |h,p|
|
168
|
+
key, value = urldecode(p).split('=',2)
|
169
|
+
normalize_params(h, key, value)
|
170
|
+
}
|
171
|
+
end
|
172
|
+
|
173
|
+
|
174
|
+
# Converts a query string snippet to a hash and adds it to existing
|
175
|
+
# parameters.
|
176
|
+
#
|
177
|
+
# ==== Parameters
|
178
|
+
# parms<Hash>:: Parameters to add the normalized parameters to.
|
179
|
+
# name<String>:: The key of the parameter to normalize.
|
180
|
+
# val<String>:: The value of the parameter.
|
181
|
+
#
|
182
|
+
# ==== Returns
|
183
|
+
# Hash:: Normalized parameters
|
184
|
+
#--
|
185
|
+
# from Merb
|
186
|
+
def self.normalize_params(parms, name, val=nil)
|
187
|
+
name =~ %r([\[\]]*([^\[\]]+)\]*)
|
188
|
+
key = $1 || ''
|
189
|
+
after = $' || ''
|
190
|
+
|
191
|
+
if after == ""
|
192
|
+
parms[key] = val
|
193
|
+
elsif after == "[]"
|
194
|
+
(parms[key] ||= []) << val
|
195
|
+
elsif after =~ %r(^\[\])
|
196
|
+
parms[key] ||= []
|
197
|
+
parms[key] << normalize_params({}, after, val)
|
198
|
+
else
|
199
|
+
parms[key] ||= {}
|
200
|
+
parms[key] = normalize_params(parms[key], after, val)
|
201
|
+
end
|
202
|
+
parms
|
203
|
+
end
|
204
|
+
|
205
|
+
# ==== Parameters
|
206
|
+
# request<IO>:: The raw request.
|
207
|
+
# boundary<String>:: The boundary string.
|
208
|
+
# content_length<Fixnum>:: The length of the content.
|
209
|
+
#
|
210
|
+
# ==== Raises
|
211
|
+
# ControllerExceptions::MultiPartParseError:: Failed to parse request.
|
212
|
+
#
|
213
|
+
# ==== Returns
|
214
|
+
# Hash:: The parsed request.
|
215
|
+
#--
|
216
|
+
# from Merb
|
217
|
+
# da utilizzare
|
218
|
+
def self.parse_multipart(request, boundary, content_length)
|
219
|
+
boundary = "--#{boundary}"
|
220
|
+
paramhsh = {}
|
221
|
+
buf = ""
|
222
|
+
input = request
|
223
|
+
input.binmode if defined? input.binmode
|
224
|
+
boundary_size = boundary.size + EOL.size
|
225
|
+
bufsize = 16384
|
226
|
+
content_length -= boundary_size
|
227
|
+
status = input.read(boundary_size)
|
228
|
+
raise ControllerExceptions::MultiPartParseError, "bad content body:\n'#{status}' should == '#{boundary + EOL}'" unless status == boundary + EOL
|
229
|
+
rx = /(?:#{EOL})?#{Regexp.quote(boundary,'n')}(#{EOL}|--)/
|
230
|
+
loop {
|
231
|
+
head = nil
|
232
|
+
body = ''
|
233
|
+
filename = content_type = name = nil
|
234
|
+
read_size = 0
|
235
|
+
until head && buf =~ rx
|
236
|
+
i = buf.index("\r\n\r\n")
|
237
|
+
if( i == nil && read_size == 0 && content_length == 0 )
|
238
|
+
content_length = -1
|
239
|
+
break
|
240
|
+
end
|
241
|
+
if !head && i
|
242
|
+
head = buf.slice!(0, i+2) # First \r\n
|
243
|
+
buf.slice!(0, 2) # Second \r\n
|
244
|
+
filename = head[FILENAME_REGEX, 1]
|
245
|
+
content_type = head[CONTENT_TYPE_REGEX, 1]
|
246
|
+
name = head[NAME_REGEX, 1]
|
247
|
+
|
248
|
+
if filename && !filename.empty?
|
249
|
+
body = Tempfile.new(:Merb)
|
250
|
+
body.binmode if defined? body.binmode
|
251
|
+
end
|
252
|
+
next
|
253
|
+
end
|
254
|
+
|
255
|
+
# Save the read body part.
|
256
|
+
if head && (boundary_size+4 < buf.size)
|
257
|
+
body << buf.slice!(0, buf.size - (boundary_size+4))
|
258
|
+
end
|
259
|
+
|
260
|
+
read_size = bufsize < content_length ? bufsize : content_length
|
261
|
+
if( read_size > 0 )
|
262
|
+
c = input.read(read_size)
|
263
|
+
raise ControllerExceptions::MultiPartParseError, "bad content body" if c.nil? || c.empty?
|
264
|
+
buf << c
|
265
|
+
content_length -= c.size
|
266
|
+
end
|
267
|
+
end
|
268
|
+
|
269
|
+
# Save the rest.
|
270
|
+
if i = buf.index(rx)
|
271
|
+
body << buf.slice!(0, i)
|
272
|
+
buf.slice!(0, boundary_size+2)
|
273
|
+
|
274
|
+
content_length = -1 if $1 == "--"
|
275
|
+
end
|
276
|
+
|
277
|
+
if filename && !filename.empty?
|
278
|
+
body.rewind
|
279
|
+
data = {
|
280
|
+
:filename => File.basename(filename),
|
281
|
+
:content_type => content_type,
|
282
|
+
:tempfile => body,
|
283
|
+
:size => File.size(body.path)
|
284
|
+
}
|
285
|
+
else
|
286
|
+
data = body
|
287
|
+
end
|
288
|
+
paramhsh = normalize_params(paramhsh,name,data)
|
289
|
+
break if buf.empty? || content_length == -1
|
290
|
+
}
|
291
|
+
paramhsh
|
292
|
+
end
|
293
|
+
|
294
|
+
|
295
|
+
end
|
296
|
+
|
297
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'spiderfw/controller/http_controller'
|
2
|
+
|
3
|
+
module Spider; module HTTP
|
4
|
+
|
5
|
+
class Server
|
6
|
+
|
7
|
+
@supports = {
|
8
|
+
:chunked_request => false,
|
9
|
+
:ssl => false
|
10
|
+
}
|
11
|
+
|
12
|
+
def self.supports?(capability)
|
13
|
+
@supports[capability]
|
14
|
+
end
|
15
|
+
|
16
|
+
|
17
|
+
def options(opts={})
|
18
|
+
defaults = {
|
19
|
+
:host => '0.0.0.0',
|
20
|
+
:port => 8080
|
21
|
+
}
|
22
|
+
return defaults.merge(opts)
|
23
|
+
end
|
24
|
+
|
25
|
+
def start(opts={})
|
26
|
+
@options = opts
|
27
|
+
start_server(opts)
|
28
|
+
end
|
29
|
+
|
30
|
+
def shutdown
|
31
|
+
Spider.logger.info("Webserver shutdown");
|
32
|
+
shutdown_server
|
33
|
+
end
|
34
|
+
|
35
|
+
def request_received
|
36
|
+
end
|
37
|
+
|
38
|
+
end
|
39
|
+
|
40
|
+
end; end
|
@@ -0,0 +1,114 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
require 'cldr'
|
3
|
+
require 'locale'
|
4
|
+
|
5
|
+
module Spider; module I18n
|
6
|
+
|
7
|
+
class CLDR < Provider
|
8
|
+
|
9
|
+
def initialize(locale)
|
10
|
+
@locale = locale
|
11
|
+
@cldr = ::CLDR::Object.new(:locale => locale.to_cldr)
|
12
|
+
|
13
|
+
end
|
14
|
+
|
15
|
+
def localize_date_time(locale, object, format = :default, options={})
|
16
|
+
options[:calendar] ||= 'gregorian'
|
17
|
+
|
18
|
+
if (format == :default)
|
19
|
+
format = @cldr.calendar.dateformat_defaults[options[:calendar]]
|
20
|
+
end
|
21
|
+
|
22
|
+
time_format = nil
|
23
|
+
date_format = nil
|
24
|
+
format_string = nil
|
25
|
+
if (object.respond_to?(:sec) && !options[:no_time])
|
26
|
+
time_format = @cldr.calendar.timeformats[options[:calendar].to_sym][format.to_s].dup
|
27
|
+
end
|
28
|
+
if (object.is_a?(Date))
|
29
|
+
date_format = @cldr.calendar.dateformats[options[:calendar].to_sym][format.to_s].dup
|
30
|
+
end
|
31
|
+
if (date_format && time_format)
|
32
|
+
dt_f = @cldr.calendar.datetimeformats[options[:calendar].to_s]
|
33
|
+
format_string = dt_f.sub('{1}', date_format).sub('{0}', time_format)
|
34
|
+
else
|
35
|
+
format_string = date_format ? date_format : time_format
|
36
|
+
end
|
37
|
+
|
38
|
+
# FIXME: handle more efficiently
|
39
|
+
d = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat']
|
40
|
+
obj_d = d[object.wday]
|
41
|
+
days = @cldr.calendar.days[options[:calendar].to_sym]
|
42
|
+
months = @cldr.calendar.months[options[:calendar].to_sym]
|
43
|
+
replacements = [
|
44
|
+
[/y{1,4}/, '%Y'], # year don't use two digits year, they cause confusion [/y{1,2}/, '%y']
|
45
|
+
[/M{5}/, months[:narrow][object.month.to_s]], [/M{4}/, months[:wide][object.month.to_s]], #month
|
46
|
+
[/M{3}/, months[:abbreviated][object.month.to_s]], [/M{1,2}/, '%m'],
|
47
|
+
[/L{5}/, months[:narrow][object.month.to_s]], [/L{4}/, months[:wide][object.month.to_s]], #month
|
48
|
+
[/L{3}/, months[:abbreviated][object.month.to_s]], [/L{1,2}/, '%m'],
|
49
|
+
[/E{5}/, days[:narrow][obj_d]], [/E{4}/, days[:wide][obj_d]], [/E{1,3}/, days[:abbreviated][obj_d]], #day of the week
|
50
|
+
[/e{1,5}/, '%w'], #day of the week (numeric)
|
51
|
+
[/d{1,2}/, '%d'], # day of the month
|
52
|
+
[/h{1,2}/, '%I'], [/H{1,2}/, '%H'], [/a/, '%p'], #hour
|
53
|
+
[/m{1,2}/, '%M'], [/s{1,2}/, '%S'], # seconds
|
54
|
+
[/z{1,4}/, '%Z'], [/Z{1,4}/, '%Z'], [/V{1,4}/, '%Z'] # time zone
|
55
|
+
]
|
56
|
+
format_string = mgsub(format_string, replacements)
|
57
|
+
|
58
|
+
if (time_format)
|
59
|
+
am = @cldr.calendar.am[options[:calendar].to_s]
|
60
|
+
pm = @cldr.calendar.pm[options[:calendar].to_s]
|
61
|
+
format_string.gsub!(/%p/, object.hour < 12 ? am : pm) if object.respond_to? :hour
|
62
|
+
end
|
63
|
+
object.strftime(format_string)
|
64
|
+
end
|
65
|
+
|
66
|
+
# FIXME: add extended format handling like in localize
|
67
|
+
def parse_dt(locale, string, format = :default, options = {})
|
68
|
+
options[:calendar] ||= 'gregorian'
|
69
|
+
|
70
|
+
if (format == :default)
|
71
|
+
format = @cldr.calendar.dateformat_defaults[options[:calendar]]
|
72
|
+
end
|
73
|
+
time_format = @cldr.calendar.timeformats[options[:calendar].to_sym][format.to_s].dup
|
74
|
+
date_format = @cldr.calendar.dateformats[options[:calendar].to_sym][format.to_s].dup
|
75
|
+
if (options[:return] == :datetime)
|
76
|
+
dt_f = @cldr.calendar.datetimeformats[options[:calendar].to_s]
|
77
|
+
format_string = dt_f.sub('{1}', date_format).sub('{0}', time_format)
|
78
|
+
klass = DateTime
|
79
|
+
elsif (options[:return] == :date)
|
80
|
+
format_string = date_format
|
81
|
+
klass = Date
|
82
|
+
end
|
83
|
+
replacements = [
|
84
|
+
[/y{1,4}/, '%Y'], # year don't use two digits year [/y{1,2}/, '%y'],
|
85
|
+
[/M{1,5}/, '%m'],
|
86
|
+
[/L{1,5}/, '%m'],
|
87
|
+
[/E{1,5}/, ''], #day of the week
|
88
|
+
[/e{1,5}/, '%w'], #day of the week (numeric)
|
89
|
+
[/d{1,2}/, '%d'], # day of the month
|
90
|
+
[/h{1,2}/, '%I'], [/H{1,2}/, '%H'], [/a/, '%p'], #hour
|
91
|
+
[/m{1,2}/, '%M'], [/s{1,2}/, '%S'], # seconds
|
92
|
+
[/z{1,4}/, '%Z'], [/Z{1,4}/, '%Z'], [/V{1,4}/, '%Z'] # time zone
|
93
|
+
]
|
94
|
+
format_string = mgsub(format_string, replacements)
|
95
|
+
klass.strptime(string, format_string)
|
96
|
+
end
|
97
|
+
|
98
|
+
|
99
|
+
def prepare_format_string(obj, string)
|
100
|
+
|
101
|
+
end
|
102
|
+
|
103
|
+
|
104
|
+
def mgsub(string, key_value_pairs)
|
105
|
+
regexp_fragments = key_value_pairs.collect { |k,v| k }
|
106
|
+
string.gsub(
|
107
|
+
Regexp.union(*regexp_fragments)) do |match|
|
108
|
+
key_value_pairs.detect{|k,v| k =~ match}[1]
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
113
|
+
|
114
|
+
end; end
|
@@ -0,0 +1,120 @@
|
|
1
|
+
require 'lib/spiderfw/i18n/provider'
|
2
|
+
require 'lib/spiderfw/i18n/rails'
|
3
|
+
begin
|
4
|
+
require 'lib/spiderfw/i18n/cldr'
|
5
|
+
rescue LoadError
|
6
|
+
end
|
7
|
+
|
8
|
+
module Spider
|
9
|
+
|
10
|
+
module I18n
|
11
|
+
DefaultLocale = 'en'
|
12
|
+
|
13
|
+
class << self
|
14
|
+
|
15
|
+
def init
|
16
|
+
@locales = {}
|
17
|
+
end
|
18
|
+
|
19
|
+
def providers
|
20
|
+
[:CLDR, :Rails]
|
21
|
+
end
|
22
|
+
|
23
|
+
def provider(locale)
|
24
|
+
@locales[locale] = load_locale(locale) unless @locales[locale]
|
25
|
+
unless @locales[locale]
|
26
|
+
default = Spider.conf.get('i18n.default_locale')
|
27
|
+
load_locale(default) unless @locales[default]
|
28
|
+
return @locales[default]
|
29
|
+
end
|
30
|
+
return @locales[locale]
|
31
|
+
end
|
32
|
+
|
33
|
+
|
34
|
+
def load_locale(locale)
|
35
|
+
self.providers.each do |p|
|
36
|
+
res = try_provider(p, locale)
|
37
|
+
return res if res
|
38
|
+
end
|
39
|
+
return nil
|
40
|
+
end
|
41
|
+
|
42
|
+
def try_provider(const, locale)
|
43
|
+
begin
|
44
|
+
res = const_get(const).new(locale)
|
45
|
+
rescue => exc
|
46
|
+
return nil
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def localize(*args)
|
51
|
+
localize_date_time(*args)
|
52
|
+
end
|
53
|
+
|
54
|
+
def localize_date_time(locale, object, format = :default, options={})
|
55
|
+
raise ArgumentError, "Object must be a Date, DateTime or Time object. #{object.inspect} given." unless object.respond_to?(:strftime)
|
56
|
+
p = provider(locale)
|
57
|
+
unless p
|
58
|
+
Spider::Logger.error("No provider found for locale #{locale}")
|
59
|
+
return object.to_s
|
60
|
+
end
|
61
|
+
return p.localize_date_time(locale, object, format, options)
|
62
|
+
end
|
63
|
+
|
64
|
+
def parse_dt(locale, string, format = :default, options={})
|
65
|
+
p = provider(locale)
|
66
|
+
unless p
|
67
|
+
Spider::Logger.error("No provider found for locale #{locale}")
|
68
|
+
return Date.parse(string)
|
69
|
+
end
|
70
|
+
return p.parse_dt(locale, string, format, options)
|
71
|
+
end
|
72
|
+
|
73
|
+
def parse_date(locale, string, format = :default, options = {})
|
74
|
+
parse_dt(locale, string, format, options.merge({:return => :date}))
|
75
|
+
end
|
76
|
+
|
77
|
+
def parse_datetime(locale, string, format = :default, options = {})
|
78
|
+
parse_dt(locale, string, format, options.merge({:return => :datetime}))
|
79
|
+
end
|
80
|
+
|
81
|
+
# from Rails
|
82
|
+
def distance_of_time_in_words(from_time, to_time = 0, include_seconds = false)
|
83
|
+
from_time = from_time.to_time if from_time.respond_to?(:to_time)
|
84
|
+
from_time = from_time.to_local_time if from_time.respond_to?(:to_local_time)
|
85
|
+
to_time = to_time.to_time if to_time.respond_to?(:to_time)
|
86
|
+
to_time = to_time.to_local_time if to_time.respond_to?(:to_local_time)
|
87
|
+
distance_in_minutes = (((to_time - from_time).abs)/60).round
|
88
|
+
distance_in_seconds = ((to_time - from_time).abs).round
|
89
|
+
|
90
|
+
case distance_in_minutes
|
91
|
+
when 0..1
|
92
|
+
return (distance_in_minutes == 0) ? _('less than a minute') : _('1 minute') unless include_seconds
|
93
|
+
case distance_in_seconds
|
94
|
+
when 0..4 then _('less than %s seconds') % '5'
|
95
|
+
when 5..9 then _('less than %s seconds') % '10'
|
96
|
+
when 10..19 then _('less than %s seconds') % '20'
|
97
|
+
when 20..39 then _('half a minute')
|
98
|
+
when 40..59 then _('less than a minute')
|
99
|
+
else _('1 minute')
|
100
|
+
end
|
101
|
+
|
102
|
+
when 2..44 then _("%s minutes") % distance_in_minutes
|
103
|
+
when 45..89 then _('about 1 hour')
|
104
|
+
when 90..1439 then _("about %d hours") % (distance_in_minutes.to_f / 60.0).round
|
105
|
+
when 1440..2879 then _('1 day')
|
106
|
+
when 2880..43199 then _("%d days") % (distance_in_minutes / 1440).round
|
107
|
+
when 43200..86399 then _('about 1 month')
|
108
|
+
when 86400..525599 then _("%d months") % (distance_in_minutes / 43200).round
|
109
|
+
when 525600..1051199 then _('about 1 year')
|
110
|
+
else _("over %d years") % (distance_in_minutes / 525600).round
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
end
|
115
|
+
|
116
|
+
end
|
117
|
+
I18n.init
|
118
|
+
|
119
|
+
|
120
|
+
end
|
@@ -0,0 +1,89 @@
|
|
1
|
+
require 'yaml'
|
2
|
+
|
3
|
+
module Spider; module I18n
|
4
|
+
|
5
|
+
class Rails < Provider
|
6
|
+
|
7
|
+
def initialize(locale)
|
8
|
+
@locale = load_locale(locale)
|
9
|
+
end
|
10
|
+
|
11
|
+
|
12
|
+
def load_locale(locale)
|
13
|
+
orig_locale = locale
|
14
|
+
file, locale = find_locale(locale)
|
15
|
+
l = load_locale_file(file) if file
|
16
|
+
@locale_data = l[locale] if l
|
17
|
+
raise ArgumentError unless @l
|
18
|
+
@locale_data.extend(Spider::HashDottedAccess)
|
19
|
+
return locale
|
20
|
+
end
|
21
|
+
|
22
|
+
def load_locale_file(filename)
|
23
|
+
type = File.extname(filename).tr('.', '').downcase
|
24
|
+
if (type == 'rb')
|
25
|
+
return eval(IO.read(filename), binding, filename)
|
26
|
+
elsif (type == 'yml')
|
27
|
+
return YAML::load(IO.read(filename))
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
|
32
|
+
def find_locale(locale)
|
33
|
+
try = locale.to_s
|
34
|
+
while (try)
|
35
|
+
extensions = ['yml', 'rb']
|
36
|
+
extensions.each do |ext|
|
37
|
+
full_path = Spider.conf.get('i18n.rails_path')+'/'+try+'.'+ext
|
38
|
+
return [full_path, try] if (File.exist?(full_path))
|
39
|
+
end
|
40
|
+
if (try =~ (/^([^\.-_@]+)[\.-_@]/))
|
41
|
+
try = $1
|
42
|
+
else
|
43
|
+
try = false
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
def localize_date_time(locale, object, format = :default, options={})
|
49
|
+
l = @locale_data
|
50
|
+
type = object.respond_to?(:sec) ? 'time' : 'date'
|
51
|
+
formats = l["#{type}.formats"]
|
52
|
+
format = formats[format.to_s] if formats && formats[format.to_s]
|
53
|
+
raise "Format #{format} not found" unless format
|
54
|
+
|
55
|
+
format = format.to_s.dup
|
56
|
+
|
57
|
+
format.gsub!(/%a/, l['date.abbr_day_names'][object.wday])
|
58
|
+
format.gsub!(/%A/, l["date.day_names"][object.wday])
|
59
|
+
format.gsub!(/%b/, l["date.abbr_month_names"][object.mon])
|
60
|
+
format.gsub!(/%B/, l["date.month_names"][object.mon])
|
61
|
+
format.gsub!(/%p/, l["time.#{object.hour < 12 ? :am : :pm}"]) if object.respond_to? :hour
|
62
|
+
object.strftime(format)
|
63
|
+
end
|
64
|
+
|
65
|
+
# FIXME: add extended format handling like in localize
|
66
|
+
def parse_date_time(locale, string, format = :default, options={})
|
67
|
+
l = @locale_data
|
68
|
+
type = object.respond_to?(:sec) ? 'time' : 'date'
|
69
|
+
formats = l["#{type}.formats"]
|
70
|
+
format = formats[format.to_s] if formats && formats[format.to_s]
|
71
|
+
raise "Format #{format} not found" unless format
|
72
|
+
|
73
|
+
format = format.to_s.dup
|
74
|
+
if (options[:return] == :datetime)
|
75
|
+
klass = DateTime
|
76
|
+
elsif (options[:return] == :date)
|
77
|
+
klass = Date
|
78
|
+
end
|
79
|
+
object.strptime(format)
|
80
|
+
end
|
81
|
+
|
82
|
+
|
83
|
+
def time_ago_in_words(from_time, include_seconds = false)
|
84
|
+
distance_of_time_in_words(from_time, Time.now, include_seconds)
|
85
|
+
end
|
86
|
+
|
87
|
+
end
|
88
|
+
|
89
|
+
end; end
|