stead 0.0.2
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.
- data/LICENSE +21 -0
- data/README.rdoc +75 -0
- data/Rakefile +72 -0
- data/VERSION +1 -0
- data/bin/csv2ead +70 -0
- data/examples/ncsu.rb +74 -0
- data/lib/stead/ead.rb +270 -0
- data/lib/stead/error.rb +6 -0
- data/lib/stead/stead.rb +80 -0
- data/lib/stead/templates/ead.xml +44 -0
- data/lib/stead/templates/ead.xsd +2728 -0
- data/lib/stead/templates/ncsu_ead.xml +69 -0
- data/lib/stead.rb +56 -0
- data/test/helper.rb +25 -0
- data/test/test_ead_bad_container_type.rb +42 -0
- data/test/test_ead_no_series.rb +89 -0
- data/test/test_ead_series.rb +42 -0
- data/test/test_stead.rb +43 -0
- metadata +167 -0
@@ -0,0 +1,44 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
2
|
+
<ead xsi:schemaLocation="urn:isbn:1-931666-22-9 http://www.loc.gov/ead/ead.xsd"
|
3
|
+
xmlns:ns2="http://www.w3.org/1999/xlink"
|
4
|
+
xmlns="urn:isbn:1-931666-22-9"
|
5
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
6
|
+
<eadheader findaidstatus="Completed" repositoryencoding="iso15511"
|
7
|
+
countryencoding="iso3166-1" dateencoding="iso8601">
|
8
|
+
<eadid></eadid>
|
9
|
+
<filedesc>
|
10
|
+
<titlestmt>
|
11
|
+
<titleproper>
|
12
|
+
Preliminary Inventory to the
|
13
|
+
</titleproper>
|
14
|
+
<author></author>
|
15
|
+
</titlestmt>
|
16
|
+
</filedesc>
|
17
|
+
<profiledesc>
|
18
|
+
<langusage>
|
19
|
+
Finding aid written in
|
20
|
+
<language langcode="eng" encodinganalog="Language">English.</language>
|
21
|
+
</langusage>
|
22
|
+
</profiledesc>
|
23
|
+
</eadheader>
|
24
|
+
<archdesc level="subgrp">
|
25
|
+
<did>
|
26
|
+
<unittitle>Preliminary Inventory to the</unittitle>
|
27
|
+
<unitid></unitid>
|
28
|
+
<langmaterial>
|
29
|
+
<language langcode="eng"/>
|
30
|
+
</langmaterial>
|
31
|
+
|
32
|
+
</did>
|
33
|
+
<accessrestrict >
|
34
|
+
<head>Access to Collection</head>
|
35
|
+
<p>
|
36
|
+
Collection is open for research; access requires at least 24 hours advance notice.
|
37
|
+
</p>
|
38
|
+
</accessrestrict>
|
39
|
+
<dsc>
|
40
|
+
|
41
|
+
</dsc>
|
42
|
+
</archdesc>
|
43
|
+
</ead>
|
44
|
+
|