refinerycms 0.9.6.19 → 0.9.6.21
Sign up to get free protection for your applications and to get access to all the features.
- data/.gems +0 -8
- data/.gitignore +3 -1
- data/Rakefile +1 -5
- data/VERSION +1 -1
- data/bin/refinery-update-core +11 -2
- data/config/application.rb +6 -1
- data/config/environments/development.rb +10 -6
- data/config/settings.rb +3 -0
- data/db/migrate/20100305023036_change_users_columns_for_authlogic.rb +46 -0
- data/db/migrate/20100305023037_remove_unused_users_columns.rb +16 -0
- data/db/migrate/20100312155331_make_user_perishable_token_nullable.rb +13 -0
- data/db/migrate/20100312160327_make_user_persistence_token_nullable.rb +13 -0
- data/db/migrate/20100315203301_remove_state_from_users.rb +9 -0
- data/db/schema.rb +8 -21
- data/db/seeds.rb +5 -19
- data/lib/refinery/tasks/refinery.rb +1 -1
- data/public/javascripts/admin.js +6 -2
- data/public/javascripts/jquery-ui-1.8.min.js +374 -0
- data/public/javascripts/jquery.js +606 -444
- data/public/javascripts/refinery/admin.js +30 -9
- data/public/javascripts/refinery/boot_wym.js +4 -0
- data/public/javascripts/wymeditor/jquery.refinery.wymeditor.js +3 -4
- data/public/stylesheets/refinery/refinery.css +11 -0
- data/public/stylesheets/wymeditor/skins/refinery/skin.css +3 -1
- data/public/stylesheets/wymeditor/skins/refinery/wymiframe.css +5 -5
- data/readme.md +13 -10
- data/test/fixtures/users.yml +5 -5
- data/test/functional/dashboard_controller_test.rb +0 -4
- data/test/functional/images_controller_test.rb +0 -3
- data/test/test_helper.rb +7 -3
- data/themes/hemingway/views/layouts/application.html.erb +1 -12
- data/vendor/plugins/authentication/app/controllers/admin/users_controller.rb +1 -3
- data/vendor/plugins/authentication/app/controllers/sessions_controller.rb +3 -14
- data/vendor/plugins/authentication/app/controllers/users_controller.rb +26 -37
- data/vendor/plugins/authentication/app/models/user.rb +29 -112
- data/vendor/plugins/authentication/app/models/user_mailer.rb +8 -5
- data/vendor/plugins/authentication/app/models/user_session.rb +9 -0
- data/vendor/plugins/authentication/app/views/admin/users/index.html.erb +1 -1
- data/vendor/plugins/authentication/app/views/sessions/new.html.erb +5 -4
- data/vendor/plugins/authentication/lib/authenticated_system.rb +40 -30
- data/vendor/plugins/authentication/rails/init.rb +9 -0
- data/vendor/plugins/authlogic/CHANGELOG.rdoc +345 -0
- data/vendor/plugins/authlogic/LICENSE +20 -0
- data/vendor/plugins/authlogic/README.rdoc +246 -0
- data/vendor/plugins/authlogic/Rakefile +42 -0
- data/vendor/plugins/authlogic/VERSION.yml +5 -0
- data/vendor/plugins/authlogic/authlogic.gemspec +217 -0
- data/vendor/plugins/authlogic/generators/session/session_generator.rb +9 -0
- data/vendor/plugins/authlogic/generators/session/templates/session.rb +2 -0
- data/vendor/plugins/authlogic/init.rb +1 -0
- data/vendor/plugins/authlogic/lib/authlogic.rb +64 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/base.rb +107 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/email.rb +110 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/logged_in_status.rb +60 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/login.rb +141 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/magic_columns.rb +24 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/password.rb +355 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/perishable_token.rb +105 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/persistence_token.rb +68 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/restful_authentication.rb +61 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/session_maintenance.rb +139 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/single_access_token.rb +65 -0
- data/vendor/plugins/authlogic/lib/authlogic/acts_as_authentic/validations_scope.rb +32 -0
- data/vendor/plugins/authlogic/lib/authlogic/authenticates_many/association.rb +42 -0
- data/vendor/plugins/authlogic/lib/authlogic/authenticates_many/base.rb +55 -0
- data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/abstract_adapter.rb +67 -0
- data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/merb_adapter.rb +30 -0
- data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/rails_adapter.rb +48 -0
- data/vendor/plugins/authlogic/lib/authlogic/controller_adapters/sinatra_adapter.rb +61 -0
- data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/aes256.rb +43 -0
- data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/bcrypt.rb +90 -0
- data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/md5.rb +34 -0
- data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha1.rb +35 -0
- data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha256.rb +50 -0
- data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/sha512.rb +50 -0
- data/vendor/plugins/authlogic/lib/authlogic/crypto_providers/wordpress.rb +43 -0
- data/vendor/plugins/authlogic/lib/authlogic/i18n.rb +83 -0
- data/vendor/plugins/authlogic/lib/authlogic/i18n/translator.rb +15 -0
- data/vendor/plugins/authlogic/lib/authlogic/random.rb +33 -0
- data/vendor/plugins/authlogic/lib/authlogic/regex.rb +25 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/activation.rb +58 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/active_record_trickery.rb +64 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/base.rb +37 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/brute_force_protection.rb +96 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/callbacks.rb +99 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/cookies.rb +130 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/existence.rb +93 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/foundation.rb +63 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/http_auth.rb +58 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/id.rb +41 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/klass.rb +78 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/magic_columns.rb +95 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/magic_states.rb +59 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/params.rb +101 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/password.rb +240 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/perishable_token.rb +18 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/persistence.rb +70 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/priority_record.rb +34 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/scopes.rb +101 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/session.rb +62 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/timeout.rb +82 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/unauthorized_record.rb +50 -0
- data/vendor/plugins/authlogic/lib/authlogic/session/validation.rb +82 -0
- data/vendor/plugins/authlogic/lib/authlogic/test_case.rb +120 -0
- data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_controller.rb +45 -0
- data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_cookie_jar.rb +14 -0
- data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_logger.rb +10 -0
- data/vendor/plugins/authlogic/lib/authlogic/test_case/mock_request.rb +19 -0
- data/vendor/plugins/authlogic/lib/authlogic/test_case/rails_request_adapter.rb +30 -0
- data/vendor/plugins/authlogic/rails/init.rb +1 -0
- data/vendor/plugins/authlogic/shoulda_macros/authlogic.rb +69 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/base_test.rb +18 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/email_test.rb +97 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/logged_in_status_test.rb +36 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/login_test.rb +109 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/magic_columns_test.rb +27 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/password_test.rb +236 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/perishable_token_test.rb +90 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/persistence_token_test.rb +55 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/restful_authentication_test.rb +40 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/session_maintenance_test.rb +84 -0
- data/vendor/plugins/authlogic/test/acts_as_authentic_test/single_access_test.rb +44 -0
- data/vendor/plugins/authlogic/test/authenticates_many_test.rb +16 -0
- data/vendor/plugins/authlogic/test/crypto_provider_test/aes256_test.rb +14 -0
- data/vendor/plugins/authlogic/test/crypto_provider_test/bcrypt_test.rb +14 -0
- data/vendor/plugins/authlogic/test/crypto_provider_test/sha1_test.rb +23 -0
- data/vendor/plugins/authlogic/test/crypto_provider_test/sha256_test.rb +14 -0
- data/vendor/plugins/authlogic/test/crypto_provider_test/sha512_test.rb +14 -0
- data/vendor/plugins/authlogic/test/fixtures/companies.yml +5 -0
- data/vendor/plugins/authlogic/test/fixtures/employees.yml +17 -0
- data/vendor/plugins/authlogic/test/fixtures/projects.yml +3 -0
- data/vendor/plugins/authlogic/test/fixtures/users.yml +24 -0
- data/vendor/plugins/authlogic/test/i18n_test.rb +33 -0
- data/vendor/plugins/authlogic/test/libs/affiliate.rb +7 -0
- data/vendor/plugins/authlogic/test/libs/company.rb +6 -0
- data/vendor/plugins/authlogic/test/libs/employee.rb +7 -0
- data/vendor/plugins/authlogic/test/libs/employee_session.rb +2 -0
- data/vendor/plugins/authlogic/test/libs/ldaper.rb +3 -0
- data/vendor/plugins/authlogic/test/libs/ordered_hash.rb +9 -0
- data/vendor/plugins/authlogic/test/libs/project.rb +3 -0
- data/vendor/plugins/authlogic/test/libs/user.rb +5 -0
- data/vendor/plugins/authlogic/test/libs/user_session.rb +6 -0
- data/vendor/plugins/authlogic/test/random_test.rb +49 -0
- data/vendor/plugins/authlogic/test/session_test/activation_test.rb +43 -0
- data/vendor/plugins/authlogic/test/session_test/active_record_trickery_test.rb +36 -0
- data/vendor/plugins/authlogic/test/session_test/brute_force_protection_test.rb +101 -0
- data/vendor/plugins/authlogic/test/session_test/callbacks_test.rb +6 -0
- data/vendor/plugins/authlogic/test/session_test/cookies_test.rb +112 -0
- data/vendor/plugins/authlogic/test/session_test/credentials_test.rb +0 -0
- data/vendor/plugins/authlogic/test/session_test/existence_test.rb +64 -0
- data/vendor/plugins/authlogic/test/session_test/http_auth_test.rb +28 -0
- data/vendor/plugins/authlogic/test/session_test/id_test.rb +17 -0
- data/vendor/plugins/authlogic/test/session_test/klass_test.rb +40 -0
- data/vendor/plugins/authlogic/test/session_test/magic_columns_test.rb +62 -0
- data/vendor/plugins/authlogic/test/session_test/magic_states_test.rb +60 -0
- data/vendor/plugins/authlogic/test/session_test/params_test.rb +53 -0
- data/vendor/plugins/authlogic/test/session_test/password_test.rb +106 -0
- data/vendor/plugins/authlogic/test/session_test/perishability_test.rb +15 -0
- data/vendor/plugins/authlogic/test/session_test/persistence_test.rb +21 -0
- data/vendor/plugins/authlogic/test/session_test/scopes_test.rb +60 -0
- data/vendor/plugins/authlogic/test/session_test/session_test.rb +59 -0
- data/vendor/plugins/authlogic/test/session_test/timeout_test.rb +52 -0
- data/vendor/plugins/authlogic/test/session_test/unauthorized_record_test.rb +13 -0
- data/vendor/plugins/authlogic/test/session_test/validation_test.rb +23 -0
- data/vendor/plugins/authlogic/test/test_helper.rb +182 -0
- data/vendor/plugins/dashboard/app/helpers/admin/dashboard_helper.rb +1 -1
- data/vendor/plugins/friendly_id/Changelog.md +243 -0
- data/vendor/plugins/friendly_id/Contributors.md +30 -0
- data/vendor/plugins/friendly_id/Gemfile +2 -0
- data/vendor/plugins/friendly_id/Guide.md +509 -0
- data/vendor/plugins/friendly_id/LICENSE +19 -0
- data/vendor/plugins/friendly_id/README.md +76 -0
- data/vendor/plugins/friendly_id/Rakefile +68 -0
- data/vendor/plugins/friendly_id/extras/README.txt +3 -0
- data/vendor/plugins/friendly_id/extras/bench.rb +59 -0
- data/vendor/plugins/friendly_id/extras/extras.rb +31 -0
- data/vendor/plugins/friendly_id/extras/prof.rb +14 -0
- data/vendor/plugins/friendly_id/extras/template-gem.rb +26 -0
- data/vendor/plugins/friendly_id/extras/template-plugin.rb +28 -0
- data/vendor/plugins/friendly_id/friendly_id.gemspec +40 -0
- data/vendor/plugins/friendly_id/generators/friendly_id/friendly_id_generator.rb +28 -0
- data/vendor/plugins/friendly_id/generators/friendly_id/templates/create_slugs.rb +18 -0
- data/vendor/plugins/friendly_id/lib/friendly_id.rb +67 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2.rb +47 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/configuration.rb +66 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/finders.rb +140 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/simple_model.rb +162 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/slug.rb +111 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/slugged_model.rb +323 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/tasks.rb +66 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/active_record2/tasks/friendly_id.rake +19 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/configuration.rb +132 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/finders.rb +106 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/slug_string.rb +292 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/slugged.rb +91 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/status.rb +35 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/test.rb +175 -0
- data/vendor/plugins/friendly_id/lib/friendly_id/version.rb +8 -0
- data/vendor/plugins/friendly_id/rails/init.rb +2 -0
- data/vendor/plugins/friendly_id/test/active_record2/basic_slugged_model_test.rb +14 -0
- data/vendor/plugins/friendly_id/test/active_record2/cached_slug_test.rb +61 -0
- data/vendor/plugins/friendly_id/test/active_record2/core.rb +93 -0
- data/vendor/plugins/friendly_id/test/active_record2/custom_normalizer_test.rb +20 -0
- data/vendor/plugins/friendly_id/test/active_record2/custom_table_name_test.rb +22 -0
- data/vendor/plugins/friendly_id/test/active_record2/deprecated_test.rb +23 -0
- data/vendor/plugins/friendly_id/test/active_record2/scoped_model_test.rb +111 -0
- data/vendor/plugins/friendly_id/test/active_record2/simple_test.rb +59 -0
- data/vendor/plugins/friendly_id/test/active_record2/slug_test.rb +34 -0
- data/vendor/plugins/friendly_id/test/active_record2/slugged.rb +30 -0
- data/vendor/plugins/friendly_id/test/active_record2/slugged_status_test.rb +61 -0
- data/vendor/plugins/friendly_id/test/active_record2/sti_test.rb +22 -0
- data/vendor/plugins/friendly_id/test/active_record2/support/database.mysql.yml +4 -0
- data/vendor/plugins/friendly_id/test/active_record2/support/database.postgres.yml +6 -0
- data/vendor/plugins/friendly_id/test/active_record2/support/database.sqlite3.yml +2 -0
- data/vendor/plugins/friendly_id/test/active_record2/support/models.rb +78 -0
- data/vendor/plugins/friendly_id/test/active_record2/tasks_test.rb +82 -0
- data/vendor/plugins/friendly_id/test/active_record2/test_helper.rb +114 -0
- data/vendor/plugins/friendly_id/test/friendly_id_test.rb +60 -0
- data/vendor/plugins/friendly_id/test/slug_string_test.rb +78 -0
- data/vendor/plugins/friendly_id/test/test_helper.rb +9 -0
- data/vendor/plugins/hpricot/CHANGELOG +88 -0
- data/vendor/plugins/hpricot/COPYING +18 -0
- data/vendor/plugins/hpricot/README +275 -0
- data/vendor/plugins/hpricot/Rakefile +272 -0
- data/vendor/plugins/hpricot/ext/fast_xs/FastXsService.java +1030 -0
- data/vendor/plugins/hpricot/ext/fast_xs/extconf.rb +4 -0
- data/vendor/plugins/hpricot/ext/fast_xs/fast_xs.c +201 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/HpricotCss.java +831 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/HpricotScanService.java +2086 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/MANIFEST +0 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/extconf.rb +6 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_common.rl +76 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_css.c +3503 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_css.java.rl +155 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_css.rl +115 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.c +6927 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.h +79 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.java.rl +1152 -0
- data/vendor/plugins/hpricot/ext/hpricot_scan/hpricot_scan.rl +788 -0
- data/vendor/plugins/hpricot/extras/mingw-rbconfig.rb +176 -0
- data/vendor/plugins/hpricot/hpricot.gemspec +17 -0
- data/vendor/plugins/hpricot/lib/hpricot.rb +26 -0
- data/vendor/plugins/hpricot/lib/hpricot/blankslate.rb +63 -0
- data/vendor/plugins/hpricot/lib/hpricot/builder.rb +216 -0
- data/vendor/plugins/hpricot/lib/hpricot/elements.rb +510 -0
- data/vendor/plugins/hpricot/lib/hpricot/htmlinfo.rb +691 -0
- data/vendor/plugins/hpricot/lib/hpricot/inspect.rb +103 -0
- data/vendor/plugins/hpricot/lib/hpricot/modules.rb +40 -0
- data/vendor/plugins/hpricot/lib/hpricot/parse.rb +38 -0
- data/vendor/plugins/hpricot/lib/hpricot/tag.rb +219 -0
- data/vendor/plugins/hpricot/lib/hpricot/tags.rb +164 -0
- data/vendor/plugins/hpricot/lib/hpricot/traverse.rb +839 -0
- data/vendor/plugins/hpricot/lib/hpricot/xchar.rb +94 -0
- data/vendor/plugins/hpricot/setup.rb +1585 -0
- data/vendor/plugins/hpricot/test/files/basic.xhtml +17 -0
- data/vendor/plugins/hpricot/test/files/boingboing.html +2266 -0
- data/vendor/plugins/hpricot/test/files/cy0.html +3653 -0
- data/vendor/plugins/hpricot/test/files/immob.html +400 -0
- data/vendor/plugins/hpricot/test/files/pace_application.html +1320 -0
- data/vendor/plugins/hpricot/test/files/tenderlove.html +16 -0
- data/vendor/plugins/hpricot/test/files/uswebgen.html +220 -0
- data/vendor/plugins/hpricot/test/files/utf8.html +1054 -0
- data/vendor/plugins/hpricot/test/files/week9.html +1723 -0
- data/vendor/plugins/hpricot/test/files/why.xml +19 -0
- data/vendor/plugins/hpricot/test/load_files.rb +7 -0
- data/vendor/plugins/hpricot/test/nokogiri-bench.rb +64 -0
- data/vendor/plugins/hpricot/test/test_alter.rb +96 -0
- data/vendor/plugins/hpricot/test/test_builder.rb +37 -0
- data/vendor/plugins/hpricot/test/test_parser.rb +428 -0
- data/vendor/plugins/hpricot/test/test_paths.rb +25 -0
- data/vendor/plugins/hpricot/test/test_preserved.rb +88 -0
- data/vendor/plugins/hpricot/test/test_xml.rb +28 -0
- data/vendor/plugins/inquiries/app/controllers/admin/inquiries_controller.rb +1 -6
- data/vendor/plugins/inquiries/app/helpers/inquiries_helper.rb +0 -11
- data/vendor/plugins/inquiries/app/views/admin/inquiries/_inquiry.html.erb +10 -6
- data/vendor/plugins/inquiries/app/views/inquiry_mailer/confirmation.html.erb +1 -1
- data/vendor/plugins/inquiries/config/routes.rb +1 -1
- data/vendor/plugins/pages/app/controllers/admin/pages_controller.rb +16 -3
- data/vendor/plugins/pages/app/models/page_part.rb +9 -0
- data/vendor/plugins/rails_indexes/lib/indexer.rb +0 -2
- data/vendor/plugins/refinery/app/views/admin/_head.html.erb +2 -1
- data/vendor/plugins/refinery/app/views/shared/_head.html.erb +0 -1
- data/vendor/plugins/refinery/app/views/shared/_ie6check.html.erb +23 -11
- data/vendor/plugins/refinery/app/views/welcome.html.erb +1 -1
- data/vendor/plugins/refinery/app/views/wymiframe.html.erb +2 -1
- data/vendor/plugins/refinery/lib/generators/refinery/USAGE +1 -1
- data/vendor/plugins/refinery/lib/generators/refinery/templates/migration.rb +2 -2
- data/vendor/plugins/refinery/lib/generators/refinery/templates/model.rb +4 -0
- data/vendor/plugins/refinery/lib/generators/refinery/templates/views/admin/_form.html.erb +6 -0
- data/vendor/plugins/refinery/lib/generators/refinery/templates/views/show.html.erb +5 -3
- data/vendor/plugins/refinery/lib/refinery/application_helper.rb +2 -2
- data/vendor/plugins/refinery/lib/refinery/initializer.rb +4 -41
- data/vendor/plugins/refinery_settings/app/models/refinery_setting.rb +7 -3
- data/vendor/plugins/slim_scrooge/README.textile +112 -0
- data/vendor/plugins/slim_scrooge/Rakefile +29 -0
- data/vendor/plugins/slim_scrooge/VERSION.yml +5 -0
- data/vendor/plugins/slim_scrooge/ext/Rakefile +42 -0
- data/vendor/plugins/slim_scrooge/ext/extconf.rb +5 -0
- data/vendor/plugins/slim_scrooge/lib/slim_scrooge.rb +16 -0
- data/vendor/plugins/slim_scrooge/lib/slim_scrooge/callsite.rb +96 -0
- data/vendor/plugins/slim_scrooge/lib/slim_scrooge/callsites.rb +70 -0
- data/vendor/plugins/slim_scrooge/lib/slim_scrooge/monitored_hash.rb +103 -0
- data/vendor/plugins/slim_scrooge/lib/slim_scrooge/result_set.rb +38 -0
- data/vendor/plugins/slim_scrooge/lib/slim_scrooge/simple_set.rb +34 -0
- data/vendor/plugins/slim_scrooge/lib/slim_scrooge/slim_scrooge.rb +46 -0
- data/vendor/plugins/slim_scrooge/rails/init.rb +8 -0
- data/vendor/plugins/slim_scrooge/slim_scrooge.gemspec +62 -0
- data/vendor/plugins/slim_scrooge/slim_scrooge_windows.gemspec +59 -0
- data/vendor/plugins/slim_scrooge/test/active_record_setup.rb +3 -0
- data/vendor/plugins/slim_scrooge/test/helper.rb +91 -0
- data/vendor/plugins/slim_scrooge/test/models/course.rb +2 -0
- data/vendor/plugins/slim_scrooge/test/schema/schema.rb +5 -0
- data/vendor/plugins/slim_scrooge/test/setup.rb +5 -0
- data/vendor/plugins/themes/app/models/theme.rb +7 -0
- data/vendor/plugins/themes/lib/theme_server.rb +3 -1
- data/vendor/plugins/themes/rails/init.rb +16 -13
- data/vendor/plugins/will_paginate/.manifest +43 -0
- data/vendor/plugins/will_paginate/CHANGELOG.rdoc +139 -0
- data/vendor/plugins/will_paginate/LICENSE +18 -0
- data/vendor/plugins/will_paginate/README.rdoc +107 -0
- data/vendor/plugins/will_paginate/Rakefile +53 -0
- data/vendor/plugins/will_paginate/examples/apple-circle.gif +0 -0
- data/vendor/plugins/will_paginate/examples/index.haml +69 -0
- data/vendor/plugins/will_paginate/examples/index.html +92 -0
- data/vendor/plugins/will_paginate/examples/pagination.css +90 -0
- data/vendor/plugins/will_paginate/examples/pagination.sass +91 -0
- data/vendor/plugins/will_paginate/init.rb +1 -0
- data/vendor/plugins/will_paginate/lib/will_paginate.rb +90 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/array.rb +16 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/collection.rb +146 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/core_ext.rb +43 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/finder.rb +264 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/named_scope.rb +170 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/named_scope_patch.rb +37 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/version.rb +9 -0
- data/vendor/plugins/will_paginate/lib/will_paginate/view_helpers.rb +408 -0
- data/vendor/plugins/will_paginate/test/boot.rb +21 -0
- data/vendor/plugins/will_paginate/test/collection_test.rb +143 -0
- data/vendor/plugins/will_paginate/test/console +8 -0
- data/vendor/plugins/will_paginate/test/database.yml +22 -0
- data/vendor/plugins/will_paginate/test/finder_test.rb +473 -0
- data/vendor/plugins/will_paginate/test/fixtures/admin.rb +3 -0
- data/vendor/plugins/will_paginate/test/fixtures/developer.rb +14 -0
- data/vendor/plugins/will_paginate/test/fixtures/developers_projects.yml +13 -0
- data/vendor/plugins/will_paginate/test/fixtures/project.rb +15 -0
- data/vendor/plugins/will_paginate/test/fixtures/projects.yml +6 -0
- data/vendor/plugins/will_paginate/test/fixtures/replies.yml +29 -0
- data/vendor/plugins/will_paginate/test/fixtures/reply.rb +7 -0
- data/vendor/plugins/will_paginate/test/fixtures/schema.rb +38 -0
- data/vendor/plugins/will_paginate/test/fixtures/topic.rb +10 -0
- data/vendor/plugins/will_paginate/test/fixtures/topics.yml +30 -0
- data/vendor/plugins/will_paginate/test/fixtures/user.rb +2 -0
- data/vendor/plugins/will_paginate/test/fixtures/users.yml +35 -0
- data/vendor/plugins/will_paginate/test/helper.rb +37 -0
- data/vendor/plugins/will_paginate/test/lib/activerecord_test_case.rb +43 -0
- data/vendor/plugins/will_paginate/test/lib/activerecord_test_connector.rb +75 -0
- data/vendor/plugins/will_paginate/test/lib/load_fixtures.rb +11 -0
- data/vendor/plugins/will_paginate/test/lib/view_test_process.rb +179 -0
- data/vendor/plugins/will_paginate/test/tasks.rake +59 -0
- data/vendor/plugins/will_paginate/test/view_test.rb +373 -0
- data/vendor/plugins/will_paginate/will_paginate.gemspec +19 -0
- metadata +308 -27
- data/db/migrate/20091029034951_remove_blurb_from_news_items.rb +0 -9
- data/public/javascripts/jquery-ui-1.8rc1.min.js +0 -375
- data/test/fixtures/news_items.yml +0 -14
- data/test/unit/news_items_test.rb +0 -33
- data/vendor/plugins/authentication/test/fixtures/users.yml +0 -19
- data/vendor/plugins/authentication/test/functional/sessions_controller_test.rb +0 -85
- data/vendor/plugins/authentication/test/functional/users_controller_test.rb +0 -99
- data/vendor/plugins/authentication/test/unit/user_test.rb +0 -164
- data/vendor/plugins/news/app/controllers/admin/news_items_controller.rb +0 -5
- data/vendor/plugins/news/app/controllers/news_items_controller.rb +0 -20
- data/vendor/plugins/news/app/models/news_item.rb +0 -24
- data/vendor/plugins/news/app/views/admin/news_items/_form.html.erb +0 -19
- data/vendor/plugins/news/app/views/admin/news_items/_news_item.html.erb +0 -15
- data/vendor/plugins/news/app/views/admin/news_items/edit.html.erb +0 -1
- data/vendor/plugins/news/app/views/admin/news_items/index.html.erb +0 -31
- data/vendor/plugins/news/app/views/admin/news_items/new.html.erb +0 -1
- data/vendor/plugins/news/app/views/news_items/_recent_posts.html.erb +0 -8
- data/vendor/plugins/news/app/views/news_items/index.html.erb +0 -17
- data/vendor/plugins/news/app/views/news_items/index.rss.builder +0 -26
- data/vendor/plugins/news/app/views/news_items/show.html.erb +0 -13
- data/vendor/plugins/news/config/routes.rb +0 -7
- data/vendor/plugins/news/news.md +0 -20
- data/vendor/plugins/news/rails/init.rb +0 -11
@@ -0,0 +1,22 @@
|
|
1
|
+
sqlite3:
|
2
|
+
database: ":memory:"
|
3
|
+
adapter: sqlite3
|
4
|
+
timeout: 500
|
5
|
+
|
6
|
+
sqlite2:
|
7
|
+
database: ":memory:"
|
8
|
+
adapter: sqlite2
|
9
|
+
|
10
|
+
mysql:
|
11
|
+
adapter: mysql
|
12
|
+
username: root
|
13
|
+
password:
|
14
|
+
encoding: utf8
|
15
|
+
database: will_paginate_unittest
|
16
|
+
|
17
|
+
postgres:
|
18
|
+
adapter: postgresql
|
19
|
+
username: mislav
|
20
|
+
password:
|
21
|
+
database: will_paginate_unittest
|
22
|
+
min_messages: warning
|
@@ -0,0 +1,473 @@
|
|
1
|
+
require 'helper'
|
2
|
+
require 'lib/activerecord_test_case'
|
3
|
+
|
4
|
+
require 'will_paginate'
|
5
|
+
WillPaginate.enable_activerecord
|
6
|
+
WillPaginate.enable_named_scope
|
7
|
+
|
8
|
+
class FinderTest < ActiveRecordTestCase
|
9
|
+
fixtures :topics, :replies, :users, :projects, :developers_projects
|
10
|
+
|
11
|
+
def test_new_methods_presence
|
12
|
+
assert_respond_to_all Topic, %w(per_page paginate paginate_by_sql)
|
13
|
+
end
|
14
|
+
|
15
|
+
def test_simple_paginate
|
16
|
+
assert_queries(1) do
|
17
|
+
entries = Topic.paginate :page => nil
|
18
|
+
assert_equal 1, entries.current_page
|
19
|
+
assert_equal 1, entries.total_pages
|
20
|
+
assert_equal 4, entries.size
|
21
|
+
end
|
22
|
+
|
23
|
+
assert_queries(2) do
|
24
|
+
entries = Topic.paginate :page => 2
|
25
|
+
assert_equal 1, entries.total_pages
|
26
|
+
assert entries.empty?
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_parameter_api
|
31
|
+
# :page parameter in options is required!
|
32
|
+
assert_raise(ArgumentError){ Topic.paginate }
|
33
|
+
assert_raise(ArgumentError){ Topic.paginate({}) }
|
34
|
+
|
35
|
+
# explicit :all should not break anything
|
36
|
+
assert_equal Topic.paginate(:page => nil), Topic.paginate(:all, :page => 1)
|
37
|
+
|
38
|
+
# :count could be nil and we should still not cry
|
39
|
+
assert_nothing_raised { Topic.paginate :page => 1, :count => nil }
|
40
|
+
end
|
41
|
+
|
42
|
+
def test_paginate_with_per_page
|
43
|
+
entries = Topic.paginate :page => 1, :per_page => 1
|
44
|
+
assert_equal 1, entries.size
|
45
|
+
assert_equal 4, entries.total_pages
|
46
|
+
|
47
|
+
# Developer class has explicit per_page at 10
|
48
|
+
entries = Developer.paginate :page => 1
|
49
|
+
assert_equal 10, entries.size
|
50
|
+
assert_equal 2, entries.total_pages
|
51
|
+
|
52
|
+
entries = Developer.paginate :page => 1, :per_page => 5
|
53
|
+
assert_equal 11, entries.total_entries
|
54
|
+
assert_equal 5, entries.size
|
55
|
+
assert_equal 3, entries.total_pages
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_paginate_with_order
|
59
|
+
entries = Topic.paginate :page => 1, :order => 'created_at desc'
|
60
|
+
expected = [topics(:futurama), topics(:harvey_birdman), topics(:rails), topics(:ar)].reverse
|
61
|
+
assert_equal expected, entries.to_a
|
62
|
+
assert_equal 1, entries.total_pages
|
63
|
+
end
|
64
|
+
|
65
|
+
def test_paginate_with_conditions
|
66
|
+
entries = Topic.paginate :page => 1, :conditions => ["created_at > ?", 30.minutes.ago]
|
67
|
+
expected = [topics(:rails), topics(:ar)]
|
68
|
+
assert_equal expected, entries.to_a
|
69
|
+
assert_equal 1, entries.total_pages
|
70
|
+
end
|
71
|
+
|
72
|
+
def test_paginate_with_include_and_conditions
|
73
|
+
entries = Topic.paginate \
|
74
|
+
:page => 1,
|
75
|
+
:include => :replies,
|
76
|
+
:conditions => "replies.content LIKE 'Bird%' ",
|
77
|
+
:per_page => 10
|
78
|
+
|
79
|
+
expected = Topic.find :all,
|
80
|
+
:include => 'replies',
|
81
|
+
:conditions => "replies.content LIKE 'Bird%' ",
|
82
|
+
:limit => 10
|
83
|
+
|
84
|
+
assert_equal expected, entries.to_a
|
85
|
+
assert_equal 1, entries.total_entries
|
86
|
+
end
|
87
|
+
|
88
|
+
def test_paginate_with_include_and_order
|
89
|
+
entries = nil
|
90
|
+
assert_queries(2) do
|
91
|
+
entries = Topic.paginate \
|
92
|
+
:page => 1,
|
93
|
+
:include => :replies,
|
94
|
+
:order => 'replies.created_at asc, topics.created_at asc',
|
95
|
+
:per_page => 10
|
96
|
+
end
|
97
|
+
|
98
|
+
expected = Topic.find :all,
|
99
|
+
:include => 'replies',
|
100
|
+
:order => 'replies.created_at asc, topics.created_at asc',
|
101
|
+
:limit => 10
|
102
|
+
|
103
|
+
assert_equal expected, entries.to_a
|
104
|
+
assert_equal 4, entries.total_entries
|
105
|
+
end
|
106
|
+
|
107
|
+
def test_paginate_associations_with_include
|
108
|
+
entries, project = nil, projects(:active_record)
|
109
|
+
|
110
|
+
assert_nothing_raised "THIS IS A BUG in Rails 1.2.3 that was fixed in [7326]. " +
|
111
|
+
"Please upgrade to a newer version of Rails." do
|
112
|
+
entries = project.topics.paginate \
|
113
|
+
:page => 1,
|
114
|
+
:include => :replies,
|
115
|
+
:conditions => "replies.content LIKE 'Nice%' ",
|
116
|
+
:per_page => 10
|
117
|
+
end
|
118
|
+
|
119
|
+
expected = Topic.find :all,
|
120
|
+
:include => 'replies',
|
121
|
+
:conditions => "project_id = #{project.id} AND replies.content LIKE 'Nice%' ",
|
122
|
+
:limit => 10
|
123
|
+
|
124
|
+
assert_equal expected, entries.to_a
|
125
|
+
end
|
126
|
+
|
127
|
+
def test_paginate_associations
|
128
|
+
dhh = users :david
|
129
|
+
expected_name_ordered = [projects(:action_controller), projects(:active_record)]
|
130
|
+
expected_id_ordered = [projects(:active_record), projects(:action_controller)]
|
131
|
+
|
132
|
+
assert_queries(2) do
|
133
|
+
# with association-specified order
|
134
|
+
entries = dhh.projects.paginate(:page => 1)
|
135
|
+
assert_equal expected_name_ordered, entries
|
136
|
+
assert_equal 2, entries.total_entries
|
137
|
+
end
|
138
|
+
|
139
|
+
# with explicit order
|
140
|
+
entries = dhh.projects.paginate(:page => 1, :order => 'projects.id')
|
141
|
+
assert_equal expected_id_ordered, entries
|
142
|
+
assert_equal 2, entries.total_entries
|
143
|
+
|
144
|
+
assert_nothing_raised { dhh.projects.find(:all, :order => 'projects.id', :limit => 4) }
|
145
|
+
entries = dhh.projects.paginate(:page => 1, :order => 'projects.id', :per_page => 4)
|
146
|
+
assert_equal expected_id_ordered, entries
|
147
|
+
|
148
|
+
# has_many with implicit order
|
149
|
+
topic = Topic.find(1)
|
150
|
+
expected = [replies(:spam), replies(:witty_retort)]
|
151
|
+
assert_equal expected.map(&:id).sort, topic.replies.paginate(:page => 1).map(&:id).sort
|
152
|
+
assert_equal expected.reverse, topic.replies.paginate(:page => 1, :order => 'replies.id ASC')
|
153
|
+
end
|
154
|
+
|
155
|
+
def test_paginate_association_extension
|
156
|
+
project = Project.find(:first)
|
157
|
+
|
158
|
+
assert_queries(2) do
|
159
|
+
entries = project.replies.paginate_recent :page => 1
|
160
|
+
assert_equal [replies(:brave)], entries
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
def test_paginate_with_joins
|
165
|
+
entries = nil
|
166
|
+
|
167
|
+
assert_queries(1) do
|
168
|
+
entries = Developer.paginate :page => 1,
|
169
|
+
:joins => 'LEFT JOIN developers_projects ON users.id = developers_projects.developer_id',
|
170
|
+
:conditions => 'project_id = 1'
|
171
|
+
assert_equal 2, entries.size
|
172
|
+
developer_names = entries.map &:name
|
173
|
+
assert developer_names.include?('David')
|
174
|
+
assert developer_names.include?('Jamis')
|
175
|
+
end
|
176
|
+
|
177
|
+
assert_queries(1) do
|
178
|
+
expected = entries.to_a
|
179
|
+
entries = Developer.paginate :page => 1,
|
180
|
+
:joins => 'LEFT JOIN developers_projects ON users.id = developers_projects.developer_id',
|
181
|
+
:conditions => 'project_id = 1', :count => { :select => "users.id" }
|
182
|
+
assert_equal expected, entries.to_a
|
183
|
+
assert_equal 2, entries.total_entries
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
def test_paginate_with_group
|
188
|
+
entries = nil
|
189
|
+
assert_queries(1) do
|
190
|
+
entries = Developer.paginate :page => 1, :per_page => 10,
|
191
|
+
:group => 'salary', :select => 'salary', :order => 'salary'
|
192
|
+
end
|
193
|
+
|
194
|
+
expected = [ users(:david), users(:jamis), users(:dev_10), users(:poor_jamis) ].map(&:salary).sort
|
195
|
+
assert_equal expected, entries.map(&:salary)
|
196
|
+
end
|
197
|
+
|
198
|
+
def test_paginate_with_dynamic_finder
|
199
|
+
expected = [replies(:witty_retort), replies(:spam)]
|
200
|
+
assert_equal expected, Reply.paginate_by_topic_id(1, :page => 1)
|
201
|
+
|
202
|
+
entries = Developer.paginate :conditions => { :salary => 100000 }, :page => 1, :per_page => 5
|
203
|
+
assert_equal 8, entries.total_entries
|
204
|
+
assert_equal entries, Developer.paginate_by_salary(100000, :page => 1, :per_page => 5)
|
205
|
+
|
206
|
+
# dynamic finder + conditions
|
207
|
+
entries = Developer.paginate_by_salary(100000, :page => 1,
|
208
|
+
:conditions => ['id > ?', 6])
|
209
|
+
assert_equal 4, entries.total_entries
|
210
|
+
assert_equal (7..10).to_a, entries.map(&:id)
|
211
|
+
|
212
|
+
assert_raises NoMethodError do
|
213
|
+
Developer.paginate_by_inexistent_attribute 100000, :page => 1
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
217
|
+
def test_scoped_paginate
|
218
|
+
entries = Developer.with_poor_ones { Developer.paginate :page => 1 }
|
219
|
+
|
220
|
+
assert_equal 2, entries.size
|
221
|
+
assert_equal 2, entries.total_entries
|
222
|
+
end
|
223
|
+
|
224
|
+
## named_scope ##
|
225
|
+
|
226
|
+
def test_paginate_in_named_scope
|
227
|
+
entries = Developer.poor.paginate :page => 1, :per_page => 1
|
228
|
+
|
229
|
+
assert_equal 1, entries.size
|
230
|
+
assert_equal 2, entries.total_entries
|
231
|
+
end
|
232
|
+
|
233
|
+
def test_paginate_in_named_scope_on_habtm_association
|
234
|
+
project = projects(:active_record)
|
235
|
+
assert_queries(2) do
|
236
|
+
entries = project.developers.poor.paginate :page => 1, :per_page => 1
|
237
|
+
|
238
|
+
assert_equal 1, entries.size, 'one developer should be found'
|
239
|
+
assert_equal 1, entries.total_entries, 'only one developer should be found'
|
240
|
+
end
|
241
|
+
end
|
242
|
+
|
243
|
+
def test_paginate_in_named_scope_on_hmt_association
|
244
|
+
project = projects(:active_record)
|
245
|
+
expected = [replies(:brave)]
|
246
|
+
|
247
|
+
assert_queries(2) do
|
248
|
+
entries = project.replies.recent.paginate :page => 1, :per_page => 1
|
249
|
+
assert_equal expected, entries
|
250
|
+
assert_equal 1, entries.total_entries, 'only one reply should be found'
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
254
|
+
def test_paginate_in_named_scope_on_has_many_association
|
255
|
+
project = projects(:active_record)
|
256
|
+
expected = [topics(:ar)]
|
257
|
+
|
258
|
+
assert_queries(2) do
|
259
|
+
entries = project.topics.mentions_activerecord.paginate :page => 1, :per_page => 1
|
260
|
+
assert_equal expected, entries
|
261
|
+
assert_equal 1, entries.total_entries, 'only one topic should be found'
|
262
|
+
end
|
263
|
+
end
|
264
|
+
|
265
|
+
def test_named_scope_with_include
|
266
|
+
project = projects(:active_record)
|
267
|
+
entries = project.topics.with_replies_starting_with('AR ').paginate(:page => 1, :per_page => 1)
|
268
|
+
assert_equal 1, entries.size
|
269
|
+
end
|
270
|
+
|
271
|
+
## misc ##
|
272
|
+
|
273
|
+
def test_count_and_total_entries_options_are_mutually_exclusive
|
274
|
+
e = assert_raise ArgumentError do
|
275
|
+
Developer.paginate :page => 1, :count => {}, :total_entries => 1
|
276
|
+
end
|
277
|
+
assert_match /exclusive/, e.to_s
|
278
|
+
end
|
279
|
+
|
280
|
+
def test_readonly
|
281
|
+
assert_nothing_raised { Developer.paginate :readonly => true, :page => 1 }
|
282
|
+
end
|
283
|
+
|
284
|
+
# this functionality is temporarily removed
|
285
|
+
def xtest_pagination_defines_method
|
286
|
+
pager = "paginate_by_created_at"
|
287
|
+
assert !User.methods.include_method?(pager), "User methods should not include `#{pager}` method"
|
288
|
+
# paginate!
|
289
|
+
assert 0, User.send(pager, nil, :page => 1).total_entries
|
290
|
+
# the paging finder should now be defined
|
291
|
+
assert User.methods.include_method?(pager), "`#{pager}` method should be defined on User"
|
292
|
+
end
|
293
|
+
|
294
|
+
# Is this Rails 2.0? Find out by testing find_all which was removed in [6998]
|
295
|
+
unless ActiveRecord::Base.respond_to? :find_all
|
296
|
+
def test_paginate_array_of_ids
|
297
|
+
# AR finders also accept arrays of IDs
|
298
|
+
# (this was broken in Rails before [6912])
|
299
|
+
assert_queries(1) do
|
300
|
+
entries = Developer.paginate((1..8).to_a, :per_page => 3, :page => 2, :order => 'id')
|
301
|
+
assert_equal (4..6).to_a, entries.map(&:id)
|
302
|
+
assert_equal 8, entries.total_entries
|
303
|
+
end
|
304
|
+
end
|
305
|
+
end
|
306
|
+
|
307
|
+
uses_mocha 'internals' do
|
308
|
+
def test_implicit_all_with_dynamic_finders
|
309
|
+
Topic.expects(:find_all_by_foo).returns([])
|
310
|
+
Topic.expects(:count).returns(0)
|
311
|
+
Topic.paginate_by_foo :page => 2
|
312
|
+
end
|
313
|
+
|
314
|
+
def test_guessing_the_total_count
|
315
|
+
Topic.expects(:find).returns(Array.new(2))
|
316
|
+
Topic.expects(:count).never
|
317
|
+
|
318
|
+
entries = Topic.paginate :page => 2, :per_page => 4
|
319
|
+
assert_equal 6, entries.total_entries
|
320
|
+
end
|
321
|
+
|
322
|
+
def test_guessing_that_there_are_no_records
|
323
|
+
Topic.expects(:find).returns([])
|
324
|
+
Topic.expects(:count).never
|
325
|
+
|
326
|
+
entries = Topic.paginate :page => 1, :per_page => 4
|
327
|
+
assert_equal 0, entries.total_entries
|
328
|
+
end
|
329
|
+
|
330
|
+
def test_extra_parameters_stay_untouched
|
331
|
+
Topic.expects(:find).with(:all, {:foo => 'bar', :limit => 4, :offset => 0 }).returns(Array.new(5))
|
332
|
+
Topic.expects(:count).with({:foo => 'bar'}).returns(1)
|
333
|
+
|
334
|
+
Topic.paginate :foo => 'bar', :page => 1, :per_page => 4
|
335
|
+
end
|
336
|
+
|
337
|
+
def test_count_skips_select
|
338
|
+
Developer.stubs(:find).returns([])
|
339
|
+
Developer.expects(:count).with({}).returns(0)
|
340
|
+
Developer.paginate :select => 'salary', :page => 2
|
341
|
+
end
|
342
|
+
|
343
|
+
def test_count_select_when_distinct
|
344
|
+
Developer.stubs(:find).returns([])
|
345
|
+
Developer.expects(:count).with(:select => 'DISTINCT salary').returns(0)
|
346
|
+
Developer.paginate :select => 'DISTINCT salary', :page => 2
|
347
|
+
end
|
348
|
+
|
349
|
+
def test_count_with_scoped_select_when_distinct
|
350
|
+
Developer.stubs(:find).returns([])
|
351
|
+
Developer.expects(:count).with(:select => 'DISTINCT users.id').returns(0)
|
352
|
+
Developer.distinct.paginate :page => 2
|
353
|
+
end
|
354
|
+
|
355
|
+
def test_should_use_scoped_finders_if_present
|
356
|
+
# scope-out compatibility
|
357
|
+
Topic.expects(:find_best).returns(Array.new(5))
|
358
|
+
Topic.expects(:with_best).returns(1)
|
359
|
+
|
360
|
+
Topic.paginate_best :page => 1, :per_page => 4
|
361
|
+
end
|
362
|
+
|
363
|
+
def test_paginate_by_sql
|
364
|
+
sql = "SELECT * FROM users WHERE type = 'Developer' ORDER BY id"
|
365
|
+
entries = Developer.paginate_by_sql(sql, :page => 2, :per_page => 3)
|
366
|
+
assert_equal 11, entries.total_entries
|
367
|
+
assert_equal [users(:dev_4), users(:dev_5), users(:dev_6)], entries
|
368
|
+
end
|
369
|
+
|
370
|
+
def test_paginate_by_sql_respects_total_entries_setting
|
371
|
+
sql = "SELECT * FROM users"
|
372
|
+
entries = Developer.paginate_by_sql(sql, :page => 1, :total_entries => 999)
|
373
|
+
assert_equal 999, entries.total_entries
|
374
|
+
end
|
375
|
+
|
376
|
+
def test_paginate_by_sql_strips_order_by_when_counting
|
377
|
+
Developer.expects(:find_by_sql).returns([])
|
378
|
+
Developer.expects(:count_by_sql).with("SELECT COUNT(*) FROM (sql\n ) AS count_table").returns(0)
|
379
|
+
|
380
|
+
Developer.paginate_by_sql "sql\n ORDER\nby foo, bar, `baz` ASC", :page => 2
|
381
|
+
end
|
382
|
+
|
383
|
+
# TODO: counts are still wrong
|
384
|
+
def test_ability_to_use_with_custom_finders
|
385
|
+
# acts_as_taggable defines find_tagged_with(tag, options)
|
386
|
+
Topic.expects(:find_tagged_with).with('will_paginate', :offset => 5, :limit => 5).returns([])
|
387
|
+
Topic.expects(:count).with({}).returns(0)
|
388
|
+
|
389
|
+
Topic.paginate_tagged_with 'will_paginate', :page => 2, :per_page => 5
|
390
|
+
end
|
391
|
+
|
392
|
+
def test_array_argument_doesnt_eliminate_count
|
393
|
+
ids = (1..8).to_a
|
394
|
+
Developer.expects(:find_all_by_id).returns([])
|
395
|
+
Developer.expects(:count).returns(0)
|
396
|
+
|
397
|
+
Developer.paginate_by_id(ids, :per_page => 3, :page => 2, :order => 'id')
|
398
|
+
end
|
399
|
+
|
400
|
+
def test_paginating_finder_doesnt_mangle_options
|
401
|
+
Developer.expects(:find).returns([])
|
402
|
+
options = { :page => 1, :per_page => 2, :foo => 'bar' }
|
403
|
+
options_before = options.dup
|
404
|
+
|
405
|
+
Developer.paginate(options)
|
406
|
+
assert_equal options_before, options
|
407
|
+
end
|
408
|
+
|
409
|
+
def test_paginate_by_sql_doesnt_change_original_query
|
410
|
+
query = 'SQL QUERY'
|
411
|
+
original_query = query.dup
|
412
|
+
Developer.expects(:find_by_sql).returns([])
|
413
|
+
|
414
|
+
Developer.paginate_by_sql query, :page => 1
|
415
|
+
assert_equal original_query, query
|
416
|
+
end
|
417
|
+
|
418
|
+
def test_paginated_each
|
419
|
+
collection = stub('collection', :size => 5, :empty? => false, :per_page => 5)
|
420
|
+
collection.expects(:each).times(2).returns(collection)
|
421
|
+
last_collection = stub('collection', :size => 4, :empty? => false, :per_page => 5)
|
422
|
+
last_collection.expects(:each).returns(last_collection)
|
423
|
+
|
424
|
+
params = { :order => 'id', :total_entries => 0 }
|
425
|
+
|
426
|
+
Developer.expects(:paginate).with(params.merge(:page => 2)).returns(collection)
|
427
|
+
Developer.expects(:paginate).with(params.merge(:page => 3)).returns(collection)
|
428
|
+
Developer.expects(:paginate).with(params.merge(:page => 4)).returns(last_collection)
|
429
|
+
|
430
|
+
assert_equal 14, Developer.paginated_each(:page => '2') { }
|
431
|
+
end
|
432
|
+
|
433
|
+
def test_paginated_each_with_named_scope
|
434
|
+
assert_equal 2, Developer.poor.paginated_each(:per_page => 1) {
|
435
|
+
assert_equal 11, Developer.count
|
436
|
+
}
|
437
|
+
end
|
438
|
+
|
439
|
+
# detect ActiveRecord 2.1
|
440
|
+
if ActiveRecord::Base.private_methods.include_method?(:references_eager_loaded_tables?)
|
441
|
+
def test_removes_irrelevant_includes_in_count
|
442
|
+
Developer.expects(:find).returns([1])
|
443
|
+
Developer.expects(:count).with({}).returns(0)
|
444
|
+
|
445
|
+
Developer.paginate :page => 1, :per_page => 1, :include => :projects
|
446
|
+
end
|
447
|
+
|
448
|
+
def test_doesnt_remove_referenced_includes_in_count
|
449
|
+
Developer.expects(:find).returns([1])
|
450
|
+
Developer.expects(:count).with({ :include => :projects, :conditions => 'projects.id > 2' }).returns(0)
|
451
|
+
|
452
|
+
Developer.paginate :page => 1, :per_page => 1,
|
453
|
+
:include => :projects, :conditions => 'projects.id > 2'
|
454
|
+
end
|
455
|
+
end
|
456
|
+
|
457
|
+
def test_paginate_from
|
458
|
+
result = Developer.paginate(:from => 'users', :page => 1, :per_page => 1)
|
459
|
+
assert_equal 1, result.size
|
460
|
+
end
|
461
|
+
|
462
|
+
def test_hmt_with_include
|
463
|
+
# ticket #220
|
464
|
+
reply = projects(:active_record).replies.find(:first, :order => 'replies.id')
|
465
|
+
assert_equal replies(:decisive), reply
|
466
|
+
|
467
|
+
# ticket #223
|
468
|
+
Project.find(1, :include => :replies)
|
469
|
+
|
470
|
+
# I cannot reproduce any of the failures from those reports :(
|
471
|
+
end
|
472
|
+
end
|
473
|
+
end
|