reduced_fat_crm 0.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1042) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +36 -0
  3. data/.rubocop.yml +5 -0
  4. data/.teatro.yml +3 -0
  5. data/.travis.yml +41 -0
  6. data/CHANGELOG +1923 -0
  7. data/CONTRIBUTORS +91 -0
  8. data/Capfile +25 -0
  9. data/Dockerfile +18 -0
  10. data/Gemfile +88 -0
  11. data/Gemfile.lock +430 -0
  12. data/Guardfile +24 -0
  13. data/MIT-LICENSE +21 -0
  14. data/Procfile +1 -0
  15. data/README.md +153 -0
  16. data/Rakefile +9 -0
  17. data/app/assets/images/1x1.gif +0 -0
  18. data/app/assets/images/asterisk.gif +0 -0
  19. data/app/assets/images/avatar.jpg +0 -0
  20. data/app/assets/images/blog.gif +0 -0
  21. data/app/assets/images/facebook.gif +0 -0
  22. data/app/assets/images/info.png +0 -0
  23. data/app/assets/images/info_tiny.png +0 -0
  24. data/app/assets/images/linkedin.gif +0 -0
  25. data/app/assets/images/loading.gif +0 -0
  26. data/app/assets/images/notifications.png +0 -0
  27. data/app/assets/images/skype.gif +0 -0
  28. data/app/assets/images/sortable.gif +0 -0
  29. data/app/assets/images/stars.gif +0 -0
  30. data/app/assets/images/twitter.gif +0 -0
  31. data/app/assets/javascripts/admin/fields.js.coffee +72 -0
  32. data/app/assets/javascripts/application.js.erb +41 -0
  33. data/app/assets/javascripts/crm.js.coffee +428 -0
  34. data/app/assets/javascripts/crm_chosen.js.coffee +29 -0
  35. data/app/assets/javascripts/crm_classes.js.coffee +215 -0
  36. data/app/assets/javascripts/crm_comments.js.coffee +28 -0
  37. data/app/assets/javascripts/crm_loginout.js.coffee +27 -0
  38. data/app/assets/javascripts/crm_select2.js.coffee +31 -0
  39. data/app/assets/javascripts/crm_sortable.js.coffee +32 -0
  40. data/app/assets/javascripts/crm_tags.js.coffee +22 -0
  41. data/app/assets/javascripts/crm_textarea_autocomplete.js.coffee +33 -0
  42. data/app/assets/javascripts/datepicker.js.coffee +20 -0
  43. data/app/assets/javascripts/format_buttons.js.coffee +52 -0
  44. data/app/assets/javascripts/lists.js.coffee +54 -0
  45. data/app/assets/javascripts/pagination.js.coffee +16 -0
  46. data/app/assets/javascripts/search.js.coffee +55 -0
  47. data/app/assets/javascripts/timeago.js.coffee +21 -0
  48. data/app/assets/stylesheets/about.css.scss +10 -0
  49. data/app/assets/stylesheets/admin/fields.css.scss +17 -0
  50. data/app/assets/stylesheets/advanced_search.css.scss +108 -0
  51. data/app/assets/stylesheets/application.css.erb +37 -0
  52. data/app/assets/stylesheets/base.scss +78 -0
  53. data/app/assets/stylesheets/common.scss +765 -0
  54. data/app/assets/stylesheets/ffcrm_chosen.scss +69 -0
  55. data/app/assets/stylesheets/fields.scss +27 -0
  56. data/app/assets/stylesheets/format_buttons.css.scss +40 -0
  57. data/app/assets/stylesheets/groups.css.scss +8 -0
  58. data/app/assets/stylesheets/header.scss +121 -0
  59. data/app/assets/stylesheets/index_headers.css.scss +5 -0
  60. data/app/assets/stylesheets/lists.css.scss +26 -0
  61. data/app/assets/stylesheets/print.css.scss +77 -0
  62. data/app/assets/stylesheets/rails.scss +133 -0
  63. data/app/assets/stylesheets/safari.scss +11 -0
  64. data/app/assets/stylesheets/textarea_autocomplete.scss +47 -0
  65. data/app/controllers/admin/application_controller.rb +30 -0
  66. data/app/controllers/admin/field_groups_controller.rb +83 -0
  67. data/app/controllers/admin/fields_controller.rb +118 -0
  68. data/app/controllers/admin/groups_controller.rb +65 -0
  69. data/app/controllers/admin/plugins_controller.rb +17 -0
  70. data/app/controllers/admin/settings_controller.rb +14 -0
  71. data/app/controllers/admin/tags_controller.rb +71 -0
  72. data/app/controllers/admin/users_controller.rb +144 -0
  73. data/app/controllers/application_controller.rb +276 -0
  74. data/app/controllers/authentications_controller.rb +51 -0
  75. data/app/controllers/comments_controller.rb +93 -0
  76. data/app/controllers/emails_controller.rb +18 -0
  77. data/app/controllers/entities/accounts_controller.rb +158 -0
  78. data/app/controllers/entities/campaigns_controller.rb +197 -0
  79. data/app/controllers/entities/contacts_controller.rb +178 -0
  80. data/app/controllers/entities/leads_controller.rb +256 -0
  81. data/app/controllers/entities/opportunities_controller.rb +222 -0
  82. data/app/controllers/entities_controller.rb +214 -0
  83. data/app/controllers/home_controller.rb +156 -0
  84. data/app/controllers/lists_controller.rb +40 -0
  85. data/app/controllers/passwords_controller.rb +65 -0
  86. data/app/controllers/tasks_controller.rb +219 -0
  87. data/app/controllers/users_controller.rb +159 -0
  88. data/app/helpers/accounts_helper.rb +110 -0
  89. data/app/helpers/addresses_helper.rb +17 -0
  90. data/app/helpers/admin/application_helper.rb +15 -0
  91. data/app/helpers/admin/field_groups_helper.rb +25 -0
  92. data/app/helpers/admin/fields_helper.rb +18 -0
  93. data/app/helpers/admin/plugins_helper.rb +7 -0
  94. data/app/helpers/admin/settings_helper.rb +7 -0
  95. data/app/helpers/admin/tags_helper.rb +10 -0
  96. data/app/helpers/admin/users_helper.rb +51 -0
  97. data/app/helpers/application_helper.rb +527 -0
  98. data/app/helpers/authentications_helper.rb +7 -0
  99. data/app/helpers/campaigns_helper.rb +34 -0
  100. data/app/helpers/comments_helper.rb +11 -0
  101. data/app/helpers/contacts_helper.rb +21 -0
  102. data/app/helpers/emails_helper.rb +7 -0
  103. data/app/helpers/fields_helper.rb +7 -0
  104. data/app/helpers/groups_helper.rb +7 -0
  105. data/app/helpers/home_helper.rb +66 -0
  106. data/app/helpers/javascript_helper.rb +30 -0
  107. data/app/helpers/leads_helper.rb +85 -0
  108. data/app/helpers/lists_helper.rb +7 -0
  109. data/app/helpers/opportunities_helper.rb +46 -0
  110. data/app/helpers/passwords_helper.rb +7 -0
  111. data/app/helpers/remote_link_pagination_helper.rb +8 -0
  112. data/app/helpers/tags_helper.rb +29 -0
  113. data/app/helpers/tasks_helper.rb +139 -0
  114. data/app/helpers/users_helper.rb +35 -0
  115. data/app/helpers/versions_helper.rb +32 -0
  116. data/app/inputs/date_pair_input.rb +65 -0
  117. data/app/inputs/date_time_input.rb +36 -0
  118. data/app/inputs/datetime_pair_input.rb +25 -0
  119. data/app/inputs/text_input.rb +12 -0
  120. data/app/mailers/dropbox_mailer.rb +18 -0
  121. data/app/mailers/subscription_mailer.rb +30 -0
  122. data/app/mailers/user_mailer.rb +32 -0
  123. data/app/models/entities/account.rb +142 -0
  124. data/app/models/entities/account_contact.rb +28 -0
  125. data/app/models/entities/account_opportunity.rb +26 -0
  126. data/app/models/entities/campaign.rb +116 -0
  127. data/app/models/entities/contact.rb +215 -0
  128. data/app/models/entities/contact_opportunity.rb +27 -0
  129. data/app/models/entities/lead.rb +197 -0
  130. data/app/models/entities/opportunity.rb +190 -0
  131. data/app/models/fields/core_field.rb +37 -0
  132. data/app/models/fields/custom_field.rb +148 -0
  133. data/app/models/fields/custom_field_date_pair.rb +42 -0
  134. data/app/models/fields/custom_field_datetime_pair.rb +12 -0
  135. data/app/models/fields/custom_field_pair.rb +42 -0
  136. data/app/models/fields/field.rb +129 -0
  137. data/app/models/fields/field_group.rb +63 -0
  138. data/app/models/list.rb +17 -0
  139. data/app/models/observers/entity_observer.rb +43 -0
  140. data/app/models/observers/lead_observer.rb +29 -0
  141. data/app/models/observers/opportunity_observer.rb +47 -0
  142. data/app/models/observers/task_observer.rb +31 -0
  143. data/app/models/polymorphic/address.rb +59 -0
  144. data/app/models/polymorphic/avatar.rb +55 -0
  145. data/app/models/polymorphic/comment.rb +73 -0
  146. data/app/models/polymorphic/email.rb +59 -0
  147. data/app/models/polymorphic/tag.rb +21 -0
  148. data/app/models/polymorphic/tagging.rb +8 -0
  149. data/app/models/polymorphic/task.rb +284 -0
  150. data/app/models/polymorphic/version.rb +81 -0
  151. data/app/models/setting.rb +103 -0
  152. data/app/models/users/ability.rb +59 -0
  153. data/app/models/users/authentication.rb +54 -0
  154. data/app/models/users/group.rb +13 -0
  155. data/app/models/users/permission.rb +27 -0
  156. data/app/models/users/preference.rb +50 -0
  157. data/app/models/users/user.rb +184 -0
  158. data/app/views/accounts/_account.html.haml +5 -0
  159. data/app/views/accounts/_contact_info.html.haml +37 -0
  160. data/app/views/accounts/_edit.html.haml +21 -0
  161. data/app/views/accounts/_index_brief.html.haml +32 -0
  162. data/app/views/accounts/_index_long.html.haml +42 -0
  163. data/app/views/accounts/_new.html.haml +21 -0
  164. data/app/views/accounts/_sidebar_index.html.haml +20 -0
  165. data/app/views/accounts/_sidebar_show.html.haml +57 -0
  166. data/app/views/accounts/_title_bar.html.haml +11 -0
  167. data/app/views/accounts/_top_section.html.haml +29 -0
  168. data/app/views/accounts/create.js.haml +17 -0
  169. data/app/views/accounts/destroy.js.haml +6 -0
  170. data/app/views/accounts/edit.js.haml +31 -0
  171. data/app/views/accounts/index.html.haml +18 -0
  172. data/app/views/accounts/index.js.haml +11 -0
  173. data/app/views/accounts/index.xls.builder +84 -0
  174. data/app/views/accounts/new.js.haml +11 -0
  175. data/app/views/accounts/show.html.haml +26 -0
  176. data/app/views/accounts/show.js.haml +5 -0
  177. data/app/views/accounts/update.js.haml +19 -0
  178. data/app/views/admin/custom_fields/_base_field.html.haml +21 -0
  179. data/app/views/admin/custom_fields/_check_boxes_field.html.haml +6 -0
  180. data/app/views/admin/custom_fields/_date_field.html.haml +14 -0
  181. data/app/views/admin/custom_fields/_date_pair_field.html.haml +21 -0
  182. data/app/views/admin/custom_fields/_datetime_field.html.haml +14 -0
  183. data/app/views/admin/custom_fields/_datetime_pair_field.html.haml +21 -0
  184. data/app/views/admin/custom_fields/_radio_field.html.haml +6 -0
  185. data/app/views/admin/custom_fields/_select_field.html.haml +25 -0
  186. data/app/views/admin/custom_fields/_string_field.html.haml +2 -0
  187. data/app/views/admin/field_groups/_confirm.html.haml +5 -0
  188. data/app/views/admin/field_groups/_edit.html.haml +8 -0
  189. data/app/views/admin/field_groups/_field_group.html.haml +28 -0
  190. data/app/views/admin/field_groups/_new.html.haml +10 -0
  191. data/app/views/admin/field_groups/_top_section.html.haml +14 -0
  192. data/app/views/admin/field_groups/confirm.js.haml +7 -0
  193. data/app/views/admin/field_groups/create.js.haml +14 -0
  194. data/app/views/admin/field_groups/destroy.js.haml +9 -0
  195. data/app/views/admin/field_groups/edit.js.haml +12 -0
  196. data/app/views/admin/field_groups/new.js.haml +8 -0
  197. data/app/views/admin/field_groups/update.js.haml +8 -0
  198. data/app/views/admin/fields/_field.html.haml +17 -0
  199. data/app/views/admin/fields/_form.html.haml +35 -0
  200. data/app/views/admin/fields/_sidebar_index.html.haml +1 -0
  201. data/app/views/admin/fields/_sidebar_show.html.haml +1 -0
  202. data/app/views/admin/fields/_sort_by.html.haml +10 -0
  203. data/app/views/admin/fields/_subform.html.haml +6 -0
  204. data/app/views/admin/fields/create.js.haml +17 -0
  205. data/app/views/admin/fields/destroy.js.haml +8 -0
  206. data/app/views/admin/fields/edit.js.haml +3 -0
  207. data/app/views/admin/fields/index.html.haml +34 -0
  208. data/app/views/admin/fields/show.html.haml +41 -0
  209. data/app/views/admin/fields/update.js.haml +13 -0
  210. data/app/views/admin/groups/_edit.html.haml +12 -0
  211. data/app/views/admin/groups/_form.html.haml +11 -0
  212. data/app/views/admin/groups/_group.html.haml +16 -0
  213. data/app/views/admin/groups/_new.html.haml +12 -0
  214. data/app/views/admin/groups/create.js.haml +10 -0
  215. data/app/views/admin/groups/destroy.js.haml +9 -0
  216. data/app/views/admin/groups/edit.js.haml +14 -0
  217. data/app/views/admin/groups/index.html.haml +18 -0
  218. data/app/views/admin/groups/index.js.haml +2 -0
  219. data/app/views/admin/groups/new.js.haml +9 -0
  220. data/app/views/admin/groups/show.html.haml +11 -0
  221. data/app/views/admin/groups/update.js.haml +9 -0
  222. data/app/views/admin/plugins/_plugin.html.haml +13 -0
  223. data/app/views/admin/plugins/index.html.haml +3 -0
  224. data/app/views/admin/settings/index.html.haml +3 -0
  225. data/app/views/admin/tags/_confirm.html.haml +5 -0
  226. data/app/views/admin/tags/_edit.html.haml +9 -0
  227. data/app/views/admin/tags/_new.html.haml +10 -0
  228. data/app/views/admin/tags/_tag.html.haml +29 -0
  229. data/app/views/admin/tags/_top_section.html.haml +6 -0
  230. data/app/views/admin/tags/confirm.js.haml +7 -0
  231. data/app/views/admin/tags/create.js.haml +11 -0
  232. data/app/views/admin/tags/destroy.js.haml +10 -0
  233. data/app/views/admin/tags/edit.js.haml +20 -0
  234. data/app/views/admin/tags/index.html.haml +17 -0
  235. data/app/views/admin/tags/new.js.haml +7 -0
  236. data/app/views/admin/tags/update.js.haml +9 -0
  237. data/app/views/admin/users/_confirm.html.haml +5 -0
  238. data/app/views/admin/users/_edit.html.haml +11 -0
  239. data/app/views/admin/users/_new.html.haml +11 -0
  240. data/app/views/admin/users/_profile.html.haml +54 -0
  241. data/app/views/admin/users/_sidebar_index.html.haml +2 -0
  242. data/app/views/admin/users/_user.html.haml +66 -0
  243. data/app/views/admin/users/confirm.js.haml +7 -0
  244. data/app/views/admin/users/create.js.haml +10 -0
  245. data/app/views/admin/users/destroy.js.haml +10 -0
  246. data/app/views/admin/users/edit.js.haml +20 -0
  247. data/app/views/admin/users/index.html.haml +13 -0
  248. data/app/views/admin/users/index.js.haml +2 -0
  249. data/app/views/admin/users/new.js.haml +9 -0
  250. data/app/views/admin/users/reactivate.js.haml +3 -0
  251. data/app/views/admin/users/show.html.haml +5 -0
  252. data/app/views/admin/users/suspend.js.haml +3 -0
  253. data/app/views/admin/users/update.js.haml +9 -0
  254. data/app/views/application/_auto_complete.html.haml +10 -0
  255. data/app/views/application/index.atom.builder +34 -0
  256. data/app/views/application/index.rss.builder +31 -0
  257. data/app/views/application/show.atom.builder +32 -0
  258. data/app/views/application/show.rss.builder +29 -0
  259. data/app/views/authentications/new.html.haml +19 -0
  260. data/app/views/campaigns/_campaign.html.haml +5 -0
  261. data/app/views/campaigns/_edit.html.haml +18 -0
  262. data/app/views/campaigns/_index_brief.html.haml +15 -0
  263. data/app/views/campaigns/_index_long.html.haml +20 -0
  264. data/app/views/campaigns/_metrics.html.haml +16 -0
  265. data/app/views/campaigns/_new.html.haml +18 -0
  266. data/app/views/campaigns/_objectives.html.haml +30 -0
  267. data/app/views/campaigns/_sidebar_index.html.haml +20 -0
  268. data/app/views/campaigns/_sidebar_show.html.haml +91 -0
  269. data/app/views/campaigns/_status.html.haml +24 -0
  270. data/app/views/campaigns/_title_bar.html.haml +11 -0
  271. data/app/views/campaigns/_top_section.html.haml +29 -0
  272. data/app/views/campaigns/create.js.haml +20 -0
  273. data/app/views/campaigns/destroy.js.haml +6 -0
  274. data/app/views/campaigns/edit.js.haml +31 -0
  275. data/app/views/campaigns/index.html.haml +18 -0
  276. data/app/views/campaigns/index.js.haml +11 -0
  277. data/app/views/campaigns/index.xls.builder +77 -0
  278. data/app/views/campaigns/new.js.haml +11 -0
  279. data/app/views/campaigns/show.html.haml +26 -0
  280. data/app/views/campaigns/show.js.haml +5 -0
  281. data/app/views/campaigns/update.js.haml +22 -0
  282. data/app/views/comments/_comment.html.haml +29 -0
  283. data/app/views/comments/_edit.html.haml +11 -0
  284. data/app/views/comments/_new.html.haml +35 -0
  285. data/app/views/comments/_subscription_links.html.haml +13 -0
  286. data/app/views/comments/create.js.haml +14 -0
  287. data/app/views/comments/destroy.js.haml +5 -0
  288. data/app/views/comments/edit.js.haml +11 -0
  289. data/app/views/comments/update.js.haml +9 -0
  290. data/app/views/contacts/_contact.html.haml +5 -0
  291. data/app/views/contacts/_contacts.html.haml +7 -0
  292. data/app/views/contacts/_edit.html.haml +19 -0
  293. data/app/views/contacts/_extra.html.haml +36 -0
  294. data/app/views/contacts/_index_brief.html.haml +25 -0
  295. data/app/views/contacts/_index_full.html.haml +57 -0
  296. data/app/views/contacts/_index_long.html.haml +44 -0
  297. data/app/views/contacts/_new.html.haml +20 -0
  298. data/app/views/contacts/_section_extra.html.haml +26 -0
  299. data/app/views/contacts/_section_general.html.haml +26 -0
  300. data/app/views/contacts/_sidebar_index.html.haml +0 -0
  301. data/app/views/contacts/_sidebar_show.html.haml +52 -0
  302. data/app/views/contacts/_title_bar.html.haml +11 -0
  303. data/app/views/contacts/_top_section.html.haml +45 -0
  304. data/app/views/contacts/_web.html.haml +31 -0
  305. data/app/views/contacts/create.js.haml +23 -0
  306. data/app/views/contacts/destroy.js.haml +9 -0
  307. data/app/views/contacts/edit.js.haml +34 -0
  308. data/app/views/contacts/index.html.haml +18 -0
  309. data/app/views/contacts/index.js.haml +11 -0
  310. data/app/views/contacts/index.xls.builder +104 -0
  311. data/app/views/contacts/new.js.haml +13 -0
  312. data/app/views/contacts/show.html.haml +22 -0
  313. data/app/views/contacts/show.js.haml +5 -0
  314. data/app/views/contacts/update.js.haml +24 -0
  315. data/app/views/dropbox_mailer/dropbox_notification.html.haml +9 -0
  316. data/app/views/emails/_email.html.haml +36 -0
  317. data/app/views/emails/destroy.js.haml +5 -0
  318. data/app/views/entities/_basic_search.html.haml +24 -0
  319. data/app/views/entities/_permissions.html.haml +36 -0
  320. data/app/views/entities/_search.html.haml +16 -0
  321. data/app/views/entities/_section_custom_fields.html.haml +11 -0
  322. data/app/views/entities/_sort_fields.html.haml +3 -0
  323. data/app/views/entities/_title_bar.html.haml +12 -0
  324. data/app/views/entities/attach.js.haml +21 -0
  325. data/app/views/entities/contacts.js.haml +3 -0
  326. data/app/views/entities/discard.js.haml +6 -0
  327. data/app/views/entities/leads.js.haml +3 -0
  328. data/app/views/entities/opportunities.js.haml +3 -0
  329. data/app/views/entities/subscription_update.js.haml +4 -0
  330. data/app/views/entities/versions.js.haml +3 -0
  331. data/app/views/fields/_edit_custom_field_group.html.haml +8 -0
  332. data/app/views/fields/_group.html.haml +11 -0
  333. data/app/views/fields/_group_table.html.haml +13 -0
  334. data/app/views/fields/_group_view.html.haml +10 -0
  335. data/app/views/fields/_groups.html.haml +8 -0
  336. data/app/views/fields/_sidebar_show.html.haml +9 -0
  337. data/app/views/fields/group.js.erb +3 -0
  338. data/app/views/home/_account.html.haml +29 -0
  339. data/app/views/home/_activity.html.haml +35 -0
  340. data/app/views/home/_assets_menu.html.haml +7 -0
  341. data/app/views/home/_duration_menu.html.haml +8 -0
  342. data/app/views/home/_events_menu.html.haml +8 -0
  343. data/app/views/home/_opportunity.html.haml +41 -0
  344. data/app/views/home/_options.html.haml +12 -0
  345. data/app/views/home/_task.html.haml +48 -0
  346. data/app/views/home/_users_menu.html.haml +8 -0
  347. data/app/views/home/index.atom.builder +24 -0
  348. data/app/views/home/index.html.haml +46 -0
  349. data/app/views/home/index.js.haml +7 -0
  350. data/app/views/home/index.rss.builder +20 -0
  351. data/app/views/home/options.js.haml +7 -0
  352. data/app/views/layouts/500.html.haml +17 -0
  353. data/app/views/layouts/_about.html.haml +17 -0
  354. data/app/views/layouts/_footer.html.haml +9 -0
  355. data/app/views/layouts/_header.html.haml +20 -0
  356. data/app/views/layouts/_jumpbox.html.haml +34 -0
  357. data/app/views/layouts/_sidebar.html.haml +12 -0
  358. data/app/views/layouts/_tabbed.html.haml +15 -0
  359. data/app/views/layouts/_tabless.html.haml +3 -0
  360. data/app/views/layouts/admin/_header.html.haml +14 -0
  361. data/app/views/layouts/admin/application.html.haml +24 -0
  362. data/app/views/layouts/application.html.haml +48 -0
  363. data/app/views/layouts/header.xls.builder +8 -0
  364. data/app/views/leads/_contact.html.haml +35 -0
  365. data/app/views/leads/_convert.html.haml +25 -0
  366. data/app/views/leads/_convert_permissions.html.haml +31 -0
  367. data/app/views/leads/_edit.html.haml +23 -0
  368. data/app/views/leads/_index_brief.html.haml +41 -0
  369. data/app/views/leads/_index_long.html.haml +62 -0
  370. data/app/views/leads/_lead.html.haml +5 -0
  371. data/app/views/leads/_leads.html.haml +6 -0
  372. data/app/views/leads/_new.html.haml +24 -0
  373. data/app/views/leads/_opportunity.html.haml +37 -0
  374. data/app/views/leads/_sidebar_index.html.haml +20 -0
  375. data/app/views/leads/_sidebar_show.html.haml +65 -0
  376. data/app/views/leads/_status.html.haml +36 -0
  377. data/app/views/leads/_title_bar.html.haml +16 -0
  378. data/app/views/leads/_top_section.html.haml +30 -0
  379. data/app/views/leads/_web.html.haml +31 -0
  380. data/app/views/leads/convert.js.haml +35 -0
  381. data/app/views/leads/create.js.haml +21 -0
  382. data/app/views/leads/destroy.js.haml +9 -0
  383. data/app/views/leads/edit.js.haml +33 -0
  384. data/app/views/leads/index.html.haml +18 -0
  385. data/app/views/leads/index.js.haml +11 -0
  386. data/app/views/leads/index.xls.builder +102 -0
  387. data/app/views/leads/new.js.haml +11 -0
  388. data/app/views/leads/promote.js.haml +26 -0
  389. data/app/views/leads/reject.js.haml +12 -0
  390. data/app/views/leads/show.html.haml +20 -0
  391. data/app/views/leads/show.js.haml +5 -0
  392. data/app/views/leads/update.js.haml +28 -0
  393. data/app/views/lists/_lists.html.haml +6 -0
  394. data/app/views/lists/_sidebar.html.haml +29 -0
  395. data/app/views/lists/create.js.haml +9 -0
  396. data/app/views/lists/destroy.js.haml +1 -0
  397. data/app/views/opportunities/_edit.html.haml +18 -0
  398. data/app/views/opportunities/_index_brief.html.haml +29 -0
  399. data/app/views/opportunities/_index_long.html.haml +59 -0
  400. data/app/views/opportunities/_new.html.haml +18 -0
  401. data/app/views/opportunities/_opportunities.html.haml +6 -0
  402. data/app/views/opportunities/_opportunity.html.haml +5 -0
  403. data/app/views/opportunities/_sidebar_index.html.haml +20 -0
  404. data/app/views/opportunities/_sidebar_show.html.haml +61 -0
  405. data/app/views/opportunities/_title_bar.html.haml +11 -0
  406. data/app/views/opportunities/_top_section.html.haml +59 -0
  407. data/app/views/opportunities/contacts.js.haml +3 -0
  408. data/app/views/opportunities/create.js.haml +29 -0
  409. data/app/views/opportunities/destroy.js.haml +13 -0
  410. data/app/views/opportunities/edit.js.haml +34 -0
  411. data/app/views/opportunities/index.html.haml +20 -0
  412. data/app/views/opportunities/index.js.haml +11 -0
  413. data/app/views/opportunities/index.xls.builder +71 -0
  414. data/app/views/opportunities/new.js.haml +13 -0
  415. data/app/views/opportunities/show.html.haml +22 -0
  416. data/app/views/opportunities/show.js.haml +5 -0
  417. data/app/views/opportunities/update.js.haml +27 -0
  418. data/app/views/passwords/edit.html.haml +15 -0
  419. data/app/views/passwords/new.html.haml +10 -0
  420. data/app/views/shared/_add_comment.html.haml +8 -0
  421. data/app/views/shared/_address.html.haml +44 -0
  422. data/app/views/shared/_address_show.html.haml +24 -0
  423. data/app/views/shared/_comment.html.haml +11 -0
  424. data/app/views/shared/_edit_comment.html.haml +13 -0
  425. data/app/views/shared/_empty.html.haml +8 -0
  426. data/app/views/shared/_export.html.haml +2 -0
  427. data/app/views/shared/_inline_styles.html.haml +31 -0
  428. data/app/views/shared/_naming.html.haml +9 -0
  429. data/app/views/shared/_paginate.haml +2 -0
  430. data/app/views/shared/_paginate_with_per_page.html.haml +12 -0
  431. data/app/views/shared/_recent.html.haml +4 -0
  432. data/app/views/shared/_recently.html.haml +7 -0
  433. data/app/views/shared/_search.html.haml +15 -0
  434. data/app/views/shared/_select_popup.html.haml +19 -0
  435. data/app/views/shared/_tags.html.haml +10 -0
  436. data/app/views/shared/_tasks.html.haml +10 -0
  437. data/app/views/shared/_timeline.html.haml +2 -0
  438. data/app/views/shared/_total.html.haml +4 -0
  439. data/app/views/subscription_mailer/comment_notification.text.erb +7 -0
  440. data/app/views/tasks/_assigned.html.haml +47 -0
  441. data/app/views/tasks/_completed.html.haml +25 -0
  442. data/app/views/tasks/_edit.html.haml +18 -0
  443. data/app/views/tasks/_empty.html.haml +4 -0
  444. data/app/views/tasks/_new.html.haml +14 -0
  445. data/app/views/tasks/_pending.html.haml +52 -0
  446. data/app/views/tasks/_related.html.haml +32 -0
  447. data/app/views/tasks/_selector.html.haml +8 -0
  448. data/app/views/tasks/_sidebar_index.html.haml +18 -0
  449. data/app/views/tasks/_tasks.html.haml +3 -0
  450. data/app/views/tasks/_title.html.haml +8 -0
  451. data/app/views/tasks/_top_section.html.haml +34 -0
  452. data/app/views/tasks/complete.js.haml +14 -0
  453. data/app/views/tasks/create.js.haml +39 -0
  454. data/app/views/tasks/destroy.js.haml +7 -0
  455. data/app/views/tasks/discard.js.haml +1 -0
  456. data/app/views/tasks/edit.js.haml +26 -0
  457. data/app/views/tasks/filter.js.haml +4 -0
  458. data/app/views/tasks/index.html.haml +20 -0
  459. data/app/views/tasks/index.xls.builder +49 -0
  460. data/app/views/tasks/new.js.haml +8 -0
  461. data/app/views/tasks/uncomplete.js.haml +12 -0
  462. data/app/views/tasks/update.js.haml +19 -0
  463. data/app/views/user_mailer/assigned_entity_notification.html.haml +3 -0
  464. data/app/views/user_mailer/password_reset_instructions.html.haml +6 -0
  465. data/app/views/users/_avatar.html.haml +20 -0
  466. data/app/views/users/_languages.html.haml +9 -0
  467. data/app/views/users/_password.html.haml +27 -0
  468. data/app/views/users/_profile.html.haml +67 -0
  469. data/app/views/users/_user.html.haml +33 -0
  470. data/app/views/users/_user_report.html.haml +6 -0
  471. data/app/views/users/avatar.js.haml +9 -0
  472. data/app/views/users/change_password.js.haml +13 -0
  473. data/app/views/users/edit.js.haml +9 -0
  474. data/app/views/users/index.html.haml +3 -0
  475. data/app/views/users/new.html.haml +19 -0
  476. data/app/views/users/opportunities_overview.html.haml +16 -0
  477. data/app/views/users/password.js.haml +10 -0
  478. data/app/views/users/show.html.haml +15 -0
  479. data/app/views/users/update.js.haml +9 -0
  480. data/app/views/users/upload_avatar.js.haml +7 -0
  481. data/app/views/versions/_version.html.haml +17 -0
  482. data/app/views/versions/_version_item.html.haml +8 -0
  483. data/app/views/versions/_versions.html.haml +11 -0
  484. data/bin/bundle +3 -0
  485. data/bin/rails +4 -0
  486. data/bin/rake +4 -0
  487. data/config.ru +4 -0
  488. data/config/application.rb +77 -0
  489. data/config/boot.rb +10 -0
  490. data/config/database.mysql.mac.yml +32 -0
  491. data/config/database.mysql.yml +33 -0
  492. data/config/database.postgres.docker.yml +25 -0
  493. data/config/database.postgres.yml +26 -0
  494. data/config/database.sqlite.yml +23 -0
  495. data/config/deploy.example.rb +77 -0
  496. data/config/environment.rb +10 -0
  497. data/config/environments/development.rb +46 -0
  498. data/config/environments/production.rb +66 -0
  499. data/config/environments/staging.rb +66 -0
  500. data/config/environments/test.rb +54 -0
  501. data/config/initializers/action_mailer.rb +22 -0
  502. data/config/initializers/assets.rb +14 -0
  503. data/config/initializers/authlogic.rb +6 -0
  504. data/config/initializers/backtrace_silencers.rb +7 -0
  505. data/config/initializers/constants.rb +6 -0
  506. data/config/initializers/cookies_serializer.rb +3 -0
  507. data/config/initializers/custom_field_ransack_translations.rb +17 -0
  508. data/config/initializers/filter_parameter_logging.rb +4 -0
  509. data/config/initializers/gravatar.rb +12 -0
  510. data/config/initializers/inflections.rb +16 -0
  511. data/config/initializers/locale.rb +18 -0
  512. data/config/initializers/mime_types.rb +12 -0
  513. data/config/initializers/paginate_arrays.rb +11 -0
  514. data/config/initializers/ransack.rb +20 -0
  515. data/config/initializers/relative_url_root.rb +10 -0
  516. data/config/initializers/secret_token.rb +25 -0
  517. data/config/initializers/session_store.rb +5 -0
  518. data/config/initializers/simple_form.rb +100 -0
  519. data/config/initializers/views.rb +47 -0
  520. data/config/initializers/wrap_parameters.rb +14 -0
  521. data/config/locales/cz.yml +247 -0
  522. data/config/locales/cz_fat_free_crm.yml +610 -0
  523. data/config/locales/de.yml +237 -0
  524. data/config/locales/de_fat_free_crm.yml +842 -0
  525. data/config/locales/de_ransack.yml +91 -0
  526. data/config/locales/en-GB.yml +219 -0
  527. data/config/locales/en-GB_fat_free_crm.yml +937 -0
  528. data/config/locales/en-GB_ransack.yml +91 -0
  529. data/config/locales/en-US.yml +219 -0
  530. data/config/locales/en-US_fat_free_crm.yml +937 -0
  531. data/config/locales/en-US_ransack.yml +91 -0
  532. data/config/locales/en.yml +23 -0
  533. data/config/locales/es-CL.yml +227 -0
  534. data/config/locales/es-CL_fat_free_crm.yml +929 -0
  535. data/config/locales/es-CL_ransack.yml +91 -0
  536. data/config/locales/es.yml +219 -0
  537. data/config/locales/es_fat_free_crm.yml +917 -0
  538. data/config/locales/es_ransack.yml +91 -0
  539. data/config/locales/fr-CA.yml +224 -0
  540. data/config/locales/fr-CA_fat_free_crm.yml +570 -0
  541. data/config/locales/fr.yml +227 -0
  542. data/config/locales/fr_fat_free_crm.yml +934 -0
  543. data/config/locales/it.yml +219 -0
  544. data/config/locales/it_fat_free_crm.yml +592 -0
  545. data/config/locales/ja.yml +219 -0
  546. data/config/locales/ja_fat_free_crm.yml +557 -0
  547. data/config/locales/ja_ransack.yml +91 -0
  548. data/config/locales/nl.yml +210 -0
  549. data/config/locales/nl_fat_free_crm.yml +920 -0
  550. data/config/locales/nl_ransack.yml +91 -0
  551. data/config/locales/pl.yml +230 -0
  552. data/config/locales/pl_fat_free_crm.yml +570 -0
  553. data/config/locales/pt-BR.yml +232 -0
  554. data/config/locales/pt-BR_fat_free_crm.yml +650 -0
  555. data/config/locales/ru.yml +326 -0
  556. data/config/locales/ru_fat_free_crm.yml +977 -0
  557. data/config/locales/sv-SE.yml +215 -0
  558. data/config/locales/sv-SE_fat_free_crm.yml +565 -0
  559. data/config/locales/th.rb +204 -0
  560. data/config/locales/th_fat_free_crm.yml +558 -0
  561. data/config/locales/zh-CN.yml +241 -0
  562. data/config/locales/zh-CN_fat_free_crm.yml +937 -0
  563. data/config/locales/zh-CN_ransack.yml +91 -0
  564. data/config/routes.rb +199 -0
  565. data/config/settings.default.yml +400 -0
  566. data/config/unicorn.rb +32 -0
  567. data/custom_plan.rb +9 -0
  568. data/db/demo/account_contacts.yml +24 -0
  569. data/db/demo/account_opportunities.yml +24 -0
  570. data/db/demo/accounts.yml +47 -0
  571. data/db/demo/activities.yml +16 -0
  572. data/db/demo/addresses.yml +46 -0
  573. data/db/demo/avatars.yml +16 -0
  574. data/db/demo/campaigns.yml +144 -0
  575. data/db/demo/comments.yml +30 -0
  576. data/db/demo/contact_opportunities.yml +25 -0
  577. data/db/demo/contacts.yml +70 -0
  578. data/db/demo/emails.yml +53 -0
  579. data/db/demo/field_groups.yml +14 -0
  580. data/db/demo/leads.yml +71 -0
  581. data/db/demo/opportunities.yml +48 -0
  582. data/db/demo/permissions.yml +13 -0
  583. data/db/demo/preferences.yml +13 -0
  584. data/db/demo/settings.yml +12 -0
  585. data/db/demo/tasks.yml +64 -0
  586. data/db/demo/users.yml +245 -0
  587. data/db/migrate/20100928030598_create_sessions.rb +21 -0
  588. data/db/migrate/20100928030599_create_users.rb +45 -0
  589. data/db/migrate/20100928030600_create_openid_tables.rb +23 -0
  590. data/db/migrate/20100928030601_create_accounts.rb +26 -0
  591. data/db/migrate/20100928030602_create_permissions.rb +15 -0
  592. data/db/migrate/20100928030603_create_settings.rb +15 -0
  593. data/db/migrate/20100928030604_create_preferences.rb +15 -0
  594. data/db/migrate/20100928030605_create_campaigns.rb +34 -0
  595. data/db/migrate/20100928030606_create_leads.rb +38 -0
  596. data/db/migrate/20100928030607_create_contacts.rb +38 -0
  597. data/db/migrate/20100928030608_create_opportunities.rb +27 -0
  598. data/db/migrate/20100928030609_create_account_contacts.rb +14 -0
  599. data/db/migrate/20100928030610_create_account_opportunities.rb +14 -0
  600. data/db/migrate/20100928030611_create_contact_opportunities.rb +15 -0
  601. data/db/migrate/20100928030612_create_tasks.rb +26 -0
  602. data/db/migrate/20100928030613_create_comments.rb +16 -0
  603. data/db/migrate/20100928030614_create_activities.rb +19 -0
  604. data/db/migrate/20100928030615_create_avatars.rb +16 -0
  605. data/db/migrate/20100928030616_rename_remember_token.rb +11 -0
  606. data/db/migrate/20100928030617_drop_openid_tables.rb +23 -0
  607. data/db/migrate/20100928030618_add_admin_to_users.rb +11 -0
  608. data/db/migrate/20100928030619_add_suspended_to_users.rb +11 -0
  609. data/db/migrate/20100928030620_remove_uuid.rb +24 -0
  610. data/db/migrate/20100928030621_add_email_to_accounts.rb +9 -0
  611. data/db/migrate/20100928030622_add_background_info_to_models.rb +19 -0
  612. data/db/migrate/20100928030623_create_addresses.rb +49 -0
  613. data/db/migrate/20100928030624_add_index_on_permissions.rb +9 -0
  614. data/db/migrate/20100928030625_create_emails.rb +26 -0
  615. data/db/migrate/20100928030626_add_state_to_timeline_objects.rb +13 -0
  616. data/db/migrate/20100928030627_acts_as_taggable_on_migration.rb +29 -0
  617. data/db/migrate/20101221123456_add_single_access_token_to_users.rb +9 -0
  618. data/db/migrate/20101221345678_add_rating_and_category_to_accounts.rb +11 -0
  619. data/db/migrate/20110719082054_add_skype_to_contacts_and_leads.rb +11 -0
  620. data/db/migrate/20111101083437_create_fields.rb +27 -0
  621. data/db/migrate/20111101090312_create_field_groups.rb +15 -0
  622. data/db/migrate/20111116091952_add_field_groups_tag_id.rb +9 -0
  623. data/db/migrate/20111117041311_change_fields_collection_to_text.rb +9 -0
  624. data/db/migrate/20111201030535_add_field_groups_klass_name.rb +24 -0
  625. data/db/migrate/20120121054235_create_lists.rb +10 -0
  626. data/db/migrate/20120216031616_create_versions.rb +18 -0
  627. data/db/migrate/20120216042541_is_paranoid_to_paper_trail.rb +10 -0
  628. data/db/migrate/20120220233724_add_versions_object_changes.rb +9 -0
  629. data/db/migrate/20120224073107_remove_default_value_and_clear_settings.rb +16 -0
  630. data/db/migrate/20120309070209_add_versions_related.rb +6 -0
  631. data/db/migrate/20120314080441_add_subscribed_users_to_entities.rb +23 -0
  632. data/db/migrate/20120316045804_activities_to_versions.rb +35 -0
  633. data/db/migrate/20120405080727_change_subscribed_users_to_set.rb +24 -0
  634. data/db/migrate/20120405080742_change_further_subscribed_users_to_set.rb +27 -0
  635. data/db/migrate/20120406082136_create_groups.rb +19 -0
  636. data/db/migrate/20120413034923_add_index_on_versions_item_type.rb +5 -0
  637. data/db/migrate/20120510025219_add_not_null_constraints_for_timestamp_columns.rb +22 -0
  638. data/db/migrate/20120528102124_increase_length_of_version_events.rb +9 -0
  639. data/db/migrate/20120801032706_add_pair_id_to_fields.rb +5 -0
  640. data/db/migrate/20121003063155_add_settings_to_custom_fields.rb +5 -0
  641. data/db/migrate/20121221033947_fix_country_mapping.rb +31 -0
  642. data/db/migrate/20131207033244_add_user_id_to_lists.rb +6 -0
  643. data/db/migrate/20140916011927_add_created_at_index_on_versions.rb +5 -0
  644. data/db/migrate/20140916012922_add_indexes_to_model_associations.rb +6 -0
  645. data/db/migrate/20141126031837_increase_email_to254_chars.rb +21 -0
  646. data/db/migrate/20141230021159_add_transaction_id_column_to_versions.rb +11 -0
  647. data/db/migrate/20141230205453_add_missing_unique_indices.acts_as_taggable_on_engine.rb +20 -0
  648. data/db/migrate/20141230205454_add_taggings_counter_cache_to_tags.acts_as_taggable_on_engine.rb +15 -0
  649. data/db/migrate/20141230205455_add_missing_taggable_index.acts_as_taggable_on_engine.rb +10 -0
  650. data/db/migrate/20150123060900_convert_radio_to_radio_buttons.rb +10 -0
  651. data/db/migrate/20150227123054_remove_last_request_at_from_users.rb +5 -0
  652. data/db/migrate/20150427131956_create_index_related_type.rb +9 -0
  653. data/db/migrate/20160511053730_add_account_contacts_index.rb +5 -0
  654. data/db/schema.rb +459 -0
  655. data/db/seeds.rb +9 -0
  656. data/db/seeds/fields.rb +93 -0
  657. data/docker-compose.yml +13 -0
  658. data/fat_free_crm.gemspec +63 -0
  659. data/lib/development_tasks/gem.rake +13 -0
  660. data/lib/development_tasks/license.rake +77 -0
  661. data/lib/development_tasks/rdoc.rake +20 -0
  662. data/lib/development_tasks/rspec.rake +24 -0
  663. data/lib/fat_free_crm.rb +57 -0
  664. data/lib/fat_free_crm/callback.rb +144 -0
  665. data/lib/fat_free_crm/comment_extensions.rb +28 -0
  666. data/lib/fat_free_crm/core_ext.rb +6 -0
  667. data/lib/fat_free_crm/core_ext/nil.rb +14 -0
  668. data/lib/fat_free_crm/core_ext/string.rb +48 -0
  669. data/lib/fat_free_crm/custom_fields.rb +12 -0
  670. data/lib/fat_free_crm/engine.rb +27 -0
  671. data/lib/fat_free_crm/errors.rb +37 -0
  672. data/lib/fat_free_crm/exceptions.rb +21 -0
  673. data/lib/fat_free_crm/export_csv.rb +33 -0
  674. data/lib/fat_free_crm/exportable.rb +49 -0
  675. data/lib/fat_free_crm/fields.rb +95 -0
  676. data/lib/fat_free_crm/gem_dependencies.rb +40 -0
  677. data/lib/fat_free_crm/gem_ext.rb +10 -0
  678. data/lib/fat_free_crm/gem_ext/action_controller/base.rb +16 -0
  679. data/lib/fat_free_crm/gem_ext/active_record/schema_dumper.rb +27 -0
  680. data/lib/fat_free_crm/gem_ext/active_support/buffered_logger.rb +17 -0
  681. data/lib/fat_free_crm/gem_ext/rails/engine.rb +15 -0
  682. data/lib/fat_free_crm/gem_ext/rake/task.rb +13 -0
  683. data/lib/fat_free_crm/gem_ext/simple_form/action_view_extensions/form_helper.rb +24 -0
  684. data/lib/fat_free_crm/i18n.rb +42 -0
  685. data/lib/fat_free_crm/load_settings.rb +18 -0
  686. data/lib/fat_free_crm/mail_processor/base.rb +227 -0
  687. data/lib/fat_free_crm/mail_processor/comment_replies.rb +69 -0
  688. data/lib/fat_free_crm/mail_processor/dropbox.rb +273 -0
  689. data/lib/fat_free_crm/permissions.rb +109 -0
  690. data/lib/fat_free_crm/renderers.rb +11 -0
  691. data/lib/fat_free_crm/secret_token_generator.rb +59 -0
  692. data/lib/fat_free_crm/sortable.rb +43 -0
  693. data/lib/fat_free_crm/tabs.rb +23 -0
  694. data/lib/fat_free_crm/version.rb +15 -0
  695. data/lib/fat_free_crm/view_factory.rb +81 -0
  696. data/lib/gravatar_image_tag.rb +58 -0
  697. data/lib/missing_translation_detector.rb +50 -0
  698. data/lib/tasks/.gitkeep +0 -0
  699. data/lib/tasks/.gitkeep~master +0 -0
  700. data/lib/tasks/ffcrm/comment_replies.rake +27 -0
  701. data/lib/tasks/ffcrm/config.rake +40 -0
  702. data/lib/tasks/ffcrm/demo.rake +62 -0
  703. data/lib/tasks/ffcrm/dropbox.rake +28 -0
  704. data/lib/tasks/ffcrm/missing_translations.rake +34 -0
  705. data/lib/tasks/ffcrm/secret.rake +15 -0
  706. data/lib/tasks/ffcrm/settings.rake +20 -0
  707. data/lib/tasks/ffcrm/setup.rake +81 -0
  708. data/lib/tasks/ffcrm/update_data.rake +238 -0
  709. data/lib/templates/erb/scaffold/_form.html.erb +13 -0
  710. data/public/404.html +26 -0
  711. data/public/422.html +26 -0
  712. data/public/500.html +26 -0
  713. data/public/favicon.ico +0 -0
  714. data/public/robots.txt +5 -0
  715. data/script/rails +6 -0
  716. data/spec/controllers/admin/groups_controller_spec.rb +9 -0
  717. data/spec/controllers/admin/users_controller_spec.rb +305 -0
  718. data/spec/controllers/applications_controller_spec.rb +41 -0
  719. data/spec/controllers/authentications_controller_spec.rb +148 -0
  720. data/spec/controllers/comments_controller_spec.rb +193 -0
  721. data/spec/controllers/emails_controller_spec.rb +35 -0
  722. data/spec/controllers/entities/accounts_controller_spec.rb +605 -0
  723. data/spec/controllers/entities/campaigns_controller_spec.rb +643 -0
  724. data/spec/controllers/entities/contacts_controller_spec.rb +702 -0
  725. data/spec/controllers/entities/leads_controller_spec.rb +1007 -0
  726. data/spec/controllers/entities/opportunities_controller_spec.rb +902 -0
  727. data/spec/controllers/entities_controller_spec.rb +40 -0
  728. data/spec/controllers/home_controller_spec.rb +231 -0
  729. data/spec/controllers/lists_controller_spec.rb +9 -0
  730. data/spec/controllers/passwords_controller_spec.rb +30 -0
  731. data/spec/controllers/tasks_controller_spec.rb +512 -0
  732. data/spec/controllers/users_controller_spec.rb +431 -0
  733. data/spec/factories/account_factories.rb +38 -0
  734. data/spec/factories/campaign_factories.rb +28 -0
  735. data/spec/factories/contact_factories.rb +43 -0
  736. data/spec/factories/field_factories.rb +37 -0
  737. data/spec/factories/lead_factories.rb +34 -0
  738. data/spec/factories/list_factories.rb +11 -0
  739. data/spec/factories/opportunity_factories.rb +37 -0
  740. data/spec/factories/sequences.rb +31 -0
  741. data/spec/factories/setting_factories.rb +13 -0
  742. data/spec/factories/shared_factories.rb +66 -0
  743. data/spec/factories/subscription_factories.rb +11 -0
  744. data/spec/factories/tag_factories.rb +10 -0
  745. data/spec/factories/task_factories.rb +27 -0
  746. data/spec/factories/user_factories.rb +64 -0
  747. data/spec/features/acceptance_helper.rb +9 -0
  748. data/spec/features/accounts_spec.rb +109 -0
  749. data/spec/features/admin/groups_spec.rb +30 -0
  750. data/spec/features/admin/users_spec.rb +37 -0
  751. data/spec/features/campaigns_spec.rb +103 -0
  752. data/spec/features/contacts_spec.rb +129 -0
  753. data/spec/features/dashboard_spec.rb +66 -0
  754. data/spec/features/leads_spec.rb +129 -0
  755. data/spec/features/opportunities_overview_spec.rb +87 -0
  756. data/spec/features/opportunities_spec.rb +105 -0
  757. data/spec/features/support/browser.rb +18 -0
  758. data/spec/features/support/headless.rb +17 -0
  759. data/spec/features/support/helpers.rb +30 -0
  760. data/spec/features/support/maintain_sessions.rb +10 -0
  761. data/spec/features/support/paths.rb +46 -0
  762. data/spec/features/support/selector_helpers.rb +31 -0
  763. data/spec/features/tasks_spec.rb +93 -0
  764. data/spec/fixtures/rails.png +0 -0
  765. data/spec/helpers/accounts_helper_spec.rb +14 -0
  766. data/spec/helpers/admin/field_groups_helper_spec.rb +18 -0
  767. data/spec/helpers/admin/plugins_helper_spec.rb +9 -0
  768. data/spec/helpers/admin/settings_helper_spec.rb +9 -0
  769. data/spec/helpers/admin/users_helper_spec.rb +9 -0
  770. data/spec/helpers/application_helper_spec.rb +83 -0
  771. data/spec/helpers/authentications_helper_spec.rb +14 -0
  772. data/spec/helpers/campaigns_helper_spec.rb +14 -0
  773. data/spec/helpers/comments_helper_spec.rb +14 -0
  774. data/spec/helpers/contacts_helper_spec.rb +14 -0
  775. data/spec/helpers/emails_helper_spec.rb +9 -0
  776. data/spec/helpers/fields_helper_spec.rb +10 -0
  777. data/spec/helpers/groups_helper_spec.rb +19 -0
  778. data/spec/helpers/home_helper_spec.rb +14 -0
  779. data/spec/helpers/leads_helper_spec.rb +14 -0
  780. data/spec/helpers/lists_helper_spec.rb +19 -0
  781. data/spec/helpers/opportunities_helper_spec.rb +14 -0
  782. data/spec/helpers/passwords_helper_spec.rb +14 -0
  783. data/spec/helpers/tasks_helper_spec.rb +18 -0
  784. data/spec/helpers/users_helper_spec.rb +37 -0
  785. data/spec/lib/comment_extensions_spec.rb +34 -0
  786. data/spec/lib/core_ext/string_spec.rb +21 -0
  787. data/spec/lib/errors_spec.rb +30 -0
  788. data/spec/lib/fields_spec.rb +99 -0
  789. data/spec/lib/mail_processor/base_spec.rb +167 -0
  790. data/spec/lib/mail_processor/comment_replies_spec.rb +68 -0
  791. data/spec/lib/mail_processor/dropbox_spec.rb +304 -0
  792. data/spec/lib/mail_processor/sample_emails/dropbox.rb +171 -0
  793. data/spec/lib/permissions_spec.rb +134 -0
  794. data/spec/lib/secret_token_generator_spec.rb +67 -0
  795. data/spec/lib/view_factory_spec.rb +67 -0
  796. data/spec/mailers/subscription_mailer_spec.rb +47 -0
  797. data/spec/mailers/user_mailer_spec.rb +139 -0
  798. data/spec/models/entities/account_contact_spec.rb +31 -0
  799. data/spec/models/entities/account_opportunity_spec.rb +31 -0
  800. data/spec/models/entities/account_spec.rb +178 -0
  801. data/spec/models/entities/campaign_spec.rb +136 -0
  802. data/spec/models/entities/contact_opportunity_spec.rb +32 -0
  803. data/spec/models/entities/contact_spec.rb +208 -0
  804. data/spec/models/entities/lead_spec.rb +102 -0
  805. data/spec/models/entities/opportunity_spec.rb +287 -0
  806. data/spec/models/fields/custom_field_date_pair_spec.rb +88 -0
  807. data/spec/models/fields/custom_field_pair_spec.rb +74 -0
  808. data/spec/models/fields/custom_field_spec.rb +125 -0
  809. data/spec/models/fields/field_group_spec.rb +27 -0
  810. data/spec/models/fields/field_spec.rb +65 -0
  811. data/spec/models/list_spec.rb +17 -0
  812. data/spec/models/observers/entity_observer_spec.rb +72 -0
  813. data/spec/models/polymorphic/address_spec.rb +36 -0
  814. data/spec/models/polymorphic/avatar_spec.rb +44 -0
  815. data/spec/models/polymorphic/comment_spec.rb +47 -0
  816. data/spec/models/polymorphic/email_spec.rb +40 -0
  817. data/spec/models/polymorphic/task_spec.rb +385 -0
  818. data/spec/models/polymorphic/version_spec.rb +244 -0
  819. data/spec/models/setting_spec.rb +54 -0
  820. data/spec/models/users/abilities/user_ability_spec.rb +63 -0
  821. data/spec/models/users/authentication_spec.rb +17 -0
  822. data/spec/models/users/group_spec.rb +9 -0
  823. data/spec/models/users/permission_spec.rb +48 -0
  824. data/spec/models/users/preference_spec.rb +69 -0
  825. data/spec/models/users/user_spec.rb +237 -0
  826. data/spec/routing/accounts_routing_spec.rb +58 -0
  827. data/spec/routing/admin/users_routing_spec.rb +38 -0
  828. data/spec/routing/campaigns_routing_spec.rb +62 -0
  829. data/spec/routing/comments_routing_spec.rb +30 -0
  830. data/spec/routing/contacts_routing_spec.rb +58 -0
  831. data/spec/routing/emails_routing_spec.rb +38 -0
  832. data/spec/routing/leads_routing_spec.rb +86 -0
  833. data/spec/routing/opportunities_routing_spec.rb +62 -0
  834. data/spec/routing/tasks_routing_spec.rb +66 -0
  835. data/spec/routing/users_routing_spec.rb +82 -0
  836. data/spec/shared/controllers.rb +103 -0
  837. data/spec/shared/models.rb +139 -0
  838. data/spec/spec_helper.rb +107 -0
  839. data/spec/support/assert_select.rb +164 -0
  840. data/spec/support/auth_macros.rb +48 -0
  841. data/spec/support/macros.rb +44 -0
  842. data/spec/support/mail_processor_mocks.rb +35 -0
  843. data/spec/support/uploaded_file.rb +8 -0
  844. data/spec/views/accounts/_edit.haml_spec.rb +42 -0
  845. data/spec/views/accounts/_new.haml_spec.rb +40 -0
  846. data/spec/views/accounts/create.js.haml_spec.rb +51 -0
  847. data/spec/views/accounts/destroy.js.haml_spec.rb +32 -0
  848. data/spec/views/accounts/edit.js.haml_spec.rb +64 -0
  849. data/spec/views/accounts/index.haml_spec.rb +41 -0
  850. data/spec/views/accounts/index.js.haml_spec.rb +32 -0
  851. data/spec/views/accounts/new.js.haml_spec.rb +42 -0
  852. data/spec/views/accounts/show.haml_spec.rb +33 -0
  853. data/spec/views/accounts/update.js.haml_spec.rb +94 -0
  854. data/spec/views/admin/field_groups/create.js.haml_spec.rb +29 -0
  855. data/spec/views/admin/field_groups/destroy.js.haml_spec.rb +29 -0
  856. data/spec/views/admin/field_groups/edit.js.haml_spec.rb +22 -0
  857. data/spec/views/admin/field_groups/new.js.haml_spec.rb +23 -0
  858. data/spec/views/admin/field_groups/update.js.haml_spec.rb +28 -0
  859. data/spec/views/admin/users/_create.haml_spec.rb +21 -0
  860. data/spec/views/admin/users/create.js.haml_spec.rb +40 -0
  861. data/spec/views/admin/users/destroy.js.haml_spec.rb +51 -0
  862. data/spec/views/admin/users/edit.js.haml_spec.rb +42 -0
  863. data/spec/views/admin/users/index.haml_spec.rb +20 -0
  864. data/spec/views/admin/users/index.js.haml_spec.rb +24 -0
  865. data/spec/views/admin/users/new.js.haml_spec.rb +32 -0
  866. data/spec/views/admin/users/reactivate.js.haml_spec.rb +20 -0
  867. data/spec/views/admin/users/show.haml_spec.rb +16 -0
  868. data/spec/views/admin/users/suspend.js.haml_spec.rb +20 -0
  869. data/spec/views/admin/users/update.js.haml_spec.rb +36 -0
  870. data/spec/views/application/auto_complete.haml_spec.rb +46 -0
  871. data/spec/views/authentications/new.haml_spec.rb +29 -0
  872. data/spec/views/campaigns/_edit.haml_spec.rb +42 -0
  873. data/spec/views/campaigns/_new.haml_spec.rb +39 -0
  874. data/spec/views/campaigns/create.js.haml_spec.rb +48 -0
  875. data/spec/views/campaigns/destroy.js.haml_spec.rb +30 -0
  876. data/spec/views/campaigns/edit.js.haml_spec.rb +64 -0
  877. data/spec/views/campaigns/index.haml_spec.rb +35 -0
  878. data/spec/views/campaigns/index.js.haml_spec.rb +32 -0
  879. data/spec/views/campaigns/new.js.haml_spec.rb +48 -0
  880. data/spec/views/campaigns/show.haml_spec.rb +33 -0
  881. data/spec/views/campaigns/update.js.haml_spec.rb +80 -0
  882. data/spec/views/comments/edit.js.haml_spec.rb +29 -0
  883. data/spec/views/contacts/_edit.haml_spec.rb +71 -0
  884. data/spec/views/contacts/_new.haml_spec.rb +50 -0
  885. data/spec/views/contacts/create.js.haml_spec.rb +64 -0
  886. data/spec/views/contacts/destroy.js.haml_spec.rb +43 -0
  887. data/spec/views/contacts/edit.js.haml_spec.rb +72 -0
  888. data/spec/views/contacts/index.haml_spec.rb +35 -0
  889. data/spec/views/contacts/index.js.html_spec.rb +32 -0
  890. data/spec/views/contacts/new.js.haml_spec.rb +45 -0
  891. data/spec/views/contacts/show.haml_spec.rb +30 -0
  892. data/spec/views/contacts/update.js.haml_spec.rb +130 -0
  893. data/spec/views/home/index.haml_spec.rb +34 -0
  894. data/spec/views/home/index.js.haml_spec.rb +31 -0
  895. data/spec/views/home/options.js.haml_spec.rb +51 -0
  896. data/spec/views/leads/_convert.haml_spec.rb +28 -0
  897. data/spec/views/leads/_edit.haml_spec.rb +45 -0
  898. data/spec/views/leads/_new.haml_spec.rb +43 -0
  899. data/spec/views/leads/_sidebar_show.haml_spec.rb +29 -0
  900. data/spec/views/leads/convert.js.haml_spec.rb +77 -0
  901. data/spec/views/leads/create.js.haml_spec.rb +68 -0
  902. data/spec/views/leads/destroy.js.haml_spec.rb +47 -0
  903. data/spec/views/leads/edit.js.haml_spec.rb +74 -0
  904. data/spec/views/leads/index.haml_spec.rb +35 -0
  905. data/spec/views/leads/index.js.haml_spec.rb +32 -0
  906. data/spec/views/leads/new.js.haml_spec.rb +45 -0
  907. data/spec/views/leads/promote.js.haml_spec.rb +141 -0
  908. data/spec/views/leads/reject.js.haml_spec.rb +46 -0
  909. data/spec/views/leads/show.haml_spec.rb +27 -0
  910. data/spec/views/leads/update.js.haml_spec.rb +124 -0
  911. data/spec/views/opportunities/_edit.haml_spec.rb +68 -0
  912. data/spec/views/opportunities/_new.haml_spec.rb +49 -0
  913. data/spec/views/opportunities/create.js.haml_spec.rb +86 -0
  914. data/spec/views/opportunities/destroy.js.haml_spec.rb +65 -0
  915. data/spec/views/opportunities/edit.js.haml_spec.rb +73 -0
  916. data/spec/views/opportunities/index.haml_spec.rb +36 -0
  917. data/spec/views/opportunities/index.js.haml_spec.rb +33 -0
  918. data/spec/views/opportunities/new.js.haml_spec.rb +52 -0
  919. data/spec/views/opportunities/show.haml_spec.rb +30 -0
  920. data/spec/views/opportunities/update.js.haml_spec.rb +149 -0
  921. data/spec/views/tasks/_edit.haml_spec.rb +48 -0
  922. data/spec/views/tasks/complete.js.haml_spec.rb +66 -0
  923. data/spec/views/tasks/create.js.haml_spec.rb +119 -0
  924. data/spec/views/tasks/destroy.js.haml_spec.rb +56 -0
  925. data/spec/views/tasks/edit.js.haml_spec.rb +74 -0
  926. data/spec/views/tasks/index.haml_spec.rb +44 -0
  927. data/spec/views/tasks/new.js.haml_spec.rb +47 -0
  928. data/spec/views/tasks/uncomplete.js.haml_spec.rb +44 -0
  929. data/spec/views/tasks/update.js.haml_spec.rb +141 -0
  930. data/spec/views/users/avatar.js.haml_spec.rb +33 -0
  931. data/spec/views/users/change_password.js.haml_spec.rb +50 -0
  932. data/spec/views/users/edit.js.haml_spec.rb +33 -0
  933. data/spec/views/users/password.js.haml_spec.rb +34 -0
  934. data/spec/views/users/update.js.haml_spec.rb +45 -0
  935. data/spec/views/users/upload_avatar.js.haml_spec.rb +44 -0
  936. data/vendor/assets/images/calendar_date_select/calendar.gif +0 -0
  937. data/vendor/assets/images/chosen-sprite.png +0 -0
  938. data/vendor/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
  939. data/vendor/assets/images/jquery-ui/ui-bg_flat_0_eeeeee_40x100.png +0 -0
  940. data/vendor/assets/images/jquery-ui/ui-bg_flat_100_ffffff_40x100.png +0 -0
  941. data/vendor/assets/images/jquery-ui/ui-bg_flat_25_3875d7_40x100.png +0 -0
  942. data/vendor/assets/images/jquery-ui/ui-bg_flat_55_ffffff_40x100.png +0 -0
  943. data/vendor/assets/images/jquery-ui/ui-bg_flat_65_3875d7_40x100.png +0 -0
  944. data/vendor/assets/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
  945. data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_50_dddddd_1x100.png +0 -0
  946. data/vendor/assets/images/jquery-ui/ui-icons_0073ea_256x240.png +0 -0
  947. data/vendor/assets/images/jquery-ui/ui-icons_466bb1_256x240.png +0 -0
  948. data/vendor/assets/images/jquery-ui/ui-icons_ff0084_256x240.png +0 -0
  949. data/vendor/assets/images/jquery-ui/ui-icons_ffffff_256x240.png +0 -0
  950. data/vendor/assets/javascripts/ajax-chosen-jquery.js +2 -0
  951. data/vendor/assets/javascripts/ajax-chosen.jquery.coffee +171 -0
  952. data/vendor/assets/javascripts/chosen-jquery.js +3 -0
  953. data/vendor/assets/javascripts/chosen.jquery.coffee +574 -0
  954. data/vendor/assets/javascripts/jquery.disable.js +23 -0
  955. data/vendor/assets/javascripts/jquery_timeago/index.js +19 -0
  956. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.cz.js +18 -0
  957. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.de.js +18 -0
  958. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-GB.js +20 -0
  959. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-US.js +20 -0
  960. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.es-CL.js +18 -0
  961. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.es.js +18 -0
  962. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr-CA.js +17 -0
  963. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr.js +17 -0
  964. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.it.js +16 -0
  965. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ja.js +19 -0
  966. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.js +194 -0
  967. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.nl.js +20 -0
  968. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pl.js +31 -0
  969. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pt-BR.js +18 -0
  970. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ru.js +34 -0
  971. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.sv-SE.js +18 -0
  972. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.th.js +20 -0
  973. data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.zh-CN.js +20 -0
  974. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-addon.js +1882 -0
  975. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-af.js +20 -0
  976. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-ca.js +20 -0
  977. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-cz.js +20 -0
  978. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-de.js +20 -0
  979. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-el.js +20 -0
  980. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-es-CL.js +20 -0
  981. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-es.js +20 -0
  982. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-et.js +20 -0
  983. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-fi.js +20 -0
  984. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-fr-CA.js +20 -0
  985. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-fr.js +20 -0
  986. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-gl.js +20 -0
  987. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-he.js +20 -0
  988. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-hu.js +20 -0
  989. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-id.js +20 -0
  990. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-it.js +20 -0
  991. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-ja.js +20 -0
  992. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-ko.js +20 -0
  993. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-lt.js +20 -0
  994. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-nl.js +20 -0
  995. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-no.js +20 -0
  996. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-pl.js +20 -0
  997. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-pt-BR.js +22 -0
  998. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-pt.js +20 -0
  999. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-ro.js +20 -0
  1000. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-ru.js +20 -0
  1001. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-sk.js +20 -0
  1002. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-sv-SE.js +20 -0
  1003. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-th.js +19 -0
  1004. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-tr.js +20 -0
  1005. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-vi.js +20 -0
  1006. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-zh-CN.js +20 -0
  1007. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-zh-TW.js +20 -0
  1008. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-cz.js +23 -0
  1009. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-de.js +23 -0
  1010. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-en-GB.js +23 -0
  1011. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-es-CL.js +23 -0
  1012. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-es.js +23 -0
  1013. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-fr-CA.js +21 -0
  1014. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-fr.js +23 -0
  1015. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-it.js +23 -0
  1016. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-ja.js +23 -0
  1017. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-nl.js +21 -0
  1018. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-pl.js +23 -0
  1019. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-pt-BR.js +23 -0
  1020. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-pt.js +21 -0
  1021. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-ru.js +23 -0
  1022. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-sv-SE.js +23 -0
  1023. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-th.js +23 -0
  1024. data/vendor/assets/javascripts/jquery_ui_datepicker/jquery.ui.datepicker-zh-CN.js +23 -0
  1025. data/vendor/assets/javascripts/lib/abstract-chosen.coffee +110 -0
  1026. data/vendor/assets/javascripts/lib/select-parser.coffee +51 -0
  1027. data/vendor/assets/javascripts/rating.js +162 -0
  1028. data/vendor/assets/javascripts/textarea_autocomplete.js +605 -0
  1029. data/vendor/assets/stylesheets/chosen.css.sass +361 -0
  1030. data/vendor/assets/stylesheets/jquery-ui.custom.scss +566 -0
  1031. data/vendor/assets/stylesheets/modalbox.css +107 -0
  1032. data/vendor/gems/globby-0.1.2/LICENSE.txt +20 -0
  1033. data/vendor/gems/globby-0.1.2/README.md +65 -0
  1034. data/vendor/gems/globby-0.1.2/Rakefile +9 -0
  1035. data/vendor/gems/globby-0.1.2/lib/globby.rb +47 -0
  1036. data/vendor/gems/globby-0.1.2/lib/globby/glob.rb +90 -0
  1037. data/vendor/gems/globby-0.1.2/lib/globby/globject.rb +18 -0
  1038. data/vendor/gems/globby-0.1.2/lib/globby/result.rb +20 -0
  1039. data/vendor/gems/globby-0.1.2/spec/gitignore_spec.rb +109 -0
  1040. data/vendor/gems/globby-0.1.2/spec/globby_spec.rb +93 -0
  1041. data/zeus.json +22 -0
  1042. metadata +1566 -0
@@ -0,0 +1,31 @@
1
+ // Polish
2
+ (function() {
3
+ function numpf(n, s, t) {
4
+ // s - 2-4, 22-24, 32-34 ...
5
+ // t - 5-21, 25-31, ...
6
+ var n10 = n % 10;
7
+ if ( (n10 > 1) && (n10 < 5) && ( (n > 20) || (n < 10) ) ) {
8
+ return s;
9
+ } else {
10
+ return t;
11
+ }
12
+ }
13
+
14
+ jQuery.timeago.settings.locales['pl'] = {
15
+ prefixAgo: null,
16
+ prefixFromNow: "za",
17
+ suffixAgo: "temu",
18
+ suffixFromNow: null,
19
+ seconds: "mniej niż minutę",
20
+ minute: "minutę",
21
+ minutes: function(value) { return numpf(value, "%d minuty", "%d minut"); },
22
+ hour: "godzinę",
23
+ hours: function(value) { return numpf(value, "%d godziny", "%d godzin"); },
24
+ day: "dzień",
25
+ days: "%d dni",
26
+ month: "miesiąc",
27
+ months: function(value) { return numpf(value, "%d miesiące", "%d miesięcy"); },
28
+ year: "rok",
29
+ years: function(value) { return numpf(value, "%d lata", "%d lat"); }
30
+ };
31
+ })();
@@ -0,0 +1,18 @@
1
+ // Brazilian Portuguese
2
+ jQuery.timeago.settings.locales['pt-BR'] = {
3
+ prefixAgo: "há",
4
+ prefixFromNow: "em",
5
+ suffixAgo: null,
6
+ suffixFromNow: null,
7
+ seconds: "alguns segundos",
8
+ minute: "um minuto",
9
+ minutes: "%d minutos",
10
+ hour: "uma hora",
11
+ hours: "%d horas",
12
+ day: "um dia",
13
+ days: "%d dias",
14
+ month: "um mês",
15
+ months: "%d meses",
16
+ year: "um ano",
17
+ years: "%d anos"
18
+ };
@@ -0,0 +1,34 @@
1
+ // Russian
2
+ (function() {
3
+ function numpf(n, f, s, t) {
4
+ // f - 1, 21, 31, ...
5
+ // s - 2-4, 22-24, 32-34 ...
6
+ // t - 5-20, 25-30, ...
7
+ var n10 = n % 10;
8
+ if ( (n10 == 1) && ( (n == 1) || (n > 20) ) ) {
9
+ return f;
10
+ } else if ( (n10 > 1) && (n10 < 5) && ( (n > 20) || (n < 10) ) ) {
11
+ return s;
12
+ } else {
13
+ return t;
14
+ }
15
+ }
16
+
17
+ jQuery.timeago.settings.locales['ru'] = {
18
+ prefixAgo: null,
19
+ prefixFromNow: "через",
20
+ suffixAgo: "назад",
21
+ suffixFromNow: null,
22
+ seconds: "меньше минуты",
23
+ minute: "минуту",
24
+ minutes: function(value) { return numpf(value, "%d минута", "%d минуты", "%d минут"); },
25
+ hour: "час",
26
+ hours: function(value) { return numpf(value, "%d час", "%d часа", "%d часов"); },
27
+ day: "день",
28
+ days: function(value) { return numpf(value, "%d день", "%d дня", "%d дней"); },
29
+ month: "месяц",
30
+ months: function(value) { return numpf(value, "%d месяц", "%d месяца", "%d месяцев"); },
31
+ year: "год",
32
+ years: function(value) { return numpf(value, "%d год", "%d года", "%d лет"); }
33
+ };
34
+ })();
@@ -0,0 +1,18 @@
1
+ // Swedish
2
+ jQuery.timeago.settings.locales['sv-SE'] = {
3
+ prefixAgo: "för",
4
+ prefixFromNow: "om",
5
+ suffixAgo: "sedan",
6
+ suffixFromNow: "",
7
+ seconds: "mindre än en minut",
8
+ minute: "ungefär en minut",
9
+ minutes: "%d minuter",
10
+ hour: "ungefär en timme",
11
+ hours: "ungefär %d timmar",
12
+ day: "en dag",
13
+ days: "%d dagar",
14
+ month: "ungefär en månad",
15
+ months: "%d månader",
16
+ year: "ungefär ett år",
17
+ years: "%d år"
18
+ };
@@ -0,0 +1,20 @@
1
+ // Thai
2
+ jQuery.timeago.settings.locales['th'] = {
3
+ prefixAgo: null,
4
+ prefixFromNow: null,
5
+ suffixAgo: "ที่แล้ว",
6
+ suffixFromNow: "จากตอนนี้",
7
+ seconds: "น้อยกว่าหนึ่งนาที",
8
+ minute: "ประมาณหนึ่งนาที",
9
+ minutes: "%d นาที",
10
+ hour: "ประมาณหนึ่งชั่วโมง",
11
+ hours: "ประมาณ %d ชั่วโมง",
12
+ day: "หนึ่งวัน",
13
+ days: "%d วัน",
14
+ month: "ประมาณหนึ่งเดือน",
15
+ months: "%d เดือน",
16
+ year: "ประมาณหนึ่งปี",
17
+ years: "%d ปี",
18
+ wordSeparator: "",
19
+ numbers: []
20
+ };
@@ -0,0 +1,20 @@
1
+ // Simplified Chinese
2
+ jQuery.timeago.settings.locales['zh-CN'] = {
3
+ prefixAgo: null,
4
+ prefixFromNow: "从现在开始",
5
+ suffixAgo: "之前",
6
+ suffixFromNow: null,
7
+ seconds: "不到 1 分钟",
8
+ minute: "大约 1 分钟",
9
+ minutes: "%d 分钟",
10
+ hour: "大约 1 小时",
11
+ hours: "大约 %d 小时",
12
+ day: "1 天",
13
+ days: "%d 天",
14
+ month: "大约 1 个月",
15
+ months: "%d 月",
16
+ year: "大约 1 年",
17
+ years: "%d 年",
18
+ numbers: [],
19
+ wordSeparator: ""
20
+ };
@@ -0,0 +1,1882 @@
1
+ /*
2
+ * jQuery timepicker addon
3
+ * By: Trent Richardson [http://trentrichardson.com]
4
+ * Version 1.1.1
5
+ * Last Modified: 11/07/2012
6
+ *
7
+ * Copyright 2012 Trent Richardson
8
+ * You may use this project under MIT or GPL licenses.
9
+ * http://trentrichardson.com/Impromptu/GPL-LICENSE.txt
10
+ * http://trentrichardson.com/Impromptu/MIT-LICENSE.txt
11
+ */
12
+
13
+ /*jslint evil: true, white: false, undef: false, nomen: false */
14
+
15
+ (function($) {
16
+
17
+ /*
18
+ * Lets not redefine timepicker, Prevent "Uncaught RangeError: Maximum call stack size exceeded"
19
+ */
20
+ $.ui.timepicker = $.ui.timepicker || {};
21
+ if ($.ui.timepicker.version) {
22
+ return;
23
+ }
24
+
25
+ /*
26
+ * Extend jQueryUI, get it started with our version number
27
+ */
28
+ $.extend($.ui, {
29
+ timepicker: {
30
+ version: "1.1.1"
31
+ }
32
+ });
33
+
34
+ /*
35
+ * Timepicker manager.
36
+ * Use the singleton instance of this class, $.timepicker, to interact with the time picker.
37
+ * Settings for (groups of) time pickers are maintained in an instance object,
38
+ * allowing multiple different settings on the same page.
39
+ */
40
+ function Timepicker() {
41
+ this.regional = []; // Available regional settings, indexed by language code
42
+ this.regional[''] = { // Default regional settings
43
+ currentText: 'Now',
44
+ closeText: 'Done',
45
+ amNames: ['AM', 'A'],
46
+ pmNames: ['PM', 'P'],
47
+ timeFormat: 'HH:mm',
48
+ timeSuffix: '',
49
+ timeOnlyTitle: 'Choose Time',
50
+ timeText: 'Time',
51
+ hourText: 'Hour',
52
+ minuteText: 'Minute',
53
+ secondText: 'Second',
54
+ millisecText: 'Millisecond',
55
+ timezoneText: 'Time Zone',
56
+ isRTL: false
57
+ };
58
+ this._defaults = { // Global defaults for all the datetime picker instances
59
+ showButtonPanel: true,
60
+ timeOnly: false,
61
+ showHour: true,
62
+ showMinute: true,
63
+ showSecond: false,
64
+ showMillisec: false,
65
+ showTimezone: false,
66
+ showTime: true,
67
+ stepHour: 1,
68
+ stepMinute: 1,
69
+ stepSecond: 1,
70
+ stepMillisec: 1,
71
+ hour: 0,
72
+ minute: 0,
73
+ second: 0,
74
+ millisec: 0,
75
+ timezone: null,
76
+ useLocalTimezone: false,
77
+ defaultTimezone: "+0000",
78
+ hourMin: 0,
79
+ minuteMin: 0,
80
+ secondMin: 0,
81
+ millisecMin: 0,
82
+ hourMax: 23,
83
+ minuteMax: 59,
84
+ secondMax: 59,
85
+ millisecMax: 999,
86
+ minDateTime: null,
87
+ maxDateTime: null,
88
+ onSelect: null,
89
+ hourGrid: 0,
90
+ minuteGrid: 0,
91
+ secondGrid: 0,
92
+ millisecGrid: 0,
93
+ alwaysSetTime: true,
94
+ separator: ' ',
95
+ altFieldTimeOnly: true,
96
+ altTimeFormat: null,
97
+ altSeparator: null,
98
+ altTimeSuffix: null,
99
+ pickerTimeFormat: null,
100
+ pickerTimeSuffix: null,
101
+ showTimepicker: true,
102
+ timezoneIso8601: false,
103
+ timezoneList: null,
104
+ addSliderAccess: false,
105
+ sliderAccessArgs: null,
106
+ controlType: 'slider',
107
+ defaultValue: null,
108
+ parse: 'strict'
109
+ };
110
+ $.extend(this._defaults, this.regional['']);
111
+ }
112
+
113
+ $.extend(Timepicker.prototype, {
114
+ $input: null,
115
+ $altInput: null,
116
+ $timeObj: null,
117
+ inst: null,
118
+ hour_slider: null,
119
+ minute_slider: null,
120
+ second_slider: null,
121
+ millisec_slider: null,
122
+ timezone_select: null,
123
+ hour: 0,
124
+ minute: 0,
125
+ second: 0,
126
+ millisec: 0,
127
+ timezone: null,
128
+ defaultTimezone: "+0000",
129
+ hourMinOriginal: null,
130
+ minuteMinOriginal: null,
131
+ secondMinOriginal: null,
132
+ millisecMinOriginal: null,
133
+ hourMaxOriginal: null,
134
+ minuteMaxOriginal: null,
135
+ secondMaxOriginal: null,
136
+ millisecMaxOriginal: null,
137
+ ampm: '',
138
+ formattedDate: '',
139
+ formattedTime: '',
140
+ formattedDateTime: '',
141
+ timezoneList: null,
142
+ units: ['hour','minute','second','millisec'],
143
+ control: null,
144
+
145
+ /*
146
+ * Override the default settings for all instances of the time picker.
147
+ * @param settings object - the new settings to use as defaults (anonymous object)
148
+ * @return the manager object
149
+ */
150
+ setDefaults: function(settings) {
151
+ extendRemove(this._defaults, settings || {});
152
+ return this;
153
+ },
154
+
155
+ /*
156
+ * Create a new Timepicker instance
157
+ */
158
+ _newInst: function($input, o) {
159
+ var tp_inst = new Timepicker(),
160
+ inlineSettings = {},
161
+ fns = {},
162
+ overrides, i;
163
+
164
+ for (var attrName in this._defaults) {
165
+ if(this._defaults.hasOwnProperty(attrName)){
166
+ var attrValue = $input.attr('time:' + attrName);
167
+ if (attrValue) {
168
+ try {
169
+ inlineSettings[attrName] = eval(attrValue);
170
+ } catch (err) {
171
+ inlineSettings[attrName] = attrValue;
172
+ }
173
+ }
174
+ }
175
+ }
176
+ overrides = {
177
+ beforeShow: function (input, dp_inst) {
178
+ if ($.isFunction(tp_inst._defaults.evnts.beforeShow)) {
179
+ return tp_inst._defaults.evnts.beforeShow.call($input[0], input, dp_inst, tp_inst);
180
+ }
181
+ },
182
+ onChangeMonthYear: function (year, month, dp_inst) {
183
+ // Update the time as well : this prevents the time from disappearing from the $input field.
184
+ tp_inst._updateDateTime(dp_inst);
185
+ if ($.isFunction(tp_inst._defaults.evnts.onChangeMonthYear)) {
186
+ tp_inst._defaults.evnts.onChangeMonthYear.call($input[0], year, month, dp_inst, tp_inst);
187
+ }
188
+ },
189
+ onClose: function (dateText, dp_inst) {
190
+ if (tp_inst.timeDefined === true && $input.val() !== '') {
191
+ tp_inst._updateDateTime(dp_inst);
192
+ }
193
+ if ($.isFunction(tp_inst._defaults.evnts.onClose)) {
194
+ tp_inst._defaults.evnts.onClose.call($input[0], dateText, dp_inst, tp_inst);
195
+ }
196
+ }
197
+ };
198
+ for (i in overrides) {
199
+ if (overrides.hasOwnProperty(i)) {
200
+ fns[i] = o[i] || null;
201
+ }
202
+ }
203
+ tp_inst._defaults = $.extend({}, this._defaults, inlineSettings, o, overrides, {
204
+ evnts:fns,
205
+ timepicker: tp_inst // add timepicker as a property of datepicker: $.datepicker._get(dp_inst, 'timepicker');
206
+ });
207
+ tp_inst.amNames = $.map(tp_inst._defaults.amNames, function(val) {
208
+ return val.toUpperCase();
209
+ });
210
+ tp_inst.pmNames = $.map(tp_inst._defaults.pmNames, function(val) {
211
+ return val.toUpperCase();
212
+ });
213
+
214
+ // controlType is string - key to our this._controls
215
+ if(typeof(tp_inst._defaults.controlType) === 'string'){
216
+ if($.fn[tp_inst._defaults.controlType] === undefined){
217
+ tp_inst._defaults.controlType = 'select';
218
+ }
219
+ tp_inst.control = tp_inst._controls[tp_inst._defaults.controlType];
220
+ }
221
+ // controlType is an object and must implement create, options, value methods
222
+ else{
223
+ tp_inst.control = tp_inst._defaults.controlType;
224
+ }
225
+
226
+ if (tp_inst._defaults.timezoneList === null) {
227
+ var timezoneList = ['-1200', '-1100', '-1000', '-0930', '-0900', '-0800', '-0700', '-0600', '-0500', '-0430', '-0400', '-0330', '-0300', '-0200', '-0100', '+0000',
228
+ '+0100', '+0200', '+0300', '+0330', '+0400', '+0430', '+0500', '+0530', '+0545', '+0600', '+0630', '+0700', '+0800', '+0845', '+0900', '+0930',
229
+ '+1000', '+1030', '+1100', '+1130', '+1200', '+1245', '+1300', '+1400'];
230
+
231
+ if (tp_inst._defaults.timezoneIso8601) {
232
+ timezoneList = $.map(timezoneList, function(val) {
233
+ return val == '+0000' ? 'Z' : (val.substring(0, 3) + ':' + val.substring(3));
234
+ });
235
+ }
236
+ tp_inst._defaults.timezoneList = timezoneList;
237
+ }
238
+
239
+ tp_inst.timezone = tp_inst._defaults.timezone;
240
+ tp_inst.hour = tp_inst._defaults.hour;
241
+ tp_inst.minute = tp_inst._defaults.minute;
242
+ tp_inst.second = tp_inst._defaults.second;
243
+ tp_inst.millisec = tp_inst._defaults.millisec;
244
+ tp_inst.ampm = '';
245
+ tp_inst.$input = $input;
246
+
247
+ if (o.altField) {
248
+ tp_inst.$altInput = $(o.altField).css({
249
+ cursor: 'pointer'
250
+ }).focus(function() {
251
+ $input.trigger("focus");
252
+ });
253
+ }
254
+
255
+ if (tp_inst._defaults.minDate === 0 || tp_inst._defaults.minDateTime === 0) {
256
+ tp_inst._defaults.minDate = new Date();
257
+ }
258
+ if (tp_inst._defaults.maxDate === 0 || tp_inst._defaults.maxDateTime === 0) {
259
+ tp_inst._defaults.maxDate = new Date();
260
+ }
261
+
262
+ // datepicker needs minDate/maxDate, timepicker needs minDateTime/maxDateTime..
263
+ if (tp_inst._defaults.minDate !== undefined && tp_inst._defaults.minDate instanceof Date) {
264
+ tp_inst._defaults.minDateTime = new Date(tp_inst._defaults.minDate.getTime());
265
+ }
266
+ if (tp_inst._defaults.minDateTime !== undefined && tp_inst._defaults.minDateTime instanceof Date) {
267
+ tp_inst._defaults.minDate = new Date(tp_inst._defaults.minDateTime.getTime());
268
+ }
269
+ if (tp_inst._defaults.maxDate !== undefined && tp_inst._defaults.maxDate instanceof Date) {
270
+ tp_inst._defaults.maxDateTime = new Date(tp_inst._defaults.maxDate.getTime());
271
+ }
272
+ if (tp_inst._defaults.maxDateTime !== undefined && tp_inst._defaults.maxDateTime instanceof Date) {
273
+ tp_inst._defaults.maxDate = new Date(tp_inst._defaults.maxDateTime.getTime());
274
+ }
275
+ tp_inst.$input.bind('focus', function() {
276
+ tp_inst._onFocus();
277
+ });
278
+
279
+ return tp_inst;
280
+ },
281
+
282
+ /*
283
+ * add our sliders to the calendar
284
+ */
285
+ _addTimePicker: function(dp_inst) {
286
+ var currDT = (this.$altInput && this._defaults.altFieldTimeOnly) ? this.$input.val() + ' ' + this.$altInput.val() : this.$input.val();
287
+
288
+ this.timeDefined = this._parseTime(currDT);
289
+ this._limitMinMaxDateTime(dp_inst, false);
290
+ this._injectTimePicker();
291
+ },
292
+
293
+ /*
294
+ * parse the time string from input value or _setTime
295
+ */
296
+ _parseTime: function(timeString, withDate) {
297
+ if (!this.inst) {
298
+ this.inst = $.datepicker._getInst(this.$input[0]);
299
+ }
300
+
301
+ if (withDate || !this._defaults.timeOnly) {
302
+ var dp_dateFormat = $.datepicker._get(this.inst, 'dateFormat');
303
+ try {
304
+ var parseRes = parseDateTimeInternal(dp_dateFormat, this._defaults.timeFormat, timeString, $.datepicker._getFormatConfig(this.inst), this._defaults);
305
+ if (!parseRes.timeObj) {
306
+ return false;
307
+ }
308
+ $.extend(this, parseRes.timeObj);
309
+ } catch (err) {
310
+ $.datepicker.log("Error parsing the date/time string: " + err +
311
+ "\ndate/time string = " + timeString +
312
+ "\ntimeFormat = " + this._defaults.timeFormat +
313
+ "\ndateFormat = " + dp_dateFormat);
314
+ return false;
315
+ }
316
+ return true;
317
+ } else {
318
+ var timeObj = $.datepicker.parseTime(this._defaults.timeFormat, timeString, this._defaults);
319
+ if (!timeObj) {
320
+ return false;
321
+ }
322
+ $.extend(this, timeObj);
323
+ return true;
324
+ }
325
+ },
326
+
327
+ /*
328
+ * generate and inject html for timepicker into ui datepicker
329
+ */
330
+ _injectTimePicker: function() {
331
+ var $dp = this.inst.dpDiv,
332
+ o = this.inst.settings,
333
+ tp_inst = this,
334
+ litem = '',
335
+ uitem = '',
336
+ max = {},
337
+ gridSize = {},
338
+ size = null;
339
+
340
+ // Prevent displaying twice
341
+ if ($dp.find("div.ui-timepicker-div").length === 0 && o.showTimepicker) {
342
+ var noDisplay = ' style="display:none;"',
343
+ html = '<div class="ui-timepicker-div'+ (o.isRTL? ' ui-timepicker-rtl' : '') +'"><dl>' + '<dt class="ui_tpicker_time_label"' + ((o.showTime) ? '' : noDisplay) + '>' + o.timeText + '</dt>' +
344
+ '<dd class="ui_tpicker_time"' + ((o.showTime) ? '' : noDisplay) + '></dd>';
345
+
346
+ // Create the markup
347
+ for(var i=0,l=this.units.length; i<l; i++){
348
+ litem = this.units[i];
349
+ uitem = litem.substr(0,1).toUpperCase() + litem.substr(1);
350
+ // Added by Peter Medeiros:
351
+ // - Figure out what the hour/minute/second max should be based on the step values.
352
+ // - Example: if stepMinute is 15, then minMax is 45.
353
+ max[litem] = parseInt((o[litem+'Max'] - ((o[litem+'Max'] - o[litem+'Min']) % o['step'+uitem])), 10);
354
+ gridSize[litem] = 0;
355
+
356
+ html += '<dt class="ui_tpicker_'+ litem +'_label"' + ((o['show'+uitem]) ? '' : noDisplay) + '>' + o[litem +'Text'] + '</dt>' +
357
+ '<dd class="ui_tpicker_'+ litem +'"><div class="ui_tpicker_'+ litem +'_slider"' + ((o['show'+uitem]) ? '' : noDisplay) + '></div>';
358
+
359
+ if (o['show'+uitem] && o[litem+'Grid'] > 0) {
360
+ html += '<div style="padding-left: 1px"><table class="ui-tpicker-grid-label"><tr>';
361
+
362
+ if(litem == 'hour'){
363
+ for (var h = o[litem+'Min']; h <= max[litem]; h += parseInt(o[litem+'Grid'], 10)) {
364
+ gridSize[litem]++;
365
+ var tmph = $.datepicker.formatTime(useAmpm(o.pickerTimeFormat || o.timeFormat)? 'hht':'HH', {hour:h}, o);
366
+ html += '<td data-for="'+litem+'">' + tmph + '</td>';
367
+ }
368
+ }
369
+ else{
370
+ for (var m = o[litem+'Min']; m <= max[litem]; m += parseInt(o[litem+'Grid'], 10)) {
371
+ gridSize[litem]++;
372
+ html += '<td data-for="'+litem+'">' + ((m < 10) ? '0' : '') + m + '</td>';
373
+ }
374
+ }
375
+
376
+ html += '</tr></table></div>';
377
+ }
378
+ html += '</dd>';
379
+ }
380
+
381
+ // Timezone
382
+ html += '<dt class="ui_tpicker_timezone_label"' + ((o.showTimezone) ? '' : noDisplay) + '>' + o.timezoneText + '</dt>';
383
+ html += '<dd class="ui_tpicker_timezone" ' + ((o.showTimezone) ? '' : noDisplay) + '></dd>';
384
+
385
+ // Create the elements from string
386
+ html += '</dl></div>';
387
+ var $tp = $(html);
388
+
389
+ // if we only want time picker...
390
+ if (o.timeOnly === true) {
391
+ $tp.prepend('<div class="ui-widget-header ui-helper-clearfix ui-corner-all">' + '<div class="ui-datepicker-title">' + o.timeOnlyTitle + '</div>' + '</div>');
392
+ $dp.find('.ui-datepicker-header, .ui-datepicker-calendar').hide();
393
+ }
394
+
395
+ // add sliders, adjust grids, add events
396
+ for(var i=0,l=tp_inst.units.length; i<l; i++){
397
+ litem = tp_inst.units[i];
398
+ uitem = litem.substr(0,1).toUpperCase() + litem.substr(1);
399
+
400
+ // add the slider
401
+ tp_inst[litem+'_slider'] = tp_inst.control.create(tp_inst, $tp.find('.ui_tpicker_'+litem+'_slider'), litem, tp_inst[litem], o[litem+'Min'], max[litem], o['step'+uitem]);
402
+
403
+ // adjust the grid and add click event
404
+ if (o['show'+uitem] && o[litem+'Grid'] > 0) {
405
+ size = 100 * gridSize[litem] * o[litem+'Grid'] / (max[litem] - o[litem+'Min']);
406
+ $tp.find('.ui_tpicker_'+litem+' table').css({
407
+ width: size + "%",
408
+ marginLeft: o.isRTL? '0' : ((size / (-2 * gridSize[litem])) + "%"),
409
+ marginRight: o.isRTL? ((size / (-2 * gridSize[litem])) + "%") : '0',
410
+ borderCollapse: 'collapse'
411
+ }).find("td").click(function(e){
412
+ var $t = $(this),
413
+ h = $t.html(),
414
+ n = parseInt(h.replace(/[^0-9]/g),10),
415
+ ap = h.replace(/[^apm]/ig),
416
+ f = $t.data('for'); // loses scope, so we use data-for
417
+
418
+ if(f == 'hour'){
419
+ if(ap.indexOf('p') !== -1 && n < 12){
420
+ n += 12;
421
+ }
422
+ else{
423
+ if(ap.indexOf('a') !== -1 && n === 12){
424
+ n = 0;
425
+ }
426
+ }
427
+ }
428
+
429
+ tp_inst.control.value(tp_inst, tp_inst[f+'_slider'], litem, n);
430
+
431
+ tp_inst._onTimeChange();
432
+ tp_inst._onSelectHandler();
433
+ })
434
+ .css({
435
+ cursor: 'pointer',
436
+ width: (100 / gridSize[litem]) + '%',
437
+ textAlign: 'center',
438
+ overflow: 'hidden'
439
+ });
440
+ } // end if grid > 0
441
+ } // end for loop
442
+
443
+ // Add timezone options
444
+ this.timezone_select = $tp.find('.ui_tpicker_timezone').append('<select></select>').find("select");
445
+ $.fn.append.apply(this.timezone_select,
446
+ $.map(o.timezoneList, function(val, idx) {
447
+ return $("<option />").val(typeof val == "object" ? val.value : val).text(typeof val == "object" ? val.label : val);
448
+ }));
449
+ if (typeof(this.timezone) != "undefined" && this.timezone !== null && this.timezone !== "") {
450
+ var local_date = new Date(this.inst.selectedYear, this.inst.selectedMonth, this.inst.selectedDay, 12);
451
+ var local_timezone = $.timepicker.timeZoneOffsetString(local_date);
452
+ if (local_timezone == this.timezone) {
453
+ selectLocalTimeZone(tp_inst);
454
+ } else {
455
+ this.timezone_select.val(this.timezone);
456
+ }
457
+ } else {
458
+ if (typeof(this.hour) != "undefined" && this.hour !== null && this.hour !== "") {
459
+ this.timezone_select.val(o.defaultTimezone);
460
+ } else {
461
+ selectLocalTimeZone(tp_inst);
462
+ }
463
+ }
464
+ this.timezone_select.change(function() {
465
+ tp_inst._defaults.useLocalTimezone = false;
466
+ tp_inst._onTimeChange();
467
+ });
468
+ // End timezone options
469
+
470
+ // inject timepicker into datepicker
471
+ var $buttonPanel = $dp.find('.ui-datepicker-buttonpane');
472
+ if ($buttonPanel.length) {
473
+ $buttonPanel.before($tp);
474
+ } else {
475
+ $dp.append($tp);
476
+ }
477
+
478
+ this.$timeObj = $tp.find('.ui_tpicker_time');
479
+
480
+ if (this.inst !== null) {
481
+ var timeDefined = this.timeDefined;
482
+ this._onTimeChange();
483
+ this.timeDefined = timeDefined;
484
+ }
485
+
486
+ // slideAccess integration: http://trentrichardson.com/2011/11/11/jquery-ui-sliders-and-touch-accessibility/
487
+ if (this._defaults.addSliderAccess) {
488
+ var sliderAccessArgs = this._defaults.sliderAccessArgs,
489
+ rtl = this._defaults.isRTL;
490
+ sliderAccessArgs.isRTL = rtl;
491
+
492
+ setTimeout(function() { // fix for inline mode
493
+ if ($tp.find('.ui-slider-access').length === 0) {
494
+ $tp.find('.ui-slider:visible').sliderAccess(sliderAccessArgs);
495
+
496
+ // fix any grids since sliders are shorter
497
+ var sliderAccessWidth = $tp.find('.ui-slider-access:eq(0)').outerWidth(true);
498
+ if (sliderAccessWidth) {
499
+ $tp.find('table:visible').each(function() {
500
+ var $g = $(this),
501
+ oldWidth = $g.outerWidth(),
502
+ oldMarginLeft = $g.css(rtl? 'marginRight':'marginLeft').toString().replace('%', ''),
503
+ newWidth = oldWidth - sliderAccessWidth,
504
+ newMarginLeft = ((oldMarginLeft * newWidth) / oldWidth) + '%',
505
+ css = { width: newWidth, marginRight: 0, marginLeft: 0 };
506
+ css[rtl? 'marginRight':'marginLeft'] = newMarginLeft;
507
+ $g.css(css);
508
+ });
509
+ }
510
+ }
511
+ }, 10);
512
+ }
513
+ // end slideAccess integration
514
+
515
+ }
516
+ },
517
+
518
+ /*
519
+ * This function tries to limit the ability to go outside the
520
+ * min/max date range
521
+ */
522
+ _limitMinMaxDateTime: function(dp_inst, adjustSliders) {
523
+ var o = this._defaults,
524
+ dp_date = new Date(dp_inst.selectedYear, dp_inst.selectedMonth, dp_inst.selectedDay);
525
+
526
+ if (!this._defaults.showTimepicker) {
527
+ return;
528
+ } // No time so nothing to check here
529
+
530
+ if ($.datepicker._get(dp_inst, 'minDateTime') !== null && $.datepicker._get(dp_inst, 'minDateTime') !== undefined && dp_date) {
531
+ var minDateTime = $.datepicker._get(dp_inst, 'minDateTime'),
532
+ minDateTimeDate = new Date(minDateTime.getFullYear(), minDateTime.getMonth(), minDateTime.getDate(), 0, 0, 0, 0);
533
+
534
+ if (this.hourMinOriginal === null || this.minuteMinOriginal === null || this.secondMinOriginal === null || this.millisecMinOriginal === null) {
535
+ this.hourMinOriginal = o.hourMin;
536
+ this.minuteMinOriginal = o.minuteMin;
537
+ this.secondMinOriginal = o.secondMin;
538
+ this.millisecMinOriginal = o.millisecMin;
539
+ }
540
+
541
+ if (dp_inst.settings.timeOnly || minDateTimeDate.getTime() == dp_date.getTime()) {
542
+ this._defaults.hourMin = minDateTime.getHours();
543
+ if (this.hour <= this._defaults.hourMin) {
544
+ this.hour = this._defaults.hourMin;
545
+ this._defaults.minuteMin = minDateTime.getMinutes();
546
+ if (this.minute <= this._defaults.minuteMin) {
547
+ this.minute = this._defaults.minuteMin;
548
+ this._defaults.secondMin = minDateTime.getSeconds();
549
+ if (this.second <= this._defaults.secondMin) {
550
+ this.second = this._defaults.secondMin;
551
+ this._defaults.millisecMin = minDateTime.getMilliseconds();
552
+ } else {
553
+ if (this.millisec < this._defaults.millisecMin) {
554
+ this.millisec = this._defaults.millisecMin;
555
+ }
556
+ this._defaults.millisecMin = this.millisecMinOriginal;
557
+ }
558
+ } else {
559
+ this._defaults.secondMin = this.secondMinOriginal;
560
+ this._defaults.millisecMin = this.millisecMinOriginal;
561
+ }
562
+ } else {
563
+ this._defaults.minuteMin = this.minuteMinOriginal;
564
+ this._defaults.secondMin = this.secondMinOriginal;
565
+ this._defaults.millisecMin = this.millisecMinOriginal;
566
+ }
567
+ } else {
568
+ this._defaults.hourMin = this.hourMinOriginal;
569
+ this._defaults.minuteMin = this.minuteMinOriginal;
570
+ this._defaults.secondMin = this.secondMinOriginal;
571
+ this._defaults.millisecMin = this.millisecMinOriginal;
572
+ }
573
+ }
574
+
575
+ if ($.datepicker._get(dp_inst, 'maxDateTime') !== null && $.datepicker._get(dp_inst, 'maxDateTime') !== undefined && dp_date) {
576
+ var maxDateTime = $.datepicker._get(dp_inst, 'maxDateTime'),
577
+ maxDateTimeDate = new Date(maxDateTime.getFullYear(), maxDateTime.getMonth(), maxDateTime.getDate(), 0, 0, 0, 0);
578
+
579
+ if (this.hourMaxOriginal === null || this.minuteMaxOriginal === null || this.secondMaxOriginal === null) {
580
+ this.hourMaxOriginal = o.hourMax;
581
+ this.minuteMaxOriginal = o.minuteMax;
582
+ this.secondMaxOriginal = o.secondMax;
583
+ this.millisecMaxOriginal = o.millisecMax;
584
+ }
585
+
586
+ if (dp_inst.settings.timeOnly || maxDateTimeDate.getTime() == dp_date.getTime()) {
587
+ this._defaults.hourMax = maxDateTime.getHours();
588
+ if (this.hour >= this._defaults.hourMax) {
589
+ this.hour = this._defaults.hourMax;
590
+ this._defaults.minuteMax = maxDateTime.getMinutes();
591
+ if (this.minute >= this._defaults.minuteMax) {
592
+ this.minute = this._defaults.minuteMax;
593
+ this._defaults.secondMax = maxDateTime.getSeconds();
594
+ } else if (this.second >= this._defaults.secondMax) {
595
+ this.second = this._defaults.secondMax;
596
+ this._defaults.millisecMax = maxDateTime.getMilliseconds();
597
+ } else {
598
+ if (this.millisec > this._defaults.millisecMax) {
599
+ this.millisec = this._defaults.millisecMax;
600
+ }
601
+ this._defaults.millisecMax = this.millisecMaxOriginal;
602
+ }
603
+ } else {
604
+ this._defaults.minuteMax = this.minuteMaxOriginal;
605
+ this._defaults.secondMax = this.secondMaxOriginal;
606
+ this._defaults.millisecMax = this.millisecMaxOriginal;
607
+ }
608
+ } else {
609
+ this._defaults.hourMax = this.hourMaxOriginal;
610
+ this._defaults.minuteMax = this.minuteMaxOriginal;
611
+ this._defaults.secondMax = this.secondMaxOriginal;
612
+ this._defaults.millisecMax = this.millisecMaxOriginal;
613
+ }
614
+ }
615
+
616
+ if (adjustSliders !== undefined && adjustSliders === true) {
617
+ var hourMax = parseInt((this._defaults.hourMax - ((this._defaults.hourMax - this._defaults.hourMin) % this._defaults.stepHour)), 10),
618
+ minMax = parseInt((this._defaults.minuteMax - ((this._defaults.minuteMax - this._defaults.minuteMin) % this._defaults.stepMinute)), 10),
619
+ secMax = parseInt((this._defaults.secondMax - ((this._defaults.secondMax - this._defaults.secondMin) % this._defaults.stepSecond)), 10),
620
+ millisecMax = parseInt((this._defaults.millisecMax - ((this._defaults.millisecMax - this._defaults.millisecMin) % this._defaults.stepMillisec)), 10);
621
+
622
+ if (this.hour_slider) {
623
+ this.control.options(this, this.hour_slider, 'hour', { min: this._defaults.hourMin, max: hourMax });
624
+ this.control.value(this, this.hour_slider, 'hour', this.hour);
625
+ }
626
+ if (this.minute_slider) {
627
+ this.control.options(this, this.minute_slider, 'minute', { min: this._defaults.minuteMin, max: minMax });
628
+ this.control.value(this, this.minute_slider, 'minute', this.minute);
629
+ }
630
+ if (this.second_slider) {
631
+ this.control.options(this, this.second_slider, 'second', { min: this._defaults.secondMin, max: secMax });
632
+ this.control.value(this, this.second_slider, 'second', this.second);
633
+ }
634
+ if (this.millisec_slider) {
635
+ this.control.options(this, this.millisec_slider, 'millisec', { min: this._defaults.millisecMin, max: millisecMax });
636
+ this.control.value(this, this.millisec_slider, 'millisec', this.millisec);
637
+ }
638
+ }
639
+
640
+ },
641
+
642
+ /*
643
+ * when a slider moves, set the internal time...
644
+ * on time change is also called when the time is updated in the text field
645
+ */
646
+ _onTimeChange: function() {
647
+ var hour = (this.hour_slider) ? this.control.value(this, this.hour_slider, 'hour') : false,
648
+ minute = (this.minute_slider) ? this.control.value(this, this.minute_slider, 'minute') : false,
649
+ second = (this.second_slider) ? this.control.value(this, this.second_slider, 'second') : false,
650
+ millisec = (this.millisec_slider) ? this.control.value(this, this.millisec_slider, 'millisec') : false,
651
+ timezone = (this.timezone_select) ? this.timezone_select.val() : false,
652
+ o = this._defaults,
653
+ pickerTimeFormat = o.pickerTimeFormat || o.timeFormat,
654
+ pickerTimeSuffix = o.pickerTimeSuffix || o.timeSuffix;
655
+
656
+ if (typeof(hour) == 'object') {
657
+ hour = false;
658
+ }
659
+ if (typeof(minute) == 'object') {
660
+ minute = false;
661
+ }
662
+ if (typeof(second) == 'object') {
663
+ second = false;
664
+ }
665
+ if (typeof(millisec) == 'object') {
666
+ millisec = false;
667
+ }
668
+ if (typeof(timezone) == 'object') {
669
+ timezone = false;
670
+ }
671
+
672
+ if (hour !== false) {
673
+ hour = parseInt(hour, 10);
674
+ }
675
+ if (minute !== false) {
676
+ minute = parseInt(minute, 10);
677
+ }
678
+ if (second !== false) {
679
+ second = parseInt(second, 10);
680
+ }
681
+ if (millisec !== false) {
682
+ millisec = parseInt(millisec, 10);
683
+ }
684
+
685
+ var ampm = o[hour < 12 ? 'amNames' : 'pmNames'][0];
686
+
687
+ // If the update was done in the input field, the input field should not be updated.
688
+ // If the update was done using the sliders, update the input field.
689
+ var hasChanged = (hour != this.hour || minute != this.minute || second != this.second || millisec != this.millisec
690
+ || (this.ampm.length > 0 && (hour < 12) != ($.inArray(this.ampm.toUpperCase(), this.amNames) !== -1))
691
+ || ((this.timezone === null && timezone != this.defaultTimezone) || (this.timezone !== null && timezone != this.timezone)));
692
+
693
+ if (hasChanged) {
694
+
695
+ if (hour !== false) {
696
+ this.hour = hour;
697
+ }
698
+ if (minute !== false) {
699
+ this.minute = minute;
700
+ }
701
+ if (second !== false) {
702
+ this.second = second;
703
+ }
704
+ if (millisec !== false) {
705
+ this.millisec = millisec;
706
+ }
707
+ if (timezone !== false) {
708
+ this.timezone = timezone;
709
+ }
710
+
711
+ if (!this.inst) {
712
+ this.inst = $.datepicker._getInst(this.$input[0]);
713
+ }
714
+
715
+ this._limitMinMaxDateTime(this.inst, true);
716
+ }
717
+ if (useAmpm(o.timeFormat)) {
718
+ this.ampm = ampm;
719
+ }
720
+
721
+ // Updates the time within the timepicker
722
+ this.formattedTime = $.datepicker.formatTime(o.timeFormat, this, o);
723
+ if (this.$timeObj) {
724
+ if(pickerTimeFormat === o.timeFormat){
725
+ this.$timeObj.text(this.formattedTime + pickerTimeSuffix);
726
+ }
727
+ else{
728
+ this.$timeObj.text($.datepicker.formatTime(pickerTimeFormat, this, o) + pickerTimeSuffix);
729
+ }
730
+ }
731
+
732
+ this.timeDefined = true;
733
+ if (hasChanged) {
734
+ this._updateDateTime();
735
+ }
736
+ },
737
+
738
+ /*
739
+ * call custom onSelect.
740
+ * bind to sliders slidestop, and grid click.
741
+ */
742
+ _onSelectHandler: function() {
743
+ var onSelect = this._defaults.onSelect || this.inst.settings.onSelect;
744
+ var inputEl = this.$input ? this.$input[0] : null;
745
+ if (onSelect && inputEl) {
746
+ onSelect.apply(inputEl, [this.formattedDateTime, this]);
747
+ }
748
+ },
749
+
750
+ /*
751
+ * update our input with the new date time..
752
+ */
753
+ _updateDateTime: function(dp_inst) {
754
+ dp_inst = this.inst || dp_inst;
755
+ var dt = $.datepicker._daylightSavingAdjust(new Date(dp_inst.selectedYear, dp_inst.selectedMonth, dp_inst.selectedDay)),
756
+ dateFmt = $.datepicker._get(dp_inst, 'dateFormat'),
757
+ formatCfg = $.datepicker._getFormatConfig(dp_inst),
758
+ timeAvailable = dt !== null && this.timeDefined;
759
+ this.formattedDate = $.datepicker.formatDate(dateFmt, (dt === null ? new Date() : dt), formatCfg);
760
+ var formattedDateTime = this.formattedDate;
761
+
762
+ /*
763
+ * remove following lines to force every changes in date picker to change the input value
764
+ * Bug descriptions: when an input field has a default value, and click on the field to pop up the date picker.
765
+ * If the user manually empty the value in the input field, the date picker will never change selected value.
766
+ */
767
+ //if (dp_inst.lastVal !== undefined && (dp_inst.lastVal.length > 0 && this.$input.val().length === 0)) {
768
+ // return;
769
+ //}
770
+
771
+ if (this._defaults.timeOnly === true) {
772
+ formattedDateTime = this.formattedTime;
773
+ } else if (this._defaults.timeOnly !== true && (this._defaults.alwaysSetTime || timeAvailable)) {
774
+ formattedDateTime += this._defaults.separator + this.formattedTime + this._defaults.timeSuffix;
775
+ }
776
+
777
+ this.formattedDateTime = formattedDateTime;
778
+
779
+ if (!this._defaults.showTimepicker) {
780
+ this.$input.val(this.formattedDate);
781
+ } else if (this.$altInput && this._defaults.altFieldTimeOnly === true) {
782
+ this.$altInput.val(this.formattedTime);
783
+ this.$input.val(this.formattedDate);
784
+ } else if (this.$altInput) {
785
+ this.$input.val(formattedDateTime);
786
+ var altFormattedDateTime = '',
787
+ altSeparator = this._defaults.altSeparator ? this._defaults.altSeparator : this._defaults.separator,
788
+ altTimeSuffix = this._defaults.altTimeSuffix ? this._defaults.altTimeSuffix : this._defaults.timeSuffix;
789
+
790
+ if (this._defaults.altFormat) altFormattedDateTime = $.datepicker.formatDate(this._defaults.altFormat, (dt === null ? new Date() : dt), formatCfg);
791
+ else altFormattedDateTime = this.formattedDate;
792
+ if (altFormattedDateTime) altFormattedDateTime += altSeparator;
793
+ if (this._defaults.altTimeFormat) altFormattedDateTime += $.datepicker.formatTime(this._defaults.altTimeFormat, this, this._defaults) + altTimeSuffix;
794
+ else altFormattedDateTime += this.formattedTime + altTimeSuffix;
795
+ this.$altInput.val(altFormattedDateTime);
796
+ } else {
797
+ this.$input.val(formattedDateTime);
798
+ }
799
+
800
+ this.$input.trigger("change");
801
+ },
802
+
803
+ _onFocus: function() {
804
+ if (!this.$input.val() && this._defaults.defaultValue) {
805
+ this.$input.val(this._defaults.defaultValue);
806
+ var inst = $.datepicker._getInst(this.$input.get(0)),
807
+ tp_inst = $.datepicker._get(inst, 'timepicker');
808
+ if (tp_inst) {
809
+ if (tp_inst._defaults.timeOnly && (inst.input.val() != inst.lastVal)) {
810
+ try {
811
+ $.datepicker._updateDatepicker(inst);
812
+ } catch (err) {
813
+ $.datepicker.log(err);
814
+ }
815
+ }
816
+ }
817
+ }
818
+ },
819
+
820
+ /*
821
+ * Small abstraction to control types
822
+ * We can add more, just be sure to follow the pattern: create, options, value
823
+ */
824
+ _controls: {
825
+ // slider methods
826
+ slider: {
827
+ create: function(tp_inst, obj, unit, val, min, max, step){
828
+ var rtl = tp_inst._defaults.isRTL; // if rtl go -60->0 instead of 0->60
829
+ return obj.prop('slide', null).slider({
830
+ orientation: "horizontal",
831
+ value: rtl? val*-1 : val,
832
+ min: rtl? max*-1 : min,
833
+ max: rtl? min*-1 : max,
834
+ step: step,
835
+ slide: function(event, ui) {
836
+ tp_inst.control.value(tp_inst, $(this), unit, rtl? ui.value*-1:ui.value);
837
+ tp_inst._onTimeChange();
838
+ },
839
+ stop: function(event, ui) {
840
+ tp_inst._onSelectHandler();
841
+ }
842
+ });
843
+ },
844
+ options: function(tp_inst, obj, unit, opts, val){
845
+ if(tp_inst._defaults.isRTL){
846
+ if(typeof(opts) == 'string'){
847
+ if(opts == 'min' || opts == 'max'){
848
+ if(val !== undefined)
849
+ return obj.slider(opts, val*-1);
850
+ return Math.abs(obj.slider(opts));
851
+ }
852
+ return obj.slider(opts);
853
+ }
854
+ var min = opts.min,
855
+ max = opts.max;
856
+ opts.min = opts.max = null;
857
+ if(min !== undefined)
858
+ opts.max = min * -1;
859
+ if(max !== undefined)
860
+ opts.min = max * -1;
861
+ return obj.slider(opts);
862
+ }
863
+ if(typeof(opts) == 'string' && val !== undefined)
864
+ return obj.slider(opts, val);
865
+ return obj.slider(opts);
866
+ },
867
+ value: function(tp_inst, obj, unit, val){
868
+ if(tp_inst._defaults.isRTL){
869
+ if(val !== undefined)
870
+ return obj.slider('value', val*-1);
871
+ return Math.abs(obj.slider('value'));
872
+ }
873
+ if(val !== undefined)
874
+ return obj.slider('value', val);
875
+ return obj.slider('value');
876
+ }
877
+ },
878
+ // select methods
879
+ select: {
880
+ create: function(tp_inst, obj, unit, val, min, max, step){
881
+ var sel = '<select class="ui-timepicker-select" data-unit="'+ unit +'" data-min="'+ min +'" data-max="'+ max +'" data-step="'+ step +'">',
882
+ ul = tp_inst._defaults.timeFormat.indexOf('t') !== -1? 'toLowerCase':'toUpperCase',
883
+ m = 0;
884
+
885
+ for(var i=min; i<=max; i+=step){
886
+ sel += '<option value="'+ i +'"'+ (i==val? ' selected':'') +'>';
887
+ if(unit == 'hour' && useAmpm(tp_inst._defaults.pickerTimeFormat || tp_inst._defaults.timeFormat))
888
+ sel += $.datepicker.formatTime("hh TT", {hour:i}, tp_inst._defaults);
889
+ else if(unit == 'millisec' || i >= 10) sel += i;
890
+ else sel += '0'+ i.toString();
891
+ sel += '</option>';
892
+ }
893
+ sel += '</select>';
894
+
895
+ obj.children('select').remove();
896
+
897
+ $(sel).appendTo(obj).change(function(e){
898
+ tp_inst._onTimeChange();
899
+ tp_inst._onSelectHandler();
900
+ });
901
+
902
+ return obj;
903
+ },
904
+ options: function(tp_inst, obj, unit, opts, val){
905
+ var o = {},
906
+ $t = obj.children('select');
907
+ if(typeof(opts) == 'string'){
908
+ if(val === undefined)
909
+ return $t.data(opts);
910
+ o[opts] = val;
911
+ }
912
+ else o = opts;
913
+ return tp_inst.control.create(tp_inst, obj, $t.data('unit'), $t.val(), o.min || $t.data('min'), o.max || $t.data('max'), o.step || $t.data('step'));
914
+ },
915
+ value: function(tp_inst, obj, unit, val){
916
+ var $t = obj.children('select');
917
+ if(val !== undefined)
918
+ return $t.val(val);
919
+ return $t.val();
920
+ }
921
+ }
922
+ } // end _controls
923
+
924
+ });
925
+
926
+ $.fn.extend({
927
+ /*
928
+ * shorthand just to use timepicker..
929
+ */
930
+ timepicker: function(o) {
931
+ o = o || {};
932
+ var tmp_args = Array.prototype.slice.call(arguments);
933
+
934
+ if (typeof o == 'object') {
935
+ tmp_args[0] = $.extend(o, {
936
+ timeOnly: true
937
+ });
938
+ }
939
+
940
+ return $(this).each(function() {
941
+ $.fn.datetimepicker.apply($(this), tmp_args);
942
+ });
943
+ },
944
+
945
+ /*
946
+ * extend timepicker to datepicker
947
+ */
948
+ datetimepicker: function(o) {
949
+ o = o || {};
950
+ var tmp_args = arguments;
951
+
952
+ if (typeof(o) == 'string') {
953
+ if (o == 'getDate') {
954
+ return $.fn.datepicker.apply($(this[0]), tmp_args);
955
+ } else {
956
+ return this.each(function() {
957
+ var $t = $(this);
958
+ $t.datepicker.apply($t, tmp_args);
959
+ });
960
+ }
961
+ } else {
962
+ return this.each(function() {
963
+ var $t = $(this);
964
+ $t.datepicker($.timepicker._newInst($t, o)._defaults);
965
+ });
966
+ }
967
+ }
968
+ });
969
+
970
+ /*
971
+ * Public Utility to parse date and time
972
+ */
973
+ $.datepicker.parseDateTime = function(dateFormat, timeFormat, dateTimeString, dateSettings, timeSettings) {
974
+ var parseRes = parseDateTimeInternal(dateFormat, timeFormat, dateTimeString, dateSettings, timeSettings);
975
+ if (parseRes.timeObj) {
976
+ var t = parseRes.timeObj;
977
+ parseRes.date.setHours(t.hour, t.minute, t.second, t.millisec);
978
+ }
979
+
980
+ return parseRes.date;
981
+ };
982
+
983
+ /*
984
+ * Public utility to parse time
985
+ */
986
+ $.datepicker.parseTime = function(timeFormat, timeString, options) {
987
+ var o = extendRemove(extendRemove({}, $.timepicker._defaults), options || {});
988
+
989
+ // Strict parse requires the timeString to match the timeFormat exactly
990
+ var strictParse = function(f, s, o){
991
+
992
+ // pattern for standard and localized AM/PM markers
993
+ var getPatternAmpm = function(amNames, pmNames) {
994
+ var markers = [];
995
+ if (amNames) {
996
+ $.merge(markers, amNames);
997
+ }
998
+ if (pmNames) {
999
+ $.merge(markers, pmNames);
1000
+ }
1001
+ markers = $.map(markers, function(val) {
1002
+ return val.replace(/[.*+?|()\[\]{}\\]/g, '\\$&');
1003
+ });
1004
+ return '(' + markers.join('|') + ')?';
1005
+ };
1006
+
1007
+ // figure out position of time elements.. cause js cant do named captures
1008
+ var getFormatPositions = function(timeFormat) {
1009
+ var finds = timeFormat.toLowerCase().match(/(h{1,2}|m{1,2}|s{1,2}|l{1}|t{1,2}|z|'.*?')/g),
1010
+ orders = {
1011
+ h: -1,
1012
+ m: -1,
1013
+ s: -1,
1014
+ l: -1,
1015
+ t: -1,
1016
+ z: -1
1017
+ };
1018
+
1019
+ if (finds) {
1020
+ for (var i = 0; i < finds.length; i++) {
1021
+ if (orders[finds[i].toString().charAt(0)] == -1) {
1022
+ orders[finds[i].toString().charAt(0)] = i + 1;
1023
+ }
1024
+ }
1025
+ }
1026
+ return orders;
1027
+ };
1028
+
1029
+ var regstr = '^' + f.toString()
1030
+ .replace(/([hH]{1,2}|mm?|ss?|[tT]{1,2}|[lz]|'.*?')/g, function (match) {
1031
+ switch (match.charAt(0).toLowerCase()) {
1032
+ case 'h': return '(\\d?\\d)';
1033
+ case 'm': return '(\\d?\\d)';
1034
+ case 's': return '(\\d?\\d)';
1035
+ case 'l': return '(\\d?\\d?\\d)';
1036
+ case 'z': return '(z|[-+]\\d\\d:?\\d\\d|\\S+)?';
1037
+ case 't': return getPatternAmpm(o.amNames, o.pmNames);
1038
+ default: // literal escaped in quotes
1039
+ return '(' + match.replace(/\'/g, "").replace(/(\.|\$|\^|\\|\/|\(|\)|\[|\]|\?|\+|\*)/g, function (m) { return "\\" + m; }) + ')?';
1040
+ }
1041
+ })
1042
+ .replace(/\s/g, '\\s?') +
1043
+ o.timeSuffix + '$',
1044
+ order = getFormatPositions(f),
1045
+ ampm = '',
1046
+ treg;
1047
+
1048
+ treg = s.match(new RegExp(regstr, 'i'));
1049
+
1050
+ var resTime = {
1051
+ hour: 0,
1052
+ minute: 0,
1053
+ second: 0,
1054
+ millisec: 0
1055
+ };
1056
+
1057
+ if (treg) {
1058
+ if (order.t !== -1) {
1059
+ if (treg[order.t] === undefined || treg[order.t].length === 0) {
1060
+ ampm = '';
1061
+ resTime.ampm = '';
1062
+ } else {
1063
+ ampm = $.inArray(treg[order.t].toUpperCase(), o.amNames) !== -1 ? 'AM' : 'PM';
1064
+ resTime.ampm = o[ampm == 'AM' ? 'amNames' : 'pmNames'][0];
1065
+ }
1066
+ }
1067
+
1068
+ if (order.h !== -1) {
1069
+ if (ampm == 'AM' && treg[order.h] == '12') {
1070
+ resTime.hour = 0; // 12am = 0 hour
1071
+ } else {
1072
+ if (ampm == 'PM' && treg[order.h] != '12') {
1073
+ resTime.hour = parseInt(treg[order.h], 10) + 12; // 12pm = 12 hour, any other pm = hour + 12
1074
+ } else {
1075
+ resTime.hour = Number(treg[order.h]);
1076
+ }
1077
+ }
1078
+ }
1079
+
1080
+ if (order.m !== -1) {
1081
+ resTime.minute = Number(treg[order.m]);
1082
+ }
1083
+ if (order.s !== -1) {
1084
+ resTime.second = Number(treg[order.s]);
1085
+ }
1086
+ if (order.l !== -1) {
1087
+ resTime.millisec = Number(treg[order.l]);
1088
+ }
1089
+ if (order.z !== -1 && treg[order.z] !== undefined) {
1090
+ var tz = treg[order.z].toUpperCase();
1091
+ switch (tz.length) {
1092
+ case 1:
1093
+ // Z
1094
+ tz = o.timezoneIso8601 ? 'Z' : '+0000';
1095
+ break;
1096
+ case 5:
1097
+ // +hhmm
1098
+ if (o.timezoneIso8601) {
1099
+ tz = tz.substring(1) == '0000' ? 'Z' : tz.substring(0, 3) + ':' + tz.substring(3);
1100
+ }
1101
+ break;
1102
+ case 6:
1103
+ // +hh:mm
1104
+ if (!o.timezoneIso8601) {
1105
+ tz = tz == 'Z' || tz.substring(1) == '00:00' ? '+0000' : tz.replace(/:/, '');
1106
+ } else {
1107
+ if (tz.substring(1) == '00:00') {
1108
+ tz = 'Z';
1109
+ }
1110
+ }
1111
+ break;
1112
+ }
1113
+ resTime.timezone = tz;
1114
+ }
1115
+
1116
+
1117
+ return resTime;
1118
+ }
1119
+ return false;
1120
+ };// end strictParse
1121
+
1122
+ // First try JS Date, if that fails, use strictParse
1123
+ var looseParse = function(f,s,o){
1124
+ try{
1125
+ var d = new Date('2012-01-01 '+ s);
1126
+ return {
1127
+ hour: d.getHours(),
1128
+ minutes: d.getMinutes(),
1129
+ seconds: d.getSeconds(),
1130
+ millisec: d.getMilliseconds(),
1131
+ timezone: $.timepicker.timeZoneOffsetString(d)
1132
+ };
1133
+ }
1134
+ catch(err){
1135
+ try{
1136
+ return strictParse(f,s,o);
1137
+ }
1138
+ catch(err2){
1139
+ $.datepicker.log("Unable to parse \ntimeString: "+ s +"\ntimeFormat: "+ f);
1140
+ }
1141
+ }
1142
+ return false;
1143
+ }; // end looseParse
1144
+
1145
+ if(typeof o.parse === "function"){
1146
+ return o.parse(timeFormat, timeString, o)
1147
+ }
1148
+ if(o.parse === 'loose'){
1149
+ return looseParse(timeFormat, timeString, o);
1150
+ }
1151
+ return strictParse(timeFormat, timeString, o);
1152
+ };
1153
+
1154
+ /*
1155
+ * Public utility to format the time
1156
+ * format = string format of the time
1157
+ * time = a {}, not a Date() for timezones
1158
+ * options = essentially the regional[].. amNames, pmNames, ampm
1159
+ */
1160
+ $.datepicker.formatTime = function(format, time, options) {
1161
+ options = options || {};
1162
+ options = $.extend({}, $.timepicker._defaults, options);
1163
+ time = $.extend({
1164
+ hour: 0,
1165
+ minute: 0,
1166
+ second: 0,
1167
+ millisec: 0,
1168
+ timezone: '+0000'
1169
+ }, time);
1170
+
1171
+ var tmptime = format,
1172
+ ampmName = options.amNames[0],
1173
+ hour = parseInt(time.hour, 10);
1174
+
1175
+ if (hour > 11) {
1176
+ ampmName = options.pmNames[0];
1177
+ }
1178
+
1179
+ tmptime = tmptime.replace(/(?:HH?|hh?|mm?|ss?|[tT]{1,2}|[lz]|('.*?'|".*?"))/g, function(match) {
1180
+ switch (match) {
1181
+ case 'HH':
1182
+ return ('0' + hour).slice(-2);
1183
+ case 'H':
1184
+ return hour;
1185
+ case 'hh':
1186
+ return ('0' + convert24to12(hour)).slice(-2);
1187
+ case 'h':
1188
+ return convert24to12(hour);
1189
+ case 'mm':
1190
+ return ('0' + time.minute).slice(-2);
1191
+ case 'm':
1192
+ return time.minute;
1193
+ case 'ss':
1194
+ return ('0' + time.second).slice(-2);
1195
+ case 's':
1196
+ return time.second;
1197
+ case 'l':
1198
+ return ('00' + time.millisec).slice(-3);
1199
+ case 'z':
1200
+ return time.timezone === null? options.defaultTimezone : time.timezone;
1201
+ case 'T':
1202
+ return ampmName.charAt(0).toUpperCase();
1203
+ case 'TT':
1204
+ return ampmName.toUpperCase();
1205
+ case 't':
1206
+ return ampmName.charAt(0).toLowerCase();
1207
+ case 'tt':
1208
+ return ampmName.toLowerCase();
1209
+ default:
1210
+ return match.replace(/\'/g, "") || "'";
1211
+ }
1212
+ });
1213
+
1214
+ tmptime = $.trim(tmptime);
1215
+ return tmptime;
1216
+ };
1217
+
1218
+ /*
1219
+ * the bad hack :/ override datepicker so it doesnt close on select
1220
+ // inspired: http://stackoverflow.com/questions/1252512/jquery-datepicker-prevent-closing-picker-when-clicking-a-date/1762378#1762378
1221
+ */
1222
+ $.datepicker._base_selectDate = $.datepicker._selectDate;
1223
+ $.datepicker._selectDate = function(id, dateStr) {
1224
+ var inst = this._getInst($(id)[0]),
1225
+ tp_inst = this._get(inst, 'timepicker');
1226
+
1227
+ if (tp_inst) {
1228
+ tp_inst._limitMinMaxDateTime(inst, true);
1229
+ inst.inline = inst.stay_open = true;
1230
+ //This way the onSelect handler called from calendarpicker get the full dateTime
1231
+ this._base_selectDate(id, dateStr);
1232
+ inst.inline = inst.stay_open = false;
1233
+ this._notifyChange(inst);
1234
+ this._updateDatepicker(inst);
1235
+ } else {
1236
+ this._base_selectDate(id, dateStr);
1237
+ }
1238
+ };
1239
+
1240
+ /*
1241
+ * second bad hack :/ override datepicker so it triggers an event when changing the input field
1242
+ * and does not redraw the datepicker on every selectDate event
1243
+ */
1244
+ $.datepicker._base_updateDatepicker = $.datepicker._updateDatepicker;
1245
+ $.datepicker._updateDatepicker = function(inst) {
1246
+
1247
+ // don't popup the datepicker if there is another instance already opened
1248
+ var input = inst.input[0];
1249
+ if ($.datepicker._curInst && $.datepicker._curInst != inst && $.datepicker._datepickerShowing && $.datepicker._lastInput != input) {
1250
+ return;
1251
+ }
1252
+
1253
+ if (typeof(inst.stay_open) !== 'boolean' || inst.stay_open === false) {
1254
+
1255
+ this._base_updateDatepicker(inst);
1256
+
1257
+ // Reload the time control when changing something in the input text field.
1258
+ var tp_inst = this._get(inst, 'timepicker');
1259
+ if (tp_inst) {
1260
+ tp_inst._addTimePicker(inst);
1261
+
1262
+ if (tp_inst._defaults.useLocalTimezone) { //checks daylight saving with the new date.
1263
+ var date = new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay, 12);
1264
+ selectLocalTimeZone(tp_inst, date);
1265
+ tp_inst._onTimeChange();
1266
+ }
1267
+ }
1268
+ }
1269
+ };
1270
+
1271
+ /*
1272
+ * third bad hack :/ override datepicker so it allows spaces and colon in the input field
1273
+ */
1274
+ $.datepicker._base_doKeyPress = $.datepicker._doKeyPress;
1275
+ $.datepicker._doKeyPress = function(event) {
1276
+ var inst = $.datepicker._getInst(event.target),
1277
+ tp_inst = $.datepicker._get(inst, 'timepicker');
1278
+
1279
+ if (tp_inst) {
1280
+ if ($.datepicker._get(inst, 'constrainInput')) {
1281
+ var ampm = useAmpm(tp_inst._defaults.timeFormat),
1282
+ dateChars = $.datepicker._possibleChars($.datepicker._get(inst, 'dateFormat')),
1283
+ datetimeChars = tp_inst._defaults.timeFormat.toString()
1284
+ .replace(/[hms]/g, '')
1285
+ .replace(/TT/g, ampm ? 'APM' : '')
1286
+ .replace(/Tt/g, ampm ? 'AaPpMm' : '')
1287
+ .replace(/tT/g, ampm ? 'AaPpMm' : '')
1288
+ .replace(/T/g, ampm ? 'AP' : '')
1289
+ .replace(/tt/g, ampm ? 'apm' : '')
1290
+ .replace(/t/g, ampm ? 'ap' : '') +
1291
+ " " + tp_inst._defaults.separator +
1292
+ tp_inst._defaults.timeSuffix +
1293
+ (tp_inst._defaults.showTimezone ? tp_inst._defaults.timezoneList.join('') : '') +
1294
+ (tp_inst._defaults.amNames.join('')) + (tp_inst._defaults.pmNames.join('')) +
1295
+ dateChars,
1296
+ chr = String.fromCharCode(event.charCode === undefined ? event.keyCode : event.charCode);
1297
+ return event.ctrlKey || (chr < ' ' || !dateChars || datetimeChars.indexOf(chr) > -1);
1298
+ }
1299
+ }
1300
+
1301
+ return $.datepicker._base_doKeyPress(event);
1302
+ };
1303
+
1304
+ /*
1305
+ * Fourth bad hack :/ override _updateAlternate function used in inline mode to init altField
1306
+ */
1307
+ $.datepicker._base_updateAlternate = $.datepicker._updateAlternate;
1308
+ /* Update any alternate field to synchronise with the main field. */
1309
+ $.datepicker._updateAlternate = function(inst) {
1310
+ var tp_inst = this._get(inst, 'timepicker');
1311
+ if(tp_inst){
1312
+ var altField = tp_inst._defaults.altField;
1313
+ if (altField) { // update alternate field too
1314
+ var altFormat = tp_inst._defaults.altFormat || tp_inst._defaults.dateFormat,
1315
+ date = this._getDate(inst),
1316
+ formatCfg = $.datepicker._getFormatConfig(inst),
1317
+ altFormattedDateTime = '',
1318
+ altSeparator = tp_inst._defaults.altSeparator ? tp_inst._defaults.altSeparator : tp_inst._defaults.separator,
1319
+ altTimeSuffix = tp_inst._defaults.altTimeSuffix ? tp_inst._defaults.altTimeSuffix : tp_inst._defaults.timeSuffix,
1320
+ altTimeFormat = tp_inst._defaults.altTimeFormat !== null ? tp_inst._defaults.altTimeFormat : tp_inst._defaults.timeFormat;
1321
+
1322
+ altFormattedDateTime += $.datepicker.formatTime(altTimeFormat, tp_inst, tp_inst._defaults) + altTimeSuffix;
1323
+ if(!tp_inst._defaults.timeOnly && !tp_inst._defaults.altFieldTimeOnly){
1324
+ if(tp_inst._defaults.altFormat)
1325
+ altFormattedDateTime = $.datepicker.formatDate(tp_inst._defaults.altFormat, (date === null ? new Date() : date), formatCfg) + altSeparator + altFormattedDateTime;
1326
+ else altFormattedDateTime = tp_inst.formattedDate + altSeparator + altFormattedDateTime;
1327
+ }
1328
+ $(altField).val(altFormattedDateTime);
1329
+ }
1330
+ }
1331
+ else{
1332
+ $.datepicker._base_updateAlternate(inst);
1333
+ }
1334
+ };
1335
+
1336
+ /*
1337
+ * Override key up event to sync manual input changes.
1338
+ */
1339
+ $.datepicker._base_doKeyUp = $.datepicker._doKeyUp;
1340
+ $.datepicker._doKeyUp = function(event) {
1341
+ var inst = $.datepicker._getInst(event.target),
1342
+ tp_inst = $.datepicker._get(inst, 'timepicker');
1343
+
1344
+ if (tp_inst) {
1345
+ if (tp_inst._defaults.timeOnly && (inst.input.val() != inst.lastVal)) {
1346
+ try {
1347
+ $.datepicker._updateDatepicker(inst);
1348
+ } catch (err) {
1349
+ $.datepicker.log(err);
1350
+ }
1351
+ }
1352
+ }
1353
+
1354
+ return $.datepicker._base_doKeyUp(event);
1355
+ };
1356
+
1357
+ /*
1358
+ * override "Today" button to also grab the time.
1359
+ */
1360
+ $.datepicker._base_gotoToday = $.datepicker._gotoToday;
1361
+ $.datepicker._gotoToday = function(id) {
1362
+ var inst = this._getInst($(id)[0]),
1363
+ $dp = inst.dpDiv;
1364
+ this._base_gotoToday(id);
1365
+ var tp_inst = this._get(inst, 'timepicker');
1366
+ selectLocalTimeZone(tp_inst);
1367
+ var now = new Date();
1368
+ this._setTime(inst, now);
1369
+ $('.ui-datepicker-today', $dp).click();
1370
+ };
1371
+
1372
+ /*
1373
+ * Disable & enable the Time in the datetimepicker
1374
+ */
1375
+ $.datepicker._disableTimepickerDatepicker = function(target) {
1376
+ var inst = this._getInst(target);
1377
+ if (!inst) {
1378
+ return;
1379
+ }
1380
+
1381
+ var tp_inst = this._get(inst, 'timepicker');
1382
+ $(target).datepicker('getDate'); // Init selected[Year|Month|Day]
1383
+ if (tp_inst) {
1384
+ tp_inst._defaults.showTimepicker = false;
1385
+ tp_inst._updateDateTime(inst);
1386
+ }
1387
+ };
1388
+
1389
+ $.datepicker._enableTimepickerDatepicker = function(target) {
1390
+ var inst = this._getInst(target);
1391
+ if (!inst) {
1392
+ return;
1393
+ }
1394
+
1395
+ var tp_inst = this._get(inst, 'timepicker');
1396
+ $(target).datepicker('getDate'); // Init selected[Year|Month|Day]
1397
+ if (tp_inst) {
1398
+ tp_inst._defaults.showTimepicker = true;
1399
+ tp_inst._addTimePicker(inst); // Could be disabled on page load
1400
+ tp_inst._updateDateTime(inst);
1401
+ }
1402
+ };
1403
+
1404
+ /*
1405
+ * Create our own set time function
1406
+ */
1407
+ $.datepicker._setTime = function(inst, date) {
1408
+ var tp_inst = this._get(inst, 'timepicker');
1409
+ if (tp_inst) {
1410
+ var defaults = tp_inst._defaults;
1411
+
1412
+ // calling _setTime with no date sets time to defaults
1413
+ tp_inst.hour = date ? date.getHours() : defaults.hour;
1414
+ tp_inst.minute = date ? date.getMinutes() : defaults.minute;
1415
+ tp_inst.second = date ? date.getSeconds() : defaults.second;
1416
+ tp_inst.millisec = date ? date.getMilliseconds() : defaults.millisec;
1417
+
1418
+ //check if within min/max times..
1419
+ tp_inst._limitMinMaxDateTime(inst, true);
1420
+
1421
+ tp_inst._onTimeChange();
1422
+ tp_inst._updateDateTime(inst);
1423
+ }
1424
+ };
1425
+
1426
+ /*
1427
+ * Create new public method to set only time, callable as $().datepicker('setTime', date)
1428
+ */
1429
+ $.datepicker._setTimeDatepicker = function(target, date, withDate) {
1430
+ var inst = this._getInst(target);
1431
+ if (!inst) {
1432
+ return;
1433
+ }
1434
+
1435
+ var tp_inst = this._get(inst, 'timepicker');
1436
+
1437
+ if (tp_inst) {
1438
+ this._setDateFromField(inst);
1439
+ var tp_date;
1440
+ if (date) {
1441
+ if (typeof date == "string") {
1442
+ tp_inst._parseTime(date, withDate);
1443
+ tp_date = new Date();
1444
+ tp_date.setHours(tp_inst.hour, tp_inst.minute, tp_inst.second, tp_inst.millisec);
1445
+ } else {
1446
+ tp_date = new Date(date.getTime());
1447
+ }
1448
+ if (tp_date.toString() == 'Invalid Date') {
1449
+ tp_date = undefined;
1450
+ }
1451
+ this._setTime(inst, tp_date);
1452
+ }
1453
+ }
1454
+
1455
+ };
1456
+
1457
+ /*
1458
+ * override setDate() to allow setting time too within Date object
1459
+ */
1460
+ $.datepicker._base_setDateDatepicker = $.datepicker._setDateDatepicker;
1461
+ $.datepicker._setDateDatepicker = function(target, date) {
1462
+ var inst = this._getInst(target);
1463
+ if (!inst) {
1464
+ return;
1465
+ }
1466
+
1467
+ var tp_date = (date instanceof Date) ? new Date(date.getTime()) : date;
1468
+
1469
+ this._updateDatepicker(inst);
1470
+ this._base_setDateDatepicker.apply(this, arguments);
1471
+ this._setTimeDatepicker(target, tp_date, true);
1472
+ };
1473
+
1474
+ /*
1475
+ * override getDate() to allow getting time too within Date object
1476
+ */
1477
+ $.datepicker._base_getDateDatepicker = $.datepicker._getDateDatepicker;
1478
+ $.datepicker._getDateDatepicker = function(target, noDefault) {
1479
+ var inst = this._getInst(target);
1480
+ if (!inst) {
1481
+ return;
1482
+ }
1483
+
1484
+ var tp_inst = this._get(inst, 'timepicker');
1485
+
1486
+ if (tp_inst) {
1487
+ // if it hasn't yet been defined, grab from field
1488
+ if(inst.lastVal === undefined){
1489
+ this._setDateFromField(inst, noDefault);
1490
+ }
1491
+
1492
+ var date = this._getDate(inst);
1493
+ if (date && tp_inst._parseTime($(target).val(), tp_inst.timeOnly)) {
1494
+ date.setHours(tp_inst.hour, tp_inst.minute, tp_inst.second, tp_inst.millisec);
1495
+ }
1496
+ return date;
1497
+ }
1498
+ return this._base_getDateDatepicker(target, noDefault);
1499
+ };
1500
+
1501
+ /*
1502
+ * override parseDate() because UI 1.8.14 throws an error about "Extra characters"
1503
+ * An option in datapicker to ignore extra format characters would be nicer.
1504
+ */
1505
+ $.datepicker._base_parseDate = $.datepicker.parseDate;
1506
+ $.datepicker.parseDate = function(format, value, settings) {
1507
+ var date;
1508
+ try {
1509
+ date = this._base_parseDate(format, value, settings);
1510
+ } catch (err) {
1511
+ // Hack! The error message ends with a colon, a space, and
1512
+ // the "extra" characters. We rely on that instead of
1513
+ // attempting to perfectly reproduce the parsing algorithm.
1514
+ date = this._base_parseDate(format, value.substring(0,value.length-(err.length-err.indexOf(':')-2)), settings);
1515
+ $.datepicker.log("Error parsing the date string: " + err + "\ndate string = " + value + "\ndate format = " + format);
1516
+ }
1517
+ return date;
1518
+ };
1519
+
1520
+ /*
1521
+ * override formatDate to set date with time to the input
1522
+ */
1523
+ $.datepicker._base_formatDate = $.datepicker._formatDate;
1524
+ $.datepicker._formatDate = function(inst, day, month, year) {
1525
+ var tp_inst = this._get(inst, 'timepicker');
1526
+ if (tp_inst) {
1527
+ tp_inst._updateDateTime(inst);
1528
+ return tp_inst.$input.val();
1529
+ }
1530
+ return this._base_formatDate(inst);
1531
+ };
1532
+
1533
+ /*
1534
+ * override options setter to add time to maxDate(Time) and minDate(Time). MaxDate
1535
+ */
1536
+ $.datepicker._base_optionDatepicker = $.datepicker._optionDatepicker;
1537
+ $.datepicker._optionDatepicker = function(target, name, value) {
1538
+ var inst = this._getInst(target),
1539
+ name_clone;
1540
+ if (!inst) {
1541
+ return null;
1542
+ }
1543
+
1544
+ var tp_inst = this._get(inst, 'timepicker');
1545
+ if (tp_inst) {
1546
+ var min = null,
1547
+ max = null,
1548
+ onselect = null,
1549
+ overrides = tp_inst._defaults.evnts,
1550
+ fns = {},
1551
+ prop;
1552
+ if (typeof name == 'string') { // if min/max was set with the string
1553
+ if (name === 'minDate' || name === 'minDateTime') {
1554
+ min = value;
1555
+ } else if (name === 'maxDate' || name === 'maxDateTime') {
1556
+ max = value;
1557
+ } else if (name === 'onSelect') {
1558
+ onselect = value;
1559
+ } else if (overrides.hasOwnProperty(name)) {
1560
+ if (typeof (value) === 'undefined') {
1561
+ return overrides[name];
1562
+ }
1563
+ fns[name] = value;
1564
+ name_clone = {}; //empty results in exiting function after overrides updated
1565
+ }
1566
+ } else if (typeof name == 'object') { //if min/max was set with the JSON
1567
+ if (name.minDate) {
1568
+ min = name.minDate;
1569
+ } else if (name.minDateTime) {
1570
+ min = name.minDateTime;
1571
+ } else if (name.maxDate) {
1572
+ max = name.maxDate;
1573
+ } else if (name.maxDateTime) {
1574
+ max = name.maxDateTime;
1575
+ }
1576
+ for (prop in overrides) {
1577
+ if (overrides.hasOwnProperty(prop) && name[prop]) {
1578
+ fns[prop] = name[prop];
1579
+ }
1580
+ }
1581
+ }
1582
+ for (prop in fns) {
1583
+ if (fns.hasOwnProperty(prop)) {
1584
+ overrides[prop] = fns[prop];
1585
+ if (!name_clone) { name_clone = $.extend({}, name);}
1586
+ delete name_clone[prop];
1587
+ }
1588
+ }
1589
+ if (name_clone && isEmptyObject(name_clone)) { return; }
1590
+ if (min) { //if min was set
1591
+ if (min === 0) {
1592
+ min = new Date();
1593
+ } else {
1594
+ min = new Date(min);
1595
+ }
1596
+ tp_inst._defaults.minDate = min;
1597
+ tp_inst._defaults.minDateTime = min;
1598
+ } else if (max) { //if max was set
1599
+ if (max === 0) {
1600
+ max = new Date();
1601
+ } else {
1602
+ max = new Date(max);
1603
+ }
1604
+ tp_inst._defaults.maxDate = max;
1605
+ tp_inst._defaults.maxDateTime = max;
1606
+ } else if (onselect) {
1607
+ tp_inst._defaults.onSelect = onselect;
1608
+ }
1609
+ }
1610
+ if (value === undefined) {
1611
+ return this._base_optionDatepicker.call($.datepicker, target, name);
1612
+ }
1613
+ return this._base_optionDatepicker.call($.datepicker, target, name_clone || name, value);
1614
+ };
1615
+ /*
1616
+ * jQuery isEmptyObject does not check hasOwnProperty - if someone has added to the object prototype,
1617
+ * it will return false for all objects
1618
+ */
1619
+ var isEmptyObject = function(obj) {
1620
+ var prop;
1621
+ for (prop in obj) {
1622
+ if (obj.hasOwnProperty(obj)) {
1623
+ return false;
1624
+ }
1625
+ }
1626
+ return true;
1627
+ };
1628
+
1629
+ /*
1630
+ * jQuery extend now ignores nulls!
1631
+ */
1632
+ var extendRemove = function(target, props) {
1633
+ $.extend(target, props);
1634
+ for (var name in props) {
1635
+ if (props[name] === null || props[name] === undefined) {
1636
+ target[name] = props[name];
1637
+ }
1638
+ }
1639
+ return target;
1640
+ };
1641
+
1642
+ /*
1643
+ * Determine by the time format if should use ampm
1644
+ * Returns true if should use ampm, false if not
1645
+ */
1646
+ var useAmpm = function(timeFormat){
1647
+ return (timeFormat.indexOf('t') !== -1 && timeFormat.indexOf('h') !== -1);
1648
+ };
1649
+
1650
+ /*
1651
+ * Converts 24 hour format into 12 hour
1652
+ * Returns 12 hour without leading 0
1653
+ */
1654
+ var convert24to12 = function(hour) {
1655
+ if (hour > 12) {
1656
+ hour = hour - 12;
1657
+ }
1658
+
1659
+ if (hour == 0) {
1660
+ hour = 12;
1661
+ }
1662
+
1663
+ return String(hour);
1664
+ };
1665
+
1666
+ /*
1667
+ * Splits datetime string into date ans time substrings.
1668
+ * Throws exception when date can't be parsed
1669
+ * Returns [dateString, timeString]
1670
+ */
1671
+ var splitDateTime = function(dateFormat, dateTimeString, dateSettings, timeSettings) {
1672
+ try {
1673
+ // The idea is to get the number separator occurances in datetime and the time format requested (since time has
1674
+ // fewer unknowns, mostly numbers and am/pm). We will use the time pattern to split.
1675
+ var separator = timeSettings && timeSettings.separator ? timeSettings.separator : $.timepicker._defaults.separator,
1676
+ format = timeSettings && timeSettings.timeFormat ? timeSettings.timeFormat : $.timepicker._defaults.timeFormat,
1677
+ timeParts = format.split(separator), // how many occurances of separator may be in our format?
1678
+ timePartsLen = timeParts.length,
1679
+ allParts = dateTimeString.split(separator),
1680
+ allPartsLen = allParts.length;
1681
+
1682
+ if (allPartsLen > 1) {
1683
+ return [
1684
+ allParts.splice(0,allPartsLen-timePartsLen).join(separator),
1685
+ allParts.splice(0,timePartsLen).join(separator)
1686
+ ];
1687
+ }
1688
+
1689
+ } catch (err) {
1690
+ $.datepicker.log('Could not split the date from the time. Please check the following datetimepicker options' +
1691
+ "\nthrown error: " + err +
1692
+ "\ndateTimeString" + dateTimeString +
1693
+ "\ndateFormat = " + dateFormat +
1694
+ "\nseparator = " + timeSettings.separator +
1695
+ "\ntimeFormat = " + timeSettings.timeFormat);
1696
+
1697
+ if (err.indexOf(":") >= 0) {
1698
+ // Hack! The error message ends with a colon, a space, and
1699
+ // the "extra" characters. We rely on that instead of
1700
+ // attempting to perfectly reproduce the parsing algorithm.
1701
+ var dateStringLength = dateTimeString.length - (err.length - err.indexOf(':') - 2),
1702
+ timeString = dateTimeString.substring(dateStringLength);
1703
+
1704
+ return [$.trim(dateTimeString.substring(0, dateStringLength)), $.trim(dateTimeString.substring(dateStringLength))];
1705
+
1706
+ } else {
1707
+ throw err;
1708
+ }
1709
+ }
1710
+ return [dateTimeString, ''];
1711
+ };
1712
+
1713
+ /*
1714
+ * Internal function to parse datetime interval
1715
+ * Returns: {date: Date, timeObj: Object}, where
1716
+ * date - parsed date without time (type Date)
1717
+ * timeObj = {hour: , minute: , second: , millisec: } - parsed time. Optional
1718
+ */
1719
+ var parseDateTimeInternal = function(dateFormat, timeFormat, dateTimeString, dateSettings, timeSettings) {
1720
+ var date;
1721
+ var splitRes = splitDateTime(dateFormat, dateTimeString, dateSettings, timeSettings);
1722
+ date = $.datepicker._base_parseDate(dateFormat, splitRes[0], dateSettings);
1723
+ if (splitRes[1] !== '') {
1724
+ var timeString = splitRes[1],
1725
+ parsedTime = $.datepicker.parseTime(timeFormat, timeString, timeSettings);
1726
+
1727
+ if (parsedTime === null) {
1728
+ throw 'Wrong time format';
1729
+ }
1730
+ return {
1731
+ date: date,
1732
+ timeObj: parsedTime
1733
+ };
1734
+ } else {
1735
+ return {
1736
+ date: date
1737
+ };
1738
+ }
1739
+ };
1740
+
1741
+ /*
1742
+ * Internal function to set timezone_select to the local timezone
1743
+ */
1744
+ var selectLocalTimeZone = function(tp_inst, date) {
1745
+ if (tp_inst && tp_inst.timezone_select) {
1746
+ tp_inst._defaults.useLocalTimezone = true;
1747
+ var now = typeof date !== 'undefined' ? date : new Date();
1748
+ var tzoffset = $.timepicker.timeZoneOffsetString(now);
1749
+ if (tp_inst._defaults.timezoneIso8601) {
1750
+ tzoffset = tzoffset.substring(0, 3) + ':' + tzoffset.substring(3);
1751
+ }
1752
+ tp_inst.timezone_select.val(tzoffset);
1753
+ }
1754
+ };
1755
+
1756
+ /*
1757
+ * Create a Singleton Insance
1758
+ */
1759
+ $.timepicker = new Timepicker();
1760
+
1761
+ /**
1762
+ * Get the timezone offset as string from a date object (eg '+0530' for UTC+5.5)
1763
+ * @param date
1764
+ * @return string
1765
+ */
1766
+ $.timepicker.timeZoneOffsetString = function(date) {
1767
+ var off = date.getTimezoneOffset() * -1,
1768
+ minutes = off % 60,
1769
+ hours = (off - minutes) / 60;
1770
+ return (off >= 0 ? '+' : '-') + ('0' + (hours * 101).toString()).substr(-2) + ('0' + (minutes * 101).toString()).substr(-2);
1771
+ };
1772
+
1773
+ /**
1774
+ * Calls `timepicker()` on the `startTime` and `endTime` elements, and configures them to
1775
+ * enforce date range limits.
1776
+ * n.b. The input value must be correctly formatted (reformatting is not supported)
1777
+ * @param Element startTime
1778
+ * @param Element endTime
1779
+ * @param obj options Options for the timepicker() call
1780
+ * @return jQuery
1781
+ */
1782
+ $.timepicker.timeRange = function(startTime, endTime, options) {
1783
+ return $.timepicker.handleRange('timepicker', startTime, endTime, options);
1784
+ };
1785
+
1786
+ /**
1787
+ * Calls `datetimepicker` on the `startTime` and `endTime` elements, and configures them to
1788
+ * enforce date range limits.
1789
+ * @param Element startTime
1790
+ * @param Element endTime
1791
+ * @param obj options Options for the `timepicker()` call. Also supports `reformat`,
1792
+ * a boolean value that can be used to reformat the input values to the `dateFormat`.
1793
+ * @param string method Can be used to specify the type of picker to be added
1794
+ * @return jQuery
1795
+ */
1796
+ $.timepicker.dateTimeRange = function(startTime, endTime, options) {
1797
+ $.timepicker.dateRange(startTime, endTime, options, 'datetimepicker');
1798
+ };
1799
+
1800
+ /**
1801
+ * Calls `method` on the `startTime` and `endTime` elements, and configures them to
1802
+ * enforce date range limits.
1803
+ * @param Element startTime
1804
+ * @param Element endTime
1805
+ * @param obj options Options for the `timepicker()` call. Also supports `reformat`,
1806
+ * a boolean value that can be used to reformat the input values to the `dateFormat`.
1807
+ * @param string method Can be used to specify the type of picker to be added
1808
+ * @return jQuery
1809
+ */
1810
+ $.timepicker.dateRange = function(startTime, endTime, options, method) {
1811
+ method = method || 'datepicker';
1812
+ $.timepicker.handleRange(method, startTime, endTime, options);
1813
+ };
1814
+
1815
+ /**
1816
+ * Calls `method` on the `startTime` and `endTime` elements, and configures them to
1817
+ * enforce date range limits.
1818
+ * @param string method Can be used to specify the type of picker to be added
1819
+ * @param Element startTime
1820
+ * @param Element endTime
1821
+ * @param obj options Options for the `timepicker()` call. Also supports `reformat`,
1822
+ * a boolean value that can be used to reformat the input values to the `dateFormat`.
1823
+ * @return jQuery
1824
+ */
1825
+ $.timepicker.handleRange = function(method, startTime, endTime, options) {
1826
+ $.fn[method].call(startTime, $.extend({
1827
+ onClose: function(dateText, inst) {
1828
+ checkDates(this, endTime, dateText);
1829
+ },
1830
+ onSelect: function(selectedDateTime) {
1831
+ selected(this, endTime, 'minDate');
1832
+ }
1833
+ }, options, options.start));
1834
+ $.fn[method].call(endTime, $.extend({
1835
+ onClose: function(dateText, inst) {
1836
+ checkDates(this, startTime, dateText);
1837
+ },
1838
+ onSelect: function(selectedDateTime) {
1839
+ selected(this, startTime, 'maxDate');
1840
+ }
1841
+ }, options, options.end));
1842
+ // timepicker doesn't provide access to its 'timeFormat' option,
1843
+ // nor could I get datepicker.formatTime() to behave with times, so I
1844
+ // have disabled reformatting for timepicker
1845
+ if (method != 'timepicker' && options.reformat) {
1846
+ $([startTime, endTime]).each(function() {
1847
+ var format = $(this)[method].call($(this), 'option', 'dateFormat'),
1848
+ date = new Date($(this).val());
1849
+ if ($(this).val() && date) {
1850
+ $(this).val($.datepicker.formatDate(format, date));
1851
+ }
1852
+ });
1853
+ }
1854
+ checkDates(startTime, endTime, startTime.val());
1855
+
1856
+ function checkDates(changed, other, dateText) {
1857
+ if (other.val() && (new Date(startTime.val()) > new Date(endTime.val()))) {
1858
+ other.val(dateText);
1859
+ }
1860
+ }
1861
+ selected(startTime, endTime, 'minDate');
1862
+ selected(endTime, startTime, 'maxDate');
1863
+
1864
+ function selected(changed, other, option) {
1865
+ if (!$(changed).val()) {
1866
+ return;
1867
+ }
1868
+ var date = $(changed)[method].call($(changed), 'getDate');
1869
+ // timepicker doesn't implement 'getDate' and returns a jQuery
1870
+ if (date.getTime) {
1871
+ $(other)[method].call($(other), 'option', option, date);
1872
+ }
1873
+ }
1874
+ return $([startTime.get(0), endTime.get(0)]);
1875
+ };
1876
+
1877
+ /*
1878
+ * Keep up with the version
1879
+ */
1880
+ $.timepicker.version = "1.1.1";
1881
+
1882
+ })(jQuery);