Project

General

Profile

1
DELETE FROM xml_catalog 
2
      WHERE entry_type LIKE 'DTD'
3
        AND public_id LIKE '%@eml-version@%';
4
DELETE FROM xml_catalog 
5
      WHERE entry_type LIKE 'DTD'
6
        AND public_id LIKE '%@eml-beta4-version@%';
7
DELETE FROM xml_catalog 
8
      WHERE entry_type LIKE 'Schema'
9
        AND system_id LIKE '%eml%';
10
DELETE FROM xml_catalog 
11
      WHERE entry_type LIKE 'Schema'
12
        AND system_id LIKE '%/dataone/%';
13
DELETE FROM xml_catalog 
14
      WHERE entry_type LIKE 'Schema'
15
        AND system_id LIKE '%/dc/%';
16
DELETE FROM xml_catalog 
17
      WHERE entry_type LIKE 'Schema'
18
        AND system_id LIKE '%/dryad/%';                
19
INSERT INTO xml_catalog (entry_type, public_id, system_id)
20
  VALUES ('DTD', '-//ecoinformatics.org//eml-access-@eml-version@//EN',
21
         '/dtd/eml-access-@eml-version@.dtd');
22
INSERT INTO xml_catalog (entry_type, public_id, system_id)
23
  VALUES ('DTD', '-//ecoinformatics.org//eml-attribute-@eml-version@//EN',
24
          '/dtd/eml-attribute-@eml-version@.dtd');
25
INSERT INTO xml_catalog (entry_type, public_id, system_id)
26
  VALUES ('DTD', '-//ecoinformatics.org//eml-constraint-@eml-version@//EN',
27
          '/dtd/eml-constraint-@eml-version@.dtd');
28
INSERT INTO xml_catalog (entry_type, public_id, system_id)
29
  VALUES ('DTD', '-//ecoinformatics.org//eml-coverage-@eml-version@//EN',
30
          '/dtd/eml-coverage-@eml-version@.dtd');
31
INSERT INTO xml_catalog (entry_type, public_id, system_id)
32
  VALUES ('DTD', '-//ecoinformatics.org//eml-dataset-@eml-version@//EN',
33
          '/dtd/eml-dataset-@eml-version@.dtd');
34
INSERT INTO xml_catalog (entry_type, public_id, system_id)
35
  VALUES ('DTD', '-//ecoinformatics.org//eml-entity-@eml-version@//EN',
36
          '/dtd/eml-entity-@eml-version@.dtd');
37
INSERT INTO xml_catalog (entry_type, public_id, system_id)
38
  VALUES ('DTD', '-//ecoinformatics.org//eml-literature-@eml-version@//EN',
39
          '/dtd/eml-literature-@eml-version@.dtd');
40
INSERT INTO xml_catalog (entry_type, public_id, system_id)
41
  VALUES ('DTD', '-//ecoinformatics.org//eml-physical-@eml-version@//EN',
42
          '/dtd/eml-physical-@eml-version@.dtd');
43
INSERT INTO xml_catalog (entry_type, public_id, system_id)
44
  VALUES ('DTD', '-//ecoinformatics.org//eml-project-@eml-version@//EN',
45
          '/dtd/eml-project-@eml-version@.dtd');
46
INSERT INTO xml_catalog (entry_type, public_id, system_id)
47
  VALUES ('DTD', '-//ecoinformatics.org//eml-protocol-@eml-version@//EN',
48
          '/dtd/eml-protocol-@eml-version@.dtd');
49
INSERT INTO xml_catalog (entry_type, public_id, system_id)
50
  VALUES ('DTD', '-//ecoinformatics.org//eml-software-@eml-version@//EN',
51
          '/dtd/eml-software-@eml-version@.dtd');
52
-- include 2.0.0beta4
53
INSERT INTO xml_catalog (entry_type, public_id, system_id)
54
  VALUES ('DTD', '-//ecoinformatics.org//eml-access-@eml-beta4-version@//EN',
55
         '/dtd/eml-access-@eml-beta4-version@.dtd');
56
INSERT INTO xml_catalog (entry_type, public_id, system_id)
57
  VALUES ('DTD', '-//ecoinformatics.org//eml-attribute-@eml-beta4-version@//EN',
58
          '/dtd/eml-attribute-@eml-beta4-version@.dtd');
59
INSERT INTO xml_catalog (entry_type, public_id, system_id)
60
  VALUES ('DTD', '-//ecoinformatics.org//eml-constraint-@eml-beta4-version@//EN',
61
          '/dtd/eml-constraint-@eml-beta4-version@.dtd');
62
INSERT INTO xml_catalog (entry_type, public_id, system_id)
63
  VALUES ('DTD', '-//ecoinformatics.org//eml-coverage-@eml-beta4-version@//EN',
64
          '/dtd/eml-coverage-@eml-beta4-version@.dtd');
65
INSERT INTO xml_catalog (entry_type, public_id, system_id)
66
  VALUES ('DTD', '-//ecoinformatics.org//eml-dataset-@eml-beta4-version@//EN',
67
          '/dtd/eml-dataset-@eml-beta4-version@.dtd');
68
INSERT INTO xml_catalog (entry_type, public_id, system_id)
69
  VALUES ('DTD', '-//ecoinformatics.org//eml-entity-@eml-beta4-version@//EN',
70
          '/dtd/eml-entity-@eml-beta4-version@.dtd');
71
INSERT INTO xml_catalog (entry_type, public_id, system_id)
72
  VALUES ('DTD', '-//ecoinformatics.org//eml-literature-@eml-beta4-version@//EN',
73
          '/dtd/eml-literature-@eml-beta4-version@.dtd');
74
INSERT INTO xml_catalog (entry_type, public_id, system_id)
75
  VALUES ('DTD', '-//ecoinformatics.org//eml-physical-@eml-beta4-version@//EN',
76
          '/dtd/eml-physical-@eml-beta4-version@.dtd');
77
INSERT INTO xml_catalog (entry_type, public_id, system_id)
78
  VALUES ('DTD', '-//ecoinformatics.org//eml-project-@eml-beta4-version@//EN',
79
          '/dtd/eml-project-@eml-beta4-version@.dtd');
80
INSERT INTO xml_catalog (entry_type, public_id, system_id)
81
  VALUES ('DTD', '-//ecoinformatics.org//eml-protocol-@eml-beta4-version@//EN',
82
          '/dtd/eml-protocol-@eml-beta4-version@.dtd');
83
INSERT INTO xml_catalog (entry_type, public_id, system_id)
84
  VALUES ('DTD', '-//ecoinformatics.org//eml-software-@eml-beta4-version@//EN',
85
          '/dtd/eml-software-@eml-beta4-version@.dtd');
86
--include schema
87
INSERT INTO xml_catalog (entry_type, public_id, system_id)
88
  VALUES ('Schema', '@eml2_0_1namespace@', '/schema/eml-2.0.1/eml.xsd');
89
INSERT INTO xml_catalog (entry_type, public_id, system_id)
90
  VALUES ('Schema', '@eml2_0_0namespace@', '/schema/eml-2.0.0/eml.xsd');
91
INSERT INTO xml_catalog (entry_type, public_id, system_id)
92
  VALUES ('Schema', '@stmmlnamespace@', '/schema/eml-2.0.1/stmml.xsd');
93
INSERT INTO xml_catalog (entry_type, public_id, system_id)
94
  VALUES ('Schema', '@stmml11namespace@', '/schema/eml-2.1.0/stmml.xsd');
95
INSERT INTO xml_catalog (entry_type, public_id, system_id)
96
  VALUES ('Schema', 'metadata', '/schema/fgdc-std-001/fgdc-std-001-1998.xsd');
97
INSERT INTO xml_catalog (entry_type, public_id, system_id)
98
  VALUES ('Schema', '@eml2_1_0namespace@', '/schema/eml-2.1.0/eml.xsd');
99
INSERT INTO xml_catalog (entry_type, public_id, system_id)
100
  VALUES ('Schema', '@eml2_1_1namespace@', '/schema/eml-2.1.1/eml.xsd');
101
INSERT INTO xml_catalog (entry_type, public_id, system_id)
102
  VALUES ('Schema', 'http://ecoinformatics.org/registryentry-1.0.0', '/schema/RegistryService/RegistryEntryType.xsd');
103
INSERT INTO xml_catalog (entry_type, public_id, system_id)
104
  VALUES ('Schema', 'http://www.opengis.net/sensorML/1.0.1', '/schema/sensorML.xsd');
105
INSERT INTO xml_catalog (entry_type, public_id, system_id)
106
  VALUES ('Schema', 'http://ns.dataone.org/service/types/v1', '/schema/dataone/dataoneTypes.xsd');
107
INSERT INTO xml_catalog (entry_type, public_id, system_id)
108
  VALUES ('Schema', 'http://ns.dataone.org/service/types/v1.1', '/schema/dataone/dataoneTypes_v1.1.xsd');
109
INSERT INTO xml_catalog (entry_type, public_id, system_id)
110
  VALUES ('Schema', 'http://purl.org/dryad/schema/terms/v3.1', '/schema/dryad/dryad.xsd');
111
INSERT INTO xml_catalog (entry_type, public_id, system_id)
112
  VALUES ('Schema', 'http://purl.org/dryad/schema/dryad-bibo/v3.1', '/schema/dryad/dryad-bibo.xsd');
113
INSERT INTO xml_catalog (entry_type, public_id, system_id)
114
  VALUES ('Schema', 'http://purl.org/dc/terms/', '/schema/dc/dcterms.xsd');
115
INSERT INTO xml_catalog (entry_type, public_id, system_id)
116
  VALUES ('Schema', 'http://purl.org/dc/elements/1.1/', '/schema/dc/dc.xsd');
117
INSERT INTO xml_catalog (entry_type, public_id, system_id)
118
  VALUES ('Schema', 'http://purl.org/dc/dcmitype/', '/schema/dc/dcmitype.xsd');
119

    
120

    
121
INSERT INTO db_version (version, status, date_created) 
122
  VALUES ('2.4.0',1,CURRENT_DATE);
(15-15/89)