libis-format 0.9.10 → 0.9.11
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 +4 -4
- data/data/ead.xsd +1 -2
- data/data/xlink.xsd +75 -0
- data/lib/libis/format/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5876c63db8cfe2a3b1140a9611fea4a2681511d5
|
|
4
|
+
data.tar.gz: 6bf8da75b67128c62482f0f26fe17aafe136dd01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3c1e3c7fa3fc63d7d18a4a1023103a40cb74bb71b25495983fc8a13f062eb9792cf77c8ce76682d3daed0d7e55116a8e8d6b905112d2960eb4b6958ab0ab76e7
|
|
7
|
+
data.tar.gz: 60b28a0ec4d8bcc1e13129d945e919745094c44f97c207e732df4c3c655f47d01186fab28655d8c627dd10190b5bd76cda83903d56ca448bfec3dec92b23b4eb
|
data/data/ead.xsd
CHANGED
|
@@ -68,8 +68,7 @@
|
|
|
68
68
|
<xs:schema elementFormDefault="qualified" targetNamespace="urn:isbn:1-931666-22-9"
|
|
69
69
|
xmlns="urn:isbn:1-931666-22-9" xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
70
70
|
xmlns:xs="http://www.w3.org/2001/XMLSchema">
|
|
71
|
-
<xs:import namespace="http://www.w3.org/1999/xlink"
|
|
72
|
-
schemaLocation="http://www.loc.gov/standards/xlink/xlink.xsd"/>
|
|
71
|
+
<xs:import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink.xsd"/>
|
|
73
72
|
<xs:attributeGroup name="am.date.normal">
|
|
74
73
|
<xs:attribute name="normal">
|
|
75
74
|
<xs:simpleType>
|
data/data/xlink.xsd
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- METS XLink Schema, v. 2, Nov. 15, 2004 -->
|
|
3
|
+
<schema targetNamespace="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2001/XMLSchema" xmlns:xlink="http://www.w3.org/1999/xlink" elementFormDefault="qualified">
|
|
4
|
+
<!-- global attributes -->
|
|
5
|
+
<attribute name="href" type="anyURI"/>
|
|
6
|
+
<attribute name="role" type="string"/>
|
|
7
|
+
<attribute name="arcrole" type="string"/>
|
|
8
|
+
<attribute name="title" type="string"/>
|
|
9
|
+
<attribute name="show">
|
|
10
|
+
<simpleType>
|
|
11
|
+
<restriction base="string">
|
|
12
|
+
<enumeration value="new"/>
|
|
13
|
+
<enumeration value="replace"/>
|
|
14
|
+
<enumeration value="embed"/>
|
|
15
|
+
<enumeration value="other"/>
|
|
16
|
+
<enumeration value="none"/>
|
|
17
|
+
</restriction>
|
|
18
|
+
</simpleType>
|
|
19
|
+
</attribute>
|
|
20
|
+
<attribute name="actuate">
|
|
21
|
+
<simpleType>
|
|
22
|
+
<restriction base="string">
|
|
23
|
+
<enumeration value="onLoad"/>
|
|
24
|
+
<enumeration value="onRequest"/>
|
|
25
|
+
<enumeration value="other"/>
|
|
26
|
+
<enumeration value="none"/>
|
|
27
|
+
</restriction>
|
|
28
|
+
</simpleType>
|
|
29
|
+
</attribute>
|
|
30
|
+
<attribute name="label" type="string"/>
|
|
31
|
+
<attribute name="from" type="string"/>
|
|
32
|
+
<attribute name="to" type="string"/>
|
|
33
|
+
<attributeGroup name="simpleLink">
|
|
34
|
+
<attribute name="type" type="string" fixed="simple" form="qualified"/>
|
|
35
|
+
<attribute ref="xlink:href" use="optional"/>
|
|
36
|
+
<attribute ref="xlink:role" use="optional"/>
|
|
37
|
+
<attribute ref="xlink:arcrole" use="optional"/>
|
|
38
|
+
<attribute ref="xlink:title" use="optional"/>
|
|
39
|
+
<attribute ref="xlink:show" use="optional"/>
|
|
40
|
+
<attribute ref="xlink:actuate" use="optional"/>
|
|
41
|
+
</attributeGroup>
|
|
42
|
+
<attributeGroup name="extendedLink">
|
|
43
|
+
<attribute name="type" type="string" fixed="extended" form="qualified"/>
|
|
44
|
+
<attribute ref="xlink:role" use="optional"/>
|
|
45
|
+
<attribute ref="xlink:title" use="optional"/>
|
|
46
|
+
</attributeGroup>
|
|
47
|
+
<attributeGroup name="locatorLink">
|
|
48
|
+
<attribute name="type" type="string" fixed="locator" form="qualified"/>
|
|
49
|
+
<attribute ref="xlink:href" use="required"/>
|
|
50
|
+
<attribute ref="xlink:role" use="optional"/>
|
|
51
|
+
<attribute ref="xlink:title" use="optional"/>
|
|
52
|
+
<attribute ref="xlink:label" use="optional"/>
|
|
53
|
+
</attributeGroup>
|
|
54
|
+
<attributeGroup name="arcLink">
|
|
55
|
+
<attribute name="type" type="string" fixed="arc" form="qualified"/>
|
|
56
|
+
<attribute ref="xlink:arcrole" use="optional"/>
|
|
57
|
+
<attribute ref="xlink:title" use="optional"/>
|
|
58
|
+
<attribute ref="xlink:show" use="optional"/>
|
|
59
|
+
<attribute ref="xlink:actuate" use="optional"/>
|
|
60
|
+
<attribute ref="xlink:from" use="optional"/>
|
|
61
|
+
<attribute ref="xlink:to" use="optional"/>
|
|
62
|
+
</attributeGroup>
|
|
63
|
+
<attributeGroup name="resourceLink">
|
|
64
|
+
<attribute name="type" type="string" fixed="resource" form="qualified"/>
|
|
65
|
+
<attribute ref="xlink:role" use="optional"/>
|
|
66
|
+
<attribute ref="xlink:title" use="optional"/>
|
|
67
|
+
<attribute ref="xlink:label" use="optional"/>
|
|
68
|
+
</attributeGroup>
|
|
69
|
+
<attributeGroup name="titleLink">
|
|
70
|
+
<attribute name="type" type="string" fixed="title" form="qualified"/>
|
|
71
|
+
</attributeGroup>
|
|
72
|
+
<attributeGroup name="emptyLink">
|
|
73
|
+
<attribute name="type" type="string" fixed="none" form="qualified"/>
|
|
74
|
+
</attributeGroup>
|
|
75
|
+
</schema>
|
data/lib/libis/format/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: libis-format
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.9.
|
|
4
|
+
version: 0.9.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kris Dekeyser
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-03-
|
|
11
|
+
date: 2016-03-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -149,6 +149,7 @@ files:
|
|
|
149
149
|
- data/eciRGB_v2.icc
|
|
150
150
|
- data/lias_formats.xml
|
|
151
151
|
- data/types.yml
|
|
152
|
+
- data/xlink.xsd
|
|
152
153
|
- lib/libis-format.rb
|
|
153
154
|
- lib/libis/format.rb
|
|
154
155
|
- lib/libis/format/config.rb
|