hydra-head 3.0.0pre1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +71 -0
- data/.gitmodules +6 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +257 -0
- data/README.textile +150 -0
- data/README_RAILS3_CHANGES.textile +42 -0
- data/Rakefile +5 -0
- data/TESTING.textile +85 -0
- data/app/controllers/assets_controller.rb +117 -0
- data/app/controllers/contributors_controller.rb +54 -0
- data/app/controllers/file_assets_controller.rb +152 -0
- data/app/controllers/permissions_controller.rb +137 -0
- data/app/controllers/user_sessions_controller.rb +14 -0
- data/app/helpers/article_metadata_helper.rb +80 -0
- data/app/helpers/blacklight_helper.rb +192 -0
- data/app/helpers/downloads_helper.rb +19 -0
- data/app/helpers/generic_content_objects_helper.rb +16 -0
- data/app/helpers/hydra_assets_helper.rb +75 -0
- data/app/helpers/hydra_djatoka_helper.rb +23 -0
- data/app/helpers/hydra_fedora_metadata_helper.rb +365 -0
- data/app/helpers/hydra_helper.rb +155 -0
- data/app/helpers/hydra_uploader_helper.rb +18 -0
- data/app/helpers/inline_editable_metadata_helper.rb +15 -0
- data/app/helpers/javascript_includes_helper.rb +93 -0
- data/app/helpers/release_process_helper.rb +32 -0
- data/app/models/audio_asset.rb +8 -0
- data/app/models/file_asset.rb +111 -0
- data/app/models/generic_content.rb +21 -0
- data/app/models/generic_image.rb +62 -0
- data/app/models/image_asset.rb +8 -0
- data/app/models/mods_asset.rb +6 -0
- data/app/models/role_mapper.rb +22 -0
- data/app/models/superuser.rb +6 -0
- data/app/models/video_asset.rb +8 -0
- data/app/views/_add_assets_links.html.erb +13 -0
- data/app/views/_brown_sidebar.html +15 -0
- data/app/views/_user_util_links.html.erb +31 -0
- data/app/views/catalog/_citation.html.erb +11 -0
- data/app/views/catalog/_constraints_element.html.erb +34 -0
- data/app/views/catalog/_delete_partials/_default.html.erb +29 -0
- data/app/views/catalog/_document_list.html.erb +11 -0
- data/app/views/catalog/_edit_partials/_default.html.erb +64 -0
- data/app/views/catalog/_edit_partials/_default_details.html.erb +15 -0
- data/app/views/catalog/_email_form.html.erb +9 -0
- data/app/views/catalog/_facets.html.erb +37 -0
- data/app/views/catalog/_flash_msg.html.erb +17 -0
- data/app/views/catalog/_home.html.erb +6 -0
- data/app/views/catalog/_home_text.html.erb +10 -0
- data/app/views/catalog/_index_partials/_default.html.erb +20 -0
- data/app/views/catalog/_index_partials/_default_details.html.erb +11 -0
- data/app/views/catalog/_index_partials/_default_group.html.erb +15 -0
- data/app/views/catalog/_search_form.html.erb +12 -0
- data/app/views/catalog/_show_partials/_default.html.erb +23 -0
- data/app/views/catalog/_show_partials/_default_details.html.erb +12 -0
- data/app/views/catalog/_show_partials/_facets.html.erb +52 -0
- data/app/views/catalog/_sms_form.html.erb +21 -0
- data/app/views/catalog/_sort_and_per_page.html.erb +22 -0
- data/app/views/catalog/_uva_tabs.html.erb +10 -0
- data/app/views/catalog/about.html.erb +0 -0
- data/app/views/catalog/show.html.erb +48 -0
- data/app/views/contributors/_add_contributor_split_button.html.erb +10 -0
- data/app/views/contributors/_edit_conference.html.erb +29 -0
- data/app/views/contributors/_edit_organization.html.erb +29 -0
- data/app/views/contributors/_edit_person.html.erb +42 -0
- data/app/views/contributors/_index.html.erb +12 -0
- data/app/views/contributors/_new.html.erb +10 -0
- data/app/views/contributors/_show_conference.html.erb +22 -0
- data/app/views/contributors/_show_organization.html.erb +29 -0
- data/app/views/contributors/_show_person.html.erb +17 -0
- data/app/views/contributors/new.html.erb +13 -0
- data/app/views/downloads/index.html.erb +1 -0
- data/app/views/file_assets/_deletable_result.html.erb +5 -0
- data/app/views/file_assets/_index.html.erb +15 -0
- data/app/views/file_assets/_new.html.erb +2 -0
- data/app/views/file_assets/_result.html.erb +16 -0
- data/app/views/file_assets/index.html.erb +5 -0
- data/app/views/fluid_infusion/_uploader.html.erb +81 -0
- data/app/views/fluid_infusion/_uploader_generic_content_objects.js.erb +38 -0
- data/app/views/fluid_infusion/_uploader_js.erb +45 -0
- data/app/views/generic_content_objects/_edit_description.html.erb +50 -0
- data/app/views/generic_content_objects/_new.html.erb +0 -0
- data/app/views/generic_content_objects/_show_description.html.erb +68 -0
- data/app/views/generic_content_objects/contributors/_edit_conference.html.erb +29 -0
- data/app/views/generic_content_objects/contributors/_edit_organization.html.erb +29 -0
- data/app/views/generic_content_objects/contributors/_edit_person.html.erb +37 -0
- data/app/views/generic_content_objects/contributors/_new.html.erb +10 -0
- data/app/views/generic_content_objects/contributors/_show_conference.html.erb +22 -0
- data/app/views/generic_content_objects/contributors/_show_organization.html.erb +22 -0
- data/app/views/generic_content_objects/contributors/_show_person.html.erb +38 -0
- data/app/views/generic_contents/_edit.html.erb +59 -0
- data/app/views/generic_contents/_index.html.erb +23 -0
- data/app/views/generic_contents/_show.html.erb +18 -0
- data/app/views/generic_contents/_show_content.html.erb +4 -0
- data/app/views/generic_images/_edit.html.erb +59 -0
- data/app/views/generic_images/_index.html.erb +24 -0
- data/app/views/generic_images/_show.html.erb +18 -0
- data/app/views/generic_images/_show_all.html.erb +14 -0
- data/app/views/generic_images/_show_content.html.erb +7 -0
- data/app/views/layouts/application.html.erb +57 -0
- data/app/views/layouts/hydra-head.html.erb +12 -0
- data/app/views/mods_assets/_edit.html.erb +49 -0
- data/app/views/mods_assets/_edit_description.html.erb +82 -0
- data/app/views/mods_assets/_edit_journal.html.erb +72 -0
- data/app/views/mods_assets/_index.html.erb +1 -0
- data/app/views/mods_assets/_index_list.html.erb +37 -0
- data/app/views/mods_assets/_index_table.html.erb +7 -0
- data/app/views/mods_assets/_progress_box.html.erb +82 -0
- data/app/views/mods_assets/_show.html.erb +44 -0
- data/app/views/mods_assets/_show_description.html.erb +44 -0
- data/app/views/mods_assets/_show_journal.html.erb +42 -0
- data/app/views/mods_assets/_show_permissions.html.erb +14 -0
- data/app/views/permissions/_edit_person_permissions.html.erb +35 -0
- data/app/views/permissions/_index.html.erb +55 -0
- data/app/views/permissions/_new.html.erb +18 -0
- data/app/views/permissions/index.html.erb +1 -0
- data/app/views/permissions/new.html.erb +1 -0
- data/app/views/shared/_delete_asset_confirmation.html.erb +17 -0
- data/app/views/user_sessions/_login_form.html.erb +10 -0
- data/app/views/user_sessions/logged_out.html.erb +1 -0
- data/config/routes.rb +12 -0
- data/fedora_conf/conf/fedora.fcfg +1021 -0
- data/hydra-head.gemspec +70 -0
- data/lib/application_controller.rb +25 -0
- data/lib/application_helper.rb +2 -0
- data/lib/engine.rb +30 -0
- data/lib/generators/hydra/head_generator.rb +152 -0
- data/lib/generators/hydra/templates/config/fedora.yml +17 -0
- data/lib/generators/hydra/templates/config/initializers/blacklight_config.rb +246 -0
- data/lib/generators/hydra/templates/config/initializers/fedora_config.rb +23 -0
- data/lib/generators/hydra/templates/config/initializers/hydra_config.rb +29 -0
- data/lib/generators/hydra/templates/config/role_map_cucumber.yml +10 -0
- data/lib/generators/hydra/templates/config/role_map_development.yml +12 -0
- data/lib/generators/hydra/templates/config/role_map_production.yml +2 -0
- data/lib/generators/hydra/templates/config/role_map_test.yml +15 -0
- data/lib/generators/hydra/templates/config/solr.yml +10 -0
- data/lib/generators/hydra/templates/config/solr_mappings.yml +22 -0
- data/lib/generators/hydra/templates/fedora_conf/conf/fedora.fcfg +1021 -0
- data/lib/generators/hydra/templates/migrations/add_user_attributes_table.rb +15 -0
- data/lib/generators/hydra/templates/migrations/create_superusers.rb +12 -0
- data/lib/generators/hydra/templates/solr_conf/conf/schema.xml +118 -0
- data/lib/generators/hydra/templates/solr_conf/conf/solrconfig.xml +332 -0
- data/lib/generators/hydra/templates/solr_conf/solr.xml +35 -0
- data/lib/hydra-head.rb +29 -0
- data/lib/hydra-head/engine.rb +9 -0
- data/lib/hydra-head/routes.rb +87 -0
- data/lib/hydra-head/version.rb +4 -0
- data/lib/hydra.rb +22 -0
- data/lib/hydra/access_controls_enforcement.rb +236 -0
- data/lib/hydra/access_controls_evaluation.rb +97 -0
- data/lib/hydra/assets_controller_helper.rb +144 -0
- data/lib/hydra/catalog.rb +64 -0
- data/lib/hydra/common_mods_index_methods.rb +42 -0
- data/lib/hydra/controller.rb +7 -0
- data/lib/hydra/file_assets_helper.rb +144 -0
- data/lib/hydra/fixtures.rb +43 -0
- data/lib/hydra/generic_content.rb +113 -0
- data/lib/hydra/generic_image.rb +100 -0
- data/lib/hydra/image.rb +177 -0
- data/lib/hydra/model_methods.rb +95 -0
- data/lib/hydra/model_mixins.rb +2 -0
- data/lib/hydra/model_mixins/common_metadata.rb +24 -0
- data/lib/hydra/model_mixins/mods_object.rb +16 -0
- data/lib/hydra/mods_article.rb +505 -0
- data/lib/hydra/mods_dataset.rb +165 -0
- data/lib/hydra/mods_generic_content.rb +494 -0
- data/lib/hydra/mods_image.rb +494 -0
- data/lib/hydra/repository_controller.rb +102 -0
- data/lib/hydra/rights_metadata.rb +189 -0
- data/lib/hydra/superuser_attributes.rb +12 -0
- data/lib/hydra/testing_server.rb +183 -0
- data/lib/hydra/user.rb +22 -0
- data/lib/mediashelf/active_fedora_helper.rb +72 -0
- data/lib/railties/all_tests.rake +23 -0
- data/lib/railties/hydra-fixtures.rake +184 -0
- data/lib/railties/hydra_jetty.rake +79 -0
- data/lib/railties/hyhead_cucumber.rake +127 -0
- data/lib/railties/hyhead_rspec.rake +137 -0
- data/lib/stanford/searchworks_helper.rb +1338 -0
- data/lib/stanford/solr_helper.rb +108 -0
- data/lib/uva/mods_index_methods.rb +24 -0
- data/solr_conf/conf/schema.xml +122 -0
- data/solr_conf/conf/solrconfig.xml +332 -0
- data/solr_conf/solr.xml +35 -0
- data/tasks/hydra-head-fixtures.rake +54 -0
- data/tasks/hydra-head.rake +247 -0
- data/tasks/hydra_jetty.rake +79 -0
- data/tasks/replicator.rake +27 -0
- data/tasks/solrizer-fedora.rake +53 -0
- data/tasks/solrizer.rake +13 -0
- data/test_support/etc/Gemfile +29 -0
- data/test_support/etc/rvmrc +32 -0
- data/test_support/features/button_add_assets.feature +22 -0
- data/test_support/features/button_add_generic_content.feature +11 -0
- data/test_support/features/button_add_image.feature +11 -0
- data/test_support/features/button_add_mods_asset.feature +11 -0
- data/test_support/features/contributor_add.feature +39 -0
- data/test_support/features/file_assets_list.feature +32 -0
- data/test_support/features/file_upload.feature +40 -0
- data/test_support/features/home_page.feature +9 -0
- data/test_support/features/html_validity.feature +47 -0
- data/test_support/features/mods_asset_contributors_edit.feature +80 -0
- data/test_support/features/mods_asset_create.feature +12 -0
- data/test_support/features/mods_asset_edit.feature +33 -0
- data/test_support/features/mods_asset_edit_without_permission.feature +10 -0
- data/test_support/features/mods_asset_search_result.feature +13 -0
- data/test_support/features/mods_asset_show.feature +39 -0
- data/test_support/features/permissions_add.feature +15 -0
- data/test_support/features/permissions_edit.feature +63 -0
- data/test_support/features/step_definitions/catalog_index_steps.rb +14 -0
- data/test_support/features/step_definitions/create_asset_steps.rb +7 -0
- data/test_support/features/step_definitions/edit_metadata_steps.rb +73 -0
- data/test_support/features/step_definitions/file_list_steps.rb +28 -0
- data/test_support/features/step_definitions/hydra_metadata_steps.rb +3 -0
- data/test_support/features/step_definitions/hydra_steps.rb +8 -0
- data/test_support/features/step_definitions/inline_editable_edit_steps.rb +77 -0
- data/test_support/features/step_definitions/search_steps.rb +88 -0
- data/test_support/features/step_definitions/searching_steps.rb +22 -0
- data/test_support/features/step_definitions/show_document_steps.rb +85 -0
- data/test_support/features/step_definitions/user_steps.rb +36 -0
- data/test_support/features/step_definitions/web_steps.rb +219 -0
- data/test_support/features/support/env.rb +55 -0
- data/test_support/features/support/paths.rb +80 -0
- data/test_support/features/switch_users.feature +14 -0
- data/test_support/features/view_catalog_index.feature +18 -0
- data/test_support/fixtures/empty_file.txt +0 -0
- data/test_support/fixtures/hydrangea_fixture_archivist_only_mods_article.foxml.xml +1212 -0
- data/test_support/fixtures/hydrangea_fixture_file_asset1.foxml.xml +4946 -0
- data/test_support/fixtures/hydrangea_fixture_mods_article1.foxml.xml +234 -0
- data/test_support/fixtures/hydrangea_fixture_mods_article2.foxml.xml +177 -0
- data/test_support/fixtures/hydrangea_fixture_mods_article3.foxml.xml +170 -0
- data/test_support/fixtures/hydrangea_fixture_mods_dataset1.foxml.xml +187 -0
- data/test_support/fixtures/hydrangea_fixture_uploaded_svg1.foxml.xml +676 -0
- data/test_support/fixtures/image.jp2 +0 -0
- data/test_support/fixtures/libra-oa_1.foxml.xml +2324 -0
- data/test_support/fixtures/libra-oa_2.foxml.xml +2422 -0
- data/test_support/spec/controllers/assets_controller_spec.rb +113 -0
- data/test_support/spec/controllers/catalog_controller_spec.rb +148 -0
- data/test_support/spec/controllers/catalog_controller_viewing_context_spec.rb +62 -0
- data/test_support/spec/controllers/contributors_controller_spec.rb +47 -0
- data/test_support/spec/controllers/file_assets_controller_spec.rb +189 -0
- data/test_support/spec/controllers/hydra_controller_spec.rb +15 -0
- data/test_support/spec/controllers/permissions_controller_spec.rb +80 -0
- data/test_support/spec/controllers/user_sessions_controller_spec.rb +35 -0
- data/test_support/spec/generators/hydra-head_generator_spec.rb +14 -0
- data/test_support/spec/helpers/access_controls_enforcement_spec.rb +212 -0
- data/test_support/spec/helpers/access_controls_evaluation_spec.rb +35 -0
- data/test_support/spec/helpers/assets_controller_helper_spec.rb +71 -0
- data/test_support/spec/helpers/blacklight_helper_spec.rb +64 -0
- data/test_support/spec/helpers/file_assets_helper_spec.rb +107 -0
- data/test_support/spec/helpers/hydra-repository_controller_spec.rb +32 -0
- data/test_support/spec/helpers/hydra_assets_helper_spec.rb +195 -0
- data/test_support/spec/helpers/hydra_djatoka_helper_spec.rb +32 -0
- data/test_support/spec/helpers/hydra_fedora_metadata_helper_spec.rb +215 -0
- data/test_support/spec/helpers/hydra_helper_spec.rb +73 -0
- data/test_support/spec/helpers/hydra_model_methods_spec.rb +95 -0
- data/test_support/spec/helpers/hydra_uploader_helper_spec.rb +18 -0
- data/test_support/spec/helpers/javascript_includes_helper_spec.rb +43 -0
- data/test_support/spec/integration/file_asset_spec.rb +150 -0
- data/test_support/spec/lib/active_fedora_helper_spec.rb +56 -0
- data/test_support/spec/lib/catalog_spec.rb +16 -0
- data/test_support/spec/lib/common_mods_index_methods_spec.rb +28 -0
- data/test_support/spec/models/audio_asset_spec.rb +23 -0
- data/test_support/spec/models/file_asset_spec.rb +42 -0
- data/test_support/spec/models/generic_content_spec.rb +29 -0
- data/test_support/spec/models/generic_image_spec.rb +58 -0
- data/test_support/spec/models/hydra_rights_metadata_spec.rb +162 -0
- data/test_support/spec/models/image_asset_spec.rb +23 -0
- data/test_support/spec/models/mods_asset_spec.rb +29 -0
- data/test_support/spec/models/role_mapper_spec.rb +22 -0
- data/test_support/spec/models/user_spec.rb +52 -0
- data/test_support/spec/models/video_asset_spec.rb +23 -0
- data/test_support/spec/rcov.opts +3 -0
- data/test_support/spec/spec.opts +4 -0
- data/test_support/spec/spec_helper.rb +44 -0
- data/test_support/spec/support/matchers/helper_matcher.rb +14 -0
- data/test_support/spec/support/matchers/solr_matchers.rb +60 -0
- data/test_support/spec/unit/hydra-head-engine_spec.rb +8 -0
- data/test_support/spec/unit/hydra-head_spec.rb +8 -0
- data/test_support/spec/utilities/hydra_testing_server_spec.rb +49 -0
- data/test_support/spec/views/uploader.html.erb_spec.rb +30 -0
- data/vendor/cache/RedCloth-4.2.3.gem +0 -0
- data/vendor/cache/abstract-1.0.0.gem +0 -0
- data/vendor/cache/actionmailer-3.0.9.gem +0 -0
- data/vendor/cache/actionpack-3.0.9.gem +0 -0
- data/vendor/cache/active-fedora-2.3.3.gem +0 -0
- data/vendor/cache/activemodel-3.0.9.gem +0 -0
- data/vendor/cache/activerecord-3.0.9.gem +0 -0
- data/vendor/cache/activeresource-3.0.9.gem +0 -0
- data/vendor/cache/activesupport-3.0.9.gem +0 -0
- data/vendor/cache/arel-2.0.10.gem +0 -0
- data/vendor/cache/blacklight-3.0.0.gem +0 -0
- data/vendor/cache/block_helpers-0.3.3.gem +0 -0
- data/vendor/cache/builder-2.1.2.gem +0 -0
- data/vendor/cache/capybara-1.0.0.gem +0 -0
- data/vendor/cache/childprocess-0.2.0.gem +0 -0
- data/vendor/cache/columnize-0.3.4.gem +0 -0
- data/vendor/cache/crack-0.1.8.gem +0 -0
- data/vendor/cache/cucumber-1.0.2.gem +0 -0
- data/vendor/cache/cucumber-rails-1.0.2.gem +0 -0
- data/vendor/cache/curb-0.7.15.gem +0 -0
- data/vendor/cache/daemons-1.1.4.gem +0 -0
- data/vendor/cache/database_cleaner-0.6.7.gem +0 -0
- data/vendor/cache/diff-lcs-1.1.2.gem +0 -0
- data/vendor/cache/equivalent-xml-0.2.7.gem +0 -0
- data/vendor/cache/erubis-2.6.6.gem +0 -0
- data/vendor/cache/facets-2.8.4.gem +0 -0
- data/vendor/cache/factory_girl-1.3.3.gem +0 -0
- data/vendor/cache/fastercsv-1.5.4.gem +0 -0
- data/vendor/cache/ffi-1.0.9.gem +0 -0
- data/vendor/cache/gherkin-2.4.5.gem +0 -0
- data/vendor/cache/haml-3.1.2.gem +0 -0
- data/vendor/cache/httparty-0.7.8.gem +0 -0
- data/vendor/cache/i18n-0.5.0.gem +0 -0
- data/vendor/cache/jettywrapper-0.0.10.gem +0 -0
- data/vendor/cache/json-1.5.3.gem +0 -0
- data/vendor/cache/json_pure-1.5.3.gem +0 -0
- data/vendor/cache/kaminari-0.12.4.gem +0 -0
- data/vendor/cache/launchy-2.0.3.gem +0 -0
- data/vendor/cache/linecache-0.46.gem +0 -0
- data/vendor/cache/logger-1.2.8.gem +0 -0
- data/vendor/cache/mail-2.2.19.gem +0 -0
- data/vendor/cache/marc-0.4.3.gem +0 -0
- data/vendor/cache/mediashelf-loggable-0.4.2.gem +0 -0
- data/vendor/cache/mime-types-1.16.gem +0 -0
- data/vendor/cache/mocha-0.9.12.gem +0 -0
- data/vendor/cache/multipart-post-1.1.2.gem +0 -0
- data/vendor/cache/nokogiri-1.5.0.gem +0 -0
- data/vendor/cache/om-1.2.5.gem +0 -0
- data/vendor/cache/polyglot-0.3.1.gem +0 -0
- data/vendor/cache/rack-1.2.3.gem +0 -0
- data/vendor/cache/rack-mount-0.6.14.gem +0 -0
- data/vendor/cache/rack-test-0.5.7.gem +0 -0
- data/vendor/cache/rails-3.0.9.gem +0 -0
- data/vendor/cache/railties-3.0.9.gem +0 -0
- data/vendor/cache/rake-0.9.2.gem +0 -0
- data/vendor/cache/rbx-require-relative-0.0.5.gem +0 -0
- data/vendor/cache/rcov-0.9.9.gem +0 -0
- data/vendor/cache/rdoc-3.8.gem +0 -0
- data/vendor/cache/rsolr-1.0.2.gem +0 -0
- data/vendor/cache/rsolr-ext-1.0.3.gem +0 -0
- data/vendor/cache/rspec-2.6.0.gem +0 -0
- data/vendor/cache/rspec-core-2.6.4.gem +0 -0
- data/vendor/cache/rspec-expectations-2.6.0.gem +0 -0
- data/vendor/cache/rspec-mocks-2.6.0.gem +0 -0
- data/vendor/cache/rspec-rails-2.6.1.gem +0 -0
- data/vendor/cache/ruby-debug-0.10.4.gem +0 -0
- data/vendor/cache/ruby-debug-base-0.10.4.gem +0 -0
- data/vendor/cache/rubyzip-0.9.4.gem +0 -0
- data/vendor/cache/sanitize-2.0.3.gem +0 -0
- data/vendor/cache/selenium-webdriver-0.2.2.gem +0 -0
- data/vendor/cache/solr-ruby-0.0.8.gem +0 -0
- data/vendor/cache/solrizer-1.1.0.gem +0 -0
- data/vendor/cache/solrizer-fedora-1.1.0.gem +0 -0
- data/vendor/cache/sqlite3-ruby-1.2.5.gem +0 -0
- data/vendor/cache/stomp-1.1.9.gem +0 -0
- data/vendor/cache/term-ansicolor-1.0.5.gem +0 -0
- data/vendor/cache/thor-0.14.6.gem +0 -0
- data/vendor/cache/treetop-1.4.9.gem +0 -0
- data/vendor/cache/trollop-1.16.2.gem +0 -0
- data/vendor/cache/tzinfo-0.3.29.gem +0 -0
- data/vendor/cache/unicode-0.4.0.gem +0 -0
- data/vendor/cache/will_paginate-2.3.15.gem +0 -0
- data/vendor/cache/xml-simple-1.1.0.gem +0 -0
- data/vendor/cache/xpath-0.1.4.gem +0 -0
- data/vendor/cache/yard-0.7.2.gem +0 -0
- metadata +1110 -0
@@ -0,0 +1,14 @@
|
|
1
|
+
@user @session
|
2
|
+
Feature: Switch user sessions
|
3
|
+
In order to gain access to different permissions
|
4
|
+
a user
|
5
|
+
wants to log in and out of user accounts from the same browser
|
6
|
+
|
7
|
+
Scenario: Logging in, logging out, then logging in as someone else
|
8
|
+
Given I am logged in as "permissionlessdude@mail.com"
|
9
|
+
Then I should see "Log Out"
|
10
|
+
And I should see "permissionlessdude@mail.com"
|
11
|
+
When I log out
|
12
|
+
And I log in as "archivist1@examplesite.com"
|
13
|
+
Then I should see "Log Out"
|
14
|
+
And I should see "archivist1@examplesite.com"
|
@@ -0,0 +1,18 @@
|
|
1
|
+
@catalog
|
2
|
+
Feature: Catalog Index
|
3
|
+
As a user
|
4
|
+
In order to find the documents I'm searching for
|
5
|
+
I want to see my search results in an useful way.
|
6
|
+
|
7
|
+
Scenario: Viewing search results
|
8
|
+
Given I am on the catalog index page
|
9
|
+
Then I should see "Search"
|
10
|
+
|
11
|
+
Scenario: Executing a search
|
12
|
+
Given I am on the catalog index page
|
13
|
+
And I fill in "q" with "hydrangea"
|
14
|
+
And I press "submit"
|
15
|
+
Then I should see "Title"
|
16
|
+
And I should see "Author"
|
17
|
+
And I should see "Work"
|
18
|
+
And I should see "Files"
|
File without changes
|
@@ -0,0 +1,1212 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<foxml:digitalObject VERSION="1.1" PID="hydrangea:fixture_archivist_only_mods_article"
|
3
|
+
xmlns:foxml="info:fedora/fedora-system:def/foxml#"
|
4
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
5
|
+
xsi:schemaLocation="info:fedora/fedora-system:def/foxml# http://www.fedora.info/definitions/1/0/foxml1-1.xsd">
|
6
|
+
<foxml:objectProperties>
|
7
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#state" VALUE="Active"/>
|
8
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#label" VALUE=""/>
|
9
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#ownerId" VALUE="fedoraAdmin"/>
|
10
|
+
<foxml:property NAME="info:fedora/fedora-system:def/model#createdDate" VALUE="2010-07-30T18:42:10.923Z"/>
|
11
|
+
<foxml:property NAME="info:fedora/fedora-system:def/view#lastModifiedDate" VALUE="2010-07-30T18:45:17.860Z"/>
|
12
|
+
</foxml:objectProperties>
|
13
|
+
<foxml:datastream ID="AUDIT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="false">
|
14
|
+
<foxml:datastreamVersion ID="AUDIT.0" LABEL="Audit Trail for this object" CREATED="2010-07-30T18:42:10.923Z" MIMETYPE="text/xml" FORMAT_URI="info:fedora/fedora-system:format/xml.fedora.audit">
|
15
|
+
<foxml:xmlContent>
|
16
|
+
<audit:auditTrail xmlns:audit="info:fedora/fedora-system:def/audit#">
|
17
|
+
<audit:record ID="AUDREC1">
|
18
|
+
<audit:process type="Fedora API-M"/>
|
19
|
+
<audit:action>addDatastream</audit:action>
|
20
|
+
<audit:componentID>descMetadata</audit:componentID>
|
21
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
22
|
+
<audit:date>2010-07-30T18:42:11.058Z</audit:date>
|
23
|
+
<audit:justification></audit:justification>
|
24
|
+
</audit:record>
|
25
|
+
<audit:record ID="AUDREC2">
|
26
|
+
<audit:process type="Fedora API-M"/>
|
27
|
+
<audit:action>addDatastream</audit:action>
|
28
|
+
<audit:componentID>RELS-EXT</audit:componentID>
|
29
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
30
|
+
<audit:date>2010-07-30T18:42:11.147Z</audit:date>
|
31
|
+
<audit:justification></audit:justification>
|
32
|
+
</audit:record>
|
33
|
+
<audit:record ID="AUDREC3">
|
34
|
+
<audit:process type="Fedora API-M"/>
|
35
|
+
<audit:action>addDatastream</audit:action>
|
36
|
+
<audit:componentID>rightsMetadata</audit:componentID>
|
37
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
38
|
+
<audit:date>2010-07-30T18:42:11.199Z</audit:date>
|
39
|
+
<audit:justification></audit:justification>
|
40
|
+
</audit:record>
|
41
|
+
<audit:record ID="AUDREC4">
|
42
|
+
<audit:process type="Fedora API-M"/>
|
43
|
+
<audit:action>addDatastream</audit:action>
|
44
|
+
<audit:componentID>properties</audit:componentID>
|
45
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
46
|
+
<audit:date>2010-07-30T18:42:11.253Z</audit:date>
|
47
|
+
<audit:justification></audit:justification>
|
48
|
+
</audit:record>
|
49
|
+
<audit:record ID="AUDREC5">
|
50
|
+
<audit:process type="Fedora API-M"/>
|
51
|
+
<audit:action>modifyObject</audit:action>
|
52
|
+
<audit:componentID></audit:componentID>
|
53
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
54
|
+
<audit:date>2010-07-30T18:42:22.727Z</audit:date>
|
55
|
+
<audit:justification></audit:justification>
|
56
|
+
</audit:record>
|
57
|
+
<audit:record ID="AUDREC6">
|
58
|
+
<audit:process type="Fedora API-M"/>
|
59
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
60
|
+
<audit:componentID>descMetadata</audit:componentID>
|
61
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
62
|
+
<audit:date>2010-07-30T18:42:22.788Z</audit:date>
|
63
|
+
<audit:justification></audit:justification>
|
64
|
+
</audit:record>
|
65
|
+
<audit:record ID="AUDREC7">
|
66
|
+
<audit:process type="Fedora API-M"/>
|
67
|
+
<audit:action>modifyObject</audit:action>
|
68
|
+
<audit:componentID></audit:componentID>
|
69
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
70
|
+
<audit:date>2010-07-30T18:43:27.540Z</audit:date>
|
71
|
+
<audit:justification></audit:justification>
|
72
|
+
</audit:record>
|
73
|
+
<audit:record ID="AUDREC8">
|
74
|
+
<audit:process type="Fedora API-M"/>
|
75
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
76
|
+
<audit:componentID>descMetadata</audit:componentID>
|
77
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
78
|
+
<audit:date>2010-07-30T18:43:27.600Z</audit:date>
|
79
|
+
<audit:justification></audit:justification>
|
80
|
+
</audit:record>
|
81
|
+
<audit:record ID="AUDREC9">
|
82
|
+
<audit:process type="Fedora API-M"/>
|
83
|
+
<audit:action>modifyObject</audit:action>
|
84
|
+
<audit:componentID></audit:componentID>
|
85
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
86
|
+
<audit:date>2010-07-30T18:43:28.502Z</audit:date>
|
87
|
+
<audit:justification></audit:justification>
|
88
|
+
</audit:record>
|
89
|
+
<audit:record ID="AUDREC10">
|
90
|
+
<audit:process type="Fedora API-M"/>
|
91
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
92
|
+
<audit:componentID>descMetadata</audit:componentID>
|
93
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
94
|
+
<audit:date>2010-07-30T18:43:28.589Z</audit:date>
|
95
|
+
<audit:justification></audit:justification>
|
96
|
+
</audit:record>
|
97
|
+
<audit:record ID="AUDREC11">
|
98
|
+
<audit:process type="Fedora API-M"/>
|
99
|
+
<audit:action>modifyObject</audit:action>
|
100
|
+
<audit:componentID></audit:componentID>
|
101
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
102
|
+
<audit:date>2010-07-30T18:43:58.873Z</audit:date>
|
103
|
+
<audit:justification></audit:justification>
|
104
|
+
</audit:record>
|
105
|
+
<audit:record ID="AUDREC12">
|
106
|
+
<audit:process type="Fedora API-M"/>
|
107
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
108
|
+
<audit:componentID>descMetadata</audit:componentID>
|
109
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
110
|
+
<audit:date>2010-07-30T18:43:59.042Z</audit:date>
|
111
|
+
<audit:justification></audit:justification>
|
112
|
+
</audit:record>
|
113
|
+
<audit:record ID="AUDREC13">
|
114
|
+
<audit:process type="Fedora API-M"/>
|
115
|
+
<audit:action>modifyObject</audit:action>
|
116
|
+
<audit:componentID></audit:componentID>
|
117
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
118
|
+
<audit:date>2010-07-30T18:44:00.320Z</audit:date>
|
119
|
+
<audit:justification></audit:justification>
|
120
|
+
</audit:record>
|
121
|
+
<audit:record ID="AUDREC14">
|
122
|
+
<audit:process type="Fedora API-M"/>
|
123
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
124
|
+
<audit:componentID>descMetadata</audit:componentID>
|
125
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
126
|
+
<audit:date>2010-07-30T18:44:00.498Z</audit:date>
|
127
|
+
<audit:justification></audit:justification>
|
128
|
+
</audit:record>
|
129
|
+
<audit:record ID="AUDREC15">
|
130
|
+
<audit:process type="Fedora API-M"/>
|
131
|
+
<audit:action>modifyObject</audit:action>
|
132
|
+
<audit:componentID></audit:componentID>
|
133
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
134
|
+
<audit:date>2010-07-30T18:44:11.501Z</audit:date>
|
135
|
+
<audit:justification></audit:justification>
|
136
|
+
</audit:record>
|
137
|
+
<audit:record ID="AUDREC16">
|
138
|
+
<audit:process type="Fedora API-M"/>
|
139
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
140
|
+
<audit:componentID>descMetadata</audit:componentID>
|
141
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
142
|
+
<audit:date>2010-07-30T18:44:11.541Z</audit:date>
|
143
|
+
<audit:justification></audit:justification>
|
144
|
+
</audit:record>
|
145
|
+
<audit:record ID="AUDREC17">
|
146
|
+
<audit:process type="Fedora API-M"/>
|
147
|
+
<audit:action>modifyObject</audit:action>
|
148
|
+
<audit:componentID></audit:componentID>
|
149
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
150
|
+
<audit:date>2010-07-30T18:44:13.043Z</audit:date>
|
151
|
+
<audit:justification></audit:justification>
|
152
|
+
</audit:record>
|
153
|
+
<audit:record ID="AUDREC18">
|
154
|
+
<audit:process type="Fedora API-M"/>
|
155
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
156
|
+
<audit:componentID>descMetadata</audit:componentID>
|
157
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
158
|
+
<audit:date>2010-07-30T18:44:13.113Z</audit:date>
|
159
|
+
<audit:justification></audit:justification>
|
160
|
+
</audit:record>
|
161
|
+
<audit:record ID="AUDREC19">
|
162
|
+
<audit:process type="Fedora API-M"/>
|
163
|
+
<audit:action>modifyObject</audit:action>
|
164
|
+
<audit:componentID></audit:componentID>
|
165
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
166
|
+
<audit:date>2010-07-30T18:44:19.362Z</audit:date>
|
167
|
+
<audit:justification></audit:justification>
|
168
|
+
</audit:record>
|
169
|
+
<audit:record ID="AUDREC20">
|
170
|
+
<audit:process type="Fedora API-M"/>
|
171
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
172
|
+
<audit:componentID>descMetadata</audit:componentID>
|
173
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
174
|
+
<audit:date>2010-07-30T18:44:19.426Z</audit:date>
|
175
|
+
<audit:justification></audit:justification>
|
176
|
+
</audit:record>
|
177
|
+
<audit:record ID="AUDREC21">
|
178
|
+
<audit:process type="Fedora API-M"/>
|
179
|
+
<audit:action>modifyObject</audit:action>
|
180
|
+
<audit:componentID></audit:componentID>
|
181
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
182
|
+
<audit:date>2010-07-30T18:44:20.455Z</audit:date>
|
183
|
+
<audit:justification></audit:justification>
|
184
|
+
</audit:record>
|
185
|
+
<audit:record ID="AUDREC22">
|
186
|
+
<audit:process type="Fedora API-M"/>
|
187
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
188
|
+
<audit:componentID>descMetadata</audit:componentID>
|
189
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
190
|
+
<audit:date>2010-07-30T18:44:20.509Z</audit:date>
|
191
|
+
<audit:justification></audit:justification>
|
192
|
+
</audit:record>
|
193
|
+
<audit:record ID="AUDREC23">
|
194
|
+
<audit:process type="Fedora API-M"/>
|
195
|
+
<audit:action>modifyObject</audit:action>
|
196
|
+
<audit:componentID></audit:componentID>
|
197
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
198
|
+
<audit:date>2010-07-30T18:44:35.051Z</audit:date>
|
199
|
+
<audit:justification></audit:justification>
|
200
|
+
</audit:record>
|
201
|
+
<audit:record ID="AUDREC24">
|
202
|
+
<audit:process type="Fedora API-M"/>
|
203
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
204
|
+
<audit:componentID>descMetadata</audit:componentID>
|
205
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
206
|
+
<audit:date>2010-07-30T18:44:35.086Z</audit:date>
|
207
|
+
<audit:justification></audit:justification>
|
208
|
+
</audit:record>
|
209
|
+
<audit:record ID="AUDREC25">
|
210
|
+
<audit:process type="Fedora API-M"/>
|
211
|
+
<audit:action>modifyObject</audit:action>
|
212
|
+
<audit:componentID></audit:componentID>
|
213
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
214
|
+
<audit:date>2010-07-30T18:44:35.784Z</audit:date>
|
215
|
+
<audit:justification></audit:justification>
|
216
|
+
</audit:record>
|
217
|
+
<audit:record ID="AUDREC26">
|
218
|
+
<audit:process type="Fedora API-M"/>
|
219
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
220
|
+
<audit:componentID>descMetadata</audit:componentID>
|
221
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
222
|
+
<audit:date>2010-07-30T18:44:35.836Z</audit:date>
|
223
|
+
<audit:justification></audit:justification>
|
224
|
+
</audit:record>
|
225
|
+
<audit:record ID="AUDREC27">
|
226
|
+
<audit:process type="Fedora API-M"/>
|
227
|
+
<audit:action>modifyObject</audit:action>
|
228
|
+
<audit:componentID></audit:componentID>
|
229
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
230
|
+
<audit:date>2010-07-30T18:44:49.323Z</audit:date>
|
231
|
+
<audit:justification></audit:justification>
|
232
|
+
</audit:record>
|
233
|
+
<audit:record ID="AUDREC28">
|
234
|
+
<audit:process type="Fedora API-M"/>
|
235
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
236
|
+
<audit:componentID>descMetadata</audit:componentID>
|
237
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
238
|
+
<audit:date>2010-07-30T18:44:49.574Z</audit:date>
|
239
|
+
<audit:justification></audit:justification>
|
240
|
+
</audit:record>
|
241
|
+
<audit:record ID="AUDREC29">
|
242
|
+
<audit:process type="Fedora API-M"/>
|
243
|
+
<audit:action>modifyObject</audit:action>
|
244
|
+
<audit:componentID></audit:componentID>
|
245
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
246
|
+
<audit:date>2010-07-30T18:44:51.247Z</audit:date>
|
247
|
+
<audit:justification></audit:justification>
|
248
|
+
</audit:record>
|
249
|
+
<audit:record ID="AUDREC30">
|
250
|
+
<audit:process type="Fedora API-M"/>
|
251
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
252
|
+
<audit:componentID>descMetadata</audit:componentID>
|
253
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
254
|
+
<audit:date>2010-07-30T18:44:51.884Z</audit:date>
|
255
|
+
<audit:justification></audit:justification>
|
256
|
+
</audit:record>
|
257
|
+
<audit:record ID="AUDREC31">
|
258
|
+
<audit:process type="Fedora API-M"/>
|
259
|
+
<audit:action>modifyObject</audit:action>
|
260
|
+
<audit:componentID></audit:componentID>
|
261
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
262
|
+
<audit:date>2010-07-30T18:44:56.149Z</audit:date>
|
263
|
+
<audit:justification></audit:justification>
|
264
|
+
</audit:record>
|
265
|
+
<audit:record ID="AUDREC32">
|
266
|
+
<audit:process type="Fedora API-M"/>
|
267
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
268
|
+
<audit:componentID>descMetadata</audit:componentID>
|
269
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
270
|
+
<audit:date>2010-07-30T18:44:56.253Z</audit:date>
|
271
|
+
<audit:justification></audit:justification>
|
272
|
+
</audit:record>
|
273
|
+
<audit:record ID="AUDREC33">
|
274
|
+
<audit:process type="Fedora API-M"/>
|
275
|
+
<audit:action>modifyDatastreamByValue</audit:action>
|
276
|
+
<audit:componentID>rightsMetadata</audit:componentID>
|
277
|
+
<audit:responsibility>fedoraAdmin</audit:responsibility>
|
278
|
+
<audit:date>2010-07-30T18:45:17.860Z</audit:date>
|
279
|
+
<audit:justification></audit:justification>
|
280
|
+
</audit:record>
|
281
|
+
</audit:auditTrail>
|
282
|
+
</foxml:xmlContent>
|
283
|
+
</foxml:datastreamVersion>
|
284
|
+
</foxml:datastream>
|
285
|
+
<foxml:datastream ID="DC" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
286
|
+
<foxml:datastreamVersion ID="DC1.0" LABEL="Dublin Core Record for this object" CREATED="2010-07-30T18:42:10.923Z" MIMETYPE="text/xml" FORMAT_URI="http://www.openarchives.org/OAI/2.0/oai_dc/" SIZE="341">
|
287
|
+
<foxml:xmlContent>
|
288
|
+
<oai_dc:dc xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/oai_dc/ http://www.openarchives.org/OAI/2.0/oai_dc.xsd">
|
289
|
+
<dc:identifier>hydrangea:fixture_archivist_only_mods_article</dc:identifier>
|
290
|
+
</oai_dc:dc>
|
291
|
+
</foxml:xmlContent>
|
292
|
+
</foxml:datastreamVersion>
|
293
|
+
</foxml:datastream>
|
294
|
+
<foxml:datastream ID="descMetadata" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
295
|
+
<foxml:datastreamVersion ID="descMetadata.0" LABEL="" CREATED="2010-07-30T18:42:11.058Z" MIMETYPE="text/xml" SIZE="1547">
|
296
|
+
<foxml:xmlContent>
|
297
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
298
|
+
<titleInfo>
|
299
|
+
<title></title>
|
300
|
+
</titleInfo>
|
301
|
+
<name type="personal">
|
302
|
+
<namePart type="given"></namePart>
|
303
|
+
<namePart type="family"></namePart>
|
304
|
+
<affiliation></affiliation>
|
305
|
+
<role>
|
306
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
307
|
+
</role>
|
308
|
+
</name>
|
309
|
+
<name type="corporate">
|
310
|
+
<namePart></namePart>
|
311
|
+
<role>
|
312
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
313
|
+
</role>
|
314
|
+
</name>
|
315
|
+
<name type="conference">
|
316
|
+
<namePart></namePart>
|
317
|
+
<role>
|
318
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
319
|
+
</role>
|
320
|
+
</name>
|
321
|
+
<typeOfResource></typeOfResource>
|
322
|
+
<genre authority="marcgt"></genre>
|
323
|
+
<language>
|
324
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
325
|
+
</language>
|
326
|
+
<abstract></abstract>
|
327
|
+
<subject>
|
328
|
+
<topic></topic>
|
329
|
+
</subject>
|
330
|
+
<relatedItem type="host">
|
331
|
+
<titleInfo>
|
332
|
+
<title></title>
|
333
|
+
</titleInfo>
|
334
|
+
<identifier type="issn"></identifier>
|
335
|
+
<originInfo>
|
336
|
+
<publisher></publisher>
|
337
|
+
<dateIssued></dateIssued>
|
338
|
+
</originInfo>
|
339
|
+
<part>
|
340
|
+
<detail type="volume"></detail>
|
341
|
+
<detail type="number"></detail>
|
342
|
+
<pages type="start"></pages>
|
343
|
+
<pages type="end"></pages>
|
344
|
+
<date></date>
|
345
|
+
</part>
|
346
|
+
</relatedItem>
|
347
|
+
<location>
|
348
|
+
<url></url>
|
349
|
+
</location>
|
350
|
+
</mods>
|
351
|
+
</foxml:xmlContent>
|
352
|
+
</foxml:datastreamVersion>
|
353
|
+
<foxml:datastreamVersion ID="descMetadata.1" LABEL="" CREATED="2010-07-30T18:42:22.788Z" MIMETYPE="text/xml" SIZE="1560">
|
354
|
+
<foxml:xmlContent>
|
355
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
356
|
+
<titleInfo>
|
357
|
+
<title>click to edit</title>
|
358
|
+
</titleInfo>
|
359
|
+
<name type="personal">
|
360
|
+
<namePart type="given"></namePart>
|
361
|
+
<namePart type="family"></namePart>
|
362
|
+
<affiliation></affiliation>
|
363
|
+
<role>
|
364
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
365
|
+
</role>
|
366
|
+
</name>
|
367
|
+
<name type="corporate">
|
368
|
+
<namePart></namePart>
|
369
|
+
<role>
|
370
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
371
|
+
</role>
|
372
|
+
</name>
|
373
|
+
<name type="conference">
|
374
|
+
<namePart></namePart>
|
375
|
+
<role>
|
376
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
377
|
+
</role>
|
378
|
+
</name>
|
379
|
+
<typeOfResource></typeOfResource>
|
380
|
+
<genre authority="marcgt"></genre>
|
381
|
+
<language>
|
382
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
383
|
+
</language>
|
384
|
+
<abstract></abstract>
|
385
|
+
<subject>
|
386
|
+
<topic></topic>
|
387
|
+
</subject>
|
388
|
+
<relatedItem type="host">
|
389
|
+
<titleInfo>
|
390
|
+
<title></title>
|
391
|
+
</titleInfo>
|
392
|
+
<identifier type="issn"></identifier>
|
393
|
+
<originInfo>
|
394
|
+
<publisher></publisher>
|
395
|
+
<dateIssued></dateIssued>
|
396
|
+
</originInfo>
|
397
|
+
<part>
|
398
|
+
<detail type="volume"></detail>
|
399
|
+
<detail type="number"></detail>
|
400
|
+
<pages type="start"></pages>
|
401
|
+
<pages type="end"></pages>
|
402
|
+
<date></date>
|
403
|
+
</part>
|
404
|
+
</relatedItem>
|
405
|
+
<location>
|
406
|
+
<url></url>
|
407
|
+
</location>
|
408
|
+
</mods>
|
409
|
+
</foxml:xmlContent>
|
410
|
+
</foxml:datastreamVersion>
|
411
|
+
<foxml:datastreamVersion ID="descMetadata.2" LABEL="" CREATED="2010-07-30T18:43:27.600Z" MIMETYPE="text/xml" SIZE="1572">
|
412
|
+
<foxml:xmlContent>
|
413
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
414
|
+
<titleInfo>
|
415
|
+
<title>Article for Archivist Eyes Only</title>
|
416
|
+
</titleInfo>
|
417
|
+
<name type="personal">
|
418
|
+
<namePart type="given"></namePart>
|
419
|
+
<namePart type="family"></namePart>
|
420
|
+
<affiliation></affiliation>
|
421
|
+
<role>
|
422
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
423
|
+
</role>
|
424
|
+
</name>
|
425
|
+
<name type="corporate">
|
426
|
+
<namePart></namePart>
|
427
|
+
<role>
|
428
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
429
|
+
</role>
|
430
|
+
</name>
|
431
|
+
<name type="conference">
|
432
|
+
<namePart></namePart>
|
433
|
+
<role>
|
434
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
435
|
+
</role>
|
436
|
+
</name>
|
437
|
+
<typeOfResource></typeOfResource>
|
438
|
+
<genre authority="marcgt"></genre>
|
439
|
+
<language>
|
440
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
441
|
+
</language>
|
442
|
+
<abstract></abstract>
|
443
|
+
<subject>
|
444
|
+
<topic></topic>
|
445
|
+
</subject>
|
446
|
+
<relatedItem type="host">
|
447
|
+
<titleInfo>
|
448
|
+
<title></title>
|
449
|
+
</titleInfo>
|
450
|
+
<identifier type="issn"></identifier>
|
451
|
+
<originInfo>
|
452
|
+
<publisher></publisher>
|
453
|
+
<dateIssued></dateIssued>
|
454
|
+
</originInfo>
|
455
|
+
<part>
|
456
|
+
<detail type="volume"></detail>
|
457
|
+
<detail type="number"></detail>
|
458
|
+
<pages type="start"></pages>
|
459
|
+
<pages type="end"></pages>
|
460
|
+
<date></date>
|
461
|
+
</part>
|
462
|
+
</relatedItem>
|
463
|
+
<location>
|
464
|
+
<url></url>
|
465
|
+
</location>
|
466
|
+
</mods>
|
467
|
+
</foxml:xmlContent>
|
468
|
+
</foxml:datastreamVersion>
|
469
|
+
<foxml:datastreamVersion ID="descMetadata.3" LABEL="" CREATED="2010-07-30T18:43:28.589Z" MIMETYPE="text/xml" SIZE="1572">
|
470
|
+
<foxml:xmlContent>
|
471
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
472
|
+
<titleInfo>
|
473
|
+
<title>Article for Archivist Eyes Only</title>
|
474
|
+
</titleInfo>
|
475
|
+
<name type="personal">
|
476
|
+
<namePart type="given"></namePart>
|
477
|
+
<namePart type="family"></namePart>
|
478
|
+
<affiliation></affiliation>
|
479
|
+
<role>
|
480
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
481
|
+
</role>
|
482
|
+
</name>
|
483
|
+
<name type="corporate">
|
484
|
+
<namePart></namePart>
|
485
|
+
<role>
|
486
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
487
|
+
</role>
|
488
|
+
</name>
|
489
|
+
<name type="conference">
|
490
|
+
<namePart></namePart>
|
491
|
+
<role>
|
492
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
493
|
+
</role>
|
494
|
+
</name>
|
495
|
+
<typeOfResource></typeOfResource>
|
496
|
+
<genre authority="marcgt"></genre>
|
497
|
+
<language>
|
498
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
499
|
+
</language>
|
500
|
+
<abstract></abstract>
|
501
|
+
<subject>
|
502
|
+
<topic></topic>
|
503
|
+
</subject>
|
504
|
+
<relatedItem type="host">
|
505
|
+
<titleInfo>
|
506
|
+
<title></title>
|
507
|
+
</titleInfo>
|
508
|
+
<identifier type="issn"></identifier>
|
509
|
+
<originInfo>
|
510
|
+
<publisher></publisher>
|
511
|
+
<dateIssued></dateIssued>
|
512
|
+
</originInfo>
|
513
|
+
<part>
|
514
|
+
<detail type="volume"></detail>
|
515
|
+
<detail type="number"></detail>
|
516
|
+
<pages type="start"></pages>
|
517
|
+
<pages type="end"></pages>
|
518
|
+
<date></date>
|
519
|
+
</part>
|
520
|
+
</relatedItem>
|
521
|
+
<location>
|
522
|
+
<url></url>
|
523
|
+
</location>
|
524
|
+
</mods>
|
525
|
+
</foxml:xmlContent>
|
526
|
+
</foxml:datastreamVersion>
|
527
|
+
<foxml:datastreamVersion ID="descMetadata.4" LABEL="" CREATED="2010-07-30T18:43:59.042Z" MIMETYPE="text/xml" SIZE="1583">
|
528
|
+
<foxml:xmlContent>
|
529
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
530
|
+
<titleInfo>
|
531
|
+
<title>Article for Archivist Eyes Only</title>
|
532
|
+
</titleInfo>
|
533
|
+
<name type="personal">
|
534
|
+
<namePart type="given"></namePart>
|
535
|
+
<namePart type="family"></namePart>
|
536
|
+
<affiliation></affiliation>
|
537
|
+
<role>
|
538
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
539
|
+
</role>
|
540
|
+
</name>
|
541
|
+
<name type="corporate">
|
542
|
+
<namePart></namePart>
|
543
|
+
<role>
|
544
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
545
|
+
</role>
|
546
|
+
</name>
|
547
|
+
<name type="conference">
|
548
|
+
<namePart></namePart>
|
549
|
+
<role>
|
550
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
551
|
+
</role>
|
552
|
+
</name>
|
553
|
+
<typeOfResource></typeOfResource>
|
554
|
+
<genre authority="marcgt"></genre>
|
555
|
+
<language>
|
556
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
557
|
+
</language>
|
558
|
+
<abstract></abstract>
|
559
|
+
<subject>
|
560
|
+
<topic></topic>
|
561
|
+
</subject>
|
562
|
+
<relatedItem type="host">
|
563
|
+
<titleInfo>
|
564
|
+
<title></title>
|
565
|
+
</titleInfo>
|
566
|
+
<identifier type="issn"></identifier>
|
567
|
+
<originInfo>
|
568
|
+
<publisher></publisher>
|
569
|
+
<dateIssued></dateIssued>
|
570
|
+
</originInfo>
|
571
|
+
<part>
|
572
|
+
<detail type="volume"></detail>
|
573
|
+
<detail type="number"></detail>
|
574
|
+
<pages type="start"></pages>
|
575
|
+
<pages type="end"></pages>
|
576
|
+
<date></date>
|
577
|
+
</part>
|
578
|
+
</relatedItem>
|
579
|
+
<location>
|
580
|
+
<url></url>
|
581
|
+
</location>
|
582
|
+
</mods>
|
583
|
+
</foxml:xmlContent>
|
584
|
+
</foxml:datastreamVersion>
|
585
|
+
<foxml:datastreamVersion ID="descMetadata.5" LABEL="" CREATED="2010-07-30T18:44:00.498Z" MIMETYPE="text/xml" SIZE="1583">
|
586
|
+
<foxml:xmlContent>
|
587
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
588
|
+
<titleInfo>
|
589
|
+
<title>Article for Archivist Eyes Only</title>
|
590
|
+
</titleInfo>
|
591
|
+
<name type="personal">
|
592
|
+
<namePart type="given"></namePart>
|
593
|
+
<namePart type="family"></namePart>
|
594
|
+
<affiliation></affiliation>
|
595
|
+
<role>
|
596
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
597
|
+
</role>
|
598
|
+
</name>
|
599
|
+
<name type="corporate">
|
600
|
+
<namePart></namePart>
|
601
|
+
<role>
|
602
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
603
|
+
</role>
|
604
|
+
</name>
|
605
|
+
<name type="conference">
|
606
|
+
<namePart></namePart>
|
607
|
+
<role>
|
608
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
609
|
+
</role>
|
610
|
+
</name>
|
611
|
+
<typeOfResource></typeOfResource>
|
612
|
+
<genre authority="marcgt"></genre>
|
613
|
+
<language>
|
614
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
615
|
+
</language>
|
616
|
+
<abstract></abstract>
|
617
|
+
<subject>
|
618
|
+
<topic></topic>
|
619
|
+
</subject>
|
620
|
+
<relatedItem type="host">
|
621
|
+
<titleInfo>
|
622
|
+
<title></title>
|
623
|
+
</titleInfo>
|
624
|
+
<identifier type="issn"></identifier>
|
625
|
+
<originInfo>
|
626
|
+
<publisher></publisher>
|
627
|
+
<dateIssued></dateIssued>
|
628
|
+
</originInfo>
|
629
|
+
<part>
|
630
|
+
<detail type="volume"></detail>
|
631
|
+
<detail type="number"></detail>
|
632
|
+
<pages type="start"></pages>
|
633
|
+
<pages type="end"></pages>
|
634
|
+
<date></date>
|
635
|
+
</part>
|
636
|
+
</relatedItem>
|
637
|
+
<location>
|
638
|
+
<url></url>
|
639
|
+
</location>
|
640
|
+
</mods>
|
641
|
+
</foxml:xmlContent>
|
642
|
+
</foxml:datastreamVersion>
|
643
|
+
<foxml:datastreamVersion ID="descMetadata.6" LABEL="" CREATED="2010-07-30T18:44:11.541Z" MIMETYPE="text/xml" SIZE="1588">
|
644
|
+
<foxml:xmlContent>
|
645
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
646
|
+
<titleInfo>
|
647
|
+
<title>Article for Archivist Eyes Only</title>
|
648
|
+
</titleInfo>
|
649
|
+
<name type="personal">
|
650
|
+
<namePart type="given">Sally</namePart>
|
651
|
+
<namePart type="family"></namePart>
|
652
|
+
<affiliation></affiliation>
|
653
|
+
<role>
|
654
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
655
|
+
</role>
|
656
|
+
</name>
|
657
|
+
<name type="corporate">
|
658
|
+
<namePart></namePart>
|
659
|
+
<role>
|
660
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
661
|
+
</role>
|
662
|
+
</name>
|
663
|
+
<name type="conference">
|
664
|
+
<namePart></namePart>
|
665
|
+
<role>
|
666
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
667
|
+
</role>
|
668
|
+
</name>
|
669
|
+
<typeOfResource></typeOfResource>
|
670
|
+
<genre authority="marcgt"></genre>
|
671
|
+
<language>
|
672
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
673
|
+
</language>
|
674
|
+
<abstract></abstract>
|
675
|
+
<subject>
|
676
|
+
<topic></topic>
|
677
|
+
</subject>
|
678
|
+
<relatedItem type="host">
|
679
|
+
<titleInfo>
|
680
|
+
<title></title>
|
681
|
+
</titleInfo>
|
682
|
+
<identifier type="issn"></identifier>
|
683
|
+
<originInfo>
|
684
|
+
<publisher></publisher>
|
685
|
+
<dateIssued></dateIssued>
|
686
|
+
</originInfo>
|
687
|
+
<part>
|
688
|
+
<detail type="volume"></detail>
|
689
|
+
<detail type="number"></detail>
|
690
|
+
<pages type="start"></pages>
|
691
|
+
<pages type="end"></pages>
|
692
|
+
<date></date>
|
693
|
+
</part>
|
694
|
+
</relatedItem>
|
695
|
+
<location>
|
696
|
+
<url></url>
|
697
|
+
</location>
|
698
|
+
</mods>
|
699
|
+
</foxml:xmlContent>
|
700
|
+
</foxml:datastreamVersion>
|
701
|
+
<foxml:datastreamVersion ID="descMetadata.7" LABEL="" CREATED="2010-07-30T18:44:13.113Z" MIMETYPE="text/xml" SIZE="1588">
|
702
|
+
<foxml:xmlContent>
|
703
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
704
|
+
<titleInfo>
|
705
|
+
<title>Article for Archivist Eyes Only</title>
|
706
|
+
</titleInfo>
|
707
|
+
<name type="personal">
|
708
|
+
<namePart type="given">Sally</namePart>
|
709
|
+
<namePart type="family"></namePart>
|
710
|
+
<affiliation></affiliation>
|
711
|
+
<role>
|
712
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
713
|
+
</role>
|
714
|
+
</name>
|
715
|
+
<name type="corporate">
|
716
|
+
<namePart></namePart>
|
717
|
+
<role>
|
718
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
719
|
+
</role>
|
720
|
+
</name>
|
721
|
+
<name type="conference">
|
722
|
+
<namePart></namePart>
|
723
|
+
<role>
|
724
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
725
|
+
</role>
|
726
|
+
</name>
|
727
|
+
<typeOfResource></typeOfResource>
|
728
|
+
<genre authority="marcgt"></genre>
|
729
|
+
<language>
|
730
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
731
|
+
</language>
|
732
|
+
<abstract></abstract>
|
733
|
+
<subject>
|
734
|
+
<topic></topic>
|
735
|
+
</subject>
|
736
|
+
<relatedItem type="host">
|
737
|
+
<titleInfo>
|
738
|
+
<title></title>
|
739
|
+
</titleInfo>
|
740
|
+
<identifier type="issn"></identifier>
|
741
|
+
<originInfo>
|
742
|
+
<publisher></publisher>
|
743
|
+
<dateIssued></dateIssued>
|
744
|
+
</originInfo>
|
745
|
+
<part>
|
746
|
+
<detail type="volume"></detail>
|
747
|
+
<detail type="number"></detail>
|
748
|
+
<pages type="start"></pages>
|
749
|
+
<pages type="end"></pages>
|
750
|
+
<date></date>
|
751
|
+
</part>
|
752
|
+
</relatedItem>
|
753
|
+
<location>
|
754
|
+
<url></url>
|
755
|
+
</location>
|
756
|
+
</mods>
|
757
|
+
</foxml:xmlContent>
|
758
|
+
</foxml:datastreamVersion>
|
759
|
+
<foxml:datastreamVersion ID="descMetadata.8" LABEL="" CREATED="2010-07-30T18:44:19.426Z" MIMETYPE="text/xml" SIZE="1602">
|
760
|
+
<foxml:xmlContent>
|
761
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
762
|
+
<titleInfo>
|
763
|
+
<title>Article for Archivist Eyes Only</title>
|
764
|
+
</titleInfo>
|
765
|
+
<name type="personal">
|
766
|
+
<namePart type="given">Sally</namePart>
|
767
|
+
<namePart type="family">Whocontributes</namePart>
|
768
|
+
<affiliation></affiliation>
|
769
|
+
<role>
|
770
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
771
|
+
</role>
|
772
|
+
</name>
|
773
|
+
<name type="corporate">
|
774
|
+
<namePart></namePart>
|
775
|
+
<role>
|
776
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
777
|
+
</role>
|
778
|
+
</name>
|
779
|
+
<name type="conference">
|
780
|
+
<namePart></namePart>
|
781
|
+
<role>
|
782
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
783
|
+
</role>
|
784
|
+
</name>
|
785
|
+
<typeOfResource></typeOfResource>
|
786
|
+
<genre authority="marcgt"></genre>
|
787
|
+
<language>
|
788
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
789
|
+
</language>
|
790
|
+
<abstract></abstract>
|
791
|
+
<subject>
|
792
|
+
<topic></topic>
|
793
|
+
</subject>
|
794
|
+
<relatedItem type="host">
|
795
|
+
<titleInfo>
|
796
|
+
<title></title>
|
797
|
+
</titleInfo>
|
798
|
+
<identifier type="issn"></identifier>
|
799
|
+
<originInfo>
|
800
|
+
<publisher></publisher>
|
801
|
+
<dateIssued></dateIssued>
|
802
|
+
</originInfo>
|
803
|
+
<part>
|
804
|
+
<detail type="volume"></detail>
|
805
|
+
<detail type="number"></detail>
|
806
|
+
<pages type="start"></pages>
|
807
|
+
<pages type="end"></pages>
|
808
|
+
<date></date>
|
809
|
+
</part>
|
810
|
+
</relatedItem>
|
811
|
+
<location>
|
812
|
+
<url></url>
|
813
|
+
</location>
|
814
|
+
</mods>
|
815
|
+
</foxml:xmlContent>
|
816
|
+
</foxml:datastreamVersion>
|
817
|
+
<foxml:datastreamVersion ID="descMetadata.9" LABEL="" CREATED="2010-07-30T18:44:20.509Z" MIMETYPE="text/xml" SIZE="1602">
|
818
|
+
<foxml:xmlContent>
|
819
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
820
|
+
<titleInfo>
|
821
|
+
<title>Article for Archivist Eyes Only</title>
|
822
|
+
</titleInfo>
|
823
|
+
<name type="personal">
|
824
|
+
<namePart type="given">Sally</namePart>
|
825
|
+
<namePart type="family">Whocontributes</namePart>
|
826
|
+
<affiliation></affiliation>
|
827
|
+
<role>
|
828
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
829
|
+
</role>
|
830
|
+
</name>
|
831
|
+
<name type="corporate">
|
832
|
+
<namePart></namePart>
|
833
|
+
<role>
|
834
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
835
|
+
</role>
|
836
|
+
</name>
|
837
|
+
<name type="conference">
|
838
|
+
<namePart></namePart>
|
839
|
+
<role>
|
840
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
841
|
+
</role>
|
842
|
+
</name>
|
843
|
+
<typeOfResource></typeOfResource>
|
844
|
+
<genre authority="marcgt"></genre>
|
845
|
+
<language>
|
846
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
847
|
+
</language>
|
848
|
+
<abstract></abstract>
|
849
|
+
<subject>
|
850
|
+
<topic></topic>
|
851
|
+
</subject>
|
852
|
+
<relatedItem type="host">
|
853
|
+
<titleInfo>
|
854
|
+
<title></title>
|
855
|
+
</titleInfo>
|
856
|
+
<identifier type="issn"></identifier>
|
857
|
+
<originInfo>
|
858
|
+
<publisher></publisher>
|
859
|
+
<dateIssued></dateIssued>
|
860
|
+
</originInfo>
|
861
|
+
<part>
|
862
|
+
<detail type="volume"></detail>
|
863
|
+
<detail type="number"></detail>
|
864
|
+
<pages type="start"></pages>
|
865
|
+
<pages type="end"></pages>
|
866
|
+
<date></date>
|
867
|
+
</part>
|
868
|
+
</relatedItem>
|
869
|
+
<location>
|
870
|
+
<url></url>
|
871
|
+
</location>
|
872
|
+
</mods>
|
873
|
+
</foxml:xmlContent>
|
874
|
+
</foxml:datastreamVersion>
|
875
|
+
<foxml:datastreamVersion ID="descMetadata.10" LABEL="" CREATED="2010-07-30T18:44:35.086Z" MIMETYPE="text/xml" SIZE="1629">
|
876
|
+
<foxml:xmlContent>
|
877
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
878
|
+
<titleInfo>
|
879
|
+
<title>Article for Archivist Eyes Only</title>
|
880
|
+
</titleInfo>
|
881
|
+
<name type="personal">
|
882
|
+
<namePart type="given">Sally</namePart>
|
883
|
+
<namePart type="family">Whocontributes</namePart>
|
884
|
+
<affiliation>University of Contributions</affiliation>
|
885
|
+
<role>
|
886
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
887
|
+
</role>
|
888
|
+
</name>
|
889
|
+
<name type="corporate">
|
890
|
+
<namePart></namePart>
|
891
|
+
<role>
|
892
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
893
|
+
</role>
|
894
|
+
</name>
|
895
|
+
<name type="conference">
|
896
|
+
<namePart></namePart>
|
897
|
+
<role>
|
898
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
899
|
+
</role>
|
900
|
+
</name>
|
901
|
+
<typeOfResource></typeOfResource>
|
902
|
+
<genre authority="marcgt"></genre>
|
903
|
+
<language>
|
904
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
905
|
+
</language>
|
906
|
+
<abstract></abstract>
|
907
|
+
<subject>
|
908
|
+
<topic></topic>
|
909
|
+
</subject>
|
910
|
+
<relatedItem type="host">
|
911
|
+
<titleInfo>
|
912
|
+
<title></title>
|
913
|
+
</titleInfo>
|
914
|
+
<identifier type="issn"></identifier>
|
915
|
+
<originInfo>
|
916
|
+
<publisher></publisher>
|
917
|
+
<dateIssued></dateIssued>
|
918
|
+
</originInfo>
|
919
|
+
<part>
|
920
|
+
<detail type="volume"></detail>
|
921
|
+
<detail type="number"></detail>
|
922
|
+
<pages type="start"></pages>
|
923
|
+
<pages type="end"></pages>
|
924
|
+
<date></date>
|
925
|
+
</part>
|
926
|
+
</relatedItem>
|
927
|
+
<location>
|
928
|
+
<url></url>
|
929
|
+
</location>
|
930
|
+
</mods>
|
931
|
+
</foxml:xmlContent>
|
932
|
+
</foxml:datastreamVersion>
|
933
|
+
<foxml:datastreamVersion ID="descMetadata.11" LABEL="" CREATED="2010-07-30T18:44:35.836Z" MIMETYPE="text/xml" SIZE="1629">
|
934
|
+
<foxml:xmlContent>
|
935
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
936
|
+
<titleInfo>
|
937
|
+
<title>Article for Archivist Eyes Only</title>
|
938
|
+
</titleInfo>
|
939
|
+
<name type="personal">
|
940
|
+
<namePart type="given">Sally</namePart>
|
941
|
+
<namePart type="family">Whocontributes</namePart>
|
942
|
+
<affiliation>University of Contributions</affiliation>
|
943
|
+
<role>
|
944
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
945
|
+
</role>
|
946
|
+
</name>
|
947
|
+
<name type="corporate">
|
948
|
+
<namePart></namePart>
|
949
|
+
<role>
|
950
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
951
|
+
</role>
|
952
|
+
</name>
|
953
|
+
<name type="conference">
|
954
|
+
<namePart></namePart>
|
955
|
+
<role>
|
956
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
957
|
+
</role>
|
958
|
+
</name>
|
959
|
+
<typeOfResource></typeOfResource>
|
960
|
+
<genre authority="marcgt"></genre>
|
961
|
+
<language>
|
962
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
963
|
+
</language>
|
964
|
+
<abstract></abstract>
|
965
|
+
<subject>
|
966
|
+
<topic></topic>
|
967
|
+
</subject>
|
968
|
+
<relatedItem type="host">
|
969
|
+
<titleInfo>
|
970
|
+
<title></title>
|
971
|
+
</titleInfo>
|
972
|
+
<identifier type="issn"></identifier>
|
973
|
+
<originInfo>
|
974
|
+
<publisher></publisher>
|
975
|
+
<dateIssued></dateIssued>
|
976
|
+
</originInfo>
|
977
|
+
<part>
|
978
|
+
<detail type="volume"></detail>
|
979
|
+
<detail type="number"></detail>
|
980
|
+
<pages type="start"></pages>
|
981
|
+
<pages type="end"></pages>
|
982
|
+
<date></date>
|
983
|
+
</part>
|
984
|
+
</relatedItem>
|
985
|
+
<location>
|
986
|
+
<url></url>
|
987
|
+
</location>
|
988
|
+
</mods>
|
989
|
+
</foxml:xmlContent>
|
990
|
+
</foxml:datastreamVersion>
|
991
|
+
<foxml:datastreamVersion ID="descMetadata.12" LABEL="" CREATED="2010-07-30T18:44:49.574Z" MIMETYPE="text/xml" SIZE="1641">
|
992
|
+
<foxml:xmlContent>
|
993
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
994
|
+
<titleInfo>
|
995
|
+
<title>Article for Archivist Eyes Only</title>
|
996
|
+
</titleInfo>
|
997
|
+
<name type="personal">
|
998
|
+
<namePart type="given">Sally</namePart>
|
999
|
+
<namePart type="family">Whocontributes</namePart>
|
1000
|
+
<affiliation>University of Contributions</affiliation>
|
1001
|
+
<role>
|
1002
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
1003
|
+
</role>
|
1004
|
+
</name>
|
1005
|
+
<name type="corporate">
|
1006
|
+
<namePart></namePart>
|
1007
|
+
<role>
|
1008
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
1009
|
+
</role>
|
1010
|
+
</name>
|
1011
|
+
<name type="conference">
|
1012
|
+
<namePart></namePart>
|
1013
|
+
<role>
|
1014
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
1015
|
+
</role>
|
1016
|
+
</name>
|
1017
|
+
<typeOfResource></typeOfResource>
|
1018
|
+
<genre authority="marcgt"></genre>
|
1019
|
+
<language>
|
1020
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
1021
|
+
</language>
|
1022
|
+
<abstract></abstract>
|
1023
|
+
<subject>
|
1024
|
+
<topic>contributing</topic>
|
1025
|
+
</subject>
|
1026
|
+
<relatedItem type="host">
|
1027
|
+
<titleInfo>
|
1028
|
+
<title></title>
|
1029
|
+
</titleInfo>
|
1030
|
+
<identifier type="issn"></identifier>
|
1031
|
+
<originInfo>
|
1032
|
+
<publisher></publisher>
|
1033
|
+
<dateIssued></dateIssued>
|
1034
|
+
</originInfo>
|
1035
|
+
<part>
|
1036
|
+
<detail type="volume"></detail>
|
1037
|
+
<detail type="number"></detail>
|
1038
|
+
<pages type="start"></pages>
|
1039
|
+
<pages type="end"></pages>
|
1040
|
+
<date></date>
|
1041
|
+
</part>
|
1042
|
+
</relatedItem>
|
1043
|
+
<location>
|
1044
|
+
<url></url>
|
1045
|
+
</location>
|
1046
|
+
</mods>
|
1047
|
+
</foxml:xmlContent>
|
1048
|
+
</foxml:datastreamVersion>
|
1049
|
+
<foxml:datastreamVersion ID="descMetadata.13" LABEL="" CREATED="2010-07-30T18:44:51.884Z" MIMETYPE="text/xml" SIZE="1641">
|
1050
|
+
<foxml:xmlContent>
|
1051
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
1052
|
+
<titleInfo>
|
1053
|
+
<title>Article for Archivist Eyes Only</title>
|
1054
|
+
</titleInfo>
|
1055
|
+
<name type="personal">
|
1056
|
+
<namePart type="given">Sally</namePart>
|
1057
|
+
<namePart type="family">Whocontributes</namePart>
|
1058
|
+
<affiliation>University of Contributions</affiliation>
|
1059
|
+
<role>
|
1060
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
1061
|
+
</role>
|
1062
|
+
</name>
|
1063
|
+
<name type="corporate">
|
1064
|
+
<namePart></namePart>
|
1065
|
+
<role>
|
1066
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
1067
|
+
</role>
|
1068
|
+
</name>
|
1069
|
+
<name type="conference">
|
1070
|
+
<namePart></namePart>
|
1071
|
+
<role>
|
1072
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
1073
|
+
</role>
|
1074
|
+
</name>
|
1075
|
+
<typeOfResource></typeOfResource>
|
1076
|
+
<genre authority="marcgt"></genre>
|
1077
|
+
<language>
|
1078
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
1079
|
+
</language>
|
1080
|
+
<abstract></abstract>
|
1081
|
+
<subject>
|
1082
|
+
<topic>contributing</topic>
|
1083
|
+
</subject>
|
1084
|
+
<relatedItem type="host">
|
1085
|
+
<titleInfo>
|
1086
|
+
<title></title>
|
1087
|
+
</titleInfo>
|
1088
|
+
<identifier type="issn"></identifier>
|
1089
|
+
<originInfo>
|
1090
|
+
<publisher></publisher>
|
1091
|
+
<dateIssued></dateIssued>
|
1092
|
+
</originInfo>
|
1093
|
+
<part>
|
1094
|
+
<detail type="volume"></detail>
|
1095
|
+
<detail type="number"></detail>
|
1096
|
+
<pages type="start"></pages>
|
1097
|
+
<pages type="end"></pages>
|
1098
|
+
<date></date>
|
1099
|
+
</part>
|
1100
|
+
</relatedItem>
|
1101
|
+
<location>
|
1102
|
+
<url></url>
|
1103
|
+
</location>
|
1104
|
+
</mods>
|
1105
|
+
</foxml:xmlContent>
|
1106
|
+
</foxml:datastreamVersion>
|
1107
|
+
<foxml:datastreamVersion ID="descMetadata.14" LABEL="" CREATED="2010-07-30T18:44:56.253Z" MIMETYPE="text/xml" SIZE="1674">
|
1108
|
+
<foxml:xmlContent>
|
1109
|
+
<mods xmlns="http://www.loc.gov/mods/v3" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.3" xsi:schemaLocation="http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-3.xsd">
|
1110
|
+
<titleInfo>
|
1111
|
+
<title>Article for Archivist Eyes Only</title>
|
1112
|
+
</titleInfo>
|
1113
|
+
<name type="personal">
|
1114
|
+
<namePart type="given">Sally</namePart>
|
1115
|
+
<namePart type="family">Whocontributes</namePart>
|
1116
|
+
<affiliation>University of Contributions</affiliation>
|
1117
|
+
<role>
|
1118
|
+
<roleTerm authority="marcrelator" type="text">contributor</roleTerm>
|
1119
|
+
</role>
|
1120
|
+
</name>
|
1121
|
+
<name type="corporate">
|
1122
|
+
<namePart></namePart>
|
1123
|
+
<role>
|
1124
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
1125
|
+
</role>
|
1126
|
+
</name>
|
1127
|
+
<name type="conference">
|
1128
|
+
<namePart></namePart>
|
1129
|
+
<role>
|
1130
|
+
<roleTerm authority="marcrelator" type="text"></roleTerm>
|
1131
|
+
</role>
|
1132
|
+
</name>
|
1133
|
+
<typeOfResource></typeOfResource>
|
1134
|
+
<genre authority="marcgt"></genre>
|
1135
|
+
<language>
|
1136
|
+
<languageTerm authority="iso639-2b" type="code"></languageTerm>
|
1137
|
+
</language>
|
1138
|
+
<abstract></abstract>
|
1139
|
+
<subject>
|
1140
|
+
<topic>contributing</topic>
|
1141
|
+
<topic>exclusiveness</topic>
|
1142
|
+
</subject>
|
1143
|
+
<relatedItem type="host">
|
1144
|
+
<titleInfo>
|
1145
|
+
<title></title>
|
1146
|
+
</titleInfo>
|
1147
|
+
<identifier type="issn"></identifier>
|
1148
|
+
<originInfo>
|
1149
|
+
<publisher></publisher>
|
1150
|
+
<dateIssued></dateIssued>
|
1151
|
+
</originInfo>
|
1152
|
+
<part>
|
1153
|
+
<detail type="volume"></detail>
|
1154
|
+
<detail type="number"></detail>
|
1155
|
+
<pages type="start"></pages>
|
1156
|
+
<pages type="end"></pages>
|
1157
|
+
<date></date>
|
1158
|
+
</part>
|
1159
|
+
</relatedItem>
|
1160
|
+
<location>
|
1161
|
+
<url></url>
|
1162
|
+
</location>
|
1163
|
+
</mods>
|
1164
|
+
</foxml:xmlContent>
|
1165
|
+
</foxml:datastreamVersion>
|
1166
|
+
</foxml:datastream>
|
1167
|
+
<foxml:datastream ID="RELS-EXT" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
1168
|
+
<foxml:datastreamVersion ID="RELS-EXT.0" LABEL="" CREATED="2010-07-30T18:42:11.147Z" MIMETYPE="text/xml" SIZE="292">
|
1169
|
+
<foxml:xmlContent>
|
1170
|
+
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
1171
|
+
<rdf:Description rdf:about="info:fedora/hydrangea:fixture_archivist_only_mods_article">
|
1172
|
+
<hasModel xmlns="info:fedora/fedora-system:def/relations-external#" rdf:resource="info:fedora/afmodel:ModsAsset"></hasModel>
|
1173
|
+
</rdf:Description>
|
1174
|
+
</rdf:RDF>
|
1175
|
+
</foxml:xmlContent>
|
1176
|
+
</foxml:datastreamVersion>
|
1177
|
+
</foxml:datastream>
|
1178
|
+
<foxml:datastream ID="rightsMetadata" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
1179
|
+
<foxml:datastreamVersion ID="rightsMetadata.0" LABEL="" CREATED="2010-07-30T18:42:11.199Z" MIMETYPE="text/xml" SIZE="439">
|
1180
|
+
<foxml:xmlContent>
|
1181
|
+
<rightsMetadata xmlns="http://hydra-collab.stanford.edu/schemas/rightsMetadata/v1" version="0.1">
|
1182
|
+
<copyright>
|
1183
|
+
<human></human>
|
1184
|
+
</copyright>
|
1185
|
+
<access type="discover">
|
1186
|
+
<human></human>
|
1187
|
+
<machine></machine>
|
1188
|
+
</access>
|
1189
|
+
<access type="read">
|
1190
|
+
<human></human>
|
1191
|
+
<machine></machine>
|
1192
|
+
</access>
|
1193
|
+
<access type="edit">
|
1194
|
+
<human></human>
|
1195
|
+
<machine>
|
1196
|
+
<group>archivist</group>
|
1197
|
+
</machine>
|
1198
|
+
</access>
|
1199
|
+
</rightsMetadata>
|
1200
|
+
</foxml:xmlContent>
|
1201
|
+
</foxml:datastreamVersion>
|
1202
|
+
</foxml:datastream>
|
1203
|
+
<foxml:datastream ID="properties" STATE="A" CONTROL_GROUP="X" VERSIONABLE="true">
|
1204
|
+
<foxml:datastreamVersion ID="properties.0" LABEL="" CREATED="2010-07-30T18:42:11.253Z" MIMETYPE="text/xml" SIZE="56">
|
1205
|
+
<foxml:xmlContent>
|
1206
|
+
<fields>
|
1207
|
+
<depositor>archivist1@example.com</depositor>
|
1208
|
+
</fields>
|
1209
|
+
</foxml:xmlContent>
|
1210
|
+
</foxml:datastreamVersion>
|
1211
|
+
</foxml:datastream>
|
1212
|
+
</foxml:digitalObject>
|