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,215 @@
|
|
1
|
+
// Copyright (c) 2005 Thomas Fakes (http://craz8.com)
|
2
|
+
//
|
3
|
+
// This code is substantially based on code from script.aculo.us which has the
|
4
|
+
// following copyright and permission notice
|
5
|
+
//
|
6
|
+
// Copyright (c) 2005 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
7
|
+
//
|
8
|
+
// Permission is hereby granted, free of charge, to any person obtaining
|
9
|
+
// a copy of this software and associated documentation files (the
|
10
|
+
// "Software"), to deal in the Software without restriction, including
|
11
|
+
// without limitation the rights to use, copy, modify, merge, publish,
|
12
|
+
// distribute, sublicense, and/or sell copies of the Software, and to
|
13
|
+
// permit persons to whom the Software is furnished to do so, subject to
|
14
|
+
// the following conditions:
|
15
|
+
//
|
16
|
+
// The above copyright notice and this permission notice shall be
|
17
|
+
// included in all copies or substantial portions of the Software.
|
18
|
+
//
|
19
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
20
|
+
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
21
|
+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
22
|
+
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
23
|
+
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
24
|
+
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
25
|
+
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
26
|
+
|
27
|
+
var Resizeable = Class.create();
|
28
|
+
Resizeable.prototype = {
|
29
|
+
initialize: function(element) {
|
30
|
+
var options = Object.extend({
|
31
|
+
top: 6,
|
32
|
+
bottom: 6,
|
33
|
+
left: 6,
|
34
|
+
right: 6,
|
35
|
+
minHeight: 0,
|
36
|
+
minWidth: 0,
|
37
|
+
zindex: 1000,
|
38
|
+
resize: null
|
39
|
+
}, arguments[1] || {});
|
40
|
+
|
41
|
+
this.element = $(element);
|
42
|
+
this.handle = this.element;
|
43
|
+
|
44
|
+
Element.makePositioned(this.element); // fix IE
|
45
|
+
|
46
|
+
this.options = options;
|
47
|
+
|
48
|
+
this.active = false;
|
49
|
+
this.resizing = false;
|
50
|
+
this.currentDirection = '';
|
51
|
+
|
52
|
+
this.eventMouseDown = this.startResize.bindAsEventListener(this);
|
53
|
+
this.eventMouseUp = this.endResize.bindAsEventListener(this);
|
54
|
+
this.eventMouseMove = this.update.bindAsEventListener(this);
|
55
|
+
this.eventCursorCheck = this.cursor.bindAsEventListener(this);
|
56
|
+
this.eventKeypress = this.keyPress.bindAsEventListener(this);
|
57
|
+
|
58
|
+
this.registerEvents();
|
59
|
+
},
|
60
|
+
destroy: function() {
|
61
|
+
Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
|
62
|
+
this.unregisterEvents();
|
63
|
+
},
|
64
|
+
registerEvents: function() {
|
65
|
+
Event.observe(document, "mouseup", this.eventMouseUp);
|
66
|
+
Event.observe(document, "mousemove", this.eventMouseMove);
|
67
|
+
Event.observe(document, "keypress", this.eventKeypress);
|
68
|
+
Event.observe(this.handle, "mousedown", this.eventMouseDown);
|
69
|
+
Event.observe(this.element, "mousemove", this.eventCursorCheck);
|
70
|
+
},
|
71
|
+
unregisterEvents: function() {
|
72
|
+
//if(!this.active) return;
|
73
|
+
//Event.stopObserving(document, "mouseup", this.eventMouseUp);
|
74
|
+
//Event.stopObserving(document, "mousemove", this.eventMouseMove);
|
75
|
+
//Event.stopObserving(document, "mousemove", this.eventCursorCheck);
|
76
|
+
//Event.stopObserving(document, "keypress", this.eventKeypress);
|
77
|
+
},
|
78
|
+
startResize: function(event) {
|
79
|
+
if(Event.isLeftClick(event)) {
|
80
|
+
|
81
|
+
// abort on form elements, fixes a Firefox issue
|
82
|
+
var src = Event.element(event);
|
83
|
+
if(src.tagName && (
|
84
|
+
src.tagName=='INPUT' ||
|
85
|
+
src.tagName=='SELECT' ||
|
86
|
+
src.tagName=='BUTTON' ||
|
87
|
+
src.tagName=='TEXTAREA')) return;
|
88
|
+
|
89
|
+
var dir = this.directions(event);
|
90
|
+
if (dir.length > 0) {
|
91
|
+
this.active = true;
|
92
|
+
var offsets = Position.cumulativeOffset(this.element);
|
93
|
+
this.startTop = offsets[1];
|
94
|
+
this.startLeft = offsets[0];
|
95
|
+
this.startWidth = parseInt(Element.getStyle(this.element, 'width'));
|
96
|
+
this.startHeight = parseInt(Element.getStyle(this.element, 'height'));
|
97
|
+
this.startX = event.clientX + document.body.scrollLeft + document.documentElement.scrollLeft;
|
98
|
+
this.startY = event.clientY + document.body.scrollTop + document.documentElement.scrollTop;
|
99
|
+
|
100
|
+
this.currentDirection = dir;
|
101
|
+
Event.stop(event);
|
102
|
+
}
|
103
|
+
}
|
104
|
+
},
|
105
|
+
finishResize: function(event, success) {
|
106
|
+
// this.unregisterEvents();
|
107
|
+
|
108
|
+
this.active = false;
|
109
|
+
this.resizing = false;
|
110
|
+
|
111
|
+
if(this.options.zindex)
|
112
|
+
this.element.style.zIndex = this.originalZ;
|
113
|
+
|
114
|
+
if (this.options.resize) {
|
115
|
+
this.options.resize(this.element);
|
116
|
+
}
|
117
|
+
},
|
118
|
+
keyPress: function(event) {
|
119
|
+
if(this.active) {
|
120
|
+
if(event.keyCode==Event.KEY_ESC) {
|
121
|
+
this.finishResize(event, false);
|
122
|
+
Event.stop(event);
|
123
|
+
}
|
124
|
+
}
|
125
|
+
},
|
126
|
+
endResize: function(event) {
|
127
|
+
if(this.active && this.resizing) {
|
128
|
+
this.finishResize(event, true);
|
129
|
+
Event.stop(event);
|
130
|
+
}
|
131
|
+
this.active = false;
|
132
|
+
this.resizing = false;
|
133
|
+
},
|
134
|
+
draw: function(event) {
|
135
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
136
|
+
var style = this.element.style;
|
137
|
+
if (this.currentDirection.indexOf('n') != -1) {
|
138
|
+
var pointerMoved = this.startY - pointer[1];
|
139
|
+
var margin = Element.getStyle(this.element, 'margin-top') || "0";
|
140
|
+
var newHeight = this.startHeight + pointerMoved;
|
141
|
+
if (newHeight > this.options.minHeight) {
|
142
|
+
style.height = newHeight + "px";
|
143
|
+
style.top = (this.startTop - pointerMoved - parseInt(margin)) + "px";
|
144
|
+
}
|
145
|
+
}
|
146
|
+
if (this.currentDirection.indexOf('w') != -1) {
|
147
|
+
var pointerMoved = this.startX - pointer[0];
|
148
|
+
var margin = Element.getStyle(this.element, 'margin-left') || "0";
|
149
|
+
var newWidth = this.startWidth + pointerMoved;
|
150
|
+
if (newWidth > this.options.minWidth) {
|
151
|
+
style.left = (this.startLeft - pointerMoved - parseInt(margin)) + "px";
|
152
|
+
style.width = newWidth + "px";
|
153
|
+
}
|
154
|
+
}
|
155
|
+
if (this.currentDirection.indexOf('s') != -1) {
|
156
|
+
var newHeight = this.startHeight + pointer[1] - this.startY;
|
157
|
+
if (newHeight > this.options.minHeight) {
|
158
|
+
style.height = newHeight + "px";
|
159
|
+
}
|
160
|
+
}
|
161
|
+
if (this.currentDirection.indexOf('e') != -1) {
|
162
|
+
var newWidth = this.startWidth + pointer[0] - this.startX;
|
163
|
+
if (newWidth > this.options.minWidth) {
|
164
|
+
style.width = newWidth + "px";
|
165
|
+
}
|
166
|
+
}
|
167
|
+
if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering
|
168
|
+
},
|
169
|
+
between: function(val, low, high) {
|
170
|
+
return (val >= low && val < high);
|
171
|
+
},
|
172
|
+
directions: function(event) {
|
173
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
174
|
+
var offsets = Position.cumulativeOffset(this.element);
|
175
|
+
|
176
|
+
var cursor = '';
|
177
|
+
if (this.between(pointer[1] - offsets[1], 0, this.options.top)) cursor += 'n';
|
178
|
+
if (this.between((offsets[1] + this.element.offsetHeight) - pointer[1], 0, this.options.bottom)) cursor += 's';
|
179
|
+
if (this.between(pointer[0] - offsets[0], 0, this.options.left)) cursor += 'w';
|
180
|
+
if (this.between((offsets[0] + this.element.offsetWidth) - pointer[0], 0, this.options.right)) cursor += 'e';
|
181
|
+
|
182
|
+
return cursor;
|
183
|
+
},
|
184
|
+
cursor: function(event) {
|
185
|
+
var cursor = this.directions(event);
|
186
|
+
if (cursor.length > 0) {
|
187
|
+
cursor += '-resize';
|
188
|
+
} else {
|
189
|
+
cursor = '';
|
190
|
+
}
|
191
|
+
this.element.style.cursor = cursor;
|
192
|
+
},
|
193
|
+
update: function(event) {
|
194
|
+
if(this.active) {
|
195
|
+
if(!this.resizing) {
|
196
|
+
var style = this.element.style;
|
197
|
+
this.resizing = true;
|
198
|
+
|
199
|
+
if(Element.getStyle(this.element,'position')=='')
|
200
|
+
style.position = "relative";
|
201
|
+
|
202
|
+
if(this.options.zindex) {
|
203
|
+
this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
|
204
|
+
style.zIndex = this.options.zindex;
|
205
|
+
}
|
206
|
+
}
|
207
|
+
this.draw(event);
|
208
|
+
|
209
|
+
// fix AppleWebKit rendering
|
210
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
|
211
|
+
Event.stop(event);
|
212
|
+
return false;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
// script.aculo.us scriptaculous.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
|
2
|
+
|
3
|
+
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
|
4
|
+
//
|
5
|
+
// Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
// a copy of this software and associated documentation files (the
|
7
|
+
// "Software"), to deal in the Software without restriction, including
|
8
|
+
// without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
// distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
// permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
// the following conditions:
|
12
|
+
//
|
13
|
+
// The above copyright notice and this permission notice shall be
|
14
|
+
// included in all copies or substantial portions of the Software.
|
15
|
+
//
|
16
|
+
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
23
|
+
//
|
24
|
+
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
25
|
+
|
26
|
+
var Scriptaculous = {
|
27
|
+
Version: '1.7.0',
|
28
|
+
require: function(libraryName) {
|
29
|
+
// inserting via DOM fails in Safari 2.0, so brute force approach
|
30
|
+
document.write('<script type="text/javascript" src="'+libraryName+'"></script>');
|
31
|
+
},
|
32
|
+
load: function() {
|
33
|
+
if((typeof Prototype=='undefined') ||
|
34
|
+
(typeof Element == 'undefined') ||
|
35
|
+
(typeof Element.Methods=='undefined') ||
|
36
|
+
parseFloat(Prototype.Version.split(".")[0] + "." +
|
37
|
+
Prototype.Version.split(".")[1]) < 1.5)
|
38
|
+
throw("script.aculo.us requires the Prototype JavaScript framework >= 1.5.0");
|
39
|
+
|
40
|
+
$A(document.getElementsByTagName("script")).findAll( function(s) {
|
41
|
+
return (s.src && s.src.match(/scriptaculous\.js(\?.*)?$/))
|
42
|
+
}).each( function(s) {
|
43
|
+
var path = s.src.replace(/scriptaculous\.js(\?.*)?$/,'');
|
44
|
+
var includes = s.src.match(/\?.*load=([a-z,]*)/);
|
45
|
+
(includes ? includes[1] : 'builder,effects,dragdrop,controls,slider').split(',').each(
|
46
|
+
function(include) { Scriptaculous.require(path+include+'.js') });
|
47
|
+
});
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
Scriptaculous.load();
|
@@ -0,0 +1,278 @@
|
|
1
|
+
// script.aculo.us slider.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
|
2
|
+
|
3
|
+
// Copyright (c) 2005, 2006 Marty Haught, Thomas Fuchs
|
4
|
+
//
|
5
|
+
// script.aculo.us is freely distributable under the terms of an MIT-style license.
|
6
|
+
// For details, see the script.aculo.us web site: http://script.aculo.us/
|
7
|
+
|
8
|
+
if(!Control) var Control = {};
|
9
|
+
Control.Slider = Class.create();
|
10
|
+
|
11
|
+
// options:
|
12
|
+
// axis: 'vertical', or 'horizontal' (default)
|
13
|
+
//
|
14
|
+
// callbacks:
|
15
|
+
// onChange(value)
|
16
|
+
// onSlide(value)
|
17
|
+
Control.Slider.prototype = {
|
18
|
+
initialize: function(handle, track, options) {
|
19
|
+
var slider = this;
|
20
|
+
|
21
|
+
if(handle instanceof Array) {
|
22
|
+
this.handles = handle.collect( function(e) { return $(e) });
|
23
|
+
} else {
|
24
|
+
this.handles = [$(handle)];
|
25
|
+
}
|
26
|
+
|
27
|
+
this.track = $(track);
|
28
|
+
this.options = options || {};
|
29
|
+
|
30
|
+
this.axis = this.options.axis || 'horizontal';
|
31
|
+
this.increment = this.options.increment || 1;
|
32
|
+
this.step = parseInt(this.options.step || '1');
|
33
|
+
this.range = this.options.range || $R(0,1);
|
34
|
+
|
35
|
+
this.value = 0; // assure backwards compat
|
36
|
+
this.values = this.handles.map( function() { return 0 });
|
37
|
+
this.spans = this.options.spans ? this.options.spans.map(function(s){ return $(s) }) : false;
|
38
|
+
this.options.startSpan = $(this.options.startSpan || null);
|
39
|
+
this.options.endSpan = $(this.options.endSpan || null);
|
40
|
+
|
41
|
+
this.restricted = this.options.restricted || false;
|
42
|
+
|
43
|
+
this.maximum = this.options.maximum || this.range.end;
|
44
|
+
this.minimum = this.options.minimum || this.range.start;
|
45
|
+
|
46
|
+
// Will be used to align the handle onto the track, if necessary
|
47
|
+
this.alignX = parseInt(this.options.alignX || '0');
|
48
|
+
this.alignY = parseInt(this.options.alignY || '0');
|
49
|
+
|
50
|
+
this.trackLength = this.maximumOffset() - this.minimumOffset();
|
51
|
+
|
52
|
+
this.handleLength = this.isVertical() ?
|
53
|
+
(this.handles[0].offsetHeight != 0 ?
|
54
|
+
this.handles[0].offsetHeight : this.handles[0].style.height.replace(/px$/,"")) :
|
55
|
+
(this.handles[0].offsetWidth != 0 ? this.handles[0].offsetWidth :
|
56
|
+
this.handles[0].style.width.replace(/px$/,""));
|
57
|
+
|
58
|
+
this.active = false;
|
59
|
+
this.dragging = false;
|
60
|
+
this.disabled = false;
|
61
|
+
|
62
|
+
if(this.options.disabled) this.setDisabled();
|
63
|
+
|
64
|
+
// Allowed values array
|
65
|
+
this.allowedValues = this.options.values ? this.options.values.sortBy(Prototype.K) : false;
|
66
|
+
if(this.allowedValues) {
|
67
|
+
this.minimum = this.allowedValues.min();
|
68
|
+
this.maximum = this.allowedValues.max();
|
69
|
+
}
|
70
|
+
|
71
|
+
this.eventMouseDown = this.startDrag.bindAsEventListener(this);
|
72
|
+
this.eventMouseUp = this.endDrag.bindAsEventListener(this);
|
73
|
+
this.eventMouseMove = this.update.bindAsEventListener(this);
|
74
|
+
|
75
|
+
// Initialize handles in reverse (make sure first handle is active)
|
76
|
+
this.handles.each( function(h,i) {
|
77
|
+
i = slider.handles.length-1-i;
|
78
|
+
slider.setValue(parseFloat(
|
79
|
+
(slider.options.sliderValue instanceof Array ?
|
80
|
+
slider.options.sliderValue[i] : slider.options.sliderValue) ||
|
81
|
+
slider.range.start), i);
|
82
|
+
Element.makePositioned(h); // fix IE
|
83
|
+
Event.observe(h, "mousedown", slider.eventMouseDown);
|
84
|
+
});
|
85
|
+
|
86
|
+
Event.observe(this.track, "mousedown", this.eventMouseDown);
|
87
|
+
Event.observe(document, "mouseup", this.eventMouseUp);
|
88
|
+
Event.observe(document, "mousemove", this.eventMouseMove);
|
89
|
+
|
90
|
+
this.initialized = true;
|
91
|
+
},
|
92
|
+
dispose: function() {
|
93
|
+
var slider = this;
|
94
|
+
Event.stopObserving(this.track, "mousedown", this.eventMouseDown);
|
95
|
+
Event.stopObserving(document, "mouseup", this.eventMouseUp);
|
96
|
+
Event.stopObserving(document, "mousemove", this.eventMouseMove);
|
97
|
+
this.handles.each( function(h) {
|
98
|
+
Event.stopObserving(h, "mousedown", slider.eventMouseDown);
|
99
|
+
});
|
100
|
+
},
|
101
|
+
setDisabled: function(){
|
102
|
+
this.disabled = true;
|
103
|
+
},
|
104
|
+
setEnabled: function(){
|
105
|
+
this.disabled = false;
|
106
|
+
},
|
107
|
+
getNearestValue: function(value){
|
108
|
+
if(this.allowedValues){
|
109
|
+
if(value >= this.allowedValues.max()) return(this.allowedValues.max());
|
110
|
+
if(value <= this.allowedValues.min()) return(this.allowedValues.min());
|
111
|
+
|
112
|
+
var offset = Math.abs(this.allowedValues[0] - value);
|
113
|
+
var newValue = this.allowedValues[0];
|
114
|
+
this.allowedValues.each( function(v) {
|
115
|
+
var currentOffset = Math.abs(v - value);
|
116
|
+
if(currentOffset <= offset){
|
117
|
+
newValue = v;
|
118
|
+
offset = currentOffset;
|
119
|
+
}
|
120
|
+
});
|
121
|
+
return newValue;
|
122
|
+
}
|
123
|
+
if(value > this.range.end) return this.range.end;
|
124
|
+
if(value < this.range.start) return this.range.start;
|
125
|
+
return value;
|
126
|
+
},
|
127
|
+
setValue: function(sliderValue, handleIdx){
|
128
|
+
if(!this.active) {
|
129
|
+
this.activeHandleIdx = handleIdx || 0;
|
130
|
+
this.activeHandle = this.handles[this.activeHandleIdx];
|
131
|
+
this.updateStyles();
|
132
|
+
}
|
133
|
+
handleIdx = handleIdx || this.activeHandleIdx || 0;
|
134
|
+
if(this.initialized && this.restricted) {
|
135
|
+
if((handleIdx>0) && (sliderValue<this.values[handleIdx-1]))
|
136
|
+
sliderValue = this.values[handleIdx-1];
|
137
|
+
if((handleIdx < (this.handles.length-1)) && (sliderValue>this.values[handleIdx+1]))
|
138
|
+
sliderValue = this.values[handleIdx+1];
|
139
|
+
}
|
140
|
+
sliderValue = this.getNearestValue(sliderValue);
|
141
|
+
this.values[handleIdx] = sliderValue;
|
142
|
+
this.value = this.values[0]; // assure backwards compat
|
143
|
+
|
144
|
+
this.handles[handleIdx].style[this.isVertical() ? 'top' : 'left'] =
|
145
|
+
this.translateToPx(sliderValue);
|
146
|
+
|
147
|
+
this.drawSpans();
|
148
|
+
if(!this.dragging || !this.event) this.updateFinished();
|
149
|
+
},
|
150
|
+
setValueBy: function(delta, handleIdx) {
|
151
|
+
this.setValue(this.values[handleIdx || this.activeHandleIdx || 0] + delta,
|
152
|
+
handleIdx || this.activeHandleIdx || 0);
|
153
|
+
},
|
154
|
+
translateToPx: function(value) {
|
155
|
+
return Math.round(
|
156
|
+
((this.trackLength-this.handleLength)/(this.range.end-this.range.start)) *
|
157
|
+
(value - this.range.start)) + "px";
|
158
|
+
},
|
159
|
+
translateToValue: function(offset) {
|
160
|
+
return ((offset/(this.trackLength-this.handleLength) *
|
161
|
+
(this.range.end-this.range.start)) + this.range.start);
|
162
|
+
},
|
163
|
+
getRange: function(range) {
|
164
|
+
var v = this.values.sortBy(Prototype.K);
|
165
|
+
range = range || 0;
|
166
|
+
return $R(v[range],v[range+1]);
|
167
|
+
},
|
168
|
+
minimumOffset: function(){
|
169
|
+
return(this.isVertical() ? this.alignY : this.alignX);
|
170
|
+
},
|
171
|
+
maximumOffset: function(){
|
172
|
+
return(this.isVertical() ?
|
173
|
+
(this.track.offsetHeight != 0 ? this.track.offsetHeight :
|
174
|
+
this.track.style.height.replace(/px$/,"")) - this.alignY :
|
175
|
+
(this.track.offsetWidth != 0 ? this.track.offsetWidth :
|
176
|
+
this.track.style.width.replace(/px$/,"")) - this.alignY);
|
177
|
+
},
|
178
|
+
isVertical: function(){
|
179
|
+
return (this.axis == 'vertical');
|
180
|
+
},
|
181
|
+
drawSpans: function() {
|
182
|
+
var slider = this;
|
183
|
+
if(this.spans)
|
184
|
+
$R(0, this.spans.length-1).each(function(r) { slider.setSpan(slider.spans[r], slider.getRange(r)) });
|
185
|
+
if(this.options.startSpan)
|
186
|
+
this.setSpan(this.options.startSpan,
|
187
|
+
$R(0, this.values.length>1 ? this.getRange(0).min() : this.value ));
|
188
|
+
if(this.options.endSpan)
|
189
|
+
this.setSpan(this.options.endSpan,
|
190
|
+
$R(this.values.length>1 ? this.getRange(this.spans.length-1).max() : this.value, this.maximum));
|
191
|
+
},
|
192
|
+
setSpan: function(span, range) {
|
193
|
+
if(this.isVertical()) {
|
194
|
+
span.style.top = this.translateToPx(range.start);
|
195
|
+
span.style.height = this.translateToPx(range.end - range.start + this.range.start);
|
196
|
+
} else {
|
197
|
+
span.style.left = this.translateToPx(range.start);
|
198
|
+
span.style.width = this.translateToPx(range.end - range.start + this.range.start);
|
199
|
+
}
|
200
|
+
},
|
201
|
+
updateStyles: function() {
|
202
|
+
this.handles.each( function(h){ Element.removeClassName(h, 'selected') });
|
203
|
+
Element.addClassName(this.activeHandle, 'selected');
|
204
|
+
},
|
205
|
+
startDrag: function(event) {
|
206
|
+
if(Event.isLeftClick(event)) {
|
207
|
+
if(!this.disabled){
|
208
|
+
this.active = true;
|
209
|
+
|
210
|
+
var handle = Event.element(event);
|
211
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
212
|
+
var track = handle;
|
213
|
+
if(track==this.track) {
|
214
|
+
var offsets = Position.cumulativeOffset(this.track);
|
215
|
+
this.event = event;
|
216
|
+
this.setValue(this.translateToValue(
|
217
|
+
(this.isVertical() ? pointer[1]-offsets[1] : pointer[0]-offsets[0])-(this.handleLength/2)
|
218
|
+
));
|
219
|
+
var offsets = Position.cumulativeOffset(this.activeHandle);
|
220
|
+
this.offsetX = (pointer[0] - offsets[0]);
|
221
|
+
this.offsetY = (pointer[1] - offsets[1]);
|
222
|
+
} else {
|
223
|
+
// find the handle (prevents issues with Safari)
|
224
|
+
while((this.handles.indexOf(handle) == -1) && handle.parentNode)
|
225
|
+
handle = handle.parentNode;
|
226
|
+
|
227
|
+
if(this.handles.indexOf(handle)!=-1) {
|
228
|
+
this.activeHandle = handle;
|
229
|
+
this.activeHandleIdx = this.handles.indexOf(this.activeHandle);
|
230
|
+
this.updateStyles();
|
231
|
+
|
232
|
+
var offsets = Position.cumulativeOffset(this.activeHandle);
|
233
|
+
this.offsetX = (pointer[0] - offsets[0]);
|
234
|
+
this.offsetY = (pointer[1] - offsets[1]);
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
Event.stop(event);
|
239
|
+
}
|
240
|
+
},
|
241
|
+
update: function(event) {
|
242
|
+
if(this.active) {
|
243
|
+
if(!this.dragging) this.dragging = true;
|
244
|
+
this.draw(event);
|
245
|
+
// fix AppleWebKit rendering
|
246
|
+
if(navigator.appVersion.indexOf('AppleWebKit')>0) window.scrollBy(0,0);
|
247
|
+
Event.stop(event);
|
248
|
+
}
|
249
|
+
},
|
250
|
+
draw: function(event) {
|
251
|
+
var pointer = [Event.pointerX(event), Event.pointerY(event)];
|
252
|
+
var offsets = Position.cumulativeOffset(this.track);
|
253
|
+
pointer[0] -= this.offsetX + offsets[0];
|
254
|
+
pointer[1] -= this.offsetY + offsets[1];
|
255
|
+
this.event = event;
|
256
|
+
this.setValue(this.translateToValue( this.isVertical() ? pointer[1] : pointer[0] ));
|
257
|
+
if(this.initialized && this.options.onSlide)
|
258
|
+
this.options.onSlide(this.values.length>1 ? this.values : this.value, this);
|
259
|
+
},
|
260
|
+
endDrag: function(event) {
|
261
|
+
if(this.active && this.dragging) {
|
262
|
+
this.finishDrag(event, true);
|
263
|
+
Event.stop(event);
|
264
|
+
}
|
265
|
+
this.active = false;
|
266
|
+
this.dragging = false;
|
267
|
+
},
|
268
|
+
finishDrag: function(event, success) {
|
269
|
+
this.active = false;
|
270
|
+
this.dragging = false;
|
271
|
+
this.updateFinished();
|
272
|
+
},
|
273
|
+
updateFinished: function() {
|
274
|
+
if(this.initialized && this.options.onChange)
|
275
|
+
this.options.onChange(this.values.length>1 ? this.values : this.value, this);
|
276
|
+
this.event = null;
|
277
|
+
}
|
278
|
+
}
|