wice_grid 3.6.2 → 4.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +41 -0
- data/.circleci/run-build-locally.sh +7 -0
- data/.github/ISSUE_TEMPLATE/bug_report.md +32 -0
- data/.gitignore +5 -2
- data/Appraisals +11 -0
- data/CHANGELOG.md +38 -1
- data/Gemfile.lock +299 -0
- data/README.md +77 -34
- data/config/locales/ja.yml +3 -3
- data/gemfiles/rails_5.0.gemfile +7 -0
- data/gemfiles/rails_5.0.gemfile.lock +291 -0
- data/gemfiles/rails_5.1.gemfile +7 -0
- data/gemfiles/rails_5.1.gemfile.lock +291 -0
- data/gemfiles/rails_5.2.gemfile +7 -0
- data/gemfiles/rails_5.2.gemfile.lock +299 -0
- data/lib/wice/columns.rb +13 -6
- data/lib/wice/columns/column_integer.rb +11 -1
- data/lib/wice/columns/column_rails_datetime_helper.rb +3 -2
- data/lib/wice/columns/column_range.rb +6 -4
- data/lib/wice/grid_renderer.rb +23 -7
- data/lib/wice/helpers/bs_calendar_helpers.rb +9 -1
- data/lib/wice/helpers/wice_grid_view_helpers.rb +6 -6
- data/lib/wice/wice_grid_controller.rb +7 -5
- data/lib/wice/wice_grid_core_ext.rb +5 -1
- data/lib/wice/wice_grid_misc.rb +1 -1
- data/lib/wice_grid.rb +86 -59
- data/spec/acceptance_helper.rb +58 -0
- data/spec/features/action_column_request_spec.rb +280 -0
- data/spec/features/adding_rows_request_spec.rb +21 -0
- data/spec/features/all_records_request_spec.rb +18 -0
- data/spec/features/auto_reloads2_request_spec.rb +349 -0
- data/spec/features/auto_reloads3_request_spec.rb +130 -0
- data/spec/features/auto_reloads_request_spec.rb +348 -0
- data/spec/features/basics1_request_spec.rb +11 -0
- data/spec/features/basics2_request_spec.rb +10 -0
- data/spec/features/basics3_request_spec.rb +29 -0
- data/spec/features/basics4_request_spec.rb +19 -0
- data/spec/features/basics5_request_spec.rb +13 -0
- data/spec/features/basics6_request_spec.rb +22 -0
- data/spec/features/blockless_column_definition_spec.rb +27 -0
- data/spec/features/buttons_request_spec.rb +172 -0
- data/spec/features/csv_and_detached_filters_spec.rb +10 -0
- data/spec/features/csv_export_request_spec.rb +13 -0
- data/spec/features/custom_filter_params_request_spec.rb +29 -0
- data/spec/features/custom_filters1_request_spec.rb +155 -0
- data/spec/features/custom_filters2_request_spec.rb +53 -0
- data/spec/features/custom_filters3_request_spec.rb +50 -0
- data/spec/features/custom_filters4_request_spec.rb +13 -0
- data/spec/features/custom_ordering_on_calculated_request_spec.rb +30 -0
- data/spec/features/custom_ordering_request_spec.rb +36 -0
- data/spec/features/custom_ordering_with_arel_request_spec.rb +36 -0
- data/spec/features/custom_ordering_with_proc_request_spec.rb +44 -0
- data/spec/features/custom_ordering_with_ruby_request_spec.rb +30 -0
- data/spec/features/dates_request_spec.rb +56 -0
- data/spec/features/detached_filters_spec.rb +10 -0
- data/spec/features/detached_filters_two_grids_spec.rb +127 -0
- data/spec/features/disable_all_filters_spec.rb +22 -0
- data/spec/features/hiding_checkboxes_in_action_column_request_spec.rb +294 -0
- data/spec/features/integration_with_application_view_request_spec.rb +43 -0
- data/spec/features/integration_with_forms_request_spec.rb +141 -0
- data/spec/features/joining_tables_spec.rb +40 -0
- data/spec/features/localization_request_spec.rb +24 -0
- data/spec/features/many_grids_on_page_request_spec.rb +104 -0
- data/spec/features/negation_request_spec.rb +25 -0
- data/spec/features/no_records_request_spec.rb +26 -0
- data/spec/features/numeric_filters_request_spec.rb +10 -0
- data/spec/features/resultset_processings2_request_spec.rb +27 -0
- data/spec/features/resultset_processings_request_spec.rb +30 -0
- data/spec/features/saved_queries_request_spec.rb +120 -0
- data/spec/features/shared.rb +1005 -0
- data/spec/features/shared_detached_filters.rb +158 -0
- data/spec/features/styling_spec.rb +15 -0
- data/spec/features/two_associations_spec.rb +48 -0
- data/spec/features/upper_pagination_panel_request_spec.rb +23 -0
- data/spec/features/when_filtered_spec.rb +209 -0
- data/spec/fixtures/.gitkeep +0 -0
- data/spec/fixtures/companies.yml +21 -0
- data/spec/fixtures/priorities.yml +31 -0
- data/spec/fixtures/project_roles.yml +25 -0
- data/spec/fixtures/projects.yml +22 -0
- data/spec/fixtures/statuses.yml +55 -0
- data/spec/fixtures/tasks.yml +751 -0
- data/spec/fixtures/tasks_users.yml +2089 -0
- data/spec/fixtures/users.yml +61 -0
- data/spec/fixtures/versions.yml +78 -0
- data/spec/models/company_spec.rb +6 -0
- data/spec/models/priority_spec.rb +6 -0
- data/spec/models/project_spec.rb +11 -0
- data/spec/models/status_spec.rb +6 -0
- data/spec/models/task_spec.rb +12 -0
- data/spec/models/user_project_participation_spec.rb +7 -0
- data/spec/models/user_spec.rb +12 -0
- data/spec/models/version_spec.rb +5 -0
- data/spec/rails_helper.rb +15 -0
- data/spec/spec_helper.rb +10 -9
- data/spec/support/test_app/Rakefile +3 -0
- data/spec/support/test_app/app/assets/javascripts/application.js +20 -0
- data/spec/support/test_app/app/assets/javascripts/common.js.coffee +6 -0
- data/spec/support/test_app/app/assets/javascripts/jquery.ui.datepicker.locales.js +56 -0
- data/spec/support/test_app/app/assets/stylesheets/adding_rows.scss +3 -0
- data/spec/support/test_app/app/assets/stylesheets/application.scss +46 -0
- data/spec/support/test_app/app/assets/stylesheets/csv_and_detached_filters.scss +3 -0
- data/spec/support/test_app/app/assets/stylesheets/many_grids_on_page.scss +3 -0
- data/spec/support/test_app/app/controllers/action_column_controller.rb +15 -0
- data/spec/support/test_app/app/controllers/adding_rows_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/all_records_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/application_controller.rb +99 -0
- data/spec/support/test_app/app/controllers/auto_reloads2_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/auto_reloads3_controller.rb +20 -0
- data/spec/support/test_app/app/controllers/auto_reloads_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/basics1_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics2_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics3_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics4_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics5_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/basics6_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/blockless_column_definition_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/buttons_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/csv_and_detached_filters_controller.rb +13 -0
- data/spec/support/test_app/app/controllers/csv_export_controller.rb +28 -0
- data/spec/support/test_app/app/controllers/custom_filter_params_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/custom_filters1_controller.rb +9 -0
- data/spec/support/test_app/app/controllers/custom_filters2_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/custom_filters3_controller.rb +12 -0
- data/spec/support/test_app/app/controllers/custom_filters4_controller.rb +12 -0
- data/spec/support/test_app/app/controllers/custom_ordering_controller.rb +18 -0
- data/spec/support/test_app/app/controllers/custom_ordering_on_calculated_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/custom_ordering_with_arel_controller.rb +18 -0
- data/spec/support/test_app/app/controllers/custom_ordering_with_proc_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/custom_ordering_with_ruby_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/dates_controller.rb +8 -0
- data/spec/support/test_app/app/controllers/detached_filters_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/detached_filters_two_grids_controller.rb +7 -0
- data/spec/support/test_app/app/controllers/disable_all_filters_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/hiding_checkboxes_in_action_column_controller.rb +13 -0
- data/spec/support/test_app/app/controllers/home_controller.rb +3 -0
- data/spec/support/test_app/app/controllers/integration_with_application_view_controller.rb +16 -0
- data/spec/support/test_app/app/controllers/integration_with_forms_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/joining_tables_controller.rb +11 -0
- data/spec/support/test_app/app/controllers/localization_controller.rb +26 -0
- data/spec/support/test_app/app/controllers/many_grids_on_page_controller.rb +7 -0
- data/spec/support/test_app/app/controllers/negation_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/no_records_controller.rb +8 -0
- data/spec/support/test_app/app/controllers/null_values_controller.rb +10 -0
- data/spec/support/test_app/app/controllers/numeric_filters_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/queries_controller.rb +4 -0
- data/spec/support/test_app/app/controllers/resultset_processings2_controller.rb +29 -0
- data/spec/support/test_app/app/controllers/resultset_processings_controller.rb +30 -0
- data/spec/support/test_app/app/controllers/saved_queries_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/styling_controller.rb +7 -0
- data/spec/support/test_app/app/controllers/tasks_controller.rb +14 -0
- data/spec/support/test_app/app/controllers/two_associations_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/upper_pagination_panel_controller.rb +6 -0
- data/spec/support/test_app/app/controllers/when_filtered_controller.rb +6 -0
- data/spec/support/test_app/app/helpers/application_helper.rb +82 -0
- data/spec/support/test_app/app/mailers/.gitkeep +0 -0
- data/spec/support/test_app/app/models/.gitkeep +0 -0
- data/spec/support/test_app/app/models/company.rb +5 -0
- data/spec/support/test_app/app/models/populate.rb +84 -0
- data/spec/support/test_app/app/models/priority.rb +10 -0
- data/spec/support/test_app/app/models/project.rb +14 -0
- data/spec/support/test_app/app/models/project_role.rb +3 -0
- data/spec/support/test_app/app/models/status.rb +10 -0
- data/spec/support/test_app/app/models/task.rb +11 -0
- data/spec/support/test_app/app/models/to_dropdown_mixin.rb +16 -0
- data/spec/support/test_app/app/models/user.rb +8 -0
- data/spec/support/test_app/app/models/user_project_participation.rb +6 -0
- data/spec/support/test_app/app/models/version.rb +6 -0
- data/spec/support/test_app/app/views/action_column/_grid.html.erb +35 -0
- data/spec/support/test_app/app/views/action_column/index.html.haml +45 -0
- data/spec/support/test_app/app/views/adding_rows/_grid.html.erb +58 -0
- data/spec/support/test_app/app/views/adding_rows/index.html.haml +37 -0
- data/spec/support/test_app/app/views/all_records/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/all_records/index.html.haml +12 -0
- data/spec/support/test_app/app/views/auto_reloads/_grid.html.erb +32 -0
- data/spec/support/test_app/app/views/auto_reloads/index.html.haml +15 -0
- data/spec/support/test_app/app/views/auto_reloads2/_grid.html.erb +32 -0
- data/spec/support/test_app/app/views/auto_reloads2/index.html.haml +65 -0
- data/spec/support/test_app/app/views/auto_reloads3/_grid.html.erb +25 -0
- data/spec/support/test_app/app/views/auto_reloads3/index.html.haml +78 -0
- data/spec/support/test_app/app/views/basics1/_grid.html.erb +26 -0
- data/spec/support/test_app/app/views/basics1/index.html.haml +13 -0
- data/spec/support/test_app/app/views/basics2/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/basics2/index.html.haml +12 -0
- data/spec/support/test_app/app/views/basics3/_grid.html.erb +28 -0
- data/spec/support/test_app/app/views/basics3/index.html.haml +13 -0
- data/spec/support/test_app/app/views/basics4/_grid.html.erb +21 -0
- data/spec/support/test_app/app/views/basics4/index.html.haml +12 -0
- data/spec/support/test_app/app/views/basics5/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/basics5/index.html.haml +12 -0
- data/spec/support/test_app/app/views/basics6/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/basics6/index.html.haml +23 -0
- data/spec/support/test_app/app/views/blockless_column_definition/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/blockless_column_definition/index.html.haml +15 -0
- data/spec/support/test_app/app/views/buttons/_grid.html.erb +20 -0
- data/spec/support/test_app/app/views/buttons/index.html.haml +30 -0
- data/spec/support/test_app/app/views/csv_and_detached_filters/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/csv_and_detached_filters/index.html.haml +58 -0
- data/spec/support/test_app/app/views/csv_export/_projects_grid.html.erb +17 -0
- data/spec/support/test_app/app/views/csv_export/_tasks_grid.html.erb +43 -0
- data/spec/support/test_app/app/views/csv_export/index.html.haml +90 -0
- data/spec/support/test_app/app/views/custom_filter_params/_grid.html.erb +12 -0
- data/spec/support/test_app/app/views/custom_filter_params/index.html.haml +12 -0
- data/spec/support/test_app/app/views/custom_filters1/_g1.html.erb +8 -0
- data/spec/support/test_app/app/views/custom_filters1/_g2.html.erb +9 -0
- data/spec/support/test_app/app/views/custom_filters1/_g3.html.erb +9 -0
- data/spec/support/test_app/app/views/custom_filters1/_g4.html.erb +8 -0
- data/spec/support/test_app/app/views/custom_filters1/index.html.haml +30 -0
- data/spec/support/test_app/app/views/custom_filters2/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/custom_filters2/index.html.haml +41 -0
- data/spec/support/test_app/app/views/custom_filters3/_grid.html.erb +18 -0
- data/spec/support/test_app/app/views/custom_filters3/index.html.haml +16 -0
- data/spec/support/test_app/app/views/custom_filters4/_grid.html.erb +20 -0
- data/spec/support/test_app/app/views/custom_filters4/index.html.haml +12 -0
- data/spec/support/test_app/app/views/custom_ordering/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering/index.html.haml +24 -0
- data/spec/support/test_app/app/views/custom_ordering_on_calculated/_grid.html.erb +14 -0
- data/spec/support/test_app/app/views/custom_ordering_on_calculated/index.html.haml +23 -0
- data/spec/support/test_app/app/views/custom_ordering_with_arel/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering_with_arel/index.html.haml +24 -0
- data/spec/support/test_app/app/views/custom_ordering_with_proc/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering_with_proc/index.html.haml +21 -0
- data/spec/support/test_app/app/views/custom_ordering_with_ruby/_grid.html.erb +10 -0
- data/spec/support/test_app/app/views/custom_ordering_with_ruby/index.html.haml +23 -0
- data/spec/support/test_app/app/views/dates/_grid.html.erb +25 -0
- data/spec/support/test_app/app/views/dates/index.html.haml +52 -0
- data/spec/support/test_app/app/views/detached_filters/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/detached_filters/index.html.haml +79 -0
- data/spec/support/test_app/app/views/detached_filters_two_grids/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/detached_filters_two_grids/index.html.haml +85 -0
- data/spec/support/test_app/app/views/disable_all_filters/_grid.html.erb +21 -0
- data/spec/support/test_app/app/views/disable_all_filters/index.html.haml +14 -0
- data/spec/support/test_app/app/views/hiding_checkboxes_in_action_column/_grid.html.erb +34 -0
- data/spec/support/test_app/app/views/hiding_checkboxes_in_action_column/index.html.haml +32 -0
- data/spec/support/test_app/app/views/integration_with_application_view/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/integration_with_application_view/index.html.haml +33 -0
- data/spec/support/test_app/app/views/integration_with_forms/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/integration_with_forms/index.html.haml +18 -0
- data/spec/support/test_app/app/views/joining_tables/_grid.html.erb +23 -0
- data/spec/support/test_app/app/views/joining_tables/index.html.haml +26 -0
- data/spec/support/test_app/app/views/layouts/application.html.haml +61 -0
- data/spec/support/test_app/app/views/localization/_grid.html.erb +36 -0
- data/spec/support/test_app/app/views/localization/index.html.haml +20 -0
- data/spec/support/test_app/app/views/many_grids_on_page/_tasks_grid1.html.erb +12 -0
- data/spec/support/test_app/app/views/many_grids_on_page/_tasks_grid2.html.erb +12 -0
- data/spec/support/test_app/app/views/many_grids_on_page/index.html.haml +26 -0
- data/spec/support/test_app/app/views/negation/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/negation/index.html.haml +15 -0
- data/spec/support/test_app/app/views/no_records/_empty_grid.html.haml +1 -0
- data/spec/support/test_app/app/views/no_records/_grid1.html.erb +11 -0
- data/spec/support/test_app/app/views/no_records/_grid2.html.erb +9 -0
- data/spec/support/test_app/app/views/no_records/_grid3.html.erb +9 -0
- data/spec/support/test_app/app/views/no_records/index.html.haml +24 -0
- data/spec/support/test_app/app/views/null_values/_grid.html.erb +17 -0
- data/spec/support/test_app/app/views/null_values/index.html.haml +21 -0
- data/spec/support/test_app/app/views/numeric_filters/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/numeric_filters/index.html.haml +12 -0
- data/spec/support/test_app/app/views/resultset_processings/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/resultset_processings/index.html.haml +50 -0
- data/spec/support/test_app/app/views/resultset_processings2/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/resultset_processings2/index.html.haml +48 -0
- data/spec/support/test_app/app/views/saved_queries/_grid.html.erb +30 -0
- data/spec/support/test_app/app/views/saved_queries/index.html.haml +15 -0
- data/spec/support/test_app/app/views/styling/_grid1.html.erb +12 -0
- data/spec/support/test_app/app/views/styling/_grid2.html.erb +31 -0
- data/spec/support/test_app/app/views/styling/index.html.haml +65 -0
- data/spec/support/test_app/app/views/tasks/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/tasks/index.html.haml +1 -0
- data/spec/support/test_app/app/views/two_associations/_grid.html.erb +13 -0
- data/spec/support/test_app/app/views/two_associations/index.html.haml +13 -0
- data/spec/support/test_app/app/views/upper_pagination_panel/_grid.html.erb +27 -0
- data/spec/support/test_app/app/views/upper_pagination_panel/index.html.haml +14 -0
- data/spec/support/test_app/app/views/when_filtered/_grid.html.erb +19 -0
- data/spec/support/test_app/app/views/when_filtered/index.html.haml +15 -0
- data/spec/support/test_app/bin/rails +4 -0
- data/spec/support/test_app/bin/rake +4 -0
- data/spec/support/test_app/config.ru +5 -0
- data/spec/support/test_app/config/application.rb +70 -0
- data/spec/support/test_app/config/boot.rb +7 -0
- data/spec/support/test_app/config/database.travis.yml +27 -0
- data/spec/support/test_app/config/database.yml +16 -0
- data/spec/support/test_app/config/database.yml.mysql +19 -0
- data/spec/support/test_app/config/database.yml.postgresql +18 -0
- data/spec/support/test_app/config/environment.rb +6 -0
- data/spec/support/test_app/config/environments/development.rb +34 -0
- data/spec/support/test_app/config/environments/production.rb +66 -0
- data/spec/support/test_app/config/environments/test.rb +34 -0
- data/spec/support/test_app/config/initializers/backtrace_silencers.rb +8 -0
- data/spec/support/test_app/config/initializers/inflections.rb +16 -0
- data/spec/support/test_app/config/initializers/mime_types.rb +6 -0
- data/spec/support/test_app/config/initializers/secret_token.rb +12 -0
- data/spec/support/test_app/config/initializers/session_store.rb +9 -0
- data/spec/support/test_app/config/initializers/wice_grid_config.rb +163 -0
- data/spec/support/test_app/config/initializers/wrap_parameters.rb +15 -0
- data/spec/support/test_app/config/locales/en.yml +5 -0
- data/spec/support/test_app/config/locales/wice_grid.yml +550 -0
- data/spec/support/test_app/config/puma.rb +15 -0
- data/spec/support/test_app/config/routes.rb +125 -0
- data/spec/support/test_app/db/migrate/20120224193505_create_tasks.rb +27 -0
- data/spec/support/test_app/db/migrate/20120224193517_create_users.rb +12 -0
- data/spec/support/test_app/db/migrate/20120224193522_create_projects.rb +14 -0
- data/spec/support/test_app/db/migrate/20120224193529_create_priorities.rb +13 -0
- data/spec/support/test_app/db/migrate/20120224193537_create_statuses.rb +13 -0
- data/spec/support/test_app/db/migrate/20120224193543_create_versions.rb +15 -0
- data/spec/support/test_app/db/migrate/20120224193550_create_project_roles.rb +12 -0
- data/spec/support/test_app/db/migrate/20120224193610_create_companies.rb +12 -0
- data/spec/support/test_app/db/migrate/20120224195351_create_user_project_participations.rb +16 -0
- data/spec/support/test_app/db/migrate/20120224195521_add_tasks_users.rb +11 -0
- data/spec/support/test_app/db/migrate/20120610091944_create_wice_grid_serialized_queries.rb +14 -0
- data/spec/support/test_app/db/schema.rb +139 -0
- data/spec/support/test_app/db/seeds.rb +10 -0
- data/spec/support/test_app/lib/ar_fixtures.rb +100 -0
- data/spec/support/test_app/lib/assets/.gitkeep +0 -0
- data/spec/support/test_app/lib/tasks/.gitkeep +0 -0
- data/spec/support/test_app/lib/tasks/ar_fixtures.rake +45 -0
- data/spec/support/test_app/public/404.html +26 -0
- data/spec/support/test_app/public/422.html +26 -0
- data/spec/support/test_app/public/500.html +25 -0
- data/spec/support/test_app/public/favicon.ico +0 -0
- data/spec/support/test_app/public/robots.txt +5 -0
- data/spec/wice/grid_output_buffer_spec.rb +2 -2
- data/spec/wice/table_column_matrix_spec.rb +1 -1
- data/vendor/assets/javascripts/wice_grid_init.js.coffee +16 -4
- data/vendor/assets/javascripts/wice_grid_saved_queries_init.js.coffee +1 -0
- data/wice_grid.gemspec +29 -9
- metadata +606 -62
- data/release_notes/RELEASE_NOTES_3.2.pre1.rdoc +0 -81
- data/release_notes/RELEASE_NOTES_3.2.pre2.rdoc +0 -6
- data/release_notes/RELEASE_NOTES_3.3.0.rdoc +0 -21
- data/spec/support/wice_grid_test_config.rb +0 -173
- data/test/readme.txt +0 -1
File without changes
|
@@ -0,0 +1,21 @@
|
|
1
|
+
---
|
2
|
+
company_00005:
|
3
|
+
id: 5
|
4
|
+
name: MNU
|
5
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
6
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
7
|
+
company_00006:
|
8
|
+
id: 6
|
9
|
+
name: SkyNet
|
10
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
11
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
12
|
+
company_00007:
|
13
|
+
id: 7
|
14
|
+
name: Coders Unlimited
|
15
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
16
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
17
|
+
company_00008:
|
18
|
+
id: 8
|
19
|
+
name: Shift-Command-4 Limited
|
20
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
21
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
@@ -0,0 +1,31 @@
|
|
1
|
+
---
|
2
|
+
priority_00006:
|
3
|
+
id: 6
|
4
|
+
name: Urgent
|
5
|
+
position: 0
|
6
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
7
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
8
|
+
priority_00007:
|
9
|
+
id: 7
|
10
|
+
name: High
|
11
|
+
position: 1
|
12
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
13
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
14
|
+
priority_00008:
|
15
|
+
id: 8
|
16
|
+
name: Normal
|
17
|
+
position: 2
|
18
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
19
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
20
|
+
priority_00009:
|
21
|
+
id: 9
|
22
|
+
name: Low
|
23
|
+
position: 3
|
24
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
25
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
26
|
+
priority_00010:
|
27
|
+
id: 10
|
28
|
+
name: Anecdotic
|
29
|
+
position: 4
|
30
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
31
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
@@ -0,0 +1,25 @@
|
|
1
|
+
---
|
2
|
+
project_role_00005:
|
3
|
+
id: 5
|
4
|
+
name: Manager
|
5
|
+
can_close_tasks: true
|
6
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
7
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
8
|
+
project_role_00006:
|
9
|
+
id: 6
|
10
|
+
name: Customer
|
11
|
+
can_close_tasks: true
|
12
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
13
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
14
|
+
project_role_00007:
|
15
|
+
id: 7
|
16
|
+
name: Developer
|
17
|
+
can_close_tasks: false
|
18
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
19
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
20
|
+
project_role_00008:
|
21
|
+
id: 8
|
22
|
+
name: QualityAssurance
|
23
|
+
can_close_tasks: false
|
24
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
25
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
@@ -0,0 +1,22 @@
|
|
1
|
+
---
|
2
|
+
project_00004:
|
3
|
+
id: 4
|
4
|
+
name: Ultimate Website
|
5
|
+
customer_id: 5
|
6
|
+
supplier_id: 7
|
7
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
8
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
9
|
+
project_00005:
|
10
|
+
id: 5
|
11
|
+
name: Super Game
|
12
|
+
customer_id: 5
|
13
|
+
supplier_id: 8
|
14
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
15
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
16
|
+
project_00006:
|
17
|
+
id: 6
|
18
|
+
name: Divine Firmware
|
19
|
+
customer_id: 6
|
20
|
+
supplier_id: 7
|
21
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
22
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
@@ -0,0 +1,55 @@
|
|
1
|
+
---
|
2
|
+
status_00010:
|
3
|
+
id: 10
|
4
|
+
name: New
|
5
|
+
position: 0
|
6
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
7
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
8
|
+
status_00011:
|
9
|
+
id: 11
|
10
|
+
name: Assigned
|
11
|
+
position: 1
|
12
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
13
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
14
|
+
status_00012:
|
15
|
+
id: 12
|
16
|
+
name: Started
|
17
|
+
position: 2
|
18
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
19
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
20
|
+
status_00013:
|
21
|
+
id: 13
|
22
|
+
name: Resolved
|
23
|
+
position: 3
|
24
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
25
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
26
|
+
status_00014:
|
27
|
+
id: 14
|
28
|
+
name: Duplicate
|
29
|
+
position: 4
|
30
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
31
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
32
|
+
status_00015:
|
33
|
+
id: 15
|
34
|
+
name: Cancelled
|
35
|
+
position: 5
|
36
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
37
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
38
|
+
status_00016:
|
39
|
+
id: 16
|
40
|
+
name: Postponed
|
41
|
+
position: 6
|
42
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
43
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
44
|
+
status_00017:
|
45
|
+
id: 17
|
46
|
+
name: Closed
|
47
|
+
position: 7
|
48
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
49
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
50
|
+
status_00018:
|
51
|
+
id: 18
|
52
|
+
name: Verified
|
53
|
+
position: 8
|
54
|
+
created_at: 2012-02-26 22:11:12.000000000 Z
|
55
|
+
updated_at: 2012-02-26 22:11:12.000000000 Z
|
@@ -0,0 +1,751 @@
|
|
1
|
+
---
|
2
|
+
task_00507:
|
3
|
+
id: 507
|
4
|
+
title: sed impedit iste
|
5
|
+
description: Velit atque sapiente aspernatur sint fuga.
|
6
|
+
created_by_id: 13
|
7
|
+
project_id: 4
|
8
|
+
due_date: 2013-01-26
|
9
|
+
priority_id:
|
10
|
+
status_id: 11
|
11
|
+
relevant_version_id: 15
|
12
|
+
expected_version_id: 14
|
13
|
+
estimated_time: 2.0
|
14
|
+
archived: false
|
15
|
+
created_at: 2011-09-13 22:11:12.000000000 Z
|
16
|
+
updated_at: 2012-01-14 22:11:12.000000000 Z
|
17
|
+
task_00508:
|
18
|
+
id: 508
|
19
|
+
title: sequi
|
20
|
+
description: In recusandae quibusdam consequatur odio dicta sit.
|
21
|
+
created_by_id: 21
|
22
|
+
project_id: 5
|
23
|
+
due_date: 2012-07-29
|
24
|
+
priority_id: 8
|
25
|
+
status_id: 16
|
26
|
+
relevant_version_id: 17
|
27
|
+
expected_version_id: 18
|
28
|
+
estimated_time: 10.0
|
29
|
+
archived: false
|
30
|
+
created_at: 2011-11-09 22:11:12.000000000 Z
|
31
|
+
updated_at: 2011-11-26 22:11:12.000000000 Z
|
32
|
+
task_00509:
|
33
|
+
id: 509
|
34
|
+
title: ab
|
35
|
+
description: Repudiandae voluptatibus sed perferendis quia sit voluptates ea delectus.
|
36
|
+
created_by_id: 14
|
37
|
+
project_id: 5
|
38
|
+
due_date: 2013-03-18
|
39
|
+
priority_id: 10
|
40
|
+
status_id: 12
|
41
|
+
relevant_version_id:
|
42
|
+
expected_version_id: 18
|
43
|
+
estimated_time: 8.0
|
44
|
+
archived: false
|
45
|
+
created_at: 2011-08-13 22:11:12.000000000 Z
|
46
|
+
updated_at: 2011-12-07 22:11:12.000000000 Z
|
47
|
+
task_00510:
|
48
|
+
id: 510
|
49
|
+
title: sint voluptatem
|
50
|
+
description: Eos qui est quis.
|
51
|
+
created_by_id: 20
|
52
|
+
project_id: 6
|
53
|
+
due_date: 2012-07-02
|
54
|
+
priority_id: 7
|
55
|
+
status_id: 10
|
56
|
+
relevant_version_id: 22
|
57
|
+
expected_version_id: 21
|
58
|
+
estimated_time: 19.0
|
59
|
+
archived: false
|
60
|
+
created_at: 2011-09-25 22:11:12.000000000 Z
|
61
|
+
updated_at: 2012-02-19 22:11:12.000000000 Z
|
62
|
+
task_00511:
|
63
|
+
id: 511
|
64
|
+
title: est maiores delectus
|
65
|
+
description: In occaecati at facilis ut consectetur dolorum officia.
|
66
|
+
created_by_id: 21
|
67
|
+
project_id: 5
|
68
|
+
due_date: 2012-11-07
|
69
|
+
priority_id: 8
|
70
|
+
status_id: 15
|
71
|
+
relevant_version_id: 18
|
72
|
+
expected_version_id:
|
73
|
+
estimated_time: 18.0
|
74
|
+
archived: false
|
75
|
+
created_at: 2011-10-25 22:11:12.000000000 Z
|
76
|
+
updated_at: 2011-11-25 22:11:12.000000000 Z
|
77
|
+
task_00512:
|
78
|
+
id: 512
|
79
|
+
title: dolore ad
|
80
|
+
description: Asperiores odio repellendus ut voluptate.
|
81
|
+
created_by_id: 18
|
82
|
+
project_id: 5
|
83
|
+
due_date: 2013-01-24
|
84
|
+
priority_id: 6
|
85
|
+
status_id: 14
|
86
|
+
relevant_version_id:
|
87
|
+
expected_version_id: 19
|
88
|
+
estimated_time: 4.0
|
89
|
+
archived: false
|
90
|
+
created_at: 2011-10-30 22:11:12.000000000 Z
|
91
|
+
updated_at: 2012-02-11 22:11:12.000000000 Z
|
92
|
+
task_00513:
|
93
|
+
id: 513
|
94
|
+
title: nihil
|
95
|
+
description: Ut ex ipsam a.
|
96
|
+
created_by_id: 14
|
97
|
+
project_id: 5
|
98
|
+
due_date: 2012-12-24
|
99
|
+
priority_id: 8
|
100
|
+
status_id: 16
|
101
|
+
relevant_version_id:
|
102
|
+
expected_version_id:
|
103
|
+
estimated_time: 13.0
|
104
|
+
archived: true
|
105
|
+
created_at: 2011-08-18 22:11:12.000000000 Z
|
106
|
+
updated_at: 2012-01-05 22:11:12.000000000 Z
|
107
|
+
task_00514:
|
108
|
+
id: 514
|
109
|
+
title: quia dignissimos maiores
|
110
|
+
description: Mollitia aliquam ratione perferendis reprehenderit dolor quod.
|
111
|
+
created_by_id: 17
|
112
|
+
project_id: 6
|
113
|
+
due_date: 2012-12-14
|
114
|
+
priority_id: 6
|
115
|
+
status_id: 14
|
116
|
+
relevant_version_id: 20
|
117
|
+
expected_version_id:
|
118
|
+
estimated_time: 6.0
|
119
|
+
archived: false
|
120
|
+
created_at: 2011-08-11 22:11:12.000000000 Z
|
121
|
+
updated_at: 2011-12-19 22:11:12.000000000 Z
|
122
|
+
task_00515:
|
123
|
+
id: 515
|
124
|
+
title: voluptatum non
|
125
|
+
description: Vero sit voluptate sed tempora et provident sequi nihil.
|
126
|
+
created_by_id: 22
|
127
|
+
project_id: 5
|
128
|
+
due_date: 2012-11-05
|
129
|
+
priority_id: 7
|
130
|
+
status_id: 15
|
131
|
+
relevant_version_id:
|
132
|
+
expected_version_id: 19
|
133
|
+
estimated_time: 8.0
|
134
|
+
archived: false
|
135
|
+
created_at: 2011-09-29 22:11:12.000000000 Z
|
136
|
+
updated_at: 2012-02-02 22:11:12.000000000 Z
|
137
|
+
task_00516:
|
138
|
+
id: 516
|
139
|
+
title: dolorem
|
140
|
+
description: Et vel ipsa illo aut error voluptatem autem qui.
|
141
|
+
created_by_id: 22
|
142
|
+
project_id: 5
|
143
|
+
due_date: 2013-01-14
|
144
|
+
priority_id: 7
|
145
|
+
status_id: 14
|
146
|
+
relevant_version_id:
|
147
|
+
expected_version_id:
|
148
|
+
estimated_time: 20.0
|
149
|
+
archived: false
|
150
|
+
created_at: 2011-11-08 22:11:12.000000000 Z
|
151
|
+
updated_at: 2011-11-29 22:11:12.000000000 Z
|
152
|
+
task_00517:
|
153
|
+
id: 517
|
154
|
+
title: repellat voluptates
|
155
|
+
description: Commodi et et nisi ipsam corporis.
|
156
|
+
created_by_id: 16
|
157
|
+
project_id: 6
|
158
|
+
due_date: 2012-06-30
|
159
|
+
priority_id: 10
|
160
|
+
status_id: 12
|
161
|
+
relevant_version_id:
|
162
|
+
expected_version_id:
|
163
|
+
estimated_time: 10.0
|
164
|
+
archived: false
|
165
|
+
created_at: 2011-09-06 22:11:12.000000000 Z
|
166
|
+
updated_at: 2011-12-18 22:11:12.000000000 Z
|
167
|
+
task_00518:
|
168
|
+
id: 518
|
169
|
+
title: sunt et ipsa
|
170
|
+
description: Id sunt et pariatur quis quaerat veritatis distinctio voluptate.
|
171
|
+
created_by_id: 20
|
172
|
+
project_id: 6
|
173
|
+
due_date: 2013-01-27
|
174
|
+
priority_id: 7
|
175
|
+
status_id: 17
|
176
|
+
relevant_version_id:
|
177
|
+
expected_version_id: 21
|
178
|
+
estimated_time: 17.0
|
179
|
+
archived: false
|
180
|
+
created_at: 2011-08-30 22:11:12.000000000 Z
|
181
|
+
updated_at: 2012-01-30 22:11:12.000000000 Z
|
182
|
+
task_00519:
|
183
|
+
id: 519
|
184
|
+
title: consequatur minus et
|
185
|
+
description: Corporis facilis eos magni repellendus.
|
186
|
+
created_by_id: 17
|
187
|
+
project_id: 4
|
188
|
+
due_date: 2012-11-22
|
189
|
+
priority_id: 9
|
190
|
+
status_id: 11
|
191
|
+
relevant_version_id: 12
|
192
|
+
expected_version_id: 12
|
193
|
+
estimated_time: 12.0
|
194
|
+
archived: false
|
195
|
+
created_at: 2011-09-22 22:11:12.000000000 Z
|
196
|
+
updated_at: 2012-01-15 22:11:12.000000000 Z
|
197
|
+
task_00520:
|
198
|
+
id: 520
|
199
|
+
title: odit
|
200
|
+
description: Id sint quidem esse blanditiis.
|
201
|
+
created_by_id: 14
|
202
|
+
project_id: 6
|
203
|
+
due_date: 2012-11-18
|
204
|
+
priority_id:
|
205
|
+
status_id: 17
|
206
|
+
relevant_version_id:
|
207
|
+
expected_version_id:
|
208
|
+
estimated_time: 8.0
|
209
|
+
archived: false
|
210
|
+
created_at: 2011-09-28 22:11:12.000000000 Z
|
211
|
+
updated_at: 2011-11-21 22:11:12.000000000 Z
|
212
|
+
task_00521:
|
213
|
+
id: 521
|
214
|
+
title: tempora
|
215
|
+
description: Assumenda illo quia molestiae nihil quis nulla.
|
216
|
+
created_by_id: 18
|
217
|
+
project_id: 5
|
218
|
+
due_date: 2012-12-25
|
219
|
+
priority_id: 9
|
220
|
+
status_id: 14
|
221
|
+
relevant_version_id:
|
222
|
+
expected_version_id: 18
|
223
|
+
estimated_time: 13.0
|
224
|
+
archived: false
|
225
|
+
created_at: 2011-09-03 22:11:12.000000000 Z
|
226
|
+
updated_at: 2011-12-28 22:11:12.000000000 Z
|
227
|
+
task_00522:
|
228
|
+
id: 522
|
229
|
+
title: rerum
|
230
|
+
description: Aut et eos nostrum et recusandae ab.
|
231
|
+
created_by_id: 18
|
232
|
+
project_id: 4
|
233
|
+
due_date: 2013-01-07
|
234
|
+
priority_id: 6
|
235
|
+
status_id: 14
|
236
|
+
relevant_version_id:
|
237
|
+
expected_version_id:
|
238
|
+
estimated_time: 17.0
|
239
|
+
archived: false
|
240
|
+
created_at: 2011-09-25 22:11:12.000000000 Z
|
241
|
+
updated_at: 2012-01-26 22:11:12.000000000 Z
|
242
|
+
task_00523:
|
243
|
+
id: 523
|
244
|
+
title: dolores delectus
|
245
|
+
description: Iure tenetur cum aut optio et quia similique debitis.
|
246
|
+
created_by_id: 19
|
247
|
+
project_id: 4
|
248
|
+
due_date: 2012-10-11
|
249
|
+
priority_id:
|
250
|
+
status_id: 15
|
251
|
+
relevant_version_id:
|
252
|
+
expected_version_id: 14
|
253
|
+
estimated_time: 8.0
|
254
|
+
archived: false
|
255
|
+
created_at: 2011-11-16 22:11:12.000000000 Z
|
256
|
+
updated_at: 2011-11-20 22:11:12.000000000 Z
|
257
|
+
task_00524:
|
258
|
+
id: 524
|
259
|
+
title: quod dolor inventore
|
260
|
+
description: Atque omnis fugiat totam dolorum.
|
261
|
+
created_by_id: 13
|
262
|
+
project_id: 4
|
263
|
+
due_date: 2012-12-29
|
264
|
+
priority_id: 9
|
265
|
+
status_id: 15
|
266
|
+
relevant_version_id: 16
|
267
|
+
expected_version_id: 15
|
268
|
+
estimated_time: 8.0
|
269
|
+
archived: true
|
270
|
+
created_at: 2011-10-07 22:11:12.000000000 Z
|
271
|
+
updated_at: 2012-01-25 22:11:12.000000000 Z
|
272
|
+
task_00525:
|
273
|
+
id: 525
|
274
|
+
title: at et
|
275
|
+
description: Aut unde porro veritatis debitis sint.
|
276
|
+
created_by_id: 18
|
277
|
+
project_id: 4
|
278
|
+
due_date: 2012-11-05
|
279
|
+
priority_id:
|
280
|
+
status_id: 13
|
281
|
+
relevant_version_id: 12
|
282
|
+
expected_version_id: 14
|
283
|
+
estimated_time: 17.0
|
284
|
+
archived: false
|
285
|
+
created_at: 2011-09-16 22:11:12.000000000 Z
|
286
|
+
updated_at: 2011-12-08 22:11:12.000000000 Z
|
287
|
+
task_00526:
|
288
|
+
id: 526
|
289
|
+
title: quibusdam temporibus et
|
290
|
+
description: Amet laudantium aut labore ut consequatur sunt.
|
291
|
+
created_by_id: 15
|
292
|
+
project_id: 4
|
293
|
+
due_date: 2012-08-14
|
294
|
+
priority_id:
|
295
|
+
status_id: 12
|
296
|
+
relevant_version_id:
|
297
|
+
expected_version_id:
|
298
|
+
estimated_time: 14.0
|
299
|
+
archived: false
|
300
|
+
created_at: 2011-11-05 22:11:12.000000000 Z
|
301
|
+
updated_at: 2012-01-22 22:11:12.000000000 Z
|
302
|
+
task_00527:
|
303
|
+
id: 527
|
304
|
+
title: voluptates corporis velit
|
305
|
+
description: Ratione ea amet quam enim illo.
|
306
|
+
created_by_id: 14
|
307
|
+
project_id: 5
|
308
|
+
due_date: 2013-03-24
|
309
|
+
priority_id:
|
310
|
+
status_id: 15
|
311
|
+
relevant_version_id:
|
312
|
+
expected_version_id: 18
|
313
|
+
estimated_time: 3.0
|
314
|
+
archived: false
|
315
|
+
created_at: 2011-10-11 22:11:12.000000000 Z
|
316
|
+
updated_at: 2012-01-06 22:11:12.000000000 Z
|
317
|
+
task_00528:
|
318
|
+
id: 528
|
319
|
+
title: omnis perferendis et
|
320
|
+
description: Aut nobis quod dolore.
|
321
|
+
created_by_id: 16
|
322
|
+
project_id: 6
|
323
|
+
due_date: 2012-07-02
|
324
|
+
priority_id: 9
|
325
|
+
status_id: 16
|
326
|
+
relevant_version_id:
|
327
|
+
expected_version_id: 21
|
328
|
+
estimated_time: 19.0
|
329
|
+
archived: false
|
330
|
+
created_at: 2011-10-04 22:11:12.000000000 Z
|
331
|
+
updated_at: 2011-11-22 22:11:12.000000000 Z
|
332
|
+
task_00529:
|
333
|
+
id: 529
|
334
|
+
title: dolor et corporis
|
335
|
+
description: Voluptate occaecati quisquam in et qui nostrum eos minus.
|
336
|
+
created_by_id: 20
|
337
|
+
project_id: 6
|
338
|
+
due_date: 2012-08-19
|
339
|
+
priority_id: 6
|
340
|
+
status_id: 16
|
341
|
+
relevant_version_id: 22
|
342
|
+
expected_version_id:
|
343
|
+
estimated_time: 16.0
|
344
|
+
archived: false
|
345
|
+
created_at: 2011-09-27 22:11:12.000000000 Z
|
346
|
+
updated_at: 2012-01-26 22:11:12.000000000 Z
|
347
|
+
task_00530:
|
348
|
+
id: 530
|
349
|
+
title: sint adipisci
|
350
|
+
description: Consequatur omnis similique quidem quia a.
|
351
|
+
created_by_id: 22
|
352
|
+
project_id: 5
|
353
|
+
due_date: 2013-01-16
|
354
|
+
priority_id: 10
|
355
|
+
status_id: 18
|
356
|
+
relevant_version_id:
|
357
|
+
expected_version_id: 19
|
358
|
+
estimated_time: 16.0
|
359
|
+
archived: false
|
360
|
+
created_at: 2011-09-09 22:11:12.000000000 Z
|
361
|
+
updated_at: 2011-11-26 22:11:12.000000000 Z
|
362
|
+
task_00531:
|
363
|
+
id: 531
|
364
|
+
title: veniam tempora
|
365
|
+
description: Rerum magni similique eum architecto ea aspernatur.
|
366
|
+
created_by_id: 18
|
367
|
+
project_id: 5
|
368
|
+
due_date: 2012-10-13
|
369
|
+
priority_id: 6
|
370
|
+
status_id: 15
|
371
|
+
relevant_version_id:
|
372
|
+
expected_version_id:
|
373
|
+
estimated_time: 12.0
|
374
|
+
archived: false
|
375
|
+
created_at: 2011-08-18 22:11:12.000000000 Z
|
376
|
+
updated_at: 2012-01-30 22:11:12.000000000 Z
|
377
|
+
task_00532:
|
378
|
+
id: 532
|
379
|
+
title: ducimus
|
380
|
+
description: Tempore nesciunt ullam consequatur est magnam deserunt voluptatem nam.
|
381
|
+
created_by_id: 21
|
382
|
+
project_id: 5
|
383
|
+
due_date: 2012-06-12
|
384
|
+
priority_id:
|
385
|
+
status_id: 17
|
386
|
+
relevant_version_id: 18
|
387
|
+
expected_version_id:
|
388
|
+
estimated_time: 4.0
|
389
|
+
archived: false
|
390
|
+
created_at: 2011-11-05 22:11:12.000000000 Z
|
391
|
+
updated_at: 2012-01-04 22:11:12.000000000 Z
|
392
|
+
task_00533:
|
393
|
+
id: 533
|
394
|
+
title: fugit unde eligendi
|
395
|
+
description: Et nobis occaecati impedit fugit.
|
396
|
+
created_by_id: 13
|
397
|
+
project_id: 4
|
398
|
+
due_date: 2012-12-10
|
399
|
+
priority_id:
|
400
|
+
status_id: 18
|
401
|
+
relevant_version_id: 14
|
402
|
+
expected_version_id: 12
|
403
|
+
estimated_time: 1.0
|
404
|
+
archived: true
|
405
|
+
created_at: 2011-11-09 22:11:12.000000000 Z
|
406
|
+
updated_at: 2012-01-30 22:11:12.000000000 Z
|
407
|
+
task_00534:
|
408
|
+
id: 534
|
409
|
+
title: corporis expedita vel
|
410
|
+
description: Dolore quibusdam et eos earum expedita veniam excepturi.
|
411
|
+
created_by_id: 13
|
412
|
+
project_id: 4
|
413
|
+
due_date: 2012-11-19
|
414
|
+
priority_id:
|
415
|
+
status_id: 13
|
416
|
+
relevant_version_id:
|
417
|
+
expected_version_id: 12
|
418
|
+
estimated_time: 10.0
|
419
|
+
archived: false
|
420
|
+
created_at: 2011-11-13 22:11:12.000000000 Z
|
421
|
+
updated_at: 2012-01-23 22:11:12.000000000 Z
|
422
|
+
task_00535:
|
423
|
+
id: 535
|
424
|
+
title: temporibus et
|
425
|
+
description: Quia quasi maiores suscipit fugit ipsam.
|
426
|
+
created_by_id: 22
|
427
|
+
project_id: 5
|
428
|
+
due_date: 2012-07-15
|
429
|
+
priority_id: 9
|
430
|
+
status_id: 17
|
431
|
+
relevant_version_id: 17
|
432
|
+
expected_version_id:
|
433
|
+
estimated_time: 20.0
|
434
|
+
archived: false
|
435
|
+
created_at: 2011-09-23 22:11:12.000000000 Z
|
436
|
+
updated_at: 2012-02-16 22:11:12.000000000 Z
|
437
|
+
task_00536:
|
438
|
+
id: 536
|
439
|
+
title: et
|
440
|
+
description: Est et mollitia sed et possimus.
|
441
|
+
created_by_id: 23
|
442
|
+
project_id: 4
|
443
|
+
due_date: 2013-03-29
|
444
|
+
priority_id: 8
|
445
|
+
status_id: 12
|
446
|
+
relevant_version_id:
|
447
|
+
expected_version_id: 15
|
448
|
+
estimated_time: 10.0
|
449
|
+
archived: false
|
450
|
+
created_at: 2011-11-15 22:11:12.000000000 Z
|
451
|
+
updated_at: 2011-12-31 22:11:12.000000000 Z
|
452
|
+
task_00537:
|
453
|
+
id: 537
|
454
|
+
title: ut ipsum excepturi
|
455
|
+
description: Cumque repellat dignissimos voluptatem aspernatur perspiciatis quis.
|
456
|
+
created_by_id: 22
|
457
|
+
project_id: 4
|
458
|
+
due_date: 2012-11-09
|
459
|
+
priority_id:
|
460
|
+
status_id: 11
|
461
|
+
relevant_version_id: 12
|
462
|
+
expected_version_id:
|
463
|
+
estimated_time: 8.0
|
464
|
+
archived: false
|
465
|
+
created_at: 2011-10-02 22:11:12.000000000 Z
|
466
|
+
updated_at: 2011-12-17 22:11:12.000000000 Z
|
467
|
+
task_00538:
|
468
|
+
id: 538
|
469
|
+
title: commodi neque aut
|
470
|
+
description: Vel magnam minus aut modi voluptatem consequuntur molestias.
|
471
|
+
created_by_id: 20
|
472
|
+
project_id: 6
|
473
|
+
due_date: 2012-07-11
|
474
|
+
priority_id: 10
|
475
|
+
status_id: 12
|
476
|
+
relevant_version_id:
|
477
|
+
expected_version_id: 22
|
478
|
+
estimated_time: 20.0
|
479
|
+
archived: false
|
480
|
+
created_at: 2011-09-10 22:11:12.000000000 Z
|
481
|
+
updated_at: 2012-02-11 22:11:12.000000000 Z
|
482
|
+
task_00539:
|
483
|
+
id: 539
|
484
|
+
title: mollitia veritatis
|
485
|
+
description: Cum dolorum iusto quia.
|
486
|
+
created_by_id: 16
|
487
|
+
project_id: 4
|
488
|
+
due_date: 2013-01-29
|
489
|
+
priority_id: 10
|
490
|
+
status_id: 17
|
491
|
+
relevant_version_id: 16
|
492
|
+
expected_version_id: 14
|
493
|
+
estimated_time: 6.0
|
494
|
+
archived: false
|
495
|
+
created_at: 2011-08-11 22:11:12.000000000 Z
|
496
|
+
updated_at: 2011-12-24 22:11:12.000000000 Z
|
497
|
+
task_00540:
|
498
|
+
id: 540
|
499
|
+
title: inventore architecto aut
|
500
|
+
description: Possimus quia dolores tenetur voluptatem ipsa ipsum est.
|
501
|
+
created_by_id: 13
|
502
|
+
project_id: 4
|
503
|
+
due_date: 2012-12-13
|
504
|
+
priority_id: 6
|
505
|
+
status_id: 11
|
506
|
+
relevant_version_id: 14
|
507
|
+
expected_version_id:
|
508
|
+
estimated_time: 14.0
|
509
|
+
archived: false
|
510
|
+
created_at: 2011-08-22 22:11:12.000000000 Z
|
511
|
+
updated_at: 2011-11-30 22:11:12.000000000 Z
|
512
|
+
task_00541:
|
513
|
+
id: 541
|
514
|
+
title: fuga dolorem placeat
|
515
|
+
description: Molestiae voluptates accusamus quo aut rerum et eum.
|
516
|
+
created_by_id: 24
|
517
|
+
project_id: 5
|
518
|
+
due_date: 2013-03-30
|
519
|
+
priority_id:
|
520
|
+
status_id: 10
|
521
|
+
relevant_version_id: 17
|
522
|
+
expected_version_id: 19
|
523
|
+
estimated_time: 7.0
|
524
|
+
archived: false
|
525
|
+
created_at: 2011-08-14 22:11:12.000000000 Z
|
526
|
+
updated_at: 2012-01-30 22:11:12.000000000 Z
|
527
|
+
task_00542:
|
528
|
+
id: 542
|
529
|
+
title: accusantium
|
530
|
+
description: Odio ut ipsam aut dolorem in quod dicta hic.
|
531
|
+
created_by_id: 16
|
532
|
+
project_id: 4
|
533
|
+
due_date: 2012-12-31
|
534
|
+
priority_id: 10
|
535
|
+
status_id: 15
|
536
|
+
relevant_version_id: 12
|
537
|
+
expected_version_id: 12
|
538
|
+
estimated_time: 16.0
|
539
|
+
archived: false
|
540
|
+
created_at: 2011-09-06 22:11:12.000000000 Z
|
541
|
+
updated_at: 2011-12-01 22:11:12.000000000 Z
|
542
|
+
task_00543:
|
543
|
+
id: 543
|
544
|
+
title: velit quasi aperiam
|
545
|
+
description: In libero assumenda qui.
|
546
|
+
created_by_id: 16
|
547
|
+
project_id: 6
|
548
|
+
due_date: 2012-09-13
|
549
|
+
priority_id:
|
550
|
+
status_id: 14
|
551
|
+
relevant_version_id: 21
|
552
|
+
expected_version_id:
|
553
|
+
estimated_time: 6.0
|
554
|
+
archived: false
|
555
|
+
created_at: 2011-10-08 22:11:12.000000000 Z
|
556
|
+
updated_at: 2011-11-20 22:11:12.000000000 Z
|
557
|
+
task_00544:
|
558
|
+
id: 544
|
559
|
+
title: maiores nesciunt
|
560
|
+
description: Ullam doloremque nisi rerum non non itaque esse adipisci.
|
561
|
+
created_by_id: 16
|
562
|
+
project_id: 6
|
563
|
+
due_date: 2012-06-14
|
564
|
+
priority_id: 9
|
565
|
+
status_id: 14
|
566
|
+
relevant_version_id: 22
|
567
|
+
expected_version_id: 21
|
568
|
+
estimated_time: 12.0
|
569
|
+
archived: false
|
570
|
+
created_at: 2011-08-29 22:11:12.000000000 Z
|
571
|
+
updated_at: 2011-12-21 22:11:12.000000000 Z
|
572
|
+
task_00545:
|
573
|
+
id: 545
|
574
|
+
title: velit sit
|
575
|
+
description: Officia quam odit voluptatem delectus debitis velit quibusdam eum.
|
576
|
+
created_by_id: 23
|
577
|
+
project_id: 4
|
578
|
+
due_date: 2012-08-18
|
579
|
+
priority_id: 8
|
580
|
+
status_id: 12
|
581
|
+
relevant_version_id: 12
|
582
|
+
expected_version_id:
|
583
|
+
estimated_time: 12.0
|
584
|
+
archived: false
|
585
|
+
created_at: 2011-08-27 22:11:12.000000000 Z
|
586
|
+
updated_at: 2012-01-07 22:11:12.000000000 Z
|
587
|
+
task_00546:
|
588
|
+
id: 546
|
589
|
+
title: qui animi
|
590
|
+
description: Quaerat aperiam in distinctio.
|
591
|
+
created_by_id: 18
|
592
|
+
project_id: 4
|
593
|
+
due_date: 2013-03-16
|
594
|
+
priority_id: 6
|
595
|
+
status_id: 14
|
596
|
+
relevant_version_id:
|
597
|
+
expected_version_id:
|
598
|
+
estimated_time: 3.0
|
599
|
+
archived: false
|
600
|
+
created_at: 2011-11-09 22:11:12.000000000 Z
|
601
|
+
updated_at: 2012-01-10 22:11:12.000000000 Z
|
602
|
+
task_00547:
|
603
|
+
id: 547
|
604
|
+
title: dolores
|
605
|
+
description: Ad sunt vel maxime labore temporibus incidunt quidem.
|
606
|
+
created_by_id: 21
|
607
|
+
project_id: 5
|
608
|
+
due_date: 2013-02-23
|
609
|
+
priority_id: 8
|
610
|
+
status_id: 13
|
611
|
+
relevant_version_id:
|
612
|
+
expected_version_id:
|
613
|
+
estimated_time: 1.0
|
614
|
+
archived: false
|
615
|
+
created_at: 2011-11-13 22:11:12.000000000 Z
|
616
|
+
updated_at: 2012-01-26 22:11:12.000000000 Z
|
617
|
+
task_00548:
|
618
|
+
id: 548
|
619
|
+
title: adipisci ullam
|
620
|
+
description: Vel quas dolores nobis.
|
621
|
+
created_by_id: 16
|
622
|
+
project_id: 6
|
623
|
+
due_date: 2012-11-22
|
624
|
+
priority_id:
|
625
|
+
status_id: 16
|
626
|
+
relevant_version_id:
|
627
|
+
expected_version_id:
|
628
|
+
estimated_time: 7.0
|
629
|
+
archived: false
|
630
|
+
created_at: 2011-11-16 22:11:12.000000000 Z
|
631
|
+
updated_at: 2011-12-24 22:11:12.000000000 Z
|
632
|
+
task_00549:
|
633
|
+
id: 549
|
634
|
+
title: alias
|
635
|
+
description: Dicta sit necessitatibus ut dolorem.
|
636
|
+
created_by_id: 14
|
637
|
+
project_id: 5
|
638
|
+
due_date: 2012-07-27
|
639
|
+
priority_id: 7
|
640
|
+
status_id: 12
|
641
|
+
relevant_version_id:
|
642
|
+
expected_version_id:
|
643
|
+
estimated_time: 16.0
|
644
|
+
archived: false
|
645
|
+
created_at: 2011-10-08 22:11:12.000000000 Z
|
646
|
+
updated_at: 2011-12-24 22:11:12.000000000 Z
|
647
|
+
task_00550:
|
648
|
+
id: 550
|
649
|
+
title: velit aliquam
|
650
|
+
description: Ut quidem neque qui.
|
651
|
+
created_by_id: 14
|
652
|
+
project_id: 5
|
653
|
+
due_date: 2012-08-29
|
654
|
+
priority_id:
|
655
|
+
status_id: 14
|
656
|
+
relevant_version_id: 18
|
657
|
+
expected_version_id: 19
|
658
|
+
estimated_time: 11.0
|
659
|
+
archived: true
|
660
|
+
created_at: 2011-10-09 22:11:12.000000000 Z
|
661
|
+
updated_at: 2011-12-30 22:11:12.000000000 Z
|
662
|
+
task_00551:
|
663
|
+
id: 551
|
664
|
+
title: doloremque
|
665
|
+
description: Adipisci illo alias eos reprehenderit.
|
666
|
+
created_by_id: 20
|
667
|
+
project_id: 6
|
668
|
+
due_date: 2012-06-30
|
669
|
+
priority_id: 6
|
670
|
+
status_id: 15
|
671
|
+
relevant_version_id:
|
672
|
+
expected_version_id: 20
|
673
|
+
estimated_time: 1.0
|
674
|
+
archived: false
|
675
|
+
created_at: 2011-09-25 22:11:12.000000000 Z
|
676
|
+
updated_at: 2012-01-15 22:11:12.000000000 Z
|
677
|
+
task_00552:
|
678
|
+
id: 552
|
679
|
+
title: est
|
680
|
+
description: Totam aut ex quia repudiandae dolor.
|
681
|
+
created_by_id: 17
|
682
|
+
project_id: 6
|
683
|
+
due_date: 2012-08-05
|
684
|
+
priority_id:
|
685
|
+
status_id: 14
|
686
|
+
relevant_version_id:
|
687
|
+
expected_version_id:
|
688
|
+
estimated_time: 10.0
|
689
|
+
archived: false
|
690
|
+
created_at: 2011-10-19 22:11:12.000000000 Z
|
691
|
+
updated_at: 2011-11-30 22:11:12.000000000 Z
|
692
|
+
task_00553:
|
693
|
+
id: 553
|
694
|
+
title: voluptas id
|
695
|
+
description: Accusamus voluptas sunt deleniti iusto dolorem repudiandae.
|
696
|
+
created_by_id: 20
|
697
|
+
project_id: 6
|
698
|
+
due_date: 2012-09-26
|
699
|
+
priority_id:
|
700
|
+
status_id: 10
|
701
|
+
relevant_version_id: 22
|
702
|
+
expected_version_id:
|
703
|
+
estimated_time: 7.0
|
704
|
+
archived: false
|
705
|
+
created_at: 2011-08-28 22:11:12.000000000 Z
|
706
|
+
updated_at: 2012-01-06 22:11:12.000000000 Z
|
707
|
+
task_00554:
|
708
|
+
id: 554
|
709
|
+
title: necessitatibus in
|
710
|
+
description: Inventore iure eos labore ipsum.
|
711
|
+
created_by_id: 22
|
712
|
+
project_id: 4
|
713
|
+
due_date: 2012-10-02
|
714
|
+
priority_id: 8
|
715
|
+
status_id: 18
|
716
|
+
relevant_version_id:
|
717
|
+
expected_version_id:
|
718
|
+
estimated_time: 20.0
|
719
|
+
archived: false
|
720
|
+
created_at: 2011-08-18 22:11:12.000000000 Z
|
721
|
+
updated_at: 2011-12-07 22:11:12.000000000 Z
|
722
|
+
task_00555:
|
723
|
+
id: 555
|
724
|
+
title: numquam nisi vero
|
725
|
+
description: Dolorum consequatur non molestias.
|
726
|
+
created_by_id: 17
|
727
|
+
project_id: 4
|
728
|
+
due_date: 2013-02-09
|
729
|
+
priority_id:
|
730
|
+
status_id: 13
|
731
|
+
relevant_version_id: 15
|
732
|
+
expected_version_id: 14
|
733
|
+
estimated_time: 3.0
|
734
|
+
archived: false
|
735
|
+
created_at: 2011-08-27 22:11:12.000000000 Z
|
736
|
+
updated_at: 2012-02-10 22:11:12.000000000 Z
|
737
|
+
task_00556:
|
738
|
+
id: 556
|
739
|
+
title: quia exercitationem
|
740
|
+
description: Adipisci voluptate sed esse velit.
|
741
|
+
created_by_id: 20
|
742
|
+
project_id: 6
|
743
|
+
due_date: 2013-02-02
|
744
|
+
priority_id: 10
|
745
|
+
status_id: 16
|
746
|
+
relevant_version_id:
|
747
|
+
expected_version_id: 20
|
748
|
+
estimated_time: 8.0
|
749
|
+
archived: false
|
750
|
+
created_at: 2011-09-29 22:11:12.000000000 Z
|
751
|
+
updated_at: 2012-01-23 22:11:12.000000000 Z
|