sufia 0.0.1.pre1 → 0.0.1.pre2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (151) hide show
  1. data/.gitignore +1 -2
  2. data/Gemfile +2 -1
  3. data/README.md +19 -15
  4. data/Rakefile +2 -0
  5. data/app/controllers/batch_controller.rb +2 -3
  6. data/app/controllers/contact_form_controller.rb +1 -0
  7. data/app/controllers/dashboard_controller.rb +2 -2
  8. data/app/controllers/generic_files_controller.rb +24 -12
  9. data/app/controllers/mailbox_controller.rb +2 -2
  10. data/app/controllers/single_use_link_controller.rb +5 -5
  11. data/app/controllers/users_controller.rb +10 -10
  12. data/app/helpers/{application_helper.rb → sufia_helper.rb} +5 -13
  13. data/app/models/audit_job.rb +3 -4
  14. data/app/models/batch.rb +2 -0
  15. data/app/models/batch_update_job.rb +4 -6
  16. data/app/models/checksum_audit_log.rb +2 -0
  17. data/app/models/contact_form.rb +2 -0
  18. data/app/models/content_delete_event_job.rb +1 -1
  19. data/app/models/content_deposit_event_job.rb +2 -2
  20. data/app/models/content_new_version_event_job.rb +2 -2
  21. data/app/models/content_restored_version_event_job.rb +2 -2
  22. data/app/models/content_update_event_job.rb +2 -2
  23. data/app/models/datastreams/properties_datastream.rb +1 -1
  24. data/app/models/domain_term.rb +1 -0
  25. data/app/models/event_job.rb +1 -1
  26. data/app/models/generic_file.rb +5 -4
  27. data/app/models/local_authority.rb +1 -0
  28. data/app/models/local_authority_entry.rb +1 -0
  29. data/app/models/single_use_link.rb +2 -2
  30. data/app/models/user_edit_profile_event_job.rb +1 -1
  31. data/app/models/user_follow_event_job.rb +2 -2
  32. data/app/models/user_unfollow_event_job.rb +2 -2
  33. data/app/models/version_committer.rb +1 -0
  34. data/app/views/_footer.html.erb +21 -0
  35. data/app/views/_logo.html.erb +3 -0
  36. data/app/views/_masthead.html.erb +38 -0
  37. data/app/views/_user_util_links.html.erb +14 -43
  38. data/app/views/catalog/_document_list.html.erb +0 -7
  39. data/app/views/catalog/_home_text.html.erb +4 -4
  40. data/app/views/catalog/_recent_document.html.erb +5 -5
  41. data/app/views/contact_form/_directions.html.erb +4 -0
  42. data/app/views/contact_form/new.html.erb +2 -4
  43. data/app/views/dashboard/_document_list.html.erb +1 -8
  44. data/app/views/dashboard/_facets.html.erb +1 -1
  45. data/app/views/dashboard/_index_partials/_list_files.html.erb +1 -1
  46. data/app/views/dashboard/_index_partials/_thumbnail_display.html.erb +6 -6
  47. data/app/views/dashboard/_search_form.html.erb +1 -1
  48. data/app/views/dashboard/index.html.erb +26 -25
  49. data/app/views/generic_files/_media_display.html.erb +5 -5
  50. data/app/views/generic_files/_permission.html.erb +11 -11
  51. data/app/views/generic_files/edit.html.erb +10 -8
  52. data/app/views/generic_files/show.html.erb +16 -12
  53. data/app/views/layouts/error.html.erb +2 -53
  54. data/app/views/layouts/hydra-head.html.erb +2 -21
  55. data/app/views/mailbox/index.html.erb +1 -1
  56. data/app/views/static/about.html.erb +2 -65
  57. data/app/views/static/help.html.erb +1 -721
  58. data/app/views/users/_search_form.html.erb +1 -1
  59. data/app/views/users/edit.html.erb +6 -3
  60. data/config/locales/sufia.en.yml +6 -0
  61. data/config/routes.rb +1 -3
  62. data/features/browse_dashboard_files.feature +1 -1
  63. data/features/display_dashboard.feature +1 -1
  64. data/features/step_definitions/fixture_steps.rb +2 -2
  65. data/features/step_definitions/user_steps.rb +12 -8
  66. data/features/support/env.rb +9 -0
  67. data/features/support/paths.rb +21 -21
  68. data/lib/generators/sufia/sufia_generator.rb +46 -4
  69. data/lib/generators/sufia/templates/catalog_controller.rb +2 -2
  70. data/lib/generators/sufia/templates/config/redis_config.rb +20 -0
  71. data/lib/generators/sufia/templates/config/sufia.rb +29 -0
  72. data/lib/generators/sufia/templates/migrations/add_groups_to_users.rb +0 -4
  73. data/lib/sufia.rb +22 -15
  74. data/lib/sufia/active_fedora/redis.rb +49 -0
  75. data/lib/{generators/sufia/templates/config/active_record_base_redis.rb → sufia/active_record/redis.rb} +1 -16
  76. data/lib/sufia/controller.rb +1 -2
  77. data/lib/sufia/http_header_auth.rb +9 -0
  78. data/lib/sufia/role_mapper.rb +1 -0
  79. data/lib/sufia/user.rb +24 -6
  80. data/lib/sufia/version.rb +1 -1
  81. data/lib/tasks/fixtures.rake +245 -0
  82. data/spec/.gitignore +1 -0
  83. data/spec/active_fedora/unsaved_digital_object_spec.rb +2 -2
  84. data/spec/config/host_to_vhost_spec.rb +8 -8
  85. data/spec/controllers/batch_controller_spec.rb +6 -6
  86. data/spec/controllers/catalog_controller_spec.rb +2 -0
  87. data/spec/controllers/dashboard_controller_spec.rb +13 -10
  88. data/spec/controllers/downloads_controller_spec.rb +8 -8
  89. data/spec/controllers/generic_files_controller_spec.rb +46 -44
  90. data/spec/controllers/mailbox_controller_spec.rb +6 -12
  91. data/spec/controllers/sessions_controller_spec.rb +8 -6
  92. data/spec/controllers/single_use_link_controller_spec.rb +9 -14
  93. data/spec/controllers/users_controller_spec.rb +49 -49
  94. data/spec/{factories.rb → factories/users.rb} +6 -3
  95. data/spec/fixtures/scholarsphere/scholarsphere_test2.foxml.erb +2 -2
  96. data/spec/fixtures/scholarsphere/scholarsphere_test3.foxml.erb +2 -2
  97. data/spec/fixtures/scholarsphere/scholarsphere_test4.foxml.erb +2 -2
  98. data/spec/fixtures/scholarsphere/scholarsphere_test6.foxml.erb +2 -2
  99. data/spec/fixtures/scholarsphere/sufia_scholarsphere1.descMeta.txt +12 -0
  100. data/spec/fixtures/scholarsphere/sufia_scholarsphere1.foxml.erb +79 -0
  101. data/spec/fixtures/scholarsphere/sufia_scholarsphere1.txt +1 -0
  102. data/spec/fixtures/scholarsphere/{scholarsphere_test1.foxml.erb → sufia_test1.foxml.erb} +6 -6
  103. data/spec/fixtures/scholarsphere/{scholarsphere_test5.foxml.erb → sufia_test5.foxml.erb} +5 -5
  104. data/spec/fixtures/scholarsphere_generic_stub.foxml.erb +5 -5
  105. data/spec/lib/{scholarsphere → sufia}/id_service_spec.rb +5 -5
  106. data/spec/lib/{scholarsphere → sufia}/role_mapper_spec.rb +5 -2
  107. data/spec/models/audit_job_spec.rb +1 -1
  108. data/spec/models/batch_spec.rb +2 -2
  109. data/spec/models/batch_update_job_spec.rb +5 -5
  110. data/spec/models/checksum_audit_log_spec.rb +1 -1
  111. data/spec/models/event_jobs_spec.rb +19 -19
  112. data/spec/models/file_content_datastream_spec.rb +6 -6
  113. data/spec/models/fits_datastream_spec.rb +1 -1
  114. data/spec/models/generic_file_spec.rb +8 -9
  115. data/spec/models/local_authority_spec.rb +3 -3
  116. data/spec/models/single_use_link_spec.rb +5 -5
  117. data/spec/models/unzip_job_spec.rb +1 -1
  118. data/spec/models/user_spec.rb +5 -26
  119. data/spec/rake/scholarsphere_fixtures_spec.rb +13 -12
  120. data/spec/routing/route_spec.rb +4 -41
  121. data/spec/spec_helper.rb +14 -4
  122. data/spec/support/Gemfile +21 -0
  123. data/spec/support/config/redis.yml +6 -0
  124. data/spec/support/lib/generators/test_app_generator.rb +40 -0
  125. data/sufia.gemspec +4 -2
  126. data/tasks/cucumber.rake +0 -6
  127. data/tasks/jetty.rake +40 -0
  128. data/tasks/scholarsphere-dev.rake +57 -17
  129. data/tasks/scholarsphere-fixtures.rake +16 -63
  130. metadata +74 -55
  131. data/.rvmrc +0 -59
  132. data/LICENSE +0 -22
  133. data/app/assets/images/site_images/logo_psuss_logotype.png +0 -0
  134. data/app/assets/images/site_images/logo_psuss_shield.png +0 -0
  135. data/lib/generators/sufia/templates/config/active_fedora_base_redis.rb +0 -54
  136. data/lib/sufia/ldap.rb +0 -123
  137. data/spec/fixtures/hydra_test_default_partials.foxml.xml +0 -80
  138. data/spec/fixtures/hydra_test_generic_content.foxml.xml +0 -138
  139. data/spec/fixtures/hydra_test_generic_image.foxml.xml +0 -395
  140. data/spec/fixtures/hydra_test_no_model.foxml.xml +0 -79
  141. data/spec/fixtures/hydrangea_fixture_archivist_only_mods_article.foxml.xml +0 -1212
  142. data/spec/fixtures/hydrangea_fixture_file_asset1.foxml.xml +0 -4946
  143. data/spec/fixtures/hydrangea_fixture_mods_article1.foxml.xml +0 -234
  144. data/spec/fixtures/hydrangea_fixture_mods_article2.foxml.xml +0 -177
  145. data/spec/fixtures/hydrangea_fixture_mods_article3.foxml.xml +0 -170
  146. data/spec/fixtures/hydrangea_fixture_mods_dataset1.foxml.xml +0 -187
  147. data/spec/fixtures/hydrangea_fixture_uploaded_svg1.foxml.xml +0 -676
  148. data/spec/fixtures/hydrus_admin_class1.foxml.xml +0 -176
  149. data/spec/fixtures/libra-oa_1.foxml.xml +0 -2324
  150. data/spec/fixtures/libra-oa_2.foxml.xml +0 -2422
  151. data/spec/fixtures/libra-oa_7.foxml.xml +0 -1735
@@ -1,1212 +0,0 @@
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>