activeldap3 1.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (443) hide show
  1. data/.gitignore +6 -0
  2. data/CHANGES +691 -0
  3. data/COPYING +340 -0
  4. data/LICENSE +58 -0
  5. data/README +154 -0
  6. data/Rakefile +121 -0
  7. data/TODO +32 -0
  8. data/activeldap3.gemspec +18 -0
  9. data/benchmark/bench-al.rb +263 -0
  10. data/benchmark/config.yaml.sample +5 -0
  11. data/examples/al-admin/README +182 -0
  12. data/examples/al-admin/Rakefile +16 -0
  13. data/examples/al-admin/app/controllers/account_controller.rb +60 -0
  14. data/examples/al-admin/app/controllers/application_controller.rb +46 -0
  15. data/examples/al-admin/app/controllers/attributes_controller.rb +17 -0
  16. data/examples/al-admin/app/controllers/directory_controller.rb +49 -0
  17. data/examples/al-admin/app/controllers/object_classes_controller.rb +17 -0
  18. data/examples/al-admin/app/controllers/syntaxes_controller.rb +17 -0
  19. data/examples/al-admin/app/controllers/users_controller.rb +66 -0
  20. data/examples/al-admin/app/controllers/welcome_controller.rb +12 -0
  21. data/examples/al-admin/app/helpers/account_helper.rb +2 -0
  22. data/examples/al-admin/app/helpers/application_helper.rb +46 -0
  23. data/examples/al-admin/app/helpers/attributes_helper.rb +15 -0
  24. data/examples/al-admin/app/helpers/directory_helper.rb +7 -0
  25. data/examples/al-admin/app/helpers/object_classes_helper.rb +10 -0
  26. data/examples/al-admin/app/helpers/syntaxes_helper.rb +10 -0
  27. data/examples/al-admin/app/helpers/url_helper.rb +17 -0
  28. data/examples/al-admin/app/helpers/users_helper.rb +17 -0
  29. data/examples/al-admin/app/helpers/welcome_helper.rb +2 -0
  30. data/examples/al-admin/app/models/entry.rb +23 -0
  31. data/examples/al-admin/app/models/ldap_user.rb +58 -0
  32. data/examples/al-admin/app/models/user.rb +91 -0
  33. data/examples/al-admin/app/views/_entry/_attributes_information.html.erb +29 -0
  34. data/examples/al-admin/app/views/_entry/_entry.html.erb +15 -0
  35. data/examples/al-admin/app/views/_schema/_aliases.html.erb +7 -0
  36. data/examples/al-admin/app/views/_switcher/_after.html.erb +2 -0
  37. data/examples/al-admin/app/views/_switcher/_before.html.erb +5 -0
  38. data/examples/al-admin/app/views/account/login.html.erb +26 -0
  39. data/examples/al-admin/app/views/account/sign_up.html.erb +29 -0
  40. data/examples/al-admin/app/views/attributes/_attributes.html.erb +19 -0
  41. data/examples/al-admin/app/views/attributes/_detail.html.erb +29 -0
  42. data/examples/al-admin/app/views/attributes/index.html.erb +3 -0
  43. data/examples/al-admin/app/views/attributes/show.html.erb +31 -0
  44. data/examples/al-admin/app/views/directory/_tree.html.erb +10 -0
  45. data/examples/al-admin/app/views/directory/_tree_view_js.html.erb +25 -0
  46. data/examples/al-admin/app/views/directory/index.html.erb +13 -0
  47. data/examples/al-admin/app/views/directory/populate.html.erb +2 -0
  48. data/examples/al-admin/app/views/layouts/_footer.html.erb +11 -0
  49. data/examples/al-admin/app/views/layouts/_header_menu.html.erb +10 -0
  50. data/examples/al-admin/app/views/layouts/_main_menu.html.erb +18 -0
  51. data/examples/al-admin/app/views/layouts/application.html.erb +57 -0
  52. data/examples/al-admin/app/views/object_classes/_attributes.html.erb +28 -0
  53. data/examples/al-admin/app/views/object_classes/_object_classes.html.erb +19 -0
  54. data/examples/al-admin/app/views/object_classes/index.html.erb +3 -0
  55. data/examples/al-admin/app/views/object_classes/show.html.erb +39 -0
  56. data/examples/al-admin/app/views/syntaxes/_detail.html.erb +14 -0
  57. data/examples/al-admin/app/views/syntaxes/_syntaxes.html.erb +19 -0
  58. data/examples/al-admin/app/views/syntaxes/index.html.erb +3 -0
  59. data/examples/al-admin/app/views/syntaxes/show.html.erb +22 -0
  60. data/examples/al-admin/app/views/users/_attributes_update_form.html.erb +42 -0
  61. data/examples/al-admin/app/views/users/_form.html.erb +13 -0
  62. data/examples/al-admin/app/views/users/_object_classes_update_form.html.erb +46 -0
  63. data/examples/al-admin/app/views/users/_password_change_form.html.erb +20 -0
  64. data/examples/al-admin/app/views/users/edit.html.erb +15 -0
  65. data/examples/al-admin/app/views/users/index.html.erb +10 -0
  66. data/examples/al-admin/app/views/users/show.html.erb +11 -0
  67. data/examples/al-admin/app/views/welcome/index.html.erb +13 -0
  68. data/examples/al-admin/config.ru +7 -0
  69. data/examples/al-admin/config/boot.rb +110 -0
  70. data/examples/al-admin/config/database.yml.example +19 -0
  71. data/examples/al-admin/config/environment.rb +73 -0
  72. data/examples/al-admin/config/environments/development.rb +17 -0
  73. data/examples/al-admin/config/environments/production.rb +24 -0
  74. data/examples/al-admin/config/environments/test.rb +22 -0
  75. data/examples/al-admin/config/initializers/exception_notifier.rb +2 -0
  76. data/examples/al-admin/config/initializers/fast_gettext.rb +3 -0
  77. data/examples/al-admin/config/initializers/inflections.rb +10 -0
  78. data/examples/al-admin/config/initializers/mime_types.rb +5 -0
  79. data/examples/al-admin/config/initializers/session_store.rb +23 -0
  80. data/examples/al-admin/config/ldap.yml.example +21 -0
  81. data/examples/al-admin/config/routes.rb +58 -0
  82. data/examples/al-admin/db/migrate/001_create_users.rb +16 -0
  83. data/examples/al-admin/doc/README_FOR_APP +2 -0
  84. data/examples/al-admin/lib/authenticated_system.rb +124 -0
  85. data/examples/al-admin/lib/authenticated_test_helper.rb +113 -0
  86. data/examples/al-admin/lib/ldap_test_helper.rb +38 -0
  87. data/examples/al-admin/lib/tasks/testing.rake +10 -0
  88. data/examples/al-admin/po/en/al-admin.po +343 -0
  89. data/examples/al-admin/po/ja/al-admin.po +343 -0
  90. data/examples/al-admin/po/nl/al-admin.po +380 -0
  91. data/examples/al-admin/public/.htaccess +40 -0
  92. data/examples/al-admin/public/404.html +30 -0
  93. data/examples/al-admin/public/500.html +30 -0
  94. data/examples/al-admin/public/dispatch.cgi +10 -0
  95. data/examples/al-admin/public/dispatch.fcgi +24 -0
  96. data/examples/al-admin/public/dispatch.rb +10 -0
  97. data/examples/al-admin/public/favicon.ico +0 -0
  98. data/examples/al-admin/public/images/active-ldap.svg +6351 -0
  99. data/examples/al-admin/public/images/al-admin.png +0 -0
  100. data/examples/al-admin/public/images/al-admin.svg +6371 -0
  101. data/examples/al-admin/public/images/header-background.png +0 -0
  102. data/examples/al-admin/public/images/header-background.svg +99 -0
  103. data/examples/al-admin/public/images/rails.png +0 -0
  104. data/examples/al-admin/public/images/spinelz/accordion_tab_left_active.gif +0 -0
  105. data/examples/al-admin/public/images/spinelz/accordion_tab_left_inactive.gif +0 -0
  106. data/examples/al-admin/public/images/spinelz/accordion_tab_middle_active.gif +0 -0
  107. data/examples/al-admin/public/images/spinelz/accordion_tab_middle_inactive.gif +0 -0
  108. data/examples/al-admin/public/images/spinelz/accordion_tab_right_active.gif +0 -0
  109. data/examples/al-admin/public/images/spinelz/accordion_tab_right_inactive.gif +0 -0
  110. data/examples/al-admin/public/images/spinelz/balloon_back.gif +0 -0
  111. data/examples/al-admin/public/images/spinelz/balloon_bottom_left.gif +0 -0
  112. data/examples/al-admin/public/images/spinelz/balloon_bottom_middle.gif +0 -0
  113. data/examples/al-admin/public/images/spinelz/balloon_bottom_right.gif +0 -0
  114. data/examples/al-admin/public/images/spinelz/balloon_left_down_arrow.gif +0 -0
  115. data/examples/al-admin/public/images/spinelz/balloon_left_up_arrow.gif +0 -0
  116. data/examples/al-admin/public/images/spinelz/balloon_middle_left.gif +0 -0
  117. data/examples/al-admin/public/images/spinelz/balloon_middle_right.gif +0 -0
  118. data/examples/al-admin/public/images/spinelz/balloon_right_down_arrow.gif +0 -0
  119. data/examples/al-admin/public/images/spinelz/balloon_right_up_arrow.gif +0 -0
  120. data/examples/al-admin/public/images/spinelz/balloon_top_left.gif +0 -0
  121. data/examples/al-admin/public/images/spinelz/balloon_top_middle.gif +0 -0
  122. data/examples/al-admin/public/images/spinelz/balloon_top_right.gif +0 -0
  123. data/examples/al-admin/public/images/spinelz/barchart_h.gif +0 -0
  124. data/examples/al-admin/public/images/spinelz/barchart_v.gif +0 -0
  125. data/examples/al-admin/public/images/spinelz/button.gif +0 -0
  126. data/examples/al-admin/public/images/spinelz/calendar_default_handler.gif +0 -0
  127. data/examples/al-admin/public/images/spinelz/calendar_delete.gif +0 -0
  128. data/examples/al-admin/public/images/spinelz/calendar_next.gif +0 -0
  129. data/examples/al-admin/public/images/spinelz/calendar_next_second.gif +0 -0
  130. data/examples/al-admin/public/images/spinelz/calendar_pre.gif +0 -0
  131. data/examples/al-admin/public/images/spinelz/calendar_pre_second.gif +0 -0
  132. data/examples/al-admin/public/images/spinelz/calendar_private_icon.gif +0 -0
  133. data/examples/al-admin/public/images/spinelz/calendar_schedule.gif +0 -0
  134. data/examples/al-admin/public/images/spinelz/calender_back.gif +0 -0
  135. data/examples/al-admin/public/images/spinelz/calender_back_second.gif +0 -0
  136. data/examples/al-admin/public/images/spinelz/datepicker2_back.gif +0 -0
  137. data/examples/al-admin/public/images/spinelz/datepicker2_back_second.gif +0 -0
  138. data/examples/al-admin/public/images/spinelz/datepicker2_next.gif +0 -0
  139. data/examples/al-admin/public/images/spinelz/datepicker2_next_second.gif +0 -0
  140. data/examples/al-admin/public/images/spinelz/datepicker2_pre.gif +0 -0
  141. data/examples/al-admin/public/images/spinelz/datepicker2_pre_second.gif +0 -0
  142. data/examples/al-admin/public/images/spinelz/datepicker_back.gif +0 -0
  143. data/examples/al-admin/public/images/spinelz/datepicker_back_second.gif +0 -0
  144. data/examples/al-admin/public/images/spinelz/datepicker_next.gif +0 -0
  145. data/examples/al-admin/public/images/spinelz/datepicker_next_second.gif +0 -0
  146. data/examples/al-admin/public/images/spinelz/datepicker_pre.gif +0 -0
  147. data/examples/al-admin/public/images/spinelz/datepicker_pre_second.gif +0 -0
  148. data/examples/al-admin/public/images/spinelz/grid_down.gif +0 -0
  149. data/examples/al-admin/public/images/spinelz/grid_state.gif +0 -0
  150. data/examples/al-admin/public/images/spinelz/grid_up.gif +0 -0
  151. data/examples/al-admin/public/images/spinelz/icon_day.gif +0 -0
  152. data/examples/al-admin/public/images/spinelz/icon_month.gif +0 -0
  153. data/examples/al-admin/public/images/spinelz/icon_week.gif +0 -0
  154. data/examples/al-admin/public/images/spinelz/menubar_back.gif +0 -0
  155. data/examples/al-admin/public/images/spinelz/menubar_subcontents_back.gif +0 -0
  156. data/examples/al-admin/public/images/spinelz/navPanel_tab_left_active.gif +0 -0
  157. data/examples/al-admin/public/images/spinelz/navPanel_tab_left_inactive.gif +0 -0
  158. data/examples/al-admin/public/images/spinelz/navPanel_tab_middle_active.gif +0 -0
  159. data/examples/al-admin/public/images/spinelz/navPanel_tab_middle_inactive.gif +0 -0
  160. data/examples/al-admin/public/images/spinelz/navPanel_tab_right_active.gif +0 -0
  161. data/examples/al-admin/public/images/spinelz/navPanel_tab_right_inactive.gif +0 -0
  162. data/examples/al-admin/public/images/spinelz/select_date.gif +0 -0
  163. data/examples/al-admin/public/images/spinelz/selectabletable_selected.gif +0 -0
  164. data/examples/al-admin/public/images/spinelz/sideBarBox_about.gif +0 -0
  165. data/examples/al-admin/public/images/spinelz/sideBarBox_menu.gif +0 -0
  166. data/examples/al-admin/public/images/spinelz/sideBarBox_sample.gif +0 -0
  167. data/examples/al-admin/public/images/spinelz/sideBarBox_tabBottomActive.gif +0 -0
  168. data/examples/al-admin/public/images/spinelz/sideBarBox_tabBottomInactive.gif +0 -0
  169. data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleActive.gif +0 -0
  170. data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleActive2.gif +0 -0
  171. data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleInactive.gif +0 -0
  172. data/examples/al-admin/public/images/spinelz/sideBarBox_tabMiddleInactive2.gif +0 -0
  173. data/examples/al-admin/public/images/spinelz/sideBarBox_tabTopActive.gif +0 -0
  174. data/examples/al-admin/public/images/spinelz/sideBarBox_tabTopInactive.gif +0 -0
  175. data/examples/al-admin/public/images/spinelz/sideBarBox_tabbar.gif +0 -0
  176. data/examples/al-admin/public/images/spinelz/sortableTable_down.gif +0 -0
  177. data/examples/al-admin/public/images/spinelz/sortableTable_normal.gif +0 -0
  178. data/examples/al-admin/public/images/spinelz/sortableTable_up.gif +0 -0
  179. data/examples/al-admin/public/images/spinelz/switcher_close.gif +0 -0
  180. data/examples/al-admin/public/images/spinelz/switcher_open.gif +0 -0
  181. data/examples/al-admin/public/images/spinelz/tabBox_close.gif +0 -0
  182. data/examples/al-admin/public/images/spinelz/tabBox_tabLeftActive.gif +0 -0
  183. data/examples/al-admin/public/images/spinelz/tabBox_tabLeftInactive.gif +0 -0
  184. data/examples/al-admin/public/images/spinelz/tabBox_tabMiddleActive.gif +0 -0
  185. data/examples/al-admin/public/images/spinelz/tabBox_tabMiddleInactive.gif +0 -0
  186. data/examples/al-admin/public/images/spinelz/tabBox_tabRightActive.gif +0 -0
  187. data/examples/al-admin/public/images/spinelz/tabBox_tabRightInactive.gif +0 -0
  188. data/examples/al-admin/public/images/spinelz/tab_bar.gif +0 -0
  189. data/examples/al-admin/public/images/spinelz/table_back.gif +0 -0
  190. data/examples/al-admin/public/images/spinelz/timepicker_clock.gif +0 -0
  191. data/examples/al-admin/public/images/spinelz/toolbar_close.gif +0 -0
  192. data/examples/al-admin/public/images/spinelz/toolbar_left.gif +0 -0
  193. data/examples/al-admin/public/images/spinelz/toolbar_max.gif +0 -0
  194. data/examples/al-admin/public/images/spinelz/toolbar_middle.gif +0 -0
  195. data/examples/al-admin/public/images/spinelz/toolbar_min.gif +0 -0
  196. data/examples/al-admin/public/images/spinelz/toolbar_next.gif +0 -0
  197. data/examples/al-admin/public/images/spinelz/toolbar_right.gif +0 -0
  198. data/examples/al-admin/public/images/spinelz/treeview_dir.gif +0 -0
  199. data/examples/al-admin/public/images/spinelz/treeview_file.gif +0 -0
  200. data/examples/al-admin/public/images/spinelz/treeview_group.gif +0 -0
  201. data/examples/al-admin/public/images/spinelz/treeview_group_special.gif +0 -0
  202. data/examples/al-admin/public/images/spinelz/treeview_state.gif +0 -0
  203. data/examples/al-admin/public/images/spinelz/treeview_user.gif +0 -0
  204. data/examples/al-admin/public/images/spinelz/window_bottom_left.gif +0 -0
  205. data/examples/al-admin/public/images/spinelz/window_bottom_middle.gif +0 -0
  206. data/examples/al-admin/public/images/spinelz/window_bottom_right.gif +0 -0
  207. data/examples/al-admin/public/images/spinelz/window_close.gif +0 -0
  208. data/examples/al-admin/public/images/spinelz/window_max.gif +0 -0
  209. data/examples/al-admin/public/images/spinelz/window_middle_left.gif +0 -0
  210. data/examples/al-admin/public/images/spinelz/window_middle_right.gif +0 -0
  211. data/examples/al-admin/public/images/spinelz/window_min.gif +0 -0
  212. data/examples/al-admin/public/images/spinelz/window_top_left.gif +0 -0
  213. data/examples/al-admin/public/images/spinelz/window_top_middle.gif +0 -0
  214. data/examples/al-admin/public/images/spinelz/window_top_right.gif +0 -0
  215. data/examples/al-admin/public/javascripts/application.js +2 -0
  216. data/examples/al-admin/public/javascripts/controls.js +963 -0
  217. data/examples/al-admin/public/javascripts/dragdrop.js +973 -0
  218. data/examples/al-admin/public/javascripts/effects.js +1128 -0
  219. data/examples/al-admin/public/javascripts/prototype.js +4320 -0
  220. data/examples/al-admin/public/javascripts/spinelz/accordion.js +185 -0
  221. data/examples/al-admin/public/javascripts/spinelz/ajaxHistory.js +157 -0
  222. data/examples/al-admin/public/javascripts/spinelz/balloon.js +287 -0
  223. data/examples/al-admin/public/javascripts/spinelz/barchart.js +524 -0
  224. data/examples/al-admin/public/javascripts/spinelz/calendar.js +3012 -0
  225. data/examples/al-admin/public/javascripts/spinelz/colorpicker.js +128 -0
  226. data/examples/al-admin/public/javascripts/spinelz/datepicker.js +438 -0
  227. data/examples/al-admin/public/javascripts/spinelz/grid.js +1391 -0
  228. data/examples/al-admin/public/javascripts/spinelz/grid_resizeEx.js +100 -0
  229. data/examples/al-admin/public/javascripts/spinelz/grid_sortabletableEx.js +129 -0
  230. data/examples/al-admin/public/javascripts/spinelz/inplaceEditorEx.js +148 -0
  231. data/examples/al-admin/public/javascripts/spinelz/menubar.js +232 -0
  232. data/examples/al-admin/public/javascripts/spinelz/navPanel.js +170 -0
  233. data/examples/al-admin/public/javascripts/spinelz/selectableTable.js +433 -0
  234. data/examples/al-admin/public/javascripts/spinelz/sideBarBox.js +282 -0
  235. data/examples/al-admin/public/javascripts/spinelz/sideBarBox_effects.js +83 -0
  236. data/examples/al-admin/public/javascripts/spinelz/sortableTable.js +270 -0
  237. data/examples/al-admin/public/javascripts/spinelz/switcher.js +78 -0
  238. data/examples/al-admin/public/javascripts/spinelz/tabBox.js +469 -0
  239. data/examples/al-admin/public/javascripts/spinelz/timepicker.js +384 -0
  240. data/examples/al-admin/public/javascripts/spinelz/toolbar.js +152 -0
  241. data/examples/al-admin/public/javascripts/spinelz/treeview.js +703 -0
  242. data/examples/al-admin/public/javascripts/spinelz/window.js +641 -0
  243. data/examples/al-admin/public/javascripts/spinelz/window_resizeEx.js +130 -0
  244. data/examples/al-admin/public/javascripts/spinelz_lib/builder.js +131 -0
  245. data/examples/al-admin/public/javascripts/spinelz_lib/controls.js +835 -0
  246. data/examples/al-admin/public/javascripts/spinelz_lib/dragdrop.js +944 -0
  247. data/examples/al-admin/public/javascripts/spinelz_lib/effects.js +1090 -0
  248. data/examples/al-admin/public/javascripts/spinelz_lib/json.js +139 -0
  249. data/examples/al-admin/public/javascripts/spinelz_lib/prototype.js +2515 -0
  250. data/examples/al-admin/public/javascripts/spinelz_lib/resize.js +215 -0
  251. data/examples/al-admin/public/javascripts/spinelz_lib/scriptaculous.js +51 -0
  252. data/examples/al-admin/public/javascripts/spinelz_lib/slider.js +278 -0
  253. data/examples/al-admin/public/javascripts/spinelz_lib/spinelz_util.js +1266 -0
  254. data/examples/al-admin/public/javascripts/spinelz_lib/unittest.js +564 -0
  255. data/examples/al-admin/public/robots.txt +1 -0
  256. data/examples/al-admin/public/stylesheets/account.css +41 -0
  257. data/examples/al-admin/public/stylesheets/attributes.css +1 -0
  258. data/examples/al-admin/public/stylesheets/base.css +104 -0
  259. data/examples/al-admin/public/stylesheets/detail.css +36 -0
  260. data/examples/al-admin/public/stylesheets/directory.css +22 -0
  261. data/examples/al-admin/public/stylesheets/object-classes.css +6 -0
  262. data/examples/al-admin/public/stylesheets/rails.css +35 -0
  263. data/examples/al-admin/public/stylesheets/spinelz/accordion.css +59 -0
  264. data/examples/al-admin/public/stylesheets/spinelz/balloon.css +151 -0
  265. data/examples/al-admin/public/stylesheets/spinelz/calendar.css +564 -0
  266. data/examples/al-admin/public/stylesheets/spinelz/datepicker.css +175 -0
  267. data/examples/al-admin/public/stylesheets/spinelz/grid.css +137 -0
  268. data/examples/al-admin/public/stylesheets/spinelz/menubar.css +78 -0
  269. data/examples/al-admin/public/stylesheets/spinelz/modal.css +22 -0
  270. data/examples/al-admin/public/stylesheets/spinelz/navPanel.css +58 -0
  271. data/examples/al-admin/public/stylesheets/spinelz/selectableTable.css +28 -0
  272. data/examples/al-admin/public/stylesheets/spinelz/sideBarBox.css +82 -0
  273. data/examples/al-admin/public/stylesheets/spinelz/sortableTable.css +51 -0
  274. data/examples/al-admin/public/stylesheets/spinelz/switcher.css +23 -0
  275. data/examples/al-admin/public/stylesheets/spinelz/tabBox.css +94 -0
  276. data/examples/al-admin/public/stylesheets/spinelz/timepicker.css +508 -0
  277. data/examples/al-admin/public/stylesheets/spinelz/toolbar.css +82 -0
  278. data/examples/al-admin/public/stylesheets/spinelz/treeview.css +121 -0
  279. data/examples/al-admin/public/stylesheets/spinelz/window.css +140 -0
  280. data/examples/al-admin/public/stylesheets/structure.css +81 -0
  281. data/examples/al-admin/public/stylesheets/syntaxes.css +1 -0
  282. data/examples/al-admin/public/stylesheets/users.css +13 -0
  283. data/examples/al-admin/public/stylesheets/welcome.css +0 -0
  284. data/examples/al-admin/script/about +3 -0
  285. data/examples/al-admin/script/console +3 -0
  286. data/examples/al-admin/script/dbconsole +3 -0
  287. data/examples/al-admin/script/destroy +3 -0
  288. data/examples/al-admin/script/generate +3 -0
  289. data/examples/al-admin/script/performance/benchmarker +3 -0
  290. data/examples/al-admin/script/performance/profiler +3 -0
  291. data/examples/al-admin/script/performance/request +3 -0
  292. data/examples/al-admin/script/plugin +3 -0
  293. data/examples/al-admin/script/process/inspector +3 -0
  294. data/examples/al-admin/script/process/reaper +3 -0
  295. data/examples/al-admin/script/process/spawner +3 -0
  296. data/examples/al-admin/script/runner +3 -0
  297. data/examples/al-admin/script/server +3 -0
  298. data/examples/al-admin/test/fixtures/users.yml +9 -0
  299. data/examples/al-admin/test/functional/account_controller_test.rb +12 -0
  300. data/examples/al-admin/test/functional/attributes_controller_test.rb +8 -0
  301. data/examples/al-admin/test/functional/directory_controller_test.rb +8 -0
  302. data/examples/al-admin/test/functional/object_classes_controller_test.rb +8 -0
  303. data/examples/al-admin/test/functional/syntaxes_controller_test.rb +8 -0
  304. data/examples/al-admin/test/functional/users_controller_test.rb +8 -0
  305. data/examples/al-admin/test/functional/welcome_controller_test.rb +8 -0
  306. data/examples/al-admin/test/integration/sign_up_test.rb +44 -0
  307. data/examples/al-admin/test/run-test.sh +3 -0
  308. data/examples/al-admin/test/test_helper.rb +52 -0
  309. data/examples/al-admin/test/unit/user_test.rb +12 -0
  310. data/examples/al-admin/vendor/plugins/exception_notification/README +111 -0
  311. data/examples/al-admin/vendor/plugins/exception_notification/init.rb +1 -0
  312. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifiable.rb +99 -0
  313. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier.rb +66 -0
  314. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier_helper.rb +78 -0
  315. data/examples/al-admin/vendor/plugins/exception_notification/test/exception_notifier_helper_test.rb +61 -0
  316. data/examples/al-admin/vendor/plugins/exception_notification/test/test_helper.rb +7 -0
  317. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_backtrace.rhtml +1 -0
  318. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_environment.rhtml +7 -0
  319. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_inspect_model.rhtml +16 -0
  320. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_request.rhtml +4 -0
  321. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_session.rhtml +2 -0
  322. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_title.rhtml +3 -0
  323. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/exception_notification.rhtml +6 -0
  324. data/examples/config.yaml.example +5 -0
  325. data/examples/example.der +0 -0
  326. data/examples/example.jpg +0 -0
  327. data/examples/groupadd +41 -0
  328. data/examples/groupdel +35 -0
  329. data/examples/groupls +49 -0
  330. data/examples/groupmod +42 -0
  331. data/examples/lpasswd +55 -0
  332. data/examples/objects/group.rb +13 -0
  333. data/examples/objects/ou.rb +4 -0
  334. data/examples/objects/user.rb +20 -0
  335. data/examples/ouadd +38 -0
  336. data/examples/useradd +45 -0
  337. data/examples/useradd-binary +53 -0
  338. data/examples/userdel +34 -0
  339. data/examples/userls +50 -0
  340. data/examples/usermod +42 -0
  341. data/examples/usermod-binary-add +50 -0
  342. data/examples/usermod-binary-add-time +54 -0
  343. data/examples/usermod-binary-del +48 -0
  344. data/examples/usermod-lang-add +43 -0
  345. data/lib/active_ldap.rb +105 -0
  346. data/lib/active_ldap/action_controller/ldap_benchmarking.rb +55 -0
  347. data/lib/active_ldap/acts/tree.rb +75 -0
  348. data/lib/active_ldap/adapter/base.rb +705 -0
  349. data/lib/active_ldap/adapter/jndi.rb +184 -0
  350. data/lib/active_ldap/adapter/jndi_connection.rb +185 -0
  351. data/lib/active_ldap/adapter/ldap.rb +290 -0
  352. data/lib/active_ldap/adapter/ldap_ext.rb +105 -0
  353. data/lib/active_ldap/adapter/net_ldap.rb +309 -0
  354. data/lib/active_ldap/adapter/net_ldap_ext.rb +23 -0
  355. data/lib/active_ldap/association/belongs_to.rb +47 -0
  356. data/lib/active_ldap/association/belongs_to_many.rb +58 -0
  357. data/lib/active_ldap/association/children.rb +21 -0
  358. data/lib/active_ldap/association/collection.rb +105 -0
  359. data/lib/active_ldap/association/has_many.rb +31 -0
  360. data/lib/active_ldap/association/has_many_utils.rb +44 -0
  361. data/lib/active_ldap/association/has_many_wrap.rb +62 -0
  362. data/lib/active_ldap/association/proxy.rb +107 -0
  363. data/lib/active_ldap/associations.rb +202 -0
  364. data/lib/active_ldap/attributes.rb +184 -0
  365. data/lib/active_ldap/base.rb +1594 -0
  366. data/lib/active_ldap/callbacks.rb +52 -0
  367. data/lib/active_ldap/command.rb +49 -0
  368. data/lib/active_ldap/compatible.rb +44 -0
  369. data/lib/active_ldap/configuration.rb +147 -0
  370. data/lib/active_ldap/connection.rb +294 -0
  371. data/lib/active_ldap/distinguished_name.rb +291 -0
  372. data/lib/active_ldap/entry_attribute.rb +78 -0
  373. data/lib/active_ldap/escape.rb +12 -0
  374. data/lib/active_ldap/get_text.rb +9 -0
  375. data/lib/active_ldap/get_text/parser.rb +161 -0
  376. data/lib/active_ldap/get_text_fallback.rb +60 -0
  377. data/lib/active_ldap/get_text_support.rb +20 -0
  378. data/lib/active_ldap/helper.rb +92 -0
  379. data/lib/active_ldap/human_readable.rb +132 -0
  380. data/lib/active_ldap/ldap_error.rb +74 -0
  381. data/lib/active_ldap/ldif.rb +930 -0
  382. data/lib/active_ldap/object_class.rb +95 -0
  383. data/lib/active_ldap/operations.rb +610 -0
  384. data/lib/active_ldap/populate.rb +53 -0
  385. data/lib/active_ldap/railtie.rb +31 -0
  386. data/lib/active_ldap/schema.rb +699 -0
  387. data/lib/active_ldap/schema/syntaxes.rb +417 -0
  388. data/lib/active_ldap/timeout.rb +75 -0
  389. data/lib/active_ldap/timeout_stub.rb +17 -0
  390. data/lib/active_ldap/user_password.rb +92 -0
  391. data/lib/active_ldap/validations.rb +229 -0
  392. data/lib/active_ldap/xml.rb +122 -0
  393. data/po/en/active-ldap.po +4029 -0
  394. data/po/ja/active-ldap.po +4060 -0
  395. data/rails_generators/model_active_ldap/USAGE +17 -0
  396. data/rails_generators/model_active_ldap/model_active_ldap_generator.rb +69 -0
  397. data/rails_generators/model_active_ldap/templates/model_active_ldap.rb +3 -0
  398. data/rails_generators/model_active_ldap/templates/unit_test.rb +8 -0
  399. data/rails_generators/scaffold_active_ldap/scaffold_active_ldap_generator.rb +7 -0
  400. data/rails_generators/scaffold_active_ldap/templates/ldap.yml +18 -0
  401. data/test/al-test-utils.rb +439 -0
  402. data/test/command.rb +112 -0
  403. data/test/config.yaml.sample +6 -0
  404. data/test/fixtures/lower_case_object_class_schema.rb +802 -0
  405. data/test/run-test.rb +44 -0
  406. data/test/test_acts_as_tree.rb +60 -0
  407. data/test/test_adapter.rb +121 -0
  408. data/test/test_associations.rb +664 -0
  409. data/test/test_attributes.rb +117 -0
  410. data/test/test_base.rb +1177 -0
  411. data/test/test_base_per_instance.rb +61 -0
  412. data/test/test_bind.rb +62 -0
  413. data/test/test_callback.rb +37 -0
  414. data/test/test_configuration.rb +40 -0
  415. data/test/test_connection.rb +82 -0
  416. data/test/test_connection_per_class.rb +112 -0
  417. data/test/test_connection_per_dn.rb +112 -0
  418. data/test/test_dn.rb +172 -0
  419. data/test/test_find.rb +176 -0
  420. data/test/test_groupadd.rb +50 -0
  421. data/test/test_groupdel.rb +46 -0
  422. data/test/test_groupls.rb +107 -0
  423. data/test/test_groupmod.rb +51 -0
  424. data/test/test_ldif.rb +1891 -0
  425. data/test/test_load.rb +133 -0
  426. data/test/test_lpasswd.rb +75 -0
  427. data/test/test_object_class.rb +74 -0
  428. data/test/test_reflection.rb +182 -0
  429. data/test/test_schema.rb +559 -0
  430. data/test/test_syntax.rb +383 -0
  431. data/test/test_user.rb +217 -0
  432. data/test/test_user_password.rb +101 -0
  433. data/test/test_useradd-binary.rb +62 -0
  434. data/test/test_useradd.rb +57 -0
  435. data/test/test_userdel.rb +48 -0
  436. data/test/test_userls.rb +91 -0
  437. data/test/test_usermod-binary-add-time.rb +65 -0
  438. data/test/test_usermod-binary-add.rb +64 -0
  439. data/test/test_usermod-binary-del.rb +66 -0
  440. data/test/test_usermod-lang-add.rb +60 -0
  441. data/test/test_usermod.rb +58 -0
  442. data/test/test_validation.rb +274 -0
  443. metadata +502 -0
@@ -0,0 +1,703 @@
1
+ // Copyright (c) 2005 spinelz.org (http://script.spinelz.org/)
2
+ //
3
+ // Permission is hereby granted, free of charge, to any person obtaining
4
+ // a copy of this software and associated documentation files (the
5
+ // "Software"), to deal in the Software without restriction, including
6
+ // without limitation the rights to use, copy, modify, merge, publish,
7
+ // distribute, sublicense, and/or sell copies of the Software, and to
8
+ // permit persons to whom the Software is furnished to do so, subject to
9
+ // the following conditions:
10
+ //
11
+ // The above copyright notice and this permission notice shall be
12
+ // included in all copies or substantial portions of the Software.
13
+ //
14
+ // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21
+
22
+ var TreeView = Class.create();
23
+ TreeView.className = {
24
+ top: 'treeview',
25
+ dir: 'treeview_dir',
26
+ dirBody: 'treeview_dirBody',
27
+ dirBodyText: 'treeview_dirBodyText',
28
+ dirBodyTextActive: 'treeview_dirBodyTextActive',
29
+ dirContainer: 'treeview_dirContainer',
30
+ dirContainerHover: 'treeview_dirContainerHover',
31
+ file: 'treeview_file',
32
+ fileBody: 'treeview_fileBody',
33
+ fileBodyText: 'treeview_fileBodyText',
34
+ fileBodyTextActive: 'treeview_fileBodyTextActive',
35
+ state_open: 'treeview_stateOpen',
36
+ state_close: 'treeview_stateClose',
37
+ state_empty: 'treeview_stateEmpty',
38
+ dirIcon: 'treeview_dirIcon',
39
+ fileIcon: 'treeview_fileIcon',
40
+ handle: 'treeview_handle'
41
+ }
42
+
43
+ TreeView.iconId = 'treeview_icon';
44
+
45
+ TreeView.prototype = {
46
+ initialize: function(element) {
47
+ this.options = Object.extend({
48
+ dirSymbol: 'dir',
49
+ fileSymbol: 'file',
50
+ cssPrefix: 'custom_',
51
+ open: true,
52
+ callBackFunctions: false,
53
+ dirSelect: true,
54
+ fileSelect: true,
55
+ noSelectedInsert: true,
56
+ iconIdPrefix: TreeView.iconId,
57
+ move: false,
58
+ unselected: Prototype.emptyFunction,
59
+ enableUnselected: true,
60
+ sortOptions: {},
61
+ openDir: Prototype.emptyFunction,
62
+ closeDir: Prototype.emptyFunction,
63
+ emptyImg: false,
64
+ initialSelected: null,
65
+ build: true
66
+ }, arguments[1] || {});
67
+
68
+ this.element = $(element);
69
+ this.customCss = CssUtil.appendPrefix(this.options.cssPrefix, TreeView.className);
70
+ this.classNames = new CssUtil([TreeView.className, this.customCss]);
71
+
72
+ if (this.options.build) {
73
+ Element.setStyle(this.element, {visibility: 'hidden'});
74
+ Element.hide(this.element);
75
+
76
+ this.idCount = 0;
77
+ this.fileIds = [];
78
+ this.dirIds = [];
79
+ this.buildTreeView(this.element);
80
+ this.observeEvent();
81
+
82
+ this.classNames.addClassNames(this.element, 'top');
83
+ Element.setStyle(this.element, {visibility: 'visible'});
84
+ Element.show(this.element);
85
+
86
+ if (this.options.initialSelected) {
87
+ this.selectEffect(this.options.initialSelected);
88
+ }
89
+
90
+ if (this.options.move) this.setSortable();
91
+ }
92
+ },
93
+
94
+ open: function(element) {
95
+ this._toggle(element, Element.show);
96
+ },
97
+
98
+ openAll: function() {
99
+ var nodes = this.element.getElementsByTagName('ul');
100
+ $A(nodes).each(function(node) {
101
+ Element.show(node);
102
+ this.refreshStateImg(node.parentNode);
103
+ }.bind(this));
104
+ },
105
+
106
+ close: function(element) {
107
+ this._toggle(element, Element.hide);
108
+ },
109
+
110
+ closeAll: function() {
111
+ var nodes = this.element.getElementsByTagName('ul');
112
+ $A(nodes).each(function(node) {
113
+ Element.hide(node);
114
+ this.refreshStateImg(node.parentNode);
115
+ }.bind(this));
116
+ },
117
+
118
+ addChildById: function(element, parent, number) {
119
+ this.fileIds = [];
120
+ this.dirIds = [];
121
+ element = $(element);
122
+ parent = $(parent);
123
+
124
+ var container = null;
125
+ if (!element || !parent)
126
+ return;
127
+ else if (Element.hasClassName(parent, TreeView.className.dir))
128
+ container = this.getChildDirContainer(parent);
129
+ else if (Element.hasClassName(parent, TreeView.className.top))
130
+ container = parent;
131
+ else
132
+ return;
133
+
134
+ element = this.build(element).toElement();
135
+ if (isNaN(number)) {
136
+ container.appendChild(element);
137
+ } else {
138
+ var children = this.getDirectoryContents(container);
139
+ if (children[number]) container.insertBefore(element, children[number]);
140
+ else container.appendChild(element);
141
+ }
142
+
143
+ this.refreshStateImg(parent);
144
+ this.observeEvent();
145
+ if (this.options.dragAdrop) this.setSortable();
146
+ },
147
+
148
+ addChildByPath: function(element, path) {
149
+ this.fileIds = [];
150
+ this.dirIds = [];
151
+ element = $(element);
152
+ if (!element) return;
153
+
154
+ element = this.build(element).toElement();
155
+ var paths = path.split('/').findAll(function(elm) { return (elm != '') });
156
+ var last = paths.pop();
157
+ var container = this.search(paths.join('/'));
158
+ var children = this.getDirectoryContents(container);
159
+
160
+ if(children[last])
161
+ container.insertBefore(element, children[last]);
162
+ else
163
+ container.appendChild(element);
164
+
165
+ this.refreshStateImg(container.parentNode);
166
+ this.observeEvent();
167
+ if (this.options.dragAdrop) this.setSortable();
168
+ },
169
+
170
+ addChildBySelected: function(element, number) {
171
+ if (!this.selected && !this.options.noSelectedInsert) return;
172
+
173
+ if (this.selected)
174
+ this.addChildById(element, this.selected, number);
175
+ else
176
+ this.addChildById(element, this.element, number);
177
+ },
178
+
179
+ addSelectItemCallback: function(functionObj) {
180
+ if (!this.options.callBackFunctions) {
181
+ this.options.callBackFunctions = new Array();
182
+ }
183
+ this.options.callBackFunctions.push(functionObj);
184
+ },
185
+
186
+ buildTreeView: function(element) {
187
+ this.classNames.addClassNames(element, 'top');
188
+ element.innerHTML = $A(element.childNodes).inject('', function(html, node) {
189
+ return html + this.build(node);
190
+ }.bind(this));
191
+ },
192
+
193
+ build: function(element) {
194
+ if (!Element.isElementNode(element)) return '';
195
+
196
+ if (Element.hasClassName(element, this.options.dirSymbol)) {
197
+ return this.buildDir(element);
198
+ } else if (Element.hasClassName(element, this.options.fileSymbol)) {
199
+ return this.buildFile(element);
200
+ }
201
+ },
202
+
203
+ buildDir: function(element) {
204
+ var customClass = new Element.ClassNames(element).select(function(name) {
205
+ return name != this.options.dirSymbol;
206
+ }.bind(this)).join(' ');
207
+
208
+ var baseId = element.id || this.getBaseId();
209
+ var state = this.getState(element);
210
+ var iconId = this.options.iconIdPrefix.appendSuffix(baseId);
211
+ var stateId = iconId.appendSuffix('stateImg');
212
+ var bodyTextId = iconId.appendSuffix('dirBodyText');
213
+ var iconClass = [
214
+ this.classNames.joinClassNames('dirIcon'),
215
+ customClass,
216
+ this.classNames.joinClassNames('handle')
217
+ ];
218
+ var display = (this.options.open) ? 'block' : 'none';
219
+ this.dirIds.push({state: stateId, icon: iconId, bodyText: bodyTextId});
220
+
221
+ var html =
222
+ "<li id='" + baseId + "' class='" + this.classNames.joinClassNames('dir') + "'>" +
223
+ "<div class='" + this.classNames.joinClassNames('dirBody') + "'>" +
224
+ "<div id='" + stateId + "' class='" + this.classNames.joinClassNames(state) + "'></div>" +
225
+ "<div id='" + iconId + "' class='" + iconClass.join(' ') + "'></div>" +
226
+ "<span id='" + bodyTextId + "'class='" + this.classNames.joinClassNames('dirBodyText') + "'>" +
227
+ this.getDirectoryText(element) +
228
+ "</span>" +
229
+ "</div>" +
230
+ "<ul style='display: " + display + "' class='" + this.classNames.joinClassNames('dirContainer') + "'>" +
231
+ this.buildSubContent(element) +
232
+ "</ul>" +
233
+ "</li>";
234
+ return html;
235
+ },
236
+
237
+ buildSubContent: function(element) {
238
+ var ul = $A(element.childNodes).detect(function(node) { return Element.hasTagName(node, 'ul') });
239
+ if (ul) {
240
+ return $A(ul.childNodes).inject('', function(html, node) {
241
+ return html + this.build(node);
242
+ }.bind(this));
243
+ } else {
244
+ return '';
245
+ }
246
+ },
247
+
248
+ getState: function(element) {
249
+ if (!this.hasChildNodes(element) && !this.options.emptyImg) {
250
+ return 'state_empty';
251
+ } else if (this.options.open) {
252
+ return 'state_open';
253
+ } else {
254
+ return 'state_close';
255
+ }
256
+ },
257
+
258
+ hasChildNodes: function(element) {
259
+ var ul = $A(element.childNodes).detect(function(node) { return Element.hasTagName(node, 'ul') });
260
+ return ul && (ul.childNodes.length != 0);
261
+ },
262
+
263
+ buildFile: function(element) {
264
+ var customClass = new Element.ClassNames(element).select(function(name) {
265
+ return name != this.options.fileSymbol
266
+ }.bind(this)).join(' ');
267
+
268
+ var baseId = element.id || this.getBaseId();
269
+ var iconId = this.options.iconIdPrefix.appendSuffix(baseId);
270
+ var iconClass = [
271
+ this.classNames.joinClassNames('fileIcon'),
272
+ customClass,
273
+ this.classNames.joinClassNames('handle')
274
+ ];
275
+ var bodyTextId = baseId.appendSuffix('fileBodyText');
276
+ this.fileIds.push({icon: iconId, bodyText: bodyTextId});
277
+
278
+ // Too late
279
+ // var events = Element.eventHTML(element);
280
+ var events = Element.attributeHTML(element, 'onclick');
281
+
282
+ var html =
283
+ // "<li id='" + baseId + "' class='" + this.classNames.joinClassNames('file') + "' " + events + ">" +
284
+ "<li id='" + baseId + "' class='" + this.classNames.joinClassNames('file') + "' " + events + ">" +
285
+ "<div class='" + this.classNames.joinClassNames('fileBody') + "'>" +
286
+ "<div id='" + iconId + "' class='" + iconClass.join(' ') + "'></div>" +
287
+ "<span id='" + bodyTextId + "'class='" + this.classNames.joinClassNames('fileBodyText') + "'>" +
288
+ element.innerHTML +
289
+ "</span>" +
290
+ "</div>" +
291
+ "</li>";
292
+ return html;
293
+ },
294
+
295
+ getBaseId: function() {
296
+ return this.element.id.appendSuffix(++this.idCount);
297
+ },
298
+
299
+ observeEvent: function() {
300
+ this.observeDirEvent();
301
+ if (this.options.fileSelect) this.observeFileEvent();
302
+ },
303
+
304
+ observeDirEvent: function() {
305
+ this.dirIds.each(function(idSet) {
306
+ Event.observe(idSet.state, "click", this.toggle.bindAsEventListener(this));
307
+ if (this.options.dirSelect) {
308
+ Event.observe(idSet.icon, "click", this.selectDirItem.bindAsEventListener(this));
309
+ Event.observe(idSet.bodyText, "click", this.selectDirItem.bindAsEventListener(this));
310
+ }
311
+ }.bind(this));
312
+ },
313
+
314
+ observeFileEvent: function() {
315
+ this.fileIds.each(function(idSet) {
316
+ Event.observe(idSet.icon, "click", this.selectFileItem.bindAsEventListener(this));
317
+ Event.observe(idSet.bodyText, "click", this.selectFileItem.bindAsEventListener(this));
318
+ }.bind(this));
319
+ },
320
+
321
+ convertJSON: function() {
322
+ return JSON.stringify(this.parse());
323
+ },
324
+
325
+ getChildBody: function(element) {
326
+ var names = [TreeView.className.fileBody, TreeView.className.dirBody];
327
+ return Element.getFirstElementByClassNames(element, names);
328
+ },
329
+
330
+ getChildBodyText: function(element) {
331
+ var names = [
332
+ TreeView.className.fileBodyText,
333
+ TreeView.className.fileBodyTextActive,
334
+ TreeView.className.dirBodyText,
335
+ TreeView.className.dirBodyTextActive
336
+ ];
337
+ return Element.getFirstElementByClassNames(element, names);
338
+ },
339
+
340
+ getChildBodyTextNode: function(element) {
341
+ var body = this.getChildBody(element);
342
+ var bodyText = this.getChildBodyText(body);
343
+ return this.searchTextNode(bodyText);
344
+ },
345
+
346
+ getChildDir: function(element) {
347
+ return document.getElementsByClassName(TreeView.className.dir, element);
348
+ },
349
+
350
+ getChildDirBody: function(element) {
351
+ return document.getElementsByClassName(TreeView.className.dirBody, element)[0];
352
+ },
353
+
354
+ getChildDirContainer: function(element) {
355
+ return document.getElementsByClassName(TreeView.className.dirContainer, element)[0];
356
+ },
357
+
358
+ getChildStateImg: function(element) {
359
+ var body = this.getChildDirBody(element);
360
+ var names = [
361
+ TreeView.className.state_close,
362
+ TreeView.className.state_open,
363
+ TreeView.className.state_empty
364
+ ];
365
+
366
+ return Element.getFirstElementByClassNames(body, names);
367
+ },
368
+
369
+ getChildren: function(element, ignoreDir, ignoreFile) {
370
+ var parent;
371
+ var children = new Array();
372
+ if(element) {
373
+ parent = $(element).getElementsByTagName('ul')[0];
374
+ } else {
375
+ parent = this.element;
376
+ }
377
+ $A(Element.getTagNodes(parent)).each(
378
+ function(node) {
379
+ if(!ignoreDir && Element.hasClassName(node, TreeView.className.dir)) {
380
+ children.push(node);
381
+ }
382
+ if(!ignoreFile && Element.hasClassName(node, TreeView.className.file)) {
383
+ children.push(node);
384
+ }
385
+ }
386
+ );
387
+ return children;
388
+ },
389
+
390
+ getDirectoryContents: function(element) {
391
+ return $A(element.childNodes).findAll(function(child) {
392
+ if ((child.nodeType != 1)) {
393
+ return false;
394
+ }
395
+ if (child.tagName.toLowerCase() == 'li') {
396
+ return true;
397
+ }
398
+ return false;
399
+ });
400
+ },
401
+
402
+ getDirectoryText: function(element) {
403
+ return $A(element.childNodes).inject('', function(html, node) {
404
+ if (Element.isTextNode(node)) {
405
+ html += node.nodeValue;
406
+ } else if (node.tagName.toLowerCase() != 'ul') {
407
+ html += Element.outerHTML(node);
408
+ }
409
+ return html;
410
+ });
411
+ },
412
+
413
+ getHierarchyNumber: function() {
414
+ if (!this.selected) return;
415
+ var element = this.selected;
416
+ var i = 0;
417
+ while (true) {
418
+ if (this.element == element) {
419
+ return i;
420
+ } else {
421
+ element = this.getParentDir(element, true);
422
+ if (!element) return;
423
+ i++;
424
+ }
425
+ }
426
+ },
427
+
428
+ ancestor: function() {
429
+ var arr = [];
430
+ if(this.selected) {
431
+ var element = this.selected;
432
+ arr.push(element);
433
+ while(element) {
434
+ element = this.getParentDir(element, false);
435
+ if(element) {
436
+ arr.push(element);
437
+ }
438
+ }
439
+ }
440
+ return arr.reverse();
441
+ },
442
+
443
+ getParentDir: function(element, top) {
444
+ var result = Element.getParentByClassName(TreeView.className.dir, element);
445
+ if (!result && top)
446
+ result = Element.getParentByClassName(TreeView.className.top, element);
447
+ return result;
448
+ },
449
+
450
+ hasContents: function(element) {
451
+ if (element) {
452
+ if (!Element.hasClassName(element, TreeView.className.dirContainer) &&
453
+ !Element.hasClassName(element, TreeView.className.top)) {
454
+ return false;
455
+ }
456
+
457
+ var nodes = element.childNodes;
458
+ for (var i = 0; i < nodes.length; i++) {
459
+ if (nodes[i].nodeType == 1) {
460
+ if (Element.hasClassName(nodes[i], TreeView.className.dir) ||
461
+ Element.hasClassName(nodes[i], TreeView.className.file)) {
462
+ return true;
463
+ }
464
+ }
465
+ }
466
+ }
467
+ return false;
468
+ },
469
+
470
+ parse: function(container) {
471
+ if (!container) container = this.element;
472
+
473
+ var itemList = [];
474
+ var contents = this.getDirectoryContents(container);
475
+
476
+ for (var i = 0; i < contents.length; i++) {
477
+ var node = contents[i];
478
+ var body = this.getChildBody(node);
479
+ var text = this.getChildBodyText(body);
480
+
481
+ var item = {};
482
+ item.id = node.id;
483
+
484
+ item.name = Element.collectTextNodes(text).replace(/\n/, '');
485
+ if (Element.hasClassName(node, TreeView.className.dir)) {
486
+ item.type = this.options.dirSymbol;
487
+ item.contents = this.parse(this.getChildDirContainer(node));
488
+
489
+ } else {
490
+ item.type = this.options.fileSymbol;
491
+ }
492
+
493
+ itemList.push(item);
494
+ }
495
+
496
+ return itemList;
497
+ },
498
+
499
+ refreshStateImg: function(element) {
500
+ if (!Element.hasClassName(element, TreeView.className.dir)) return;
501
+
502
+ var container = this.getChildDirContainer(element);
503
+ var img = this.getChildStateImg(element);
504
+
505
+ if (!this.hasContents(container) && !this.options.emptyImg)
506
+ this.classNames.refreshClassNames(img, 'state_empty');
507
+ else if (Element.visible(container))
508
+ this.classNames.refreshClassNames(img, 'state_open');
509
+ else
510
+ this.classNames.refreshClassNames(img, 'state_close');
511
+ },
512
+
513
+ removeById: function(element) {
514
+ element = $(element);
515
+ if (element) {
516
+ var parent = element.parentNode.parentNode;
517
+ Element.remove(element);
518
+ this.refreshStateImg(parent);
519
+ }
520
+ },
521
+
522
+ removeByPath: function(path) {
523
+ var paths = path.split('/').findAll(function(elm) {
524
+ return (elm != '');
525
+ });
526
+
527
+ var last = paths.pop();
528
+ var container = this.search(paths.join('/'));
529
+
530
+ var target = this.getDirectoryContents(container)[last];
531
+ if (target)
532
+ this.removeById(target);
533
+ },
534
+
535
+ removeBySelected: function() {
536
+ if (!this.selected) return;
537
+ this.removeById(this.selected);
538
+ this.selected = false;
539
+ },
540
+
541
+ renameById: function(name, element) {
542
+ element = $(element);
543
+ if (!Element.hasClassName(element, TreeView.className.dir) &&
544
+ !Element.hasClassName(element, TreeView.className.file)) {
545
+ return;
546
+ }
547
+ var node = this.getChildBodyTextNode(element);
548
+ node.nodeValue = name;
549
+ },
550
+
551
+ renameByPath: function(name, path) {
552
+ var paths = path.split('/').findAll(function(elm) {
553
+ return (elm != '');
554
+ });
555
+
556
+ var last = paths.pop();
557
+ var container = this.search(paths.join('/'));
558
+
559
+ var target = this.getDirectoryContents(container)[last];
560
+ if (target)
561
+ this.renameById(name, target);
562
+ },
563
+
564
+ renameBySelected: function(name) {
565
+ if (!this.selected) return;
566
+ this.renameById(name, this.selected);
567
+ },
568
+
569
+ search: function(path) {
570
+ var paths = path.split('/').findAll(function(elm) {
571
+ return (elm != '');
572
+ });
573
+
574
+ var container = this.element;
575
+ for (var i = 0; i < paths.length; i++) {
576
+ var num = paths[i];
577
+ var contents = this.getDirectoryContents(container);
578
+ if (contents[num] && Element.hasClassName(contents[num], TreeView.className.dir)) {
579
+ container = this.getChildDirContainer(contents[num]);
580
+ } else {
581
+ return false;
582
+ }
583
+ }
584
+ return container;
585
+ },
586
+
587
+ searchTextNode: function(element) {
588
+ var text = null;
589
+ var nodes = element.childNodes;
590
+
591
+ for (var i = 0; i < nodes.length; i++) {
592
+ if (nodes[i].nodeType == 3) {
593
+ text = nodes[i];
594
+ break;
595
+ } else if (nodes[i].nodeType == 1) {
596
+ var tmp = this.searchTextNode(nodes[i]);
597
+ if (tmp) {
598
+ text = tmp;
599
+ break;
600
+ }
601
+ }
602
+ }
603
+ return text;
604
+ },
605
+
606
+ selectDirItem: function(event) {
607
+ var itemBody = Element.getParentByClassName(TreeView.className.dirBody, Event.element(event));
608
+ this.selectItem(itemBody);
609
+ },
610
+
611
+ selectEffect: function(element) {
612
+ element = $(element);
613
+ if(element) {
614
+ var itemBody = $A(element.childNodes).detect(function(node) { return Element.isElementNode(node); });
615
+ if (this.selectItemUnselect(itemBody, false)) {
616
+ return;
617
+ }
618
+ this.selectItemSelect(itemBody, false);
619
+ }
620
+ },
621
+
622
+ selectFileItem: function(event) {
623
+ var itemBody = Element.getParentByClassName(TreeView.className.fileBody, Event.element(event));
624
+ this.selectItem(itemBody);
625
+ },
626
+
627
+ selectItem: function(itemBody) {
628
+ if (this.selectItemUnselect(itemBody, true)) {
629
+ return;
630
+ }
631
+ this.selectItemSelect(itemBody, true);
632
+ },
633
+
634
+ selectItemSelect: function(itemBody, callback) {
635
+ this.selected = itemBody.parentNode;
636
+ var text = this.getChildBodyText(itemBody);
637
+ if (Element.hasClassName(text, TreeView.className.dirBodyText)) {
638
+ this.classNames.refreshClassNames(text, 'dirBodyTextActive');
639
+ this.defaultCss = 'dirBodyText';
640
+ } else if (Element.hasClassName(text, TreeView.className.fileBodyText)) {
641
+ this.classNames.refreshClassNames(text, 'fileBodyTextActive');
642
+ this.defaultCss = 'fileBodyText';
643
+ }
644
+ if (callback) {
645
+ if (this.options.callBackFunctions) {
646
+ for (var i = 0; i < this.options.callBackFunctions.length; i++) {
647
+ this.options.callBackFunctions[i](itemBody.parentNode);
648
+ }
649
+ }
650
+ }
651
+ },
652
+
653
+ selectItemUnselect: function(itemBody, callback) {
654
+ if (this.selected) {
655
+ var selectedBody = this.getChildBody(this.selected);
656
+ var selectedText = this.getChildBodyText(selectedBody);
657
+ this.classNames.refreshClassNames(selectedText, this.defaultCss);
658
+ if (this.selected == itemBody.parentNode && this.options.enableUnselected) {
659
+ this.selected = false;
660
+ this.defaultCss = false;
661
+ if (callback) {
662
+ this.options.unselected();
663
+ }
664
+ return true;
665
+ }
666
+ }
667
+ return false;
668
+ },
669
+
670
+ setSortable: function() {
671
+ var options = Object.extend({
672
+ dropOnEmpty: true,
673
+ tree: true,
674
+ hoverclass: 'treeview_dirContainerHover',
675
+ scroll: window,
676
+ ghosting: true
677
+ }, this.options.sortOptions);
678
+ Sortable.create(this.element, options);
679
+ },
680
+
681
+ toggle: function(event) {
682
+ Event.stop(event);
683
+ var src = Event.element(event);
684
+ this._toggle(this.getParentDir(src), Element.toggle);
685
+ },
686
+
687
+ _toggle: function(element, method) {
688
+ element = $(element);
689
+ if (element && !Element.hasClassName(element, TreeView.className.dir)) return;
690
+ var container = this.getChildDirContainer(element);
691
+ if (!this.hasContents(container) && !this.options.emptyImg) return;
692
+
693
+ method(container);
694
+ this.refreshStateImg(element);
695
+
696
+ if (!this.hasContents(container) && !this.options.emptyImg)
697
+ this.options.openDir(element, container);
698
+ else if (Element.visible(container))
699
+ this.options.openDir(element, container);
700
+ else
701
+ this.options.closeDir(element, container);
702
+ }
703
+ }