activeldap 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +454 -0
- data/COPYING +340 -0
- data/LICENSE +58 -0
- data/README +101 -0
- data/Rakefile +175 -0
- data/TODO +25 -0
- data/benchmark/bench-al.rb +202 -0
- data/benchmark/config.yaml.sample +5 -0
- data/data/locale/en/LC_MESSAGES/active-ldap.mo +0 -0
- data/data/locale/ja/LC_MESSAGES/active-ldap.mo +0 -0
- data/examples/al-admin/README +182 -0
- data/examples/al-admin/Rakefile +10 -0
- data/examples/al-admin/app/controllers/account_controller.rb +59 -0
- data/examples/al-admin/app/controllers/application.rb +34 -0
- data/examples/al-admin/app/controllers/attributes_controller.rb +17 -0
- data/examples/al-admin/app/controllers/directory_controller.rb +47 -0
- data/examples/al-admin/app/controllers/object_classes_controller.rb +17 -0
- data/examples/al-admin/app/controllers/syntaxes_controller.rb +17 -0
- data/examples/al-admin/app/controllers/users_controller.rb +51 -0
- data/examples/al-admin/app/controllers/welcome_controller.rb +10 -0
- data/examples/al-admin/app/helpers/account_helper.rb +2 -0
- data/examples/al-admin/app/helpers/application_helper.rb +42 -0
- data/examples/al-admin/app/helpers/attributes_helper.rb +15 -0
- data/examples/al-admin/app/helpers/directory_helper.rb +7 -0
- data/examples/al-admin/app/helpers/object_classes_helper.rb +10 -0
- data/examples/al-admin/app/helpers/syntaxes_helper.rb +10 -0
- data/examples/al-admin/app/helpers/url_helper.rb +13 -0
- data/examples/al-admin/app/helpers/users_helper.rb +17 -0
- data/examples/al-admin/app/helpers/welcome_helper.rb +2 -0
- data/examples/al-admin/app/models/entry.rb +23 -0
- data/examples/al-admin/app/models/ldap_user.rb +54 -0
- data/examples/al-admin/app/models/user.rb +91 -0
- data/examples/al-admin/app/views/_entry/_attributes_information.rhtml +23 -0
- data/examples/al-admin/app/views/_entry/_entry.rhtml +15 -0
- data/examples/al-admin/app/views/_schema/_aliases.rhtml +7 -0
- data/examples/al-admin/app/views/_switcher/_after.rhtml +2 -0
- data/examples/al-admin/app/views/_switcher/_before.rhtml +5 -0
- data/examples/al-admin/app/views/account/login.rhtml +26 -0
- data/examples/al-admin/app/views/account/sign_up.rhtml +28 -0
- data/examples/al-admin/app/views/attributes/_attributes.rhtml +19 -0
- data/examples/al-admin/app/views/attributes/_detail.rhtml +29 -0
- data/examples/al-admin/app/views/attributes/index.rhtml +3 -0
- data/examples/al-admin/app/views/attributes/show.rhtml +31 -0
- data/examples/al-admin/app/views/directory/_tree.rhtml +10 -0
- data/examples/al-admin/app/views/directory/_tree_view_js.rhtml +26 -0
- data/examples/al-admin/app/views/directory/index.rhtml +13 -0
- data/examples/al-admin/app/views/directory/populate.rhtml +2 -0
- data/examples/al-admin/app/views/layouts/_flash_box.rhtml +4 -0
- data/examples/al-admin/app/views/layouts/_footer.rhtml +9 -0
- data/examples/al-admin/app/views/layouts/_header_menu.rhtml +10 -0
- data/examples/al-admin/app/views/layouts/_main_menu.rhtml +18 -0
- data/examples/al-admin/app/views/layouts/application.rhtml +56 -0
- data/examples/al-admin/app/views/object_classes/_attributes.rhtml +28 -0
- data/examples/al-admin/app/views/object_classes/_object_classes.rhtml +19 -0
- data/examples/al-admin/app/views/object_classes/index.rhtml +3 -0
- data/examples/al-admin/app/views/object_classes/show.rhtml +39 -0
- data/examples/al-admin/app/views/syntaxes/_detail.rhtml +14 -0
- data/examples/al-admin/app/views/syntaxes/_syntaxes.rhtml +19 -0
- data/examples/al-admin/app/views/syntaxes/index.rhtml +3 -0
- data/examples/al-admin/app/views/syntaxes/show.rhtml +22 -0
- data/examples/al-admin/app/views/users/_attributes_update_form.rhtml +30 -0
- data/examples/al-admin/app/views/users/_form.rhtml +13 -0
- data/examples/al-admin/app/views/users/_object_classes_update_form.rhtml +40 -0
- data/examples/al-admin/app/views/users/_password_change_form.rhtml +20 -0
- data/examples/al-admin/app/views/users/edit.rhtml +15 -0
- data/examples/al-admin/app/views/users/index.rhtml +10 -0
- data/examples/al-admin/app/views/users/show.rhtml +11 -0
- data/examples/al-admin/app/views/welcome/index.rhtml +13 -0
- data/examples/al-admin/config/boot.rb +45 -0
- data/examples/al-admin/config/database.yml.example +19 -0
- data/examples/al-admin/config/environment.rb +70 -0
- data/examples/al-admin/config/environments/development.rb +21 -0
- data/examples/al-admin/config/environments/production.rb +18 -0
- data/examples/al-admin/config/environments/test.rb +19 -0
- data/examples/al-admin/config/ldap.yml.example +21 -0
- data/examples/al-admin/config/routes.rb +46 -0
- data/examples/al-admin/db/migrate/001_create_users.rb +16 -0
- data/examples/al-admin/lib/accept_http_rails_relative_url_root.rb +9 -0
- data/examples/al-admin/lib/authenticated_system.rb +124 -0
- data/examples/al-admin/lib/authenticated_test_helper.rb +113 -0
- data/examples/al-admin/lib/tasks/gettext.rake +35 -0
- data/examples/al-admin/po/en/al-admin.po +341 -0
- data/examples/al-admin/po/ja/al-admin.po +341 -0
- data/examples/al-admin/po/nl/al-admin.po +373 -0
- data/examples/al-admin/public/.htaccess +40 -0
- data/examples/al-admin/public/404.html +30 -0
- data/examples/al-admin/public/500.html +30 -0
- data/examples/al-admin/public/dispatch.cgi +10 -0
- data/examples/al-admin/public/dispatch.fcgi +24 -0
- data/examples/al-admin/public/dispatch.rb +10 -0
- data/examples/al-admin/public/favicon.ico +0 -0
- data/examples/al-admin/public/images/active-ldap.svg +6351 -0
- data/examples/al-admin/public/images/al-admin.png +0 -0
- data/examples/al-admin/public/images/al-admin.svg +6371 -0
- data/examples/al-admin/public/images/header-background.png +0 -0
- data/examples/al-admin/public/images/header-background.svg +99 -0
- data/examples/al-admin/public/images/rails.png +0 -0
- data/examples/al-admin/public/images/spinelz/accordion_tab_left_active.gif +0 -0
- data/examples/al-admin/public/images/spinelz/accordion_tab_left_inactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/accordion_tab_middle_active.gif +0 -0
- data/examples/al-admin/public/images/spinelz/accordion_tab_middle_inactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/accordion_tab_right_active.gif +0 -0
- data/examples/al-admin/public/images/spinelz/accordion_tab_right_inactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_back.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_bottom_left.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_bottom_middle.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_bottom_right.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_left_down_arrow.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_left_up_arrow.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_middle_left.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_middle_right.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_right_down_arrow.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_right_up_arrow.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_top_left.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_top_middle.gif +0 -0
- data/examples/al-admin/public/images/spinelz/balloon_top_right.gif +0 -0
- data/examples/al-admin/public/images/spinelz/barchart_h.gif +0 -0
- data/examples/al-admin/public/images/spinelz/barchart_v.gif +0 -0
- data/examples/al-admin/public/images/spinelz/button.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_default_handler.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_delete.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_next.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_next_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_pre.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_pre_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_private_icon.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calendar_schedule.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calender_back.gif +0 -0
- data/examples/al-admin/public/images/spinelz/calender_back_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker2_back.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker2_back_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker2_next.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker2_next_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker2_pre.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker2_pre_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker_back.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker_back_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker_next.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker_next_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker_pre.gif +0 -0
- data/examples/al-admin/public/images/spinelz/datepicker_pre_second.gif +0 -0
- data/examples/al-admin/public/images/spinelz/grid_down.gif +0 -0
- data/examples/al-admin/public/images/spinelz/grid_state.gif +0 -0
- data/examples/al-admin/public/images/spinelz/grid_up.gif +0 -0
- data/examples/al-admin/public/images/spinelz/icon_day.gif +0 -0
- data/examples/al-admin/public/images/spinelz/icon_month.gif +0 -0
- data/examples/al-admin/public/images/spinelz/icon_week.gif +0 -0
- data/examples/al-admin/public/images/spinelz/menubar_back.gif +0 -0
- data/examples/al-admin/public/images/spinelz/menubar_subcontents_back.gif +0 -0
- data/examples/al-admin/public/images/spinelz/navPanel_tab_left_active.gif +0 -0
- data/examples/al-admin/public/images/spinelz/navPanel_tab_left_inactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/navPanel_tab_middle_active.gif +0 -0
- data/examples/al-admin/public/images/spinelz/navPanel_tab_middle_inactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/navPanel_tab_right_active.gif +0 -0
- data/examples/al-admin/public/images/spinelz/navPanel_tab_right_inactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/select_date.gif +0 -0
- data/examples/al-admin/public/images/spinelz/selectabletable_selected.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_about.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_menu.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_sample.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabBottomActive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabBottomInactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleActive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleActive2.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleInactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleInactive2.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabTopActive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabTopInactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sideBarBox_tabbar.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sortableTable_down.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sortableTable_normal.gif +0 -0
- data/examples/al-admin/public/images/spinelz/sortableTable_up.gif +0 -0
- data/examples/al-admin/public/images/spinelz/switcher_close.gif +0 -0
- data/examples/al-admin/public/images/spinelz/switcher_open.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tabBox_close.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tabBox_tabLeftActive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tabBox_tabLeftInactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tabBox_tabMiddleActive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tabBox_tabMiddleInactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tabBox_tabRightActive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tabBox_tabRightInactive.gif +0 -0
- data/examples/al-admin/public/images/spinelz/tab_bar.gif +0 -0
- data/examples/al-admin/public/images/spinelz/table_back.gif +0 -0
- data/examples/al-admin/public/images/spinelz/timepicker_clock.gif +0 -0
- data/examples/al-admin/public/images/spinelz/toolbar_close.gif +0 -0
- data/examples/al-admin/public/images/spinelz/toolbar_left.gif +0 -0
- data/examples/al-admin/public/images/spinelz/toolbar_max.gif +0 -0
- data/examples/al-admin/public/images/spinelz/toolbar_middle.gif +0 -0
- data/examples/al-admin/public/images/spinelz/toolbar_min.gif +0 -0
- data/examples/al-admin/public/images/spinelz/toolbar_next.gif +0 -0
- data/examples/al-admin/public/images/spinelz/toolbar_right.gif +0 -0
- data/examples/al-admin/public/images/spinelz/treeview_dir.gif +0 -0
- data/examples/al-admin/public/images/spinelz/treeview_file.gif +0 -0
- data/examples/al-admin/public/images/spinelz/treeview_group.gif +0 -0
- data/examples/al-admin/public/images/spinelz/treeview_group_special.gif +0 -0
- data/examples/al-admin/public/images/spinelz/treeview_state.gif +0 -0
- data/examples/al-admin/public/images/spinelz/treeview_user.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_bottom_left.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_bottom_middle.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_bottom_right.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_close.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_max.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_middle_left.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_middle_right.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_min.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_top_left.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_top_middle.gif +0 -0
- data/examples/al-admin/public/images/spinelz/window_top_right.gif +0 -0
- data/examples/al-admin/public/javascripts/application.js +2 -0
- data/examples/al-admin/public/javascripts/controls.js +833 -0
- data/examples/al-admin/public/javascripts/dragdrop.js +942 -0
- data/examples/al-admin/public/javascripts/effects.js +1088 -0
- data/examples/al-admin/public/javascripts/prototype.js +2515 -0
- data/examples/al-admin/public/javascripts/spinelz/accordion.js +185 -0
- data/examples/al-admin/public/javascripts/spinelz/ajaxHistory.js +157 -0
- data/examples/al-admin/public/javascripts/spinelz/balloon.js +287 -0
- data/examples/al-admin/public/javascripts/spinelz/barchart.js +524 -0
- data/examples/al-admin/public/javascripts/spinelz/calendar.js +3012 -0
- data/examples/al-admin/public/javascripts/spinelz/colorpicker.js +128 -0
- data/examples/al-admin/public/javascripts/spinelz/datepicker.js +438 -0
- data/examples/al-admin/public/javascripts/spinelz/grid.js +1391 -0
- data/examples/al-admin/public/javascripts/spinelz/grid_resizeEx.js +100 -0
- data/examples/al-admin/public/javascripts/spinelz/grid_sortabletableEx.js +129 -0
- data/examples/al-admin/public/javascripts/spinelz/inplaceEditorEx.js +148 -0
- data/examples/al-admin/public/javascripts/spinelz/menubar.js +232 -0
- data/examples/al-admin/public/javascripts/spinelz/navPanel.js +170 -0
- data/examples/al-admin/public/javascripts/spinelz/selectableTable.js +433 -0
- data/examples/al-admin/public/javascripts/spinelz/sideBarBox.js +282 -0
- data/examples/al-admin/public/javascripts/spinelz/sideBarBox_effects.js +83 -0
- data/examples/al-admin/public/javascripts/spinelz/sortableTable.js +270 -0
- data/examples/al-admin/public/javascripts/spinelz/switcher.js +78 -0
- data/examples/al-admin/public/javascripts/spinelz/tabBox.js +469 -0
- data/examples/al-admin/public/javascripts/spinelz/timepicker.js +384 -0
- data/examples/al-admin/public/javascripts/spinelz/toolbar.js +152 -0
- data/examples/al-admin/public/javascripts/spinelz/treeview.js +703 -0
- data/examples/al-admin/public/javascripts/spinelz/window.js +641 -0
- data/examples/al-admin/public/javascripts/spinelz/window_resizeEx.js +130 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/builder.js +131 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/controls.js +835 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/dragdrop.js +944 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/effects.js +1090 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/json.js +139 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/prototype.js +2515 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/resize.js +215 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/scriptaculous.js +51 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/slider.js +278 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/spinelz_util.js +1266 -0
- data/examples/al-admin/public/javascripts/spinelz_lib/unittest.js +564 -0
- data/examples/al-admin/public/robots.txt +1 -0
- data/examples/al-admin/public/stylesheets/account.css +41 -0
- data/examples/al-admin/public/stylesheets/attributes.css +1 -0
- data/examples/al-admin/public/stylesheets/base.css +99 -0
- data/examples/al-admin/public/stylesheets/common.css +2 -0
- data/examples/al-admin/public/stylesheets/detail.css +36 -0
- data/examples/al-admin/public/stylesheets/directory.css +22 -0
- data/examples/al-admin/public/stylesheets/object-classes.css +6 -0
- data/examples/al-admin/public/stylesheets/rails.css +35 -0
- data/examples/al-admin/public/stylesheets/spinelz/accordion.css +59 -0
- data/examples/al-admin/public/stylesheets/spinelz/balloon.css +151 -0
- data/examples/al-admin/public/stylesheets/spinelz/calendar.css +564 -0
- data/examples/al-admin/public/stylesheets/spinelz/datepicker.css +175 -0
- data/examples/al-admin/public/stylesheets/spinelz/grid.css +137 -0
- data/examples/al-admin/public/stylesheets/spinelz/menubar.css +78 -0
- data/examples/al-admin/public/stylesheets/spinelz/modal.css +22 -0
- data/examples/al-admin/public/stylesheets/spinelz/navPanel.css +58 -0
- data/examples/al-admin/public/stylesheets/spinelz/selectableTable.css +28 -0
- data/examples/al-admin/public/stylesheets/spinelz/sideBarBox.css +82 -0
- data/examples/al-admin/public/stylesheets/spinelz/sortableTable.css +51 -0
- data/examples/al-admin/public/stylesheets/spinelz/switcher.css +23 -0
- data/examples/al-admin/public/stylesheets/spinelz/tabBox.css +94 -0
- data/examples/al-admin/public/stylesheets/spinelz/timepicker.css +508 -0
- data/examples/al-admin/public/stylesheets/spinelz/toolbar.css +82 -0
- data/examples/al-admin/public/stylesheets/spinelz/treeview.css +121 -0
- data/examples/al-admin/public/stylesheets/spinelz/window.css +140 -0
- data/examples/al-admin/public/stylesheets/structure.css +81 -0
- data/examples/al-admin/public/stylesheets/syntaxes.css +1 -0
- data/examples/al-admin/public/stylesheets/users.css +13 -0
- data/examples/al-admin/public/stylesheets/welcome.css +0 -0
- data/examples/al-admin/script/about +3 -0
- data/examples/al-admin/script/breakpointer +3 -0
- data/examples/al-admin/script/console +3 -0
- data/examples/al-admin/script/destroy +3 -0
- data/examples/al-admin/script/generate +3 -0
- data/examples/al-admin/script/performance/benchmarker +3 -0
- data/examples/al-admin/script/performance/profiler +3 -0
- data/examples/al-admin/script/plugin +3 -0
- data/examples/al-admin/script/process/inspector +3 -0
- data/examples/al-admin/script/process/reaper +3 -0
- data/examples/al-admin/script/process/spawner +3 -0
- data/examples/al-admin/script/runner +3 -0
- data/examples/al-admin/script/server +3 -0
- data/examples/al-admin/test/fixtures/users.yml +9 -0
- data/examples/al-admin/test/functional/account_controller_test.rb +24 -0
- data/examples/al-admin/test/functional/attributes_controller_test.rb +18 -0
- data/examples/al-admin/test/functional/directory_controller_test.rb +18 -0
- data/examples/al-admin/test/functional/object_classes_controller_test.rb +18 -0
- data/examples/al-admin/test/functional/syntaxes_controller_test.rb +18 -0
- data/examples/al-admin/test/functional/users_controller_test.rb +18 -0
- data/examples/al-admin/test/functional/welcome_controller_test.rb +18 -0
- data/examples/al-admin/test/run-test.sh +3 -0
- data/examples/al-admin/test/test_helper.rb +28 -0
- data/examples/al-admin/test/unit/user_test.rb +13 -0
- data/examples/al-admin/vendor/plugins/exception_notification/README +111 -0
- data/examples/al-admin/vendor/plugins/exception_notification/init.rb +1 -0
- data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifiable.rb +99 -0
- data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier.rb +67 -0
- data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier_helper.rb +77 -0
- data/examples/al-admin/vendor/plugins/exception_notification/test/exception_notifier_helper_test.rb +61 -0
- data/examples/al-admin/vendor/plugins/exception_notification/test/test_helper.rb +7 -0
- data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_backtrace.rhtml +1 -0
- data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_environment.rhtml +7 -0
- data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_inspect_model.rhtml +16 -0
- data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_request.rhtml +3 -0
- data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_session.rhtml +2 -0
- data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_title.rhtml +3 -0
- data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/exception_notification.rhtml +6 -0
- data/examples/config.yaml.example +5 -0
- data/examples/example.der +0 -0
- data/examples/example.jpg +0 -0
- data/examples/groupadd +41 -0
- data/examples/groupdel +35 -0
- data/examples/groupls +49 -0
- data/examples/groupmod +42 -0
- data/examples/lpasswd +55 -0
- data/examples/objects/group.rb +13 -0
- data/examples/objects/ou.rb +4 -0
- data/examples/objects/user.rb +20 -0
- data/examples/ouadd +38 -0
- data/examples/useradd +45 -0
- data/examples/useradd-binary +50 -0
- data/examples/userdel +34 -0
- data/examples/userls +50 -0
- data/examples/usermod +42 -0
- data/examples/usermod-binary-add +47 -0
- data/examples/usermod-binary-add-time +51 -0
- data/examples/usermod-binary-del +48 -0
- data/examples/usermod-lang-add +43 -0
- data/lib/active_ldap/acts/tree.rb +75 -0
- data/lib/active_ldap/adapter/base.rb +531 -0
- data/lib/active_ldap/adapter/ldap.rb +231 -0
- data/lib/active_ldap/adapter/ldap_ext.rb +69 -0
- data/lib/active_ldap/adapter/net_ldap.rb +292 -0
- data/lib/active_ldap/adapter/net_ldap_ext.rb +29 -0
- data/lib/active_ldap/association/belongs_to.rb +47 -0
- data/lib/active_ldap/association/belongs_to_many.rb +42 -0
- data/lib/active_ldap/association/children.rb +21 -0
- data/lib/active_ldap/association/collection.rb +83 -0
- data/lib/active_ldap/association/has_many.rb +31 -0
- data/lib/active_ldap/association/has_many_utils.rb +35 -0
- data/lib/active_ldap/association/has_many_wrap.rb +46 -0
- data/lib/active_ldap/association/proxy.rb +102 -0
- data/lib/active_ldap/associations.rb +172 -0
- data/lib/active_ldap/attributes.rb +211 -0
- data/lib/active_ldap/base.rb +1273 -0
- data/lib/active_ldap/callbacks.rb +19 -0
- data/lib/active_ldap/command.rb +49 -0
- data/lib/active_ldap/configuration.rb +147 -0
- data/lib/active_ldap/connection.rb +237 -0
- data/lib/active_ldap/distinguished_name.rb +251 -0
- data/lib/active_ldap/escape.rb +12 -0
- data/lib/active_ldap/get_text/parser.rb +159 -0
- data/lib/active_ldap/get_text.rb +8 -0
- data/lib/active_ldap/get_text_fallback.rb +53 -0
- data/lib/active_ldap/get_text_support.rb +26 -0
- data/lib/active_ldap/helper.rb +33 -0
- data/lib/active_ldap/human_readable.rb +112 -0
- data/lib/active_ldap/ldap_error.rb +74 -0
- data/lib/active_ldap/ldif.rb +52 -0
- data/lib/active_ldap/object_class.rb +93 -0
- data/lib/active_ldap/operations.rb +429 -0
- data/lib/active_ldap/populate.rb +44 -0
- data/lib/active_ldap/schema/syntaxes.rb +386 -0
- data/lib/active_ldap/schema.rb +530 -0
- data/lib/active_ldap/timeout.rb +75 -0
- data/lib/active_ldap/timeout_stub.rb +17 -0
- data/lib/active_ldap/user_password.rb +93 -0
- data/lib/active_ldap/validations.rb +171 -0
- data/lib/active_ldap.rb +982 -0
- data/po/en/active-ldap.po +3677 -0
- data/po/ja/active-ldap.po +3713 -0
- data/rails/plugin/active_ldap/README +54 -0
- data/rails/plugin/active_ldap/generators/model_active_ldap/USAGE +17 -0
- data/rails/plugin/active_ldap/generators/model_active_ldap/model_active_ldap_generator.rb +70 -0
- data/rails/plugin/active_ldap/generators/model_active_ldap/templates/fixtures.yml +11 -0
- data/rails/plugin/active_ldap/generators/model_active_ldap/templates/model_active_ldap.rb +3 -0
- data/rails/plugin/active_ldap/generators/model_active_ldap/templates/unit_test.rb +10 -0
- data/rails/plugin/active_ldap/generators/scaffold_active_ldap/scaffold_active_ldap_generator.rb +7 -0
- data/rails/plugin/active_ldap/generators/scaffold_al/scaffold_al_generator.rb +20 -0
- data/rails/plugin/active_ldap/init.rb +26 -0
- data/test/al-test-utils.rb +362 -0
- data/test/command.rb +62 -0
- data/test/config.yaml.sample +6 -0
- data/test/run-test.rb +31 -0
- data/test/test-unit-ext/always-show-result.rb +28 -0
- data/test/test-unit-ext/backtrace-filter.rb +17 -0
- data/test/test-unit-ext/long-display-for-emacs.rb +25 -0
- data/test/test-unit-ext/priority.rb +163 -0
- data/test/test-unit-ext.rb +4 -0
- data/test/test_acts_as_tree.rb +57 -0
- data/test/test_adapter.rb +98 -0
- data/test/test_associations.rb +353 -0
- data/test/test_attributes.rb +79 -0
- data/test/test_base.rb +547 -0
- data/test/test_base_per_instance.rb +55 -0
- data/test/test_bind.rb +62 -0
- data/test/test_callback.rb +35 -0
- data/test/test_configuration.rb +40 -0
- data/test/test_connection.rb +59 -0
- data/test/test_connection_per_class.rb +58 -0
- data/test/test_connection_per_dn.rb +78 -0
- data/test/test_dn.rb +160 -0
- data/test/test_find.rb +96 -0
- data/test/test_groupadd.rb +50 -0
- data/test/test_groupdel.rb +46 -0
- data/test/test_groupls.rb +107 -0
- data/test/test_groupmod.rb +51 -0
- data/test/test_ldif.rb +35 -0
- data/test/test_lpasswd.rb +75 -0
- data/test/test_object_class.rb +56 -0
- data/test/test_reflection.rb +179 -0
- data/test/test_schema.rb +433 -0
- data/test/test_syntax.rb +329 -0
- data/test/test_user.rb +227 -0
- data/test/test_user_password.rb +93 -0
- data/test/test_useradd-binary.rb +61 -0
- data/test/test_useradd.rb +57 -0
- data/test/test_userdel.rb +48 -0
- data/test/test_userls.rb +91 -0
- data/test/test_usermod-binary-add-time.rb +64 -0
- data/test/test_usermod-binary-add.rb +63 -0
- data/test/test_usermod-binary-del.rb +66 -0
- data/test/test_usermod-lang-add.rb +59 -0
- data/test/test_usermod.rb +58 -0
- data/test/test_validation.rb +110 -0
- metadata +536 -0
@@ -0,0 +1,128 @@
|
|
1
|
+
// Copyright (c) 2007 spinelz.org (http://script.spinelz.org/)
|
2
|
+
//
|
3
|
+
// Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
// a copy of this software and associated documentation files (the
|
5
|
+
// "Software"), to deal in the Software without restriction, including
|
6
|
+
// without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
// distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
// permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
// the following conditions:
|
10
|
+
//
|
11
|
+
// The above copyright notice and this permission notice shall be
|
12
|
+
// included in all copies or substantial portions of the Software.
|
13
|
+
//
|
14
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
+
|
22
|
+
var ColorPicker = Class.create();
|
23
|
+
ColorPicker.className = {
|
24
|
+
}
|
25
|
+
|
26
|
+
ColorPicker.prototype = {
|
27
|
+
initialize: function(element) {
|
28
|
+
this.element = $(element);
|
29
|
+
Element.setStyle(this.element, {position: 'absolute'});
|
30
|
+
this.hide();
|
31
|
+
this.element.innerHTML = this.build();
|
32
|
+
this.setEvent();
|
33
|
+
this.doclistener = this.hide.bindAsEventListener(this);
|
34
|
+
if (!UserAgent.isIE()) {
|
35
|
+
Element.setStyle(this.element, {
|
36
|
+
width: 15 * 18 + 'px',
|
37
|
+
height: 15 * 12 + 'px'
|
38
|
+
});
|
39
|
+
}
|
40
|
+
Element.setStyle(this.element, {border: '3px solid gray'});
|
41
|
+
this.setting = $H({});
|
42
|
+
this.triggerId = null;
|
43
|
+
},
|
44
|
+
|
45
|
+
set: function(setting) {
|
46
|
+
var trigger = $(setting.trigger);
|
47
|
+
this.setting[trigger.id] = setting;
|
48
|
+
Event.observe(trigger, 'click', this.show.bindAsEventListener(this, trigger.id));
|
49
|
+
},
|
50
|
+
|
51
|
+
build: function() {
|
52
|
+
var colors = [0, 0, 0];
|
53
|
+
var rgb = null;
|
54
|
+
var id = null;
|
55
|
+
var idBase = this.element.id;
|
56
|
+
var html = "<div style='cursor: pointer;'>";
|
57
|
+
var halfCount = 51 * 3;
|
58
|
+
this.idList = [];
|
59
|
+
for (var i = 0; i <= 255; i += 51) {
|
60
|
+
if (i == halfCount) html += "<div style='clear: left;'></div>";
|
61
|
+
for (var j = 0; j <= 255; j += 51) {
|
62
|
+
html += "<div style='float: left; width: 15px;'>";
|
63
|
+
for (var k = 0; k <= 255; k += 51) {
|
64
|
+
rgb = "#" + i.toColorPart() + j.toColorPart() + k.toColorPart();
|
65
|
+
id = idBase.appendSuffix(rgb);
|
66
|
+
this.idList.push(id);
|
67
|
+
html += "<div id='" + id + "' style='width: 100%; height: 15px; background-color: " + rgb + "'></div>";
|
68
|
+
}
|
69
|
+
html += "</div>"
|
70
|
+
}
|
71
|
+
}
|
72
|
+
return html + "</div>";
|
73
|
+
},
|
74
|
+
|
75
|
+
setEvent: function() {
|
76
|
+
this.idList.each(function(id) {
|
77
|
+
// Event.observe(id, 'mouseover', this.mouseOver.bind(this, id));
|
78
|
+
Event.observe(id, 'mousedown', this.mouseDown.bind(this, id));
|
79
|
+
}.bind(this));
|
80
|
+
},
|
81
|
+
|
82
|
+
mouseOver: function(id) {
|
83
|
+
this.setColor(id.getSuffix());
|
84
|
+
},
|
85
|
+
|
86
|
+
mouseDown: function(id) {
|
87
|
+
this.setValue(id.getSuffix());
|
88
|
+
this.setColor(id.getSuffix());
|
89
|
+
},
|
90
|
+
|
91
|
+
setValue: function(color) {
|
92
|
+
var valueTarget = $(this.setting[this.triggerId].value);
|
93
|
+
if (valueTarget) {
|
94
|
+
if (valueTarget.tagName.toLowerCase() == 'input') {
|
95
|
+
valueTarget.value = color;
|
96
|
+
} else {
|
97
|
+
valueTarget.innerHTML = color;
|
98
|
+
}
|
99
|
+
}
|
100
|
+
},
|
101
|
+
|
102
|
+
setColor: function(color) {
|
103
|
+
var colorTarget = $(this.setting[this.triggerId].color);
|
104
|
+
if (colorTarget) {
|
105
|
+
Element.setStyle(colorTarget, {backgroundColor: color});
|
106
|
+
}
|
107
|
+
},
|
108
|
+
|
109
|
+
show: function(event, triggerId) {
|
110
|
+
this.triggerId = triggerId;
|
111
|
+
Element.setStyle(this.element, {
|
112
|
+
zIndex: ZindexManager.getIndex(),
|
113
|
+
left: Event.pointerX(event) + 'px',
|
114
|
+
top: Event.pointerY(event) + 'px'
|
115
|
+
});
|
116
|
+
this.element.show();
|
117
|
+
Event.observe(document, "click", this.doclistener);
|
118
|
+
if (event) {
|
119
|
+
Event.stop(event);
|
120
|
+
}
|
121
|
+
},
|
122
|
+
|
123
|
+
hide: function() {
|
124
|
+
this.triggerId = null;
|
125
|
+
Event.stopObserving(document, "click", this.doclistener);
|
126
|
+
this.element.hide();
|
127
|
+
}
|
128
|
+
}
|
@@ -0,0 +1,438 @@
|
|
1
|
+
// Copyright (c) 2005 spinelz.org (http://script.spinelz.org/)
|
2
|
+
//
|
3
|
+
// Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
// a copy of this software and associated documentation files (the
|
5
|
+
// "Software"), to deal in the Software without restriction, including
|
6
|
+
// without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
// distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
// permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
// the following conditions:
|
10
|
+
//
|
11
|
+
// The above copyright notice and this permission notice shall be
|
12
|
+
// included in all copies or substantial portions of the Software.
|
13
|
+
//
|
14
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
21
|
+
|
22
|
+
var DatePicker = Class.create();
|
23
|
+
DatePicker.className = {
|
24
|
+
container: 'datepicker',
|
25
|
+
header: 'datepicker_header',
|
26
|
+
footer: 'datepicker_footer',
|
27
|
+
preYears: 'datepicker_preYears',
|
28
|
+
nextYears: 'datepicker_nextYears',
|
29
|
+
years: 'datepicker_years',
|
30
|
+
calendar: 'datepicker_calendar',
|
31
|
+
date: 'datepicker_date',
|
32
|
+
holiday: 'datepicker_holiday',
|
33
|
+
ym: 'datepicker_ym',
|
34
|
+
table: 'datepicker_table',
|
35
|
+
tableTh: 'datepicker_tableTh',
|
36
|
+
nextMonthMark: 'datepicker_nextMonthMark',
|
37
|
+
nextYearMark: 'datepicker_nextYearMark',
|
38
|
+
preMonthMark: 'datepicker_preMonthMark',
|
39
|
+
preYearMark: 'datepicker_preYearMark',
|
40
|
+
today: 'datepicker_today',
|
41
|
+
zIndex: null
|
42
|
+
}
|
43
|
+
DatePicker.prototype = {
|
44
|
+
|
45
|
+
initialize: function(element, target, trigger) {
|
46
|
+
this.element = $(element);
|
47
|
+
Element.setStyle(this.element, {visibility: 'hidden'});
|
48
|
+
this.target = $(target);
|
49
|
+
|
50
|
+
this.options = Object.extend({
|
51
|
+
date: new Date(),
|
52
|
+
format: DateUtil.toLocaleDateString,
|
53
|
+
cssPrefix: 'custom_',
|
54
|
+
callBack: Prototype.emptyFunction,
|
55
|
+
standBy: false,
|
56
|
+
headerFormat: null,
|
57
|
+
dayOfWeek: DateUtil.dayOfWeek,
|
58
|
+
appendToBody: false,
|
59
|
+
invalidDates: []
|
60
|
+
}, arguments[3] || {});
|
61
|
+
|
62
|
+
this.css = CssUtil.getInstance(this.options.cssPrefix, DatePicker.className);
|
63
|
+
this.classNames = this.css.allJoinClassNames();
|
64
|
+
|
65
|
+
this.format = this.options.format;
|
66
|
+
this.callBack = Prototype.emptyFunction;
|
67
|
+
|
68
|
+
if (this.options.date) {
|
69
|
+
if (this.options.date.constructor == Date) {
|
70
|
+
this.date = this.options.date;
|
71
|
+
} else {
|
72
|
+
this.date = DateUtil.toDate(this.options.date);
|
73
|
+
}
|
74
|
+
} else {
|
75
|
+
this.date = new Date();
|
76
|
+
}
|
77
|
+
this.originalDate = new Date(this.date.getTime());
|
78
|
+
|
79
|
+
this.ids = {};
|
80
|
+
this.dateIds = [];
|
81
|
+
this.element.innerHTML = this.build();
|
82
|
+
this.cover = new IECover(this.element);
|
83
|
+
this.setEvent();
|
84
|
+
|
85
|
+
this.doclistener = this.hide.bindAsEventListener(this);
|
86
|
+
this.hide();
|
87
|
+
Element.setStyle(this.element, {visibility: 'visible'});
|
88
|
+
this.triggerSet = {};
|
89
|
+
if (trigger && target) this.set(trigger, target, this.options.callBack);
|
90
|
+
if (this.options.appendToBody) Element.appendToBody.callAfterLoading(this, this.element);
|
91
|
+
},
|
92
|
+
|
93
|
+
set: function(trigger, target, options) {
|
94
|
+
trigger = $(trigger);
|
95
|
+
options = options || {};
|
96
|
+
if (options.constructor == Function) options = {callBack: options}
|
97
|
+
options = $H({
|
98
|
+
callBack: Prototype.emptyFunction,
|
99
|
+
invalidDates: []
|
100
|
+
}).merge(options);
|
101
|
+
if (options.invalidDates.constructor != Array) options.invalidDates = [options.invalidDates];
|
102
|
+
|
103
|
+
this.triggerSet[trigger.id] = {target: $(target), options: options};
|
104
|
+
this.addTrigger(trigger);
|
105
|
+
},
|
106
|
+
|
107
|
+
setEvent: function() {
|
108
|
+
var preMonth = $(this.ids.preMonth)
|
109
|
+
if (!Event.observers || !Event.observers.any(function(observer) { return preMonth == observer.first(); })) {
|
110
|
+
Event.observe(this.ids.preMonth, "click", this.changeCalendar.bindAsEventListener(this));
|
111
|
+
Event.observe(this.ids.preYear, "click", this.changeCalendar.bindAsEventListener(this));
|
112
|
+
Event.observe(this.ids.nextMonth, "click", this.changeCalendar.bindAsEventListener(this));
|
113
|
+
Event.observe(this.ids.nextYear, "click", this.changeCalendar.bindAsEventListener(this));
|
114
|
+
new Hover(this.ids.preMonth);
|
115
|
+
new Hover(this.ids.preYear);
|
116
|
+
new Hover(this.ids.nextMonth);
|
117
|
+
new Hover(this.ids.nextYear);
|
118
|
+
|
119
|
+
this.hovers = {};
|
120
|
+
this.dateIds.each(function(id) {
|
121
|
+
this.hovers[id] = new Hover(id, {beforeToggle: this.hasDate.bind(this, id)});
|
122
|
+
Event.observe(id, "click", this.selectDate.bindAsEventListener(this));
|
123
|
+
}.bind(this));
|
124
|
+
}
|
125
|
+
},
|
126
|
+
|
127
|
+
build: function() {
|
128
|
+
this.ids.calendar = this.element.id.appendSuffix('calendar');
|
129
|
+
var html =
|
130
|
+
"<div id='" + this.ids.calendar + "' class='" + this.classNames['container'] + "'>" +
|
131
|
+
this.buildHeader() +
|
132
|
+
this.buildCalendar() +
|
133
|
+
this.buildFooter() +
|
134
|
+
"</div>";
|
135
|
+
return html;
|
136
|
+
},
|
137
|
+
|
138
|
+
buildHeader: function() {
|
139
|
+
var html =
|
140
|
+
"<table class='" + this.classNames['header'] + "'>" +
|
141
|
+
"<tr>" +
|
142
|
+
this.buildHeaderLeft() +
|
143
|
+
this.buildHeaderCenter() +
|
144
|
+
this.buildHeaderRight() +
|
145
|
+
"</tr>" +
|
146
|
+
"</table>";
|
147
|
+
return html;
|
148
|
+
},
|
149
|
+
|
150
|
+
buildFooter: function() {
|
151
|
+
return "<div class='" + this.classNames['footer'] + "'></div>";
|
152
|
+
},
|
153
|
+
|
154
|
+
buildHeaderLeft: function() {
|
155
|
+
this.ids.preYear = this.element.id.appendSuffix('preYear');
|
156
|
+
this.ids.preMonth = this.element.id.appendSuffix('preMonth');
|
157
|
+
|
158
|
+
var html =
|
159
|
+
"<td class='" + this.classNames['preYears'] + "'>" +
|
160
|
+
"<div id='" + this.ids.preYear + "' class='" + this.classNames['preYearMark'] + "'></div>" +
|
161
|
+
"<div id='" + this.ids.preMonth + "' class='" + this.classNames['preMonthMark'] + "'></div>" +
|
162
|
+
"</td>";
|
163
|
+
return html;
|
164
|
+
},
|
165
|
+
|
166
|
+
buildHeaderCenter: function() {
|
167
|
+
var yearMonth = this.getHeaderYearMonth();
|
168
|
+
var baseId = this.element.id;
|
169
|
+
var html =
|
170
|
+
"<td class='" + this.classNames['years'] + "'>" +
|
171
|
+
"<span id='" + baseId.appendSuffix('ym0') + "'class='" + this.classNames['ym'] + "'>" +
|
172
|
+
yearMonth[0] +
|
173
|
+
"</span>" +
|
174
|
+
"<span id='" + baseId.appendSuffix('ym1') + "' class='" + this.classNames['ym'] + "'>" +
|
175
|
+
yearMonth[1] +
|
176
|
+
"</span>" +
|
177
|
+
"</td>";
|
178
|
+
return html;
|
179
|
+
},
|
180
|
+
|
181
|
+
getHeaderYearMonth: function() {
|
182
|
+
if (this.options.headerFormat) {
|
183
|
+
var tmpl = new Template(this.options.headerFormat);
|
184
|
+
return [tmpl.evaluate({year: this.date.getFullYear(), month: this.date.getMonth() + 1}), ' '];
|
185
|
+
}
|
186
|
+
return [DateUtil.months[this.date.getMonth()], this.date.getFullYear()];
|
187
|
+
},
|
188
|
+
|
189
|
+
buildHeaderRight: function() {
|
190
|
+
this.ids.nextYear = this.element.id.appendSuffix('nextYear');
|
191
|
+
this.ids.nextMonth = this.element.id.appendSuffix('nextMonth');
|
192
|
+
|
193
|
+
var html =
|
194
|
+
"<td class='" + this.classNames['nextYears'] + "'>" +
|
195
|
+
"<div id='" + this.ids.nextMonth + "' class='" + this.classNames['nextMonthMark'] + "'></div>" +
|
196
|
+
"<div id='" + this.ids.nextYear + "' class='" + this.classNames['nextYearMark'] + "'></div>" +
|
197
|
+
"</td>";
|
198
|
+
return html;
|
199
|
+
},
|
200
|
+
|
201
|
+
multiBuild: function(tagType, params, className, hover, clickEvent) {
|
202
|
+
var children = [];
|
203
|
+
for (var i = 0; i < params.length; i++) {
|
204
|
+
var node = Builder.node(tagType, [params[i]]);;
|
205
|
+
if (className)
|
206
|
+
this.classNames.addClassNames(node, className);
|
207
|
+
if (hover)
|
208
|
+
new Hover(node);
|
209
|
+
if (clickEvent)
|
210
|
+
Event.observe(node, "click", clickEvent.bindAsEventListener(this));
|
211
|
+
children.push(node);
|
212
|
+
}
|
213
|
+
return children;
|
214
|
+
},
|
215
|
+
|
216
|
+
buildCalendar: function() {
|
217
|
+
var html =
|
218
|
+
"<div class='" + this.classNames['calendar'] + "'>" +
|
219
|
+
"<table class='" + this.classNames['table'] + "'>" +
|
220
|
+
this.buildTableHeader() + this.buildTableData() +
|
221
|
+
"</table>" +
|
222
|
+
"</div>";
|
223
|
+
return html;
|
224
|
+
},
|
225
|
+
|
226
|
+
buildTableHeader: function() {
|
227
|
+
var className = this.classNames['tableTh'];
|
228
|
+
var html = "<tr>";
|
229
|
+
for (var i = 0; i < DateUtil.dayOfWeek.length; i++) {
|
230
|
+
html += "<th class='" + className + "'>" + this.options.dayOfWeek[i] + "</th>";
|
231
|
+
}
|
232
|
+
html += "</tr>";
|
233
|
+
return html;
|
234
|
+
},
|
235
|
+
|
236
|
+
buildTableData: function() {
|
237
|
+
var length = DateUtil.dayOfWeek.length * 6;
|
238
|
+
var year = this.date.getFullYear();
|
239
|
+
var month = this.date.getMonth();
|
240
|
+
var firstDay = DateUtil.getFirstDate(year, month).getDay();
|
241
|
+
var lastDate = DateUtil.getLastDate(year, month).getDate();
|
242
|
+
var tdBaseId = this.element.id.appendSuffix('date');
|
243
|
+
var today = new Date();
|
244
|
+
var sameMonth = today.sameMonth(this.date);
|
245
|
+
var trs = '';
|
246
|
+
var tds = '';
|
247
|
+
|
248
|
+
for (var i = 0, day = 1; i < length; i++) {
|
249
|
+
var id = tdBaseId.appendSuffix(i);
|
250
|
+
this.dateIds.push(id);
|
251
|
+
var classKey = ((i % 7 == 0) || ((i+1) % 7 == 0)) ? 'holiday' : 'date';
|
252
|
+
var className = this.classNames[classKey];
|
253
|
+
if ((i < firstDay) || day > lastDate) {
|
254
|
+
tds += "<td id='" + id + "' class='" + className + "'></td>";
|
255
|
+
} else {
|
256
|
+
if (sameMonth && (today.getDate() == day)) {
|
257
|
+
className = this.classNames['today'] + ' ' + className;
|
258
|
+
this.todayCell = id;
|
259
|
+
}
|
260
|
+
tds += "<td id='" + id + "' class='" + className + "'>" + day + "</td>";
|
261
|
+
day++;
|
262
|
+
}
|
263
|
+
|
264
|
+
if ((i + 1) % 7 == 0) {
|
265
|
+
trs += "<tr>" + tds + "</tr>";
|
266
|
+
tds = '';
|
267
|
+
}
|
268
|
+
}
|
269
|
+
return trs;
|
270
|
+
},
|
271
|
+
|
272
|
+
rebuildHeaderCenter: function() {
|
273
|
+
var yearMonth = this.getHeaderYearMonth();
|
274
|
+
var baseId = this.element.id;
|
275
|
+
$(baseId.appendSuffix('ym0')).innerHTML = yearMonth[0];
|
276
|
+
$(baseId.appendSuffix('ym1')).innerHTML = yearMonth[1];
|
277
|
+
},
|
278
|
+
|
279
|
+
rebuildTableData: function() {
|
280
|
+
var length = DateUtil.dayOfWeek.length * 6;
|
281
|
+
var year = this.date.getFullYear();
|
282
|
+
var month = this.date.getMonth();
|
283
|
+
var firstDay = DateUtil.getFirstDate(year, month).getDay();
|
284
|
+
var lastDate = DateUtil.getLastDate(year, month).getDate();
|
285
|
+
var tdBaseId = this.element.id.appendSuffix('date');
|
286
|
+
var today = new Date();
|
287
|
+
var sameMonth = today.sameMonth(this.date);
|
288
|
+
|
289
|
+
this.todayClassToNormalClass();
|
290
|
+
for (var i = 0, day = 1; i < length; i++) {
|
291
|
+
var id = tdBaseId.appendSuffix(i);
|
292
|
+
var element = $(id);
|
293
|
+
if ((i < firstDay) || (day > lastDate)) {
|
294
|
+
element.innerHTML = '';
|
295
|
+
} else {
|
296
|
+
element.innerHTML = day;
|
297
|
+
if (sameMonth && (today.getDate() == day)) {
|
298
|
+
element.className = this.classNames['today'] + ' ' + element.className;
|
299
|
+
this.todayCell = id;
|
300
|
+
this.hovers[id].refresh();
|
301
|
+
}
|
302
|
+
day++;
|
303
|
+
}
|
304
|
+
}
|
305
|
+
},
|
306
|
+
|
307
|
+
todayClassToNormalClass: function() {
|
308
|
+
var todayClassName = this.classNames['today'].split(' ');
|
309
|
+
var cell = $(this.todayCell);
|
310
|
+
if (cell) {
|
311
|
+
cell.className = cell.className.split(' ').select(function(className) {
|
312
|
+
return !todayClassName.include(className);
|
313
|
+
}).join(' ');
|
314
|
+
this.hovers[this.todayCell].refresh();
|
315
|
+
}
|
316
|
+
this.todayCell = null;
|
317
|
+
},
|
318
|
+
|
319
|
+
refresh: function() {
|
320
|
+
this.rebuildHeaderCenter();
|
321
|
+
this.rebuildTableData();
|
322
|
+
},
|
323
|
+
|
324
|
+
getMonth: function() {
|
325
|
+
return DateUtil.months[this.date.getMonth()];
|
326
|
+
},
|
327
|
+
|
328
|
+
changeCalendar: function(event) {
|
329
|
+
var element = Event.element(event);
|
330
|
+
this.date.setDate(1);
|
331
|
+
if (this.hasClassName(element, DatePicker.className.preYearMark)) {
|
332
|
+
this.date.setFullYear(this.date.getFullYear() - 1);
|
333
|
+
} else if (this.hasClassName(element, DatePicker.className.nextYearMark)) {
|
334
|
+
this.date.setFullYear(this.date.getFullYear() + 1);
|
335
|
+
} else if (this.hasClassName(element, DatePicker.className.preMonthMark)) {
|
336
|
+
this.date.setMonth(this.date.getMonth() - 1);
|
337
|
+
} else if (this.hasClassName(element, DatePicker.className.nextMonthMark)) {
|
338
|
+
this.date.setMonth(this.date.getMonth() + 1);
|
339
|
+
}
|
340
|
+
|
341
|
+
this.refresh();
|
342
|
+
if (event) Event.stop(event);
|
343
|
+
},
|
344
|
+
|
345
|
+
hasClassName: function(element, className) {
|
346
|
+
return Element.hasClassName(element, className) || Element.hasClassName(element, className + 'Hover')
|
347
|
+
},
|
348
|
+
|
349
|
+
selectDate: function(event) {
|
350
|
+
var src = Event.element(event);
|
351
|
+
var text = Element.getTextNodes(src)[0];
|
352
|
+
if (text) {
|
353
|
+
this.date.setDate(text.nodeValue);
|
354
|
+
var value = this.formatDateString();
|
355
|
+
|
356
|
+
if (this.target.value || this.target.value == '') {
|
357
|
+
this.target.value = value;
|
358
|
+
} else {
|
359
|
+
this.target.innerHTML = value;
|
360
|
+
}
|
361
|
+
|
362
|
+
this.hide();
|
363
|
+
this.css.refreshClassNames(src, 'date');
|
364
|
+
this.callBack(this);
|
365
|
+
}
|
366
|
+
},
|
367
|
+
|
368
|
+
show: function(event) {
|
369
|
+
if (event) {
|
370
|
+
Event.stop(event);
|
371
|
+
var set = this.triggerSet[Event.element(event).id];
|
372
|
+
if (set) {
|
373
|
+
this.target = set.target;
|
374
|
+
this.options = $H(this.options).merge(set.options);
|
375
|
+
this.callBack = this.options.callBack;
|
376
|
+
}
|
377
|
+
|
378
|
+
if (this.options.invalidDates.include(this.target.value)) {
|
379
|
+
this.date = new Date(this.originalDate.getTime());
|
380
|
+
} else {
|
381
|
+
var time = Date.parse(this.target.value);
|
382
|
+
if (time) {
|
383
|
+
this.date = new Date(time);
|
384
|
+
} else {
|
385
|
+
this.date = new Date(this.originalDate.getTime());
|
386
|
+
}
|
387
|
+
}
|
388
|
+
this.refresh();
|
389
|
+
}
|
390
|
+
|
391
|
+
var styles = $H({zIndex: ZindexManager.getIndex(this.options.zIndex)});
|
392
|
+
if (this.options.standBy) {
|
393
|
+
this.defaultParent = this.element.parentNode;
|
394
|
+
document.body.appendChild(this.element);
|
395
|
+
styles = styles.merge({
|
396
|
+
position: 'absolute',
|
397
|
+
left: Event.pointerX(event) + 'px',
|
398
|
+
top: Event.pointerY(event) + 'px'
|
399
|
+
});
|
400
|
+
}
|
401
|
+
|
402
|
+
Element.setStyle(this.element, styles);
|
403
|
+
Element.show(this.element);
|
404
|
+
this.cover.resetSize();
|
405
|
+
Event.observe(document, "click", this.doclistener);
|
406
|
+
},
|
407
|
+
|
408
|
+
hide: function() {
|
409
|
+
Event.stopObserving(document, "click", this.doclistener);
|
410
|
+
Element.hide(this.element);
|
411
|
+
if (this.defaultParent) {
|
412
|
+
this.defaultParent.appendChild(this.element);
|
413
|
+
}
|
414
|
+
},
|
415
|
+
|
416
|
+
addTrigger: function(trigger) {
|
417
|
+
Event.observe($(trigger), 'click', this.show.bindAsEventListener(this));
|
418
|
+
},
|
419
|
+
|
420
|
+
changeTarget: function(target) {
|
421
|
+
this.target = $(target);
|
422
|
+
},
|
423
|
+
|
424
|
+
formatDateString: function() {
|
425
|
+
var string = '';
|
426
|
+
if (this.format.constructor == Function) {
|
427
|
+
string = this.format(this.date);
|
428
|
+
} else if (this.format.constructor == String) {
|
429
|
+
string = this.date.strftime(this.format);
|
430
|
+
}
|
431
|
+
return string;
|
432
|
+
},
|
433
|
+
|
434
|
+
hasDate: function(cell) {
|
435
|
+
var text = $(cell).innerHTML;
|
436
|
+
return text && (text != '');
|
437
|
+
}
|
438
|
+
}
|