fat_free_crm 0.12.3 → 0.13.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.
Potentially problematic release.
This version of fat_free_crm might be problematic. Click here for more details.
- checksums.yaml +5 -13
- data/.travis.yml +1 -11
- data/Gemfile +7 -19
- data/Gemfile.lock +166 -166
- data/Procfile +1 -1
- data/README.md +20 -20
- data/app/assets/javascripts/admin/fields.js.coffee +3 -3
- data/app/assets/javascripts/application.js.erb +3 -0
- data/app/assets/javascripts/crm.js +1 -0
- data/app/assets/javascripts/crm_comments.js.coffee +66 -0
- data/app/assets/javascripts/lists.js.coffee +45 -2
- data/app/assets/javascripts/search.js.coffee +2 -0
- data/app/assets/javascripts/timeago.js +17 -0
- data/app/assets/stylesheets/advanced_search.css.scss +49 -25
- data/app/assets/stylesheets/application.css.erb +3 -0
- data/app/assets/stylesheets/common.scss +13 -0
- data/app/assets/stylesheets/format_buttons.css.scss +15 -10
- data/app/assets/stylesheets/header.scss +3 -0
- data/app/assets/stylesheets/lists.css.scss +4 -0
- data/app/controllers/admin/fields_controller.rb +5 -5
- data/app/controllers/admin/users_controller.rb +1 -3
- data/app/controllers/application_controller.rb +23 -23
- data/app/controllers/comments_controller.rb +3 -31
- data/app/controllers/entities/accounts_controller.rb +3 -3
- data/app/controllers/entities/campaigns_controller.rb +4 -4
- data/app/controllers/entities/contacts_controller.rb +2 -2
- data/app/controllers/entities/leads_controller.rb +3 -3
- data/app/controllers/entities/opportunities_controller.rb +4 -3
- data/app/controllers/entities_controller.rb +6 -6
- data/app/controllers/home_controller.rb +1 -1
- data/app/controllers/lists_controller.rb +8 -1
- data/app/controllers/tasks_controller.rb +1 -1
- data/app/controllers/users_controller.rb +46 -23
- data/app/helpers/admin/application_helper.rb +1 -3
- data/app/helpers/admin/field_groups_helper.rb +2 -1
- data/app/helpers/application_helper.rb +37 -16
- data/app/helpers/home_helper.rb +1 -2
- data/app/helpers/leads_helper.rb +5 -6
- data/app/helpers/tasks_helper.rb +36 -50
- data/app/models/entities/account.rb +10 -7
- data/app/models/entities/campaign.rb +4 -4
- data/app/models/entities/contact.rb +8 -5
- data/app/models/entities/lead.rb +8 -8
- data/app/models/entities/opportunity.rb +13 -18
- data/app/models/fields/custom_field.rb +10 -0
- data/app/models/fields/field.rb +3 -3
- data/app/models/fields/field_group.rb +1 -1
- data/app/models/list.rb +1 -0
- data/app/models/polymorphic/address.rb +3 -3
- data/app/models/polymorphic/comment.rb +2 -4
- data/app/models/polymorphic/task.rb +32 -27
- data/app/models/setting.rb +3 -9
- data/app/models/users/ability.rb +2 -13
- data/app/models/users/user.rb +12 -15
- data/app/views/accounts/_edit.html.haml +1 -1
- data/app/views/accounts/_index_brief.html.haml +3 -3
- data/app/views/accounts/_index_long.html.haml +3 -3
- data/app/views/accounts/_new.html.haml +1 -1
- data/app/views/accounts/create.js.haml +17 -0
- data/app/views/accounts/destroy.js.haml +6 -0
- data/app/views/accounts/edit.js.haml +32 -0
- data/app/views/accounts/index.js.haml +11 -0
- data/app/views/accounts/index.xls.builder +9 -7
- data/app/views/accounts/new.js.haml +11 -0
- data/app/views/accounts/show.js.haml +5 -0
- data/app/views/accounts/update.js.haml +17 -0
- data/app/views/admin/field_groups/_edit.html.haml +1 -1
- data/app/views/admin/field_groups/_new.html.haml +1 -1
- data/app/views/admin/field_groups/confirm.js.haml +7 -0
- data/app/views/admin/field_groups/create.js.haml +20 -0
- data/app/views/admin/field_groups/destroy.js.haml +9 -0
- data/app/views/admin/field_groups/edit.js.haml +12 -0
- data/app/views/admin/field_groups/new.js.haml +8 -0
- data/app/views/admin/field_groups/update.js.haml +8 -0
- data/app/views/admin/fields/_field.html.haml +2 -2
- data/app/views/admin/fields/_form.html.haml +2 -2
- data/app/views/admin/fields/create.js.haml +17 -0
- data/app/views/admin/fields/destroy.js.haml +8 -0
- data/app/views/admin/fields/edit.js.haml +3 -0
- data/app/views/admin/fields/update.js.haml +13 -0
- data/app/views/admin/groups/_edit.html.haml +1 -1
- data/app/views/admin/groups/_new.html.haml +1 -1
- data/app/views/admin/groups/create.js.haml +10 -0
- data/app/views/admin/groups/destroy.js.haml +9 -0
- data/app/views/admin/groups/edit.js.haml +14 -0
- data/app/views/admin/groups/index.html.haml +1 -1
- data/app/views/admin/groups/index.js.haml +2 -0
- data/app/views/admin/groups/new.js.haml +9 -0
- data/app/views/admin/groups/update.js.haml +9 -0
- data/app/views/admin/tags/_edit.html.haml +1 -1
- data/app/views/admin/tags/_new.html.haml +1 -1
- data/app/views/admin/tags/confirm.js.haml +7 -0
- data/app/views/admin/tags/create.js.haml +11 -0
- data/app/views/admin/tags/destroy.js.haml +10 -0
- data/app/views/admin/tags/edit.js.haml +20 -0
- data/app/views/admin/tags/new.js.haml +7 -0
- data/app/views/admin/tags/update.js.haml +9 -0
- data/app/views/admin/users/_edit.html.haml +1 -1
- data/app/views/admin/users/_new.html.haml +1 -1
- data/app/views/admin/users/_user.html.haml +1 -1
- data/app/views/admin/users/confirm.js.haml +7 -0
- data/app/views/admin/users/create.js.haml +10 -0
- data/app/views/admin/users/destroy.js.haml +10 -0
- data/app/views/admin/users/edit.js.haml +20 -0
- data/app/views/admin/users/index.js.haml +2 -0
- data/app/views/admin/users/new.js.haml +9 -0
- data/app/views/admin/users/reactivate.js.haml +3 -0
- data/app/views/admin/users/suspend.js.haml +3 -0
- data/app/views/admin/users/update.js.haml +9 -0
- data/app/views/authentications/new.html.haml +1 -1
- data/app/views/campaigns/_edit.html.haml +1 -1
- data/app/views/campaigns/_new.html.haml +1 -1
- data/app/views/campaigns/create.js.haml +20 -0
- data/app/views/campaigns/destroy.js.haml +6 -0
- data/app/views/campaigns/edit.js.haml +33 -0
- data/app/views/campaigns/index.js.haml +11 -0
- data/app/views/campaigns/index.xls.builder +9 -7
- data/app/views/campaigns/new.js.haml +11 -0
- data/app/views/campaigns/show.js.haml +5 -0
- data/app/views/campaigns/update.js.haml +20 -0
- data/app/views/comments/_comment.html.haml +1 -1
- data/app/views/comments/_edit.html.haml +1 -1
- data/app/views/comments/_new.html.haml +3 -2
- data/app/views/comments/create.js.haml +14 -0
- data/app/views/comments/destroy.js.haml +5 -0
- data/app/views/comments/edit.js.haml +11 -0
- data/app/views/comments/update.js.haml +9 -0
- data/app/views/contacts/_edit.html.haml +1 -1
- data/app/views/contacts/_index_full.html.haml +1 -1
- data/app/views/contacts/_index_long.html.haml +2 -1
- data/app/views/contacts/_new.html.haml +1 -1
- data/app/views/contacts/_section_general.html.haml +3 -3
- data/app/views/contacts/create.js.haml +23 -0
- data/app/views/contacts/destroy.js.haml +9 -0
- data/app/views/contacts/edit.js.haml +35 -0
- data/app/views/contacts/index.js.haml +11 -0
- data/app/views/contacts/index.xls.builder +9 -7
- data/app/views/contacts/new.js.haml +13 -0
- data/app/views/contacts/show.js.haml +5 -0
- data/app/views/contacts/update.js.haml +22 -0
- data/app/views/emails/destroy.js.haml +5 -0
- data/app/views/entities/_permissions.html.haml +1 -1
- data/app/views/entities/attach.js.haml +21 -0
- data/app/views/entities/contacts.js.haml +3 -0
- data/app/views/entities/discard.js.haml +6 -0
- data/app/views/entities/leads.js.haml +3 -0
- data/app/views/entities/opportunities.js.haml +3 -0
- data/app/views/entities/subscription_update.js.haml +4 -0
- data/app/views/entities/versions.js.haml +3 -0
- data/app/views/fields/group.js.erb +3 -0
- data/app/views/home/_account.html.haml +3 -3
- data/app/views/home/_opportunity.html.haml +3 -3
- data/app/views/home/index.atom.builder +3 -3
- data/app/views/home/index.js.haml +7 -0
- data/app/views/home/index.rss.builder +2 -2
- data/app/views/home/options.js.haml +7 -0
- data/app/views/layouts/_footer.html.haml +0 -4
- data/app/views/layouts/_sidebar.html.haml +1 -0
- data/app/views/layouts/_tabbed.html.haml +1 -4
- data/app/views/layouts/admin/application.html.haml +0 -1
- data/app/views/layouts/application.html.haml +5 -7
- data/app/views/leads/_convert.html.haml +1 -1
- data/app/views/leads/_edit.html.haml +1 -1
- data/app/views/leads/_index_long.html.haml +2 -2
- data/app/views/leads/_new.html.haml +1 -1
- data/app/views/leads/convert.js.haml +35 -0
- data/app/views/leads/create.js.haml +21 -0
- data/app/views/leads/destroy.js.haml +9 -0
- data/app/views/leads/edit.js.haml +35 -0
- data/app/views/leads/index.js.haml +11 -0
- data/app/views/leads/index.xls.builder +9 -7
- data/app/views/leads/new.js.haml +11 -0
- data/app/views/leads/promote.js.haml +26 -0
- data/app/views/leads/reject.js.haml +12 -0
- data/app/views/leads/show.js.haml +5 -0
- data/app/views/leads/update.js.haml +26 -0
- data/app/views/lists/_personal_sidebar.html.haml +28 -0
- data/app/views/lists/_sidebar.html.haml +10 -7
- data/app/views/lists/create.js.haml +10 -0
- data/app/views/lists/destroy.js.haml +1 -0
- data/app/views/opportunities/_edit.html.haml +1 -1
- data/app/views/opportunities/_index_brief.html.haml +3 -3
- data/app/views/opportunities/_index_long.html.haml +3 -3
- data/app/views/opportunities/_new.html.haml +1 -2
- data/app/views/opportunities/_top_section.html.haml +4 -0
- data/app/views/opportunities/contacts.js.haml +3 -0
- data/app/views/opportunities/create.js.haml +29 -0
- data/app/views/opportunities/destroy.js.haml +13 -0
- data/app/views/opportunities/edit.js.haml +35 -0
- data/app/views/opportunities/index.js.haml +11 -0
- data/app/views/opportunities/index.xls.builder +9 -7
- data/app/views/opportunities/new.js.haml +13 -0
- data/app/views/opportunities/show.js.haml +5 -0
- data/app/views/opportunities/update.js.haml +25 -0
- data/app/views/passwords/edit.html.haml +1 -1
- data/app/views/passwords/new.html.haml +1 -1
- data/app/views/shared/_comment.html.haml +1 -1
- data/app/views/shared/_inline_styles.html.haml +1 -1
- data/app/views/tasks/_edit.html.haml +1 -1
- data/app/views/tasks/_new.html.haml +1 -1
- data/app/views/tasks/complete.js.haml +14 -0
- data/app/views/tasks/create.js.haml +39 -0
- data/app/views/tasks/destroy.js.haml +7 -0
- data/app/views/tasks/discard.js.haml +1 -0
- data/app/views/tasks/edit.js.haml +26 -0
- data/app/views/tasks/filter.js.haml +4 -0
- data/app/views/tasks/index.xls.builder +7 -5
- data/app/views/tasks/new.js.haml +8 -0
- data/app/views/tasks/update.js.haml +19 -0
- data/app/views/users/_password.html.haml +1 -1
- data/app/views/users/_profile.html.haml +1 -1
- data/app/views/users/avatar.js.haml +9 -0
- data/app/views/users/change_password.js.haml +13 -0
- data/app/views/users/edit.js.haml +9 -0
- data/app/views/users/new.html.haml +1 -1
- data/app/views/users/password.js.haml +10 -0
- data/app/views/users/update.js.haml +9 -0
- data/app/views/users/upload_avatar.js.haml +7 -0
- data/app/views/versions/_version.html.haml +1 -1
- data/config/application.rb +1 -4
- data/config/environments/production.rb +3 -2
- data/config/initializers/custom_field_ransack_translations.rb +15 -0
- data/config/initializers/locale.rb +9 -1
- data/config/initializers/secret_token.rb +1 -25
- data/config/initializers/views.rb +20 -20
- data/config/locales/cz.yml +245 -211
- data/config/locales/cz_fat_free_crm.yml +105 -181
- data/config/locales/de.yml +162 -118
- data/config/locales/de_fat_free_crm.yml +760 -731
- data/config/locales/de_ransack.yml +91 -0
- data/config/locales/en-GB.yml +158 -119
- data/config/locales/en-GB_fat_free_crm.yml +161 -279
- data/config/locales/en-US.yml +158 -121
- data/config/locales/en-US_fat_free_crm.yml +185 -179
- data/config/locales/en-US_ransack.yml +81 -82
- data/config/locales/es.yml +164 -123
- data/config/locales/es_fat_free_crm.yml +151 -209
- data/config/locales/fr-CA.yml +167 -130
- data/config/locales/fr-CA_fat_free_crm.yml +142 -202
- data/config/locales/fr.yml +170 -125
- data/config/locales/fr_fat_free_crm.yml +199 -302
- data/config/locales/it.yml +158 -122
- data/config/locales/it_fat_free_crm.yml +105 -168
- data/config/locales/ja.yml +162 -131
- data/config/locales/ja_fat_free_crm.yml +118 -188
- data/config/locales/pl.yml +168 -132
- data/config/locales/pl_fat_free_crm.yml +115 -186
- data/config/locales/pt-BR.yml +160 -127
- data/config/locales/pt-BR_fat_free_crm.yml +125 -182
- data/config/locales/ru.yml +256 -233
- data/config/locales/ru_fat_free_crm.yml +136 -193
- data/config/locales/sv-SE.yml +164 -181
- data/config/locales/sv-SE_fat_free_crm.yml +129 -193
- data/config/locales/th_fat_free_crm.yml +114 -194
- data/config/locales/zh-CN.yml +176 -149
- data/config/locales/zh-CN_fat_free_crm.yml +78 -167
- data/config/routes.rb +1 -1
- data/config/settings.default.yml +74 -23
- data/custom_plan.rb +11 -0
- data/db/migrate/20131207033244_add_user_id_to_lists.rb +6 -0
- data/db/schema.rb +4 -1
- data/fat_free_crm.gemspec +3 -3
- data/lib/fat_free_crm.rb +1 -11
- data/lib/fat_free_crm/export_csv.rb +3 -3
- data/lib/fat_free_crm/fields.rb +10 -0
- data/lib/fat_free_crm/gem_dependencies.rb +1 -2
- data/lib/fat_free_crm/i18n.rb +9 -5
- data/lib/fat_free_crm/version.rb +2 -2
- data/lib/fat_free_crm/view_factory.rb +8 -5
- data/lib/tasks/ffcrm/config.rake +9 -12
- data/lib/tasks/ffcrm/missing_translations.rake +2 -1
- data/spec/controllers/admin/users_controller_spec.rb +6 -4
- data/spec/controllers/applications_controller_spec.rb +4 -4
- data/spec/controllers/authentications_controller_spec.rb +15 -15
- data/spec/controllers/comments_controller_spec.rb +9 -87
- data/spec/controllers/emails_controller_spec.rb +1 -1
- data/spec/controllers/entities/accounts_controller_spec.rb +7 -7
- data/spec/controllers/entities/campaigns_controller_spec.rb +5 -5
- data/spec/controllers/entities/contacts_controller_spec.rb +7 -7
- data/spec/controllers/entities/leads_controller_spec.rb +14 -14
- data/spec/controllers/entities/opportunities_controller_spec.rb +8 -8
- data/spec/controllers/home_controller_spec.rb +6 -6
- data/spec/controllers/tasks_controller_spec.rb +7 -7
- data/spec/controllers/users_controller_spec.rb +22 -50
- data/spec/features/support/selector_helpers.rb +1 -6
- data/spec/features/tasks_spec.rb +2 -2
- data/spec/helpers/application_helper_spec.rb +15 -15
- data/spec/lib/fields_spec.rb +29 -29
- data/spec/lib/mail_processor/base_spec.rb +7 -7
- data/spec/lib/mail_processor/dropbox_spec.rb +3 -3
- data/spec/lib/view_factory_spec.rb +14 -14
- data/spec/models/entities/opportunity_spec.rb +1 -1
- data/spec/models/fields/custom_field_date_pair_spec.rb +14 -14
- data/spec/models/fields/custom_field_pair_spec.rb +13 -13
- data/spec/models/fields/custom_field_spec.rb +5 -5
- data/spec/models/fields/field_spec.rb +2 -2
- data/spec/models/observers/entity_observer_spec.rb +2 -2
- data/spec/models/users/user_spec.rb +7 -7
- data/spec/routing/comments_routing_spec.rb +0 -9
- data/spec/shared/controllers.rb +75 -77
- data/spec/shared/models.rb +1 -1
- data/spec/spec_helper.rb +1 -2
- data/spec/support/auth_macros.rb +3 -3
- data/spec/support/mail_processor_mocks.rb +13 -13
- data/spec/views/accounts/_edit.haml_spec.rb +1 -1
- data/spec/views/accounts/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -14
- data/spec/views/accounts/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -8
- data/spec/views/accounts/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +10 -18
- data/spec/views/accounts/{index.rjs_spec.rb → index.js.haml_spec.rb} +7 -11
- data/spec/views/accounts/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/accounts/show.haml_spec.rb +1 -1
- data/spec/views/accounts/{update.rjs_spec.rb → update.js.haml_spec.rb} +16 -25
- data/spec/views/admin/field_groups/create.js.haml_spec.rb +31 -0
- data/spec/views/admin/field_groups/destroy.js.haml_spec.rb +31 -0
- data/spec/views/admin/field_groups/edit.js.haml_spec.rb +24 -0
- data/spec/views/admin/field_groups/new.js.haml_spec.rb +25 -0
- data/spec/views/admin/field_groups/update.js.haml_spec.rb +30 -0
- data/spec/views/admin/users/_create.haml_spec.rb +1 -1
- data/spec/views/admin/users/{create.rjs_spec.rb → create.js.haml_spec.rb} +6 -9
- data/spec/views/admin/users/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -7
- data/spec/views/admin/users/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +6 -12
- data/spec/views/admin/users/index.haml_spec.rb +0 -0
- data/spec/views/admin/users/{index.rjs_spec.rb → index.js.haml_spec.rb} +3 -5
- data/spec/views/admin/users/{new.rjs_spec.rb → new.js.haml_spec.rb} +4 -6
- data/spec/views/admin/users/{reactivate.rjs_spec.rb → reactivate.js.haml_spec.rb} +2 -4
- data/spec/views/admin/users/show.haml_spec.rb +0 -0
- data/spec/views/admin/users/{suspend.rjs_spec.rb → suspend.js.haml_spec.rb} +2 -4
- data/spec/views/admin/users/{update.rjs_spec.rb → update.js.haml_spec.rb} +6 -10
- data/spec/views/campaigns/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -14
- data/spec/views/campaigns/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -7
- data/spec/views/campaigns/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +11 -19
- data/spec/views/campaigns/{index.rjs_spec.rb → index.js.haml_spec.rb} +5 -9
- data/spec/views/campaigns/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/campaigns/{update.rjs_spec.rb → update.js.haml_spec.rb} +14 -21
- data/spec/views/comments/{new.rjs_spec.rb → edit.js.haml_spec.rb} +12 -9
- data/spec/views/contacts/{create.rjs_spec.rb → create.js.haml_spec.rb} +9 -16
- data/spec/views/contacts/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +6 -8
- data/spec/views/contacts/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +12 -19
- data/spec/views/contacts/index.haml_spec.rb +1 -1
- data/spec/views/contacts/{index.rjs_spec.rb → index.js.html_spec.rb} +7 -11
- data/spec/views/contacts/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -7
- data/spec/views/contacts/{update.rjs_spec.rb → update.js.haml_spec.rb} +20 -35
- data/spec/views/home/{index.rjs_spec.rb → index.js.haml_spec.rb} +2 -4
- data/spec/views/home/{options.rjs_spec.rb → options.js.haml_spec.rb} +7 -12
- data/spec/views/leads/{convert.rjs_spec.rb → convert.js.haml_spec.rb} +12 -20
- data/spec/views/leads/{create.rjs_spec.rb → create.js.haml_spec.rb} +13 -19
- data/spec/views/leads/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +9 -12
- data/spec/views/leads/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +12 -20
- data/spec/views/leads/{index.rjs_spec.rb → index.js.haml_spec.rb} +5 -9
- data/spec/views/leads/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/leads/{promote.rjs_spec.rb → promote.js.haml_spec.rb} +28 -43
- data/spec/views/leads/{reject.rjs_spec.rb → reject.js.haml_spec.rb} +10 -17
- data/spec/views/leads/{update.rjs_spec.rb → update.js.haml_spec.rb} +25 -38
- data/spec/views/opportunities/{create.rjs_spec.rb → create.js.haml_spec.rb} +16 -26
- data/spec/views/opportunities/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +13 -16
- data/spec/views/opportunities/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +10 -18
- data/spec/views/opportunities/{index.rjs_spec.rb → index.js.haml_spec.rb} +7 -12
- data/spec/views/opportunities/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/opportunities/{update.rjs_spec.rb → update.js.haml_spec.rb} +29 -46
- data/spec/views/tasks/_edit.haml_spec.rb +1 -1
- data/spec/views/tasks/{complete.rjs_spec.rb → complete.js.haml_spec.rb} +9 -14
- data/spec/views/tasks/{create.rjs_spec.rb → create.js.haml_spec.rb} +25 -33
- data/spec/views/tasks/{destroy.rjs_spec.rb → destroy.js.haml_spec.rb} +9 -11
- data/spec/views/tasks/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +9 -14
- data/spec/views/tasks/index.haml_spec.rb +1 -2
- data/spec/views/tasks/{new.rjs_spec.rb → new.js.haml_spec.rb} +6 -8
- data/spec/views/tasks/{update.rjs_spec.rb → update.js.haml_spec.rb} +28 -41
- data/spec/views/users/{avatar.rjs_spec.rb → avatar.js.haml_spec.rb} +7 -9
- data/spec/views/users/{change_password.rjs_spec.rb → change_password.js.haml_spec.rb} +10 -12
- data/spec/views/users/{edit.rjs_spec.rb → edit.js.haml_spec.rb} +8 -10
- data/spec/views/users/{password.rjs_spec.rb → password.js.haml_spec.rb} +9 -11
- data/spec/views/users/{update.rjs_spec.rb → update.js.haml_spec.rb} +7 -15
- data/spec/views/users/{upload_avatar.rjs_spec.rb → upload_avatar.js.haml_spec.rb} +8 -10
- data/vendor/assets/javascripts/ajax-chosen-jquery.js +2 -0
- data/vendor/assets/javascripts/ajax-chosen-prototype.js +2 -0
- data/vendor/assets/javascripts/ajax-chosen.jquery.coffee +81 -0
- data/vendor/assets/javascripts/ajax-chosen.proto.coffee +98 -0
- data/vendor/assets/javascripts/jquery_timeago/index.js +17 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.cz.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.de.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-GB.js +20 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-US.js +20 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.es.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr-CA.js +17 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr.js +17 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.it.js +16 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ja.js +19 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.js +194 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pl.js +31 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.pt-BR.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.ru.js +34 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.sv-SE.js +18 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.th.js +20 -0
- data/vendor/assets/javascripts/jquery_timeago/jquery.timeago.zh-CN.js +20 -0
- data/zeus.json +2 -1
- metadata +240 -245
- data/app/assets/images/delete.png +0 -0
- data/app/assets/images/iconset_attribution.png +0 -0
- data/app/views/accounts/create.js.rjs +0 -14
- data/app/views/accounts/destroy.js.rjs +0 -3
- data/app/views/accounts/edit.js.rjs +0 -33
- data/app/views/accounts/index.js.rjs +0 -8
- data/app/views/accounts/new.js.rjs +0 -9
- data/app/views/accounts/show.js.erb +0 -2
- data/app/views/accounts/update.js.rjs +0 -17
- data/app/views/admin/field_groups/confirm.js.rjs +0 -6
- data/app/views/admin/field_groups/create.js.rjs +0 -20
- data/app/views/admin/field_groups/destroy.js.rjs +0 -11
- data/app/views/admin/field_groups/edit.js.rjs +0 -14
- data/app/views/admin/field_groups/new.js.rjs +0 -9
- data/app/views/admin/field_groups/update.js.rjs +0 -9
- data/app/views/admin/fields/create.js.erb +0 -19
- data/app/views/admin/fields/destroy.js.erb +0 -9
- data/app/views/admin/fields/edit.js.erb +0 -1
- data/app/views/admin/fields/update.js.erb +0 -13
- data/app/views/admin/groups/create.js.rjs +0 -11
- data/app/views/admin/groups/destroy.js.rjs +0 -11
- data/app/views/admin/groups/edit.js.rjs +0 -21
- data/app/views/admin/groups/index.js.rjs +0 -2
- data/app/views/admin/groups/new.js.rjs +0 -9
- data/app/views/admin/groups/update.js.rjs +0 -10
- data/app/views/admin/tags/confirm.js.rjs +0 -6
- data/app/views/admin/tags/create.js.rjs +0 -12
- data/app/views/admin/tags/destroy.js.rjs +0 -11
- data/app/views/admin/tags/edit.js.rjs +0 -21
- data/app/views/admin/tags/new.js.rjs +0 -8
- data/app/views/admin/tags/update.js.rjs +0 -10
- data/app/views/admin/users/confirm.js.rjs +0 -6
- data/app/views/admin/users/create.js.rjs +0 -11
- data/app/views/admin/users/destroy.js.rjs +0 -11
- data/app/views/admin/users/edit.js.rjs +0 -21
- data/app/views/admin/users/index.js.rjs +0 -3
- data/app/views/admin/users/new.js.rjs +0 -8
- data/app/views/admin/users/reactivate.js.rjs +0 -3
- data/app/views/admin/users/suspend.js.rjs +0 -3
- data/app/views/admin/users/update.js.rjs +0 -10
- data/app/views/campaigns/create.js.rjs +0 -18
- data/app/views/campaigns/destroy.js.rjs +0 -3
- data/app/views/campaigns/edit.js.rjs +0 -34
- data/app/views/campaigns/index.js.rjs +0 -8
- data/app/views/campaigns/new.js.rjs +0 -9
- data/app/views/campaigns/show.js.erb +0 -2
- data/app/views/campaigns/update.js.rjs +0 -21
- data/app/views/comments/create.js.rjs +0 -11
- data/app/views/comments/destroy.js.rjs +0 -6
- data/app/views/comments/edit.js.rjs +0 -11
- data/app/views/comments/new.js.rjs +0 -14
- data/app/views/comments/update.js.rjs +0 -11
- data/app/views/contacts/create.js.rjs +0 -19
- data/app/views/contacts/destroy.js.rjs +0 -7
- data/app/views/contacts/edit.js.rjs +0 -36
- data/app/views/contacts/index.js.rjs +0 -8
- data/app/views/contacts/new.js.rjs +0 -11
- data/app/views/contacts/show.js.erb +0 -2
- data/app/views/contacts/update.js.rjs +0 -22
- data/app/views/emails/destroy.js.rjs +0 -6
- data/app/views/entities/attach.js.rjs +0 -24
- data/app/views/entities/contacts.js.rjs +0 -3
- data/app/views/entities/discard.js.rjs +0 -7
- data/app/views/entities/leads.js.rjs +0 -3
- data/app/views/entities/opportunities.js.rjs +0 -3
- data/app/views/entities/subscription_update.js.rjs +0 -4
- data/app/views/entities/versions.js.erb +0 -3
- data/app/views/fields/group.js.rjs +0 -7
- data/app/views/home/index.js.rjs +0 -7
- data/app/views/home/options.js.rjs +0 -8
- data/app/views/leads/convert.js.rjs +0 -37
- data/app/views/leads/create.js.rjs +0 -19
- data/app/views/leads/destroy.js.rjs +0 -7
- data/app/views/leads/edit.js.rjs +0 -36
- data/app/views/leads/index.js.rjs +0 -8
- data/app/views/leads/new.js.rjs +0 -9
- data/app/views/leads/promote.js.rjs +0 -27
- data/app/views/leads/reject.js.rjs +0 -10
- data/app/views/leads/show.js.erb +0 -2
- data/app/views/leads/update.js.rjs +0 -27
- data/app/views/lists/create.js.rjs +0 -9
- data/app/views/lists/destroy.js.rjs +0 -1
- data/app/views/opportunities/contacts.js.rjs +0 -3
- data/app/views/opportunities/create.js.rjs +0 -29
- data/app/views/opportunities/destroy.js.rjs +0 -11
- data/app/views/opportunities/edit.js.rjs +0 -36
- data/app/views/opportunities/index.js.rjs +0 -8
- data/app/views/opportunities/new.js.rjs +0 -12
- data/app/views/opportunities/show.js.erb +0 -2
- data/app/views/opportunities/update.js.rjs +0 -26
- data/app/views/tasks/complete.js.rjs +0 -17
- data/app/views/tasks/create.js.rjs +0 -41
- data/app/views/tasks/destroy.js.rjs +0 -7
- data/app/views/tasks/discard.rjs +0 -1
- data/app/views/tasks/edit.js.rjs +0 -23
- data/app/views/tasks/filter.js.rjs +0 -1
- data/app/views/tasks/new.js.rjs +0 -9
- data/app/views/tasks/update.js.rjs +0 -21
- data/app/views/users/avatar.js.rjs +0 -10
- data/app/views/users/change_password.js.rjs +0 -15
- data/app/views/users/edit.js.rjs +0 -10
- data/app/views/users/password.js.rjs +0 -11
- data/app/views/users/update.js.rjs +0 -10
- data/app/views/users/upload_avatar.js.rjs +0 -8
- data/lib/fat_free_crm/secret_token_generator.rb +0 -65
- data/spec/lib/secret_token_generator_spec.rb +0 -79
- data/spec/models/users/abilities/user_ability_spec.rb +0 -58
- data/spec/support/rjs_support.rb +0 -14
- data/vendor/assets/images/brief.png +0 -0
- data/vendor/assets/images/full.png +0 -0
- data/vendor/assets/images/long.png +0 -0
- data/vendor/assets/images/tab_icons/accounts.png +0 -0
- data/vendor/assets/images/tab_icons/accounts_active.png +0 -0
- data/vendor/assets/images/tab_icons/campaigns.png +0 -0
- data/vendor/assets/images/tab_icons/campaigns_active.png +0 -0
- data/vendor/assets/images/tab_icons/contacts.png +0 -0
- data/vendor/assets/images/tab_icons/contacts_active.png +0 -0
- data/vendor/assets/images/tab_icons/dashboard.png +0 -0
- data/vendor/assets/images/tab_icons/dashboard_active.png +0 -0
- data/vendor/assets/images/tab_icons/leads.png +0 -0
- data/vendor/assets/images/tab_icons/leads_active.png +0 -0
- data/vendor/assets/images/tab_icons/opportunities.png +0 -0
- data/vendor/assets/images/tab_icons/opportunities_active.png +0 -0
- data/vendor/assets/images/tab_icons/tasks.png +0 -0
- data/vendor/assets/images/tab_icons/tasks_active.png +0 -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
|
+
};
|
data/zeus.json
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"command": "ruby -rubygems -
|
2
|
+
"command": "ruby -rubygems -r./custom_plan -eZeus.go",
|
3
3
|
|
4
4
|
"plan": {
|
5
5
|
"boot": {
|
@@ -10,6 +10,7 @@
|
|
10
10
|
"console": ["c"],
|
11
11
|
"server": ["s"],
|
12
12
|
"generate": ["g"],
|
13
|
+
"destroy": ["d"],
|
13
14
|
"dbconsole": []
|
14
15
|
},
|
15
16
|
"test_environment": {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fat_free_crm
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Dvorkin
|
@@ -11,7 +11,7 @@ authors:
|
|
11
11
|
autorequire:
|
12
12
|
bindir: bin
|
13
13
|
cert_chain: []
|
14
|
-
date:
|
14
|
+
date: 2013-12-27 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: rails
|
@@ -31,14 +31,14 @@ dependencies:
|
|
31
31
|
name: prototype-rails
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
requirements:
|
34
|
-
- -
|
34
|
+
- - '>='
|
35
35
|
- !ruby/object:Gem::Version
|
36
36
|
version: '0'
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
|
-
- -
|
41
|
+
- - '>='
|
42
42
|
- !ruby/object:Gem::Version
|
43
43
|
version: '0'
|
44
44
|
- !ruby/object:Gem::Dependency
|
@@ -59,14 +59,14 @@ dependencies:
|
|
59
59
|
name: select2-rails
|
60
60
|
requirement: !ruby/object:Gem::Requirement
|
61
61
|
requirements:
|
62
|
-
- -
|
62
|
+
- - '>='
|
63
63
|
- !ruby/object:Gem::Version
|
64
64
|
version: '0'
|
65
65
|
type: :runtime
|
66
66
|
prerelease: false
|
67
67
|
version_requirements: !ruby/object:Gem::Requirement
|
68
68
|
requirements:
|
69
|
-
- -
|
69
|
+
- - '>='
|
70
70
|
- !ruby/object:Gem::Version
|
71
71
|
version: '0'
|
72
72
|
- !ruby/object:Gem::Dependency
|
@@ -101,44 +101,44 @@ dependencies:
|
|
101
101
|
name: paperclip
|
102
102
|
requirement: !ruby/object:Gem::Requirement
|
103
103
|
requirements:
|
104
|
-
- -
|
104
|
+
- - '>='
|
105
105
|
- !ruby/object:Gem::Version
|
106
106
|
version: '0'
|
107
107
|
type: :runtime
|
108
108
|
prerelease: false
|
109
109
|
version_requirements: !ruby/object:Gem::Requirement
|
110
110
|
requirements:
|
111
|
-
- -
|
111
|
+
- - '>='
|
112
112
|
- !ruby/object:Gem::Version
|
113
113
|
version: '0'
|
114
114
|
- !ruby/object:Gem::Dependency
|
115
115
|
name: cocaine
|
116
116
|
requirement: !ruby/object:Gem::Requirement
|
117
117
|
requirements:
|
118
|
-
- -
|
118
|
+
- - '>='
|
119
119
|
- !ruby/object:Gem::Version
|
120
120
|
version: '0'
|
121
121
|
type: :runtime
|
122
122
|
prerelease: false
|
123
123
|
version_requirements: !ruby/object:Gem::Requirement
|
124
124
|
requirements:
|
125
|
-
- -
|
125
|
+
- - '>='
|
126
126
|
- !ruby/object:Gem::Version
|
127
127
|
version: '0'
|
128
128
|
- !ruby/object:Gem::Dependency
|
129
129
|
name: paper_trail
|
130
130
|
requirement: !ruby/object:Gem::Requirement
|
131
131
|
requirements:
|
132
|
-
- -
|
132
|
+
- - ~>
|
133
133
|
- !ruby/object:Gem::Version
|
134
|
-
version:
|
134
|
+
version: 2.7.0
|
135
135
|
type: :runtime
|
136
136
|
prerelease: false
|
137
137
|
version_requirements: !ruby/object:Gem::Requirement
|
138
138
|
requirements:
|
139
|
-
- -
|
139
|
+
- - ~>
|
140
140
|
- !ruby/object:Gem::Version
|
141
|
-
version:
|
141
|
+
version: 2.7.0
|
142
142
|
- !ruby/object:Gem::Dependency
|
143
143
|
name: authlogic
|
144
144
|
requirement: !ruby/object:Gem::Requirement
|
@@ -185,14 +185,14 @@ dependencies:
|
|
185
185
|
name: dynamic_form
|
186
186
|
requirement: !ruby/object:Gem::Requirement
|
187
187
|
requirements:
|
188
|
-
- -
|
188
|
+
- - '>='
|
189
189
|
- !ruby/object:Gem::Version
|
190
190
|
version: '0'
|
191
191
|
type: :runtime
|
192
192
|
prerelease: false
|
193
193
|
version_requirements: !ruby/object:Gem::Requirement
|
194
194
|
requirements:
|
195
|
-
- -
|
195
|
+
- - '>='
|
196
196
|
- !ruby/object:Gem::Version
|
197
197
|
version: '0'
|
198
198
|
- !ruby/object:Gem::Dependency
|
@@ -241,154 +241,140 @@ dependencies:
|
|
241
241
|
name: ffaker
|
242
242
|
requirement: !ruby/object:Gem::Requirement
|
243
243
|
requirements:
|
244
|
-
- -
|
244
|
+
- - '>='
|
245
245
|
- !ruby/object:Gem::Version
|
246
246
|
version: 1.12.0
|
247
247
|
type: :runtime
|
248
248
|
prerelease: false
|
249
249
|
version_requirements: !ruby/object:Gem::Requirement
|
250
250
|
requirements:
|
251
|
-
- -
|
251
|
+
- - '>='
|
252
252
|
- !ruby/object:Gem::Version
|
253
253
|
version: 1.12.0
|
254
254
|
- !ruby/object:Gem::Dependency
|
255
255
|
name: cancan
|
256
256
|
requirement: !ruby/object:Gem::Requirement
|
257
257
|
requirements:
|
258
|
-
- -
|
258
|
+
- - '>='
|
259
259
|
- !ruby/object:Gem::Version
|
260
260
|
version: '0'
|
261
261
|
type: :runtime
|
262
262
|
prerelease: false
|
263
263
|
version_requirements: !ruby/object:Gem::Requirement
|
264
264
|
requirements:
|
265
|
-
- -
|
265
|
+
- - '>='
|
266
266
|
- !ruby/object:Gem::Version
|
267
267
|
version: '0'
|
268
268
|
- !ruby/object:Gem::Dependency
|
269
|
-
name:
|
269
|
+
name: font-awesome-rails
|
270
270
|
requirement: !ruby/object:Gem::Requirement
|
271
271
|
requirements:
|
272
|
-
- -
|
272
|
+
- - '>='
|
273
273
|
- !ruby/object:Gem::Version
|
274
274
|
version: '0'
|
275
275
|
type: :runtime
|
276
276
|
prerelease: false
|
277
277
|
version_requirements: !ruby/object:Gem::Requirement
|
278
278
|
requirements:
|
279
|
-
- -
|
279
|
+
- - '>='
|
280
280
|
- !ruby/object:Gem::Version
|
281
281
|
version: '0'
|
282
282
|
- !ruby/object:Gem::Dependency
|
283
|
-
name:
|
283
|
+
name: premailer
|
284
284
|
requirement: !ruby/object:Gem::Requirement
|
285
285
|
requirements:
|
286
|
-
- -
|
286
|
+
- - '>='
|
287
287
|
- !ruby/object:Gem::Version
|
288
288
|
version: '0'
|
289
289
|
type: :runtime
|
290
290
|
prerelease: false
|
291
291
|
version_requirements: !ruby/object:Gem::Requirement
|
292
292
|
requirements:
|
293
|
-
- -
|
293
|
+
- - '>='
|
294
294
|
- !ruby/object:Gem::Version
|
295
295
|
version: '0'
|
296
296
|
- !ruby/object:Gem::Dependency
|
297
|
-
name:
|
297
|
+
name: nokogiri
|
298
298
|
requirement: !ruby/object:Gem::Requirement
|
299
299
|
requirements:
|
300
|
-
- -
|
300
|
+
- - '>='
|
301
301
|
- !ruby/object:Gem::Version
|
302
|
-
version:
|
302
|
+
version: '0'
|
303
303
|
type: :runtime
|
304
304
|
prerelease: false
|
305
305
|
version_requirements: !ruby/object:Gem::Requirement
|
306
306
|
requirements:
|
307
|
-
- -
|
307
|
+
- - '>='
|
308
308
|
- !ruby/object:Gem::Version
|
309
|
-
version:
|
309
|
+
version: '0'
|
310
310
|
- !ruby/object:Gem::Dependency
|
311
|
-
name:
|
311
|
+
name: responds_to_parent
|
312
312
|
requirement: !ruby/object:Gem::Requirement
|
313
313
|
requirements:
|
314
|
-
- -
|
314
|
+
- - '>='
|
315
315
|
- !ruby/object:Gem::Version
|
316
|
-
version:
|
316
|
+
version: 1.1.0
|
317
317
|
type: :runtime
|
318
318
|
prerelease: false
|
319
319
|
version_requirements: !ruby/object:Gem::Requirement
|
320
320
|
requirements:
|
321
|
-
- -
|
321
|
+
- - '>='
|
322
322
|
- !ruby/object:Gem::Version
|
323
|
-
version:
|
323
|
+
version: 1.1.0
|
324
324
|
- !ruby/object:Gem::Dependency
|
325
|
-
name:
|
325
|
+
name: rails3-jquery-autocomplete
|
326
326
|
requirement: !ruby/object:Gem::Requirement
|
327
327
|
requirements:
|
328
|
-
- -
|
328
|
+
- - '>='
|
329
329
|
- !ruby/object:Gem::Version
|
330
330
|
version: '0'
|
331
331
|
type: :runtime
|
332
332
|
prerelease: false
|
333
333
|
version_requirements: !ruby/object:Gem::Requirement
|
334
334
|
requirements:
|
335
|
-
- -
|
335
|
+
- - '>='
|
336
336
|
- !ruby/object:Gem::Version
|
337
337
|
version: '0'
|
338
338
|
- !ruby/object:Gem::Dependency
|
339
|
-
name:
|
339
|
+
name: valium
|
340
340
|
requirement: !ruby/object:Gem::Requirement
|
341
341
|
requirements:
|
342
|
-
- -
|
342
|
+
- - '>='
|
343
343
|
- !ruby/object:Gem::Version
|
344
|
-
version: 0
|
344
|
+
version: '0'
|
345
345
|
type: :runtime
|
346
346
|
prerelease: false
|
347
347
|
version_requirements: !ruby/object:Gem::Requirement
|
348
348
|
requirements:
|
349
|
-
- -
|
349
|
+
- - '>='
|
350
350
|
- !ruby/object:Gem::Version
|
351
|
-
version: 0
|
351
|
+
version: '0'
|
352
352
|
- !ruby/object:Gem::Dependency
|
353
353
|
name: ransack_ui
|
354
354
|
requirement: !ruby/object:Gem::Requirement
|
355
355
|
requirements:
|
356
|
-
- -
|
356
|
+
- - '>='
|
357
357
|
- !ruby/object:Gem::Version
|
358
358
|
version: 1.1.0
|
359
359
|
type: :runtime
|
360
360
|
prerelease: false
|
361
361
|
version_requirements: !ruby/object:Gem::Requirement
|
362
362
|
requirements:
|
363
|
-
- -
|
363
|
+
- - '>='
|
364
364
|
- !ruby/object:Gem::Version
|
365
365
|
version: 1.1.0
|
366
|
-
- !ruby/object:Gem::Dependency
|
367
|
-
name: ajax-chosen-rails
|
368
|
-
requirement: !ruby/object:Gem::Requirement
|
369
|
-
requirements:
|
370
|
-
- - ! '>='
|
371
|
-
- !ruby/object:Gem::Version
|
372
|
-
version: 0.2.1
|
373
|
-
type: :runtime
|
374
|
-
prerelease: false
|
375
|
-
version_requirements: !ruby/object:Gem::Requirement
|
376
|
-
requirements:
|
377
|
-
- - ! '>='
|
378
|
-
- !ruby/object:Gem::Version
|
379
|
-
version: 0.2.1
|
380
366
|
- !ruby/object:Gem::Dependency
|
381
367
|
name: email_reply_parser_ffcrm
|
382
368
|
requirement: !ruby/object:Gem::Requirement
|
383
369
|
requirements:
|
384
|
-
- -
|
370
|
+
- - '>='
|
385
371
|
- !ruby/object:Gem::Version
|
386
372
|
version: '0'
|
387
373
|
type: :runtime
|
388
374
|
prerelease: false
|
389
375
|
version_requirements: !ruby/object:Gem::Requirement
|
390
376
|
requirements:
|
391
|
-
- -
|
377
|
+
- - '>='
|
392
378
|
- !ruby/object:Gem::Version
|
393
379
|
version: '0'
|
394
380
|
description: An open source, Ruby on Rails customer relationship management platform
|
@@ -419,10 +405,8 @@ files:
|
|
419
405
|
- app/assets/images/asterisk.gif
|
420
406
|
- app/assets/images/avatar.jpg
|
421
407
|
- app/assets/images/blog.gif
|
422
|
-
- app/assets/images/delete.png
|
423
408
|
- app/assets/images/facebook-close.gif
|
424
409
|
- app/assets/images/facebook.gif
|
425
|
-
- app/assets/images/iconset_attribution.png
|
426
410
|
- app/assets/images/info.png
|
427
411
|
- app/assets/images/info_tiny.png
|
428
412
|
- app/assets/images/linkedin.gif
|
@@ -437,6 +421,7 @@ files:
|
|
437
421
|
- app/assets/javascripts/crm.js
|
438
422
|
- app/assets/javascripts/crm_chosen.js.coffee
|
439
423
|
- app/assets/javascripts/crm_classes.js
|
424
|
+
- app/assets/javascripts/crm_comments.js.coffee
|
440
425
|
- app/assets/javascripts/crm_fields.js
|
441
426
|
- app/assets/javascripts/crm_loginout.js
|
442
427
|
- app/assets/javascripts/crm_textarea_autocomplete.js
|
@@ -446,6 +431,7 @@ files:
|
|
446
431
|
- app/assets/javascripts/jquery-noconflict.js
|
447
432
|
- app/assets/javascripts/lists.js.coffee
|
448
433
|
- app/assets/javascripts/search.js.coffee
|
434
|
+
- app/assets/javascripts/timeago.js
|
449
435
|
- app/assets/stylesheets/admin/fields.css.scss
|
450
436
|
- app/assets/stylesheets/advanced_search.css.scss
|
451
437
|
- app/assets/stylesheets/application.css.erb
|
@@ -562,16 +548,16 @@ files:
|
|
562
548
|
- app/views/accounts/_sidebar_show.html.haml
|
563
549
|
- app/views/accounts/_title_bar.html.haml
|
564
550
|
- app/views/accounts/_top_section.html.haml
|
565
|
-
- app/views/accounts/create.js.
|
566
|
-
- app/views/accounts/destroy.js.
|
567
|
-
- app/views/accounts/edit.js.
|
551
|
+
- app/views/accounts/create.js.haml
|
552
|
+
- app/views/accounts/destroy.js.haml
|
553
|
+
- app/views/accounts/edit.js.haml
|
568
554
|
- app/views/accounts/index.html.haml
|
569
|
-
- app/views/accounts/index.js.
|
555
|
+
- app/views/accounts/index.js.haml
|
570
556
|
- app/views/accounts/index.xls.builder
|
571
|
-
- app/views/accounts/new.js.
|
557
|
+
- app/views/accounts/new.js.haml
|
572
558
|
- app/views/accounts/show.html.haml
|
573
|
-
- app/views/accounts/show.js.
|
574
|
-
- app/views/accounts/update.js.
|
559
|
+
- app/views/accounts/show.js.haml
|
560
|
+
- app/views/accounts/update.js.haml
|
575
561
|
- app/views/admin/custom_fields/_base_field.html.haml
|
576
562
|
- app/views/admin/custom_fields/_check_boxes_field.html.haml
|
577
563
|
- app/views/admin/custom_fields/_date_field.html.haml
|
@@ -586,36 +572,36 @@ files:
|
|
586
572
|
- app/views/admin/field_groups/_field_group.html.haml
|
587
573
|
- app/views/admin/field_groups/_new.html.haml
|
588
574
|
- app/views/admin/field_groups/_top_section.html.haml
|
589
|
-
- app/views/admin/field_groups/confirm.js.
|
590
|
-
- app/views/admin/field_groups/create.js.
|
591
|
-
- app/views/admin/field_groups/destroy.js.
|
592
|
-
- app/views/admin/field_groups/edit.js.
|
593
|
-
- app/views/admin/field_groups/new.js.
|
594
|
-
- app/views/admin/field_groups/update.js.
|
575
|
+
- app/views/admin/field_groups/confirm.js.haml
|
576
|
+
- app/views/admin/field_groups/create.js.haml
|
577
|
+
- app/views/admin/field_groups/destroy.js.haml
|
578
|
+
- app/views/admin/field_groups/edit.js.haml
|
579
|
+
- app/views/admin/field_groups/new.js.haml
|
580
|
+
- app/views/admin/field_groups/update.js.haml
|
595
581
|
- app/views/admin/fields/_field.html.haml
|
596
582
|
- app/views/admin/fields/_form.html.haml
|
597
583
|
- app/views/admin/fields/_sidebar_index.html.haml
|
598
584
|
- app/views/admin/fields/_sidebar_show.html.haml
|
599
585
|
- app/views/admin/fields/_sort_by.html.haml
|
600
586
|
- app/views/admin/fields/_subform.html.haml
|
601
|
-
- app/views/admin/fields/create.js.
|
602
|
-
- app/views/admin/fields/destroy.js.
|
603
|
-
- app/views/admin/fields/edit.js.
|
587
|
+
- app/views/admin/fields/create.js.haml
|
588
|
+
- app/views/admin/fields/destroy.js.haml
|
589
|
+
- app/views/admin/fields/edit.js.haml
|
604
590
|
- app/views/admin/fields/index.html.haml
|
605
591
|
- app/views/admin/fields/show.html.haml
|
606
|
-
- app/views/admin/fields/update.js.
|
592
|
+
- app/views/admin/fields/update.js.haml
|
607
593
|
- app/views/admin/groups/_edit.html.haml
|
608
594
|
- app/views/admin/groups/_form.html.haml
|
609
595
|
- app/views/admin/groups/_group.html.haml
|
610
596
|
- app/views/admin/groups/_new.html.haml
|
611
|
-
- app/views/admin/groups/create.js.
|
612
|
-
- app/views/admin/groups/destroy.js.
|
613
|
-
- app/views/admin/groups/edit.js.
|
597
|
+
- app/views/admin/groups/create.js.haml
|
598
|
+
- app/views/admin/groups/destroy.js.haml
|
599
|
+
- app/views/admin/groups/edit.js.haml
|
614
600
|
- app/views/admin/groups/index.html.haml
|
615
|
-
- app/views/admin/groups/index.js.
|
616
|
-
- app/views/admin/groups/new.js.
|
601
|
+
- app/views/admin/groups/index.js.haml
|
602
|
+
- app/views/admin/groups/new.js.haml
|
617
603
|
- app/views/admin/groups/show.html.haml
|
618
|
-
- app/views/admin/groups/update.js.
|
604
|
+
- app/views/admin/groups/update.js.haml
|
619
605
|
- app/views/admin/plugins/_plugin.html.haml
|
620
606
|
- app/views/admin/plugins/index.html.haml
|
621
607
|
- app/views/admin/settings/index.html.haml
|
@@ -624,30 +610,30 @@ files:
|
|
624
610
|
- app/views/admin/tags/_new.html.haml
|
625
611
|
- app/views/admin/tags/_tag.html.haml
|
626
612
|
- app/views/admin/tags/_top_section.html.haml
|
627
|
-
- app/views/admin/tags/confirm.js.
|
628
|
-
- app/views/admin/tags/create.js.
|
629
|
-
- app/views/admin/tags/destroy.js.
|
630
|
-
- app/views/admin/tags/edit.js.
|
613
|
+
- app/views/admin/tags/confirm.js.haml
|
614
|
+
- app/views/admin/tags/create.js.haml
|
615
|
+
- app/views/admin/tags/destroy.js.haml
|
616
|
+
- app/views/admin/tags/edit.js.haml
|
631
617
|
- app/views/admin/tags/index.html.haml
|
632
|
-
- app/views/admin/tags/new.js.
|
633
|
-
- app/views/admin/tags/update.js.
|
618
|
+
- app/views/admin/tags/new.js.haml
|
619
|
+
- app/views/admin/tags/update.js.haml
|
634
620
|
- app/views/admin/users/_confirm.html.haml
|
635
621
|
- app/views/admin/users/_edit.html.haml
|
636
622
|
- app/views/admin/users/_new.html.haml
|
637
623
|
- app/views/admin/users/_profile.html.haml
|
638
624
|
- app/views/admin/users/_sidebar_index.html.haml
|
639
625
|
- app/views/admin/users/_user.html.haml
|
640
|
-
- app/views/admin/users/confirm.js.
|
641
|
-
- app/views/admin/users/create.js.
|
642
|
-
- app/views/admin/users/destroy.js.
|
643
|
-
- app/views/admin/users/edit.js.
|
626
|
+
- app/views/admin/users/confirm.js.haml
|
627
|
+
- app/views/admin/users/create.js.haml
|
628
|
+
- app/views/admin/users/destroy.js.haml
|
629
|
+
- app/views/admin/users/edit.js.haml
|
644
630
|
- app/views/admin/users/index.html.haml
|
645
|
-
- app/views/admin/users/index.js.
|
646
|
-
- app/views/admin/users/new.js.
|
647
|
-
- app/views/admin/users/reactivate.js.
|
631
|
+
- app/views/admin/users/index.js.haml
|
632
|
+
- app/views/admin/users/new.js.haml
|
633
|
+
- app/views/admin/users/reactivate.js.haml
|
648
634
|
- app/views/admin/users/show.html.haml
|
649
|
-
- app/views/admin/users/suspend.js.
|
650
|
-
- app/views/admin/users/update.js.
|
635
|
+
- app/views/admin/users/suspend.js.haml
|
636
|
+
- app/views/admin/users/update.js.haml
|
651
637
|
- app/views/application/_auto_complete.html.haml
|
652
638
|
- app/views/application/index.atom.builder
|
653
639
|
- app/views/application/index.rss.builder
|
@@ -666,25 +652,24 @@ files:
|
|
666
652
|
- app/views/campaigns/_status.html.haml
|
667
653
|
- app/views/campaigns/_title_bar.html.haml
|
668
654
|
- app/views/campaigns/_top_section.html.haml
|
669
|
-
- app/views/campaigns/create.js.
|
670
|
-
- app/views/campaigns/destroy.js.
|
671
|
-
- app/views/campaigns/edit.js.
|
655
|
+
- app/views/campaigns/create.js.haml
|
656
|
+
- app/views/campaigns/destroy.js.haml
|
657
|
+
- app/views/campaigns/edit.js.haml
|
672
658
|
- app/views/campaigns/index.html.haml
|
673
|
-
- app/views/campaigns/index.js.
|
659
|
+
- app/views/campaigns/index.js.haml
|
674
660
|
- app/views/campaigns/index.xls.builder
|
675
|
-
- app/views/campaigns/new.js.
|
661
|
+
- app/views/campaigns/new.js.haml
|
676
662
|
- app/views/campaigns/show.html.haml
|
677
|
-
- app/views/campaigns/show.js.
|
678
|
-
- app/views/campaigns/update.js.
|
663
|
+
- app/views/campaigns/show.js.haml
|
664
|
+
- app/views/campaigns/update.js.haml
|
679
665
|
- app/views/comments/_comment.html.haml
|
680
666
|
- app/views/comments/_edit.html.haml
|
681
667
|
- app/views/comments/_new.html.haml
|
682
668
|
- app/views/comments/_subscription_links.html.haml
|
683
|
-
- app/views/comments/create.js.
|
684
|
-
- app/views/comments/destroy.js.
|
685
|
-
- app/views/comments/edit.js.
|
686
|
-
- app/views/comments/
|
687
|
-
- app/views/comments/update.js.rjs
|
669
|
+
- app/views/comments/create.js.haml
|
670
|
+
- app/views/comments/destroy.js.haml
|
671
|
+
- app/views/comments/edit.js.haml
|
672
|
+
- app/views/comments/update.js.haml
|
688
673
|
- app/views/contacts/_contact.html.haml
|
689
674
|
- app/views/contacts/_contacts.html.haml
|
690
675
|
- app/views/contacts/_edit.html.haml
|
@@ -700,39 +685,39 @@ files:
|
|
700
685
|
- app/views/contacts/_title_bar.html.haml
|
701
686
|
- app/views/contacts/_top_section.html.haml
|
702
687
|
- app/views/contacts/_web.html.haml
|
703
|
-
- app/views/contacts/create.js.
|
704
|
-
- app/views/contacts/destroy.js.
|
705
|
-
- app/views/contacts/edit.js.
|
688
|
+
- app/views/contacts/create.js.haml
|
689
|
+
- app/views/contacts/destroy.js.haml
|
690
|
+
- app/views/contacts/edit.js.haml
|
706
691
|
- app/views/contacts/index.html.haml
|
707
|
-
- app/views/contacts/index.js.
|
692
|
+
- app/views/contacts/index.js.haml
|
708
693
|
- app/views/contacts/index.xls.builder
|
709
|
-
- app/views/contacts/new.js.
|
694
|
+
- app/views/contacts/new.js.haml
|
710
695
|
- app/views/contacts/show.html.haml
|
711
|
-
- app/views/contacts/show.js.
|
712
|
-
- app/views/contacts/update.js.
|
696
|
+
- app/views/contacts/show.js.haml
|
697
|
+
- app/views/contacts/update.js.haml
|
713
698
|
- app/views/dropbox_mailer/dropbox_notification.html.haml
|
714
699
|
- app/views/emails/_email.html.haml
|
715
|
-
- app/views/emails/destroy.js.
|
700
|
+
- app/views/emails/destroy.js.haml
|
716
701
|
- app/views/entities/_basic_search.html.haml
|
717
702
|
- app/views/entities/_permissions.html.haml
|
718
703
|
- app/views/entities/_search.html.haml
|
719
704
|
- app/views/entities/_section_custom_fields.html.haml
|
720
705
|
- app/views/entities/_sort_fields.html.haml
|
721
706
|
- app/views/entities/_title_bar.html.haml
|
722
|
-
- app/views/entities/attach.js.
|
723
|
-
- app/views/entities/contacts.js.
|
724
|
-
- app/views/entities/discard.js.
|
725
|
-
- app/views/entities/leads.js.
|
726
|
-
- app/views/entities/opportunities.js.
|
727
|
-
- app/views/entities/subscription_update.js.
|
728
|
-
- app/views/entities/versions.js.
|
707
|
+
- app/views/entities/attach.js.haml
|
708
|
+
- app/views/entities/contacts.js.haml
|
709
|
+
- app/views/entities/discard.js.haml
|
710
|
+
- app/views/entities/leads.js.haml
|
711
|
+
- app/views/entities/opportunities.js.haml
|
712
|
+
- app/views/entities/subscription_update.js.haml
|
713
|
+
- app/views/entities/versions.js.haml
|
729
714
|
- app/views/fields/_edit_custom_field_group.html.haml
|
730
715
|
- app/views/fields/_group.html.haml
|
731
716
|
- app/views/fields/_group_table.html.haml
|
732
717
|
- app/views/fields/_group_view.html.haml
|
733
718
|
- app/views/fields/_groups.html.haml
|
734
719
|
- app/views/fields/_sidebar_show.html.haml
|
735
|
-
- app/views/fields/group.js.
|
720
|
+
- app/views/fields/group.js.erb
|
736
721
|
- app/views/home/_account.html.haml
|
737
722
|
- app/views/home/_activity.html.haml
|
738
723
|
- app/views/home/_assets_menu.html.haml
|
@@ -744,9 +729,9 @@ files:
|
|
744
729
|
- app/views/home/_users_menu.html.haml
|
745
730
|
- app/views/home/index.atom.builder
|
746
731
|
- app/views/home/index.html.haml
|
747
|
-
- app/views/home/index.js.
|
732
|
+
- app/views/home/index.js.haml
|
748
733
|
- app/views/home/index.rss.builder
|
749
|
-
- app/views/home/options.js.
|
734
|
+
- app/views/home/options.js.haml
|
750
735
|
- app/views/layouts/500.html.haml
|
751
736
|
- app/views/layouts/_about.html.haml
|
752
737
|
- app/views/layouts/_footer.html.haml
|
@@ -775,22 +760,23 @@ files:
|
|
775
760
|
- app/views/leads/_title_bar.html.haml
|
776
761
|
- app/views/leads/_top_section.html.haml
|
777
762
|
- app/views/leads/_web.html.haml
|
778
|
-
- app/views/leads/convert.js.
|
779
|
-
- app/views/leads/create.js.
|
780
|
-
- app/views/leads/destroy.js.
|
781
|
-
- app/views/leads/edit.js.
|
763
|
+
- app/views/leads/convert.js.haml
|
764
|
+
- app/views/leads/create.js.haml
|
765
|
+
- app/views/leads/destroy.js.haml
|
766
|
+
- app/views/leads/edit.js.haml
|
782
767
|
- app/views/leads/index.html.haml
|
783
|
-
- app/views/leads/index.js.
|
768
|
+
- app/views/leads/index.js.haml
|
784
769
|
- app/views/leads/index.xls.builder
|
785
|
-
- app/views/leads/new.js.
|
786
|
-
- app/views/leads/promote.js.
|
787
|
-
- app/views/leads/reject.js.
|
770
|
+
- app/views/leads/new.js.haml
|
771
|
+
- app/views/leads/promote.js.haml
|
772
|
+
- app/views/leads/reject.js.haml
|
788
773
|
- app/views/leads/show.html.haml
|
789
|
-
- app/views/leads/show.js.
|
790
|
-
- app/views/leads/update.js.
|
774
|
+
- app/views/leads/show.js.haml
|
775
|
+
- app/views/leads/update.js.haml
|
776
|
+
- app/views/lists/_personal_sidebar.html.haml
|
791
777
|
- app/views/lists/_sidebar.html.haml
|
792
|
-
- app/views/lists/create.js.
|
793
|
-
- app/views/lists/destroy.js.
|
778
|
+
- app/views/lists/create.js.haml
|
779
|
+
- app/views/lists/destroy.js.haml
|
794
780
|
- app/views/opportunities/_edit.html.haml
|
795
781
|
- app/views/opportunities/_index_brief.html.haml
|
796
782
|
- app/views/opportunities/_index_long.html.haml
|
@@ -801,17 +787,17 @@ files:
|
|
801
787
|
- app/views/opportunities/_sidebar_show.html.haml
|
802
788
|
- app/views/opportunities/_title_bar.html.haml
|
803
789
|
- app/views/opportunities/_top_section.html.haml
|
804
|
-
- app/views/opportunities/contacts.js.
|
805
|
-
- app/views/opportunities/create.js.
|
806
|
-
- app/views/opportunities/destroy.js.
|
807
|
-
- app/views/opportunities/edit.js.
|
790
|
+
- app/views/opportunities/contacts.js.haml
|
791
|
+
- app/views/opportunities/create.js.haml
|
792
|
+
- app/views/opportunities/destroy.js.haml
|
793
|
+
- app/views/opportunities/edit.js.haml
|
808
794
|
- app/views/opportunities/index.html.haml
|
809
|
-
- app/views/opportunities/index.js.
|
795
|
+
- app/views/opportunities/index.js.haml
|
810
796
|
- app/views/opportunities/index.xls.builder
|
811
|
-
- app/views/opportunities/new.js.
|
797
|
+
- app/views/opportunities/new.js.haml
|
812
798
|
- app/views/opportunities/show.html.haml
|
813
|
-
- app/views/opportunities/show.js.
|
814
|
-
- app/views/opportunities/update.js.
|
799
|
+
- app/views/opportunities/show.js.haml
|
800
|
+
- app/views/opportunities/update.js.haml
|
815
801
|
- app/views/passwords/edit.html.haml
|
816
802
|
- app/views/passwords/new.html.haml
|
817
803
|
- app/views/shared/_add_comment.html.haml
|
@@ -846,16 +832,16 @@ files:
|
|
846
832
|
- app/views/tasks/_tasks.html.haml
|
847
833
|
- app/views/tasks/_title.html.haml
|
848
834
|
- app/views/tasks/_top_section.html.haml
|
849
|
-
- app/views/tasks/complete.js.
|
850
|
-
- app/views/tasks/create.js.
|
851
|
-
- app/views/tasks/destroy.js.
|
852
|
-
- app/views/tasks/discard.
|
853
|
-
- app/views/tasks/edit.js.
|
854
|
-
- app/views/tasks/filter.js.
|
835
|
+
- app/views/tasks/complete.js.haml
|
836
|
+
- app/views/tasks/create.js.haml
|
837
|
+
- app/views/tasks/destroy.js.haml
|
838
|
+
- app/views/tasks/discard.js.haml
|
839
|
+
- app/views/tasks/edit.js.haml
|
840
|
+
- app/views/tasks/filter.js.haml
|
855
841
|
- app/views/tasks/index.html.haml
|
856
842
|
- app/views/tasks/index.xls.builder
|
857
|
-
- app/views/tasks/new.js.
|
858
|
-
- app/views/tasks/update.js.
|
843
|
+
- app/views/tasks/new.js.haml
|
844
|
+
- app/views/tasks/update.js.haml
|
859
845
|
- app/views/user_mailer/assigned_entity_notification.html.haml
|
860
846
|
- app/views/user_mailer/password_reset_instructions.html.haml
|
861
847
|
- app/views/users/_avatar.html.haml
|
@@ -864,16 +850,16 @@ files:
|
|
864
850
|
- app/views/users/_profile.html.haml
|
865
851
|
- app/views/users/_user.html.haml
|
866
852
|
- app/views/users/_user_report.html.haml
|
867
|
-
- app/views/users/avatar.js.
|
868
|
-
- app/views/users/change_password.js.
|
869
|
-
- app/views/users/edit.js.
|
853
|
+
- app/views/users/avatar.js.haml
|
854
|
+
- app/views/users/change_password.js.haml
|
855
|
+
- app/views/users/edit.js.haml
|
870
856
|
- app/views/users/index.html.haml
|
871
857
|
- app/views/users/new.html.haml
|
872
858
|
- app/views/users/opportunities_overview.html.haml
|
873
|
-
- app/views/users/password.js.
|
859
|
+
- app/views/users/password.js.haml
|
874
860
|
- app/views/users/show.html.haml
|
875
|
-
- app/views/users/update.js.
|
876
|
-
- app/views/users/upload_avatar.js.
|
861
|
+
- app/views/users/update.js.haml
|
862
|
+
- app/views/users/upload_avatar.js.haml
|
877
863
|
- app/views/versions/_version.html.haml
|
878
864
|
- app/views/versions/_version_item.html.haml
|
879
865
|
- app/views/versions/_versions.html.haml
|
@@ -893,6 +879,7 @@ files:
|
|
893
879
|
- config/initializers/action_mailer.rb
|
894
880
|
- config/initializers/authlogic.rb
|
895
881
|
- config/initializers/constants.rb
|
882
|
+
- config/initializers/custom_field_ransack_translations.rb
|
896
883
|
- config/initializers/gravatar.rb
|
897
884
|
- config/initializers/locale.rb
|
898
885
|
- config/initializers/mime_types.rb
|
@@ -908,6 +895,7 @@ files:
|
|
908
895
|
- config/locales/cz_fat_free_crm.yml
|
909
896
|
- config/locales/de.yml
|
910
897
|
- config/locales/de_fat_free_crm.yml
|
898
|
+
- config/locales/de_ransack.yml
|
911
899
|
- config/locales/en-GB.yml
|
912
900
|
- config/locales/en-GB_fat_free_crm.yml
|
913
901
|
- config/locales/en-US.yml
|
@@ -938,6 +926,7 @@ files:
|
|
938
926
|
- config/routes.rb
|
939
927
|
- config/settings.default.yml
|
940
928
|
- config/unicorn.rb
|
929
|
+
- custom_plan.rb
|
941
930
|
- db/demo/account_contacts.yml
|
942
931
|
- db/demo/account_opportunities.yml
|
943
932
|
- db/demo/accounts.yml
|
@@ -1011,6 +1000,7 @@ files:
|
|
1011
1000
|
- db/migrate/20120801032706_add_pair_id_to_fields.rb
|
1012
1001
|
- db/migrate/20121003063155_add_settings_to_custom_fields.rb
|
1013
1002
|
- db/migrate/20121221033947_fix_country_mapping.rb
|
1003
|
+
- db/migrate/20131207033244_add_user_id_to_lists.rb
|
1014
1004
|
- db/schema.rb
|
1015
1005
|
- db/seeds.rb
|
1016
1006
|
- db/seeds/fields.rb
|
@@ -1052,7 +1042,6 @@ files:
|
|
1052
1042
|
- lib/fat_free_crm/plugin.rb
|
1053
1043
|
- lib/fat_free_crm/plugin_dependencies.rb
|
1054
1044
|
- lib/fat_free_crm/renderers.rb
|
1055
|
-
- lib/fat_free_crm/secret_token_generator.rb
|
1056
1045
|
- lib/fat_free_crm/sortable.rb
|
1057
1046
|
- lib/fat_free_crm/tabs.rb
|
1058
1047
|
- lib/fat_free_crm/version.rb
|
@@ -1172,7 +1161,6 @@ files:
|
|
1172
1161
|
- spec/lib/mail_processor/dropbox_spec.rb
|
1173
1162
|
- spec/lib/mail_processor/sample_emails/dropbox.rb
|
1174
1163
|
- spec/lib/permissions_spec.rb
|
1175
|
-
- spec/lib/secret_token_generator_spec.rb
|
1176
1164
|
- spec/lib/view_factory_spec.rb
|
1177
1165
|
- spec/mailers/subscription_mailer_spec.rb
|
1178
1166
|
- spec/mailers/user_mailer_spec.rb
|
@@ -1198,7 +1186,6 @@ files:
|
|
1198
1186
|
- spec/models/polymorphic/task_spec.rb
|
1199
1187
|
- spec/models/polymorphic/version_spec.rb
|
1200
1188
|
- spec/models/setting_spec.rb
|
1201
|
-
- spec/models/users/abilities/user_ability_spec.rb
|
1202
1189
|
- spec/models/users/authentication_spec.rb
|
1203
1190
|
- spec/models/users/group_spec.rb
|
1204
1191
|
- spec/models/users/permission_spec.rb
|
@@ -1221,98 +1208,100 @@ files:
|
|
1221
1208
|
- spec/support/auth_macros.rb
|
1222
1209
|
- spec/support/macros.rb
|
1223
1210
|
- spec/support/mail_processor_mocks.rb
|
1224
|
-
- spec/support/rjs_support.rb
|
1225
1211
|
- spec/support/uploaded_file.rb
|
1226
1212
|
- spec/views/accounts/_edit.haml_spec.rb
|
1227
1213
|
- spec/views/accounts/_new.haml_spec.rb
|
1228
|
-
- spec/views/accounts/create.
|
1229
|
-
- spec/views/accounts/destroy.
|
1230
|
-
- spec/views/accounts/edit.
|
1214
|
+
- spec/views/accounts/create.js.haml_spec.rb
|
1215
|
+
- spec/views/accounts/destroy.js.haml_spec.rb
|
1216
|
+
- spec/views/accounts/edit.js.haml_spec.rb
|
1231
1217
|
- spec/views/accounts/index.haml_spec.rb
|
1232
|
-
- spec/views/accounts/index.
|
1233
|
-
- spec/views/accounts/new.
|
1218
|
+
- spec/views/accounts/index.js.haml_spec.rb
|
1219
|
+
- spec/views/accounts/new.js.haml_spec.rb
|
1234
1220
|
- spec/views/accounts/show.haml_spec.rb
|
1235
|
-
- spec/views/accounts/update.
|
1221
|
+
- spec/views/accounts/update.js.haml_spec.rb
|
1222
|
+
- spec/views/admin/field_groups/create.js.haml_spec.rb
|
1223
|
+
- spec/views/admin/field_groups/destroy.js.haml_spec.rb
|
1224
|
+
- spec/views/admin/field_groups/edit.js.haml_spec.rb
|
1225
|
+
- spec/views/admin/field_groups/new.js.haml_spec.rb
|
1226
|
+
- spec/views/admin/field_groups/update.js.haml_spec.rb
|
1236
1227
|
- spec/views/admin/users/_create.haml_spec.rb
|
1237
|
-
- spec/views/admin/users/create.
|
1238
|
-
- spec/views/admin/users/destroy.
|
1239
|
-
- spec/views/admin/users/edit.
|
1228
|
+
- spec/views/admin/users/create.js.haml_spec.rb
|
1229
|
+
- spec/views/admin/users/destroy.js.haml_spec.rb
|
1230
|
+
- spec/views/admin/users/edit.js.haml_spec.rb
|
1240
1231
|
- spec/views/admin/users/index.haml_spec.rb
|
1241
|
-
- spec/views/admin/users/index.
|
1242
|
-
- spec/views/admin/users/new.
|
1243
|
-
- spec/views/admin/users/reactivate.
|
1232
|
+
- spec/views/admin/users/index.js.haml_spec.rb
|
1233
|
+
- spec/views/admin/users/new.js.haml_spec.rb
|
1234
|
+
- spec/views/admin/users/reactivate.js.haml_spec.rb
|
1244
1235
|
- spec/views/admin/users/show.haml_spec.rb
|
1245
|
-
- spec/views/admin/users/suspend.
|
1246
|
-
- spec/views/admin/users/update.
|
1236
|
+
- spec/views/admin/users/suspend.js.haml_spec.rb
|
1237
|
+
- spec/views/admin/users/update.js.haml_spec.rb
|
1247
1238
|
- spec/views/application/auto_complete.haml_spec.rb
|
1248
1239
|
- spec/views/authentications/new.haml_spec.rb
|
1249
1240
|
- spec/views/campaigns/_edit.haml_spec.rb
|
1250
1241
|
- spec/views/campaigns/_new.haml_spec.rb
|
1251
|
-
- spec/views/campaigns/create.
|
1252
|
-
- spec/views/campaigns/destroy.
|
1253
|
-
- spec/views/campaigns/edit.
|
1242
|
+
- spec/views/campaigns/create.js.haml_spec.rb
|
1243
|
+
- spec/views/campaigns/destroy.js.haml_spec.rb
|
1244
|
+
- spec/views/campaigns/edit.js.haml_spec.rb
|
1254
1245
|
- spec/views/campaigns/index.haml_spec.rb
|
1255
|
-
- spec/views/campaigns/index.
|
1256
|
-
- spec/views/campaigns/new.
|
1246
|
+
- spec/views/campaigns/index.js.haml_spec.rb
|
1247
|
+
- spec/views/campaigns/new.js.haml_spec.rb
|
1257
1248
|
- spec/views/campaigns/show.haml_spec.rb
|
1258
|
-
- spec/views/campaigns/update.
|
1259
|
-
- spec/views/comments/
|
1249
|
+
- spec/views/campaigns/update.js.haml_spec.rb
|
1250
|
+
- spec/views/comments/edit.js.haml_spec.rb
|
1260
1251
|
- spec/views/contacts/_edit.haml_spec.rb
|
1261
1252
|
- spec/views/contacts/_new.haml_spec.rb
|
1262
|
-
- spec/views/contacts/create.
|
1263
|
-
- spec/views/contacts/destroy.
|
1264
|
-
- spec/views/contacts/edit.
|
1253
|
+
- spec/views/contacts/create.js.haml_spec.rb
|
1254
|
+
- spec/views/contacts/destroy.js.haml_spec.rb
|
1255
|
+
- spec/views/contacts/edit.js.haml_spec.rb
|
1265
1256
|
- spec/views/contacts/index.haml_spec.rb
|
1266
|
-
- spec/views/contacts/index.
|
1267
|
-
- spec/views/contacts/new.
|
1257
|
+
- spec/views/contacts/index.js.html_spec.rb
|
1258
|
+
- spec/views/contacts/new.js.haml_spec.rb
|
1268
1259
|
- spec/views/contacts/show.haml_spec.rb
|
1269
|
-
- spec/views/contacts/update.
|
1260
|
+
- spec/views/contacts/update.js.haml_spec.rb
|
1270
1261
|
- spec/views/home/index.haml_spec.rb
|
1271
|
-
- spec/views/home/index.
|
1272
|
-
- spec/views/home/options.
|
1262
|
+
- spec/views/home/index.js.haml_spec.rb
|
1263
|
+
- spec/views/home/options.js.haml_spec.rb
|
1273
1264
|
- spec/views/leads/_convert.haml_spec.rb
|
1274
1265
|
- spec/views/leads/_edit.haml_spec.rb
|
1275
1266
|
- spec/views/leads/_new.haml_spec.rb
|
1276
1267
|
- spec/views/leads/_sidebar_show.haml_spec.rb
|
1277
|
-
- spec/views/leads/convert.
|
1278
|
-
- spec/views/leads/create.
|
1279
|
-
- spec/views/leads/destroy.
|
1280
|
-
- spec/views/leads/edit.
|
1268
|
+
- spec/views/leads/convert.js.haml_spec.rb
|
1269
|
+
- spec/views/leads/create.js.haml_spec.rb
|
1270
|
+
- spec/views/leads/destroy.js.haml_spec.rb
|
1271
|
+
- spec/views/leads/edit.js.haml_spec.rb
|
1281
1272
|
- spec/views/leads/index.haml_spec.rb
|
1282
|
-
- spec/views/leads/index.
|
1283
|
-
- spec/views/leads/new.
|
1284
|
-
- spec/views/leads/promote.
|
1285
|
-
- spec/views/leads/reject.
|
1273
|
+
- spec/views/leads/index.js.haml_spec.rb
|
1274
|
+
- spec/views/leads/new.js.haml_spec.rb
|
1275
|
+
- spec/views/leads/promote.js.haml_spec.rb
|
1276
|
+
- spec/views/leads/reject.js.haml_spec.rb
|
1286
1277
|
- spec/views/leads/show.haml_spec.rb
|
1287
|
-
- spec/views/leads/update.
|
1278
|
+
- spec/views/leads/update.js.haml_spec.rb
|
1288
1279
|
- spec/views/opportunities/_edit.haml_spec.rb
|
1289
1280
|
- spec/views/opportunities/_new.haml_spec.rb
|
1290
|
-
- spec/views/opportunities/create.
|
1291
|
-
- spec/views/opportunities/destroy.
|
1292
|
-
- spec/views/opportunities/edit.
|
1281
|
+
- spec/views/opportunities/create.js.haml_spec.rb
|
1282
|
+
- spec/views/opportunities/destroy.js.haml_spec.rb
|
1283
|
+
- spec/views/opportunities/edit.js.haml_spec.rb
|
1293
1284
|
- spec/views/opportunities/index.haml_spec.rb
|
1294
|
-
- spec/views/opportunities/index.
|
1295
|
-
- spec/views/opportunities/new.
|
1285
|
+
- spec/views/opportunities/index.js.haml_spec.rb
|
1286
|
+
- spec/views/opportunities/new.js.haml_spec.rb
|
1296
1287
|
- spec/views/opportunities/show.haml_spec.rb
|
1297
|
-
- spec/views/opportunities/update.
|
1288
|
+
- spec/views/opportunities/update.js.haml_spec.rb
|
1298
1289
|
- spec/views/tasks/_edit.haml_spec.rb
|
1299
|
-
- spec/views/tasks/complete.
|
1300
|
-
- spec/views/tasks/create.
|
1301
|
-
- spec/views/tasks/destroy.
|
1302
|
-
- spec/views/tasks/edit.
|
1290
|
+
- spec/views/tasks/complete.js.haml_spec.rb
|
1291
|
+
- spec/views/tasks/create.js.haml_spec.rb
|
1292
|
+
- spec/views/tasks/destroy.js.haml_spec.rb
|
1293
|
+
- spec/views/tasks/edit.js.haml_spec.rb
|
1303
1294
|
- spec/views/tasks/index.haml_spec.rb
|
1304
|
-
- spec/views/tasks/new.
|
1305
|
-
- spec/views/tasks/update.
|
1306
|
-
- spec/views/users/avatar.
|
1307
|
-
- spec/views/users/change_password.
|
1308
|
-
- spec/views/users/edit.
|
1309
|
-
- spec/views/users/password.
|
1310
|
-
- spec/views/users/update.
|
1311
|
-
- spec/views/users/upload_avatar.
|
1312
|
-
- vendor/assets/images/brief.png
|
1295
|
+
- spec/views/tasks/new.js.haml_spec.rb
|
1296
|
+
- spec/views/tasks/update.js.haml_spec.rb
|
1297
|
+
- spec/views/users/avatar.js.haml_spec.rb
|
1298
|
+
- spec/views/users/change_password.js.haml_spec.rb
|
1299
|
+
- spec/views/users/edit.js.haml_spec.rb
|
1300
|
+
- spec/views/users/password.js.haml_spec.rb
|
1301
|
+
- spec/views/users/update.js.haml_spec.rb
|
1302
|
+
- spec/views/users/upload_avatar.js.haml_spec.rb
|
1313
1303
|
- vendor/assets/images/calendar_date_select/calendar.gif
|
1314
1304
|
- vendor/assets/images/chosen-sprite.png
|
1315
|
-
- vendor/assets/images/full.png
|
1316
1305
|
- vendor/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png
|
1317
1306
|
- vendor/assets/images/jquery-ui/ui-bg_flat_0_eeeeee_40x100.png
|
1318
1307
|
- vendor/assets/images/jquery-ui/ui-bg_flat_100_ffffff_40x100.png
|
@@ -1325,21 +1314,10 @@ files:
|
|
1325
1314
|
- vendor/assets/images/jquery-ui/ui-icons_466bb1_256x240.png
|
1326
1315
|
- vendor/assets/images/jquery-ui/ui-icons_ff0084_256x240.png
|
1327
1316
|
- vendor/assets/images/jquery-ui/ui-icons_ffffff_256x240.png
|
1328
|
-
- vendor/assets/
|
1329
|
-
- vendor/assets/
|
1330
|
-
- vendor/assets/
|
1331
|
-
- vendor/assets/
|
1332
|
-
- vendor/assets/images/tab_icons/campaigns_active.png
|
1333
|
-
- vendor/assets/images/tab_icons/contacts.png
|
1334
|
-
- vendor/assets/images/tab_icons/contacts_active.png
|
1335
|
-
- vendor/assets/images/tab_icons/dashboard.png
|
1336
|
-
- vendor/assets/images/tab_icons/dashboard_active.png
|
1337
|
-
- vendor/assets/images/tab_icons/leads.png
|
1338
|
-
- vendor/assets/images/tab_icons/leads_active.png
|
1339
|
-
- vendor/assets/images/tab_icons/opportunities.png
|
1340
|
-
- vendor/assets/images/tab_icons/opportunities_active.png
|
1341
|
-
- vendor/assets/images/tab_icons/tasks.png
|
1342
|
-
- vendor/assets/images/tab_icons/tasks_active.png
|
1317
|
+
- vendor/assets/javascripts/ajax-chosen-jquery.js
|
1318
|
+
- vendor/assets/javascripts/ajax-chosen-prototype.js
|
1319
|
+
- vendor/assets/javascripts/ajax-chosen.jquery.coffee
|
1320
|
+
- vendor/assets/javascripts/ajax-chosen.proto.coffee
|
1343
1321
|
- vendor/assets/javascripts/chosen-jquery.js
|
1344
1322
|
- vendor/assets/javascripts/chosen-prototype.js
|
1345
1323
|
- vendor/assets/javascripts/chosen.jquery.coffee
|
@@ -1348,6 +1326,23 @@ files:
|
|
1348
1326
|
- vendor/assets/javascripts/facebooklist.js
|
1349
1327
|
- vendor/assets/javascripts/facebooklist.simulate.js
|
1350
1328
|
- vendor/assets/javascripts/jquery.disable.js
|
1329
|
+
- vendor/assets/javascripts/jquery_timeago/index.js
|
1330
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.cz.js
|
1331
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.de.js
|
1332
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-GB.js
|
1333
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.en-US.js
|
1334
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.es.js
|
1335
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr-CA.js
|
1336
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.fr.js
|
1337
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.it.js
|
1338
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.ja.js
|
1339
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.js
|
1340
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.pl.js
|
1341
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.pt-BR.js
|
1342
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.ru.js
|
1343
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.sv-SE.js
|
1344
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.th.js
|
1345
|
+
- vendor/assets/javascripts/jquery_timeago/jquery.timeago.zh-CN.js
|
1351
1346
|
- vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-addon.js
|
1352
1347
|
- vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-af.js
|
1353
1348
|
- vendor/assets/javascripts/jquery_ui_datepicker/jquery-ui-timepicker-ca.js
|
@@ -1412,12 +1407,12 @@ require_paths:
|
|
1412
1407
|
- lib
|
1413
1408
|
required_ruby_version: !ruby/object:Gem::Requirement
|
1414
1409
|
requirements:
|
1415
|
-
- -
|
1410
|
+
- - '>='
|
1416
1411
|
- !ruby/object:Gem::Version
|
1417
1412
|
version: '1.9'
|
1418
1413
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1419
1414
|
requirements:
|
1420
|
-
- -
|
1415
|
+
- - '>='
|
1421
1416
|
- !ruby/object:Gem::Version
|
1422
1417
|
version: '0'
|
1423
1418
|
requirements: []
|