Changeset [a6803978b0f937a39500e4476f411d2790b11352] by Kosuke Tanabe

February 6th, 2009 @ 08:45 PM

added has_many_polymorphs http://github.com/nabeta/next-l/...

Committed by Kosuke Tanabe

  • M app/controllers/concepts_controller.rb
  • M app/controllers/places_controller.rb
  • M app/controllers/subjects_controller.rb
  • M app/helpers/subjects_helper.rb
  • M app/models/classification.rb
  • M app/models/concept.rb
  • M app/models/manifestation.rb
  • M app/models/message_queue.rb
  • M app/models/patron.rb
  • M app/models/place.rb
  • M app/models/resource_has_subject.rb
  • M app/models/resource_sweeper.rb
  • M app/models/subject.rb
  • M app/models/subject_has_classification.rb
  • M app/models/work.rb
  • M app/views/answers/edit.html.erb
  • M app/views/bookmarks/edit.html.erb
  • M app/views/checkins/edit.html.erb
  • M app/views/checkouts/edit.html.erb
  • M app/views/concepts/edit.html.erb
  • M app/views/concepts/index.html.erb
  • M app/views/concepts/new.html.erb
  • M app/views/concepts/show.html.erb
  • M app/views/creates/edit.html.erb
  • M app/views/expression_forms/edit.html.erb
  • M app/views/expressions/edit.html.erb
  • M app/views/items/edit.html.erb
  • M app/views/layouts/barcodes.html.erb
  • M app/views/layouts/message_queues.html.erb
  • M app/views/layouts/user_groups.html.erb
  • M app/views/libraries/edit.html.erb
  • M app/views/library_groups/edit.html.erb
  • M app/views/manifestation_forms/edit.html.erb
  • M app/views/manifestations/_all_facet.html.erb
  • M app/views/manifestations/edit.html.erb
  • M app/views/manifestations/show.html.erb
  • M app/views/message_queues/show.html.erb
  • M app/views/messages/new.html.erb
  • M app/views/orders/edit.html.erb
  • M app/views/owns/edit.html.erb
  • M app/views/page/configuration.html.erb
  • M app/views/patrons/edit.html.erb
  • M app/views/places/edit.html.erb
  • M app/views/places/index.html.erb
  • M app/views/places/new.html.erb
  • M app/views/places/show.html.erb
  • M app/views/produces/edit.html.erb
  • M app/views/questions/edit.html.erb
  • M app/views/realizes/edit.html.erb
  • M app/views/reifies/edit.html.erb
  • M app/views/reserves/edit.html.erb
  • M app/views/roles/edit.html.erb
  • M app/views/search_histories/edit.html.erb
  • M app/views/shelves/edit.html.erb
  • M app/views/subjects/edit.html.erb
  • M app/views/user_groups/edit.html.erb
  • M app/views/users/_show_other.html.erb
  • M app/views/users/edit.html.erb
  • M app/views/works/edit.html.erb
  • M config/locales/translation_en.yml
  • M config/locales/translation_ja.yml
  • M config/routes.rb
  • M db/fixtures/patron_types.yml
  • M db/migrate/024_create_subject_as_concepts.rb
  • M db/migrate/025_create_subject_as_objects.rb
  • M db/migrate/026_create_subject_as_events.rb
  • M db/migrate/027_create_subject_as_places.rb
  • M db/migrate/029_create_subjects.rb
  • M db/migrate/140_create_subject_broader_terms.rb
  • M db/migrate/141_create_subject_related_terms.rb
  • M db/migrate/143_create_subject_has_classifications.rb
  • M db/migrate/145_create_subject_types.rb
  • M db/migrate/20080606052544_create_resource_has_subjects.rb
  • M db/migrate/20090206030547_create_concepts.rb
  • M db/migrate/20090206031051_create_places.rb
  • M test/fixtures/subjects.yml
  • M test/functional/subjects_controller_test.rb
  • M test/unit/subject_test.rb
  • M vendor/plugins/has_many_polymorphs/.gitignore
  • M vendor/plugins/has_many_polymorphs/CHANGELOG
  • M vendor/plugins/has_many_polymorphs/LICENSE
  • M vendor/plugins/has_many_polymorphs/Manifest
  • M vendor/plugins/has_many_polymorphs/README
  • M vendor/plugins/has_many_polymorphs/Rakefile
  • M vendor/plugins/has_many_polymorphs/TODO
  • M vendor/plugins/has_many_polymorphs/examples/hmph.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/tagging_generator.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/migration.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/tag.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/tag_test.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/tagging.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/tagging_extensions.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/tagging_test.rb
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/taggings.yml
  • M vendor/plugins/has_many_polymorphs/generators/tagging/templates/tags.yml
  • M vendor/plugins/has_many_polymorphs/init.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/association.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/autoload.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/base.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/class_methods.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/configuration.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/debugging_tools.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/rake_task_redefine_task.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/reflection.rb
  • M vendor/plugins/has_many_polymorphs/lib/has_many_polymorphs/support_methods.rb
  • M vendor/plugins/has_many_polymorphs/test/fixtures/bow_wows.yml
  • M vendor/plugins/has_many_polymorphs/test/fixtures/cats.yml
  • M vendor/plugins/has_many_polymorphs/test/fixtures/fish.yml
  • M vendor/plugins/has_many_polymorphs/test/fixtures/frogs.yml
  • M vendor/plugins/has_many_polymorphs/test/fixtures/people.yml
  • M vendor/plugins/has_many_polymorphs/test/fixtures/petfoods.yml
  • M vendor/plugins/has_many_polymorphs/test/fixtures/whales.yml
  • M vendor/plugins/has_many_polymorphs/test/fixtures/wild_boars.yml
  • M vendor/plugins/has_many_polymorphs/test/generator/tagging_generator_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/README
  • M vendor/plugins/has_many_polymorphs/test/integration/app/Rakefile
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/controllers/application.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/controllers/bones_controller.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/helpers/addresses_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/helpers/application_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/helpers/bones_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/helpers/sellers_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/helpers/states_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/helpers/users_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/bone.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/double_sti_parent.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/double_sti_parent_relationship.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/organic_substance.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/single_sti_parent.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/single_sti_parent_relationship.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/stick.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/models/stone.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/addresses/edit.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/addresses/index.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/addresses/new.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/addresses/show.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/bones/index.rhtml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/layouts/addresses.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/layouts/sellers.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/layouts/states.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/layouts/users.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/sellers/edit.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/sellers/index.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/sellers/new.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/sellers/show.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/states/edit.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/states/index.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/states/new.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/states/show.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/users/edit.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/users/index.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/users/new.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/app/views/users/show.html.erb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/boot.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/database.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/environment.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/environment.rb.canonical
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/environments/development.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/environments/production.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/environments/test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/locomotive.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/routes.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/ultrasphinx/default.base
  • M vendor/plugins/has_many_polymorphs/test/integration/app/config/ultrasphinx/development.conf.canonical
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/001_create_sticks.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/002_create_stones.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/003_create_organic_substances.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/004_create_bones.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/005_create_single_sti_parents.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/006_create_double_sti_parents.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/007_create_single_sti_parent_relationships.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/008_create_double_sti_parent_relationships.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/db/migrate/009_create_library_model.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/doc/README_FOR_APP
  • M vendor/plugins/has_many_polymorphs/test/integration/app/generators/commenting_generator_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/lib/library_model.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/.htaccess
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/404.html
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/500.html
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/dispatch.cgi
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/dispatch.fcgi
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/dispatch.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/images/rails.png
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/index.html
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/javascripts/application.js
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/javascripts/controls.js
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/javascripts/dragdrop.js
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/javascripts/effects.js
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/javascripts/prototype.js
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/robots.txt
  • M vendor/plugins/has_many_polymorphs/test/integration/app/public/stylesheets/scaffold.css
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/about
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/breakpointer
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/console
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/destroy
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/generate
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/performance/benchmarker
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/performance/profiler
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/plugin
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/process/inspector
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/process/reaper
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/process/spawner
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/runner
  • M vendor/plugins/has_many_polymorphs/test/integration/app/script/server
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/double_sti_parent_relationships.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/double_sti_parents.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/organic_substances.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/single_sti_parent_relationships.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/single_sti_parents.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/sticks.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/fixtures/stones.yml
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/functional/addresses_controller_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/functional/bones_controller_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/functional/sellers_controller_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/functional/states_controller_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/functional/users_controller_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/test_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/bone_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/double_sti_parent_relationship_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/double_sti_parent_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/organic_substance_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/single_sti_parent_relationship_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/single_sti_parent_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/stick_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/app/test/unit/stone_test.rb
  • M vendor/plugins/has_many_polymorphs/test/integration/server_test.rb
  • M vendor/plugins/has_many_polymorphs/test/models/aquatic/fish.rb
  • M vendor/plugins/has_many_polymorphs/test/models/aquatic/pupils_whale.rb
  • M vendor/plugins/has_many_polymorphs/test/models/aquatic/whale.rb
  • M vendor/plugins/has_many_polymorphs/test/models/beautiful_fight_relationship.rb
  • M vendor/plugins/has_many_polymorphs/test/models/canine.rb
  • M vendor/plugins/has_many_polymorphs/test/models/cat.rb
  • M vendor/plugins/has_many_polymorphs/test/models/dog.rb
  • M vendor/plugins/has_many_polymorphs/test/models/eaters_foodstuff.rb
  • M vendor/plugins/has_many_polymorphs/test/models/frog.rb
  • M vendor/plugins/has_many_polymorphs/test/models/kitten.rb
  • M vendor/plugins/has_many_polymorphs/test/models/parentship.rb
  • M vendor/plugins/has_many_polymorphs/test/models/person.rb
  • M vendor/plugins/has_many_polymorphs/test/models/petfood.rb
  • M vendor/plugins/has_many_polymorphs/test/models/tabby.rb
  • M vendor/plugins/has_many_polymorphs/test/models/wild_boar.rb
  • M vendor/plugins/has_many_polymorphs/test/modules/extension_module.rb
  • M vendor/plugins/has_many_polymorphs/test/modules/other_extension_module.rb
  • M vendor/plugins/has_many_polymorphs/test/patches/symlinked_plugins_1.2.6.diff
  • M vendor/plugins/has_many_polymorphs/test/schema.rb
  • M vendor/plugins/has_many_polymorphs/test/setup.rb
  • M vendor/plugins/has_many_polymorphs/test/test_helper.rb
  • M vendor/plugins/has_many_polymorphs/test/unit/has_many_polymorphs_test.rb
New-ticket Create new ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป

integrated library system developed in Japan
http://www.next-l.jp/