sunrise-questions 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (264) hide show
  1. data/Gemfile +34 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +21 -0
  4. data/Rakefile +27 -0
  5. data/app/controllers/manage/questions_controller.rb +36 -0
  6. data/app/views/manage/questions/_form.html.erb +17 -0
  7. data/app/views/manage/questions/_model_filter.html.erb +34 -0
  8. data/app/views/manage/questions/_question.html.erb +27 -0
  9. data/app/views/manage/questions/edit.html.erb +6 -0
  10. data/app/views/manage/questions/index.html.erb +32 -0
  11. data/app/views/manage/questions/new.html.erb +6 -0
  12. data/app/views/manage/questions/show.html.erb +29 -0
  13. data/config/locales/ru.yml +16 -0
  14. data/config/locales/uk.yml +16 -0
  15. data/config/routes.rb +7 -0
  16. data/lib/generators/sunrise/questions/USAGE +12 -0
  17. data/lib/generators/sunrise/questions/install_generator.rb +34 -0
  18. data/lib/generators/sunrise/questions/templates/create_questions.rb +20 -0
  19. data/lib/generators/sunrise/questions/templates/question.rb +5 -0
  20. data/lib/sunrise-questions.rb +1 -0
  21. data/lib/sunrise/models/question.rb +34 -0
  22. data/lib/sunrise/questions.rb +12 -0
  23. data/lib/sunrise/questions/engine.rb +18 -0
  24. data/lib/sunrise/questions/version.rb +5 -0
  25. data/spec/controllers/manage/questions_controller_spec.rb +96 -0
  26. data/spec/dummy/Rakefile +7 -0
  27. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  28. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  29. data/spec/dummy/app/helpers/manage/assets_helper.rb +2 -0
  30. data/spec/dummy/app/helpers/manage/base_helper.rb +81 -0
  31. data/spec/dummy/app/helpers/manage/pages_helper.rb +2 -0
  32. data/spec/dummy/app/helpers/manage/settings_helper.rb +2 -0
  33. data/spec/dummy/app/helpers/manage/structures_helper.rb +12 -0
  34. data/spec/dummy/app/helpers/manage/users_helper.rb +6 -0
  35. data/spec/dummy/app/models/defaults/ability.rb +39 -0
  36. data/spec/dummy/app/models/defaults/asset.rb +7 -0
  37. data/spec/dummy/app/models/defaults/attachment_file.rb +33 -0
  38. data/spec/dummy/app/models/defaults/avatar.rb +37 -0
  39. data/spec/dummy/app/models/defaults/header.rb +5 -0
  40. data/spec/dummy/app/models/defaults/page.rb +5 -0
  41. data/spec/dummy/app/models/defaults/picture.rb +35 -0
  42. data/spec/dummy/app/models/defaults/position_type.rb +7 -0
  43. data/spec/dummy/app/models/defaults/role.rb +20 -0
  44. data/spec/dummy/app/models/defaults/role_type.rb +8 -0
  45. data/spec/dummy/app/models/defaults/structure.rb +16 -0
  46. data/spec/dummy/app/models/defaults/structure_type.rb +9 -0
  47. data/spec/dummy/app/models/defaults/user.rb +47 -0
  48. data/spec/dummy/app/models/question.rb +5 -0
  49. data/spec/dummy/app/views/layouts/application.html.erb +37 -0
  50. data/spec/dummy/app/views/pages/show.html.erb +2 -0
  51. data/spec/dummy/app/views/shared/_notice.html.erb +17 -0
  52. data/spec/dummy/config.ru +4 -0
  53. data/spec/dummy/config/application.rb +46 -0
  54. data/spec/dummy/config/application.yml.sample +4 -0
  55. data/spec/dummy/config/boot.rb +10 -0
  56. data/spec/dummy/config/database.yml +22 -0
  57. data/spec/dummy/config/database.yml.sample +34 -0
  58. data/spec/dummy/config/environment.rb +5 -0
  59. data/spec/dummy/config/environments/development.rb +26 -0
  60. data/spec/dummy/config/environments/production.rb +49 -0
  61. data/spec/dummy/config/environments/test.rb +35 -0
  62. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  63. data/spec/dummy/config/initializers/devise.rb +204 -0
  64. data/spec/dummy/config/initializers/inflections.rb +10 -0
  65. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  66. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  67. data/spec/dummy/config/initializers/session_store.rb +8 -0
  68. data/spec/dummy/config/initializers/simple_form.rb +93 -0
  69. data/spec/dummy/config/initializers/sunrise.rb +7 -0
  70. data/spec/dummy/config/locales/devise.en.yml +53 -0
  71. data/spec/dummy/config/locales/en.yml +5 -0
  72. data/spec/dummy/config/locales/simple_form.en.yml +24 -0
  73. data/spec/dummy/config/logrotate-config.sample +9 -0
  74. data/spec/dummy/config/nginx-config-passenger.sample +51 -0
  75. data/spec/dummy/config/routes.rb +64 -0
  76. data/spec/dummy/db/development.sqlite3 +0 -0
  77. data/spec/dummy/db/migrate/20110801124809_sunrise_create_users.rb +29 -0
  78. data/spec/dummy/db/migrate/20110801124909_sunrise_create_roles.rb +16 -0
  79. data/spec/dummy/db/migrate/20110801125009_sunrise_create_structures.rb +27 -0
  80. data/spec/dummy/db/migrate/20110801125109_sunrise_create_pages.rb +17 -0
  81. data/spec/dummy/db/migrate/20110801125209_sunrise_create_assets.rb +28 -0
  82. data/spec/dummy/db/migrate/20110801125309_sunrise_create_headers.rb +20 -0
  83. data/spec/dummy/db/migrate/20110801161138_sunrise_create_questions.rb +20 -0
  84. data/spec/dummy/db/seeds.rb +25 -0
  85. data/spec/dummy/db/test.sqlite3 +0 -0
  86. data/spec/dummy/lib/templates/erb/scaffold/_form.html.erb +13 -0
  87. data/spec/dummy/log/development.log +5 -0
  88. data/spec/dummy/log/production.log +0 -0
  89. data/spec/dummy/log/server.log +0 -0
  90. data/spec/dummy/log/test.log +1830 -0
  91. data/spec/dummy/public/404.html +26 -0
  92. data/spec/dummy/public/422.html +26 -0
  93. data/spec/dummy/public/500.html +26 -0
  94. data/spec/dummy/public/favicon.ico +0 -0
  95. data/spec/dummy/public/images/manage/add_post_bot.gif +0 -0
  96. data/spec/dummy/public/images/manage/add_post_top.gif +0 -0
  97. data/spec/dummy/public/images/manage/add_white_bot.gif +0 -0
  98. data/spec/dummy/public/images/manage/add_white_top.gif +0 -0
  99. data/spec/dummy/public/images/manage/arrow.png +0 -0
  100. data/spec/dummy/public/images/manage/back_but_lc.gif +0 -0
  101. data/spec/dummy/public/images/manage/back_but_rc.gif +0 -0
  102. data/spec/dummy/public/images/manage/bot_corn.gif +0 -0
  103. data/spec/dummy/public/images/manage/bot_duo_corn.gif +0 -0
  104. data/spec/dummy/public/images/manage/but_bg.png +0 -0
  105. data/spec/dummy/public/images/manage/but_block_lc.gif +0 -0
  106. data/spec/dummy/public/images/manage/but_block_rc.gif +0 -0
  107. data/spec/dummy/public/images/manage/but_freze_lc.gif +0 -0
  108. data/spec/dummy/public/images/manage/but_freze_rc.gif +0 -0
  109. data/spec/dummy/public/images/manage/but_gr.gif +0 -0
  110. data/spec/dummy/public/images/manage/but_gr_l.gif +0 -0
  111. data/spec/dummy/public/images/manage/but_gr_r.gif +0 -0
  112. data/spec/dummy/public/images/manage/but_search.gif +0 -0
  113. data/spec/dummy/public/images/manage/but_unfreze_lc.gif +0 -0
  114. data/spec/dummy/public/images/manage/but_unfreze_rc.gif +0 -0
  115. data/spec/dummy/public/images/manage/button_add_foto.gif +0 -0
  116. data/spec/dummy/public/images/manage/button_add_foto_ru.gif +0 -0
  117. data/spec/dummy/public/images/manage/button_add_foto_ua.gif +0 -0
  118. data/spec/dummy/public/images/manage/button_add_foto_uk.gif +0 -0
  119. data/spec/dummy/public/images/manage/cancelbutton.gif +0 -0
  120. data/spec/dummy/public/images/manage/dark_arr.gif +0 -0
  121. data/spec/dummy/public/images/manage/dark_arr_left.gif +0 -0
  122. data/spec/dummy/public/images/manage/dark_cross_ico.gif +0 -0
  123. data/spec/dummy/public/images/manage/dot.gif +0 -0
  124. data/spec/dummy/public/images/manage/duo_bg.gif +0 -0
  125. data/spec/dummy/public/images/manage/duo_bg_small.gif +0 -0
  126. data/spec/dummy/public/images/manage/duo_bg_small_blocked.gif +0 -0
  127. data/spec/dummy/public/images/manage/duo_bg_small_frozed.gif +0 -0
  128. data/spec/dummy/public/images/manage/duo_bg_small_notact.gif +0 -0
  129. data/spec/dummy/public/images/manage/duo_bot_small.gif +0 -0
  130. data/spec/dummy/public/images/manage/duo_bot_small_blocked.gif +0 -0
  131. data/spec/dummy/public/images/manage/duo_bot_small_frozed.gif +0 -0
  132. data/spec/dummy/public/images/manage/duo_bot_small_notact.gif +0 -0
  133. data/spec/dummy/public/images/manage/duo_top_small.gif +0 -0
  134. data/spec/dummy/public/images/manage/duo_top_small_blocked.gif +0 -0
  135. data/spec/dummy/public/images/manage/duo_top_small_frozed.gif +0 -0
  136. data/spec/dummy/public/images/manage/duo_top_small_notact.gif +0 -0
  137. data/spec/dummy/public/images/manage/edit_white_top.gif +0 -0
  138. data/spec/dummy/public/images/manage/empty.gif +0 -0
  139. data/spec/dummy/public/images/manage/filter_bot_bg.gif +0 -0
  140. data/spec/dummy/public/images/manage/filter_top_bg.gif +0 -0
  141. data/spec/dummy/public/images/manage/flag_en.gif +0 -0
  142. data/spec/dummy/public/images/manage/flag_en_nonact.gif +0 -0
  143. data/spec/dummy/public/images/manage/flag_ru.gif +0 -0
  144. data/spec/dummy/public/images/manage/flag_ru_nonact.gif +0 -0
  145. data/spec/dummy/public/images/manage/flag_ua.gif +0 -0
  146. data/spec/dummy/public/images/manage/flag_ua_nonact.gif +0 -0
  147. data/spec/dummy/public/images/manage/foto.jpg +0 -0
  148. data/spec/dummy/public/images/manage/ico_add.gif +0 -0
  149. data/spec/dummy/public/images/manage/ico_del.gif +0 -0
  150. data/spec/dummy/public/images/manage/ico_down.gif +0 -0
  151. data/spec/dummy/public/images/manage/ico_edit.gif +0 -0
  152. data/spec/dummy/public/images/manage/ico_settings.gif +0 -0
  153. data/spec/dummy/public/images/manage/ico_up.gif +0 -0
  154. data/spec/dummy/public/images/manage/input_bg.gif +0 -0
  155. data/spec/dummy/public/images/manage/l_but_corn.gif +0 -0
  156. data/spec/dummy/public/images/manage/minimise_but.gif +0 -0
  157. data/spec/dummy/public/images/manage/mp3.png +0 -0
  158. data/spec/dummy/public/images/manage/page_arr_hover.png +0 -0
  159. data/spec/dummy/public/images/manage/page_next_arr.gif +0 -0
  160. data/spec/dummy/public/images/manage/page_num_hover.gif +0 -0
  161. data/spec/dummy/public/images/manage/page_prev_arr.gif +0 -0
  162. data/spec/dummy/public/images/manage/panel/l_but_corn.gif +0 -0
  163. data/spec/dummy/public/images/manage/panel/maximise_but.gif +0 -0
  164. data/spec/dummy/public/images/manage/panel/r_but_corn.gif +0 -0
  165. data/spec/dummy/public/images/manage/panel/top_menu_arr.gif +0 -0
  166. data/spec/dummy/public/images/manage/panel/user_pic.gif +0 -0
  167. data/spec/dummy/public/images/manage/preloader.gif +0 -0
  168. data/spec/dummy/public/images/manage/r_but_corn.gif +0 -0
  169. data/spec/dummy/public/images/manage/select_bg.gif +0 -0
  170. data/spec/dummy/public/images/manage/select_corn.gif +0 -0
  171. data/spec/dummy/public/images/manage/struct_corn_lg.gif +0 -0
  172. data/spec/dummy/public/images/manage/struct_corn_llg.gif +0 -0
  173. data/spec/dummy/public/images/manage/struct_corn_lw.gif +0 -0
  174. data/spec/dummy/public/images/manage/struct_corn_rg.gif +0 -0
  175. data/spec/dummy/public/images/manage/struct_corn_rlg.gif +0 -0
  176. data/spec/dummy/public/images/manage/struct_corn_rw.gif +0 -0
  177. data/spec/dummy/public/images/manage/tab_gl.gif +0 -0
  178. data/spec/dummy/public/images/manage/tab_gr.gif +0 -0
  179. data/spec/dummy/public/images/manage/tab_wl.gif +0 -0
  180. data/spec/dummy/public/images/manage/tab_wr.gif +0 -0
  181. data/spec/dummy/public/images/manage/top_corn.gif +0 -0
  182. data/spec/dummy/public/images/manage/top_duo_corn.gif +0 -0
  183. data/spec/dummy/public/images/manage/top_menu_arr.gif +0 -0
  184. data/spec/dummy/public/images/manage/transp_cross.png +0 -0
  185. data/spec/dummy/public/images/manage/upload_progress.gif +0 -0
  186. data/spec/dummy/public/images/manage/user_act_lc.gif +0 -0
  187. data/spec/dummy/public/images/manage/user_act_rc.gif +0 -0
  188. data/spec/dummy/public/images/manage/user_ico.gif +0 -0
  189. data/spec/dummy/public/images/manage/user_pic.gif +0 -0
  190. data/spec/dummy/public/images/manage/user_pic_small.gif +0 -0
  191. data/spec/dummy/public/images/manage/user_pic_thumb.gif +0 -0
  192. data/spec/dummy/public/javascripts/application.js +2 -0
  193. data/spec/dummy/public/javascripts/controls.js +965 -0
  194. data/spec/dummy/public/javascripts/datepicker/jquery-ui-i18n.js +1176 -0
  195. data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-ru.js +37 -0
  196. data/spec/dummy/public/javascripts/datepicker/jquery.ui.datepicker-uk.js +37 -0
  197. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  198. data/spec/dummy/public/javascripts/effects.js +1123 -0
  199. data/spec/dummy/public/javascripts/fileupload/fileuploader-input.js +217 -0
  200. data/spec/dummy/public/javascripts/fileupload/fileuploader.css +31 -0
  201. data/spec/dummy/public/javascripts/fileupload/fileuploader.js +1288 -0
  202. data/spec/dummy/public/javascripts/jquery-ui-timepicker-addon.js +911 -0
  203. data/spec/dummy/public/javascripts/jquery.cookie.js +97 -0
  204. data/spec/dummy/public/javascripts/jquery.fancybox-1.3.4.pack.js +46 -0
  205. data/spec/dummy/public/javascripts/jquery.tmpl.min.js +10 -0
  206. data/spec/dummy/public/javascripts/manage-fileuploader.js +182 -0
  207. data/spec/dummy/public/javascripts/manage.js +294 -0
  208. data/spec/dummy/public/javascripts/preloader.js +47 -0
  209. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  210. data/spec/dummy/public/javascripts/rails.js +331 -0
  211. data/spec/dummy/public/stylesheets/application.css +1 -0
  212. data/spec/dummy/public/stylesheets/fancybox/images/blank.gif +0 -0
  213. data/spec/dummy/public/stylesheets/fancybox/images/fancy_close.png +0 -0
  214. data/spec/dummy/public/stylesheets/fancybox/images/fancy_loading.png +0 -0
  215. data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_left.png +0 -0
  216. data/spec/dummy/public/stylesheets/fancybox/images/fancy_nav_right.png +0 -0
  217. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_e.png +0 -0
  218. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_n.png +0 -0
  219. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_ne.png +0 -0
  220. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_nw.png +0 -0
  221. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_s.png +0 -0
  222. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_se.png +0 -0
  223. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_sw.png +0 -0
  224. data/spec/dummy/public/stylesheets/fancybox/images/fancy_shadow_w.png +0 -0
  225. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_left.png +0 -0
  226. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_main.png +0 -0
  227. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_over.png +0 -0
  228. data/spec/dummy/public/stylesheets/fancybox/images/fancy_title_right.png +0 -0
  229. data/spec/dummy/public/stylesheets/fancybox/images/fancybox-x.png +0 -0
  230. data/spec/dummy/public/stylesheets/fancybox/images/fancybox-y.png +0 -0
  231. data/spec/dummy/public/stylesheets/fancybox/images/fancybox.png +0 -0
  232. data/spec/dummy/public/stylesheets/fancybox/jquery.fancybox-1.3.4.css +359 -0
  233. data/spec/dummy/public/stylesheets/manage/buttons.css +42 -0
  234. data/spec/dummy/public/stylesheets/manage/ie.css +16 -0
  235. data/spec/dummy/public/stylesheets/manage/main.css +1108 -0
  236. data/spec/dummy/public/stylesheets/manage/panel.css +126 -0
  237. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  238. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  239. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  240. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  241. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  242. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  243. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  244. data/spec/dummy/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  245. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
  246. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  247. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
  248. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
  249. data/spec/dummy/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  250. data/spec/dummy/public/stylesheets/smoothness/jquery-ui-1.8.13.custom.css +578 -0
  251. data/spec/dummy/script/rails +6 -0
  252. data/spec/factories/question_factory.rb +10 -0
  253. data/spec/factories/structure_factory.rb +22 -0
  254. data/spec/factories/user_factory.rb +48 -0
  255. data/spec/generators/install_generator_spec.rb +24 -0
  256. data/spec/integration/navigation_spec.rb +9 -0
  257. data/spec/models/question_spec.rb +30 -0
  258. data/spec/spec.opts +2 -0
  259. data/spec/spec_helper.rb +57 -0
  260. data/spec/sunrise_questions_spec.rb +7 -0
  261. data/spec/support/helpers/controller_macros.rb +40 -0
  262. data/spec/tmp/app/models/question.rb +5 -0
  263. data/spec/tmp/db/migrate/20110801173811_sunrise_create_questions.rb +20 -0
  264. metadata +582 -0
@@ -0,0 +1,37 @@
1
+ /* Russian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2
+ /* Written by Andrew Stromnov (stromnov@gmail.com). */
3
+ jQuery(function($){
4
+ $.datepicker.regional['ru'] = {
5
+ closeText: 'Закрыть',
6
+ prevText: '<Пред',
7
+ nextText: 'След>',
8
+ currentText: 'Сегодня',
9
+ monthNames: ['Январь','Февраль','Март','Апрель','Май','Июнь',
10
+ 'Июль','Август','Сентябрь','Октябрь','Ноябрь','Декабрь'],
11
+ monthNamesShort: ['Янв','Фев','Мар','Апр','Май','Июн',
12
+ 'Июл','Авг','Сен','Окт','Ноя','Дек'],
13
+ dayNames: ['воскресенье','понедельник','вторник','среда','четверг','пятница','суббота'],
14
+ dayNamesShort: ['вск','пнд','втр','срд','чтв','птн','сбт'],
15
+ dayNamesMin: ['Вс','Пн','Вт','Ср','Чт','Пт','Сб'],
16
+ weekHeader: 'Не',
17
+ dateFormat: 'dd.mm.yy',
18
+ firstDay: 1,
19
+ isRTL: false,
20
+ showMonthAfterYear: false,
21
+ yearSuffix: ''};
22
+
23
+ if ($.timepicker) {
24
+ $.timepicker.regional['ru'] = {
25
+ timeOnlyTitle: 'Выберите время',
26
+ timeText: 'Время',
27
+ hourText: 'Часы',
28
+ minuteText: 'Минуты',
29
+ secondText: 'Секунды',
30
+ currentText: 'Теперь',
31
+ closeText: 'Закрыть',
32
+ ampm: false
33
+ };
34
+ }
35
+
36
+ $.datepicker.setDefaults($.datepicker.regional['ru']);
37
+ });
@@ -0,0 +1,37 @@
1
+ /* Ukrainian (UTF-8) initialisation for the jQuery UI date picker plugin. */
2
+ /* Written by Maxim Drogobitskiy (maxdao@gmail.com). */
3
+ jQuery(function($){
4
+ $.datepicker.regional['uk'] = {
5
+ closeText: 'Закрити',
6
+ prevText: '<',
7
+ nextText: '>',
8
+ currentText: 'Сьогодні',
9
+ monthNames: ['Січень','Лютий','Березень','Квітень','Травень','Червень',
10
+ 'Липень','Серпень','Вересень','Жовтень','Листопад','Грудень'],
11
+ monthNamesShort: ['Січ','Лют','Бер','Кві','Тра','Чер',
12
+ 'Лип','Сер','Вер','Жов','Лис','Гру'],
13
+ dayNames: ['неділя','понеділок','вівторок','середа','четвер','п’ятниця','субота'],
14
+ dayNamesShort: ['нед','пнд','вів','срд','чтв','птн','сбт'],
15
+ dayNamesMin: ['Нд','Пн','Вт','Ср','Чт','Пт','Сб'],
16
+ weekHeader: 'Не',
17
+ dateFormat: 'dd.mm.yy',
18
+ firstDay: 1,
19
+ isRTL: false,
20
+ showMonthAfterYear: false,
21
+ yearSuffix: ''};
22
+
23
+ if ($.timepicker) {
24
+ $.timepicker.regional['uk'] = {
25
+ timeOnlyTitle: 'Виберіть час',
26
+ timeText: 'Час',
27
+ hourText: 'Години',
28
+ minuteText: 'Хвилини',
29
+ secondText: 'Секунди',
30
+ currentText: 'Тепер',
31
+ closeText: 'Закрити',
32
+ ampm: false
33
+ };
34
+ }
35
+
36
+ $.datepicker.setDefaults($.datepicker.regional['uk']);
37
+ });
@@ -0,0 +1,974 @@
1
+ // script.aculo.us dragdrop.js v1.8.3, Thu Oct 08 11:23:33 +0200 2009
2
+
3
+ // Copyright (c) 2005-2009 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
4
+ //
5
+ // script.aculo.us is freely distributable under the terms of an MIT-style license.
6
+ // For details, see the script.aculo.us web site: http://script.aculo.us/
7
+
8
+ if(Object.isUndefined(Effect))
9
+ throw("dragdrop.js requires including script.aculo.us' effects.js library");
10
+
11
+ var Droppables = {
12
+ drops: [],
13
+
14
+ remove: function(element) {
15
+ this.drops = this.drops.reject(function(d) { return d.element==$(element) });
16
+ },
17
+
18
+ add: function(element) {
19
+ element = $(element);
20
+ var options = Object.extend({
21
+ greedy: true,
22
+ hoverclass: null,
23
+ tree: false
24
+ }, arguments[1] || { });
25
+
26
+ // cache containers
27
+ if(options.containment) {
28
+ options._containers = [];
29
+ var containment = options.containment;
30
+ if(Object.isArray(containment)) {
31
+ containment.each( function(c) { options._containers.push($(c)) });
32
+ } else {
33
+ options._containers.push($(containment));
34
+ }
35
+ }
36
+
37
+ if(options.accept) options.accept = [options.accept].flatten();
38
+
39
+ Element.makePositioned(element); // fix IE
40
+ options.element = element;
41
+
42
+ this.drops.push(options);
43
+ },
44
+
45
+ findDeepestChild: function(drops) {
46
+ deepest = drops[0];
47
+
48
+ for (i = 1; i < drops.length; ++i)
49
+ if (Element.isParent(drops[i].element, deepest.element))
50
+ deepest = drops[i];
51
+
52
+ return deepest;
53
+ },
54
+
55
+ isContained: function(element, drop) {
56
+ var containmentNode;
57
+ if(drop.tree) {
58
+ containmentNode = element.treeNode;
59
+ } else {
60
+ containmentNode = element.parentNode;
61
+ }
62
+ return drop._containers.detect(function(c) { return containmentNode == c });
63
+ },
64
+
65
+ isAffected: function(point, element, drop) {
66
+ return (
67
+ (drop.element!=element) &&
68
+ ((!drop._containers) ||
69
+ this.isContained(element, drop)) &&
70
+ ((!drop.accept) ||
71
+ (Element.classNames(element).detect(
72
+ function(v) { return drop.accept.include(v) } ) )) &&
73
+ Position.within(drop.element, point[0], point[1]) );
74
+ },
75
+
76
+ deactivate: function(drop) {
77
+ if(drop.hoverclass)
78
+ Element.removeClassName(drop.element, drop.hoverclass);
79
+ this.last_active = null;
80
+ },
81
+
82
+ activate: function(drop) {
83
+ if(drop.hoverclass)
84
+ Element.addClassName(drop.element, drop.hoverclass);
85
+ this.last_active = drop;
86
+ },
87
+
88
+ show: function(point, element) {
89
+ if(!this.drops.length) return;
90
+ var drop, affected = [];
91
+
92
+ this.drops.each( function(drop) {
93
+ if(Droppables.isAffected(point, element, drop))
94
+ affected.push(drop);
95
+ });
96
+
97
+ if(affected.length>0)
98
+ drop = Droppables.findDeepestChild(affected);
99
+
100
+ if(this.last_active && this.last_active != drop) this.deactivate(this.last_active);
101
+ if (drop) {
102
+ Position.within(drop.element, point[0], point[1]);
103
+ if(drop.onHover)
104
+ drop.onHover(element, drop.element, Position.overlap(drop.overlap, drop.element));
105
+
106
+ if (drop != this.last_active) Droppables.activate(drop);
107
+ }
108
+ },
109
+
110
+ fire: function(event, element) {
111
+ if(!this.last_active) return;
112
+ Position.prepare();
113
+
114
+ if (this.isAffected([Event.pointerX(event), Event.pointerY(event)], element, this.last_active))
115
+ if (this.last_active.onDrop) {
116
+ this.last_active.onDrop(element, this.last_active.element, event);
117
+ return true;
118
+ }
119
+ },
120
+
121
+ reset: function() {
122
+ if(this.last_active)
123
+ this.deactivate(this.last_active);
124
+ }
125
+ };
126
+
127
+ var Draggables = {
128
+ drags: [],
129
+ observers: [],
130
+
131
+ register: function(draggable) {
132
+ if(this.drags.length == 0) {
133
+ this.eventMouseUp = this.endDrag.bindAsEventListener(this);
134
+ this.eventMouseMove = this.updateDrag.bindAsEventListener(this);
135
+ this.eventKeypress = this.keyPress.bindAsEventListener(this);
136
+
137
+ Event.observe(document, "mouseup", this.eventMouseUp);
138
+ Event.observe(document, "mousemove", this.eventMouseMove);
139
+ Event.observe(document, "keypress", this.eventKeypress);
140
+ }
141
+ this.drags.push(draggable);
142
+ },
143
+
144
+ unregister: function(draggable) {
145
+ this.drags = this.drags.reject(function(d) { return d==draggable });
146
+ if(this.drags.length == 0) {
147
+ Event.stopObserving(document, "mouseup", this.eventMouseUp);
148
+ Event.stopObserving(document, "mousemove", this.eventMouseMove);
149
+ Event.stopObserving(document, "keypress", this.eventKeypress);
150
+ }
151
+ },
152
+
153
+ activate: function(draggable) {
154
+ if(draggable.options.delay) {
155
+ this._timeout = setTimeout(function() {
156
+ Draggables._timeout = null;
157
+ window.focus();
158
+ Draggables.activeDraggable = draggable;
159
+ }.bind(this), draggable.options.delay);
160
+ } else {
161
+ window.focus(); // allows keypress events if window isn't currently focused, fails for Safari
162
+ this.activeDraggable = draggable;
163
+ }
164
+ },
165
+
166
+ deactivate: function() {
167
+ this.activeDraggable = null;
168
+ },
169
+
170
+ updateDrag: function(event) {
171
+ if(!this.activeDraggable) return;
172
+ var pointer = [Event.pointerX(event), Event.pointerY(event)];
173
+ // Mozilla-based browsers fire successive mousemove events with
174
+ // the same coordinates, prevent needless redrawing (moz bug?)
175
+ if(this._lastPointer && (this._lastPointer.inspect() == pointer.inspect())) return;
176
+ this._lastPointer = pointer;
177
+
178
+ this.activeDraggable.updateDrag(event, pointer);
179
+ },
180
+
181
+ endDrag: function(event) {
182
+ if(this._timeout) {
183
+ clearTimeout(this._timeout);
184
+ this._timeout = null;
185
+ }
186
+ if(!this.activeDraggable) return;
187
+ this._lastPointer = null;
188
+ this.activeDraggable.endDrag(event);
189
+ this.activeDraggable = null;
190
+ },
191
+
192
+ keyPress: function(event) {
193
+ if(this.activeDraggable)
194
+ this.activeDraggable.keyPress(event);
195
+ },
196
+
197
+ addObserver: function(observer) {
198
+ this.observers.push(observer);
199
+ this._cacheObserverCallbacks();
200
+ },
201
+
202
+ removeObserver: function(element) { // element instead of observer fixes mem leaks
203
+ this.observers = this.observers.reject( function(o) { return o.element==element });
204
+ this._cacheObserverCallbacks();
205
+ },
206
+
207
+ notify: function(eventName, draggable, event) { // 'onStart', 'onEnd', 'onDrag'
208
+ if(this[eventName+'Count'] > 0)
209
+ this.observers.each( function(o) {
210
+ if(o[eventName]) o[eventName](eventName, draggable, event);
211
+ });
212
+ if(draggable.options[eventName]) draggable.options[eventName](draggable, event);
213
+ },
214
+
215
+ _cacheObserverCallbacks: function() {
216
+ ['onStart','onEnd','onDrag'].each( function(eventName) {
217
+ Draggables[eventName+'Count'] = Draggables.observers.select(
218
+ function(o) { return o[eventName]; }
219
+ ).length;
220
+ });
221
+ }
222
+ };
223
+
224
+ /*--------------------------------------------------------------------------*/
225
+
226
+ var Draggable = Class.create({
227
+ initialize: function(element) {
228
+ var defaults = {
229
+ handle: false,
230
+ reverteffect: function(element, top_offset, left_offset) {
231
+ var dur = Math.sqrt(Math.abs(top_offset^2)+Math.abs(left_offset^2))*0.02;
232
+ new Effect.Move(element, { x: -left_offset, y: -top_offset, duration: dur,
233
+ queue: {scope:'_draggable', position:'end'}
234
+ });
235
+ },
236
+ endeffect: function(element) {
237
+ var toOpacity = Object.isNumber(element._opacity) ? element._opacity : 1.0;
238
+ new Effect.Opacity(element, {duration:0.2, from:0.7, to:toOpacity,
239
+ queue: {scope:'_draggable', position:'end'},
240
+ afterFinish: function(){
241
+ Draggable._dragging[element] = false
242
+ }
243
+ });
244
+ },
245
+ zindex: 1000,
246
+ revert: false,
247
+ quiet: false,
248
+ scroll: false,
249
+ scrollSensitivity: 20,
250
+ scrollSpeed: 15,
251
+ snap: false, // false, or xy or [x,y] or function(x,y){ return [x,y] }
252
+ delay: 0
253
+ };
254
+
255
+ if(!arguments[1] || Object.isUndefined(arguments[1].endeffect))
256
+ Object.extend(defaults, {
257
+ starteffect: function(element) {
258
+ element._opacity = Element.getOpacity(element);
259
+ Draggable._dragging[element] = true;
260
+ new Effect.Opacity(element, {duration:0.2, from:element._opacity, to:0.7});
261
+ }
262
+ });
263
+
264
+ var options = Object.extend(defaults, arguments[1] || { });
265
+
266
+ this.element = $(element);
267
+
268
+ if(options.handle && Object.isString(options.handle))
269
+ this.handle = this.element.down('.'+options.handle, 0);
270
+
271
+ if(!this.handle) this.handle = $(options.handle);
272
+ if(!this.handle) this.handle = this.element;
273
+
274
+ if(options.scroll && !options.scroll.scrollTo && !options.scroll.outerHTML) {
275
+ options.scroll = $(options.scroll);
276
+ this._isScrollChild = Element.childOf(this.element, options.scroll);
277
+ }
278
+
279
+ Element.makePositioned(this.element); // fix IE
280
+
281
+ this.options = options;
282
+ this.dragging = false;
283
+
284
+ this.eventMouseDown = this.initDrag.bindAsEventListener(this);
285
+ Event.observe(this.handle, "mousedown", this.eventMouseDown);
286
+
287
+ Draggables.register(this);
288
+ },
289
+
290
+ destroy: function() {
291
+ Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
292
+ Draggables.unregister(this);
293
+ },
294
+
295
+ currentDelta: function() {
296
+ return([
297
+ parseInt(Element.getStyle(this.element,'left') || '0'),
298
+ parseInt(Element.getStyle(this.element,'top') || '0')]);
299
+ },
300
+
301
+ initDrag: function(event) {
302
+ if(!Object.isUndefined(Draggable._dragging[this.element]) &&
303
+ Draggable._dragging[this.element]) return;
304
+ if(Event.isLeftClick(event)) {
305
+ // abort on form elements, fixes a Firefox issue
306
+ var src = Event.element(event);
307
+ if((tag_name = src.tagName.toUpperCase()) && (
308
+ tag_name=='INPUT' ||
309
+ tag_name=='SELECT' ||
310
+ tag_name=='OPTION' ||
311
+ tag_name=='BUTTON' ||
312
+ tag_name=='TEXTAREA')) return;
313
+
314
+ var pointer = [Event.pointerX(event), Event.pointerY(event)];
315
+ var pos = this.element.cumulativeOffset();
316
+ this.offset = [0,1].map( function(i) { return (pointer[i] - pos[i]) });
317
+
318
+ Draggables.activate(this);
319
+ Event.stop(event);
320
+ }
321
+ },
322
+
323
+ startDrag: function(event) {
324
+ this.dragging = true;
325
+ if(!this.delta)
326
+ this.delta = this.currentDelta();
327
+
328
+ if(this.options.zindex) {
329
+ this.originalZ = parseInt(Element.getStyle(this.element,'z-index') || 0);
330
+ this.element.style.zIndex = this.options.zindex;
331
+ }
332
+
333
+ if(this.options.ghosting) {
334
+ this._clone = this.element.cloneNode(true);
335
+ this._originallyAbsolute = (this.element.getStyle('position') == 'absolute');
336
+ if (!this._originallyAbsolute)
337
+ Position.absolutize(this.element);
338
+ this.element.parentNode.insertBefore(this._clone, this.element);
339
+ }
340
+
341
+ if(this.options.scroll) {
342
+ if (this.options.scroll == window) {
343
+ var where = this._getWindowScroll(this.options.scroll);
344
+ this.originalScrollLeft = where.left;
345
+ this.originalScrollTop = where.top;
346
+ } else {
347
+ this.originalScrollLeft = this.options.scroll.scrollLeft;
348
+ this.originalScrollTop = this.options.scroll.scrollTop;
349
+ }
350
+ }
351
+
352
+ Draggables.notify('onStart', this, event);
353
+
354
+ if(this.options.starteffect) this.options.starteffect(this.element);
355
+ },
356
+
357
+ updateDrag: function(event, pointer) {
358
+ if(!this.dragging) this.startDrag(event);
359
+
360
+ if(!this.options.quiet){
361
+ Position.prepare();
362
+ Droppables.show(pointer, this.element);
363
+ }
364
+
365
+ Draggables.notify('onDrag', this, event);
366
+
367
+ this.draw(pointer);
368
+ if(this.options.change) this.options.change(this);
369
+
370
+ if(this.options.scroll) {
371
+ this.stopScrolling();
372
+
373
+ var p;
374
+ if (this.options.scroll == window) {
375
+ with(this._getWindowScroll(this.options.scroll)) { p = [ left, top, left+width, top+height ]; }
376
+ } else {
377
+ p = Position.page(this.options.scroll);
378
+ p[0] += this.options.scroll.scrollLeft + Position.deltaX;
379
+ p[1] += this.options.scroll.scrollTop + Position.deltaY;
380
+ p.push(p[0]+this.options.scroll.offsetWidth);
381
+ p.push(p[1]+this.options.scroll.offsetHeight);
382
+ }
383
+ var speed = [0,0];
384
+ if(pointer[0] < (p[0]+this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[0]+this.options.scrollSensitivity);
385
+ if(pointer[1] < (p[1]+this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[1]+this.options.scrollSensitivity);
386
+ if(pointer[0] > (p[2]-this.options.scrollSensitivity)) speed[0] = pointer[0]-(p[2]-this.options.scrollSensitivity);
387
+ if(pointer[1] > (p[3]-this.options.scrollSensitivity)) speed[1] = pointer[1]-(p[3]-this.options.scrollSensitivity);
388
+ this.startScrolling(speed);
389
+ }
390
+
391
+ // fix AppleWebKit rendering
392
+ if(Prototype.Browser.WebKit) window.scrollBy(0,0);
393
+
394
+ Event.stop(event);
395
+ },
396
+
397
+ finishDrag: function(event, success) {
398
+ this.dragging = false;
399
+
400
+ if(this.options.quiet){
401
+ Position.prepare();
402
+ var pointer = [Event.pointerX(event), Event.pointerY(event)];
403
+ Droppables.show(pointer, this.element);
404
+ }
405
+
406
+ if(this.options.ghosting) {
407
+ if (!this._originallyAbsolute)
408
+ Position.relativize(this.element);
409
+ delete this._originallyAbsolute;
410
+ Element.remove(this._clone);
411
+ this._clone = null;
412
+ }
413
+
414
+ var dropped = false;
415
+ if(success) {
416
+ dropped = Droppables.fire(event, this.element);
417
+ if (!dropped) dropped = false;
418
+ }
419
+ if(dropped && this.options.onDropped) this.options.onDropped(this.element);
420
+ Draggables.notify('onEnd', this, event);
421
+
422
+ var revert = this.options.revert;
423
+ if(revert && Object.isFunction(revert)) revert = revert(this.element);
424
+
425
+ var d = this.currentDelta();
426
+ if(revert && this.options.reverteffect) {
427
+ if (dropped == 0 || revert != 'failure')
428
+ this.options.reverteffect(this.element,
429
+ d[1]-this.delta[1], d[0]-this.delta[0]);
430
+ } else {
431
+ this.delta = d;
432
+ }
433
+
434
+ if(this.options.zindex)
435
+ this.element.style.zIndex = this.originalZ;
436
+
437
+ if(this.options.endeffect)
438
+ this.options.endeffect(this.element);
439
+
440
+ Draggables.deactivate(this);
441
+ Droppables.reset();
442
+ },
443
+
444
+ keyPress: function(event) {
445
+ if(event.keyCode!=Event.KEY_ESC) return;
446
+ this.finishDrag(event, false);
447
+ Event.stop(event);
448
+ },
449
+
450
+ endDrag: function(event) {
451
+ if(!this.dragging) return;
452
+ this.stopScrolling();
453
+ this.finishDrag(event, true);
454
+ Event.stop(event);
455
+ },
456
+
457
+ draw: function(point) {
458
+ var pos = this.element.cumulativeOffset();
459
+ if(this.options.ghosting) {
460
+ var r = Position.realOffset(this.element);
461
+ pos[0] += r[0] - Position.deltaX; pos[1] += r[1] - Position.deltaY;
462
+ }
463
+
464
+ var d = this.currentDelta();
465
+ pos[0] -= d[0]; pos[1] -= d[1];
466
+
467
+ if(this.options.scroll && (this.options.scroll != window && this._isScrollChild)) {
468
+ pos[0] -= this.options.scroll.scrollLeft-this.originalScrollLeft;
469
+ pos[1] -= this.options.scroll.scrollTop-this.originalScrollTop;
470
+ }
471
+
472
+ var p = [0,1].map(function(i){
473
+ return (point[i]-pos[i]-this.offset[i])
474
+ }.bind(this));
475
+
476
+ if(this.options.snap) {
477
+ if(Object.isFunction(this.options.snap)) {
478
+ p = this.options.snap(p[0],p[1],this);
479
+ } else {
480
+ if(Object.isArray(this.options.snap)) {
481
+ p = p.map( function(v, i) {
482
+ return (v/this.options.snap[i]).round()*this.options.snap[i] }.bind(this));
483
+ } else {
484
+ p = p.map( function(v) {
485
+ return (v/this.options.snap).round()*this.options.snap }.bind(this));
486
+ }
487
+ }}
488
+
489
+ var style = this.element.style;
490
+ if((!this.options.constraint) || (this.options.constraint=='horizontal'))
491
+ style.left = p[0] + "px";
492
+ if((!this.options.constraint) || (this.options.constraint=='vertical'))
493
+ style.top = p[1] + "px";
494
+
495
+ if(style.visibility=="hidden") style.visibility = ""; // fix gecko rendering
496
+ },
497
+
498
+ stopScrolling: function() {
499
+ if(this.scrollInterval) {
500
+ clearInterval(this.scrollInterval);
501
+ this.scrollInterval = null;
502
+ Draggables._lastScrollPointer = null;
503
+ }
504
+ },
505
+
506
+ startScrolling: function(speed) {
507
+ if(!(speed[0] || speed[1])) return;
508
+ this.scrollSpeed = [speed[0]*this.options.scrollSpeed,speed[1]*this.options.scrollSpeed];
509
+ this.lastScrolled = new Date();
510
+ this.scrollInterval = setInterval(this.scroll.bind(this), 10);
511
+ },
512
+
513
+ scroll: function() {
514
+ var current = new Date();
515
+ var delta = current - this.lastScrolled;
516
+ this.lastScrolled = current;
517
+ if(this.options.scroll == window) {
518
+ with (this._getWindowScroll(this.options.scroll)) {
519
+ if (this.scrollSpeed[0] || this.scrollSpeed[1]) {
520
+ var d = delta / 1000;
521
+ this.options.scroll.scrollTo( left + d*this.scrollSpeed[0], top + d*this.scrollSpeed[1] );
522
+ }
523
+ }
524
+ } else {
525
+ this.options.scroll.scrollLeft += this.scrollSpeed[0] * delta / 1000;
526
+ this.options.scroll.scrollTop += this.scrollSpeed[1] * delta / 1000;
527
+ }
528
+
529
+ Position.prepare();
530
+ Droppables.show(Draggables._lastPointer, this.element);
531
+ Draggables.notify('onDrag', this);
532
+ if (this._isScrollChild) {
533
+ Draggables._lastScrollPointer = Draggables._lastScrollPointer || $A(Draggables._lastPointer);
534
+ Draggables._lastScrollPointer[0] += this.scrollSpeed[0] * delta / 1000;
535
+ Draggables._lastScrollPointer[1] += this.scrollSpeed[1] * delta / 1000;
536
+ if (Draggables._lastScrollPointer[0] < 0)
537
+ Draggables._lastScrollPointer[0] = 0;
538
+ if (Draggables._lastScrollPointer[1] < 0)
539
+ Draggables._lastScrollPointer[1] = 0;
540
+ this.draw(Draggables._lastScrollPointer);
541
+ }
542
+
543
+ if(this.options.change) this.options.change(this);
544
+ },
545
+
546
+ _getWindowScroll: function(w) {
547
+ var T, L, W, H;
548
+ with (w.document) {
549
+ if (w.document.documentElement && documentElement.scrollTop) {
550
+ T = documentElement.scrollTop;
551
+ L = documentElement.scrollLeft;
552
+ } else if (w.document.body) {
553
+ T = body.scrollTop;
554
+ L = body.scrollLeft;
555
+ }
556
+ if (w.innerWidth) {
557
+ W = w.innerWidth;
558
+ H = w.innerHeight;
559
+ } else if (w.document.documentElement && documentElement.clientWidth) {
560
+ W = documentElement.clientWidth;
561
+ H = documentElement.clientHeight;
562
+ } else {
563
+ W = body.offsetWidth;
564
+ H = body.offsetHeight;
565
+ }
566
+ }
567
+ return { top: T, left: L, width: W, height: H };
568
+ }
569
+ });
570
+
571
+ Draggable._dragging = { };
572
+
573
+ /*--------------------------------------------------------------------------*/
574
+
575
+ var SortableObserver = Class.create({
576
+ initialize: function(element, observer) {
577
+ this.element = $(element);
578
+ this.observer = observer;
579
+ this.lastValue = Sortable.serialize(this.element);
580
+ },
581
+
582
+ onStart: function() {
583
+ this.lastValue = Sortable.serialize(this.element);
584
+ },
585
+
586
+ onEnd: function() {
587
+ Sortable.unmark();
588
+ if(this.lastValue != Sortable.serialize(this.element))
589
+ this.observer(this.element)
590
+ }
591
+ });
592
+
593
+ var Sortable = {
594
+ SERIALIZE_RULE: /^[^_\-](?:[A-Za-z0-9\-\_]*)[_](.*)$/,
595
+
596
+ sortables: { },
597
+
598
+ _findRootElement: function(element) {
599
+ while (element.tagName.toUpperCase() != "BODY") {
600
+ if(element.id && Sortable.sortables[element.id]) return element;
601
+ element = element.parentNode;
602
+ }
603
+ },
604
+
605
+ options: function(element) {
606
+ element = Sortable._findRootElement($(element));
607
+ if(!element) return;
608
+ return Sortable.sortables[element.id];
609
+ },
610
+
611
+ destroy: function(element){
612
+ element = $(element);
613
+ var s = Sortable.sortables[element.id];
614
+
615
+ if(s) {
616
+ Draggables.removeObserver(s.element);
617
+ s.droppables.each(function(d){ Droppables.remove(d) });
618
+ s.draggables.invoke('destroy');
619
+
620
+ delete Sortable.sortables[s.element.id];
621
+ }
622
+ },
623
+
624
+ create: function(element) {
625
+ element = $(element);
626
+ var options = Object.extend({
627
+ element: element,
628
+ tag: 'li', // assumes li children, override with tag: 'tagname'
629
+ dropOnEmpty: false,
630
+ tree: false,
631
+ treeTag: 'ul',
632
+ overlap: 'vertical', // one of 'vertical', 'horizontal'
633
+ constraint: 'vertical', // one of 'vertical', 'horizontal', false
634
+ containment: element, // also takes array of elements (or id's); or false
635
+ handle: false, // or a CSS class
636
+ only: false,
637
+ delay: 0,
638
+ hoverclass: null,
639
+ ghosting: false,
640
+ quiet: false,
641
+ scroll: false,
642
+ scrollSensitivity: 20,
643
+ scrollSpeed: 15,
644
+ format: this.SERIALIZE_RULE,
645
+
646
+ // these take arrays of elements or ids and can be
647
+ // used for better initialization performance
648
+ elements: false,
649
+ handles: false,
650
+
651
+ onChange: Prototype.emptyFunction,
652
+ onUpdate: Prototype.emptyFunction
653
+ }, arguments[1] || { });
654
+
655
+ // clear any old sortable with same element
656
+ this.destroy(element);
657
+
658
+ // build options for the draggables
659
+ var options_for_draggable = {
660
+ revert: true,
661
+ quiet: options.quiet,
662
+ scroll: options.scroll,
663
+ scrollSpeed: options.scrollSpeed,
664
+ scrollSensitivity: options.scrollSensitivity,
665
+ delay: options.delay,
666
+ ghosting: options.ghosting,
667
+ constraint: options.constraint,
668
+ handle: options.handle };
669
+
670
+ if(options.starteffect)
671
+ options_for_draggable.starteffect = options.starteffect;
672
+
673
+ if(options.reverteffect)
674
+ options_for_draggable.reverteffect = options.reverteffect;
675
+ else
676
+ if(options.ghosting) options_for_draggable.reverteffect = function(element) {
677
+ element.style.top = 0;
678
+ element.style.left = 0;
679
+ };
680
+
681
+ if(options.endeffect)
682
+ options_for_draggable.endeffect = options.endeffect;
683
+
684
+ if(options.zindex)
685
+ options_for_draggable.zindex = options.zindex;
686
+
687
+ // build options for the droppables
688
+ var options_for_droppable = {
689
+ overlap: options.overlap,
690
+ containment: options.containment,
691
+ tree: options.tree,
692
+ hoverclass: options.hoverclass,
693
+ onHover: Sortable.onHover
694
+ };
695
+
696
+ var options_for_tree = {
697
+ onHover: Sortable.onEmptyHover,
698
+ overlap: options.overlap,
699
+ containment: options.containment,
700
+ hoverclass: options.hoverclass
701
+ };
702
+
703
+ // fix for gecko engine
704
+ Element.cleanWhitespace(element);
705
+
706
+ options.draggables = [];
707
+ options.droppables = [];
708
+
709
+ // drop on empty handling
710
+ if(options.dropOnEmpty || options.tree) {
711
+ Droppables.add(element, options_for_tree);
712
+ options.droppables.push(element);
713
+ }
714
+
715
+ (options.elements || this.findElements(element, options) || []).each( function(e,i) {
716
+ var handle = options.handles ? $(options.handles[i]) :
717
+ (options.handle ? $(e).select('.' + options.handle)[0] : e);
718
+ options.draggables.push(
719
+ new Draggable(e, Object.extend(options_for_draggable, { handle: handle })));
720
+ Droppables.add(e, options_for_droppable);
721
+ if(options.tree) e.treeNode = element;
722
+ options.droppables.push(e);
723
+ });
724
+
725
+ if(options.tree) {
726
+ (Sortable.findTreeElements(element, options) || []).each( function(e) {
727
+ Droppables.add(e, options_for_tree);
728
+ e.treeNode = element;
729
+ options.droppables.push(e);
730
+ });
731
+ }
732
+
733
+ // keep reference
734
+ this.sortables[element.identify()] = options;
735
+
736
+ // for onupdate
737
+ Draggables.addObserver(new SortableObserver(element, options.onUpdate));
738
+
739
+ },
740
+
741
+ // return all suitable-for-sortable elements in a guaranteed order
742
+ findElements: function(element, options) {
743
+ return Element.findChildren(
744
+ element, options.only, options.tree ? true : false, options.tag);
745
+ },
746
+
747
+ findTreeElements: function(element, options) {
748
+ return Element.findChildren(
749
+ element, options.only, options.tree ? true : false, options.treeTag);
750
+ },
751
+
752
+ onHover: function(element, dropon, overlap) {
753
+ if(Element.isParent(dropon, element)) return;
754
+
755
+ if(overlap > .33 && overlap < .66 && Sortable.options(dropon).tree) {
756
+ return;
757
+ } else if(overlap>0.5) {
758
+ Sortable.mark(dropon, 'before');
759
+ if(dropon.previousSibling != element) {
760
+ var oldParentNode = element.parentNode;
761
+ element.style.visibility = "hidden"; // fix gecko rendering
762
+ dropon.parentNode.insertBefore(element, dropon);
763
+ if(dropon.parentNode!=oldParentNode)
764
+ Sortable.options(oldParentNode).onChange(element);
765
+ Sortable.options(dropon.parentNode).onChange(element);
766
+ }
767
+ } else {
768
+ Sortable.mark(dropon, 'after');
769
+ var nextElement = dropon.nextSibling || null;
770
+ if(nextElement != element) {
771
+ var oldParentNode = element.parentNode;
772
+ element.style.visibility = "hidden"; // fix gecko rendering
773
+ dropon.parentNode.insertBefore(element, nextElement);
774
+ if(dropon.parentNode!=oldParentNode)
775
+ Sortable.options(oldParentNode).onChange(element);
776
+ Sortable.options(dropon.parentNode).onChange(element);
777
+ }
778
+ }
779
+ },
780
+
781
+ onEmptyHover: function(element, dropon, overlap) {
782
+ var oldParentNode = element.parentNode;
783
+ var droponOptions = Sortable.options(dropon);
784
+
785
+ if(!Element.isParent(dropon, element)) {
786
+ var index;
787
+
788
+ var children = Sortable.findElements(dropon, {tag: droponOptions.tag, only: droponOptions.only});
789
+ var child = null;
790
+
791
+ if(children) {
792
+ var offset = Element.offsetSize(dropon, droponOptions.overlap) * (1.0 - overlap);
793
+
794
+ for (index = 0; index < children.length; index += 1) {
795
+ if (offset - Element.offsetSize (children[index], droponOptions.overlap) >= 0) {
796
+ offset -= Element.offsetSize (children[index], droponOptions.overlap);
797
+ } else if (offset - (Element.offsetSize (children[index], droponOptions.overlap) / 2) >= 0) {
798
+ child = index + 1 < children.length ? children[index + 1] : null;
799
+ break;
800
+ } else {
801
+ child = children[index];
802
+ break;
803
+ }
804
+ }
805
+ }
806
+
807
+ dropon.insertBefore(element, child);
808
+
809
+ Sortable.options(oldParentNode).onChange(element);
810
+ droponOptions.onChange(element);
811
+ }
812
+ },
813
+
814
+ unmark: function() {
815
+ if(Sortable._marker) Sortable._marker.hide();
816
+ },
817
+
818
+ mark: function(dropon, position) {
819
+ // mark on ghosting only
820
+ var sortable = Sortable.options(dropon.parentNode);
821
+ if(sortable && !sortable.ghosting) return;
822
+
823
+ if(!Sortable._marker) {
824
+ Sortable._marker =
825
+ ($('dropmarker') || Element.extend(document.createElement('DIV'))).
826
+ hide().addClassName('dropmarker').setStyle({position:'absolute'});
827
+ document.getElementsByTagName("body").item(0).appendChild(Sortable._marker);
828
+ }
829
+ var offsets = dropon.cumulativeOffset();
830
+ Sortable._marker.setStyle({left: offsets[0]+'px', top: offsets[1] + 'px'});
831
+
832
+ if(position=='after')
833
+ if(sortable.overlap == 'horizontal')
834
+ Sortable._marker.setStyle({left: (offsets[0]+dropon.clientWidth) + 'px'});
835
+ else
836
+ Sortable._marker.setStyle({top: (offsets[1]+dropon.clientHeight) + 'px'});
837
+
838
+ Sortable._marker.show();
839
+ },
840
+
841
+ _tree: function(element, options, parent) {
842
+ var children = Sortable.findElements(element, options) || [];
843
+
844
+ for (var i = 0; i < children.length; ++i) {
845
+ var match = children[i].id.match(options.format);
846
+
847
+ if (!match) continue;
848
+
849
+ var child = {
850
+ id: encodeURIComponent(match ? match[1] : null),
851
+ element: element,
852
+ parent: parent,
853
+ children: [],
854
+ position: parent.children.length,
855
+ container: $(children[i]).down(options.treeTag)
856
+ };
857
+
858
+ /* Get the element containing the children and recurse over it */
859
+ if (child.container)
860
+ this._tree(child.container, options, child);
861
+
862
+ parent.children.push (child);
863
+ }
864
+
865
+ return parent;
866
+ },
867
+
868
+ tree: function(element) {
869
+ element = $(element);
870
+ var sortableOptions = this.options(element);
871
+ var options = Object.extend({
872
+ tag: sortableOptions.tag,
873
+ treeTag: sortableOptions.treeTag,
874
+ only: sortableOptions.only,
875
+ name: element.id,
876
+ format: sortableOptions.format
877
+ }, arguments[1] || { });
878
+
879
+ var root = {
880
+ id: null,
881
+ parent: null,
882
+ children: [],
883
+ container: element,
884
+ position: 0
885
+ };
886
+
887
+ return Sortable._tree(element, options, root);
888
+ },
889
+
890
+ /* Construct a [i] index for a particular node */
891
+ _constructIndex: function(node) {
892
+ var index = '';
893
+ do {
894
+ if (node.id) index = '[' + node.position + ']' + index;
895
+ } while ((node = node.parent) != null);
896
+ return index;
897
+ },
898
+
899
+ sequence: function(element) {
900
+ element = $(element);
901
+ var options = Object.extend(this.options(element), arguments[1] || { });
902
+
903
+ return $(this.findElements(element, options) || []).map( function(item) {
904
+ return item.id.match(options.format) ? item.id.match(options.format)[1] : '';
905
+ });
906
+ },
907
+
908
+ setSequence: function(element, new_sequence) {
909
+ element = $(element);
910
+ var options = Object.extend(this.options(element), arguments[2] || { });
911
+
912
+ var nodeMap = { };
913
+ this.findElements(element, options).each( function(n) {
914
+ if (n.id.match(options.format))
915
+ nodeMap[n.id.match(options.format)[1]] = [n, n.parentNode];
916
+ n.parentNode.removeChild(n);
917
+ });
918
+
919
+ new_sequence.each(function(ident) {
920
+ var n = nodeMap[ident];
921
+ if (n) {
922
+ n[1].appendChild(n[0]);
923
+ delete nodeMap[ident];
924
+ }
925
+ });
926
+ },
927
+
928
+ serialize: function(element) {
929
+ element = $(element);
930
+ var options = Object.extend(Sortable.options(element), arguments[1] || { });
931
+ var name = encodeURIComponent(
932
+ (arguments[1] && arguments[1].name) ? arguments[1].name : element.id);
933
+
934
+ if (options.tree) {
935
+ return Sortable.tree(element, arguments[1]).children.map( function (item) {
936
+ return [name + Sortable._constructIndex(item) + "[id]=" +
937
+ encodeURIComponent(item.id)].concat(item.children.map(arguments.callee));
938
+ }).flatten().join('&');
939
+ } else {
940
+ return Sortable.sequence(element, arguments[1]).map( function(item) {
941
+ return name + "[]=" + encodeURIComponent(item);
942
+ }).join('&');
943
+ }
944
+ }
945
+ };
946
+
947
+ // Returns true if child is contained within element
948
+ Element.isParent = function(child, element) {
949
+ if (!child.parentNode || child == element) return false;
950
+ if (child.parentNode == element) return true;
951
+ return Element.isParent(child.parentNode, element);
952
+ };
953
+
954
+ Element.findChildren = function(element, only, recursive, tagName) {
955
+ if(!element.hasChildNodes()) return null;
956
+ tagName = tagName.toUpperCase();
957
+ if(only) only = [only].flatten();
958
+ var elements = [];
959
+ $A(element.childNodes).each( function(e) {
960
+ if(e.tagName && e.tagName.toUpperCase()==tagName &&
961
+ (!only || (Element.classNames(e).detect(function(v) { return only.include(v) }))))
962
+ elements.push(e);
963
+ if(recursive) {
964
+ var grandchildren = Element.findChildren(e, only, recursive, tagName);
965
+ if(grandchildren) elements.push(grandchildren);
966
+ }
967
+ });
968
+
969
+ return (elements.length>0 ? elements.flatten() : []);
970
+ };
971
+
972
+ Element.offsetSize = function (element, type) {
973
+ return element['offset' + ((type=='vertical' || type=='height') ? 'Height' : 'Width')];
974
+ };