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
data/.gems
CHANGED
data/.gitignore
CHANGED
data/Rakefile
CHANGED
@@ -5,11 +5,7 @@ begin
|
|
5
5
|
# Load up the environment instead of just the boot file because we want all of the tasks available.
|
6
6
|
require File.join(File.dirname(__FILE__), 'config', 'environment')
|
7
7
|
rescue Exception
|
8
|
-
#
|
9
|
-
puts "*** Couldn't load the application's configuration because something went wrong... ***"
|
10
|
-
puts "*** Don't worry, we'll bypass the application's configuration and just boot instead... ***"
|
11
|
-
|
12
|
-
# Load up the boot file instead because there's something wrong with the environment.
|
8
|
+
# Load up the boot file instead because there's something wrong with the environment (like it's not set up yet).
|
13
9
|
require File.join(File.dirname(__FILE__), 'config', 'boot')
|
14
10
|
end
|
15
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.6.
|
1
|
+
0.9.6.21
|
data/bin/refinery-update-core
CHANGED
@@ -33,6 +33,7 @@ unless rails_root.nil? or rails_root.length == 0
|
|
33
33
|
else
|
34
34
|
lines = File.open(File.join(%W(#{rails_root} config application.rb)), "r").read.split("\n")
|
35
35
|
end
|
36
|
+
|
36
37
|
secret_key = ""
|
37
38
|
lines.each do |line|
|
38
39
|
match = line.scan(/(:secret)([^']*)([\'])([^\']*)/).flatten.last
|
@@ -58,10 +59,18 @@ unless rails_root.nil? or rails_root.length == 0
|
|
58
59
|
FileUtils::cp File.join(%W(#{refinery_root} config environment.rb)), File.join(%W(#{rails_root} config environment.rb))
|
59
60
|
end
|
60
61
|
|
62
|
+
unless File.exist?(File.join(%W(#{rails_root} config settings.rb)))
|
63
|
+
FileUtils::cp(File.join(%W(#{refinery_root} config settings.rb)), File.join(%W(#{rails_root} config settings.rb)))
|
64
|
+
end
|
65
|
+
|
61
66
|
app_config_file = "application.rb"
|
62
67
|
|
63
68
|
app_config = File.open(File.join(%W(#{rails_root} config #{app_config_file})), "r").read
|
64
69
|
|
70
|
+
# copy new jquery javascripts.
|
71
|
+
FileUtils.cp File.join(%W(#{refinery_root} public javascripts jquery.js)), File.join(%W(#{rails_root} public javascripts jquery.js))
|
72
|
+
FileUtils.cp File.join(%W(#{refinery_root} public javascripts jquery-ui-1.8.min.js)), File.join(%W(#{rails_root} public javascripts jquery-ui-1.8.min.js))
|
73
|
+
|
65
74
|
# backup app's config file and replace it, if required.
|
66
75
|
environment_updated = false
|
67
76
|
matcher = /(#===REFINERY REQUIRED GEMS===)(.+?)(#===REFINERY END OF REQUIRED GEMS===)/m
|
@@ -71,9 +80,9 @@ unless rails_root.nil? or rails_root.length == 0
|
|
71
80
|
|
72
81
|
# copy the new config file.
|
73
82
|
FileUtils.cp File.join(%W(#{refinery_root} config #{app_config_file})), File.join(%W(#{rails_root} config #{app_config_file}))
|
74
|
-
|
83
|
+
|
75
84
|
# Write the secret key back into the file.
|
76
|
-
|
85
|
+
|
77
86
|
|
78
87
|
environment_updated = true
|
79
88
|
end
|
data/config/application.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
RAILS_GEM_VERSION = '2.3.5' unless defined? RAILS_GEM_VERSION
|
3
3
|
|
4
4
|
# Specified gem version of Refinery to use when vendor/plugins/refinery/lib/refinery.rb is not present.
|
5
|
-
REFINERY_GEM_VERSION = '0.9.6.
|
5
|
+
REFINERY_GEM_VERSION = '0.9.6.21' unless defined? REFINERY_GEM_VERSION
|
6
6
|
|
7
7
|
# Boot Rails
|
8
8
|
require File.join(File.dirname(__FILE__), 'boot')
|
@@ -25,5 +25,10 @@ Refinery::Initializer.run do |config|
|
|
25
25
|
}
|
26
26
|
|
27
27
|
# Specify your application's gem requirements here. See the example below:
|
28
|
+
config.gem "refinerycms-news", :lib => "news", :version => "~> 0.9.7"
|
28
29
|
# config.gem "refinerycms-portfolio", :lib => "portfolio", :version => "~> 0.9.3.8"
|
29
30
|
end
|
31
|
+
|
32
|
+
# You can set things in the following file and we'll try hard not to destroy them in updates, promise.
|
33
|
+
# Note: These are settings that aren't dependent on environment type. For those, use the files in config/environments/
|
34
|
+
require Rails.root.join('config', 'settings.rb').to_s
|
@@ -1,5 +1,7 @@
|
|
1
1
|
# Settings specified here will take precedence over those in config/environment.rb
|
2
2
|
|
3
|
+
config.reload_plugins = true
|
4
|
+
|
3
5
|
# In the development environment your application's code is reloaded on
|
4
6
|
# every request. This slows down response time but is perfect for development
|
5
7
|
# since you don't have to restart the webserver when you make code changes.
|
@@ -16,13 +18,15 @@ config.action_controller.perform_caching = false
|
|
16
18
|
# Don't care if the mailer can't send
|
17
19
|
config.action_mailer.raise_delivery_errors = false
|
18
20
|
|
19
|
-
config.log_level = :
|
21
|
+
config.log_level = :debug
|
20
22
|
|
21
23
|
# Uncomment the following lines if you're getting
|
22
24
|
# "A copy of XX has been removed from the module tree but is still active!"
|
23
25
|
# or you want to develop a plugin and don't want to restart every time a change is made:
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
26
|
+
=begin
|
27
|
+
config.after_initialize do
|
28
|
+
::ActiveSupport::Dependencies.load_once_paths = ::ActiveSupport::Dependencies.load_once_paths.select do |path|
|
29
|
+
(path =~ /app/).nil?
|
30
|
+
end
|
31
|
+
end
|
32
|
+
=end
|
data/config/settings.rb
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
class ChangeUsersColumnsForAuthlogic < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
# Change users table to use Authlogic-compatible schema
|
4
|
+
change_table "users" do |t|
|
5
|
+
t.change :login , :string , :null => false # optional , you can use email instead , or both
|
6
|
+
t.change :email , :string , :null => false # optional , you can use login instead , or both
|
7
|
+
t.change :crypted_password , :string , :null => false # optional , see below
|
8
|
+
t.rename :salt, :password_salt
|
9
|
+
t.change :password_salt , :string , :null => false # optional , but highly recommended
|
10
|
+
t.rename :remember_token, :persistence_token
|
11
|
+
t.change :persistence_token , :string , :null => false # required
|
12
|
+
t.remove :remember_token_expires_at # appears to be handled by perishable_token_valid_for setting in Authlogic
|
13
|
+
t.rename :reset_code, :perishable_token
|
14
|
+
t.change :perishable_token , :string , :null => false # optional , see Authlogic::Session::Perishability
|
15
|
+
t.remove :activation_code # perishable_token used for both activation_code and reset_code
|
16
|
+
|
17
|
+
# Magic columns, just like ActiveRecord's created_at and updated_at. These are automatically maintained by Authlogic if they are present.
|
18
|
+
#t.integer :login_count, :null => false, :default => 0 # optional, see Authlogic::Session::MagicColumns
|
19
|
+
#t.integer :failed_login_count, :null => false, :default => 0 # optional, see Authlogic::Session::MagicColumns
|
20
|
+
#t.datetime :last_request_at # optional, see Authlogic::Session::MagicColumns
|
21
|
+
#t.datetime :current_login_at # optional, see Authlogic::Session::MagicColumns
|
22
|
+
#t.datetime :last_login_at # optional, see Authlogic::Session::MagicColumns
|
23
|
+
#t.string :current_login_ip # optional, see Authlogic::Session::MagicColumns
|
24
|
+
#t.string :last_login_ip # optional, see Authlogic::Session::MagicColumns
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
def self.down
|
29
|
+
# Revert back to restful_authentication-compatible users table
|
30
|
+
create_table "users", :force => true do |t|
|
31
|
+
t.string "login"
|
32
|
+
t.string "email"
|
33
|
+
t.string "crypted_password", :limit => 40
|
34
|
+
t.string "salt", :limit => 40
|
35
|
+
t.string "remember_token" # this would be persistence_token in Authlogic
|
36
|
+
t.datetime "remember_token_expires_at" # appears to be handled by perishable_token_valid_for setting in Authlogic
|
37
|
+
t.string "activation_code", :limit => 40 # this would be perishable_token in Authlogic
|
38
|
+
t.datetime "activated_at" # appears to not be used
|
39
|
+
t.string "state", :default => "passive" # appears to not be used
|
40
|
+
t.datetime "deleted_at" # appears to not be used
|
41
|
+
t.timestamps
|
42
|
+
t.boolean "superuser", :default => false
|
43
|
+
t.string "reset_code"
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
class RemoveUnusedUsersColumns < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
change_table "users" do |t|
|
4
|
+
t.remove :activated_at
|
5
|
+
t.remove :deleted_at
|
6
|
+
end
|
7
|
+
end
|
8
|
+
|
9
|
+
def self.down
|
10
|
+
change_table "users" do |t|
|
11
|
+
t.datetime "activated_at"
|
12
|
+
t.datetime "deleted_at"
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
16
|
+
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class MakeUserPerishableTokenNullable < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
change_table "users" do |t|
|
4
|
+
t.change :perishable_token , :string , :null => true # optional
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.down
|
9
|
+
change_table "users" do |t|
|
10
|
+
t.change :perishable_token , :string , :null => false # optional
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
class MakeUserPersistenceTokenNullable < ActiveRecord::Migration
|
2
|
+
def self.up
|
3
|
+
change_table "users" do |t|
|
4
|
+
t.change :persistence_token , :string , :null => true # optional
|
5
|
+
end
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.down
|
9
|
+
change_table "users" do |t|
|
10
|
+
t.change :persistence_token , :string , :null => false # optional
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
data/db/schema.rb
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
#
|
10
10
|
# It's strongly recommended to check this file into your version control system.
|
11
11
|
|
12
|
-
ActiveRecord::Schema.define(:version =>
|
12
|
+
ActiveRecord::Schema.define(:version => 20100315203301) do
|
13
13
|
|
14
14
|
create_table "images", :force => true do |t|
|
15
15
|
t.integer "parent_id"
|
@@ -45,14 +45,6 @@ ActiveRecord::Schema.define(:version => 20100223211536) do
|
|
45
45
|
t.datetime "updated_at"
|
46
46
|
end
|
47
47
|
|
48
|
-
create_table "news_items", :force => true do |t|
|
49
|
-
t.string "title"
|
50
|
-
t.text "body"
|
51
|
-
t.datetime "created_at"
|
52
|
-
t.datetime "updated_at"
|
53
|
-
t.datetime "publish_date"
|
54
|
-
end
|
55
|
-
|
56
48
|
create_table "page_parts", :force => true do |t|
|
57
49
|
t.integer "page_id"
|
58
50
|
t.string "title"
|
@@ -129,20 +121,15 @@ ActiveRecord::Schema.define(:version => 20100223211536) do
|
|
129
121
|
add_index "user_plugins", ["user_id", "title"], :name => "index_unique_user_plugins", :unique => true
|
130
122
|
|
131
123
|
create_table "users", :force => true do |t|
|
132
|
-
t.string "login"
|
133
|
-
t.string "email"
|
134
|
-
t.string "crypted_password",
|
135
|
-
t.string "
|
136
|
-
t.string "
|
137
|
-
t.datetime "remember_token_expires_at"
|
138
|
-
t.string "activation_code", :limit => 40
|
139
|
-
t.datetime "activated_at"
|
140
|
-
t.string "state", :default => "passive"
|
141
|
-
t.datetime "deleted_at"
|
124
|
+
t.string "login", :null => false
|
125
|
+
t.string "email", :null => false
|
126
|
+
t.string "crypted_password", :null => false
|
127
|
+
t.string "password_salt", :null => false
|
128
|
+
t.string "persistence_token"
|
142
129
|
t.datetime "created_at"
|
143
130
|
t.datetime "updated_at"
|
144
|
-
t.boolean "superuser",
|
145
|
-
t.string "
|
131
|
+
t.boolean "superuser", :default => false
|
132
|
+
t.string "perishable_token"
|
146
133
|
end
|
147
134
|
|
148
135
|
add_index "users", ["id"], :name => "index_users_on_id"
|
data/db/seeds.rb
CHANGED
@@ -46,25 +46,11 @@ Page.create(:title => "About Us",
|
|
46
46
|
:body => "<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus fringilla nisi a elit. Duis ultricies orci ut arcu. Ut ac nibh. Duis blandit rhoncus magna. Pellentesque semper risus ut magna. Etiam pulvinar tellus eget diam. Morbi blandit. Donec pulvinar mauris at ligula. Sed pellentesque, ipsum id congue molestie, lectus risus egestas pede, ac viverra diam lacus ac urna. Aenean elit.</p>"
|
47
47
|
})
|
48
48
|
|
49
|
-
Page.create(:title => "News",
|
50
|
-
:link_url => "/news",
|
51
|
-
:menu_match => "^/news.*$",
|
52
|
-
:deletable => false,
|
53
|
-
:position => 3).parts.create(
|
54
|
-
{
|
55
|
-
:title => "body",
|
56
|
-
:body => "<p>Want to know the latest? Here's what has been happening.</p>"
|
57
|
-
}).page.parts.create(
|
58
|
-
{
|
59
|
-
:title => "Side Body",
|
60
|
-
:body => "<p>Here we post up the latest about us, along with events and updates you don't want to miss!</p>"
|
61
|
-
})
|
62
|
-
|
63
49
|
Page.create(:title => "Contact Us",
|
64
50
|
:link_url => "/inquiries/new",
|
65
51
|
:menu_match => "^/inquiries.*$",
|
66
52
|
:deletable => false,
|
67
|
-
:position =>
|
53
|
+
:position => 3).parts.create(
|
68
54
|
{
|
69
55
|
:title => "Body",
|
70
56
|
:body => "<p>Get in touch with us. Just use the form below and we'll get back to you as soon as we can.</p>"
|
@@ -79,7 +65,7 @@ Page.create(:title => "Thank You",
|
|
79
65
|
:show_in_menu => false,
|
80
66
|
:deletable => false,
|
81
67
|
:position => 0,
|
82
|
-
:parent_id =>
|
68
|
+
:parent_id => 3).parts.create(
|
83
69
|
{
|
84
70
|
:title => "Body",
|
85
71
|
:body => "<p>We've received your inquiry and will get back to you with a response shortly.</p><p><a href='/'>Return to the home page</a></p>"
|
@@ -89,7 +75,7 @@ Page.create(:title => "Page not found",
|
|
89
75
|
:menu_match => "^/404$",
|
90
76
|
:show_in_menu => false,
|
91
77
|
:deletable => false,
|
92
|
-
:position =>
|
78
|
+
:position => 4).parts.create(
|
93
79
|
{
|
94
80
|
:title => "Body",
|
95
81
|
:body => "<h2>Sorry, there was a problem...</h2><p>The page you requested was not found.</p><p><a href='/'>Return to the home page</a></p>"
|
@@ -98,7 +84,7 @@ Page.create(:title => "Page not found",
|
|
98
84
|
Page.create(:title => "Privacy Policy",
|
99
85
|
:deletable => true,
|
100
86
|
:show_in_menu => false,
|
101
|
-
:position =>
|
87
|
+
:position => 5).parts.create(
|
102
88
|
{
|
103
89
|
:title => "Body",
|
104
90
|
:body => "<p>We respect your privacy. We do not market, rent or sell our email list to any outside parties.</p><p>We need your e-mail address so that we can ensure that the people using our forms are bona fide. It also allows us to send you e-mail newsletters and other communications, if you opt-in. Your postal address is required in order to send you information and pricing, if you request it.</p><p>Please call us at 123 456 7890 if you have any questions or concerns.</p>"
|
@@ -111,7 +97,7 @@ Page.create(:title => "Privacy Policy",
|
|
111
97
|
Page.create(:title => "Down for maintenance",
|
112
98
|
:menu_match => "^/maintenance$",
|
113
99
|
:show_in_menu => false,
|
114
|
-
:position =>
|
100
|
+
:position => 6).parts.create(
|
115
101
|
{
|
116
102
|
:title => "Body",
|
117
103
|
:body => "<p>Our site is currently down for maintenance. Please try back later.</p>"
|
@@ -10,7 +10,7 @@ if $refinery_gem_plugin_lib_paths.present?
|
|
10
10
|
extra_rake_tasks << $refinery_gem_plugin_lib_paths.collect {|path| Dir[File.join(%W(#{path} tasks ** *.rake))].sort}
|
11
11
|
end
|
12
12
|
|
13
|
-
extra_rake_tasks << Dir[Rails.root.join("lib", "refinery", "tasks", "*.rake")]
|
13
|
+
extra_rake_tasks << Dir[Rails.root.join("lib", "refinery", "tasks", "*.rake").to_s]
|
14
14
|
|
15
15
|
# Load in any extra tasks that we've found.
|
16
16
|
extra_rake_tasks.flatten.compact.uniq.each {|rake| load rake }
|
data/public/javascripts/admin.js
CHANGED
@@ -1,5 +1,9 @@
|
|
1
|
-
|
1
|
+
if (!wymeditorClassesItems) {
|
2
|
+
var wymeditorClassesItems = [];
|
3
|
+
}
|
4
|
+
|
5
|
+
wymeditorClassesItems = $.extend([
|
2
6
|
{name: 'text-align', rules:['left', 'center', 'right', 'justify'], join: '-'}
|
3
7
|
, {name: 'image-align', rules:['left', 'right'], join: '-'}
|
4
8
|
, {name: 'font-size', rules:['small', 'normal', 'large'], join: '-'}
|
5
|
-
];
|
9
|
+
], wymeditorClassesItems);
|
@@ -0,0 +1,374 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery UI 1.8
|
3
|
+
*
|
4
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
5
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
6
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
7
|
+
*
|
8
|
+
* http://docs.jquery.com/UI
|
9
|
+
*/
|
10
|
+
* jQuery UI 1.8
|
11
|
+
*
|
12
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
13
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
14
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
15
|
+
*
|
16
|
+
* http://docs.jquery.com/UI
|
17
|
+
*/
|
18
|
+
jQuery.ui||(function(a){a.ui={version:"1.8",plugin:{add:function(c,d,f){var e=a.ui[c].prototype;for(var b in f){e.plugins[b]=e.plugins[b]||[];e.plugins[b].push([d,f[b]])}},call:function(b,d,c){var f=b.plugins[d];if(!f||!b.element[0].parentNode){return}for(var e=0;e<f.length;e++){if(b.options[f[e][0]]){f[e][1].apply(b.element,c)}}}},contains:function(d,c){return document.compareDocumentPosition?d.compareDocumentPosition(c)&16:d!==c&&d.contains(c)},hasScroll:function(e,c){if(a(e).css("overflow")=="hidden"){return false}var b=(c&&c=="left")?"scrollLeft":"scrollTop",d=false;if(e[b]>0){return true}e[b]=1;d=(e[b]>0);e[b]=0;return d},isOverAxis:function(c,b,d){return(c>b)&&(c<(b+d))},isOver:function(g,c,f,e,b,d){return a.ui.isOverAxis(g,f,b)&&a.ui.isOverAxis(c,e,d)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};a.fn.extend({_focus:a.fn.focus,focus:function(b,c){return typeof b==="number"?this.each(function(){var d=this;setTimeout(function(){a(d).focus();(c&&c.call(d))},b)}):this._focus.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var b;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){b=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{b=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!b.length?a(document):b},zIndex:function(e){if(e!==undefined){return this.css("zIndex",e)}if(this.length){var c=a(this[0]),b,d;while(c.length&&c[0]!==document){b=c.css("position");if(b=="absolute"||b=="relative"||b=="fixed"){d=parseInt(c.css("zIndex"));if(!isNaN(d)&&d!=0){return d}}c=c.parent()}}return 0}});a.extend(a.expr[":"],{data:function(d,c,b){return !!a.data(d,b[3])},focusable:function(c){var d=c.nodeName.toLowerCase(),b=a.attr(c,"tabindex");return(/input|select|textarea|button|object/.test(d)?!c.disabled:"a"==d||"area"==d?c.href||!isNaN(b):!isNaN(b))&&!a(c)["area"==d?"parents":"closest"](":hidden").length},tabbable:function(c){var b=a.attr(c,"tabindex");return(isNaN(b)||b>=0)&&a(c).is(":focusable")}})})(jQuery);;/*!
|
19
|
+
* jQuery UI Widget 1.8
|
20
|
+
*
|
21
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
22
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
23
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
24
|
+
*
|
25
|
+
* http://docs.jquery.com/UI/Widget
|
26
|
+
*/
|
27
|
+
* jQuery UI Widget 1.8
|
28
|
+
*
|
29
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
30
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
31
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
32
|
+
*
|
33
|
+
* http://docs.jquery.com/UI/Widget
|
34
|
+
*/
|
35
|
+
(function(b){var a=b.fn.remove;b.fn.remove=function(c,d){return this.each(function(){if(!d){if(!c||b.filter(c,[this]).length){b("*",this).add(this).each(function(){b(this).triggerHandler("remove")})}}return a.call(b(this),c,d)})};b.widget=function(d,f,c){var e=d.split(".")[0],h;d=d.split(".")[1];h=e+"-"+d;if(!c){c=f;f=b.Widget}b.expr[":"][h]=function(i){return !!b.data(i,d)};b[e]=b[e]||{};b[e][d]=function(i,j){if(arguments.length){this._createWidget(i,j)}};var g=new f();g.options=b.extend({},g.options);b[e][d].prototype=b.extend(true,g,{namespace:e,widgetName:d,widgetEventPrefix:b[e][d].prototype.widgetEventPrefix||d,widgetBaseClass:h},c);b.widget.bridge(d,b[e][d])};b.widget.bridge=function(d,c){b.fn[d]=function(g){var e=typeof g==="string",f=Array.prototype.slice.call(arguments,1),h=this;g=!e&&f.length?b.extend.apply(null,[true,g].concat(f)):g;if(e&&g.substring(0,1)==="_"){return h}if(e){this.each(function(){var i=b.data(this,d),j=i&&b.isFunction(i[g])?i[g].apply(i,f):i;if(j!==i&&j!==undefined){h=j;return false}})}else{this.each(function(){var i=b.data(this,d);if(i){if(g){i.option(g)}i._init()}else{b.data(this,d,new c(g,this))}})}return h}};b.Widget=function(c,d){if(arguments.length){this._createWidget(c,d)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(d,e){this.element=b(e).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(e)[this.widgetName],d);var c=this;this.element.bind("remove."+this.widgetName,function(){c.destroy()});this._create();this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled")},widget:function(){return this.element},option:function(e,f){var d=e,c=this;if(arguments.length===0){return b.extend({},c.options)}if(typeof e==="string"){if(f===undefined){return this.options[e]}d={};d[e]=f}b.each(d,function(g,h){c._setOption(g,h)});return c},_setOption:function(c,d){this.options[c]=d;if(c==="disabled"){this.widget()[d?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",d)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(d,e,f){var h=this.options[d];e=b.Event(e);e.type=(d===this.widgetEventPrefix?d:this.widgetEventPrefix+d).toLowerCase();f=f||{};if(e.originalEvent){for(var c=b.event.props.length,g;c;){g=b.event.props[--c];e[g]=e.originalEvent[g]}}this.element.trigger(e,f);return !(b.isFunction(h)&&h.call(this.element[0],e,f)===false||e.isDefaultPrevented())}}})(jQuery);;/*!
|
36
|
+
* jQuery UI Mouse 1.8
|
37
|
+
*
|
38
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
39
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
40
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
41
|
+
*
|
42
|
+
* http://docs.jquery.com/UI/Mouse
|
43
|
+
*
|
44
|
+
* Depends:
|
45
|
+
* jquery.ui.widget.js
|
46
|
+
*/
|
47
|
+
* jQuery UI Mouse 1.8
|
48
|
+
*
|
49
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
50
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
51
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
52
|
+
*
|
53
|
+
* http://docs.jquery.com/UI/Mouse
|
54
|
+
*
|
55
|
+
* Depends:
|
56
|
+
* jquery.ui.widget.js
|
57
|
+
*/
|
58
|
+
(function(a){a.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var b=this;this.element.bind("mousedown."+this.widgetName,function(c){return b._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(b._preventClickEvent){b._preventClickEvent=false;c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(d){d.originalEvent=d.originalEvent||{};if(d.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(d));this._mouseDownEvent=d;var c=this,e=(d.which==1),b=(typeof this.options.cancel=="string"?a(d.target).parents().add(d.target).filter(this.options.cancel).length:false);if(!e||b||!this._mouseCapture(d)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(d)!==false);if(!this._mouseStarted){d.preventDefault();return true}}this._mouseMoveDelegate=function(f){return c._mouseMove(f)};this._mouseUpDelegate=function(f){return c._mouseUp(f)};a(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(a.browser.safari||d.preventDefault());d.originalEvent.mouseHandled=true;return true},_mouseMove:function(b){if(a.browser.msie&&!b.button){return this._mouseUp(b)}if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,b)!==false);(this._mouseStarted?this._mouseDrag(b):this._mouseUp(b))}return !this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(b.target==this._mouseDownEvent.target);this._mouseStop(b)}return false},_mouseDistanceMet:function(b){return(Math.max(Math.abs(this._mouseDownEvent.pageX-b.pageX),Math.abs(this._mouseDownEvent.pageY-b.pageY))>=this.options.distance)},_mouseDelayMet:function(b){return this.mouseDelayMet},_mouseStart:function(b){},_mouseDrag:function(b){},_mouseStop:function(b){},_mouseCapture:function(b){return true}})})(jQuery);;/*
|
59
|
+
* jQuery UI Position 1.8
|
60
|
+
*
|
61
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
62
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
63
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
64
|
+
*
|
65
|
+
* http://docs.jquery.com/UI/Position
|
66
|
+
*/
|
67
|
+
* jQuery UI Draggable 1.8
|
68
|
+
*
|
69
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
70
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
71
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
72
|
+
*
|
73
|
+
* http://docs.jquery.com/UI/Draggables
|
74
|
+
*
|
75
|
+
* Depends:
|
76
|
+
* jquery.ui.core.js
|
77
|
+
* jquery.ui.mouse.js
|
78
|
+
* jquery.ui.widget.js
|
79
|
+
*/
|
80
|
+
* jQuery UI Droppable 1.8
|
81
|
+
*
|
82
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
83
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
84
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
85
|
+
*
|
86
|
+
* http://docs.jquery.com/UI/Droppables
|
87
|
+
*
|
88
|
+
* Depends:
|
89
|
+
* jquery.ui.core.js
|
90
|
+
* jquery.ui.widget.js
|
91
|
+
* jquery.ui.mouse.js
|
92
|
+
* jquery.ui.draggable.js
|
93
|
+
*/
|
94
|
+
* jQuery UI Resizable 1.8
|
95
|
+
*
|
96
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
97
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
98
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
99
|
+
*
|
100
|
+
* http://docs.jquery.com/UI/Resizables
|
101
|
+
*
|
102
|
+
* Depends:
|
103
|
+
* jquery.ui.core.js
|
104
|
+
* jquery.ui.mouse.js
|
105
|
+
* jquery.ui.widget.js
|
106
|
+
*/
|
107
|
+
* jQuery UI Selectable 1.8
|
108
|
+
*
|
109
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
110
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
111
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
112
|
+
*
|
113
|
+
* http://docs.jquery.com/UI/Selectables
|
114
|
+
*
|
115
|
+
* Depends:
|
116
|
+
* jquery.ui.core.js
|
117
|
+
* jquery.ui.mouse.js
|
118
|
+
* jquery.ui.widget.js
|
119
|
+
*/
|
120
|
+
* jQuery UI Sortable 1.8
|
121
|
+
*
|
122
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
123
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
124
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
125
|
+
*
|
126
|
+
* http://docs.jquery.com/UI/Sortables
|
127
|
+
*
|
128
|
+
* Depends:
|
129
|
+
* jquery.ui.core.js
|
130
|
+
* jquery.ui.mouse.js
|
131
|
+
* jquery.ui.widget.js
|
132
|
+
*/
|
133
|
+
* jQuery UI Accordion 1.8
|
134
|
+
*
|
135
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
136
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
137
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
138
|
+
*
|
139
|
+
* http://docs.jquery.com/UI/Accordion
|
140
|
+
*
|
141
|
+
* Depends:
|
142
|
+
* jquery.ui.core.js
|
143
|
+
* jquery.ui.widget.js
|
144
|
+
*/
|
145
|
+
* jQuery UI Autocomplete 1.8
|
146
|
+
*
|
147
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
148
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
149
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
150
|
+
*
|
151
|
+
* http://docs.jquery.com/UI/Autocomplete
|
152
|
+
*
|
153
|
+
* Depends:
|
154
|
+
* jquery.ui.core.js
|
155
|
+
* jquery.ui.widget.js
|
156
|
+
* jquery.ui.position.js
|
157
|
+
*/
|
158
|
+
* jQuery UI Button 1.8
|
159
|
+
*
|
160
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
161
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
162
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
163
|
+
*
|
164
|
+
* http://docs.jquery.com/UI/Button
|
165
|
+
*
|
166
|
+
* Depends:
|
167
|
+
* jquery.ui.core.js
|
168
|
+
* jquery.ui.widget.js
|
169
|
+
*/
|
170
|
+
* jQuery UI Dialog 1.8
|
171
|
+
*
|
172
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
173
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
174
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
175
|
+
*
|
176
|
+
* http://docs.jquery.com/UI/Dialog
|
177
|
+
*
|
178
|
+
* Depends:
|
179
|
+
* jquery.ui.core.js
|
180
|
+
* jquery.ui.widget.js
|
181
|
+
* jquery.ui.button.js
|
182
|
+
* jquery.ui.draggable.js
|
183
|
+
* jquery.ui.mouse.js
|
184
|
+
* jquery.ui.position.js
|
185
|
+
* jquery.ui.resizable.js
|
186
|
+
*/
|
187
|
+
* jQuery UI Slider 1.8
|
188
|
+
*
|
189
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
190
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
191
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
192
|
+
*
|
193
|
+
* http://docs.jquery.com/UI/Slider
|
194
|
+
*
|
195
|
+
* Depends:
|
196
|
+
* jquery.ui.core.js
|
197
|
+
* jquery.ui.mouse.js
|
198
|
+
* jquery.ui.widget.js
|
199
|
+
*/
|
200
|
+
* jQuery UI Tabs 1.8
|
201
|
+
*
|
202
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
203
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
204
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
205
|
+
*
|
206
|
+
* http://docs.jquery.com/UI/Tabs
|
207
|
+
*
|
208
|
+
* Depends:
|
209
|
+
* jquery.ui.core.js
|
210
|
+
* jquery.ui.widget.js
|
211
|
+
*/
|
212
|
+
* jQuery UI Datepicker 1.8
|
213
|
+
*
|
214
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
215
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
216
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
217
|
+
*
|
218
|
+
* http://docs.jquery.com/UI/Datepicker
|
219
|
+
*
|
220
|
+
* Depends:
|
221
|
+
* jquery.ui.core.js
|
222
|
+
*/
|
223
|
+
* jQuery UI Progressbar 1.8
|
224
|
+
*
|
225
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
226
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
227
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
228
|
+
*
|
229
|
+
* http://docs.jquery.com/UI/Progressbar
|
230
|
+
*
|
231
|
+
* Depends:
|
232
|
+
* jquery.ui.core.js
|
233
|
+
* jquery.ui.widget.js
|
234
|
+
*/
|
235
|
+
* jQuery UI Effects 1.8
|
236
|
+
*
|
237
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
238
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
239
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
240
|
+
*
|
241
|
+
* http://docs.jquery.com/UI/Effects/
|
242
|
+
*/
|
243
|
+
* jQuery UI Effects Blind 1.8
|
244
|
+
*
|
245
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
246
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
247
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
248
|
+
*
|
249
|
+
* http://docs.jquery.com/UI/Effects/Blind
|
250
|
+
*
|
251
|
+
* Depends:
|
252
|
+
* jquery.effects.core.js
|
253
|
+
*/
|
254
|
+
* jQuery UI Effects Bounce 1.8
|
255
|
+
*
|
256
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
257
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
258
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
259
|
+
*
|
260
|
+
* http://docs.jquery.com/UI/Effects/Bounce
|
261
|
+
*
|
262
|
+
* Depends:
|
263
|
+
* jquery.effects.core.js
|
264
|
+
*/
|
265
|
+
* jQuery UI Effects Clip 1.8
|
266
|
+
*
|
267
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
268
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
269
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
270
|
+
*
|
271
|
+
* http://docs.jquery.com/UI/Effects/Clip
|
272
|
+
*
|
273
|
+
* Depends:
|
274
|
+
* jquery.effects.core.js
|
275
|
+
*/
|
276
|
+
* jQuery UI Effects Drop 1.8
|
277
|
+
*
|
278
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
279
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
280
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
281
|
+
*
|
282
|
+
* http://docs.jquery.com/UI/Effects/Drop
|
283
|
+
*
|
284
|
+
* Depends:
|
285
|
+
* jquery.effects.core.js
|
286
|
+
*/
|
287
|
+
* jQuery UI Effects Explode 1.8
|
288
|
+
*
|
289
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
290
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
291
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
292
|
+
*
|
293
|
+
* http://docs.jquery.com/UI/Effects/Explode
|
294
|
+
*
|
295
|
+
* Depends:
|
296
|
+
* jquery.effects.core.js
|
297
|
+
*/
|
298
|
+
* jQuery UI Effects Fold 1.8
|
299
|
+
*
|
300
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
301
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
302
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
303
|
+
*
|
304
|
+
* http://docs.jquery.com/UI/Effects/Fold
|
305
|
+
*
|
306
|
+
* Depends:
|
307
|
+
* jquery.effects.core.js
|
308
|
+
*/
|
309
|
+
* jQuery UI Effects Highlight 1.8
|
310
|
+
*
|
311
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
312
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
313
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
314
|
+
*
|
315
|
+
* http://docs.jquery.com/UI/Effects/Highlight
|
316
|
+
*
|
317
|
+
* Depends:
|
318
|
+
* jquery.effects.core.js
|
319
|
+
*/
|
320
|
+
* jQuery UI Effects Pulsate 1.8
|
321
|
+
*
|
322
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
323
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
324
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
325
|
+
*
|
326
|
+
* http://docs.jquery.com/UI/Effects/Pulsate
|
327
|
+
*
|
328
|
+
* Depends:
|
329
|
+
* jquery.effects.core.js
|
330
|
+
*/
|
331
|
+
* jQuery UI Effects Scale 1.8
|
332
|
+
*
|
333
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
334
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
335
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
336
|
+
*
|
337
|
+
* http://docs.jquery.com/UI/Effects/Scale
|
338
|
+
*
|
339
|
+
* Depends:
|
340
|
+
* jquery.effects.core.js
|
341
|
+
*/
|
342
|
+
* jQuery UI Effects Shake 1.8
|
343
|
+
*
|
344
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
345
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
346
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
347
|
+
*
|
348
|
+
* http://docs.jquery.com/UI/Effects/Shake
|
349
|
+
*
|
350
|
+
* Depends:
|
351
|
+
* jquery.effects.core.js
|
352
|
+
*/
|
353
|
+
* jQuery UI Effects Slide 1.8
|
354
|
+
*
|
355
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
356
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
357
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
358
|
+
*
|
359
|
+
* http://docs.jquery.com/UI/Effects/Slide
|
360
|
+
*
|
361
|
+
* Depends:
|
362
|
+
* jquery.effects.core.js
|
363
|
+
*/
|
364
|
+
* jQuery UI Effects Transfer 1.8
|
365
|
+
*
|
366
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
367
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
368
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
369
|
+
*
|
370
|
+
* http://docs.jquery.com/UI/Effects/Transfer
|
371
|
+
*
|
372
|
+
* Depends:
|
373
|
+
* jquery.effects.core.js
|
374
|
+
*/
|