-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path00000030.xml
4720 lines (4412 loc) · 269 KB
/
00000030.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<!--Created by Melanie Schlosser, Scholarly Resources Integration department, The Ohio State University Libraries.-->
<!--Based on UCSD's Complex Object Profile.-->
<!--<METS_Profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd">-->
<METS_Profile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/METS_Profile/ http://www.loc.gov/standards/mets/profile_docs/mets.profile.v1-2.xsd"
xmlns="http://www.loc.gov/METS_Profile/">
<URI LOCTYPE="URL">http://www.loc.gov/mets/profiles/00000030.xml</URI>
<title>Electronic Text Edition Archiving Profile</title>
<abstract> The Electronic Text Edition Archiving Profile is used to describe an entire
electronic text edition, including contextual materials, for the purposes of preservation,
reuse, and citation. </abstract>
<date>2010-04-12T00:00:00</date>
<contact>
<name>Melanie Schlosser</name>
<address>The Ohio State University Libraries</address>
<email>[email protected]</email>
</contact>
<registration_info regDate="2010-05-10T08:00:00" regURI="http://www.loc.gov/mets/profiles/00000030.xml"/>
<related_profile RELATIONSHIP="Is based on" URI="http://www.loc.gov/mets/profiles/00000017.xml"
>UCSD Complex Object Profile</related_profile>
<extension_schema>
<name>MODS</name>
<URI>http://www.loc.gov/standards/mods/v3/mods-3-2.xsd</URI>
<context>mets/dmdSec/mdWrap/xmlData</context>
<note>Used for descriptive metadata representing the intellectual object(s).</note>
</extension_schema>
<extension_schema>
<name>Dublin Core</name>
<URI>http://dublincore.org/schemas/xmls/simpledc20021212.xsd</URI>
<context>mets/dmdSec/mdWrap/xmlData</context>
<note>Used for descriptive metadata representing the intellectual object(s).</note>
</extension_schema>
<extension_schema>
<name>CopyrightMD</name>
<URI>http://www.cdlib.org/inside/projects/rights/schema/copyrightMD.xsd</URI>
<context>mets/amdSec/rightsMD/mdWrap/xmlData</context>
<note>Used for recording intellectual property rights.</note>
</extension_schema>
<extension_schema>
<name>Creative Commons RDF</name>
<URI>http://creativecommons.org/ns#</URI>
<context>mets/amdSec/rightsMD/mdWrap/xmlData</context>
<note>Used for recording intellectual property rights via a Creative Commons license</note>
</extension_schema>
<description_rules>
<p>All applications of MODS in OSU METS records adhere to the MODS User Guidelines published
by the Library of Congress's Network Development and MARC Standards Office.</p>
<p>MODS usage in OSU METS records is also informed by The Digital Library Federation /
Aquifer Implementation Guidelines for Shareable MODS Records.</p>
</description_rules>
<controlled_vocabularies>
<!--This vocabulary is not exhaustive, and is suggestive rather than directive. Due to the nature of these projects,
each one will be unique, and many will contain unusual file types and functions. Future uses of this profile
can diverge from the suggested list when necessary, and can add new values to the list.-->
<vocabulary>
<name>File USE attribute values</name>
<maintenance_agency>The Ohio State University Libraries</maintenance_agency>
<values>
<value>text</value>
<value>text (uncorrected OCR)</value>
<value>text (corrected OCR)</value>
<value>text (keyed)</value>
<value>text, encoded (TEI)</value>
<value>scripts and program files (XSLT)</value>
<value>scripts and program files (other)</value>
<value>website files</value>
<value>website files (HTML)</value>
<value>website files (other)</value>
<value>metadata</value>
<value>images</value>
<value>scanned page images (master)</value>
<value>scanned page images (derivative)</value>
<value>contextual images (master)</value>
<value>contextual images (derivative)</value>
<value>video</value>
<value>video (master)</value>
<value>video (derivative)</value>
<value>video (streaming)</value>
<value>audio</value>
<value>audio (master)</value>
<value>audio (derivative)</value>
<value>audio (streaming)</value>
<value>PDF</value>
</values>
<context ID="vc1" RELATEDMAT="fileSec2">
<p>mets/fileSec/fileGrp/@USE</p>
<p>mets/fileSec/fileGrp/file/@USE</p>
</context>
<description>
<p>These are the values suggested for <file> and
<fileGrp> USE attributes for digital objects conforming to this
profile.</p>
</description>
</vocabulary>
</controlled_vocabularies>
<structural_requirements>
<metsRootElement>
<requirement ID="metsRoot1">
<p>The root <mets> element must include a LABEL attribute value. </p>
</requirement>
<requirement ID="metsRoot2">
<p>The root <mets> element must include a PROFILE attribute value.
</p>
</requirement>
<requirement ID="metsRoot3">
<p>The root <mets> element must include an OBJID attribute value that
uniquely identifies the METS instance.</p>
</requirement>
<requirement ID="metsRoot4">
<p>The root <mets> element must include namespace declarations and associated
schema locations for every XML schema employed in the mets instance document.</p>
</requirement>
</metsRootElement>
<metsHdr>
<requirement ID="metsHdr1">
<p>A METS record conforming to this profile must contain a <metsHdr>
element. </p>
</requirement>
<requirement ID="metsHdr2">
<p>The <metsHdr> element must contain the CREATEDATE attribute. </p>
</requirement>
<requirement ID="metsHdr3">
<p>The <metsHdr> element must contain at least one
<agent> with the ROLE attribute value <OTHER>,
OTHERROLE attribute value <project manager.>, and a TYPE
attribute. This element should be used to name the manager of the e-text
encoding project. </p>
</requirement>
<requirement ID="metsHdr4">
<p>The <metsHdr> element must contain at least one
<agent> with the ROLE attribute value <CREATOR>, and
a TYPE attribute. This element should be used to name the creator of the METS
document.</p>
</requirement>
<requirement ID="metsHdr5">
<p>The <metsHdr> element must contain an <agent> with
the ROLE attribute value <CUSTODIAN>, and a TYPE attribute value
<ORGANIZATION>. This element should identify The Ohio State
University Libraries as the custodian of the METS object.</p>
</requirement>
<requirement ID="metsHdr6">
<p>The <agent> element must contain the <name> element,
and a <note> element containing the email address of the
individual or organization named. </p>
</requirement>
<requirement ID="metsHdr7">
<p>The <metsHdr> element should, but is not required to, contain a
LASTMODDATE attribute reflecting the date of the last modification to the METS
record. </p>
</requirement>
<requirement ID="metsHdr8">
<p>The <metsHdr> element may, but is not required to, contain an
<altRecordID> with TYPE attribute value <LCCN>. This
should be used to record the Library of Congress Call Number for the digital
object, if applicable.</p>
</requirement>
</metsHdr>
<dmdSec>
<requirement ID="dmdSec1">
<p>A METS record conforming to this profile must contain at least one
<dmdSec> containing a <mdWrap> with
<xmlData> for each semantic component of the e-text edition. For
example, an edition that consists of a TEI-encoded text, an audio recording of
that text, and a contextual essay would have at least three
<dmdSec>s. The required dmdSec/mdWrap/xmlData must contain
elements from the Metadata Object Description Schema (MODS)</p>
</requirement>
<requirement ID="dmdSec2">
<p>The METS record may contain additional <dmdSec>s containing
non-MODS descriptive metadata for a semantic component if desired.</p>
</requirement>
<requirement ID="dmdSec3">
<p>All <dmdSec> elements must contain an ID attribute.</p>
</requirement>
<requirement ID="dmdSec4">
<p>All <dmdSec> elements must contain a GROUPID attribute that
identifies the semantic component being described.</p>
</requirement>
<requirement ID="dmdSec5">
<p>All <mdWrap> elements within <dmdSec> must contain a
LABEL attribute that identifies the descriptive record by subject and by format.
E.g. <Preservation video description (MODS)>.</p>
</requirement>
</dmdSec>
<!--There is no technical metadata required for these METS documents. While technical metadata is necessary for
preservation of files, bitstream preservation is not the goal of this profile. The resulting METS document is
meant to describe the project as a whole, and the way the pieces fit together. Any necessary technical metadata
should be captured in other METS documents or a local preservation system such as DSpace.-->
<amdSec>
<requirement ID="amdSec1">
<p>A METS record conforming to this profile must have an <amdSec>
section. The <amdSec> section must contain at least one
rightsMD/mdWrap/xmlData section If different pieces of the project have
different copyright information, there should be a <rightsMD>
entry for each one. The copyright information can take any valid XML format,
such as a copyrightMD record or an RDF-based Creative Commons license. </p>
</requirement>
<requirement ID="amdSec2">
<p>All <rightsMD> elements must contain an ID attribute.</p>
</requirement>
</amdSec>
<!--The fileSec organizes items in two ways. Items that are physically related, such as master images of manuscript
pages, are collected in a fileGrp. More than one layer of fileGrps may be used. For example, there may be an image fileGrp
that contains fileGrps for master images and derivative images. GROUPID attributes on file elements are used to link
semantically related items, such as images (master and derivatives) of page one. Most files should be linked to using the FLocat
element. If desired, the raw (unencoded) text created by keying or (corrected) OCR may be included in the METS document
in this second. The file/FContent/binData elements should be used for this purpose. -->
<fileSec>
<requirement ID="fileSec1">
<p>The <fileSec> for a compliant METS record must contain one, or
more, <fileGrp> elements. </p>
</requirement>
<requirement ID="fileSec2">
<p>Each <fileGrp> may include a file USE attribute, representing the
intended use of the referenced file(s). If the <fileGrp> does not
include a USE attribute, the individual <file>s underneath it
must.</p>
</requirement>
<requirement ID="fileSec3">
<p>Each <fileGrp> may include an ADMID attribute linking it to the
appropriate rights metadata. If the <fileGrp> does not include an
ADMID attribute, the individual <file>s underneath it must.</p>
</requirement>
<requirement ID="fileSec4">
<p>A <file> element may, but is not required to contain a GROUPID
attribute that links the element with <file> elements in other
$lt;fileGrp>s. </p>
</requirement>
<requirement ID="fileSec5">
<p>Each <file> may include a file USE attribute, representing the
intended use of the referenced file. If the <fileGrp> does not
include a USE attribute, the individual <file>s underneath it
must.</p>
</requirement>
<requirement ID="fileSec6">
<p>Each <file> may include an ADMID attribute linking it to the
appropriate rights metadata. If the <fileGrp> does not include an
ADMID attribute, the individual <file>s underneath it must.</p>
</requirement>
<requirement ID="fileSec7">
<p>Each <file> element must contain a MIMETYPE attribute with a value
drawn from IANA's MIME Media Types.</p>
</requirement>
<requirement ID="fileSec8">
<p>Each <file> element may include a SEQ attribute if desired. </p>
</requirement>
<requirement ID="fileSec9">
<p>A <file> element may, but is not required to contain a SEQ
attribute. This attribute is used to identify a sequence among related items
within a file group.</p>
</requirement>
<requirement ID="fileSec11">
<p>Each <fileGrp> and <file> must include an ID
attribute to uniquely identify it.</p>
</requirement>
<requirement ID="fileSec12">
<p><FLocat> elements must have an xlink:href attribute and a LOCTYPE
attribute. Since the METS document describes a self-contained preservation copy
of the project, the value of LOCTYPE should be <OTHER> and the
value of the xlink:href attribute should be a relative link to the file.</p>
</requirement>
<requirement ID="fileSec13">
<p>Every file in the 'package' needs to be listed in the <fileSec>,
including associated metadata and behavior files.</p>
</requirement>
</fileSec>
<structMap>
<requirement ID="structMap1">
<p>We will not present detailed specifications for the structMap since its content and structure is highly
dependent on the nature of the project. The structMap(s) should be logical in nature, and should present the semantic components
of the edition in a meaningful way, while linking them to the appropriate file(s) in the fileSec. For example, for a project that
involved encoding the text of a diary and presenting it along with page images and audio, one possible structMap would
present a series of diary entries. Each entry would be labeled meaningfully (with the date, say), and would point to the page image(s)
and sections of the audio and encoded text that correspond with the entry in question. The guide for deciding how to present the
project in the structMap section should be the ways in which a user might want to interact with its logical components.</p>
</requirement>
</structMap>
<structLink>
<requirement ID="structLink1">
<p>This profile stipulates no requirements for the <structLink>
element. </p>
</requirement>
</structLink>
<behaviorSec>
<!--The behaviorSec should be used in cases where some of the files act on other files to produce logical components
such as dynamically-generated 'views' of a text. The file or files to be acted upon should be placed in a separate structMap
and linked to via the STRUCTID attribute in the behavior element. All files referenced in the behaviorSec should also be
listed in the fileSec.-->
<requirement ID="behaviorSec1">
<p>The <behaviorSec> element will contain a LABEL attribute that
identifies the behavior(s) being described. Similar behaviors (e.g. XSLT
transformations) should be grouped within a single <behaviorSec>.
</p>
</requirement>
<requirement ID="behaviorSec2">
<p>The <behavior> element will use the STRUCTID attribute to link to
the portion of the structMap that is being acted upon.</p>
</requirement>
<requirement ID="behaviorSec3">
<p>The <behavior> element will contain a BTYPE attribute to identify
the type of behavior being described, and a LABEL attribute.</p>
</requirement>
<requirement ID="behaviorSec4">
<p>The <interfaceDef> and <mechanism> elements will
contain LABEL, LOCTYPE and xlink:href attributes and will link to external
files. The same specifications for LOCTYPE and xlink:href from the
<fileSec> should be followed. </p>
</requirement>
</behaviorSec>
<multiSection>
<requirement ID="multi2">
<p>Only the <div> element will reference metadata in the
<dmdSec> sections. That is, descriptive metadata is always and
only expressed in conjunction with division of the <structMap> and
not in conjunction with the content file(s). </p>
</requirement>
</multiSection>
</structural_requirements>
<technical_requirements>
<content_files>
<requirement>
<p>All associated content files should be packaged with the METS document and linked
via relative links.</p>
</requirement>
</content_files>
<behavior_files>
<requirement>
<p>All associated behavior files should be packaged with the METS document and
linked via relative links.</p>
</requirement>
</behavior_files>
<metadata_files>
<requirement>
<p>All associated metadata files should be packaged with the METS document and
linked via relative links.</p>
</requirement>
<requirement>
<p>Associated metadata files should conform to a recognized schema or DTD.</p>
</requirement>
</metadata_files>
</technical_requirements>
<tool>
<description>
<p>This profile was designed to describe an archival 'package' consisting of all of the
component parts of a complex electronic text project. The package is meant to be
deposited in a preservation repository such as Fedora or DSpace.</p>
</description>
</tool>
<Appendix NUMBER="1">
<mets:mets OBJID="unique id for the entire METS object" ID="sldfijsoidfjsildfjsd"
LABEL="E-Text Edition of the Journal of Samuel Cox, Archival Version"
PROFILE="OSU E-text Archiving Profile" xmlns:mets="http://www.loc.gov/METS/"
xmlns:mods="http://www.loc.gov/mods/v3" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:premis="http://www.loc.gov/standards/premis"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/METS/
http://www.loc.gov/mets/mets.xsd
http://www.loc.gov/mods/v3
http://www.loc.gov/standards/mods/v3/mods-3-0.xsd
http://www.loc.gov/standards/premis
http://www.loc.gov/standards/premis/PREMIS-v1-0.xsd">
<mets:metsHdr ID="HDR1" CREATEDATE="2009-01-02T14:30:00"
LASTMODDATE="2009-01-02T14:30:00">
<mets:agent ID="HDR2" ROLE="OTHER" OTHERROLE="project manager" TYPE="INDIVIDUAL">
<mets:name>H. Lewis Ulman</mets:name>
<mets:note>[email protected]</mets:note>
</mets:agent>
<mets:agent ID="HDR3" ROLE="CREATOR" TYPE="INDIVIDUAL">
<mets:name>Melanie Schlosser</mets:name>
<mets:note>[email protected]</mets:note>
<mets:note>I created this record as a test case for describing multi-part
electronic text editions</mets:note>
</mets:agent>
<mets:agent ID="HDR4" ROLE="CUSTODIAN" TYPE="ORGANIZATION">
<mets:name>The Ohio State University Libraries</mets:name>
<mets:note>[email protected]</mets:note>
</mets:agent>
</mets:metsHdr>
<!--DESCRIPTIVE METADATA FOR THE EDITION-->
<mets:dmdSec ID="dmdID1" ADMID="amdID3" GROUPID="edition">
<mets:mdWrap MDTYPE="MODS" LABEL="Edition description (MODS)">
<mets:xmlData>
<mods:mods xmlns="http://www.loc.gov/mods/v3"
xmlns:xlink="http://www.w3.org/TR/xlink"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.loc.gov/mods/v3
http://www.loc.gov/standards/mods/mods.xsd">
<mods:titleInfo>
<mods:title>Samuel Sullivan Cox's "Journal of a Tour to Europe"
(1851)</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart> Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>H. Lewis Ulman</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>software, multimedia</mods:typeOfResource>
<mods:subject authority="lcsh">
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
</mods:name>
<mods:topic>Europe -- Description and travel</mods:topic>
<mods:topic>Travelers' writings, American</mods:topic>
</mods:subject>
<mods:originInfo>
<mods:dateCreated>2007-2009</mods:dateCreated>
<!--Is this date correct?-->
<mods:publisher>The Ohio State University</mods:publisher>
</mods:originInfo>
<mods:abstract>Recorded in a leather-bound notebook now held in the Rare
Books and Manuscripts Library at The Ohio State University, Samuel
Sullivan Cox's "Journal of a Tour to Europe" (1851) recounts a
"grand tour" of Europe and the Orient. Cox (1824–1889) served as a
Democratic congressman in the United States House of Representative
from 1856 until his death, save for a few short interruptions, first
representing his native Ohio and then, from 1868 onward, his adopted
state of New York. In May 1851, Cox was a twenty-six-year-old Brown
University graduate who had moved back to Ohio to practice law. On
May 7, he and his wife Julia (née Buckingham, whom he married in
October 1849), along with her brother Philo and a cousin Lucy, set
sail on a long-delayed honeymoon trip. Cox's manuscript journal
records his experiences and reflections during the tour and serves
as a sketch pad for an expanded account that Cox published the
following year as A Buckeye Abroad; or, Wanderings in Europe and in
the Orient (1852). In Cox's notes about each stage of his party's
journey, twenty-first-century readers will find insights into
historical and cultural milieux removed in time and sensibility from
our own—even as we recognize long-enduring conventions of travel and
tourism as well as familiar dynamics of cross-cultural encounters.
This electronic edition of Cox's journal provides access to a unique
historical document as well as several tools for examining what
happens when artifacts in one medium are represented in another
medium. The edition consists of two related parts: the project Web
site contains ancillary materials that document the project or
provide alternative access to some materials, such as images of the
manuscript pages, that are also incorporated into the edition
proper; the textual edition contains an editorial introduction and
several alternate views of an annotated transcription of Cox's
journal that follows the Text Encoding Initiative (TEI) P4
Guidelines. The edition also provides scalable images of the
manuscript pages and an audio recording of the text. Partial draft
versions of the edition were created in undergraduate and graduate
courses offered by H. Lewis Ulman, Associate Professor of English at
The Ohio State University. The courses provided students with an
opportunity to explore issues of textuality and mediation that arise
when our cultural archives spread from page to screen and from
library shelves to networked databases. </mods:abstract>
<mods:relatedItem type="original">
<mods:titleInfo>
<mods:title>Journal of a tour to Europe : May 6/51</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource manuscript="yes">text</mods:typeOfResource>
<mods:physicalDescription>
<mods:extent>[81] leaves ; 17 cm</mods:extent>
</mods:physicalDescription>
<mods:abstract>Manuscript journal of the European tour of Samuel
Sullivan Cox; includes 2 newspaper clippings about the English
House of Commons. Trip lasted from May 7, 1851 to July 18, 1851
and includes visits to England, France, Italy and Malta</mods:abstract>
<location>
<physicalLocation>The Ohio State University Rare Books and
Manuscripts Library</physicalLocation>
</location>
<mods:identifier type="lccn">SPEC.RARE.73</mods:identifier>
<mods:identifier type="OCLC">243780843</mods:identifier>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<mets:dmdSec ID="dmdID2" GROUPID="edition">
<mets:mdWrap MDTYPE="DC" LABEL="Edition description (DC)">
<mets:xmlData>
<dc:dc xmlns="http://purl.org/dc/elements/1.1/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://dublincore.org/schemas/xmls/qdc/dc.xsd
http://dublincore.org/schemas/xmls/qdc/dc.xsd">
<!--See note about title in MODS record-->
<dc:title>Samuel Sullivan Cox's "Journal of a Tour to Europe" (1851)</dc:title>
<dc:creator type="author">Cox, Samuel Sullivan, 1824-1889</dc:creator>
<dc:contributor type="editor">Ulman, Lewis</dc:contributor>
<dc:subject type="lcsh">Europe -- Description and travel</dc:subject>
<dc:subject type="lcsh">Travelers' writings, American</dc:subject>
<dc:date type="issued">2007-2009</dc:date>
<dc:description type="abstract"><!--Need prose desc from Louie--></dc:description>
<dc:type>other</dc:type>
<dc:publisher>The Ohio State University</dc:publisher>
<dc:rights><!--Need rights statement from Louie--></dc:rights>
<dc:relation type="isbasedon">Cox, Samuel Sullivan, 1824-1889. Journal
of a tour to Europe : May 6/51. OCLC # 243780843.</dc:relation>
</dc:dc>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<!--DESCRIPTIVE METADATA FOR THE VIDEO OF HARRY CAMPBELL PERFORMING PRESERVATION ACTIVITIES ON THE JOURNAL-->
<mets:dmdSec ID="dmdID3" GROUPID="preservationVideo">
<mets:mdWrap MDTYPE="MODS" LABEL="Preservation video description (MODS)">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Video of preservation activities on Cox
journal</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Campbell, Harry</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Ulman, Lewis</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>moving image</mods:typeOfResource>
<mods:originInfo>
<mods:dateCreated>13 November 2006</mods:dateCreated>
<mods:dateCreated>28 November 2006</mods:dateCreated>
<mods:dateCreated>13 December 2006</mods:dateCreated>
<mods:dateCreated>6 January 2007</mods:dateCreated>
<mods:publisher>The Ohio State University</mods:publisher>
</mods:originInfo>
<mods:tableOfContents>Assessing the journal; Planning the work;
Numbering pages; Lifting paste-downs; Disbinding the text block;
Repairing folds; Resewing 1st signature; Joining signatures; Kettle
stitch; Preparing new boards; Preparing new binding; Finishing the
binding</mods:tableOfContents>
<mods:subject authority="lcsh">
<mods:topic>Books -- Conservation and restoration</mods:topic>
</mods:subject>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<!--DESCRIPTIVE METADATA FOR THE DIGITIZED JOURNAL-->
<mets:dmdSec ID="dmdID4" GROUPID="journalPageImages">
<mets:mdWrap MDTYPE="MODS" LABEL="Description of digitized journal (MODS)">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Samuel Sullivan Cox's "Journal of a Tour to Europe"
(1851) (digital images)</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="corporate">
<mods:namePart>The Ohio State University Rare Books and Manuscripts
Library</mods:namePart>
<mods:role>
<mods:roleTerm>digitizer</mods:roleTerm>
</mods:role>
</mods:name>
<mods:subject authority="lcsh">
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
</mods:name>
<mods:topic>Europe -- Description and travel</mods:topic>
<mods:topic>Travelers' writings, American</mods:topic>
</mods:subject>
<mods:typeOfResource>still image</mods:typeOfResource>
<mods:physicalDescription>
<mods:reformattingQuality>preservation</mods:reformattingQuality>
<mods:digitalOrigin>reformatted digital</mods:digitalOrigin>
</mods:physicalDescription>
<mods:relatedItem type="original">
<mods:titleInfo>
<mods:title>Journal of a Tour to Europe</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource manuscript="yes">text</mods:typeOfResource>
<mods:physicalDescription>
<mods:extent>[81] leaves ; 17 cm</mods:extent>
</mods:physicalDescription>
<mods:abstract>Manuscript journal of the European tour of Samuel
Sullivan Cox; includes 2 newspaper clippings about the English
House of Commons. Trip lasted from May 7, 1851 to July 18, 1851
and includes visits to England, France, Italy and Malta</mods:abstract>
<mods:location>
<mods:physicalLocation>The Ohio State University Rare Books and
Manuscripts Library</mods:physicalLocation>
</mods:location>
<mods:identifier type="lccn">SPEC.RARE.73</mods:identifier>
<mods:identifier type="OCLC">243780843</mods:identifier>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<!--DESCRIPTIVE METADATA FOR ENCODED TEXT OF THE JOURNAL-->
<mets:dmdSec ID="dmdID5" GROUPID="journalText">
<mets:mdWrap MDTYPE="MODS" LABEL="Description of digital text of the journal (MODS)">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Samuel Sullivan Cox's "Journal of a Tour to Europe"
(1851): Electronic Text Edition</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Ulman, Lewis</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Andrea Avenido</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Puja Batra-Wells</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>MariaTeresa Beltran-Aponte</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Karen M. Beyer</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Mike Bubenik</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Frances Caroline Buschur</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Johaun Cheng</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Katrina F. Cook</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Bill W. Dantowitz</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Sam Eilerman</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Nate Ellis</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Rachel Fouch</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Brian Keller</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Riley Lease</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Mike Liddy</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Nick Long</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Jennifer Lee Schneider</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Victoria R. Urban</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Derrick Whan</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Derek Craig Zoladz</mods:namePart>
<mods:role>
<mods:roleTerm>editor</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>text</mods:typeOfResource>
<mods:subject authority="lcsh">
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
</mods:name>
<mods:topic>Europe -- Description and travel</mods:topic>
<mods:topic>Travelers' writings, American</mods:topic>
</mods:subject>
<mods:physicalDescription>
<mods:digitalOrigin>reformatted digital</mods:digitalOrigin>
</mods:physicalDescription>
<mods:relatedItem type="original">
<mods:titleInfo>
<mods:title>Journal of a tour to Europe : May 6/51</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource manuscript="yes">text</mods:typeOfResource>
<mods:physicalDescription>
<mods:extent>[81] leaves ; 17 cm</mods:extent>
</mods:physicalDescription>
<mods:abstract>Manuscript journal of the European tour of Samuel
Sullivan Cox; includes 2 newspaper clippings about the English
House of Commons. Trip lasted from May 7, 1851 to July 18, 1851
and includes visits to England, France, Italy and Malta</mods:abstract>
<mods:location>
<mods:physicalLocation>The Ohio State University Rare Books and
Manuscripts Library</mods:physicalLocation>
</mods:location>
<mods:identifier type="lccn">SPEC.RARE.73</mods:identifier>
<mods:identifier type="OCLC">243780843</mods:identifier>
</mods:relatedItem>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<!--DESCRIPTIVE METADATA FOR THE PROJECT WEBSITE-->
<mets:dmdSec ID="dmdID6" GROUPID="projectWebsite">
<mets:mdWrap MDTYPE="MODS" LABEL="Description of the project website (MODS)">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Samuel Sullivan Cox's "Journal of a Tour to Europe"
(1851) </mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Ulman, Lewis</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>software, multimedia</mods:typeOfResource>
<mods:originInfo>
<mods:dateCaptured>2009</mods:dateCaptured>
</mods:originInfo>
<mods:tableOfContents>Home; Link to the journal; Images of the MS pages;
Restoration of the journal; Maps of Cox's tour; Markup guidelines;
Guide to Cox's hand; Acknowledgements; Comments and corrections;
About the editors</mods:tableOfContents>
<mods:subject authority="lcsh">
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
</mods:name>
<mods:topic>Europe -- Description and travel</mods:topic>
<mods:topic>Travelers' writings, American</mods:topic>
</mods:subject>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<!--DESCRIPTIVE METADATA FOR THE AUDIO VERSION OF THE JOURNAL-->
<mets:dmdSec ID="dmdID7" GROUPID="audioJournal">
<mets:mdWrap MDTYPE="MODS"
LABEL="Description of the audio version of the journal (MODS)">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Samuel Sullivan Cox's "Journal of a Tour to Europe"
(1851) (audio)</mods:title>
</mods:titleInfo>
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
<mods:role>
<mods:roleTerm>author</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Paul Kotheimer</mods:namePart>
<mods:role>
<mods:roleTerm>Audio engineer</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>MaríaTeresa Beltran-Aponte</mods:namePart>
<mods:role>
<mods:roleTerm>Narrator</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Frances Buschur</mods:namePart>
<mods:role>
<mods:roleTerm>Narrator</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Katrina Cook</mods:namePart>
<mods:role>
<mods:roleTerm>Narrator</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>Jennifer Schneider</mods:namePart>
<mods:role>
<mods:roleTerm>Narrator</mods:roleTerm>
</mods:role>
</mods:name>
<mods:name type="personal">
<mods:namePart>H. Lewis Ulman</mods:namePart>
<mods:role>
<mods:roleTerm>Narrator</mods:roleTerm>
</mods:role>
</mods:name>
<mods:typeOfResource>sound recording-nonmusical</mods:typeOfResource>
<mods:originInfo>
<mods:dateCaptured><!--When was it recorded?--></mods:dateCaptured>
</mods:originInfo>
<mods:subject authority="lcsh">
<mods:name type="personal">
<mods:namePart>Cox, Samuel Sullivan</mods:namePart>
<mods:namePart type="date">1824-1889</mods:namePart>
</mods:name>
<mods:topic>Europe -- Description and travel</mods:topic>
<mods:topic>Travelers' writings, American</mods:topic>
</mods:subject>
</mods:mods>
</mets:xmlData>
</mets:mdWrap>
</mets:dmdSec>
<!--DESCRIPTIVE METADATA FOR THE ARCHIVAL PACKAGE (USED TO GENERATE HTML ITEM FOR DSPACE)-->
<mets:dmdSec ID="dmdID8">
<mets:mdWrap MDTYPE="MODS"
LABEL="Description of the archival version of the edition (MODS)">
<mets:xmlData>
<mods:mods>
<mods:titleInfo>
<mods:title>Samuel Sullivan Cox's "Journal of a Tour to Europe"
(1851) (audio)</mods:title>