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
data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js
ADDED
@@ -0,0 +1,771 @@
|
|
1
|
+
/* Arabic Translation for jQuery UI date picker plugin. */
|
2
|
+
/* Khaled Al Horani -- koko.dw@gmail.com */
|
3
|
+
/* خالد الحوراني -- koko.dw@gmail.com */
|
4
|
+
/* NOTE: monthNames are the original months names and they are the Arabic names, not the new months name فبراير - يناير and there isn't any Arabic roots for these months */
|
5
|
+
jQuery(function($){
|
6
|
+
$.datepicker.regional['ar'] = {
|
7
|
+
closeText: 'إغلاق',
|
8
|
+
prevText: '<السابق',
|
9
|
+
nextText: 'التالي>',
|
10
|
+
currentText: 'اليوم',
|
11
|
+
monthNames: ['كانون الثاني', 'شباط', 'آذار', 'نيسان', 'آذار', 'حزيران',
|
12
|
+
'تموز', 'آب', 'أيلول', 'تشرين الأول', 'تشرين الثاني', 'كانون الأول'],
|
13
|
+
monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
|
14
|
+
dayNames: ['السبت', 'الأحد', 'الاثنين', 'الثلاثاء', 'الأربعاء', 'الخميس', 'الجمعة'],
|
15
|
+
dayNamesShort: ['سبت', 'أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة'],
|
16
|
+
dayNamesMin: ['سبت', 'أحد', 'اثنين', 'ثلاثاء', 'أربعاء', 'خميس', 'جمعة'],
|
17
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
18
|
+
isRTL: true};
|
19
|
+
$.datepicker.setDefaults($.datepicker.regional['ar']);
|
20
|
+
});/* Bulgarian initialisation for the jQuery UI date picker plugin. */
|
21
|
+
/* Written by Stoyan Kyosev (http://svest.org). */
|
22
|
+
jQuery(function($){
|
23
|
+
$.datepicker.regional['bg'] = {
|
24
|
+
closeText: 'затвори',
|
25
|
+
prevText: '<назад',
|
26
|
+
nextText: 'напред>',
|
27
|
+
nextBigText: '>>',
|
28
|
+
currentText: 'днес',
|
29
|
+
monthNames: ['Януари','Февруари','Март','Април','Май','Юни',
|
30
|
+
'Юли','Август','Септември','Октомври','Ноември','Декември'],
|
31
|
+
monthNamesShort: ['Яну','Фев','Мар','Апр','Май','Юни',
|
32
|
+
'Юли','Авг','Сеп','Окт','Нов','Дек'],
|
33
|
+
dayNames: ['Неделя','Понеделник','Вторник','Сряда','Четвъртък','Петък','Събота'],
|
34
|
+
dayNamesShort: ['Нед','Пон','Вто','Сря','Чет','Пет','Съб'],
|
35
|
+
dayNamesMin: ['Не','По','Вт','Ср','Че','Пе','Съ'],
|
36
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
37
|
+
isRTL: false};
|
38
|
+
$.datepicker.setDefaults($.datepicker.regional['bg']);
|
39
|
+
});
|
40
|
+
/* Inicialitzaci� en catal� per a l'extenci� 'calendar' per jQuery. */
|
41
|
+
/* Writers: (joan.leon@gmail.com). */
|
42
|
+
jQuery(function($){
|
43
|
+
$.datepicker.regional['ca'] = {
|
44
|
+
closeText: 'Tancar',
|
45
|
+
prevText: '<Ant',
|
46
|
+
nextText: 'Seg>',
|
47
|
+
currentText: 'Avui',
|
48
|
+
monthNames: ['Gener','Febrer','Març','Abril','Maig','Juny',
|
49
|
+
'Juliol','Agost','Setembre','Octubre','Novembre','Desembre'],
|
50
|
+
monthNamesShort: ['Gen','Feb','Mar','Abr','Mai','Jun',
|
51
|
+
'Jul','Ago','Set','Oct','Nov','Des'],
|
52
|
+
dayNames: ['Diumenge','Dilluns','Dimarts','Dimecres','Dijous','Divendres','Dissabte'],
|
53
|
+
dayNamesShort: ['Dug','Dln','Dmt','Dmc','Djs','Dvn','Dsb'],
|
54
|
+
dayNamesMin: ['Dg','Dl','Dt','Dc','Dj','Dv','Ds'],
|
55
|
+
dateFormat: 'mm/dd/yy', firstDay: 0,
|
56
|
+
isRTL: false};
|
57
|
+
$.datepicker.setDefaults($.datepicker.regional['ca']);
|
58
|
+
});/* Czech initialisation for the jQuery UI date picker plugin. */
|
59
|
+
/* Written by Tomas Muller (tomas@tomas-muller.net). */
|
60
|
+
jQuery(function($){
|
61
|
+
$.datepicker.regional['cs'] = {
|
62
|
+
closeText: 'Zavřít',
|
63
|
+
prevText: '<Dříve',
|
64
|
+
nextText: 'Později>',
|
65
|
+
currentText: 'Nyní',
|
66
|
+
monthNames: ['leden','únor','březen','duben','květen','červen',
|
67
|
+
'červenec','srpen','září','říjen','listopad','prosinec'],
|
68
|
+
monthNamesShort: ['led','úno','bře','dub','kvě','čer',
|
69
|
+
'čvc','srp','zář','říj','lis','pro'],
|
70
|
+
dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'],
|
71
|
+
dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'],
|
72
|
+
dayNamesMin: ['ne','po','út','st','čt','pá','so'],
|
73
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
74
|
+
isRTL: false};
|
75
|
+
$.datepicker.setDefaults($.datepicker.regional['cs']);
|
76
|
+
});
|
77
|
+
/* Danish initialisation for the jQuery UI date picker plugin. */
|
78
|
+
/* Written by Jan Christensen ( deletestuff@gmail.com). */
|
79
|
+
jQuery(function($){
|
80
|
+
$.datepicker.regional['da'] = {
|
81
|
+
closeText: 'Luk',
|
82
|
+
prevText: '<Forrige',
|
83
|
+
nextText: 'Næste>',
|
84
|
+
currentText: 'Idag',
|
85
|
+
monthNames: ['Januar','Februar','Marts','April','Maj','Juni',
|
86
|
+
'Juli','August','September','Oktober','November','December'],
|
87
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
88
|
+
'Jul','Aug','Sep','Okt','Nov','Dec'],
|
89
|
+
dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'],
|
90
|
+
dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'],
|
91
|
+
dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'],
|
92
|
+
dateFormat: 'dd-mm-yy', firstDay: 0,
|
93
|
+
isRTL: false};
|
94
|
+
$.datepicker.setDefaults($.datepicker.regional['da']);
|
95
|
+
});
|
96
|
+
/* German initialisation for the jQuery UI date picker plugin. */
|
97
|
+
/* Written by Milian Wolff (mail@milianw.de). */
|
98
|
+
jQuery(function($){
|
99
|
+
$.datepicker.regional['de'] = {
|
100
|
+
closeText: 'schließen',
|
101
|
+
prevText: '<zurück',
|
102
|
+
nextText: 'Vor>',
|
103
|
+
currentText: 'heute',
|
104
|
+
monthNames: ['Januar','Februar','März','April','Mai','Juni',
|
105
|
+
'Juli','August','September','Oktober','November','Dezember'],
|
106
|
+
monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
|
107
|
+
'Jul','Aug','Sep','Okt','Nov','Dez'],
|
108
|
+
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
|
109
|
+
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
110
|
+
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
|
111
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
112
|
+
isRTL: false};
|
113
|
+
$.datepicker.setDefaults($.datepicker.regional['de']);
|
114
|
+
});
|
115
|
+
/* Greek (el) initialisation for the jQuery UI date picker plugin. */
|
116
|
+
/* Written by Alex Cicovic (http://www.alexcicovic.com) */
|
117
|
+
jQuery(function($){
|
118
|
+
$.datepicker.regional['el'] = {
|
119
|
+
closeText: 'Κλείσιμο',
|
120
|
+
prevText: 'Προηγούμενος',
|
121
|
+
nextText: 'Επόμενος',
|
122
|
+
currentText: 'Τρέχων Μήνας',
|
123
|
+
monthNames: ['Ιανουάριος','Φεβρουάριος','Μάρτιος','Απρίλιος','Μάιος','Ιούνιος',
|
124
|
+
'Ιούλιος','Αύγουστος','Σεπτέμβριος','Οκτώβριος','Νοέμβριος','Δεκέμβριος'],
|
125
|
+
monthNamesShort: ['Ιαν','Φεβ','Μαρ','Απρ','Μαι','Ιουν',
|
126
|
+
'Ιουλ','Αυγ','Σεπ','Οκτ','Νοε','Δεκ'],
|
127
|
+
dayNames: ['Κυριακή','Δευτέρα','Τρίτη','Τετάρτη','Πέμπτη','Παρασκευή','Σάββατο'],
|
128
|
+
dayNamesShort: ['Κυρ','Δευ','Τρι','Τετ','Πεμ','Παρ','Σαβ'],
|
129
|
+
dayNamesMin: ['Κυ','Δε','Τρ','Τε','Πε','Πα','Σα'],
|
130
|
+
dateFormat: 'dd/mm/yy', firstDay: 1,
|
131
|
+
isRTL: false};
|
132
|
+
$.datepicker.setDefaults($.datepicker.regional['el']);
|
133
|
+
});/* Esperanto initialisation for the jQuery UI date picker plugin. */
|
134
|
+
/* Written by Olivier M. (olivierweb@ifrance.com). */
|
135
|
+
jQuery(function($){
|
136
|
+
$.datepicker.regional['eo'] = {
|
137
|
+
closeText: 'Fermi',
|
138
|
+
prevText: '<Anta',
|
139
|
+
nextText: 'Sekv>',
|
140
|
+
currentText: 'Nuna',
|
141
|
+
monthNames: ['Januaro','Februaro','Marto','Aprilo','Majo','Junio',
|
142
|
+
'Julio','Aŭgusto','Septembro','Oktobro','Novembro','Decembro'],
|
143
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
144
|
+
'Jul','Aŭg','Sep','Okt','Nov','Dec'],
|
145
|
+
dayNames: ['Dimanĉo','Lundo','Mardo','Merkredo','Ĵaŭdo','Vendredo','Sabato'],
|
146
|
+
dayNamesShort: ['Dim','Lun','Mar','Mer','Ĵaŭ','Ven','Sab'],
|
147
|
+
dayNamesMin: ['Di','Lu','Ma','Me','Ĵa','Ve','Sa'],
|
148
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
149
|
+
isRTL: false};
|
150
|
+
$.datepicker.setDefaults($.datepicker.regional['eo']);
|
151
|
+
});
|
152
|
+
/* Inicializaci�n en espa�ol para la extensi�n 'UI date picker' para jQuery. */
|
153
|
+
/* Traducido por Vester (xvester@gmail.com). */
|
154
|
+
jQuery(function($){
|
155
|
+
$.datepicker.regional['es'] = {
|
156
|
+
closeText: 'Cerrar',
|
157
|
+
prevText: '<Ant',
|
158
|
+
nextText: 'Sig>',
|
159
|
+
currentText: 'Hoy',
|
160
|
+
monthNames: ['Enero','Febrero','Marzo','Abril','Mayo','Junio',
|
161
|
+
'Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'],
|
162
|
+
monthNamesShort: ['Ene','Feb','Mar','Abr','May','Jun',
|
163
|
+
'Jul','Ago','Sep','Oct','Nov','Dic'],
|
164
|
+
dayNames: ['Domingo','Lunes','Martes','Miércoles','Jueves','Viernes','Sábado'],
|
165
|
+
dayNamesShort: ['Dom','Lun','Mar','Mié','Juv','Vie','Sáb'],
|
166
|
+
dayNamesMin: ['Do','Lu','Ma','Mi','Ju','Vi','Sá'],
|
167
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
168
|
+
isRTL: false};
|
169
|
+
$.datepicker.setDefaults($.datepicker.regional['es']);
|
170
|
+
});/* Persian (Farsi) Translation for the jQuery UI date picker plugin. */
|
171
|
+
/* Javad Mowlanezhad -- jmowla@gmail.com */
|
172
|
+
/* Jalali calendar should supported soon! (Its implemented but I have to test it) */
|
173
|
+
jQuery(function($) {
|
174
|
+
$.datepicker.regional['fa'] = {
|
175
|
+
closeText: 'بستن',
|
176
|
+
prevText: '<قبلي',
|
177
|
+
nextText: 'بعدي>',
|
178
|
+
currentText: 'امروز',
|
179
|
+
monthNames: ['فروردين','ارديبهشت','خرداد','تير','مرداد','شهريور',
|
180
|
+
'مهر','آبان','آذر','دي','بهمن','اسفند'],
|
181
|
+
monthNamesShort: ['1','2','3','4','5','6','7','8','9','10','11','12'],
|
182
|
+
dayNames: ['يکشنبه','دوشنبه','سهشنبه','چهارشنبه','پنجشنبه','جمعه','شنبه'],
|
183
|
+
dayNamesShort: ['ي','د','س','چ','پ','ج', 'ش'],
|
184
|
+
dayNamesMin: ['ي','د','س','چ','پ','ج', 'ش'],
|
185
|
+
dateFormat: 'yy/mm/dd', firstDay: 6,
|
186
|
+
isRTL: true};
|
187
|
+
$.datepicker.setDefaults($.datepicker.regional['fa']);
|
188
|
+
});/* Finnish initialisation for the jQuery UI date picker plugin. */
|
189
|
+
/* Written by Harri Kilpi� (harrikilpio@gmail.com). */
|
190
|
+
jQuery(function($){
|
191
|
+
$.datepicker.regional['fi'] = {
|
192
|
+
closeText: 'Sulje',
|
193
|
+
prevText: '«Edellinen',
|
194
|
+
nextText: 'Seuraava»',
|
195
|
+
currentText: 'Tänään',
|
196
|
+
monthNames: ['Tammikuu','Helmikuu','Maaliskuu','Huhtikuu','Toukokuu','Kesäkuu',
|
197
|
+
'Heinäkuu','Elokuu','Syyskuu','Lokakuu','Marraskuu','Joulukuu'],
|
198
|
+
monthNamesShort: ['Tammi','Helmi','Maalis','Huhti','Touko','Kesä',
|
199
|
+
'Heinä','Elo','Syys','Loka','Marras','Joulu'],
|
200
|
+
dayNamesShort: ['Su','Ma','Ti','Ke','To','Pe','Su'],
|
201
|
+
dayNames: ['Sunnuntai','Maanantai','Tiistai','Keskiviikko','Torstai','Perjantai','Lauantai'],
|
202
|
+
dayNamesMin: ['Su','Ma','Ti','Ke','To','Pe','La'],
|
203
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
204
|
+
isRTL: false};
|
205
|
+
$.datepicker.setDefaults($.datepicker.regional['fi']);
|
206
|
+
});
|
207
|
+
/* French initialisation for the jQuery UI date picker plugin. */
|
208
|
+
/* Written by Keith Wood (kbwood@virginbroadband.com.au) and Stéphane Nahmani (sholby@sholby.net). */
|
209
|
+
jQuery(function($){
|
210
|
+
$.datepicker.regional['fr'] = {
|
211
|
+
closeText: 'Fermer',
|
212
|
+
prevText: '<Préc',
|
213
|
+
nextText: 'Suiv>',
|
214
|
+
currentText: 'Courant',
|
215
|
+
monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin',
|
216
|
+
'Juillet','Août','Septembre','Octobre','Novembre','Décembre'],
|
217
|
+
monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun',
|
218
|
+
'Jul','Aoû','Sep','Oct','Nov','Déc'],
|
219
|
+
dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],
|
220
|
+
dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],
|
221
|
+
dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],
|
222
|
+
dateFormat: 'dd/mm/yy', firstDay: 1,
|
223
|
+
isRTL: false};
|
224
|
+
$.datepicker.setDefaults($.datepicker.regional['fr']);
|
225
|
+
});/* Hebrew initialisation for the UI Datepicker extension. */
|
226
|
+
/* Written by Amir Hardon (ahardon at gmail dot com). */
|
227
|
+
jQuery(function($){
|
228
|
+
$.datepicker.regional['he'] = {
|
229
|
+
closeText: 'סגור',
|
230
|
+
prevText: '<הקודם',
|
231
|
+
nextText: 'הבא>',
|
232
|
+
currentText: 'היום',
|
233
|
+
monthNames: ['ינואר','פברואר','מרץ','אפריל','מאי','יוני',
|
234
|
+
'יולי','אוגוסט','ספטמבר','אוקטובר','נובמבר','דצמבר'],
|
235
|
+
monthNamesShort: ['1','2','3','4','5','6',
|
236
|
+
'7','8','9','10','11','12'],
|
237
|
+
dayNames: ['ראשון','שני','שלישי','רביעי','חמישי','שישי','שבת'],
|
238
|
+
dayNamesShort: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
|
239
|
+
dayNamesMin: ['א\'','ב\'','ג\'','ד\'','ה\'','ו\'','שבת'],
|
240
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
241
|
+
isRTL: true};
|
242
|
+
$.datepicker.setDefaults($.datepicker.regional['he']);
|
243
|
+
});
|
244
|
+
/* Croatian i18n for the jQuery UI date picker plugin. */
|
245
|
+
/* Written by Vjekoslav Nesek. */
|
246
|
+
jQuery(function($){
|
247
|
+
$.datepicker.regional['hr'] = {
|
248
|
+
closeText: 'Zatvori',
|
249
|
+
prevText: '<',
|
250
|
+
nextText: '>',
|
251
|
+
currentText: 'Danas',
|
252
|
+
monthNames: ['Siječanj','Veljača','Ožujak','Travanj','Svibanj','Lipani',
|
253
|
+
'Srpanj','Kolovoz','Rujan','Listopad','Studeni','Prosinac'],
|
254
|
+
monthNamesShort: ['Sij','Velj','Ožu','Tra','Svi','Lip',
|
255
|
+
'Srp','Kol','Ruj','Lis','Stu','Pro'],
|
256
|
+
dayNames: ['Nedjalja','Ponedjeljak','Utorak','Srijeda','Četvrtak','Petak','Subota'],
|
257
|
+
dayNamesShort: ['Ned','Pon','Uto','Sri','Čet','Pet','Sub'],
|
258
|
+
dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
|
259
|
+
dateFormat: 'dd.mm.yy.', firstDay: 1,
|
260
|
+
isRTL: false};
|
261
|
+
$.datepicker.setDefaults($.datepicker.regional['hr']);
|
262
|
+
});/* Hungarian initialisation for the jQuery UI date picker plugin. */
|
263
|
+
/* Written by Istvan Karaszi (jquerycalendar@spam.raszi.hu). */
|
264
|
+
jQuery(function($){
|
265
|
+
$.datepicker.regional['hu'] = {
|
266
|
+
closeText: 'bezárás',
|
267
|
+
prevText: '« vissza',
|
268
|
+
nextText: 'előre »',
|
269
|
+
currentText: 'ma',
|
270
|
+
monthNames: ['Január', 'Február', 'Március', 'Április', 'Május', 'Június',
|
271
|
+
'Július', 'Augusztus', 'Szeptember', 'Október', 'November', 'December'],
|
272
|
+
monthNamesShort: ['Jan', 'Feb', 'Már', 'Ápr', 'Máj', 'Jún',
|
273
|
+
'Júl', 'Aug', 'Szep', 'Okt', 'Nov', 'Dec'],
|
274
|
+
dayNames: ['Vasámap', 'Hétfö', 'Kedd', 'Szerda', 'Csütörtök', 'Péntek', 'Szombat'],
|
275
|
+
dayNamesShort: ['Vas', 'Hét', 'Ked', 'Sze', 'Csü', 'Pén', 'Szo'],
|
276
|
+
dayNamesMin: ['V', 'H', 'K', 'Sze', 'Cs', 'P', 'Szo'],
|
277
|
+
dateFormat: 'yy-mm-dd', firstDay: 1,
|
278
|
+
isRTL: false};
|
279
|
+
$.datepicker.setDefaults($.datepicker.regional['hu']);
|
280
|
+
});
|
281
|
+
/* Armenian(UTF-8) initialisation for the jQuery UI date picker plugin. */
|
282
|
+
/* Written by Levon Zakaryan (levon.zakaryan@gmail.com)*/
|
283
|
+
jQuery(function($){
|
284
|
+
$.datepicker.regional['hy'] = {
|
285
|
+
closeText: 'Փակել',
|
286
|
+
prevText: '<Նախ.',
|
287
|
+
nextText: 'Հաջ.>',
|
288
|
+
currentText: 'Այսօր',
|
289
|
+
monthNames: ['Հունվար','Փետրվար','Մարտ','Ապրիլ','Մայիս','Հունիս',
|
290
|
+
'Հուլիս','Օգոստոս','Սեպտեմբեր','Հոկտեմբեր','Նոյեմբեր','Դեկտեմբեր'],
|
291
|
+
monthNamesShort: ['Հունվ','Փետր','Մարտ','Ապր','Մայիս','Հունիս',
|
292
|
+
'Հուլ','Օգս','Սեպ','Հոկ','Նոյ','Դեկ'],
|
293
|
+
dayNames: ['կիրակի','եկուշաբթի','երեքշաբթի','չորեքշաբթի','հինգշաբթի','ուրբաթ','շաբաթ'],
|
294
|
+
dayNamesShort: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
|
295
|
+
dayNamesMin: ['կիր','երկ','երք','չրք','հնգ','ուրբ','շբթ'],
|
296
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
297
|
+
isRTL: false};
|
298
|
+
$.datepicker.setDefaults($.datepicker.regional['hy']);
|
299
|
+
});/* Indonesian initialisation for the jQuery UI date picker plugin. */
|
300
|
+
/* Written by Deden Fathurahman (dedenf@gmail.com). */
|
301
|
+
jQuery(function($){
|
302
|
+
$.datepicker.regional['id'] = {
|
303
|
+
closeText: 'Tutup',
|
304
|
+
prevText: '<mundur',
|
305
|
+
nextText: 'maju>',
|
306
|
+
currentText: 'hari ini',
|
307
|
+
monthNames: ['Januari','Februari','Maret','April','Mei','Juni',
|
308
|
+
'Juli','Agustus','September','Oktober','Nopember','Desember'],
|
309
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Mei','Jun',
|
310
|
+
'Jul','Agus','Sep','Okt','Nop','Des'],
|
311
|
+
dayNames: ['Minggu','Senin','Selasa','Rabu','Kamis','Jumat','Sabtu'],
|
312
|
+
dayNamesShort: ['Min','Sen','Sel','Rab','kam','Jum','Sab'],
|
313
|
+
dayNamesMin: ['Mg','Sn','Sl','Rb','Km','jm','Sb'],
|
314
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
315
|
+
isRTL: false};
|
316
|
+
$.datepicker.setDefaults($.datepicker.regional['id']);
|
317
|
+
});/* Icelandic initialisation for the jQuery UI date picker plugin. */
|
318
|
+
/* Written by Haukur H. Thorsson (haukur@eskill.is). */
|
319
|
+
jQuery(function($){
|
320
|
+
$.datepicker.regional['is'] = {
|
321
|
+
closeText: 'Loka',
|
322
|
+
prevText: '< Fyrri',
|
323
|
+
nextText: 'Næsti >',
|
324
|
+
currentText: 'Í dag',
|
325
|
+
monthNames: ['Janúar','Febrúar','Mars','Apríl','Maí','Júní',
|
326
|
+
'Júlí','Ágúst','September','Október','Nóvember','Desember'],
|
327
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Maí','Jún',
|
328
|
+
'Júl','Ágú','Sep','Okt','Nóv','Des'],
|
329
|
+
dayNames: ['Sunnudagur','Mánudagur','Þriðjudagur','Miðvikudagur','Fimmtudagur','Föstudagur','Laugardagur'],
|
330
|
+
dayNamesShort: ['Sun','Mán','Þri','Mið','Fim','Fös','Lau'],
|
331
|
+
dayNamesMin: ['Su','Má','Þr','Mi','Fi','Fö','La'],
|
332
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
333
|
+
isRTL: false};
|
334
|
+
$.datepicker.setDefaults($.datepicker.regional['is']);
|
335
|
+
});/* Italian initialisation for the jQuery UI date picker plugin. */
|
336
|
+
/* Written by Apaella (apaella@gmail.com). */
|
337
|
+
jQuery(function($){
|
338
|
+
$.datepicker.regional['it'] = {
|
339
|
+
closeText: 'Chiudi',
|
340
|
+
prevText: '<Prec',
|
341
|
+
nextText: 'Succ>',
|
342
|
+
currentText: 'Oggi',
|
343
|
+
monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
|
344
|
+
'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
|
345
|
+
monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu',
|
346
|
+
'Lug','Ago','Set','Ott','Nov','Dic'],
|
347
|
+
dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'],
|
348
|
+
dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
|
349
|
+
dayNamesMin: ['Do','Lu','Ma','Me','Gio','Ve','Sa'],
|
350
|
+
dateFormat: 'dd/mm/yy', firstDay: 1,
|
351
|
+
isRTL: false};
|
352
|
+
$.datepicker.setDefaults($.datepicker.regional['it']);
|
353
|
+
});
|
354
|
+
/* Japanese initialisation for the jQuery UI date picker plugin. */
|
355
|
+
/* Written by Kentaro SATO (kentaro@ranvis.com). */
|
356
|
+
jQuery(function($){
|
357
|
+
$.datepicker.regional['ja'] = {
|
358
|
+
closeText: '閉じる',
|
359
|
+
prevText: '<前',
|
360
|
+
nextText: '次>',
|
361
|
+
currentText: '今日',
|
362
|
+
monthNames: ['1月','2月','3月','4月','5月','6月',
|
363
|
+
'7月','8月','9月','10月','11月','12月'],
|
364
|
+
monthNamesShort: ['1月','2月','3月','4月','5月','6月',
|
365
|
+
'7月','8月','9月','10月','11月','12月'],
|
366
|
+
dayNames: ['日曜日','月曜日','火曜日','水曜日','木曜日','金曜日','土曜日'],
|
367
|
+
dayNamesShort: ['日','月','火','水','木','金','土'],
|
368
|
+
dayNamesMin: ['日','月','火','水','木','金','土'],
|
369
|
+
dateFormat: 'yy/mm/dd', firstDay: 0,
|
370
|
+
isRTL: false,
|
371
|
+
showMonthAfterYear: true};
|
372
|
+
$.datepicker.setDefaults($.datepicker.regional['ja']);
|
373
|
+
});/* Korean initialisation for the jQuery calendar extension. */
|
374
|
+
/* Written by DaeKwon Kang (ncrash.dk@gmail.com). */
|
375
|
+
jQuery(function($){
|
376
|
+
$.datepicker.regional['ko'] = {
|
377
|
+
closeText: '닫기',
|
378
|
+
prevText: '이전달',
|
379
|
+
nextText: '다음달',
|
380
|
+
currentText: '오늘',
|
381
|
+
monthNames: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
|
382
|
+
'7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
|
383
|
+
monthNamesShort: ['1월(JAN)','2월(FEB)','3월(MAR)','4월(APR)','5월(MAY)','6월(JUN)',
|
384
|
+
'7월(JUL)','8월(AUG)','9월(SEP)','10월(OCT)','11월(NOV)','12월(DEC)'],
|
385
|
+
dayNames: ['일','월','화','수','목','금','토'],
|
386
|
+
dayNamesShort: ['일','월','화','수','목','금','토'],
|
387
|
+
dayNamesMin: ['일','월','화','수','목','금','토'],
|
388
|
+
dateFormat: 'yy-mm-dd', firstDay: 0,
|
389
|
+
isRTL: false};
|
390
|
+
$.datepicker.setDefaults($.datepicker.regional['ko']);
|
391
|
+
});/* Lithuanian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
392
|
+
/* @author Arturas Paleicikas <arturas@avalon.lt> */
|
393
|
+
jQuery(function($){
|
394
|
+
$.datepicker.regional['lt'] = {
|
395
|
+
closeText: 'Uždaryti',
|
396
|
+
prevText: '<Atgal',
|
397
|
+
nextText: 'Pirmyn>',
|
398
|
+
currentText: 'Šiandien',
|
399
|
+
monthNames: ['Sausis','Vasaris','Kovas','Balandis','Gegužė','Birželis',
|
400
|
+
'Liepa','Rugpjūtis','Rugsėjis','Spalis','Lapkritis','Gruodis'],
|
401
|
+
monthNamesShort: ['Sau','Vas','Kov','Bal','Geg','Bir',
|
402
|
+
'Lie','Rugp','Rugs','Spa','Lap','Gru'],
|
403
|
+
dayNames: ['sekmadienis','pirmadienis','antradienis','trečiadienis','ketvirtadienis','penktadienis','šeštadienis'],
|
404
|
+
dayNamesShort: ['sek','pir','ant','tre','ket','pen','šeš'],
|
405
|
+
dayNamesMin: ['Se','Pr','An','Tr','Ke','Pe','Še'],
|
406
|
+
dateFormat: 'yy-mm-dd', firstDay: 1,
|
407
|
+
isRTL: false};
|
408
|
+
$.datepicker.setDefaults($.datepicker.regional['lt']);
|
409
|
+
});/* Latvian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
410
|
+
/* @author Arturas Paleicikas <arturas.paleicikas@metasite.net> */
|
411
|
+
jQuery(function($){
|
412
|
+
$.datepicker.regional['lv'] = {
|
413
|
+
closeText: 'Aizvērt',
|
414
|
+
prevText: 'Iepr',
|
415
|
+
nextText: 'Nāka',
|
416
|
+
currentText: 'Šodien',
|
417
|
+
monthNames: ['Janvāris','Februāris','Marts','Aprīlis','Maijs','Jūnijs',
|
418
|
+
'Jūlijs','Augusts','Septembris','Oktobris','Novembris','Decembris'],
|
419
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jūn',
|
420
|
+
'Jūl','Aug','Sep','Okt','Nov','Dec'],
|
421
|
+
dayNames: ['svētdiena','pirmdiena','otrdiena','trešdiena','ceturtdiena','piektdiena','sestdiena'],
|
422
|
+
dayNamesShort: ['svt','prm','otr','tre','ctr','pkt','sst'],
|
423
|
+
dayNamesMin: ['Sv','Pr','Ot','Tr','Ct','Pk','Ss'],
|
424
|
+
dateFormat: 'dd-mm-yy', firstDay: 1,
|
425
|
+
isRTL: false};
|
426
|
+
$.datepicker.setDefaults($.datepicker.regional['lv']);
|
427
|
+
});/* Malaysian initialisation for the jQuery UI date picker plugin. */
|
428
|
+
/* Written by Mohd Nawawi Mohamad Jamili (nawawi@ronggeng.net). */
|
429
|
+
jQuery(function($){
|
430
|
+
$.datepicker.regional['ms'] = {
|
431
|
+
closeText: 'Tutup',
|
432
|
+
prevText: '<Sebelum',
|
433
|
+
nextText: 'Selepas>',
|
434
|
+
currentText: 'hari ini',
|
435
|
+
monthNames: ['Januari','Februari','Mac','April','Mei','Jun',
|
436
|
+
'Julai','Ogos','September','Oktober','November','Disember'],
|
437
|
+
monthNamesShort: ['Jan','Feb','Mac','Apr','Mei','Jun',
|
438
|
+
'Jul','Ogo','Sep','Okt','Nov','Dis'],
|
439
|
+
dayNames: ['Ahad','Isnin','Selasa','Rabu','Khamis','Jumaat','Sabtu'],
|
440
|
+
dayNamesShort: ['Aha','Isn','Sel','Rab','kha','Jum','Sab'],
|
441
|
+
dayNamesMin: ['Ah','Is','Se','Ra','Kh','Ju','Sa'],
|
442
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
443
|
+
isRTL: false};
|
444
|
+
$.datepicker.setDefaults($.datepicker.regional['ms']);
|
445
|
+
});/* Dutch (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
446
|
+
/* Written by Mathias Bynens <http://mathiasbynens.be/> */
|
447
|
+
jQuery(function($){
|
448
|
+
$.datepicker.regional.nl = {
|
449
|
+
closeText: 'Sluiten',
|
450
|
+
prevText: '←',
|
451
|
+
nextText: '→',
|
452
|
+
currentText: 'Vandaag',
|
453
|
+
monthNames: ['januari', 'februari', 'maart', 'april', 'mei', 'juni',
|
454
|
+
'juli', 'augustus', 'september', 'oktober', 'november', 'december'],
|
455
|
+
monthNamesShort: ['jan', 'feb', 'maa', 'apr', 'mei', 'jun',
|
456
|
+
'jul', 'aug', 'sep', 'okt', 'nov', 'dec'],
|
457
|
+
dayNames: ['zondag', 'maandag', 'dinsdag', 'woensdag', 'donderdag', 'vrijdag', 'zaterdag'],
|
458
|
+
dayNamesShort: ['zon', 'maa', 'din', 'woe', 'don', 'vri', 'zat'],
|
459
|
+
dayNamesMin: ['zo', 'ma', 'di', 'wo', 'do', 'vr', 'za'],
|
460
|
+
dateFormat: 'dd/mm/yy', firstDay: 1,
|
461
|
+
isRTL: false};
|
462
|
+
$.datepicker.setDefaults($.datepicker.regional.nl);
|
463
|
+
});/* Norwegian initialisation for the jQuery UI date picker plugin. */
|
464
|
+
/* Written by Naimdjon Takhirov (naimdjon@gmail.com). */
|
465
|
+
jQuery(function($){
|
466
|
+
$.datepicker.regional['no'] = {
|
467
|
+
closeText: 'Lukk',
|
468
|
+
prevText: '«Forrige',
|
469
|
+
nextText: 'Neste»',
|
470
|
+
currentText: 'I dag',
|
471
|
+
monthNames: ['Januar','Februar','Mars','April','Mai','Juni',
|
472
|
+
'Juli','August','September','Oktober','November','Desember'],
|
473
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Mai','Jun',
|
474
|
+
'Jul','Aug','Sep','Okt','Nov','Des'],
|
475
|
+
dayNamesShort: ['Søn','Man','Tir','Ons','Tor','Fre','Lør'],
|
476
|
+
dayNames: ['Søndag','Mandag','Tirsdag','Onsdag','Torsdag','Fredag','Lørdag'],
|
477
|
+
dayNamesMin: ['Sø','Ma','Ti','On','To','Fr','Lø'],
|
478
|
+
dateFormat: 'yy-mm-dd', firstDay: 0,
|
479
|
+
isRTL: false};
|
480
|
+
$.datepicker.setDefaults($.datepicker.regional['no']);
|
481
|
+
});
|
482
|
+
/* Polish initialisation for the jQuery UI date picker plugin. */
|
483
|
+
/* Written by Jacek Wysocki (jacek.wysocki@gmail.com). */
|
484
|
+
jQuery(function($){
|
485
|
+
$.datepicker.regional['pl'] = {
|
486
|
+
closeText: 'Zamknij',
|
487
|
+
prevText: '<Poprzedni',
|
488
|
+
nextText: 'Następny>',
|
489
|
+
currentText: 'Dziś',
|
490
|
+
monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec',
|
491
|
+
'Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'],
|
492
|
+
monthNamesShort: ['Sty','Lu','Mar','Kw','Maj','Cze',
|
493
|
+
'Lip','Sie','Wrz','Pa','Lis','Gru'],
|
494
|
+
dayNames: ['Niedziela','Poniedzialek','Wtorek','Środa','Czwartek','Piątek','Sobota'],
|
495
|
+
dayNamesShort: ['Nie','Pn','Wt','Śr','Czw','Pt','So'],
|
496
|
+
dayNamesMin: ['N','Pn','Wt','Śr','Cz','Pt','So'],
|
497
|
+
dateFormat: 'yy-mm-dd', firstDay: 1,
|
498
|
+
isRTL: false};
|
499
|
+
$.datepicker.setDefaults($.datepicker.regional['pl']);
|
500
|
+
});
|
501
|
+
/* Brazilian initialisation for the jQuery UI date picker plugin. */
|
502
|
+
/* Written by Leonildo Costa Silva (leocsilva@gmail.com). */
|
503
|
+
jQuery(function($){
|
504
|
+
$.datepicker.regional['pt-BR'] = {
|
505
|
+
closeText: 'Fechar',
|
506
|
+
prevText: '<Anterior',
|
507
|
+
nextText: 'Próximo>',
|
508
|
+
currentText: 'Hoje',
|
509
|
+
monthNames: ['Janeiro','Fevereiro','Março','Abril','Maio','Junho',
|
510
|
+
'Julho','Agosto','Setembro','Outubro','Novembro','Dezembro'],
|
511
|
+
monthNamesShort: ['Jan','Fev','Mar','Abr','Mai','Jun',
|
512
|
+
'Jul','Ago','Set','Out','Nov','Dez'],
|
513
|
+
dayNames: ['Domingo','Segunda-feira','Terça-feira','Quarta-feira','Quinta-feira','Sexta-feira','Sabado'],
|
514
|
+
dayNamesShort: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
|
515
|
+
dayNamesMin: ['Dom','Seg','Ter','Qua','Qui','Sex','Sab'],
|
516
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
517
|
+
isRTL: false};
|
518
|
+
$.datepicker.setDefaults($.datepicker.regional['pt-BR']);
|
519
|
+
});/* Romanian initialisation for the jQuery UI date picker plugin.
|
520
|
+
*
|
521
|
+
* Written by Edmond L. (ll_edmond@walla.com)
|
522
|
+
* and Ionut G. Stan (ionut.g.stan@gmail.com)
|
523
|
+
*/
|
524
|
+
jQuery(function($){
|
525
|
+
$.datepicker.regional['ro'] = {
|
526
|
+
closeText: 'Închide',
|
527
|
+
prevText: '« Luna precedentă',
|
528
|
+
nextText: 'Luna următoare »',
|
529
|
+
currentText: 'Azi',
|
530
|
+
monthNames: ['Ianuarie','Februarie','Martie','Aprilie','Mai','Iunie',
|
531
|
+
'Iulie','August','Septembrie','Octombrie','Noiembrie','Decembrie'],
|
532
|
+
monthNamesShort: ['Ian', 'Feb', 'Mar', 'Apr', 'Mai', 'Iun',
|
533
|
+
'Iul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
|
534
|
+
dayNames: ['Duminică', 'Luni', 'Marţi', 'Miercuri', 'Joi', 'Vineri', 'Sâmbătă'],
|
535
|
+
dayNamesShort: ['Dum', 'Lun', 'Mar', 'Mie', 'Joi', 'Vin', 'Sâm'],
|
536
|
+
dayNamesMin: ['Du','Lu','Ma','Mi','Jo','Vi','Sâ'],
|
537
|
+
dateFormat: 'dd MM yy', firstDay: 1,
|
538
|
+
isRTL: false};
|
539
|
+
$.datepicker.setDefaults($.datepicker.regional['ro']);
|
540
|
+
});
|
541
|
+
/* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
542
|
+
/* Written by Andrew Stromnov (stromnov@gmail.com). */
|
543
|
+
jQuery(function($){
|
544
|
+
$.datepicker.regional['ru'] = {
|
545
|
+
closeText: 'Закрыть',
|
546
|
+
prevText: '<Пред',
|
547
|
+
nextText: 'След>',
|
548
|
+
currentText: 'Сегодня',
|
549
|
+
monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь',
|
550
|
+
'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
|
551
|
+
monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн',
|
552
|
+
'Июл','Авг','Сен','Окт','Ноя','Дек'],
|
553
|
+
dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
|
554
|
+
dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'],
|
555
|
+
dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
|
556
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
557
|
+
isRTL: false};
|
558
|
+
$.datepicker.setDefaults($.datepicker.regional['ru']);
|
559
|
+
});/* Slovak initialisation for the jQuery UI date picker plugin. */
|
560
|
+
/* Written by Vojtech Rinik (vojto@hmm.sk). */
|
561
|
+
jQuery(function($){
|
562
|
+
$.datepicker.regional['sk'] = {
|
563
|
+
closeText: 'Zavrieť',
|
564
|
+
prevText: '<Predchádzajúci',
|
565
|
+
nextText: 'Nasledujúci>',
|
566
|
+
currentText: 'Dnes',
|
567
|
+
monthNames: ['Január','Február','Marec','Apríl','Máj','Jún',
|
568
|
+
'Júl','August','September','Október','November','December'],
|
569
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Máj','Jún',
|
570
|
+
'Júl','Aug','Sep','Okt','Nov','Dec'],
|
571
|
+
dayNames: ['Nedel\'a','Pondelok','Utorok','Streda','Štvrtok','Piatok','Sobota'],
|
572
|
+
dayNamesShort: ['Ned','Pon','Uto','Str','Štv','Pia','Sob'],
|
573
|
+
dayNamesMin: ['Ne','Po','Ut','St','Št','Pia','So'],
|
574
|
+
dateFormat: 'dd.mm.yy', firstDay: 0,
|
575
|
+
isRTL: false};
|
576
|
+
$.datepicker.setDefaults($.datepicker.regional['sk']);
|
577
|
+
});
|
578
|
+
/* Slovenian initialisation for the jQuery UI date picker plugin. */
|
579
|
+
/* Written by Jaka Jancar (jaka@kubje.org). */
|
580
|
+
/* c = č, s = š z = ž C = Č S = Š Z = Ž */
|
581
|
+
jQuery(function($){
|
582
|
+
$.datepicker.regional['sl'] = {
|
583
|
+
closeText: 'Zapri',
|
584
|
+
prevText: '<Prejšnji',
|
585
|
+
nextText: 'Naslednji>',
|
586
|
+
currentText: 'Trenutni',
|
587
|
+
monthNames: ['Januar','Februar','Marec','April','Maj','Junij',
|
588
|
+
'Julij','Avgust','September','Oktober','November','December'],
|
589
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
590
|
+
'Jul','Avg','Sep','Okt','Nov','Dec'],
|
591
|
+
dayNames: ['Nedelja','Ponedeljek','Torek','Sreda','Četrtek','Petek','Sobota'],
|
592
|
+
dayNamesShort: ['Ned','Pon','Tor','Sre','Čet','Pet','Sob'],
|
593
|
+
dayNamesMin: ['Ne','Po','To','Sr','Če','Pe','So'],
|
594
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
595
|
+
isRTL: false};
|
596
|
+
$.datepicker.setDefaults($.datepicker.regional['sl']);
|
597
|
+
});
|
598
|
+
/* Albanian initialisation for the jQuery UI date picker plugin. */
|
599
|
+
/* Written by Flakron Bytyqi (flakron@gmail.com). */
|
600
|
+
jQuery(function($){
|
601
|
+
$.datepicker.regional['sq'] = {
|
602
|
+
closeText: 'mbylle',
|
603
|
+
prevText: '<mbrapa',
|
604
|
+
nextText: 'Përpara>',
|
605
|
+
currentText: 'sot',
|
606
|
+
monthNames: ['Janar','Shkurt','Mars','Prill','Maj','Qershor',
|
607
|
+
'Korrik','Gusht','Shtator','Tetor','Nëntor','Dhjetor'],
|
608
|
+
monthNamesShort: ['Jan','Shk','Mar','Pri','Maj','Qer',
|
609
|
+
'Kor','Gus','Sht','Tet','Nën','Dhj'],
|
610
|
+
dayNames: ['E Diel','E Hënë','E Martë','E Mërkurë','E Enjte','E Premte','E Shtune'],
|
611
|
+
dayNamesShort: ['Di','Hë','Ma','Më','En','Pr','Sh'],
|
612
|
+
dayNamesMin: ['Di','Hë','Ma','Më','En','Pr','Sh'],
|
613
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
614
|
+
isRTL: false};
|
615
|
+
$.datepicker.setDefaults($.datepicker.regional['sq']);
|
616
|
+
});
|
617
|
+
/* Serbian i18n for the jQuery UI date picker plugin. */
|
618
|
+
/* Written by Dejan Dimić. */
|
619
|
+
jQuery(function($){
|
620
|
+
$.datepicker.regional['sr-SR'] = {
|
621
|
+
closeText: 'Zatvori',
|
622
|
+
prevText: '<',
|
623
|
+
nextText: '>',
|
624
|
+
currentText: 'Danas',
|
625
|
+
monthNames: ['Januar','Februar','Mart','April','Maj','Jun',
|
626
|
+
'Jul','Avgust','Septembar','Oktobar','Novembar','Decembar'],
|
627
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
628
|
+
'Jul','Avg','Sep','Okt','Nov','Dec'],
|
629
|
+
dayNames: ['Nedelja','Ponedeljak','Utorak','Sreda','Četvrtak','Petak','Subota'],
|
630
|
+
dayNamesShort: ['Ned','Pon','Uto','Sre','Čet','Pet','Sub'],
|
631
|
+
dayNamesMin: ['Ne','Po','Ut','Sr','Če','Pe','Su'],
|
632
|
+
dateFormat: 'dd/mm/yy', firstDay: 1,
|
633
|
+
isRTL: false};
|
634
|
+
$.datepicker.setDefaults($.datepicker.regional['sr-SR']);
|
635
|
+
});
|
636
|
+
/* Serbian i18n for the jQuery UI date picker plugin. */
|
637
|
+
/* Written by Dejan Dimić. */
|
638
|
+
jQuery(function($){
|
639
|
+
$.datepicker.regional['sr'] = {
|
640
|
+
closeText: 'Затвори',
|
641
|
+
prevText: '<',
|
642
|
+
nextText: '>',
|
643
|
+
currentText: 'Данас',
|
644
|
+
monthNames: ['Јануар','Фебруар','Март','Април','Мај','Јун',
|
645
|
+
'Јул','Август','Септембар','Октобар','Новембар','Децембар'],
|
646
|
+
monthNamesShort: ['Јан','Феб','Мар','Апр','Мај','Јун',
|
647
|
+
'Јул','Авг','Сеп','Окт','Нов','Дец'],
|
648
|
+
dayNames: ['Недеља','Понедељак','Уторак','Среда','Четвртак','Петак','Субота'],
|
649
|
+
dayNamesShort: ['Нед','Пон','Уто','Сре','Чет','Пет','Суб'],
|
650
|
+
dayNamesMin: ['Не','По','Ут','Ср','Че','Пе','Су'],
|
651
|
+
dateFormat: 'dd/mm/yy', firstDay: 1,
|
652
|
+
isRTL: false};
|
653
|
+
$.datepicker.setDefaults($.datepicker.regional['sr']);
|
654
|
+
});
|
655
|
+
/* Swedish initialisation for the jQuery UI date picker plugin. */
|
656
|
+
/* Written by Anders Ekdahl ( anders@nomadiz.se). */
|
657
|
+
jQuery(function($){
|
658
|
+
$.datepicker.regional['sv'] = {
|
659
|
+
closeText: 'Stäng',
|
660
|
+
prevText: '«Förra',
|
661
|
+
nextText: 'Nästa»',
|
662
|
+
currentText: 'Idag',
|
663
|
+
monthNames: ['Januari','Februari','Mars','April','Maj','Juni',
|
664
|
+
'Juli','Augusti','September','Oktober','November','December'],
|
665
|
+
monthNamesShort: ['Jan','Feb','Mar','Apr','Maj','Jun',
|
666
|
+
'Jul','Aug','Sep','Okt','Nov','Dec'],
|
667
|
+
dayNamesShort: ['Sön','Mån','Tis','Ons','Tor','Fre','Lör'],
|
668
|
+
dayNames: ['Söndag','Måndag','Tisdag','Onsdag','Torsdag','Fredag','Lördag'],
|
669
|
+
dayNamesMin: ['Sö','Må','Ti','On','To','Fr','Lö'],
|
670
|
+
dateFormat: 'yy-mm-dd', firstDay: 1,
|
671
|
+
isRTL: false};
|
672
|
+
$.datepicker.setDefaults($.datepicker.regional['sv']);
|
673
|
+
});
|
674
|
+
/* Thai initialisation for the jQuery UI date picker plugin. */
|
675
|
+
/* Written by pipo (pipo@sixhead.com). */
|
676
|
+
jQuery(function($){
|
677
|
+
$.datepicker.regional['th'] = {
|
678
|
+
closeText: 'ปิด',
|
679
|
+
prevText: '« ย้อน',
|
680
|
+
nextText: 'ถัดไป »',
|
681
|
+
currentText: 'วันนี้',
|
682
|
+
monthNames: ['มกราคม','กุมภาพันธ์','มีนาคม','เมษายน','พฤษภาคม','มิถุนายน',
|
683
|
+
'กรกฏาคม','สิงหาคม','กันยายน','ตุลาคม','พฤศจิกายน','ธันวาคม'],
|
684
|
+
monthNamesShort: ['ม.ค.','ก.พ.','มี.ค.','เม.ย.','พ.ค.','มิ.ย.',
|
685
|
+
'ก.ค.','ส.ค.','ก.ย.','ต.ค.','พ.ย.','ธ.ค.'],
|
686
|
+
dayNames: ['อาทิตย์','จันทร์','อังคาร','พุธ','พฤหัสบดี','ศุกร์','เสาร์'],
|
687
|
+
dayNamesShort: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
|
688
|
+
dayNamesMin: ['อา.','จ.','อ.','พ.','พฤ.','ศ.','ส.'],
|
689
|
+
dateFormat: 'dd/mm/yy', firstDay: 0,
|
690
|
+
isRTL: false};
|
691
|
+
$.datepicker.setDefaults($.datepicker.regional['th']);
|
692
|
+
});/* Turkish initialisation for the jQuery UI date picker plugin. */
|
693
|
+
/* Written by Izzet Emre Erkan (kara@karalamalar.net). */
|
694
|
+
jQuery(function($){
|
695
|
+
$.datepicker.regional['tr'] = {
|
696
|
+
closeText: 'kapat',
|
697
|
+
prevText: '<geri',
|
698
|
+
nextText: 'ileri>',
|
699
|
+
currentText: 'bugün',
|
700
|
+
monthNames: ['Ocak','Şubat','Mart','Nisan','Mayıs','Haziran',
|
701
|
+
'Temmuz','Ağustos','Eylül','Ekim','Kasım','Aralık'],
|
702
|
+
monthNamesShort: ['Oca','Şub','Mar','Nis','May','Haz',
|
703
|
+
'Tem','Ağu','Eyl','Eki','Kas','Ara'],
|
704
|
+
dayNames: ['Pazar','Pazartesi','Salı','Çarşamba','Perşembe','Cuma','Cumartesi'],
|
705
|
+
dayNamesShort: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
|
706
|
+
dayNamesMin: ['Pz','Pt','Sa','Ça','Pe','Cu','Ct'],
|
707
|
+
dateFormat: 'dd.mm.yy', firstDay: 1,
|
708
|
+
isRTL: false};
|
709
|
+
$.datepicker.setDefaults($.datepicker.regional['tr']);
|
710
|
+
});/* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */
|
711
|
+
/* Written by Maxim Drogobitskiy (maxdao@gmail.com). */
|
712
|
+
jQuery(function($){
|
713
|
+
$.datepicker.regional['uk'] = {
|
714
|
+
clearText: 'Очистити', clearStatus: '',
|
715
|
+
closeText: 'Закрити', closeStatus: '',
|
716
|
+
prevText: '<', prevStatus: '',
|
717
|
+
prevBigText: '<<', prevBigStatus: '',
|
718
|
+
nextText: '>', nextStatus: '',
|
719
|
+
nextBigText: '>>', nextBigStatus: '',
|
720
|
+
currentText: 'Сьогодні', currentStatus: '',
|
721
|
+
monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень',
|
722
|
+
'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'],
|
723
|
+
monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер',
|
724
|
+
'Лип','Сер','Вер','Жов','Лис','Гру'],
|
725
|
+
monthStatus: '', yearStatus: '',
|
726
|
+
weekHeader: 'Не', weekStatus: '',
|
727
|
+
dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'],
|
728
|
+
dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'],
|
729
|
+
dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'],
|
730
|
+
dayStatus: 'DD', dateStatus: 'D, M d',
|
731
|
+
dateFormat: 'dd/mm/yy', firstDay: 1,
|
732
|
+
initStatus: '', isRTL: false};
|
733
|
+
$.datepicker.setDefaults($.datepicker.regional['uk']);
|
734
|
+
});/* Chinese initialisation for the jQuery UI date picker plugin. */
|
735
|
+
/* Written by Cloudream (cloudream@gmail.com). */
|
736
|
+
jQuery(function($){
|
737
|
+
$.datepicker.regional['zh-CN'] = {
|
738
|
+
closeText: '关闭',
|
739
|
+
prevText: '<上月',
|
740
|
+
nextText: '下月>',
|
741
|
+
currentText: '今天',
|
742
|
+
monthNames: ['一月','二月','三月','四月','五月','六月',
|
743
|
+
'七月','八月','九月','十月','十一月','十二月'],
|
744
|
+
monthNamesShort: ['一','二','三','四','五','六',
|
745
|
+
'七','八','九','十','十一','十二'],
|
746
|
+
dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'],
|
747
|
+
dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'],
|
748
|
+
dayNamesMin: ['日','一','二','三','四','五','六'],
|
749
|
+
dateFormat: 'yy-mm-dd', firstDay: 1,
|
750
|
+
isRTL: false};
|
751
|
+
$.datepicker.setDefaults($.datepicker.regional['zh-CN']);
|
752
|
+
});
|
753
|
+
/* Chinese initialisation for the jQuery UI date picker plugin. */
|
754
|
+
/* Written by Ressol (ressol@gmail.com). */
|
755
|
+
jQuery(function($){
|
756
|
+
$.datepicker.regional['zh-TW'] = {
|
757
|
+
closeText: '關閉',
|
758
|
+
prevText: '<上月',
|
759
|
+
nextText: '下月>',
|
760
|
+
currentText: '今天',
|
761
|
+
monthNames: ['一月','二月','三月','四月','五月','六月',
|
762
|
+
'七月','八月','九月','十月','十一月','十二月'],
|
763
|
+
monthNamesShort: ['一','二','三','四','五','六',
|
764
|
+
'七','八','九','十','十一','十二'],
|
765
|
+
dayNames: ['星期日','星期一','星期二','星期三','星期四','星期五','星期六'],
|
766
|
+
dayNamesShort: ['周日','周一','周二','周三','周四','周五','周六'],
|
767
|
+
dayNamesMin: ['日','一','二','三','四','五','六'],
|
768
|
+
dateFormat: 'yy/mm/dd', firstDay: 1,
|
769
|
+
isRTL: false};
|
770
|
+
$.datepicker.setDefaults($.datepicker.regional['zh-TW']);
|
771
|
+
});
|