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,341 @@
|
|
1
|
+
# Licensed to the Apache Software Foundation (ASF) under one or more
|
2
|
+
# contributor license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright ownership.
|
4
|
+
# The ASF licenses this file to You under the Apache License, Version 2.0
|
5
|
+
# (the "License"); you may not use this file except in compliance with
|
6
|
+
# the License. You may obtain a copy of the License at
|
7
|
+
#
|
8
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9
|
+
#
|
10
|
+
# Unless required by applicable law or agreed to in writing, software
|
11
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13
|
+
# See the License for the specific language governing permissions and
|
14
|
+
# limitations under the License.
|
15
|
+
|
16
|
+
#-----------------------------------------------------------------------
|
17
|
+
# a couple of test stopwords to test that the words are really being
|
18
|
+
# configured from this file:
|
19
|
+
stopworda
|
20
|
+
stopwordb
|
21
|
+
|
22
|
+
#stopwords list i found on the internet
|
23
|
+
a
|
24
|
+
about
|
25
|
+
above
|
26
|
+
across
|
27
|
+
after
|
28
|
+
afterwards
|
29
|
+
again
|
30
|
+
against
|
31
|
+
all
|
32
|
+
almost
|
33
|
+
alone
|
34
|
+
along
|
35
|
+
already
|
36
|
+
also
|
37
|
+
although
|
38
|
+
always
|
39
|
+
am
|
40
|
+
among
|
41
|
+
amongst
|
42
|
+
amoungst
|
43
|
+
amount
|
44
|
+
an
|
45
|
+
and
|
46
|
+
another
|
47
|
+
any
|
48
|
+
anyhow
|
49
|
+
anyone
|
50
|
+
anything
|
51
|
+
anyway
|
52
|
+
anywhere
|
53
|
+
are
|
54
|
+
around
|
55
|
+
as
|
56
|
+
at
|
57
|
+
back
|
58
|
+
be
|
59
|
+
became
|
60
|
+
because
|
61
|
+
become
|
62
|
+
becomes
|
63
|
+
becoming
|
64
|
+
been
|
65
|
+
before
|
66
|
+
beforehand
|
67
|
+
behind
|
68
|
+
being
|
69
|
+
below
|
70
|
+
beside
|
71
|
+
besides
|
72
|
+
between
|
73
|
+
beyond
|
74
|
+
bill
|
75
|
+
both
|
76
|
+
bottom
|
77
|
+
but
|
78
|
+
by
|
79
|
+
call
|
80
|
+
can
|
81
|
+
cannot
|
82
|
+
cant
|
83
|
+
co
|
84
|
+
computer
|
85
|
+
con
|
86
|
+
could
|
87
|
+
couldnt
|
88
|
+
cry
|
89
|
+
de
|
90
|
+
describe
|
91
|
+
detail
|
92
|
+
do
|
93
|
+
done
|
94
|
+
down
|
95
|
+
due
|
96
|
+
during
|
97
|
+
each
|
98
|
+
eg
|
99
|
+
eight
|
100
|
+
either
|
101
|
+
eleven
|
102
|
+
else
|
103
|
+
elsewhere
|
104
|
+
empty
|
105
|
+
enough
|
106
|
+
etc
|
107
|
+
even
|
108
|
+
ever
|
109
|
+
every
|
110
|
+
everyone
|
111
|
+
everything
|
112
|
+
everywhere
|
113
|
+
except
|
114
|
+
few
|
115
|
+
fifteen
|
116
|
+
fify
|
117
|
+
fill
|
118
|
+
find
|
119
|
+
fire
|
120
|
+
first
|
121
|
+
five
|
122
|
+
for
|
123
|
+
former
|
124
|
+
formerly
|
125
|
+
forty
|
126
|
+
found
|
127
|
+
four
|
128
|
+
from
|
129
|
+
front
|
130
|
+
full
|
131
|
+
further
|
132
|
+
get
|
133
|
+
give
|
134
|
+
go
|
135
|
+
had
|
136
|
+
has
|
137
|
+
hasnt
|
138
|
+
have
|
139
|
+
he
|
140
|
+
hence
|
141
|
+
her
|
142
|
+
here
|
143
|
+
hereafter
|
144
|
+
hereby
|
145
|
+
herein
|
146
|
+
hereupon
|
147
|
+
hers
|
148
|
+
herself
|
149
|
+
him
|
150
|
+
himself
|
151
|
+
his
|
152
|
+
how
|
153
|
+
however
|
154
|
+
hundred
|
155
|
+
i
|
156
|
+
ie
|
157
|
+
if
|
158
|
+
in
|
159
|
+
inc
|
160
|
+
indeed
|
161
|
+
interest
|
162
|
+
into
|
163
|
+
is
|
164
|
+
it
|
165
|
+
its
|
166
|
+
itself
|
167
|
+
keep
|
168
|
+
last
|
169
|
+
latter
|
170
|
+
latterly
|
171
|
+
least
|
172
|
+
less
|
173
|
+
ltd
|
174
|
+
made
|
175
|
+
many
|
176
|
+
may
|
177
|
+
me
|
178
|
+
meanwhile
|
179
|
+
might
|
180
|
+
mill
|
181
|
+
mine
|
182
|
+
more
|
183
|
+
moreover
|
184
|
+
most
|
185
|
+
mostly
|
186
|
+
move
|
187
|
+
much
|
188
|
+
must
|
189
|
+
my
|
190
|
+
myself
|
191
|
+
name
|
192
|
+
namely
|
193
|
+
neither
|
194
|
+
never
|
195
|
+
nevertheless
|
196
|
+
next
|
197
|
+
nine
|
198
|
+
no
|
199
|
+
nobody
|
200
|
+
none
|
201
|
+
noone
|
202
|
+
nor
|
203
|
+
not
|
204
|
+
nothing
|
205
|
+
now
|
206
|
+
nowhere
|
207
|
+
of
|
208
|
+
off
|
209
|
+
often
|
210
|
+
on
|
211
|
+
once
|
212
|
+
one
|
213
|
+
only
|
214
|
+
onto
|
215
|
+
or
|
216
|
+
other
|
217
|
+
others
|
218
|
+
otherwise
|
219
|
+
our
|
220
|
+
ours
|
221
|
+
ourselves
|
222
|
+
out
|
223
|
+
over
|
224
|
+
own
|
225
|
+
part
|
226
|
+
per
|
227
|
+
perhaps
|
228
|
+
please
|
229
|
+
put
|
230
|
+
rather
|
231
|
+
re
|
232
|
+
same
|
233
|
+
see
|
234
|
+
seem
|
235
|
+
seemed
|
236
|
+
seeming
|
237
|
+
seems
|
238
|
+
serious
|
239
|
+
several
|
240
|
+
she
|
241
|
+
should
|
242
|
+
show
|
243
|
+
side
|
244
|
+
since
|
245
|
+
sincere
|
246
|
+
six
|
247
|
+
sixty
|
248
|
+
so
|
249
|
+
some
|
250
|
+
somehow
|
251
|
+
someone
|
252
|
+
something
|
253
|
+
sometime
|
254
|
+
sometimes
|
255
|
+
somewhere
|
256
|
+
still
|
257
|
+
such
|
258
|
+
system
|
259
|
+
take
|
260
|
+
ten
|
261
|
+
than
|
262
|
+
that
|
263
|
+
the
|
264
|
+
their
|
265
|
+
them
|
266
|
+
themselves
|
267
|
+
then
|
268
|
+
thence
|
269
|
+
there
|
270
|
+
thereafter
|
271
|
+
thereby
|
272
|
+
therefore
|
273
|
+
therein
|
274
|
+
thereupon
|
275
|
+
these
|
276
|
+
they
|
277
|
+
thick
|
278
|
+
thin
|
279
|
+
third
|
280
|
+
this
|
281
|
+
those
|
282
|
+
though
|
283
|
+
three
|
284
|
+
through
|
285
|
+
throughout
|
286
|
+
thru
|
287
|
+
thus
|
288
|
+
to
|
289
|
+
together
|
290
|
+
too
|
291
|
+
top
|
292
|
+
toward
|
293
|
+
towards
|
294
|
+
twelve
|
295
|
+
twenty
|
296
|
+
two
|
297
|
+
un
|
298
|
+
under
|
299
|
+
until
|
300
|
+
up
|
301
|
+
upon
|
302
|
+
us
|
303
|
+
very
|
304
|
+
via
|
305
|
+
was
|
306
|
+
we
|
307
|
+
well
|
308
|
+
were
|
309
|
+
what
|
310
|
+
whatever
|
311
|
+
when
|
312
|
+
whence
|
313
|
+
whenever
|
314
|
+
where
|
315
|
+
whereafter
|
316
|
+
whereas
|
317
|
+
whereby
|
318
|
+
wherein
|
319
|
+
whereupon
|
320
|
+
wherever
|
321
|
+
whether
|
322
|
+
which
|
323
|
+
while
|
324
|
+
whither
|
325
|
+
who
|
326
|
+
whoever
|
327
|
+
whole
|
328
|
+
whom
|
329
|
+
whose
|
330
|
+
why
|
331
|
+
will
|
332
|
+
with
|
333
|
+
within
|
334
|
+
without
|
335
|
+
would
|
336
|
+
yet
|
337
|
+
you
|
338
|
+
your
|
339
|
+
yours
|
340
|
+
yourself
|
341
|
+
yourselves
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# The ASF licenses this file to You under the Apache License, Version 2.0
|
2
|
+
# (the "License"); you may not use this file except in compliance with
|
3
|
+
# the License. You may obtain a copy of the License at
|
4
|
+
#
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
|
+
#
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
10
|
+
# See the License for the specific language governing permissions and
|
11
|
+
# limitations under the License.
|
12
|
+
|
13
|
+
#-----------------------------------------------------------------------
|
14
|
+
#some test synonym mappings unlikely to appear in real input text
|
15
|
+
aaa => aaaa
|
16
|
+
bbb => bbbb1 bbbb2
|
17
|
+
ccc => cccc1,cccc2
|
18
|
+
a\=>a => b\=>b
|
19
|
+
a\,a => b\,b
|
20
|
+
fooaaa,baraaa,bazaaa
|
21
|
+
|
22
|
+
# Some synonym groups specific to this example
|
23
|
+
GB,gib,gigabyte,gigabytes
|
24
|
+
MB,mib,megabyte,megabytes
|
25
|
+
Television, Televisions, TV, TVs
|
26
|
+
#notice we use "gib" instead of "GiB" so any WordDelimiterFilter coming
|
27
|
+
#after us won't split it into two words.
|
28
|
+
|
29
|
+
# Synonym mappings can be used for spelling correction too
|
30
|
+
pixima => pixma
|
31
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# The ASF licenses this file to You under the Apache License, Version 2.0
|
2
|
+
# (the "License"); you may not use this file except in compliance with
|
3
|
+
# the License. You may obtain a copy of the License at
|
4
|
+
#
|
5
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
6
|
+
#
|
7
|
+
# Unless required by applicable law or agreed to in writing, software
|
8
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
9
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
10
|
+
# See the License for the specific language governing permissions and
|
11
|
+
# limitations under the License.
|
12
|
+
|
13
|
+
#-----------------------------------------------------------------------
|
14
|
+
# Use a protected word file to protect against the stemmer reducing two
|
15
|
+
# unrelated words to the same base word.
|
16
|
+
|
17
|
+
# Some non-words that normally won't be encountered,
|
18
|
+
# just to test that they won't be stemmed.
|
19
|
+
dontstems
|
20
|
+
zwhacky
|
21
|
+
|
@@ -0,0 +1,72 @@
|
|
1
|
+
<?xml version="1.0" ?>
|
2
|
+
<!--
|
3
|
+
Licensed to the Apache Software Foundation (ASF) under one or more
|
4
|
+
contributor license agreements. See the NOTICE file distributed with
|
5
|
+
this work for additional information regarding copyright ownership.
|
6
|
+
The ASF licenses this file to You under the Apache License, Version 2.0
|
7
|
+
(the "License"); you may not use this file except in compliance with
|
8
|
+
the License. You may obtain a copy of the License at
|
9
|
+
|
10
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
|
12
|
+
Unless required by applicable law or agreed to in writing, software
|
13
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
See the License for the specific language governing permissions and
|
16
|
+
limitations under the License.
|
17
|
+
-->
|
18
|
+
|
19
|
+
<schema name="zh" version="1.1">
|
20
|
+
<types>
|
21
|
+
<fieldtype name="string" class="solr.StrField" sortMissingLast="true" omitNorms="true"/>
|
22
|
+
<fieldType name="integer" class="solr.IntField" omitNorms="false"/>
|
23
|
+
<fieldType name="text" class="solr.TextField" positionIncrementGap="100">
|
24
|
+
<analyzer type="index">
|
25
|
+
<tokenizer class="solr.ChineseTokenizerFactory"/>
|
26
|
+
<filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0"/>
|
27
|
+
<filter class="solr.ChineseFilterFactory" protected="protwords.txt"/>
|
28
|
+
</analyzer>
|
29
|
+
<analyzer type="query">
|
30
|
+
<tokenizer class="solr.ChineseTokenizerFactory"/>
|
31
|
+
<filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0"/>
|
32
|
+
<filter class="solr.ChineseFilterFactory" protected="protwords.txt"/>
|
33
|
+
<filter class="solr.RemoveDuplicatesTokenFilterFactory"/>
|
34
|
+
</analyzer>
|
35
|
+
</fieldType>
|
36
|
+
<fieldType name="tag" class="solr.TextField" positionIncrementGap="100">
|
37
|
+
<analyzer type="index">
|
38
|
+
<tokenizer class="solr.ChineseTokenizerFactory"/>
|
39
|
+
<filter class="solr.WordDelimiterFilterFactory" generateWordParts="1" generateNumberParts="1" catenateWords="1" catenateNumbers="1" catenateAll="0"/>
|
40
|
+
<filter class="solr.ChineseFilterFactory" protected="protwords.txt"/>
|
41
|
+
</analyzer>
|
42
|
+
</fieldType>
|
43
|
+
</types>
|
44
|
+
|
45
|
+
<fields>
|
46
|
+
<!-- general -->
|
47
|
+
<field name="id" type="string" indexed="true" stored="true" multiValued="false" required="true"/>
|
48
|
+
|
49
|
+
<field name="pk_i" type="integer" indexed="true" stored="true"/>
|
50
|
+
<field name="pk_s" type="string" indexed="true" stored="true"/>
|
51
|
+
<field name="text" type="text" indexed="true" stored="true" termVectors="true" multiValued="true"/>
|
52
|
+
<field name="tag" type="tag" indexed="true" stored="true" termVectors="true" multiValued="true"/>
|
53
|
+
<dynamicField name="*_i" type="integer" indexed="true" stored="false"/>
|
54
|
+
<dynamicField name="*_t" type="text" indexed="true" stored="true"/>
|
55
|
+
<dynamicField name="*_s" type="string" indexed="true" stored="true"/>
|
56
|
+
<dynamicField name="*_facet" type="string" indexed="true" stored="false"/>
|
57
|
+
<dynamicField name="*_s_mv" type="string" indexed="true" stored="false" multiValued="true"/>
|
58
|
+
</fields>
|
59
|
+
|
60
|
+
<!-- field to use to determine and enforce document uniqueness. -->
|
61
|
+
<uniqueKey>id</uniqueKey>
|
62
|
+
|
63
|
+
<copyField source="*_t" dest="text"/>
|
64
|
+
<copyField source="*_facet" dest="text"/>
|
65
|
+
|
66
|
+
<!-- field for the QueryParser to use when an explicit fieldname is absent -->
|
67
|
+
<defaultSearchField>text</defaultSearchField>
|
68
|
+
|
69
|
+
<!-- SolrQueryParser configuration: defaultOperator="AND|OR" -->
|
70
|
+
<solrQueryParser defaultOperator="OR"/>
|
71
|
+
</schema>
|
72
|
+
|