muck-raker 0.1.13 → 0.1.14
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +27 -8
- data/VERSION +1 -1
- data/app/controllers/recommender/entries_controller.rb +13 -12
- data/app/controllers/recommender/feeds_controller.rb +64 -0
- data/app/controllers/recommender/recommendations_controller.rb +1 -1
- data/app/helpers/muck_raker_feeds_helper.rb +3 -0
- data/app/helpers/muck_raker_helper.rb +27 -4
- data/app/models/entry.rb +5 -4
- data/app/models/feed.rb +1 -0
- data/app/models/tag_cloud.rb +3 -3
- data/app/views/entries/_result_status.html.erb +8 -1
- data/app/views/entries/_tag_cloud.html.erb +2 -2
- data/app/views/entries/browse_by_tags.html.erb +1 -1
- data/app/views/entries/details.html.erb +4 -4
- data/app/views/entries/search.html.erb +1 -1
- data/app/views/recommendations/index.xml.builder +5 -3
- data/config/muck_raker_routes.rb +1 -0
- data/db/migrate/20090716035935_change_tag_cloud_grain_sizes.rb +9 -0
- data/db/migrate/20090717173900_add_contributor_to_feeds.rb +9 -0
- data/db/migrate/20090717175825_normalize_entries_subjects.rb +17 -0
- data/lib/muck_raker/tasks.rb +21 -3
- data/locales/en.yml +11 -4
- data/muck-raker.gemspec +320 -10
- data/raker/lib/aggregatord.jar +0 -0
- data/raker/lib/recommenderd.jar +0 -0
- data/test/rails_root/.gitignore +8 -0
- data/test/rails_root/.rake_tasks +103 -0
- data/test/rails_root/Capfile +3 -0
- data/test/rails_root/Rakefile +15 -0
- data/test/rails_root/app/controllers/application_controller.rb +21 -0
- data/test/rails_root/app/controllers/default_controller.rb +7 -0
- data/test/rails_root/app/helpers/application_helper.rb +3 -0
- data/test/rails_root/app/models/.keep +0 -0
- data/test/rails_root/app/models/user.rb +6 -0
- data/test/rails_root/app/models/user_session.rb +2 -0
- data/test/rails_root/app/views/default/index.html.erb +0 -0
- data/test/rails_root/app/views/layouts/default.html.erb +26 -0
- data/test/rails_root/config/amazon_s3.yml +14 -0
- data/test/rails_root/config/boot.rb +109 -0
- data/test/rails_root/config/database.yml +14 -0
- data/test/rails_root/config/environment.rb +29 -0
- data/test/rails_root/config/environments/development.rb +19 -0
- data/test/rails_root/config/environments/production.rb +1 -0
- data/test/rails_root/config/environments/test.rb +34 -0
- data/test/rails_root/config/global_config.yml +77 -0
- data/test/rails_root/config/initializers/inflections.rb +10 -0
- data/test/rails_root/config/initializers/mime_types.rb +5 -0
- data/test/rails_root/config/initializers/requires.rb +13 -0
- data/test/rails_root/config/initializers/session_store.rb +8 -0
- data/test/rails_root/config/routes.rb +3 -0
- data/test/rails_root/config/solr/README.txt +0 -0
- data/test/rails_root/config/solr/cores/de/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/de/conf/schema.xml +81 -0
- data/test/rails_root/config/solr/cores/de/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/de/conf/stopwords.txt +341 -0
- data/test/rails_root/config/solr/cores/de/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/cores/en/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/en/conf/schema.xml +83 -0
- data/test/rails_root/config/solr/cores/en/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/en/conf/stopwords.txt +341 -0
- data/test/rails_root/config/solr/cores/en/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/cores/es/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/es/conf/schema.xml +81 -0
- data/test/rails_root/config/solr/cores/es/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/es/conf/stopwords.txt +206 -0
- data/test/rails_root/config/solr/cores/es/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/cores/fr/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/fr/conf/schema.xml +82 -0
- data/test/rails_root/config/solr/cores/fr/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/fr/conf/stopwords.txt +57 -0
- data/test/rails_root/config/solr/cores/fr/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/cores/ja/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/ja/conf/schema.xml +69 -0
- data/test/rails_root/config/solr/cores/ja/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/ja/conf/stopwords.txt +341 -0
- data/test/rails_root/config/solr/cores/ja/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/cores/nl/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/nl/conf/schema.xml +78 -0
- data/test/rails_root/config/solr/cores/nl/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/nl/conf/stopwords.txt +45691 -0
- data/test/rails_root/config/solr/cores/nl/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/cores/ru/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/ru/conf/schema.xml +78 -0
- data/test/rails_root/config/solr/cores/ru/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/ru/conf/stopwords.txt +341 -0
- data/test/rails_root/config/solr/cores/ru/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/cores/zh/conf/protwords.txt +21 -0
- data/test/rails_root/config/solr/cores/zh/conf/schema.xml +72 -0
- data/test/rails_root/config/solr/cores/zh/conf/solrconfig.xml +304 -0
- data/test/rails_root/config/solr/cores/zh/conf/stopwords.txt +341 -0
- data/test/rails_root/config/solr/cores/zh/conf/synonyms.txt +31 -0
- data/test/rails_root/config/solr/solr.xml +50 -0
- data/test/rails_root/db/.keep +0 -0
- data/test/rails_root/db/migrate/20090320174818_create_muck_permissions_and_roles.rb +16 -0
- data/test/rails_root/db/migrate/20090602041838_create_users.rb +39 -0
- data/test/rails_root/db/migrate/20090704220055_create_slugs.rb +18 -0
- data/test/rails_root/db/migrate/20090704220120_acts_as_taggable_on_migration.rb +29 -0
- data/test/rails_root/db/migrate/20090717173900_add_contributor_to_feeds.rb +9 -0
- data/test/rails_root/db/schema.rb +166 -0
- data/test/rails_root/features/step_definitions/webrat_steps.rb +99 -0
- data/test/rails_root/features/support/env.rb +14 -0
- data/test/rails_root/migrate/20090602191243_create_muck_raker.rb +307 -0
- data/test/rails_root/migrate/20090619211125_create_tag_clouds.rb +19 -0
- data/test/rails_root/migrate/20090623181458_add_grain_size_to_entries.rb +16 -0
- data/test/rails_root/migrate/20090703175825_denormalize_entries_subjects.rb +16 -0
- data/test/rails_root/public/.htaccess +40 -0
- data/test/rails_root/public/404.html +30 -0
- data/test/rails_root/public/422.html +30 -0
- data/test/rails_root/public/500.html +30 -0
- data/test/rails_root/public/dispatch.rb +10 -0
- data/test/rails_root/public/favicon.ico +0 -0
- data/test/rails_root/public/images/arrow_left.gif +0 -0
- data/test/rails_root/public/images/arrow_right.gif +0 -0
- data/test/rails_root/public/images/blue/preview.gif +0 -0
- data/test/rails_root/public/images/icons/accept.png +0 -0
- data/test/rails_root/public/images/icons/add.png +0 -0
- data/test/rails_root/public/images/icons/delete.png +0 -0
- data/test/rails_root/public/images/icons/vote.png +0 -0
- data/test/rails_root/public/images/loading.gif +0 -0
- data/test/rails_root/public/images/profile_default.jpg +0 -0
- data/test/rails_root/public/images/rails.png +0 -0
- data/test/rails_root/public/images/red/preview.gif +0 -0
- data/test/rails_root/public/images/spinner.gif +0 -0
- data/test/rails_root/public/images/sprites.png +0 -0
- data/test/rails_root/public/javascripts/application.js +2 -0
- data/test/rails_root/public/javascripts/builder.js +136 -0
- data/test/rails_root/public/javascripts/controls.js +963 -0
- data/test/rails_root/public/javascripts/dragdrop.js +972 -0
- data/test/rails_root/public/javascripts/effects.js +1120 -0
- data/test/rails_root/public/javascripts/fancyzoom.min.js +1 -0
- data/test/rails_root/public/javascripts/jquery/jquery-ui.js +273 -0
- data/test/rails_root/public/javascripts/jquery/jquery.form.js +637 -0
- data/test/rails_root/public/javascripts/jquery/jquery.jgrowl.js +2 -0
- data/test/rails_root/public/javascripts/jquery/jquery.js +19 -0
- data/test/rails_root/public/javascripts/jquery/jquery.tips.js +69 -0
- data/test/rails_root/public/javascripts/muck.js +76 -0
- data/test/rails_root/public/javascripts/muck_activities.js +108 -0
- data/test/rails_root/public/javascripts/prototype.js +4225 -0
- data/test/rails_root/public/javascripts/scriptaculous.js +58 -0
- data/test/rails_root/public/javascripts/slider.js +277 -0
- data/test/rails_root/public/javascripts/sound.js +60 -0
- data/test/rails_root/public/robots.txt +1 -0
- data/test/rails_root/public/stylesheets/.keep +0 -0
- data/test/rails_root/public/stylesheets/admin.css +12 -0
- data/test/rails_root/public/stylesheets/blueprint/ie.css +26 -0
- data/test/rails_root/public/stylesheets/blueprint/liquid_screen.css +203 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/key.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/readme.txt +32 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/buttons/screen.css +97 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/readme.txt +14 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/fancy-type/screen.css +71 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/readme.txt +18 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/link-icons/screen.css +40 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/liquid.css +134 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/liquid/src/liquid.css +197 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/readme.txt +10 -0
- data/test/rails_root/public/stylesheets/blueprint/plugins/rtl/screen.css +109 -0
- data/test/rails_root/public/stylesheets/blueprint/print.css +30 -0
- data/test/rails_root/public/stylesheets/blueprint/screen.css +251 -0
- data/test/rails_root/public/stylesheets/blueprint/sprite.css +1 -0
- data/test/rails_root/public/stylesheets/blueprint/src/forms.css +49 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.css +213 -0
- data/test/rails_root/public/stylesheets/blueprint/src/grid.png +0 -0
- data/test/rails_root/public/stylesheets/blueprint/src/ie.css +59 -0
- data/test/rails_root/public/stylesheets/blueprint/src/print.css +85 -0
- data/test/rails_root/public/stylesheets/blueprint/src/reset.css +38 -0
- data/test/rails_root/public/stylesheets/blueprint/src/typography.css +105 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-small_0_aaaaaa_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_diagonals-thick_15_444444_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_100_f0f0f0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_50_99c2ff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_55_fbf5d0_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_80_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-hard_100_f9f9f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-bg_highlight-soft_100_e7eef3_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2694e8_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_72a7cf_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/cupertino/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_217bc0_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_469bdd_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_6da8d5_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/images/ui-icons_f9bd01_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/redmond/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/smoothness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
- data/test/rails_root/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.1.custom.css +404 -0
- data/test/rails_root/public/stylesheets/reset.css +0 -0
- data/test/rails_root/public/stylesheets/styles.css +79 -0
- data/test/rails_root/public/stylesheets/themes/blue/styles.css +1 -0
- data/test/rails_root/public/stylesheets/themes/red/styles.css +1 -0
- data/test/rails_root/script/about +3 -0
- data/test/rails_root/script/breakpointer +3 -0
- data/test/rails_root/script/console +3 -0
- data/test/rails_root/script/create_project.rb +52 -0
- data/test/rails_root/script/cucumber +7 -0
- data/test/rails_root/script/dbconsole +3 -0
- data/test/rails_root/script/destroy +3 -0
- data/test/rails_root/script/generate +3 -0
- data/test/rails_root/script/performance/benchmarker +3 -0
- data/test/rails_root/script/performance/profiler +3 -0
- data/test/rails_root/script/performance/request +3 -0
- data/test/rails_root/script/plugin +3 -0
- data/test/rails_root/script/process/inspector +3 -0
- data/test/rails_root/script/process/reaper +3 -0
- data/test/rails_root/script/process/spawner +3 -0
- data/test/rails_root/script/runner +3 -0
- data/test/rails_root/script/server +3 -0
- data/test/rails_root/test/factories.rb +96 -0
- data/test/rails_root/test/functional/.keep +0 -0
- data/test/rails_root/test/functional/feeds_controller_test.rb +14 -0
- data/test/rails_root/test/integration/.keep +0 -0
- data/test/rails_root/test/mocks/development/.keep +0 -0
- data/test/rails_root/test/mocks/test/.keep +0 -0
- data/test/rails_root/test/shoulda_macros/controller.rb +45 -0
- data/test/rails_root/test/shoulda_macros/forms.rb +32 -0
- data/test/rails_root/test/shoulda_macros/models.rb +50 -0
- data/test/rails_root/test/shoulda_macros/pagination.rb +53 -0
- data/test/rails_root/test/shoulda_macros/plugins.rb +34 -0
- data/test/rails_root/test/test_helper.rb +46 -0
- data/test/rails_root/test/unit/.keep +0 -0
- data/test/rails_root/test/unit/entry_test.rb +13 -0
- data/test/rails_root/test/unit/feed_test.rb +16 -0
- data/test/rails_root/test/unit/tag_cloud_test.rb +35 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/README +43 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb +62 -0
- data/test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb +132 -0
- data/test/rails_root/vendor/plugins/validation_reflection/CHANGELOG +24 -0
- data/test/rails_root/vendor/plugins/validation_reflection/LICENSE +20 -0
- data/test/rails_root/vendor/plugins/validation_reflection/README +64 -0
- data/test/rails_root/vendor/plugins/validation_reflection/Rakefile +22 -0
- data/test/rails_root/vendor/plugins/validation_reflection/about.yml +7 -0
- data/test/rails_root/vendor/plugins/validation_reflection/init.rb +8 -0
- data/test/rails_root/vendor/plugins/validation_reflection/lib/boiler_plate/validation_reflection.rb +129 -0
- data/test/rails_root/vendor/plugins/validation_reflection/test/test_helper.rb +36 -0
- data/test/rails_root/vendor/plugins/validation_reflection/test/validation_reflection_test.rb +126 -0
- metadata +315 -7
- data/app/models/user.rb +0 -36
- data/test/recommender_test.rb +0 -8
- data/test/test_helper.rb +0 -20
@@ -0,0 +1 @@
|
|
1
|
+
jQuery.fn.fancyZoom=function(O){var O=O||{};var L=O&&O.directory?O.directory:"images";var D=false;if($("#zoom").length==0){var E=$.browser.msie?"gif":"png";var J='<div id="zoom" style="display:none;"> <table id="zoom_table" style="border-collapse:collapse; width:100%; height:100%;"> <tbody> <tr> <td class="tl" style="background:url('+L+"/tl."+E+') 0 0 no-repeat; width:20px; height:20px; overflow:hidden;" /> <td class="tm" style="background:url('+L+"/tm."+E+') 0 0 repeat-x; height:20px; overflow:hidden;" /> <td class="tr" style="background:url('+L+"/tr."+E+') 100% 0 no-repeat; width:20px; height:20px; overflow:hidden;" /> </tr> <tr> <td class="ml" style="background:url('+L+"/ml."+E+') 0 0 repeat-y; width:20px; overflow:hidden;" /> <td class="mm" style="background:#fff; vertical-align:top; padding:10px;"> <div id="zoom_content"> </div> </td> <td class="mr" style="background:url('+L+"/mr."+E+') 100% 0 repeat-y; width:20px; overflow:hidden;" /> </tr> <tr> <td class="bl" style="background:url('+L+"/bl."+E+') 0 100% no-repeat; width:20px; height:20px; overflow:hidden;" /> <td class="bm" style="background:url('+L+"/bm."+E+') 0 100% repeat-x; height:20px; overflow:hidden;" /> <td class="br" style="background:url('+L+"/br."+E+') 100% 100% no-repeat; width:20px; height:20px; overflow:hidden;" /> </tr> </tbody> </table> <a href="#" title="Close" id="zoom_close" style="position:absolute; top:0; left:0;"> <img src="'+L+"/closebox."+E+'" alt="Close" style="border:none; margin:0; padding:0;" /> </a> </div>';$("body").append(J);$("html").click(function(P){if($(P.target).parents("#zoom:visible").length==0){K()}});$(document).keyup(function(P){if(P.keyCode==27&&$("#zoom:visible").length>0){K()}});$("#zoom_close").click(K)}var N=$("#zoom");var I=$("#zoom_table");var H=$("#zoom_close");var G=$("#zoom_content");var A=$("td.ml,td.mm,td.mr");this.each(function(P){$($(this).attr("href")).hide();$(this).click(M)});return this;function M(V){if(D){return false}D=true;var P=$($(this).attr("href"));var T=O.width;var U=O.height;var Q=window.innerWidth||(window.document.documentElement.clientWidth||window.document.body.clientWidth);var b=window.innerHeight||(window.document.documentElement.clientHeight||window.document.body.clientHeight);var Z=window.pageXOffset||(window.document.documentElement.scrollLeft||window.document.body.scrollLeft);var Y=window.pageYOffset||(window.document.documentElement.scrollTop||window.document.body.scrollTop);var c={width:Q,height:b,x:Z,y:Y};var Q=(T||P.width())+60;var b=(U||P.height())+60;var W=c;var X=Math.max((W.height/2)-(b/2)+Y,0);var a=(W.width/2)-(Q/2);var R=V.pageY;var S=V.pageX;H.attr("curTop",R);H.attr("curLeft",S);H.attr("scaleImg",O.scaleImg?"true":"false");$("#zoom").hide().css({position:"absolute",top:R+"px",left:S+"px",width:"1px",height:"1px"});F();H.hide();if(O.closeOnClick){$("#zoom").click(K)}if(O.scaleImg){G.html(P.html());$("#zoom_content img").css("width","100%")}else{G.html("")}$("#zoom").animate({top:X+"px",left:a+"px",opacity:"show",width:Q,height:b},500,null,function(){if(O.scaleImg!=true){G.html(P.html())}C();H.show();D=false});return false}function K(){if(D){return false}D=true;$("#zoom").unbind("click");F();if(H.attr("scaleImg")!="true"){G.html("")}H.hide();$("#zoom").animate({top:H.attr("curTop")+"px",left:H.attr("curLeft")+"px",opacity:"hide",width:"1px",height:"1px"},500,null,function(){if(H.attr("scaleImg")=="true"){G.html("")}C();D=false});return false}function B(R){$("#zoom_table td").each(function(T){var S=$(this).css("background-image").replace(/\.(png|gif|none)\"\)$/,"."+R+'")');$(this).css("background-image",S)});var Q=H.children("img");var P=Q.attr("src").replace(/\.(png|gif|none)$/,"."+R);Q.attr("src",P)}function F(){if($.browser.msie&&parseFloat($.browser.version)>=7){B("gif")}}function C(){if($.browser.msie&&$.browser.version>=7){B("png")}}};
|
@@ -0,0 +1,273 @@
|
|
1
|
+
/*
|
2
|
+
* jQuery UI 1.7.1
|
3
|
+
*
|
4
|
+
* Copyright (c) 2009 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 Draggable 1.7.1
|
11
|
+
*
|
12
|
+
* Copyright (c) 2009 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/Draggables
|
17
|
+
*
|
18
|
+
* Depends:
|
19
|
+
* ui.core.js
|
20
|
+
*/
|
21
|
+
* jQuery UI Droppable 1.7.1
|
22
|
+
*
|
23
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
24
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
25
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
26
|
+
*
|
27
|
+
* http://docs.jquery.com/UI/Droppables
|
28
|
+
*
|
29
|
+
* Depends:
|
30
|
+
* ui.core.js
|
31
|
+
* ui.draggable.js
|
32
|
+
*/
|
33
|
+
* jQuery UI Resizable 1.7.1
|
34
|
+
*
|
35
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
36
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
37
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
38
|
+
*
|
39
|
+
* http://docs.jquery.com/UI/Resizables
|
40
|
+
*
|
41
|
+
* Depends:
|
42
|
+
* ui.core.js
|
43
|
+
*/
|
44
|
+
* jQuery UI Selectable 1.7.1
|
45
|
+
*
|
46
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
47
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
48
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
49
|
+
*
|
50
|
+
* http://docs.jquery.com/UI/Selectables
|
51
|
+
*
|
52
|
+
* Depends:
|
53
|
+
* ui.core.js
|
54
|
+
*/
|
55
|
+
* jQuery UI Sortable 1.7.1
|
56
|
+
*
|
57
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
58
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
59
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
60
|
+
*
|
61
|
+
* http://docs.jquery.com/UI/Sortables
|
62
|
+
*
|
63
|
+
* Depends:
|
64
|
+
* ui.core.js
|
65
|
+
*/
|
66
|
+
* jQuery UI Accordion 1.7.1
|
67
|
+
*
|
68
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
69
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
70
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
71
|
+
*
|
72
|
+
* http://docs.jquery.com/UI/Accordion
|
73
|
+
*
|
74
|
+
* Depends:
|
75
|
+
* ui.core.js
|
76
|
+
*/
|
77
|
+
* jQuery UI Dialog 1.7.1
|
78
|
+
*
|
79
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
80
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
81
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
82
|
+
*
|
83
|
+
* http://docs.jquery.com/UI/Dialog
|
84
|
+
*
|
85
|
+
* Depends:
|
86
|
+
* ui.core.js
|
87
|
+
* ui.draggable.js
|
88
|
+
* ui.resizable.js
|
89
|
+
*/
|
90
|
+
* jQuery UI Slider 1.7.1
|
91
|
+
*
|
92
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
93
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
94
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
95
|
+
*
|
96
|
+
* http://docs.jquery.com/UI/Slider
|
97
|
+
*
|
98
|
+
* Depends:
|
99
|
+
* ui.core.js
|
100
|
+
*/
|
101
|
+
* jQuery UI Tabs 1.7.1
|
102
|
+
*
|
103
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
104
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
105
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
106
|
+
*
|
107
|
+
* http://docs.jquery.com/UI/Tabs
|
108
|
+
*
|
109
|
+
* Depends:
|
110
|
+
* ui.core.js
|
111
|
+
*/
|
112
|
+
* jQuery UI Datepicker 1.7.1
|
113
|
+
*
|
114
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
115
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
116
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
117
|
+
*
|
118
|
+
* http://docs.jquery.com/UI/Datepicker
|
119
|
+
*
|
120
|
+
* Depends:
|
121
|
+
* ui.core.js
|
122
|
+
*/
|
123
|
+
* jQuery UI Progressbar 1.7.1
|
124
|
+
*
|
125
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
126
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
127
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
128
|
+
*
|
129
|
+
* http://docs.jquery.com/UI/Progressbar
|
130
|
+
*
|
131
|
+
* Depends:
|
132
|
+
* ui.core.js
|
133
|
+
*/
|
134
|
+
* jQuery UI Effects 1.7.1
|
135
|
+
*
|
136
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
137
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
138
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
139
|
+
*
|
140
|
+
* http://docs.jquery.com/UI/Effects/
|
141
|
+
*/
|
142
|
+
* jQuery UI Effects Blind 1.7.1
|
143
|
+
*
|
144
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
145
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
146
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
147
|
+
*
|
148
|
+
* http://docs.jquery.com/UI/Effects/Blind
|
149
|
+
*
|
150
|
+
* Depends:
|
151
|
+
* effects.core.js
|
152
|
+
*/
|
153
|
+
* jQuery UI Effects Bounce 1.7.1
|
154
|
+
*
|
155
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
156
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
157
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
158
|
+
*
|
159
|
+
* http://docs.jquery.com/UI/Effects/Bounce
|
160
|
+
*
|
161
|
+
* Depends:
|
162
|
+
* effects.core.js
|
163
|
+
*/
|
164
|
+
* jQuery UI Effects Clip 1.7.1
|
165
|
+
*
|
166
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
167
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
168
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
169
|
+
*
|
170
|
+
* http://docs.jquery.com/UI/Effects/Clip
|
171
|
+
*
|
172
|
+
* Depends:
|
173
|
+
* effects.core.js
|
174
|
+
*/
|
175
|
+
* jQuery UI Effects Drop 1.7.1
|
176
|
+
*
|
177
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
178
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
179
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
180
|
+
*
|
181
|
+
* http://docs.jquery.com/UI/Effects/Drop
|
182
|
+
*
|
183
|
+
* Depends:
|
184
|
+
* effects.core.js
|
185
|
+
*/
|
186
|
+
* jQuery UI Effects Explode 1.7.1
|
187
|
+
*
|
188
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
189
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
190
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
191
|
+
*
|
192
|
+
* http://docs.jquery.com/UI/Effects/Explode
|
193
|
+
*
|
194
|
+
* Depends:
|
195
|
+
* effects.core.js
|
196
|
+
*/
|
197
|
+
* jQuery UI Effects Fold 1.7.1
|
198
|
+
*
|
199
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
200
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
201
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
202
|
+
*
|
203
|
+
* http://docs.jquery.com/UI/Effects/Fold
|
204
|
+
*
|
205
|
+
* Depends:
|
206
|
+
* effects.core.js
|
207
|
+
*/
|
208
|
+
* jQuery UI Effects Highlight 1.7.1
|
209
|
+
*
|
210
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
211
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
212
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
213
|
+
*
|
214
|
+
* http://docs.jquery.com/UI/Effects/Highlight
|
215
|
+
*
|
216
|
+
* Depends:
|
217
|
+
* effects.core.js
|
218
|
+
*/
|
219
|
+
* jQuery UI Effects Pulsate 1.7.1
|
220
|
+
*
|
221
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
222
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
223
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
224
|
+
*
|
225
|
+
* http://docs.jquery.com/UI/Effects/Pulsate
|
226
|
+
*
|
227
|
+
* Depends:
|
228
|
+
* effects.core.js
|
229
|
+
*/
|
230
|
+
* jQuery UI Effects Scale 1.7.1
|
231
|
+
*
|
232
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
233
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
234
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
235
|
+
*
|
236
|
+
* http://docs.jquery.com/UI/Effects/Scale
|
237
|
+
*
|
238
|
+
* Depends:
|
239
|
+
* effects.core.js
|
240
|
+
*/
|
241
|
+
* jQuery UI Effects Shake 1.7.1
|
242
|
+
*
|
243
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
244
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
245
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
246
|
+
*
|
247
|
+
* http://docs.jquery.com/UI/Effects/Shake
|
248
|
+
*
|
249
|
+
* Depends:
|
250
|
+
* effects.core.js
|
251
|
+
*/
|
252
|
+
* jQuery UI Effects Slide 1.7.1
|
253
|
+
*
|
254
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
255
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
256
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
257
|
+
*
|
258
|
+
* http://docs.jquery.com/UI/Effects/Slide
|
259
|
+
*
|
260
|
+
* Depends:
|
261
|
+
* effects.core.js
|
262
|
+
*/
|
263
|
+
* jQuery UI Effects Transfer 1.7.1
|
264
|
+
*
|
265
|
+
* Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
|
266
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
267
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
268
|
+
*
|
269
|
+
* http://docs.jquery.com/UI/Effects/Transfer
|
270
|
+
*
|
271
|
+
* Depends:
|
272
|
+
* effects.core.js
|
273
|
+
*/
|