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,78 @@
|
|
1
|
+
var Switcher = Class.create();
|
2
|
+
Switcher.classNames = {
|
3
|
+
open: 'switcher_state_open',
|
4
|
+
close: 'switcher_state_close',
|
5
|
+
sw: 'switcher_switch'
|
6
|
+
}
|
7
|
+
Switcher.prototype = {
|
8
|
+
initialize: function(sw, content) {
|
9
|
+
this.options = Object.extend({
|
10
|
+
open: false,
|
11
|
+
duration: 0.4,
|
12
|
+
beforeOpen: Prototype.emptyFunction,
|
13
|
+
afterOpen: Prototype.emptyFunction,
|
14
|
+
beforeClose: Prototype.emptyFunction,
|
15
|
+
afterClose: Prototype.emptyFunction,
|
16
|
+
effect: false,
|
17
|
+
cssPrefix: 'custom_',
|
18
|
+
subSwitch: []
|
19
|
+
}, arguments[2] || {});
|
20
|
+
|
21
|
+
this.sw = $(sw);
|
22
|
+
this.content = $(content);
|
23
|
+
|
24
|
+
var customCss = CssUtil.appendPrefix(this.options.cssPrefix, Switcher.classNames);
|
25
|
+
this.classNames = new CssUtil([Switcher.classNames, customCss]);
|
26
|
+
|
27
|
+
if (this.options.open) {
|
28
|
+
Element.show(this.content);
|
29
|
+
this.classNames.addClassNames(this.sw, 'open');
|
30
|
+
} else {
|
31
|
+
Element.hide(this.content);
|
32
|
+
this.classNames.addClassNames(this.sw, 'close');
|
33
|
+
}
|
34
|
+
var switchList = [this.sw].concat(this.options.subSwitch);
|
35
|
+
this.setSwitch(switchList);
|
36
|
+
},
|
37
|
+
|
38
|
+
setSwitch: function(switchList) {
|
39
|
+
switchList = (switchList.constructor == Array) ? switchList : [switchList];
|
40
|
+
switchList.each(function(sw) {
|
41
|
+
this.classNames.addClassNames(sw, 'sw');
|
42
|
+
Event.observe(sw, 'click', this.toggle.bindAsEventListener(this));
|
43
|
+
}.bind(this));
|
44
|
+
},
|
45
|
+
|
46
|
+
toggle: function(event) {
|
47
|
+
if (Element.hasClassName(this.sw, Switcher.classNames.close)) {
|
48
|
+
this.open();
|
49
|
+
}else {
|
50
|
+
this.close();
|
51
|
+
}
|
52
|
+
Event.stop(event);
|
53
|
+
},
|
54
|
+
|
55
|
+
open: function() {
|
56
|
+
this.options.beforeOpen(this.content);
|
57
|
+
this.classNames.removeClassNames(this.sw, 'close');
|
58
|
+
this.classNames.addClassNames(this.sw, 'open');
|
59
|
+
if (this.options.effect) {
|
60
|
+
new Effect.BlindDown(this.content, {duration: this.options.duration});
|
61
|
+
} else {
|
62
|
+
Element.show(this.content);
|
63
|
+
}
|
64
|
+
this.options.afterOpen(this.content);
|
65
|
+
},
|
66
|
+
|
67
|
+
close: function() {
|
68
|
+
this.options.beforeClose(this.content);
|
69
|
+
this.classNames.removeClassNames(this.sw, 'open')
|
70
|
+
this.classNames.addClassNames(this.sw, 'close');
|
71
|
+
if (this.options.effect) {
|
72
|
+
new Effect.BlindUp(this.content, {duration: this.options.duration});
|
73
|
+
} else {
|
74
|
+
Element.hide(this.content);
|
75
|
+
}
|
76
|
+
this.options.afterClose(this.content);
|
77
|
+
}
|
78
|
+
}
|
@@ -0,0 +1,469 @@
|
|
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
|
+
TabBox = Class.create();
|
23
|
+
TabBox.className = {
|
24
|
+
tabBox: 'tabBox_tabBox',
|
25
|
+
panelContainer: 'tabBox_panelContainer',
|
26
|
+
tabContainer: 'tabBox_tabContainer',
|
27
|
+
tabBar: 'tabBox_tabBar',
|
28
|
+
tab: 'tabBox_tab',
|
29
|
+
tabLeftInactive: 'tabBox_tabLeftInactive',
|
30
|
+
tabLeftActive: 'tabBox_tabLeftActive',
|
31
|
+
tabMiddleInactive: 'tabBox_tabMiddleInactive',
|
32
|
+
tabMiddleActive: 'tabBox_tabMiddleActive',
|
33
|
+
tabRightInactive: 'tabBox_tabRightInactive',
|
34
|
+
tabRightActive: 'tabBox_tabRightActive',
|
35
|
+
tabTitle: 'tabBox_tabTitle',
|
36
|
+
closeButton: 'tabBox_closeButton'
|
37
|
+
}
|
38
|
+
|
39
|
+
TabBox.prototype = {
|
40
|
+
initialize: function(element) {
|
41
|
+
var options = Object.extend({
|
42
|
+
selected: 1,
|
43
|
+
cssPrefix: 'custom_',
|
44
|
+
beforeSelect: function() { return true },
|
45
|
+
afterSelect: Prototype.emptyFunction,
|
46
|
+
afterSelectOnce: Prototype.emptyFunction,
|
47
|
+
onRemove: function() { return true },
|
48
|
+
sortable: false,
|
49
|
+
closeButton: false,
|
50
|
+
afterSort: Prototype.emptyFunction,
|
51
|
+
onSort: Prototype.emptyFunction,
|
52
|
+
lazyLoadUrl: [],
|
53
|
+
onLazyLoad: Prototype.emptyFunction,
|
54
|
+
afterLazyLoad: Prototype.emptyFunction,
|
55
|
+
lazyLoadFailure: Prototype.emptyFunction,
|
56
|
+
failureLimitOver: Prototype.emptyFunction,
|
57
|
+
failureLimit: 5,
|
58
|
+
tabRow: null,
|
59
|
+
titleLength: null
|
60
|
+
}, arguments[1] || {});
|
61
|
+
|
62
|
+
this.options = options;
|
63
|
+
this.element = $(element);
|
64
|
+
Element.setStyle(this.element, {visibility: 'hidden'});
|
65
|
+
Element.hide(this.element);
|
66
|
+
this.selected = (this.options.selected > 0) ? this.options.selected - 1 : 0 ;
|
67
|
+
|
68
|
+
this.css = CssUtil.getInstance(this.options.cssPrefix, TabBox.className);
|
69
|
+
this.classNames = this.css.allJoinClassNames();
|
70
|
+
this.css.addClassNames(this.element, 'tabBox');
|
71
|
+
|
72
|
+
this.start();
|
73
|
+
Element.setStyle(this.element, {visibility: 'visible'});
|
74
|
+
Element.show(this.element);
|
75
|
+
|
76
|
+
if (this.options.lazyLoadUrl.length > 0) this.lazyLoad(0);
|
77
|
+
},
|
78
|
+
|
79
|
+
start: function() {
|
80
|
+
this.tabs = [];
|
81
|
+
this.panelList = [];
|
82
|
+
|
83
|
+
this.tabId = this.element.id + '_tab';
|
84
|
+
this.tabLeftId = this.tabId + '_left';
|
85
|
+
this.tabMiddleId = this.tabId + '_middle';
|
86
|
+
this.tabRightId = this.tabId + '_right';
|
87
|
+
this.tabContainerId = this.element.id + '_tabContainer';
|
88
|
+
this.panelId = this.element.id + '_panel';
|
89
|
+
this.panelContainerId = this.element.id + '_panelContainer';
|
90
|
+
this.tabTitleId = this.element.id + '_tabTitle';
|
91
|
+
|
92
|
+
this.ids = [];
|
93
|
+
this.holder = [];
|
94
|
+
this.build();
|
95
|
+
this.tabs = this.tabs.collect(function(tab) { return $(tab) });
|
96
|
+
this.panelList = this.panelList.collect(function(panel) { return $(panel) });
|
97
|
+
this.tabContainer = $(this.tabContainerId);
|
98
|
+
this.panelContainer = $(this.panelContainerId);
|
99
|
+
this.selectTab();
|
100
|
+
this.setEvent();
|
101
|
+
this.appendElements();
|
102
|
+
if (this.options.sortable) this.setDrag();
|
103
|
+
},
|
104
|
+
|
105
|
+
setDrag: function() {
|
106
|
+
Sortable.create(this.tabContainerId, {
|
107
|
+
tag: 'div',
|
108
|
+
overlap: 'horizontal',
|
109
|
+
constraint: 'horizontal',
|
110
|
+
onChange: this.options.onSort,
|
111
|
+
onUpdate: this.options.afterSort,
|
112
|
+
starteffect: Prototype.emptyFunction,
|
113
|
+
endeffect: Prototype.emptyFunction
|
114
|
+
});
|
115
|
+
},
|
116
|
+
|
117
|
+
setEvent: function() {
|
118
|
+
this.ids.each(function(idSet) {
|
119
|
+
Event.observe(idSet.tab, 'click', this.selectTab.bindAsEventListener(this));
|
120
|
+
Event.observe(idSet.tab, 'mouseover', this.onMouseOver.bindAsEventListener(this));
|
121
|
+
Event.observe(idSet.tab, 'mouseout', this.onMouseOut.bindAsEventListener(this));
|
122
|
+
if (this.options.closeButton) {
|
123
|
+
Event.observe(idSet.button, 'click', this.onRemove.bindAsEventListener(this));
|
124
|
+
}
|
125
|
+
}.bind(this));
|
126
|
+
},
|
127
|
+
|
128
|
+
appendElements: function() {
|
129
|
+
this.holder.each(function(set) {
|
130
|
+
$(this.tabTitleId + set.number).appendChild(set.tab);
|
131
|
+
this.panelList[set.number].appendChild(set.content);
|
132
|
+
}.bind(this));
|
133
|
+
},
|
134
|
+
|
135
|
+
build: function() {
|
136
|
+
var tabContainer =
|
137
|
+
"<div id='" + this.tabContainerId + "' class='" + this.classNames['tabContainer'] + "'>";
|
138
|
+
var panelContainer =
|
139
|
+
"<div id='" + this.panelContainerId + "' class='" + this.classNames['panelContainer'] + "'>";
|
140
|
+
|
141
|
+
var tabSetCount = 0;
|
142
|
+
$A(this.element.childNodes).each(function(node) {
|
143
|
+
if (Element.isElementNode(node)) {
|
144
|
+
var tabSet = this.buildTabSet(node, tabSetCount);
|
145
|
+
tabContainer += tabSet.tab;
|
146
|
+
panelContainer += tabSet.panel;
|
147
|
+
tabSetCount++;
|
148
|
+
}
|
149
|
+
}.bind(this));
|
150
|
+
|
151
|
+
tabContainer += "</div>";
|
152
|
+
panelContainer += "</div>";
|
153
|
+
this.element.innerHTML = tabContainer +
|
154
|
+
"<div class='" + this.classNames['tabBar'] + "'></div>" + panelContainer;
|
155
|
+
},
|
156
|
+
|
157
|
+
buildTabSet: function(element, i) {
|
158
|
+
var nodes = Element.getChildNodesWithoutWhitespace(element);
|
159
|
+
this.holdElements(nodes[0], nodes[1], i);
|
160
|
+
return {
|
161
|
+
tab: this.buildTab(nodes[0], i, Element.attributeHTML(element, 'onclick')),
|
162
|
+
panel: this.buildPanel(nodes[1], i)
|
163
|
+
};
|
164
|
+
},
|
165
|
+
|
166
|
+
buildTab: function(tab, i, events) {
|
167
|
+
var tabId = this.tabId + i;
|
168
|
+
var ids = {tab: tabId};
|
169
|
+
this.ids.push(ids);
|
170
|
+
this.tabs[i] = tabId;
|
171
|
+
|
172
|
+
var button = "";
|
173
|
+
if (this.options.closeButton) {
|
174
|
+
var buttonId = this.element.id.appendSuffix('closeButton_' + i);
|
175
|
+
ids.button = buttonId;
|
176
|
+
button = "<div id='" + buttonId + "' class='" + this.classNames['closeButton'] + "'></div>";
|
177
|
+
}
|
178
|
+
|
179
|
+
var tabStyle = "";
|
180
|
+
if (this.options.tabRow && !isNaN(this.options.tabRow) && ((i % this.options.tabRow) == 0)) {
|
181
|
+
tabStyle = " style='clear: left; float: none;'";
|
182
|
+
}
|
183
|
+
|
184
|
+
var tabText = this.getTabText(tab).escapeHTML().replace(/"/g, '"');
|
185
|
+
this.setTabText(tab, this.chopTabText(tabText));
|
186
|
+
|
187
|
+
var html =
|
188
|
+
"<div id='" + tabId + "' class='" + this.classNames['tab'] + "'" + tabStyle + " " + events + ">" +
|
189
|
+
"<div id='" + this.tabLeftId + i + "' class='" + this.classNames['tabLeftInactive'] + "'></div>" +
|
190
|
+
"<div id='" + this.tabMiddleId + i + "' class='" + this.classNames['tabMiddleInactive'] + "'>" +
|
191
|
+
'<div id="' + this.tabTitleId + i + '" class="' + this.classNames['tabTitle'] + '" title="' + tabText + '">' +
|
192
|
+
"</div>" +
|
193
|
+
button +
|
194
|
+
"</div>" +
|
195
|
+
"<div id='" + this.tabRightId + i + "' class='" + this.classNames['tabRightInactive'] + "'></div>" +
|
196
|
+
"</div>";
|
197
|
+
return html;
|
198
|
+
},
|
199
|
+
|
200
|
+
setTabText: function(element, text) {
|
201
|
+
if (Element.isTextNode(element)) {
|
202
|
+
element.nodeValue = text;
|
203
|
+
} else if (Element.isElementNode(element)) {
|
204
|
+
element.innerHTML = text;
|
205
|
+
}
|
206
|
+
},
|
207
|
+
|
208
|
+
getTabText: function(element) {
|
209
|
+
if (Element.isTextNode(element)) {
|
210
|
+
textNode = element;
|
211
|
+
} else if (Element.isElementNode(element)) {
|
212
|
+
textNode = Element.getTextNodes(element, true)[0];
|
213
|
+
} else {
|
214
|
+
return '';
|
215
|
+
}
|
216
|
+
return textNode.nodeValue.replace(/(^(\s)*) | ((\s)*$)/, '');
|
217
|
+
},
|
218
|
+
|
219
|
+
chopTabText: function(title) {
|
220
|
+
if (this.options.titleLength && !isNaN(this.options.titleLength)) {
|
221
|
+
title = title.substring(0, this.options.titleLength);
|
222
|
+
}
|
223
|
+
return title;
|
224
|
+
},
|
225
|
+
|
226
|
+
buildPanel: function(panelContent, i) {
|
227
|
+
var id = this.panelId + i;
|
228
|
+
this.panelList[i] = id;
|
229
|
+
return "<div id='" + id + "' style='display: none;'></div>";
|
230
|
+
},
|
231
|
+
|
232
|
+
holdElements: function(tab, content, number) {
|
233
|
+
this.holder.push({number: number, tab: tab, content: content});
|
234
|
+
var tmpParent = document.createDocumentFragment();
|
235
|
+
tmpParent.appendChild(tab);
|
236
|
+
tmpParent.appendChild(content);
|
237
|
+
},
|
238
|
+
|
239
|
+
selectTab: function(e){
|
240
|
+
if (!this.options.beforeSelect()) return;
|
241
|
+
if (!e) {
|
242
|
+
this.setTabActive(this.tabs[this.selected]);
|
243
|
+
Element.show(this.panelList[this.selected]);
|
244
|
+
return;
|
245
|
+
}
|
246
|
+
var currentPanel = this.getCurrentPanel();
|
247
|
+
var currentTab = this.getCurrentTab();
|
248
|
+
|
249
|
+
var targetElement = null;
|
250
|
+
if (e.nodeType) {
|
251
|
+
targetElement = e;
|
252
|
+
} else {
|
253
|
+
targetElement = Event.element(e);
|
254
|
+
}
|
255
|
+
var targetIndex = this.getTargetIndex(targetElement);
|
256
|
+
if (targetIndex == this.selected) {
|
257
|
+
return;
|
258
|
+
}
|
259
|
+
var targetPanel = this.panelList[targetIndex];
|
260
|
+
var targetTab = this.tabs[targetIndex];
|
261
|
+
|
262
|
+
if (currentTab) this.setTabInactive(currentTab);
|
263
|
+
this.setTabActive(targetTab);
|
264
|
+
|
265
|
+
if (currentPanel) Element.toggle(currentPanel);
|
266
|
+
Element.toggle(targetPanel);
|
267
|
+
|
268
|
+
this.selected = targetIndex;
|
269
|
+
this.options.afterSelect(targetPanel, currentPanel);
|
270
|
+
if (!targetPanel.selected) {
|
271
|
+
this._callAfterSelectOnce(targetPanel);
|
272
|
+
targetPanel.selected = true;
|
273
|
+
}
|
274
|
+
},
|
275
|
+
|
276
|
+
setTabActive: function(tab) {
|
277
|
+
var tabChildren = tab.childNodes;
|
278
|
+
this.css.refreshClassNames(tabChildren[0], 'tabLeftActive');
|
279
|
+
this.css.refreshClassNames(tabChildren[1], 'tabMiddleActive');
|
280
|
+
this.css.refreshClassNames(tabChildren[2], 'tabRightActive');
|
281
|
+
},
|
282
|
+
|
283
|
+
setTabInactive: function(tab) {
|
284
|
+
var tabChildren = tab.childNodes;
|
285
|
+
this.css.refreshClassNames(tabChildren[0], 'tabLeftInactive');
|
286
|
+
this.css.refreshClassNames(tabChildren[1], 'tabMiddleInactive');
|
287
|
+
this.css.refreshClassNames(tabChildren[2], 'tabRightInactive');
|
288
|
+
},
|
289
|
+
|
290
|
+
getTargetIndex: function(element) {
|
291
|
+
while(element) {
|
292
|
+
if (element.id && element.id.indexOf(this.tabId, 0) >= 0) {
|
293
|
+
var index = element.id.substring(this.tabId.length);
|
294
|
+
if (!isNaN(index)) {
|
295
|
+
return index;
|
296
|
+
}
|
297
|
+
}
|
298
|
+
element = element.parentNode;
|
299
|
+
}
|
300
|
+
},
|
301
|
+
|
302
|
+
onRemove: function(event) {
|
303
|
+
Event.stop(event);
|
304
|
+
var element = Event.element(event);
|
305
|
+
var index = this.getTargetIndex(element);
|
306
|
+
var tab = this.tabs[index];
|
307
|
+
if (this.options.onRemove(tab)) {
|
308
|
+
this.remove(tab);
|
309
|
+
}
|
310
|
+
},
|
311
|
+
|
312
|
+
remove: function(tab) {
|
313
|
+
if (tab) {
|
314
|
+
var index = this.getTargetIndex(tab);
|
315
|
+
var nextActiveTab = this.getNextTab();
|
316
|
+
if (!nextActiveTab) nextActiveTab = this.getPreviousTab();
|
317
|
+
Element.remove(tab);
|
318
|
+
Element.remove(this.panelList[index]);
|
319
|
+
this.tabs[index] = null;
|
320
|
+
this.panelList[index] = null;
|
321
|
+
|
322
|
+
if (index == this.selected) {
|
323
|
+
if (nextActiveTab) {
|
324
|
+
this.selectTab(nextActiveTab);
|
325
|
+
}
|
326
|
+
}
|
327
|
+
}
|
328
|
+
},
|
329
|
+
|
330
|
+
addByElement: function(element) {
|
331
|
+
this.holder = [];
|
332
|
+
this.ids = [];
|
333
|
+
this.contents = [];
|
334
|
+
var tabSet = this.buildTabSet($(element), this.tabs.length);
|
335
|
+
this.tabContainer.appendChild(tabSet.tab.toElement());
|
336
|
+
this.panelContainer.appendChild(tabSet.panel.toElement());
|
337
|
+
this.tabs[this.tabs.length - 1] = $(this.tabs.last());
|
338
|
+
this.panelList[this.panelList.length - 1] = $(this.panelList.last());
|
339
|
+
this.setEvent();
|
340
|
+
this.appendElements();
|
341
|
+
if (this.options.sortable) this.setDrag();
|
342
|
+
},
|
343
|
+
|
344
|
+
add: function(title, content) {
|
345
|
+
var contents = [];
|
346
|
+
var node = Builder.node('div');
|
347
|
+
node.innerHTML = title;
|
348
|
+
contents.push(node);
|
349
|
+
node = Builder.node('div');
|
350
|
+
node.innerHTML = content;
|
351
|
+
contents.push(node);
|
352
|
+
this.addByElement(Builder.node('div', contents));
|
353
|
+
},
|
354
|
+
|
355
|
+
lazyLoad: function(index) {
|
356
|
+
this.errorCount = 0;
|
357
|
+
this.loadedList = [];
|
358
|
+
this.load(index);
|
359
|
+
},
|
360
|
+
|
361
|
+
load: function(index) {
|
362
|
+
var container = this.panelList[index];
|
363
|
+
var url = this.options.lazyLoadUrl[index];
|
364
|
+
var self = this;
|
365
|
+
if (container && url) {
|
366
|
+
new Ajax.Updater(
|
367
|
+
{success: container},
|
368
|
+
url,
|
369
|
+
{
|
370
|
+
onSuccess: function() {
|
371
|
+
self.setLoaded(index);
|
372
|
+
self.options.onLazyLoad(container, self);
|
373
|
+
self.load(++index);
|
374
|
+
if (self.isFinishLazyLoad()) self.options.afterLazyLoad(self);
|
375
|
+
},
|
376
|
+
onFailure: function() {
|
377
|
+
self.errorCount++;
|
378
|
+
self.options.lazyLoadFailure(container, self);
|
379
|
+
if (self.errorCount <= self.options.failureLimit) {
|
380
|
+
self.load(index);
|
381
|
+
} else {
|
382
|
+
self.options.failureLimitOver(self);
|
383
|
+
}
|
384
|
+
},
|
385
|
+
asynchronous: true,
|
386
|
+
evalScripts: true
|
387
|
+
}
|
388
|
+
);
|
389
|
+
}
|
390
|
+
},
|
391
|
+
|
392
|
+
isFinishLazyLoad: function() {
|
393
|
+
return this.loadedList.length == this.panelList.length;
|
394
|
+
},
|
395
|
+
|
396
|
+
setLoaded: function(i) {
|
397
|
+
this.loadedList.push(i);
|
398
|
+
},
|
399
|
+
|
400
|
+
onMouseOver: function(event) {
|
401
|
+
var targetElement = Event.element(event);
|
402
|
+
var targetIndex = this.getTargetIndex(targetElement);
|
403
|
+
if (targetIndex != this.selected) {
|
404
|
+
var targetTab = this.tabs[targetIndex];
|
405
|
+
this.setTabActive(targetTab);
|
406
|
+
}
|
407
|
+
},
|
408
|
+
|
409
|
+
onMouseOut: function(event) {
|
410
|
+
var targetElement = Event.element(event);
|
411
|
+
var targetIndex = this.getTargetIndex(targetElement);
|
412
|
+
if (targetIndex != this.selected) {
|
413
|
+
var targetTab = this.tabs[targetIndex];
|
414
|
+
this.setTabInactive(targetTab);
|
415
|
+
}
|
416
|
+
},
|
417
|
+
|
418
|
+
hasNextTab: function() {
|
419
|
+
return this.getNextTab() ? true : false;
|
420
|
+
},
|
421
|
+
|
422
|
+
hasPreviousTab: function() {
|
423
|
+
return this.getPreviousTab() ? true : false;
|
424
|
+
},
|
425
|
+
|
426
|
+
getNextTab: function() {
|
427
|
+
return Element.next(this.getCurrentTab());
|
428
|
+
},
|
429
|
+
|
430
|
+
getPreviousTab: function() {
|
431
|
+
return Element.previous(this.getCurrentTab());
|
432
|
+
},
|
433
|
+
|
434
|
+
selectNextTab: function() {
|
435
|
+
this.selectTab(this.getNextTab());
|
436
|
+
},
|
437
|
+
|
438
|
+
selectPreviousTab: function() {
|
439
|
+
this.selectTab(this.getPreviousTab());
|
440
|
+
},
|
441
|
+
|
442
|
+
tabCount: function() {
|
443
|
+
return this.tabs.inject(0, function(i, t) {
|
444
|
+
return t ? ++i : i;
|
445
|
+
})
|
446
|
+
},
|
447
|
+
|
448
|
+
getCurrentPanel: function() {
|
449
|
+
return this.panelList[this.selected];
|
450
|
+
},
|
451
|
+
|
452
|
+
getCurrentTab: function() {
|
453
|
+
return this.tabs[this.selected];
|
454
|
+
},
|
455
|
+
|
456
|
+
_callAfterSelectOnce: function(targetPanel) {
|
457
|
+
var func = this.options.afterSelectOnce;
|
458
|
+
if (!func) return;
|
459
|
+
|
460
|
+
if (func.constructor != Function) {
|
461
|
+
if (func.constructor == Array) {
|
462
|
+
func = func[this.panelList.indexOf(targetPanel)];
|
463
|
+
} else {
|
464
|
+
func = func[this.panelList.indexOf(targetPanel).succ()];
|
465
|
+
}
|
466
|
+
}
|
467
|
+
if (func) func(targetPanel);
|
468
|
+
}
|
469
|
+
}
|