spiderfw 0.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (638) hide show
  1. data/README +4 -0
  2. data/Rakefile +74 -0
  3. data/apps/cas_server/_init.rb +23 -0
  4. data/apps/cas_server/config/options.rb +9 -0
  5. data/apps/cas_server/controllers/mixins/cas_login_mixin.rb +353 -0
  6. data/apps/cas_server/lib/cas.rb +329 -0
  7. data/apps/cas_server/lib/utils.rb +30 -0
  8. data/apps/cas_server/models/login_ticket.rb +11 -0
  9. data/apps/cas_server/models/mixins/consumable.rb +10 -0
  10. data/apps/cas_server/models/proxy_granting_ticket.rb +12 -0
  11. data/apps/cas_server/models/proxy_ticket.rb +12 -0
  12. data/apps/cas_server/models/service_ticket.rb +22 -0
  13. data/apps/cas_server/models/ticket.rb +20 -0
  14. data/apps/cas_server/models/ticket_granting_ticket.rb +15 -0
  15. data/apps/cas_server/views/logout.shtml +3 -0
  16. data/apps/core/admin/_init.rb +23 -0
  17. data/apps/core/admin/admin.rb +17 -0
  18. data/apps/core/admin/controllers/admin_controller.rb +15 -0
  19. data/apps/core/admin/views/index.shtml +1 -0
  20. data/apps/core/admin/views/spider_admin.layout.shtml +23 -0
  21. data/apps/core/admin/widgets/admin_menu/admin_menu.rb +17 -0
  22. data/apps/core/auth/_init.rb +42 -0
  23. data/apps/core/auth/controllers/login_controller.rb +94 -0
  24. data/apps/core/auth/controllers/mixins/auth_helper.rb +114 -0
  25. data/apps/core/auth/controllers/mixins/http_basic_auth.rb +24 -0
  26. data/apps/core/auth/controllers/mixins/http_digest_auth.rb +26 -0
  27. data/apps/core/auth/lib/authenticable.rb +86 -0
  28. data/apps/core/auth/lib/authenticator.rb +11 -0
  29. data/apps/core/auth/lib/digest_authenticator.rb +44 -0
  30. data/apps/core/auth/lib/login_authenticator.rb +27 -0
  31. data/apps/core/auth/models/digest_user.rb +34 -0
  32. data/apps/core/auth/models/group.rb +22 -0
  33. data/apps/core/auth/models/login_user.rb +15 -0
  34. data/apps/core/auth/models/mixins/access_control.rb +71 -0
  35. data/apps/core/auth/models/mixins/authentication_tracking.rb +19 -0
  36. data/apps/core/auth/models/super_user.rb +8 -0
  37. data/apps/core/auth/models/user.rb +15 -0
  38. data/apps/core/auth/po/it/spider_auth.po +33 -0
  39. data/apps/core/auth/po/spider_auth.pot +31 -0
  40. data/apps/core/auth/views/login.shtml +25 -0
  41. data/apps/core/components/_init.rb +21 -0
  42. data/apps/core/components/po/it/spider_components.po +52 -0
  43. data/apps/core/components/po/spider_components.pot +53 -0
  44. data/apps/core/components/public/css/admin.css +73 -0
  45. data/apps/core/components/public/css/crud.css +58 -0
  46. data/apps/core/components/public/css/img/add.gif +0 -0
  47. data/apps/core/components/public/css/img/ajax-loader.gif +0 -0
  48. data/apps/core/components/public/css/img/back.gif +0 -0
  49. data/apps/core/components/public/css/img/bg_header.png +0 -0
  50. data/apps/core/components/public/css/img/body_bg.jpg +0 -0
  51. data/apps/core/components/public/css/img/gray_gradient.gif +0 -0
  52. data/apps/core/components/public/css/img/li_bg.png +0 -0
  53. data/apps/core/components/public/css/img/li_bg_active.png +0 -0
  54. data/apps/core/components/public/css/img/li_bg_hover.png +0 -0
  55. data/apps/core/components/public/css/img/logo.png +0 -0
  56. data/apps/core/components/public/css/img/menu_bg.png +0 -0
  57. data/apps/core/components/public/css/img/menu_bottom.png +0 -0
  58. data/apps/core/components/public/css/img/menu_top.png +0 -0
  59. data/apps/core/components/public/css/img/section-bottom.jpg +0 -0
  60. data/apps/core/components/public/css/list.css +7 -0
  61. data/apps/core/components/public/css/menu.css +47 -0
  62. data/apps/core/components/public/css/spider.css +9 -0
  63. data/apps/core/components/public/css/switcher.css +13 -0
  64. data/apps/core/components/public/css/table.css +99 -0
  65. data/apps/core/components/public/js/inheritance.js +71 -0
  66. data/apps/core/components/public/js/jquery/jquery-1.3.2.js +4376 -0
  67. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  68. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  69. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  70. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  71. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  72. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  73. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  74. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  75. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png +0 -0
  76. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
  77. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png +0 -0
  78. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png +0 -0
  79. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
  80. data/apps/core/components/public/js/jquery/jquery-ui/css/smoothness/jquery-ui-1.7.2.custom.css +406 -0
  81. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  82. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  83. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  84. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  85. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  86. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  87. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  88. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  89. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  90. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  91. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  92. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  93. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  94. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  95. data/apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/jquery-ui-1.7.2.custom.css +406 -0
  96. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/AUTHORS.txt +30 -0
  97. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/GPL-LICENSE.txt +278 -0
  98. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/MIT-LICENSE.txt +25 -0
  99. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/ChangeLog.txt +20 -0
  100. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/META.json +32 -0
  101. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.js +100 -0
  102. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.min.js +10 -0
  103. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.pack.js +10 -0
  104. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/test/index.html +197 -0
  105. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.js +97 -0
  106. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.min.js +10 -0
  107. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.pack.js +10 -0
  108. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.zip +0 -0
  109. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/jsdiff/jsdiff.js +159 -0
  110. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/qunit/testrunner.js +780 -0
  111. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/qunit/testsuite.css +120 -0
  112. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/simulate/jquery.simulate.js +152 -0
  113. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/jquery-1.3.2.js +4376 -0
  114. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  115. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
  116. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
  117. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  118. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png +0 -0
  119. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
  120. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
  121. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
  122. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png +0 -0
  123. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png +0 -0
  124. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png +0 -0
  125. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png +0 -0
  126. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png +0 -0
  127. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.accordion.css +9 -0
  128. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.all.css +2 -0
  129. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.base.css +8 -0
  130. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.core.css +37 -0
  131. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.datepicker.css +62 -0
  132. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.dialog.css +13 -0
  133. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.progressbar.css +4 -0
  134. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.resizable.css +13 -0
  135. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.slider.css +17 -0
  136. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.tabs.css +11 -0
  137. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.theme.css +245 -0
  138. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  139. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  140. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  141. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  142. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  143. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  144. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  145. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  146. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  147. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  148. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  149. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  150. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  151. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  152. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/jquery-ui-1.7.2.custom.css +406 -0
  153. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.accordion.css +9 -0
  154. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.all.css +2 -0
  155. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.base.css +8 -0
  156. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.core.css +37 -0
  157. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.datepicker.css +62 -0
  158. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.dialog.css +13 -0
  159. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.progressbar.css +4 -0
  160. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.resizable.css +13 -0
  161. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.slider.css +17 -0
  162. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.tabs.css +11 -0
  163. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.theme.css +247 -0
  164. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.blind.js +49 -0
  165. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.bounce.js +78 -0
  166. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.clip.js +54 -0
  167. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.core.js +545 -0
  168. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.drop.js +50 -0
  169. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.explode.js +79 -0
  170. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.fold.js +56 -0
  171. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js +48 -0
  172. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.pulsate.js +56 -0
  173. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.scale.js +180 -0
  174. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.shake.js +57 -0
  175. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.slide.js +50 -0
  176. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.transfer.js +45 -0
  177. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js +771 -0
  178. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ar.js +20 -0
  179. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-bg.js +20 -0
  180. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ca.js +19 -0
  181. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-cs.js +19 -0
  182. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-da.js +19 -0
  183. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-de.js +19 -0
  184. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-el.js +19 -0
  185. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-eo.js +19 -0
  186. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-es.js +19 -0
  187. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fa.js +19 -0
  188. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fi.js +19 -0
  189. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fr.js +19 -0
  190. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-he.js +19 -0
  191. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hr.js +19 -0
  192. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hu.js +19 -0
  193. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hy.js +19 -0
  194. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-id.js +19 -0
  195. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-is.js +19 -0
  196. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-it.js +19 -0
  197. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ja.js +20 -0
  198. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ko.js +19 -0
  199. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-lt.js +19 -0
  200. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-lv.js +19 -0
  201. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ms.js +19 -0
  202. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-nl.js +19 -0
  203. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-no.js +19 -0
  204. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-pl.js +19 -0
  205. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-pt-BR.js +19 -0
  206. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ro.js +22 -0
  207. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ru.js +19 -0
  208. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sk.js +19 -0
  209. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sl.js +20 -0
  210. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sq.js +19 -0
  211. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sr-SR.js +19 -0
  212. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sr.js +19 -0
  213. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sv.js +19 -0
  214. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-th.js +19 -0
  215. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-tr.js +19 -0
  216. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-uk.js +25 -0
  217. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-zh-CN.js +19 -0
  218. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-zh-TW.js +19 -0
  219. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/jquery-ui-1.7.2.custom.js +9133 -0
  220. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.accordion.js +477 -0
  221. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.core.js +519 -0
  222. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.datepicker.js +1636 -0
  223. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.dialog.js +671 -0
  224. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.draggable.js +766 -0
  225. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.droppable.js +282 -0
  226. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.progressbar.js +116 -0
  227. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.resizable.js +800 -0
  228. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.selectable.js +257 -0
  229. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.slider.js +558 -0
  230. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.sortable.js +1019 -0
  231. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.tabs.js +685 -0
  232. data/apps/core/components/public/js/jquery/jquery-ui/development-bundle/version.txt +1 -0
  233. data/apps/core/components/public/js/jquery/jquery-ui/index.html +367 -0
  234. data/apps/core/components/public/js/jquery/jquery-ui/js/jquery-1.3.2.min.js +19 -0
  235. data/apps/core/components/public/js/jquery/jquery-ui/js/jquery-ui-1.7.2.custom.min.js +298 -0
  236. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/changelog.txt +27 -0
  237. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.css +48 -0
  238. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.js +808 -0
  239. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.min.js +13 -0
  240. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.pack.js +12 -0
  241. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.ajaxQueue.js +116 -0
  242. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.bgiframe.min.js +10 -0
  243. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.js +3558 -0
  244. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/thickbox-compressed.js +10 -0
  245. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/thickbox.css +163 -0
  246. data/apps/core/components/public/js/jquery/plugins/jquery-autocomplete/todo +166 -0
  247. data/apps/core/components/public/js/jquery/plugins/jquery.form.js +653 -0
  248. data/apps/core/components/public/js/jquery/plugins/jquery.query-2.1.6.js +224 -0
  249. data/apps/core/components/public/js/jquery/plugins/jquery.url.js +214 -0
  250. data/apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.1.0.js +187 -0
  251. data/apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.1.0.min.js +1 -0
  252. data/apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.spider.1.0.js +193 -0
  253. data/apps/core/components/public/js/jquery/plugins/treeview/changelog.txt +35 -0
  254. data/apps/core/components/public/js/jquery/plugins/treeview/images/ajax-loader.gif +0 -0
  255. data/apps/core/components/public/js/jquery/plugins/treeview/images/file.gif +0 -0
  256. data/apps/core/components/public/js/jquery/plugins/treeview/images/folder-closed.gif +0 -0
  257. data/apps/core/components/public/js/jquery/plugins/treeview/images/folder.gif +0 -0
  258. data/apps/core/components/public/js/jquery/plugins/treeview/images/minus.gif +0 -0
  259. data/apps/core/components/public/js/jquery/plugins/treeview/images/plus.gif +0 -0
  260. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-black-line.gif +0 -0
  261. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-black.gif +0 -0
  262. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-default-line.gif +0 -0
  263. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-default.gif +0 -0
  264. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-famfamfam-line.gif +0 -0
  265. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-famfamfam.gif +0 -0
  266. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-gray-line.gif +0 -0
  267. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-gray.gif +0 -0
  268. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-red-line.gif +0 -0
  269. data/apps/core/components/public/js/jquery/plugins/treeview/images/treeview-red.gif +0 -0
  270. data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.async.js +110 -0
  271. data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.css +74 -0
  272. data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.edit.js +37 -0
  273. data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.js +256 -0
  274. data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.min.js +15 -0
  275. data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.pack.js +16 -0
  276. data/apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.sortable.js +386 -0
  277. data/apps/core/components/public/js/jquery/plugins/treeview/lib/jquery.cookie.js +92 -0
  278. data/apps/core/components/public/js/jquery/plugins/treeview/lib/jquery.js +3534 -0
  279. data/apps/core/components/public/js/jquery/plugins/treeview/todo +8 -0
  280. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/LICENSE +0 -0
  281. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/README +0 -0
  282. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.css +34 -0
  283. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.js +1413 -0
  284. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.min.js +10 -0
  285. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/222222_256x240_icons_icons.png +0 -0
  286. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/2e83ff_256x240_icons_icons.png +0 -0
  287. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/454545_256x240_icons_icons.png +0 -0
  288. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/888888_256x240_icons_icons.png +0 -0
  289. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/aaaaaa_40x100_textures_01_flat_0.png +0 -0
  290. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/cccccc_40x100_textures_03_highlight_soft_75.png +0 -0
  291. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/cd0a0a_256x240_icons_icons.png +0 -0
  292. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/dadada_40x100_textures_02_glass_75.png +0 -0
  293. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/e6e6e6_40x100_textures_02_glass_75.png +0 -0
  294. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/fbf9ee_40x100_textures_02_glass_55.png +0 -0
  295. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/fef1ec_40x100_textures_05_inset_soft_95.png +0 -0
  296. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/ffffff_40x100_textures_02_glass_65.png +0 -0
  297. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/ffffff_40x100_textures_02_glass_75.png +0 -0
  298. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.accordion.css +9 -0
  299. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.all.css +4 -0
  300. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.allplugins.css +7 -0
  301. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.core.css +37 -0
  302. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.datepicker.css +60 -0
  303. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.dialog.css +13 -0
  304. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.progressbar.css +4 -0
  305. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.resizable.css +13 -0
  306. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.slider.css +13 -0
  307. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.tabs.css +9 -0
  308. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.theme.css +238 -0
  309. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.timepickr.css +44 -0
  310. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/ui.timepickr.js +2307 -0
  311. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/ui.timepickr.min.js +10 -0
  312. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/body-bg.png +0 -0
  313. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/btn-hover.png +0 -0
  314. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/btn.png +0 -0
  315. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/buttons.psd +0 -0
  316. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/index.html +326 -0
  317. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.anchorHandler.js +44 -0
  318. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.strings.js +290 -0
  319. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.ui.all.js +518 -0
  320. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.utils.js +255 -0
  321. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.utils.ui.min.js +26 -0
  322. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo-ff.png +0 -0
  323. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo-ie.png +0 -0
  324. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo.png +0 -0
  325. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo.psd +0 -0
  326. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/package.png +0 -0
  327. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/reset.css +48 -0
  328. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/script_code.png +0 -0
  329. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/styles.css +308 -0
  330. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/themeroller_ready_black_200px.gif +0 -0
  331. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/page/weather_sun.png +0 -0
  332. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/css/ui.dropslide.css +26 -0
  333. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/css/ui.timepickr.css +18 -0
  334. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/ui.dropslide.js +132 -0
  335. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/src/ui.timepickr.js +217 -0
  336. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/data/testrunner.js +1 -0
  337. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/index.html +34 -0
  338. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/otherlibs/jquery/1.2.1/jquery.js +11 -0
  339. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/otherlibs/jquery/1.2.3/jquery.js +11 -0
  340. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/qunit/testrunner.js +780 -0
  341. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/qunit/testsuite.css +120 -0
  342. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/styles.css +201 -0
  343. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/test.js +41 -0
  344. data/apps/core/components/public/js/jquery/plugins/ui-timepickr/test/unit/ui.timepickr.js +154 -0
  345. data/apps/core/components/public/js/list.js +234 -0
  346. data/apps/core/components/public/js/spider.js +484 -0
  347. data/apps/core/components/public/widgets/search_table.js +10 -0
  348. data/apps/core/components/public/widgets/table.js +9 -0
  349. data/apps/core/components/widgets/admin/admin.rb +75 -0
  350. data/apps/core/components/widgets/admin/admin.shtml +16 -0
  351. data/apps/core/components/widgets/confirm/confirm.rb +37 -0
  352. data/apps/core/components/widgets/confirm/confirm.shtml +9 -0
  353. data/apps/core/components/widgets/crud/crud.rb +119 -0
  354. data/apps/core/components/widgets/crud/crud.shtml +59 -0
  355. data/apps/core/components/widgets/crud/form_table/form_table.rb +13 -0
  356. data/apps/core/components/widgets/crud/form_table/form_table.shtml +3 -0
  357. data/apps/core/components/widgets/list/list.rb +294 -0
  358. data/apps/core/components/widgets/list/list.shtml +38 -0
  359. data/apps/core/components/widgets/list/plugins/exportable/exportable_list.rb +19 -0
  360. data/apps/core/components/widgets/list/plugins/exportable/exportable_list.shtml +5 -0
  361. data/apps/core/components/widgets/menu/menu.rb +20 -0
  362. data/apps/core/components/widgets/menu/menu.shtml +13 -0
  363. data/apps/core/components/widgets/search_table/search_table.rb +22 -0
  364. data/apps/core/components/widgets/search_table/search_table.shtml +11 -0
  365. data/apps/core/components/widgets/switcher/switcher.rb +68 -0
  366. data/apps/core/components/widgets/switcher/switcher.shtml +17 -0
  367. data/apps/core/components/widgets/table/table.rb +153 -0
  368. data/apps/core/components/widgets/table/table.shtml +41 -0
  369. data/apps/core/components/widgets/tabs/tabs.rb +38 -0
  370. data/apps/core/components/widgets/tabs/tabs.shtml +2 -0
  371. data/apps/core/forms/_init.rb +22 -0
  372. data/apps/core/forms/po/it/spider_forms.po +36 -0
  373. data/apps/core/forms/po/spider_forms.pot +37 -0
  374. data/apps/core/forms/public/date_time.js +23 -0
  375. data/apps/core/forms/public/form.css +81 -0
  376. data/apps/core/forms/public/form.js +19 -0
  377. data/apps/core/forms/public/input.js +30 -0
  378. data/apps/core/forms/public/search_select.js +123 -0
  379. data/apps/core/forms/public/select.js +11 -0
  380. data/apps/core/forms/tags/element_label.erb +1 -0
  381. data/apps/core/forms/tags/element_row.erb +4 -0
  382. data/apps/core/forms/tags/row.erb +4 -0
  383. data/apps/core/forms/widgets/form/form.rb +430 -0
  384. data/apps/core/forms/widgets/form/form.shtml +47 -0
  385. data/apps/core/forms/widgets/inputs/checkbox/checkbox.rb +13 -0
  386. data/apps/core/forms/widgets/inputs/checkbox/checkbox.shtml +3 -0
  387. data/apps/core/forms/widgets/inputs/date_time/date_time.rb +48 -0
  388. data/apps/core/forms/widgets/inputs/date_time/date_time.shtml +4 -0
  389. data/apps/core/forms/widgets/inputs/hidden/hidden.rb +8 -0
  390. data/apps/core/forms/widgets/inputs/hidden/hidden.shtml +3 -0
  391. data/apps/core/forms/widgets/inputs/input/input.rb +105 -0
  392. data/apps/core/forms/widgets/inputs/input/input.shtml +3 -0
  393. data/apps/core/forms/widgets/inputs/input/readonly.shtml +6 -0
  394. data/apps/core/forms/widgets/inputs/password/password.rb +24 -0
  395. data/apps/core/forms/widgets/inputs/password/password.shtml +5 -0
  396. data/apps/core/forms/widgets/inputs/search_select/search_select.rb +168 -0
  397. data/apps/core/forms/widgets/inputs/search_select/search_select.shtml +42 -0
  398. data/apps/core/forms/widgets/inputs/select/select.rb +126 -0
  399. data/apps/core/forms/widgets/inputs/select/select.shtml +8 -0
  400. data/apps/core/forms/widgets/inputs/subform/subform.rb +10 -0
  401. data/apps/core/forms/widgets/inputs/subform/subform.shtml +5 -0
  402. data/apps/core/forms/widgets/inputs/text/text.rb +9 -0
  403. data/apps/core/forms/widgets/inputs/text/text.shtml +3 -0
  404. data/apps/core/forms/widgets/inputs/text_area/text_area.rb +10 -0
  405. data/apps/core/forms/widgets/inputs/text_area/text_area.shtml +1 -0
  406. data/apps/drb_server/_init.rb +8 -0
  407. data/apps/drb_server/lib/model_server.rb +41 -0
  408. data/apps/drb_server/script/start_server.rb +19 -0
  409. data/apps/hippo/_init.rb +10 -0
  410. data/apps/hippo/models/mixins/hippo_struct.rb +210 -0
  411. data/apps/hippo/models/security_group.rb +21 -0
  412. data/apps/hippo/models/security_user.rb +29 -0
  413. data/apps/messenger/_init.rb +24 -0
  414. data/apps/messenger/config/options.rb +15 -0
  415. data/apps/messenger/config/worker.rb +3 -0
  416. data/apps/messenger/controllers/messenger_controller.rb +80 -0
  417. data/apps/messenger/controllers/mixins/messenger_controller_mixin.rb +54 -0
  418. data/apps/messenger/lib/backends/email/smtp.rb +0 -0
  419. data/apps/messenger/messenger.rb +94 -0
  420. data/apps/messenger/models/email.rb +22 -0
  421. data/apps/messenger/models/message.rb +44 -0
  422. data/apps/messenger/po/it/spider_messenger.po +77 -0
  423. data/apps/messenger/po/spider_messenger.pot +77 -0
  424. data/apps/messenger/views/index.shtml +13 -0
  425. data/apps/messenger/views/list.shtml +5 -0
  426. data/apps/messenger/views/messenger.layout.shtml +4 -0
  427. data/apps/messenger/views/queue.shtml +8 -0
  428. data/apps/messenger/views/tags/sent_messages.shtml +1 -0
  429. data/apps/soap/_init.rb +16 -0
  430. data/apps/soap/controllers/soap_controller.rb +334 -0
  431. data/apps/soap/doc/examples/example.rb +28 -0
  432. data/apps/soap/lib/soap.rb +217 -0
  433. data/apps/sso/_init.rb +16 -0
  434. data/apps/sso/config/options.rb +13 -0
  435. data/apps/sso/controllers/mixins/saml2_mixin.rb +149 -0
  436. data/apps/sso/lib/saml2/backend.rb +16 -0
  437. data/apps/sso/lib/saml2/lasso_backend.rb +88 -0
  438. data/apps/sso/lib/saml2.rb +112 -0
  439. data/apps/sso/views/saml2_post.shtml +19 -0
  440. data/apps/webdav/_init.rb +15 -0
  441. data/apps/webdav/controllers/webdav_controller.rb +862 -0
  442. data/apps/webdav/lib/locking.rb +193 -0
  443. data/apps/webdav/lib/vfs/abstract.rb +78 -0
  444. data/apps/webdav/lib/vfs/local.rb +126 -0
  445. data/apps/webdav/lib/vfs/mapped.rb +235 -0
  446. data/apps/webdav/lib/vfs/properties.rb +41 -0
  447. data/apps/worker/_init.rb +13 -0
  448. data/apps/worker/cmd.rb +65 -0
  449. data/apps/worker/config/options.rb +9 -0
  450. data/apps/worker/lib/runner.rb +43 -0
  451. data/apps/worker/lib/task.rb +9 -0
  452. data/apps/worker/models/job.rb +20 -0
  453. data/apps/worker/worker.rb +168 -0
  454. data/bin/spider +9 -0
  455. data/blueprints/app/_init.rb +10 -0
  456. data/blueprints/app/controllers/__APP___controller.rb +14 -0
  457. data/blueprints/app/views/__APP__.layout.shtml +8 -0
  458. data/blueprints/app/views/index.shtml +3 -0
  459. data/blueprints/install/config/config.yml +14 -0
  460. data/blueprints/install/init.rb +3 -0
  461. data/data/locale/it/LC_MESSAGES/spider.mo +0 -0
  462. data/data/locale/it/LC_MESSAGES/spider_auth.mo +0 -0
  463. data/data/locale/it/LC_MESSAGES/spider_components.mo +0 -0
  464. data/data/locale/it/LC_MESSAGES/spider_forms.mo +0 -0
  465. data/data/locale/it/LC_MESSAGES/spider_messenger.mo +0 -0
  466. data/lib/spiderfw/app.rb +186 -0
  467. data/lib/spiderfw/autoload.rb +12 -0
  468. data/lib/spiderfw/cache/template_cache.rb +136 -0
  469. data/lib/spiderfw/cmd/cmd.rb +72 -0
  470. data/lib/spiderfw/cmd/commands/cert.rb +427 -0
  471. data/lib/spiderfw/cmd/commands/console.rb +27 -0
  472. data/lib/spiderfw/cmd/commands/init.rb +52 -0
  473. data/lib/spiderfw/cmd/commands/model.rb +131 -0
  474. data/lib/spiderfw/cmd/commands/setup.rb +54 -0
  475. data/lib/spiderfw/cmd/commands/test.rb +61 -0
  476. data/lib/spiderfw/cmd/commands/webserver.rb +93 -0
  477. data/lib/spiderfw/config/configurable.rb +38 -0
  478. data/lib/spiderfw/config/configuration.rb +281 -0
  479. data/lib/spiderfw/config/options/spider.rb +122 -0
  480. data/lib/spiderfw/controller/app_controller.rb +14 -0
  481. data/lib/spiderfw/controller/controller.rb +321 -0
  482. data/lib/spiderfw/controller/controller_exceptions.rb +27 -0
  483. data/lib/spiderfw/controller/controller_io.rb +26 -0
  484. data/lib/spiderfw/controller/controller_mixin.rb +12 -0
  485. data/lib/spiderfw/controller/cookie.rb +20 -0
  486. data/lib/spiderfw/controller/cookies.rb +17 -0
  487. data/lib/spiderfw/controller/dispatcher.rb +269 -0
  488. data/lib/spiderfw/controller/first_responder.rb +59 -0
  489. data/lib/spiderfw/controller/formats/html.rb +90 -0
  490. data/lib/spiderfw/controller/helpers/widget_helper.rb +73 -0
  491. data/lib/spiderfw/controller/home_controller.rb +26 -0
  492. data/lib/spiderfw/controller/http_controller.rb +112 -0
  493. data/lib/spiderfw/controller/mixins/http_mixin.rb +228 -0
  494. data/lib/spiderfw/controller/mixins/static_content.rb +90 -0
  495. data/lib/spiderfw/controller/mixins/visual.rb +489 -0
  496. data/lib/spiderfw/controller/page_controller.rb +39 -0
  497. data/lib/spiderfw/controller/request.rb +48 -0
  498. data/lib/spiderfw/controller/response.rb +50 -0
  499. data/lib/spiderfw/controller/router.rb +9 -0
  500. data/lib/spiderfw/controller/scene.rb +27 -0
  501. data/lib/spiderfw/controller/session/file_session.rb +83 -0
  502. data/lib/spiderfw/controller/session/flash_hash.rb +56 -0
  503. data/lib/spiderfw/controller/session/memory_session.rb +62 -0
  504. data/lib/spiderfw/controller/session/transient_hash.rb +18 -0
  505. data/lib/spiderfw/controller/session.rb +106 -0
  506. data/lib/spiderfw/controller/spider_controller.rb +20 -0
  507. data/lib/spiderfw/create.rb +64 -0
  508. data/lib/spiderfw/env.rb +17 -0
  509. data/lib/spiderfw/exceptions.rb +2 -0
  510. data/lib/spiderfw/home.rb +26 -0
  511. data/lib/spiderfw/http/adapters/cgi.rb +62 -0
  512. data/lib/spiderfw/http/adapters/cgi_io.rb +27 -0
  513. data/lib/spiderfw/http/adapters/fcgi.rb +62 -0
  514. data/lib/spiderfw/http/adapters/mongrel.rb +207 -0
  515. data/lib/spiderfw/http/adapters/rack.rb +152 -0
  516. data/lib/spiderfw/http/adapters/thin.rb +38 -0
  517. data/lib/spiderfw/http/adapters/webrick.rb +176 -0
  518. data/lib/spiderfw/http/http.rb +297 -0
  519. data/lib/spiderfw/http/server.rb +40 -0
  520. data/lib/spiderfw/i18n/cldr.rb +114 -0
  521. data/lib/spiderfw/i18n/gettext.rb +8 -0
  522. data/lib/spiderfw/i18n/i18n.rb +120 -0
  523. data/lib/spiderfw/i18n/provider.rb +12 -0
  524. data/lib/spiderfw/i18n/rails.rb +89 -0
  525. data/lib/spiderfw/i18n/shtml_parser.rb +41 -0
  526. data/lib/spiderfw/model/active_record.rb +335 -0
  527. data/lib/spiderfw/model/base_model.rb +2068 -0
  528. data/lib/spiderfw/model/condition.rb +416 -0
  529. data/lib/spiderfw/model/data_type.rb +75 -0
  530. data/lib/spiderfw/model/datatypes/binary.rb +10 -0
  531. data/lib/spiderfw/model/datatypes/bool.rb +10 -0
  532. data/lib/spiderfw/model/datatypes/decimal.rb +22 -0
  533. data/lib/spiderfw/model/datatypes/email.rb +13 -0
  534. data/lib/spiderfw/model/datatypes/password.rb +63 -0
  535. data/lib/spiderfw/model/datatypes/serialized_object.rb +32 -0
  536. data/lib/spiderfw/model/datatypes/text.rb +10 -0
  537. data/lib/spiderfw/model/datatypes/uuid.rb +29 -0
  538. data/lib/spiderfw/model/datatypes.rb +19 -0
  539. data/lib/spiderfw/model/element.rb +250 -0
  540. data/lib/spiderfw/model/extended_models/managed.rb +43 -0
  541. data/lib/spiderfw/model/identity_mapper.rb +89 -0
  542. data/lib/spiderfw/model/inline_model.rb +37 -0
  543. data/lib/spiderfw/model/mappers/db_mapper.rb +1126 -0
  544. data/lib/spiderfw/model/mappers/hash_mapper.rb +114 -0
  545. data/lib/spiderfw/model/mappers/mapper.rb +926 -0
  546. data/lib/spiderfw/model/mappers/mappers.rb +7 -0
  547. data/lib/spiderfw/model/mappers/proxy_mapper.rb +25 -0
  548. data/lib/spiderfw/model/mappers/vfs/flat_file.rb +31 -0
  549. data/lib/spiderfw/model/mixins/converted.rb +110 -0
  550. data/lib/spiderfw/model/mixins/list.rb +135 -0
  551. data/lib/spiderfw/model/mixins/mixins.rb +7 -0
  552. data/lib/spiderfw/model/mixins/state_machine.rb +81 -0
  553. data/lib/spiderfw/model/mixins/synchronized.rb +88 -0
  554. data/lib/spiderfw/model/mixins/tree.rb +296 -0
  555. data/lib/spiderfw/model/mixins/versioned.rb +147 -0
  556. data/lib/spiderfw/model/model.rb +226 -0
  557. data/lib/spiderfw/model/model_hash.rb +50 -0
  558. data/lib/spiderfw/model/proxy_model.rb +37 -0
  559. data/lib/spiderfw/model/query.rb +147 -0
  560. data/lib/spiderfw/model/query_funcs.rb +99 -0
  561. data/lib/spiderfw/model/query_set.rb +700 -0
  562. data/lib/spiderfw/model/request.rb +80 -0
  563. data/lib/spiderfw/model/storage/base_storage.rb +110 -0
  564. data/lib/spiderfw/model/storage/db/adapters/mssql.rb +129 -0
  565. data/lib/spiderfw/model/storage/db/adapters/mysql.rb +436 -0
  566. data/lib/spiderfw/model/storage/db/adapters/oci8.rb +533 -0
  567. data/lib/spiderfw/model/storage/db/adapters/sqlite.rb +163 -0
  568. data/lib/spiderfw/model/storage/db/connectors/odbc.rb +213 -0
  569. data/lib/spiderfw/model/storage/db/db.rb +13 -0
  570. data/lib/spiderfw/model/storage/db/db_connection_pool.rb +126 -0
  571. data/lib/spiderfw/model/storage/db/db_connector.rb +9 -0
  572. data/lib/spiderfw/model/storage/db/db_schema.rb +233 -0
  573. data/lib/spiderfw/model/storage/db/db_storage.rb +872 -0
  574. data/lib/spiderfw/model/storage/db/dialects/no_total_rows.rb +18 -0
  575. data/lib/spiderfw/model/storage/db/reflector.rb +36 -0
  576. data/lib/spiderfw/model/storage/null_storage.rb +18 -0
  577. data/lib/spiderfw/model/storage/schema.rb +19 -0
  578. data/lib/spiderfw/model/storage.rb +72 -0
  579. data/lib/spiderfw/model/sync.rb +94 -0
  580. data/lib/spiderfw/model/type.rb +13 -0
  581. data/lib/spiderfw/model/unit_of_work.rb +75 -0
  582. data/lib/spiderfw/requires.rb +21 -0
  583. data/lib/spiderfw/resource.rb +18 -0
  584. data/lib/spiderfw/setup/setup_task.rb +44 -0
  585. data/lib/spiderfw/tag/tag.rb +28 -0
  586. data/lib/spiderfw/templates/blocks/attr_if.rb +32 -0
  587. data/lib/spiderfw/templates/blocks/comment.rb +38 -0
  588. data/lib/spiderfw/templates/blocks/debugger.rb +16 -0
  589. data/lib/spiderfw/templates/blocks/each.rb +51 -0
  590. data/lib/spiderfw/templates/blocks/html.rb +70 -0
  591. data/lib/spiderfw/templates/blocks/if.rb +35 -0
  592. data/lib/spiderfw/templates/blocks/pass.rb +16 -0
  593. data/lib/spiderfw/templates/blocks/render.rb +23 -0
  594. data/lib/spiderfw/templates/blocks/run.rb +30 -0
  595. data/lib/spiderfw/templates/blocks/tag.rb +21 -0
  596. data/lib/spiderfw/templates/blocks/tag_if.rb +29 -0
  597. data/lib/spiderfw/templates/blocks/text.rb +43 -0
  598. data/lib/spiderfw/templates/blocks/widget.rb +58 -0
  599. data/lib/spiderfw/templates/blocks/yield.rb +18 -0
  600. data/lib/spiderfw/templates/layout.rb +44 -0
  601. data/lib/spiderfw/templates/resources/less.rb +14 -0
  602. data/lib/spiderfw/templates/template.rb +625 -0
  603. data/lib/spiderfw/templates/template_blocks.rb +185 -0
  604. data/lib/spiderfw/utils/annotations.rb +201 -0
  605. data/lib/spiderfw/utils/fork.rb +75 -0
  606. data/lib/spiderfw/utils/hash_comparison.rb +8 -0
  607. data/lib/spiderfw/utils/inflector.rb +42 -0
  608. data/lib/spiderfw/utils/logger.rb +92 -0
  609. data/lib/spiderfw/utils/monkey/class.rb +59 -0
  610. data/lib/spiderfw/utils/monkey/date_time.rb +34 -0
  611. data/lib/spiderfw/utils/monkey/debugger.rb +25 -0
  612. data/lib/spiderfw/utils/monkey/exception.rb +23 -0
  613. data/lib/spiderfw/utils/monkey/kernel.rb +12 -0
  614. data/lib/spiderfw/utils/monkey/module.rb +12 -0
  615. data/lib/spiderfw/utils/monkey/symbol.rb +7 -0
  616. data/lib/spiderfw/utils/monkey/time.rb +17 -0
  617. data/lib/spiderfw/utils/multi_level_hash.rb +33 -0
  618. data/lib/spiderfw/utils/periodic_runner.rb +50 -0
  619. data/lib/spiderfw/utils/rails.rb +78 -0
  620. data/lib/spiderfw/utils/rails_app.rb +53 -0
  621. data/lib/spiderfw/utils/sanitizer.rb +178 -0
  622. data/lib/spiderfw/utils/setup_task.rb +35 -0
  623. data/lib/spiderfw/utils/shared_store/file_shared_store.rb +73 -0
  624. data/lib/spiderfw/utils/shared_store/memory_shared_store.rb +46 -0
  625. data/lib/spiderfw/utils/shared_store.rb +47 -0
  626. data/lib/spiderfw/utils/test_case.rb +24 -0
  627. data/lib/spiderfw/utils/thread_out.rb +24 -0
  628. data/lib/spiderfw/version.rb +3 -0
  629. data/lib/spiderfw/widget/rest_model.rb +20 -0
  630. data/lib/spiderfw/widget/widget.rb +671 -0
  631. data/lib/spiderfw/widget/widget_attributes.rb +54 -0
  632. data/lib/spiderfw/widget/widget_plugin.rb +37 -0
  633. data/lib/spiderfw.rb +509 -0
  634. data/spider.gemspec +43 -0
  635. data/views/errors/404.shtml +6 -0
  636. data/views/errors/error.layout.shtml +70 -0
  637. data/views/errors/error_generic.shtml +6 -0
  638. metadata +800 -0
metadata ADDED
@@ -0,0 +1,800 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: spiderfw
3
+ version: !ruby/object:Gem::Version
4
+ version: "0.5"
5
+ platform: ruby
6
+ authors:
7
+ - Ivan Pirlik
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2010-02-18 00:00:00 +01:00
13
+ default_executable: spider
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: cmdparse
17
+ type: :runtime
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">"
22
+ - !ruby/object:Gem::Version
23
+ version: 2.0.0
24
+ version:
25
+ - !ruby/object:Gem::Dependency
26
+ name: gettext
27
+ type: :runtime
28
+ version_requirement:
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">"
32
+ - !ruby/object:Gem::Version
33
+ version: 2.0.0
34
+ version:
35
+ - !ruby/object:Gem::Dependency
36
+ name: hpricot
37
+ type: :runtime
38
+ version_requirement:
39
+ version_requirements: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">"
42
+ - !ruby/object:Gem::Version
43
+ version: "0.8"
44
+ version:
45
+ - !ruby/object:Gem::Dependency
46
+ name: json
47
+ type: :runtime
48
+ version_requirement:
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">"
52
+ - !ruby/object:Gem::Version
53
+ version: "1.1"
54
+ version:
55
+ - !ruby/object:Gem::Dependency
56
+ name: uuid
57
+ type: :runtime
58
+ version_requirement:
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">"
62
+ - !ruby/object:Gem::Version
63
+ version: "2.0"
64
+ version:
65
+ - !ruby/object:Gem::Dependency
66
+ name: rufus-scheduler
67
+ type: :runtime
68
+ version_requirement:
69
+ version_requirements: !ruby/object:Gem::Requirement
70
+ requirements:
71
+ - - ">"
72
+ - !ruby/object:Gem::Version
73
+ version: "1.0"
74
+ version:
75
+ - !ruby/object:Gem::Dependency
76
+ name: mime-types
77
+ type: :runtime
78
+ version_requirement:
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">"
82
+ - !ruby/object:Gem::Version
83
+ version: "1.0"
84
+ version:
85
+ - !ruby/object:Gem::Dependency
86
+ name: locale
87
+ type: :runtime
88
+ version_requirement:
89
+ version_requirements: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">"
92
+ - !ruby/object:Gem::Version
93
+ version: "2.0"
94
+ version:
95
+ - !ruby/object:Gem::Dependency
96
+ name: builder
97
+ type: :runtime
98
+ version_requirement:
99
+ version_requirements: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">"
102
+ - !ruby/object:Gem::Version
103
+ version: "2.1"
104
+ version:
105
+ - !ruby/object:Gem::Dependency
106
+ name: rake
107
+ type: :development
108
+ version_requirement:
109
+ version_requirements: !ruby/object:Gem::Requirement
110
+ requirements:
111
+ - - ">"
112
+ - !ruby/object:Gem::Version
113
+ version: 0.7.3
114
+ version:
115
+ - !ruby/object:Gem::Dependency
116
+ name: ruby-debug
117
+ type: :development
118
+ version_requirement:
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - ">"
122
+ - !ruby/object:Gem::Version
123
+ version: 0.9.3
124
+ version:
125
+ description: Spider is yet another Ruby framework.
126
+ email: abmajor7@gmail.com
127
+ executables:
128
+ - spider
129
+ extensions: []
130
+
131
+ extra_rdoc_files: []
132
+
133
+ files:
134
+ - README
135
+ - Rakefile
136
+ - spider.gemspec
137
+ - apps/cas_server/_init.rb
138
+ - apps/cas_server/config/options.rb
139
+ - apps/cas_server/controllers/mixins/cas_login_mixin.rb
140
+ - apps/cas_server/lib/cas.rb
141
+ - apps/cas_server/lib/utils.rb
142
+ - apps/cas_server/models/login_ticket.rb
143
+ - apps/cas_server/models/mixins/consumable.rb
144
+ - apps/cas_server/models/proxy_granting_ticket.rb
145
+ - apps/cas_server/models/proxy_ticket.rb
146
+ - apps/cas_server/models/service_ticket.rb
147
+ - apps/cas_server/models/ticket.rb
148
+ - apps/cas_server/models/ticket_granting_ticket.rb
149
+ - apps/cas_server/views/logout.shtml
150
+ - apps/core/admin/_init.rb
151
+ - apps/core/admin/admin.rb
152
+ - apps/core/admin/controllers/admin_controller.rb
153
+ - apps/core/admin/views/index.shtml
154
+ - apps/core/admin/views/spider_admin.layout.shtml
155
+ - apps/core/admin/widgets/admin_menu/admin_menu.rb
156
+ - apps/core/auth/_init.rb
157
+ - apps/core/auth/controllers/login_controller.rb
158
+ - apps/core/auth/controllers/mixins/auth_helper.rb
159
+ - apps/core/auth/controllers/mixins/http_basic_auth.rb
160
+ - apps/core/auth/controllers/mixins/http_digest_auth.rb
161
+ - apps/core/auth/lib/authenticable.rb
162
+ - apps/core/auth/lib/authenticator.rb
163
+ - apps/core/auth/lib/digest_authenticator.rb
164
+ - apps/core/auth/lib/login_authenticator.rb
165
+ - apps/core/auth/models/digest_user.rb
166
+ - apps/core/auth/models/group.rb
167
+ - apps/core/auth/models/login_user.rb
168
+ - apps/core/auth/models/mixins/access_control.rb
169
+ - apps/core/auth/models/mixins/authentication_tracking.rb
170
+ - apps/core/auth/models/super_user.rb
171
+ - apps/core/auth/models/user.rb
172
+ - apps/core/auth/po/it/spider_auth.po
173
+ - apps/core/auth/po/spider_auth.pot
174
+ - apps/core/auth/views/login.shtml
175
+ - apps/core/components/_init.rb
176
+ - apps/core/components/po/it/spider_components.po
177
+ - apps/core/components/po/spider_components.pot
178
+ - apps/core/components/public/css/admin.css
179
+ - apps/core/components/public/css/crud.css
180
+ - apps/core/components/public/css/img/add.gif
181
+ - apps/core/components/public/css/img/ajax-loader.gif
182
+ - apps/core/components/public/css/img/back.gif
183
+ - apps/core/components/public/css/img/bg_header.png
184
+ - apps/core/components/public/css/img/body_bg.jpg
185
+ - apps/core/components/public/css/img/gray_gradient.gif
186
+ - apps/core/components/public/css/img/li_bg.png
187
+ - apps/core/components/public/css/img/li_bg_active.png
188
+ - apps/core/components/public/css/img/li_bg_hover.png
189
+ - apps/core/components/public/css/img/logo.png
190
+ - apps/core/components/public/css/img/menu_bg.png
191
+ - apps/core/components/public/css/img/menu_bottom.png
192
+ - apps/core/components/public/css/img/menu_top.png
193
+ - apps/core/components/public/css/img/section-bottom.jpg
194
+ - apps/core/components/public/css/list.css
195
+ - apps/core/components/public/css/menu.css
196
+ - apps/core/components/public/css/spider.css
197
+ - apps/core/components/public/css/switcher.css
198
+ - apps/core/components/public/css/table.css
199
+ - apps/core/components/public/js/inheritance.js
200
+ - apps/core/components/public/js/jquery/jquery-1.3.2.js
201
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png
202
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png
203
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png
204
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png
205
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png
206
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png
207
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png
208
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png
209
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_222222_256x240.png
210
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_2e83ff_256x240.png
211
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_454545_256x240.png
212
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_888888_256x240.png
213
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/images/ui-icons_cd0a0a_256x240.png
214
+ - apps/core/components/public/js/jquery/jquery-ui/css/smoothness/jquery-ui-1.7.2.custom.css
215
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
216
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
217
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
218
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
219
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
220
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
221
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
222
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
223
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
224
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_222222_256x240.png
225
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_228ef1_256x240.png
226
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ef8c08_256x240.png
227
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ffd27a_256x240.png
228
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/images/ui-icons_ffffff_256x240.png
229
+ - apps/core/components/public/js/jquery/jquery-ui/css/ui-lightness/jquery-ui-1.7.2.custom.css
230
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/AUTHORS.txt
231
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/ChangeLog.txt
232
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.js
233
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.min.js
234
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/jquery.bgiframe.pack.js
235
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/META.json
236
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/bgiframe/test/index.html
237
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.js
238
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.min.js
239
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.pack.js
240
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/cookie/jquery.cookie.zip
241
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/jsdiff/jsdiff.js
242
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/qunit/testrunner.js
243
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/qunit/testsuite.css
244
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/external/simulate/jquery.simulate.js
245
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/GPL-LICENSE.txt
246
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/jquery-1.3.2.js
247
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/MIT-LICENSE.txt
248
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png
249
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_flat_75_ffffff_40x100.png
250
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png
251
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_65_ffffff_1x400.png
252
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_dadada_1x400.png
253
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png
254
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png
255
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png
256
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_222222_256x240.png
257
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_2e83ff_256x240.png
258
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_454545_256x240.png
259
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_888888_256x240.png
260
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/images/ui-icons_cd0a0a_256x240.png
261
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.accordion.css
262
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.all.css
263
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.base.css
264
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.core.css
265
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.datepicker.css
266
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.dialog.css
267
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.progressbar.css
268
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.resizable.css
269
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.slider.css
270
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.tabs.css
271
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/base/ui.theme.css
272
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
273
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
274
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
275
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
276
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
277
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
278
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
279
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
280
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
281
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_222222_256x240.png
282
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_228ef1_256x240.png
283
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ef8c08_256x240.png
284
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffd27a_256x240.png
285
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/images/ui-icons_ffffff_256x240.png
286
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/jquery-ui-1.7.2.custom.css
287
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.accordion.css
288
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.all.css
289
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.base.css
290
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.core.css
291
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.datepicker.css
292
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.dialog.css
293
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.progressbar.css
294
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.resizable.css
295
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.slider.css
296
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.tabs.css
297
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/themes/ui-lightness/ui.theme.css
298
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.blind.js
299
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.bounce.js
300
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.clip.js
301
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.core.js
302
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.drop.js
303
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.explode.js
304
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.fold.js
305
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.highlight.js
306
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.pulsate.js
307
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.scale.js
308
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.shake.js
309
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.slide.js
310
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/effects.transfer.js
311
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/jquery-ui-i18n.js
312
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ar.js
313
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-bg.js
314
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ca.js
315
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-cs.js
316
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-da.js
317
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-de.js
318
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-el.js
319
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-eo.js
320
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-es.js
321
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fa.js
322
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fi.js
323
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-fr.js
324
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-he.js
325
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hr.js
326
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hu.js
327
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-hy.js
328
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-id.js
329
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-is.js
330
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-it.js
331
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ja.js
332
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ko.js
333
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-lt.js
334
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-lv.js
335
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ms.js
336
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-nl.js
337
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-no.js
338
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-pl.js
339
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-pt-BR.js
340
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ro.js
341
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-ru.js
342
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sk.js
343
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sl.js
344
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sq.js
345
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sr-SR.js
346
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sr.js
347
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-sv.js
348
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-th.js
349
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-tr.js
350
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-uk.js
351
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-zh-CN.js
352
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/i18n/ui.datepicker-zh-TW.js
353
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/jquery-ui-1.7.2.custom.js
354
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.accordion.js
355
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.core.js
356
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.datepicker.js
357
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.dialog.js
358
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.draggable.js
359
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.droppable.js
360
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.progressbar.js
361
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.resizable.js
362
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.selectable.js
363
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.slider.js
364
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.sortable.js
365
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/ui/ui.tabs.js
366
+ - apps/core/components/public/js/jquery/jquery-ui/development-bundle/version.txt
367
+ - apps/core/components/public/js/jquery/jquery-ui/index.html
368
+ - apps/core/components/public/js/jquery/jquery-ui/js/jquery-1.3.2.min.js
369
+ - apps/core/components/public/js/jquery/jquery-ui/js/jquery-ui-1.7.2.custom.min.js
370
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/changelog.txt
371
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.css
372
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.js
373
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.min.js
374
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/jquery.autocomplete.pack.js
375
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.ajaxQueue.js
376
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.bgiframe.min.js
377
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/jquery.js
378
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/thickbox-compressed.js
379
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/lib/thickbox.css
380
+ - apps/core/components/public/js/jquery/plugins/jquery-autocomplete/todo
381
+ - apps/core/components/public/js/jquery/plugins/jquery.form.js
382
+ - apps/core/components/public/js/jquery/plugins/jquery.query-2.1.6.js
383
+ - apps/core/components/public/js/jquery/plugins/jquery.url.js
384
+ - apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.1.0.js
385
+ - apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.1.0.min.js
386
+ - apps/core/components/public/js/jquery/plugins/jtree/jquery.jtree.spider.1.0.js
387
+ - apps/core/components/public/js/jquery/plugins/treeview/changelog.txt
388
+ - apps/core/components/public/js/jquery/plugins/treeview/images/ajax-loader.gif
389
+ - apps/core/components/public/js/jquery/plugins/treeview/images/file.gif
390
+ - apps/core/components/public/js/jquery/plugins/treeview/images/folder-closed.gif
391
+ - apps/core/components/public/js/jquery/plugins/treeview/images/folder.gif
392
+ - apps/core/components/public/js/jquery/plugins/treeview/images/minus.gif
393
+ - apps/core/components/public/js/jquery/plugins/treeview/images/plus.gif
394
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-black-line.gif
395
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-black.gif
396
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-default-line.gif
397
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-default.gif
398
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-famfamfam-line.gif
399
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-famfamfam.gif
400
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-gray-line.gif
401
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-gray.gif
402
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-red-line.gif
403
+ - apps/core/components/public/js/jquery/plugins/treeview/images/treeview-red.gif
404
+ - apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.async.js
405
+ - apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.css
406
+ - apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.edit.js
407
+ - apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.js
408
+ - apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.min.js
409
+ - apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.pack.js
410
+ - apps/core/components/public/js/jquery/plugins/treeview/jquery.treeview.sortable.js
411
+ - apps/core/components/public/js/jquery/plugins/treeview/lib/jquery.cookie.js
412
+ - apps/core/components/public/js/jquery/plugins/treeview/lib/jquery.js
413
+ - apps/core/components/public/js/jquery/plugins/treeview/todo
414
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.css
415
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.js
416
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/jquery.timepickr.min.js
417
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/222222_256x240_icons_icons.png
418
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/2e83ff_256x240_icons_icons.png
419
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/454545_256x240_icons_icons.png
420
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/888888_256x240_icons_icons.png
421
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/aaaaaa_40x100_textures_01_flat_0.png
422
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/cccccc_40x100_textures_03_highlight_soft_75.png
423
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/cd0a0a_256x240_icons_icons.png
424
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/dadada_40x100_textures_02_glass_75.png
425
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/e6e6e6_40x100_textures_02_glass_75.png
426
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/fbf9ee_40x100_textures_02_glass_55.png
427
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/fef1ec_40x100_textures_05_inset_soft_95.png
428
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/ffffff_40x100_textures_02_glass_65.png
429
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/images/ffffff_40x100_textures_02_glass_75.png
430
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.accordion.css
431
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.all.css
432
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.allplugins.css
433
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.core.css
434
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.datepicker.css
435
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.dialog.css
436
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.progressbar.css
437
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.resizable.css
438
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.slider.css
439
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.tabs.css
440
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.theme.css
441
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/themes/default/ui.timepickr.css
442
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/ui.timepickr.js
443
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/dist/ui.timepickr.min.js
444
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/LICENSE
445
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/body-bg.png
446
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/btn-hover.png
447
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/btn.png
448
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/buttons.psd
449
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/index.html
450
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.anchorHandler.js
451
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.strings.js
452
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.ui.all.js
453
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.utils.js
454
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/jquery.utils.ui.min.js
455
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo-ff.png
456
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo-ie.png
457
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo.png
458
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/logo.psd
459
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/package.png
460
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/reset.css
461
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/script_code.png
462
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/styles.css
463
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/themeroller_ready_black_200px.gif
464
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/page/weather_sun.png
465
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/README
466
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/src/css/ui.dropslide.css
467
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/src/css/ui.timepickr.css
468
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/src/ui.dropslide.js
469
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/src/ui.timepickr.js
470
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/data/testrunner.js
471
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/index.html
472
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/otherlibs/jquery/1.2.1/jquery.js
473
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/otherlibs/jquery/1.2.3/jquery.js
474
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/qunit/testrunner.js
475
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/qunit/testsuite.css
476
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/styles.css
477
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/test.js
478
+ - apps/core/components/public/js/jquery/plugins/ui-timepickr/test/unit/ui.timepickr.js
479
+ - apps/core/components/public/js/list.js
480
+ - apps/core/components/public/js/spider.js
481
+ - apps/core/components/public/widgets/search_table.js
482
+ - apps/core/components/public/widgets/table.js
483
+ - apps/core/components/widgets/admin/admin.rb
484
+ - apps/core/components/widgets/admin/admin.shtml
485
+ - apps/core/components/widgets/confirm/confirm.rb
486
+ - apps/core/components/widgets/confirm/confirm.shtml
487
+ - apps/core/components/widgets/crud/crud.rb
488
+ - apps/core/components/widgets/crud/crud.shtml
489
+ - apps/core/components/widgets/crud/form_table/form_table.rb
490
+ - apps/core/components/widgets/crud/form_table/form_table.shtml
491
+ - apps/core/components/widgets/list/list.rb
492
+ - apps/core/components/widgets/list/list.shtml
493
+ - apps/core/components/widgets/list/plugins/exportable/exportable_list.rb
494
+ - apps/core/components/widgets/list/plugins/exportable/exportable_list.shtml
495
+ - apps/core/components/widgets/menu/menu.rb
496
+ - apps/core/components/widgets/menu/menu.shtml
497
+ - apps/core/components/widgets/search_table/search_table.rb
498
+ - apps/core/components/widgets/search_table/search_table.shtml
499
+ - apps/core/components/widgets/switcher/switcher.rb
500
+ - apps/core/components/widgets/switcher/switcher.shtml
501
+ - apps/core/components/widgets/table/table.rb
502
+ - apps/core/components/widgets/table/table.shtml
503
+ - apps/core/components/widgets/tabs/tabs.rb
504
+ - apps/core/components/widgets/tabs/tabs.shtml
505
+ - apps/core/forms/_init.rb
506
+ - apps/core/forms/po/it/spider_forms.po
507
+ - apps/core/forms/po/spider_forms.pot
508
+ - apps/core/forms/public/date_time.js
509
+ - apps/core/forms/public/form.css
510
+ - apps/core/forms/public/form.js
511
+ - apps/core/forms/public/input.js
512
+ - apps/core/forms/public/search_select.js
513
+ - apps/core/forms/public/select.js
514
+ - apps/core/forms/tags/element_label.erb
515
+ - apps/core/forms/tags/element_row.erb
516
+ - apps/core/forms/tags/row.erb
517
+ - apps/core/forms/widgets/form/form.rb
518
+ - apps/core/forms/widgets/form/form.shtml
519
+ - apps/core/forms/widgets/inputs/checkbox/checkbox.rb
520
+ - apps/core/forms/widgets/inputs/checkbox/checkbox.shtml
521
+ - apps/core/forms/widgets/inputs/date_time/date_time.rb
522
+ - apps/core/forms/widgets/inputs/date_time/date_time.shtml
523
+ - apps/core/forms/widgets/inputs/hidden/hidden.rb
524
+ - apps/core/forms/widgets/inputs/hidden/hidden.shtml
525
+ - apps/core/forms/widgets/inputs/input/input.rb
526
+ - apps/core/forms/widgets/inputs/input/input.shtml
527
+ - apps/core/forms/widgets/inputs/input/readonly.shtml
528
+ - apps/core/forms/widgets/inputs/password/password.rb
529
+ - apps/core/forms/widgets/inputs/password/password.shtml
530
+ - apps/core/forms/widgets/inputs/search_select/search_select.rb
531
+ - apps/core/forms/widgets/inputs/search_select/search_select.shtml
532
+ - apps/core/forms/widgets/inputs/select/select.rb
533
+ - apps/core/forms/widgets/inputs/select/select.shtml
534
+ - apps/core/forms/widgets/inputs/subform/subform.rb
535
+ - apps/core/forms/widgets/inputs/subform/subform.shtml
536
+ - apps/core/forms/widgets/inputs/text/text.rb
537
+ - apps/core/forms/widgets/inputs/text/text.shtml
538
+ - apps/core/forms/widgets/inputs/text_area/text_area.rb
539
+ - apps/core/forms/widgets/inputs/text_area/text_area.shtml
540
+ - apps/drb_server/_init.rb
541
+ - apps/drb_server/lib/model_server.rb
542
+ - apps/drb_server/script/start_server.rb
543
+ - apps/hippo/_init.rb
544
+ - apps/hippo/models/mixins/hippo_struct.rb
545
+ - apps/hippo/models/security_group.rb
546
+ - apps/hippo/models/security_user.rb
547
+ - apps/messenger/_init.rb
548
+ - apps/messenger/config/options.rb
549
+ - apps/messenger/config/worker.rb
550
+ - apps/messenger/controllers/messenger_controller.rb
551
+ - apps/messenger/controllers/mixins/messenger_controller_mixin.rb
552
+ - apps/messenger/lib/backends/email/smtp.rb
553
+ - apps/messenger/messenger.rb
554
+ - apps/messenger/models/email.rb
555
+ - apps/messenger/models/message.rb
556
+ - apps/messenger/po/it/spider_messenger.po
557
+ - apps/messenger/po/spider_messenger.pot
558
+ - apps/messenger/views/index.shtml
559
+ - apps/messenger/views/list.shtml
560
+ - apps/messenger/views/messenger.layout.shtml
561
+ - apps/messenger/views/queue.shtml
562
+ - apps/messenger/views/tags/sent_messages.shtml
563
+ - apps/soap/_init.rb
564
+ - apps/soap/controllers/soap_controller.rb
565
+ - apps/soap/doc/examples/example.rb
566
+ - apps/soap/lib/soap.rb
567
+ - apps/sso/_init.rb
568
+ - apps/sso/config/options.rb
569
+ - apps/sso/controllers/mixins/saml2_mixin.rb
570
+ - apps/sso/lib/saml2/backend.rb
571
+ - apps/sso/lib/saml2/lasso_backend.rb
572
+ - apps/sso/lib/saml2.rb
573
+ - apps/sso/views/saml2_post.shtml
574
+ - apps/webdav/_init.rb
575
+ - apps/webdav/controllers/webdav_controller.rb
576
+ - apps/webdav/lib/locking.rb
577
+ - apps/webdav/lib/vfs/abstract.rb
578
+ - apps/webdav/lib/vfs/local.rb
579
+ - apps/webdav/lib/vfs/mapped.rb
580
+ - apps/webdav/lib/vfs/properties.rb
581
+ - apps/worker/_init.rb
582
+ - apps/worker/cmd.rb
583
+ - apps/worker/config/options.rb
584
+ - apps/worker/lib/runner.rb
585
+ - apps/worker/lib/task.rb
586
+ - apps/worker/models/job.rb
587
+ - apps/worker/worker.rb
588
+ - bin/spider
589
+ - blueprints/app/_init.rb
590
+ - blueprints/app/controllers/__APP___controller.rb
591
+ - blueprints/app/views/__APP__.layout.shtml
592
+ - blueprints/app/views/index.shtml
593
+ - blueprints/install/config/config.yml
594
+ - blueprints/install/init.rb
595
+ - data/locale/it/LC_MESSAGES/spider.mo
596
+ - data/locale/it/LC_MESSAGES/spider_auth.mo
597
+ - data/locale/it/LC_MESSAGES/spider_components.mo
598
+ - data/locale/it/LC_MESSAGES/spider_forms.mo
599
+ - data/locale/it/LC_MESSAGES/spider_messenger.mo
600
+ - lib/spiderfw/app.rb
601
+ - lib/spiderfw/autoload.rb
602
+ - lib/spiderfw/cache/template_cache.rb
603
+ - lib/spiderfw/cmd/cmd.rb
604
+ - lib/spiderfw/cmd/commands/cert.rb
605
+ - lib/spiderfw/cmd/commands/console.rb
606
+ - lib/spiderfw/cmd/commands/init.rb
607
+ - lib/spiderfw/cmd/commands/model.rb
608
+ - lib/spiderfw/cmd/commands/setup.rb
609
+ - lib/spiderfw/cmd/commands/test.rb
610
+ - lib/spiderfw/cmd/commands/webserver.rb
611
+ - lib/spiderfw/config/configurable.rb
612
+ - lib/spiderfw/config/configuration.rb
613
+ - lib/spiderfw/config/options/spider.rb
614
+ - lib/spiderfw/controller/app_controller.rb
615
+ - lib/spiderfw/controller/controller.rb
616
+ - lib/spiderfw/controller/controller_exceptions.rb
617
+ - lib/spiderfw/controller/controller_io.rb
618
+ - lib/spiderfw/controller/controller_mixin.rb
619
+ - lib/spiderfw/controller/cookie.rb
620
+ - lib/spiderfw/controller/cookies.rb
621
+ - lib/spiderfw/controller/dispatcher.rb
622
+ - lib/spiderfw/controller/first_responder.rb
623
+ - lib/spiderfw/controller/formats/html.rb
624
+ - lib/spiderfw/controller/helpers/widget_helper.rb
625
+ - lib/spiderfw/controller/home_controller.rb
626
+ - lib/spiderfw/controller/http_controller.rb
627
+ - lib/spiderfw/controller/mixins/http_mixin.rb
628
+ - lib/spiderfw/controller/mixins/static_content.rb
629
+ - lib/spiderfw/controller/mixins/visual.rb
630
+ - lib/spiderfw/controller/page_controller.rb
631
+ - lib/spiderfw/controller/request.rb
632
+ - lib/spiderfw/controller/response.rb
633
+ - lib/spiderfw/controller/router.rb
634
+ - lib/spiderfw/controller/scene.rb
635
+ - lib/spiderfw/controller/session/file_session.rb
636
+ - lib/spiderfw/controller/session/flash_hash.rb
637
+ - lib/spiderfw/controller/session/memory_session.rb
638
+ - lib/spiderfw/controller/session/transient_hash.rb
639
+ - lib/spiderfw/controller/session.rb
640
+ - lib/spiderfw/controller/spider_controller.rb
641
+ - lib/spiderfw/create.rb
642
+ - lib/spiderfw/env.rb
643
+ - lib/spiderfw/exceptions.rb
644
+ - lib/spiderfw/home.rb
645
+ - lib/spiderfw/http/adapters/cgi.rb
646
+ - lib/spiderfw/http/adapters/cgi_io.rb
647
+ - lib/spiderfw/http/adapters/fcgi.rb
648
+ - lib/spiderfw/http/adapters/mongrel.rb
649
+ - lib/spiderfw/http/adapters/rack.rb
650
+ - lib/spiderfw/http/adapters/thin.rb
651
+ - lib/spiderfw/http/adapters/webrick.rb
652
+ - lib/spiderfw/http/http.rb
653
+ - lib/spiderfw/http/server.rb
654
+ - lib/spiderfw/i18n/cldr.rb
655
+ - lib/spiderfw/i18n/gettext.rb
656
+ - lib/spiderfw/i18n/i18n.rb
657
+ - lib/spiderfw/i18n/provider.rb
658
+ - lib/spiderfw/i18n/rails.rb
659
+ - lib/spiderfw/i18n/shtml_parser.rb
660
+ - lib/spiderfw/model/active_record.rb
661
+ - lib/spiderfw/model/base_model.rb
662
+ - lib/spiderfw/model/condition.rb
663
+ - lib/spiderfw/model/data_type.rb
664
+ - lib/spiderfw/model/datatypes/binary.rb
665
+ - lib/spiderfw/model/datatypes/bool.rb
666
+ - lib/spiderfw/model/datatypes/decimal.rb
667
+ - lib/spiderfw/model/datatypes/email.rb
668
+ - lib/spiderfw/model/datatypes/password.rb
669
+ - lib/spiderfw/model/datatypes/serialized_object.rb
670
+ - lib/spiderfw/model/datatypes/text.rb
671
+ - lib/spiderfw/model/datatypes/uuid.rb
672
+ - lib/spiderfw/model/datatypes.rb
673
+ - lib/spiderfw/model/element.rb
674
+ - lib/spiderfw/model/extended_models/managed.rb
675
+ - lib/spiderfw/model/identity_mapper.rb
676
+ - lib/spiderfw/model/inline_model.rb
677
+ - lib/spiderfw/model/mappers/db_mapper.rb
678
+ - lib/spiderfw/model/mappers/hash_mapper.rb
679
+ - lib/spiderfw/model/mappers/mapper.rb
680
+ - lib/spiderfw/model/mappers/mappers.rb
681
+ - lib/spiderfw/model/mappers/proxy_mapper.rb
682
+ - lib/spiderfw/model/mappers/vfs/flat_file.rb
683
+ - lib/spiderfw/model/mixins/converted.rb
684
+ - lib/spiderfw/model/mixins/list.rb
685
+ - lib/spiderfw/model/mixins/mixins.rb
686
+ - lib/spiderfw/model/mixins/state_machine.rb
687
+ - lib/spiderfw/model/mixins/synchronized.rb
688
+ - lib/spiderfw/model/mixins/tree.rb
689
+ - lib/spiderfw/model/mixins/versioned.rb
690
+ - lib/spiderfw/model/model.rb
691
+ - lib/spiderfw/model/model_hash.rb
692
+ - lib/spiderfw/model/proxy_model.rb
693
+ - lib/spiderfw/model/query.rb
694
+ - lib/spiderfw/model/query_funcs.rb
695
+ - lib/spiderfw/model/query_set.rb
696
+ - lib/spiderfw/model/request.rb
697
+ - lib/spiderfw/model/storage/base_storage.rb
698
+ - lib/spiderfw/model/storage/db/adapters/mssql.rb
699
+ - lib/spiderfw/model/storage/db/adapters/mysql.rb
700
+ - lib/spiderfw/model/storage/db/adapters/oci8.rb
701
+ - lib/spiderfw/model/storage/db/adapters/sqlite.rb
702
+ - lib/spiderfw/model/storage/db/connectors/odbc.rb
703
+ - lib/spiderfw/model/storage/db/db.rb
704
+ - lib/spiderfw/model/storage/db/db_connection_pool.rb
705
+ - lib/spiderfw/model/storage/db/db_connector.rb
706
+ - lib/spiderfw/model/storage/db/db_schema.rb
707
+ - lib/spiderfw/model/storage/db/db_storage.rb
708
+ - lib/spiderfw/model/storage/db/dialects/no_total_rows.rb
709
+ - lib/spiderfw/model/storage/db/reflector.rb
710
+ - lib/spiderfw/model/storage/null_storage.rb
711
+ - lib/spiderfw/model/storage/schema.rb
712
+ - lib/spiderfw/model/storage.rb
713
+ - lib/spiderfw/model/sync.rb
714
+ - lib/spiderfw/model/type.rb
715
+ - lib/spiderfw/model/unit_of_work.rb
716
+ - lib/spiderfw/requires.rb
717
+ - lib/spiderfw/resource.rb
718
+ - lib/spiderfw/setup/setup_task.rb
719
+ - lib/spiderfw/tag/tag.rb
720
+ - lib/spiderfw/templates/blocks/attr_if.rb
721
+ - lib/spiderfw/templates/blocks/comment.rb
722
+ - lib/spiderfw/templates/blocks/debugger.rb
723
+ - lib/spiderfw/templates/blocks/each.rb
724
+ - lib/spiderfw/templates/blocks/html.rb
725
+ - lib/spiderfw/templates/blocks/if.rb
726
+ - lib/spiderfw/templates/blocks/pass.rb
727
+ - lib/spiderfw/templates/blocks/render.rb
728
+ - lib/spiderfw/templates/blocks/run.rb
729
+ - lib/spiderfw/templates/blocks/tag.rb
730
+ - lib/spiderfw/templates/blocks/tag_if.rb
731
+ - lib/spiderfw/templates/blocks/text.rb
732
+ - lib/spiderfw/templates/blocks/widget.rb
733
+ - lib/spiderfw/templates/blocks/yield.rb
734
+ - lib/spiderfw/templates/layout.rb
735
+ - lib/spiderfw/templates/resources/less.rb
736
+ - lib/spiderfw/templates/template.rb
737
+ - lib/spiderfw/templates/template_blocks.rb
738
+ - lib/spiderfw/utils/annotations.rb
739
+ - lib/spiderfw/utils/fork.rb
740
+ - lib/spiderfw/utils/hash_comparison.rb
741
+ - lib/spiderfw/utils/inflector.rb
742
+ - lib/spiderfw/utils/logger.rb
743
+ - lib/spiderfw/utils/monkey/class.rb
744
+ - lib/spiderfw/utils/monkey/date_time.rb
745
+ - lib/spiderfw/utils/monkey/debugger.rb
746
+ - lib/spiderfw/utils/monkey/exception.rb
747
+ - lib/spiderfw/utils/monkey/kernel.rb
748
+ - lib/spiderfw/utils/monkey/module.rb
749
+ - lib/spiderfw/utils/monkey/symbol.rb
750
+ - lib/spiderfw/utils/monkey/time.rb
751
+ - lib/spiderfw/utils/multi_level_hash.rb
752
+ - lib/spiderfw/utils/periodic_runner.rb
753
+ - lib/spiderfw/utils/rails.rb
754
+ - lib/spiderfw/utils/rails_app.rb
755
+ - lib/spiderfw/utils/sanitizer.rb
756
+ - lib/spiderfw/utils/setup_task.rb
757
+ - lib/spiderfw/utils/shared_store/file_shared_store.rb
758
+ - lib/spiderfw/utils/shared_store/memory_shared_store.rb
759
+ - lib/spiderfw/utils/shared_store.rb
760
+ - lib/spiderfw/utils/test_case.rb
761
+ - lib/spiderfw/utils/thread_out.rb
762
+ - lib/spiderfw/version.rb
763
+ - lib/spiderfw/widget/rest_model.rb
764
+ - lib/spiderfw/widget/widget.rb
765
+ - lib/spiderfw/widget/widget_attributes.rb
766
+ - lib/spiderfw/widget/widget_plugin.rb
767
+ - lib/spiderfw.rb
768
+ - views/errors/404.shtml
769
+ - views/errors/error.layout.shtml
770
+ - views/errors/error_generic.shtml
771
+ has_rdoc: true
772
+ homepage: http://github.com/me/spider
773
+ licenses: []
774
+
775
+ post_install_message:
776
+ rdoc_options: []
777
+
778
+ require_paths:
779
+ - lib
780
+ required_ruby_version: !ruby/object:Gem::Requirement
781
+ requirements:
782
+ - - ">="
783
+ - !ruby/object:Gem::Version
784
+ version: "0"
785
+ version:
786
+ required_rubygems_version: !ruby/object:Gem::Requirement
787
+ requirements:
788
+ - - ">="
789
+ - !ruby/object:Gem::Version
790
+ version: "0"
791
+ version:
792
+ requirements:
793
+ - "Optional dependencies: openssl, sqlite3, webrick, mongrel, ruby-oci8 =1.0.3, mysql"
794
+ rubyforge_project:
795
+ rubygems_version: 1.3.5
796
+ signing_key:
797
+ specification_version: 3
798
+ summary: A (web) framework
799
+ test_files: []
800
+