eac 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/.rvmrc +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +27 -0
- data/LICENSE.txt +21 -0
- data/README.md +19 -0
- data/Rakefile +2 -0
- data/data/99166-w66708pc.xml +116 -0
- data/data/99166-w6bk5j60.xml +66 -0
- data/data/berlin_bach.xml +159 -0
- data/data/rid_331_pid_EACP328.c.xml +168 -0
- data/data/sia_walcott.xml +776 -0
- data/data/yale_cadell.xml +414 -0
- data/eac.gemspec +24 -0
- data/lib/eac.rb +87 -0
- data/lib/eac/version.rb +3 -0
- data/spec/eac_spec.rb +74 -0
- metadata +110 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e6a408172ca5fec294b6b197a35000c8d04e79c0
|
4
|
+
data.tar.gz: 80e2517466deceeb9a7b83baa1efa69ca37198f8
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 442488985c3625daae9c79d6486694aafc9c9c388199f06eb13050dd4f26d477e33b6b19bb2f239253e8c3c4395020ad0be2a66b6765d7621a926508ddea25ba
|
7
|
+
data.tar.gz: 63815f226e6dc2019d0a47fe78f1fdf59dd17a36b8cd0031931d7bd0847809316d5220ac929f2f203f29c3b5bd75e6371a3e2cec3ce7d887265604fc748e1bd0
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/.rvmrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rvm use 2.1.0@eac --create
|
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
eac (0.0.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: https://rubygems.org/
|
8
|
+
specs:
|
9
|
+
diff-lcs (1.2.5)
|
10
|
+
rake (10.1.0)
|
11
|
+
rspec (2.14.1)
|
12
|
+
rspec-core (~> 2.14.0)
|
13
|
+
rspec-expectations (~> 2.14.0)
|
14
|
+
rspec-mocks (~> 2.14.0)
|
15
|
+
rspec-core (2.14.7)
|
16
|
+
rspec-expectations (2.14.5)
|
17
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
18
|
+
rspec-mocks (2.14.5)
|
19
|
+
|
20
|
+
PLATFORMS
|
21
|
+
ruby
|
22
|
+
|
23
|
+
DEPENDENCIES
|
24
|
+
bundler (~> 1.6)
|
25
|
+
eac!
|
26
|
+
rake
|
27
|
+
rspec
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2014, Sarah Allen, Sarah Mei
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
### Encoded Archival Context (EAC)
|
2
|
+
#### Corporate Bodies, Persons, and Families (CPF)
|
3
|
+
|
4
|
+
This library enables parsing of [EAC-CPF files](http://www3.iath.virginia.edu/eac/cpf/tagLibrary/cpfTagLibrary.html).
|
5
|
+
|
6
|
+
The initial focus is to read EAC-CPF files that represent an individual person, which will have a <cpfDescription> node. The <cpfDescription> (Corporate body, person or family description) contains information on the name structures, descriptive elements, and relationships.
|
7
|
+
|
8
|
+
|
9
|
+
* <identity> - Identity. Complex structure containing the name or names used by the entity over the course of the entity’s existence. Contains a repeatable <nameEntry> element for different names, and a repeatable <nameEntryParallel> element for more than one <nameEntry> expressed in different languages. Required.
|
10
|
+
* <description> - Description. Contains formal description elements parallel to those in ISAAR (CPF) for the description of the entity. An additional <localDescription> allows for local implementation of additional descriptive information not included in the other <description> elements. Optional.
|
11
|
+
* <relations> - Relations. Contains one or more references to or descriptions of related corporate bodies, persons or families <cpfRelation>, functions <functionRelation>, or resources <resourceRelation>. Optional.
|
12
|
+
|
13
|
+
|
14
|
+
#### data
|
15
|
+
Sample data files from [Staatsbibliothek zu Berlin](http://eac.staatsbibliothek-berlin.de/tag-library/examples.html)
|
16
|
+
|
17
|
+
* [berlin_bach.xml](http://eac.staatsbibliothek-berlin.de/fileadmin/user_upload/schema/eac.p026064_d20120523_t171914_1.xml)
|
18
|
+
* [yale_cadell.xml](http://eac.staatsbibliothek-berlin.de/fileadmin/user_upload/schema/yale_cadell.xml)
|
19
|
+
* [sia_walcott.xml](http://eac.staatsbibliothek-berlin.de/fileadmin/user_upload/schema/SIA_Charles_Walcott_EAC.xml)
|
data/Rakefile
ADDED
@@ -0,0 +1,116 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><eac-cpf xmlns="urn:isbn:1-931666-33-4" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xlink="http://www.w3.org/1999/xlink"><control><recordId>http://n2t.net/ark:/99166/w66708pc</recordId><otherRecordId localType="http://socialarchive.iath.virginia.edu/control/term#MergedRecord">WHi-122416089.r05</otherRecordId><otherRecordId localType="http://socialarchive.iath.virginia.edu/control/term#MergedRecord">OCLC-LAF-15365373.c</otherRecordId><otherRecordId localType="http://viaf.org/viaf/terms#viafID">70573852</otherRecordId><maintenanceStatus>revised</maintenanceStatus><maintenanceAgency>
|
2
|
+
<agencyName>SNAC: Social Networks and Archival Context Project</agencyName>
|
3
|
+
</maintenanceAgency><languageDeclaration>
|
4
|
+
<language languageCode="eng">English</language>
|
5
|
+
<script scriptCode="Latn">Latin Alphabet</script>
|
6
|
+
</languageDeclaration><conventionDeclaration><citation>VIAF</citation></conventionDeclaration><maintenanceHistory>
|
7
|
+
<maintenanceEvent>
|
8
|
+
<eventType>revised</eventType>
|
9
|
+
<eventDateTime>2013-10-19</eventDateTime>
|
10
|
+
<agentType>machine</agentType>
|
11
|
+
<agent>CPF merge program</agent>
|
12
|
+
<eventDescription>Merge v2.0</eventDescription>
|
13
|
+
</maintenanceEvent>
|
14
|
+
</maintenanceHistory><sources>
|
15
|
+
<source xlink:href="http://www.worldcat.org/oclc/122416089" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
16
|
+
|
17
|
+
<source xlink:href="http://www.worldcat.org/oclc/15365373" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
18
|
+
<source xlink:href="http://viaf.org/viaf/70573852" xlink:type="simple"/></sources></control><cpfDescription><identity><entityType>person</entityType><nameEntry xml:lang="en-Latn">
|
19
|
+
<part>Gorman, Arthur D.</part>
|
20
|
+
<authorizedForm>WorldCat</authorizedForm>
|
21
|
+
</nameEntry><nameEntry xml:lang="en-Latn">
|
22
|
+
<part>Gorman, Arthur.</part>
|
23
|
+
<authorizedForm>WorldCat</authorizedForm>
|
24
|
+
</nameEntry><nameEntry localType="http://viaf.org/viaf/terms#mainHeadings/data/text"><part>Gorman, Arthur Daniel, 1946-</part><authorizedForm>VIAF</authorizedForm></nameEntry></identity><description><existDates><dateRange><fromDate localType="http://socialarchive.iath.virginia.edu/control/term#Birth" standardDate="1946">1946</fromDate></dateRange></existDates></description><relations><cpfRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#associatedWith" xlink:href="http://n2t.net/ark:/99166/w62v8cz6" xlink:role="http://socialarchive.iath.virginia.edu/control/term#CorporateBody" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink">
|
25
|
+
<relationEntry>Committee for Miners.</relationEntry>
|
26
|
+
|
27
|
+
</cpfRelation><cpfRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#associatedWith" xlink:href="http://n2t.net/ark:/99166/w6100wv3" xlink:role="http://socialarchive.iath.virginia.edu/control/term#Person" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink">
|
28
|
+
<relationEntry>Ivanova, Petya N.</relationEntry>
|
29
|
+
|
30
|
+
</cpfRelation><cpfRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#associatedWith" xlink:href="http://n2t.net/ark:/99166/w600568s" xlink:role="http://socialarchive.iath.virginia.edu/control/term#CorporateBody" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink">
|
31
|
+
<relationEntry>Lafayette College (Easton, Pa.). Faculty.</relationEntry>
|
32
|
+
|
33
|
+
</cpfRelation><cpfRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#sameAs" xlink:href="http://viaf.org/viaf/70573852" xlink:role="http://socialarchive.iath.virginia.edu/control/term#Person" xlink:type="simple"><relationEntry>Gorman, Arthur Daniel, 1946-</relationEntry></cpfRelation><cpfRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#sameAs" xlink:href="http://www.worldcat.org/wcidentities/lccn-n91-085172" xlink:role="http://socialarchive.iath.virginia.edu/control/term#Person" xlink:type="simple"/><cpfRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#sameAs" xlink:href="http://id.loc.gov/authorities/names/n91085172" xlink:role="http://socialarchive.iath.virginia.edu/control/term#Person" xlink:type="simple"/><resourceRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#referencedIn" xlink:href="http://www.worldcat.org/oclc/122416089" xlink:role="http://socialarchive.iath.virginia.edu/control/term#ArchivalResource" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink">
|
34
|
+
<relationEntry>Committee for Miners. Records, 1963-1965.</relationEntry>
|
35
|
+
<objectXMLWrap>
|
36
|
+
<mods xmlns="http://www.loc.gov/mods/v3">
|
37
|
+
<recordInfo>
|
38
|
+
<recordOrigin>WorldCat:122416089</recordOrigin>
|
39
|
+
<recordContentSource>ISIL:WHi</recordContentSource>
|
40
|
+
</recordInfo>
|
41
|
+
<name>
|
42
|
+
<namePart>Committee for Miners.</namePart>
|
43
|
+
<role>
|
44
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/cre">Creator</roleTerm>
|
45
|
+
</role>
|
46
|
+
</name>
|
47
|
+
<name>
|
48
|
+
<namePart>Wiley, Peter B.</namePart>
|
49
|
+
<role>
|
50
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/cre">Creator</roleTerm>
|
51
|
+
</role>
|
52
|
+
</name>
|
53
|
+
<titleInfo>
|
54
|
+
<title>Records, 1963-1965.</title>
|
55
|
+
</titleInfo>
|
56
|
+
<abstract>Records of an organization formed to raise funds for legal and economic assistance to unemployed miners in eastern Kentucky, together with related personal papers of Peter B. Wiley, a field worker for CFM. </abstract>
|
57
|
+
<name>
|
58
|
+
<namePart>Unknown</namePart>
|
59
|
+
<role>
|
60
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/rps">Repository</roleTerm>
|
61
|
+
</role>
|
62
|
+
</name>
|
63
|
+
</mods>
|
64
|
+
</objectXMLWrap>
|
65
|
+
<descriptiveNote>
|
66
|
+
<p>
|
67
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader06">p</span>
|
68
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader07">c</span>
|
69
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader08">a</span>
|
70
|
+
</p>
|
71
|
+
</descriptiveNote>
|
72
|
+
</resourceRelation><resourceRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#creatorOf" xlink:href="http://www.worldcat.org/oclc/15365373" xlink:role="http://socialarchive.iath.virginia.edu/control/term#ArchivalResource" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink">
|
73
|
+
<relationEntry>Gorman, Arthur D. [Articles, book reviews, etc.].</relationEntry>
|
74
|
+
<objectXMLWrap>
|
75
|
+
<mods xmlns="http://www.loc.gov/mods/v3">
|
76
|
+
<recordInfo>
|
77
|
+
<recordOrigin>WorldCat:15365373</recordOrigin>
|
78
|
+
<recordContentSource>ISIL:OCLC-LAF</recordContentSource>
|
79
|
+
</recordInfo>
|
80
|
+
<name>
|
81
|
+
<namePart>Gorman, Arthur D.</namePart>
|
82
|
+
<role>
|
83
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/cre">Creator</roleTerm>
|
84
|
+
</role>
|
85
|
+
</name>
|
86
|
+
<name>
|
87
|
+
<namePart>Ivanova, Petya N.</namePart>
|
88
|
+
<role>
|
89
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/cre">Creator</roleTerm>
|
90
|
+
</role>
|
91
|
+
</name>
|
92
|
+
<name>
|
93
|
+
<namePart>Lafayette College (Easton, Pa.). Faculty.</namePart>
|
94
|
+
<role>
|
95
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/cre">Creator</roleTerm>
|
96
|
+
</role>
|
97
|
+
</name>
|
98
|
+
<titleInfo>
|
99
|
+
<title>[Articles, book reviews, etc.]. 1981-</title>
|
100
|
+
</titleInfo>
|
101
|
+
<name>
|
102
|
+
<namePart>Lafayette College</namePart>
|
103
|
+
<role>
|
104
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/rps">Repository</roleTerm>
|
105
|
+
</role>
|
106
|
+
</name>
|
107
|
+
</mods>
|
108
|
+
</objectXMLWrap>
|
109
|
+
<descriptiveNote>
|
110
|
+
<p>
|
111
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader06">a</span>
|
112
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader07">c</span>
|
113
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader08"> </span>
|
114
|
+
</p>
|
115
|
+
</descriptiveNote>
|
116
|
+
</resourceRelation><resourceRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#creatorOf" xlink:role="http://socialarchive.iath.virginia.edu/control/term#BibliographicResource" xlink:type="simple"><relationEntry>Waves, caustics, and Thom's theorem, 1980</relationEntry></resourceRelation></relations></cpfDescription></eac-cpf>
|
@@ -0,0 +1,66 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><eac-cpf xmlns="urn:isbn:1-931666-33-4" xmlns:owl="http://www.w3.org/2002/07/owl#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xlink="http://www.w3.org/1999/xlink"><control><recordId>http://n2t.net/ark:/99166/w6bk5j60</recordId><otherRecordId localType="http://socialarchive.iath.virginia.edu/control/term#MergedRecord">OCLC-ORU-19747537.c</otherRecordId><maintenanceStatus>revised</maintenanceStatus><maintenanceAgency>
|
2
|
+
<agencyName>SNAC: Social Networks and Archival Context Project</agencyName>
|
3
|
+
</maintenanceAgency><languageDeclaration>
|
4
|
+
<language languageCode="eng">English</language>
|
5
|
+
<script scriptCode="Latn">Latin Alphabet</script>
|
6
|
+
</languageDeclaration><maintenanceHistory>
|
7
|
+
<maintenanceEvent>
|
8
|
+
<eventType>revised</eventType>
|
9
|
+
<eventDateTime>2013-10-20</eventDateTime>
|
10
|
+
<agentType>machine</agentType>
|
11
|
+
<agent>CPF merge program</agent>
|
12
|
+
<eventDescription>Merge v2.0</eventDescription>
|
13
|
+
</maintenanceEvent>
|
14
|
+
</maintenanceHistory><sources>
|
15
|
+
<source xlink:href="http://www.worldcat.org/oclc/19747537" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
16
|
+
</sources></control><cpfDescription><identity><entityType>person</entityType><nameEntry xml:lang="en-Latn">
|
17
|
+
<part>Gorman, Martin W., 1853-1926.</part>
|
18
|
+
<authorizedForm>WorldCat</authorizedForm>
|
19
|
+
</nameEntry></identity><description><existDates>
|
20
|
+
<dateRange>
|
21
|
+
<fromDate localType="http://socialarchive.iath.virginia.edu/control/term#Birth" standardDate="1853">1853</fromDate>
|
22
|
+
<toDate localType="http://socialarchive.iath.virginia.edu/control/term#Death" standardDate="1926">1926</toDate>
|
23
|
+
</dateRange>
|
24
|
+
</existDates><localDescription localType="http://socialarchive.iath.virginia.edu/control/term#AssociatedSubject">
|
25
|
+
<term>Botanists</term>
|
26
|
+
</localDescription><biogHist>
|
27
|
+
<p>Botanist and curator, 1905-1926, of the Oregon Forestry Building built for the Lewis and Clark Exposition.</p>
|
28
|
+
<citation>From the description of Martin W. Gorman papers, 1872-1929. (University of Oregon Libraries). WorldCat record id: 19747537</citation>
|
29
|
+
</biogHist>
|
30
|
+
</description><relations><cpfRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#associatedWith" xlink:href="http://n2t.net/ark:/99166/w6tn344d" xlink:role="http://socialarchive.iath.virginia.edu/control/term#CorporateBody" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink">
|
31
|
+
<relationEntry>Mazamas.</relationEntry>
|
32
|
+
|
33
|
+
</cpfRelation><resourceRelation xlink:arcrole="http://socialarchive.iath.virginia.edu/control/term#creatorOf" xlink:href="http://www.worldcat.org/oclc/19747537" xlink:role="http://socialarchive.iath.virginia.edu/control/term#ArchivalResource" xlink:type="simple" xmlns:xlink="http://www.w3.org/1999/xlink">
|
34
|
+
<relationEntry>Gorman, Martin W., 1853-1926. Martin W. Gorman papers, 1872-1929.</relationEntry>
|
35
|
+
<objectXMLWrap>
|
36
|
+
<mods xmlns="http://www.loc.gov/mods/v3">
|
37
|
+
<recordInfo>
|
38
|
+
<recordOrigin>WorldCat:19747537</recordOrigin>
|
39
|
+
<recordContentSource>ISIL:OCLC-ORU</recordContentSource>
|
40
|
+
</recordInfo>
|
41
|
+
<name>
|
42
|
+
<namePart>Gorman, Martin W., 1853-1926.</namePart>
|
43
|
+
<role>
|
44
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/cre">Creator</roleTerm>
|
45
|
+
</role>
|
46
|
+
</name>
|
47
|
+
<titleInfo>
|
48
|
+
<title>Martin W. Gorman papers, 1872-1929.</title>
|
49
|
+
</titleInfo>
|
50
|
+
<abstract>Consists of correspondence, journals, annotated plant lists and reports, published articles, and collected printed material. </abstract>
|
51
|
+
<name>
|
52
|
+
<namePart>University of Oregon Libraries</namePart>
|
53
|
+
<role>
|
54
|
+
<roleTerm valueURI="http://id.loc.gov/vocabulary/relators/rps">Repository</roleTerm>
|
55
|
+
</role>
|
56
|
+
</name>
|
57
|
+
</mods>
|
58
|
+
</objectXMLWrap>
|
59
|
+
<descriptiveNote>
|
60
|
+
<p>
|
61
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader06">p</span>
|
62
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader07">c</span>
|
63
|
+
<span localType="http://socialarchive.iath.virginia.edu/control/term#Leader08"> </span>
|
64
|
+
</p>
|
65
|
+
</descriptiveNote>
|
66
|
+
</resourceRelation></relations></cpfDescription></eac-cpf>
|
@@ -0,0 +1,159 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<eac-cpf xmlns="urn:isbn:1-931666-33-4" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:isbn:1-931666-33-4 http://eac.staatsbibliothek-berlin.de/schema/cpf.xsd">
|
3
|
+
<control>
|
4
|
+
<recordId>DE-1a-2539</recordId>
|
5
|
+
<otherRecordId localType="028a">11850553X, 134318897, 131201948, 130989215</otherRecordId>
|
6
|
+
<otherRecordId localType="028c">4004110-4</otherRecordId>
|
7
|
+
<maintenanceStatus>revised</maintenanceStatus>
|
8
|
+
<maintenanceAgency>
|
9
|
+
<agencyCode>DE-1a</agencyCode>
|
10
|
+
<agencyName>Staatsbibliothek zu Berlin - Preußischer Kulturbesitz / Handschriftenabteilung</agencyName>
|
11
|
+
</maintenanceAgency>
|
12
|
+
<languageDeclaration>
|
13
|
+
<language languageCode="ger">Deutsch</language>
|
14
|
+
<script scriptCode="Latn">Latin Alphabet</script>
|
15
|
+
</languageDeclaration>
|
16
|
+
<maintenanceHistory>
|
17
|
+
<maintenanceEvent>
|
18
|
+
<eventType>created</eventType>
|
19
|
+
<eventDateTime standardDateTime="1995-06-23"/>
|
20
|
+
<agentType>machine</agentType>
|
21
|
+
<agent>ZKA</agent>
|
22
|
+
</maintenanceEvent>
|
23
|
+
<maintenanceEvent>
|
24
|
+
<eventType>revised</eventType>
|
25
|
+
<eventDateTime standardDateTime="2010-04-27"/>
|
26
|
+
<agentType>machine</agentType>
|
27
|
+
<agent>ZKA</agent>
|
28
|
+
</maintenanceEvent>
|
29
|
+
</maintenanceHistory>
|
30
|
+
<sources>
|
31
|
+
<source>
|
32
|
+
<sourceEntry>M; LCAuth</sourceEntry>
|
33
|
+
</source>
|
34
|
+
</sources>
|
35
|
+
</control>
|
36
|
+
<cpfDescription>
|
37
|
+
<identity>
|
38
|
+
<entityType>person</entityType>
|
39
|
+
<nameEntry>
|
40
|
+
<part>Bach, Johann Sebastian</part>
|
41
|
+
</nameEntry>
|
42
|
+
<nameEntryParallel>
|
43
|
+
<nameEntry>
|
44
|
+
<part>J. S. B.</part>
|
45
|
+
</nameEntry>
|
46
|
+
<nameEntry>
|
47
|
+
<part>Bach, ...</part>
|
48
|
+
</nameEntry>
|
49
|
+
<nameEntry>
|
50
|
+
<part>Bach, G. S.</part>
|
51
|
+
</nameEntry>
|
52
|
+
<nameEntry>
|
53
|
+
<part>Bach, Giovanni Sebastiano</part>
|
54
|
+
</nameEntry>
|
55
|
+
<nameEntry>
|
56
|
+
<part>Bach, Iogann Sebast'jan</part>
|
57
|
+
</nameEntry>
|
58
|
+
<nameEntry>
|
59
|
+
<part>Bach, J. S.</part>
|
60
|
+
</nameEntry>
|
61
|
+
<nameEntry>
|
62
|
+
<part>Bach, Jean-Sebastien</part>
|
63
|
+
</nameEntry>
|
64
|
+
<nameEntry>
|
65
|
+
<part>Bach, Johann-Sebastian</part>
|
66
|
+
</nameEntry>
|
67
|
+
<nameEntry>
|
68
|
+
<part>Bach, Sebastian</part>
|
69
|
+
</nameEntry>
|
70
|
+
<nameEntry>
|
71
|
+
<part>Bach, Jan Sebastian</part>
|
72
|
+
</nameEntry>
|
73
|
+
<nameEntry>
|
74
|
+
<part>Bach, Jean S.</part>
|
75
|
+
</nameEntry>
|
76
|
+
<nameEntry>
|
77
|
+
<part>Bach, Johannes S.</part>
|
78
|
+
</nameEntry>
|
79
|
+
<nameEntry>
|
80
|
+
<part>Bach, Johannes Sebastian</part>
|
81
|
+
</nameEntry>
|
82
|
+
<nameEntry>
|
83
|
+
<part>Bach, Jean-Sébastien</part>
|
84
|
+
</nameEntry>
|
85
|
+
<nameEntry>
|
86
|
+
<part>Bach, Joh.-Seb.</part>
|
87
|
+
</nameEntry>
|
88
|
+
<nameEntry>
|
89
|
+
<part>Bach, Joh. Sebas.</part>
|
90
|
+
</nameEntry>
|
91
|
+
<nameEntry>
|
92
|
+
<part>Bach, Johann Seb.</part>
|
93
|
+
</nameEntry>
|
94
|
+
<nameEntry>
|
95
|
+
<part>Bach, Joh. Sebast.</part>
|
96
|
+
</nameEntry>
|
97
|
+
<nameEntry>
|
98
|
+
<part>Bach, Johann S.</part>
|
99
|
+
</nameEntry>
|
100
|
+
<nameEntry>
|
101
|
+
<part>Bach, Iogann Sebastjan</part>
|
102
|
+
</nameEntry>
|
103
|
+
<nameEntry>
|
104
|
+
<part>Bach, Jean Sebastien</part>
|
105
|
+
</nameEntry>
|
106
|
+
<nameEntry>
|
107
|
+
<part>Bach, Johann Sebastian</part>
|
108
|
+
</nameEntry>
|
109
|
+
<nameEntry>
|
110
|
+
<part>Bach, Joh. Seb.</part>
|
111
|
+
</nameEntry>
|
112
|
+
</nameEntryParallel>
|
113
|
+
</identity>
|
114
|
+
<description>
|
115
|
+
<existDates>
|
116
|
+
<dateRange>
|
117
|
+
<fromDate standardDate="1685">1685</fromDate>
|
118
|
+
<toDate standardDate="1750">1750</toDate>
|
119
|
+
</dateRange>
|
120
|
+
<descriptiveNote>
|
121
|
+
<p>21.03.1685-28.07.1750</p>
|
122
|
+
</descriptiveNote>
|
123
|
+
</existDates>
|
124
|
+
<localDescription localType="sex">
|
125
|
+
<term>Male</term>
|
126
|
+
</localDescription>
|
127
|
+
<places>
|
128
|
+
<place>
|
129
|
+
<placeRole>Place of Birth</placeRole>
|
130
|
+
<placeEntry>Eisenach</placeEntry>
|
131
|
+
</place>
|
132
|
+
<place>
|
133
|
+
<placeRole>Place of Death</placeRole>
|
134
|
+
<placeEntry>Leipzig</placeEntry>
|
135
|
+
</place>
|
136
|
+
<place>
|
137
|
+
<placeRole>Nationality</placeRole>
|
138
|
+
<placeEntry countryCode="DE">Deutschland</placeEntry>
|
139
|
+
</place>
|
140
|
+
</places>
|
141
|
+
<occupations>
|
142
|
+
<occupation>
|
143
|
+
<term>Komponist</term>
|
144
|
+
</occupation>
|
145
|
+
<occupation>
|
146
|
+
<term>Musiker</term>
|
147
|
+
</occupation>
|
148
|
+
</occupations>
|
149
|
+
</description>
|
150
|
+
<relations>
|
151
|
+
<functionRelation/>
|
152
|
+
<functionRelation>
|
153
|
+
<descriptiveNote>
|
154
|
+
<p/>
|
155
|
+
</descriptiveNote>
|
156
|
+
</functionRelation>
|
157
|
+
</relations>
|
158
|
+
</cpfDescription>
|
159
|
+
</eac-cpf>
|