traject 2.3.4 → 3.0.0.alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.travis.yml +16 -9
- data/CHANGES.md +74 -1
- data/Gemfile +2 -1
- data/README.md +104 -53
- data/Rakefile +8 -1
- data/doc/indexing_rules.md +79 -63
- data/doc/programmatic_use.md +218 -0
- data/doc/settings.md +28 -1
- data/doc/xml.md +134 -0
- data/lib/traject.rb +5 -0
- data/lib/traject/array_writer.rb +34 -0
- data/lib/traject/command_line.rb +18 -22
- data/lib/traject/debug_writer.rb +2 -5
- data/lib/traject/experimental_nokogiri_streaming_reader.rb +276 -0
- data/lib/traject/hashie/indifferent_access_fix.rb +25 -0
- data/lib/traject/indexer.rb +321 -92
- data/lib/traject/indexer/context.rb +39 -13
- data/lib/traject/indexer/marc_indexer.rb +30 -0
- data/lib/traject/indexer/nokogiri_indexer.rb +30 -0
- data/lib/traject/indexer/settings.rb +36 -53
- data/lib/traject/indexer/step.rb +27 -33
- data/lib/traject/macros/marc21.rb +37 -12
- data/lib/traject/macros/nokogiri_macros.rb +43 -0
- data/lib/traject/macros/transformation.rb +162 -0
- data/lib/traject/marc_extractor.rb +2 -0
- data/lib/traject/ndj_reader.rb +1 -1
- data/lib/traject/nokogiri_reader.rb +179 -0
- data/lib/traject/oai_pmh_nokogiri_reader.rb +159 -0
- data/lib/traject/solr_json_writer.rb +19 -12
- data/lib/traject/thread_pool.rb +13 -0
- data/lib/traject/util.rb +14 -2
- data/lib/traject/version.rb +1 -1
- data/test/debug_writer_test.rb +3 -3
- data/test/delimited_writer_test.rb +3 -3
- data/test/experimental_nokogiri_streaming_reader_test.rb +169 -0
- data/test/indexer/context_test.rb +23 -13
- data/test/indexer/error_handler_test.rb +59 -0
- data/test/indexer/macros/macros_marc21_semantics_test.rb +46 -46
- data/test/indexer/macros/marc21/extract_all_marc_values_test.rb +1 -1
- data/test/indexer/macros/marc21/extract_marc_test.rb +19 -9
- data/test/indexer/macros/marc21/serialize_marc_test.rb +4 -4
- data/test/indexer/macros/to_field_test.rb +2 -2
- data/test/indexer/macros/transformation_test.rb +177 -0
- data/test/indexer/map_record_test.rb +2 -3
- data/test/indexer/nokogiri_indexer_test.rb +103 -0
- data/test/indexer/process_record_test.rb +55 -0
- data/test/indexer/process_with_test.rb +148 -0
- data/test/indexer/read_write_test.rb +52 -2
- data/test/indexer/settings_test.rb +34 -24
- data/test/indexer/to_field_test.rb +27 -2
- data/test/marc_extractor_test.rb +7 -7
- data/test/marc_reader_test.rb +4 -4
- data/test/nokogiri_reader_test.rb +158 -0
- data/test/oai_pmh_nokogiri_reader_test.rb +23 -0
- data/test/solr_json_writer_test.rb +24 -28
- data/test/test_helper.rb +8 -2
- data/test/test_support/namespace-test.xml +7 -0
- data/test/test_support/nokogiri_demo_config.rb +17 -0
- data/test/test_support/oai-pmh-one-record-2.xml +24 -0
- data/test/test_support/oai-pmh-one-record-first.xml +24 -0
- data/test/test_support/sample-oai-no-namespace.xml +197 -0
- data/test/test_support/sample-oai-pmh.xml +197 -0
- data/test/thread_pool_test.rb +38 -0
- data/test/translation_map_test.rb +3 -3
- data/test/translation_maps/ruby_map.rb +2 -1
- data/test/translation_maps/yaml_map.yaml +2 -1
- data/traject.gemspec +4 -11
- metadata +92 -6
@@ -7,8 +7,8 @@ require 'stringio'
|
|
7
7
|
require 'logger'
|
8
8
|
|
9
9
|
|
10
|
-
# Some basic tests, using a mocked HTTPClient so we can see what it did --
|
11
|
-
# these tests do not run against a real solr server at present.
|
10
|
+
# Some basic tests, using a mocked HTTPClient so we can see what it did --
|
11
|
+
# these tests do not run against a real solr server at present.
|
12
12
|
describe "Traject::SolrJsonWriter" do
|
13
13
|
|
14
14
|
|
@@ -18,7 +18,7 @@ describe "Traject::SolrJsonWriter" do
|
|
18
18
|
|
19
19
|
class FakeHTTPClient
|
20
20
|
# Always reply with this status, normally 200, can
|
21
|
-
# be reset for testing error conditions.
|
21
|
+
# be reset for testing error conditions.
|
22
22
|
attr_accessor :response_status
|
23
23
|
attr_accessor :allow_update_json_path
|
24
24
|
|
@@ -31,7 +31,7 @@ describe "Traject::SolrJsonWriter" do
|
|
31
31
|
end
|
32
32
|
|
33
33
|
def post(*args)
|
34
|
-
@mutex.synchronize do
|
34
|
+
@mutex.synchronize do
|
35
35
|
@post_args << args
|
36
36
|
end
|
37
37
|
|
@@ -41,7 +41,7 @@ describe "Traject::SolrJsonWriter" do
|
|
41
41
|
return resp
|
42
42
|
end
|
43
43
|
|
44
|
-
def get
|
44
|
+
def get(*args)
|
45
45
|
@mutex.synchronize do
|
46
46
|
@get_args << args
|
47
47
|
end
|
@@ -86,7 +86,7 @@ describe "Traject::SolrJsonWriter" do
|
|
86
86
|
}.merge!(settings)
|
87
87
|
@fake_http_client = settings["solr_json_writer.http_client"]
|
88
88
|
|
89
|
-
writer = Traject::SolrJsonWriter.new(settings)
|
89
|
+
writer = Traject::SolrJsonWriter.new(settings)
|
90
90
|
|
91
91
|
return writer
|
92
92
|
end
|
@@ -97,7 +97,7 @@ describe "Traject::SolrJsonWriter" do
|
|
97
97
|
# Later check for strio.string for contents
|
98
98
|
def logger_to_strio(strio)
|
99
99
|
# Yell makes this hard, let's do it with an ordinary logger, think
|
100
|
-
# it's okay.
|
100
|
+
# it's okay.
|
101
101
|
Logger.new(strio)
|
102
102
|
end
|
103
103
|
|
@@ -126,7 +126,7 @@ describe "Traject::SolrJsonWriter" do
|
|
126
126
|
refute_nil post_args[1]
|
127
127
|
posted_json = JSON.parse(post_args[1])
|
128
128
|
|
129
|
-
assert_equal [{"id" => "one", "key" => ["value1", "value2"]}], posted_json
|
129
|
+
assert_equal [{"id" => "one", "key" => ["value1", "value2"]}], posted_json
|
130
130
|
end
|
131
131
|
|
132
132
|
it "adds more than a batch in batches" do
|
@@ -144,6 +144,19 @@ describe "Traject::SolrJsonWriter" do
|
|
144
144
|
assert_length 1, JSON.parse(post_args[1][1]), "second batch posted with last remaining doc"
|
145
145
|
end
|
146
146
|
|
147
|
+
it "can #flush" do
|
148
|
+
2.times do |i|
|
149
|
+
doc = {"id" => "doc_#{i}", "key" => "value"}
|
150
|
+
@writer.put context_with(doc)
|
151
|
+
end
|
152
|
+
|
153
|
+
assert_length 0, @fake_http_client.post_args, "Hasn't yet written"
|
154
|
+
|
155
|
+
@writer.flush
|
156
|
+
|
157
|
+
assert_length 1, @fake_http_client.post_args, "Has flushed to solr"
|
158
|
+
end
|
159
|
+
|
147
160
|
it "commits on close when set" do
|
148
161
|
@writer = create_writer("solr.url" => "http://example.com", "solr_writer.commit_on_close" => "true")
|
149
162
|
@writer.put context_with({"id" => "one", "key" => ["value1", "value2"]})
|
@@ -171,7 +184,7 @@ describe "Traject::SolrJsonWriter" do
|
|
171
184
|
logged = strio.string
|
172
185
|
|
173
186
|
10.times do |i|
|
174
|
-
assert_match
|
187
|
+
assert_match(/ERROR.*Could not add record <output_id:doc_#{i}>: Solr error response: 500/, logged)
|
175
188
|
end
|
176
189
|
end
|
177
190
|
|
@@ -193,27 +206,10 @@ describe "Traject::SolrJsonWriter" do
|
|
193
206
|
@writer = create_writer("solr_writer.max_skipped" => 0)
|
194
207
|
@fake_http_client.response_status = 500
|
195
208
|
|
196
|
-
|
209
|
+
_e = assert_raises(RuntimeError) do
|
197
210
|
@writer.put context_with("id" => "doc_1", "key" => "value")
|
198
211
|
@writer.close
|
199
212
|
end
|
200
213
|
end
|
201
|
-
end
|
202
|
-
|
203
|
-
describe "auto-discovers proper update path" do
|
204
|
-
it "finds /update/json" do
|
205
|
-
assert_equal "http://example.com/solr/update/json", @writer.determine_solr_update_url
|
206
|
-
end
|
207
|
-
|
208
|
-
it "resorts to plain /update" do
|
209
|
-
@fake_http_client = FakeHTTPClient.new
|
210
|
-
@fake_http_client.allow_update_json_path = false
|
211
|
-
|
212
|
-
@writer = create_writer("solr.url" => "http://example.com/solr",
|
213
|
-
"solr_json_writer.http_client" => @fake_http_client)
|
214
|
-
|
215
|
-
assert_equal "http://example.com/solr/update", @writer.determine_solr_update_url
|
216
|
-
end
|
217
214
|
end
|
218
|
-
|
219
|
-
end
|
215
|
+
end
|
data/test/test_helper.rb
CHANGED
@@ -2,6 +2,8 @@ gem 'minitest' # I feel like this messes with bundler, but only way to get minit
|
|
2
2
|
require 'minitest/autorun'
|
3
3
|
require 'minitest/spec'
|
4
4
|
|
5
|
+
require 'webmock/minitest'
|
6
|
+
|
5
7
|
require 'traject'
|
6
8
|
require 'marc'
|
7
9
|
|
@@ -12,8 +14,12 @@ STDERR.sync = true
|
|
12
14
|
|
13
15
|
# Hacky way to turn off Indexer logging by default, say only
|
14
16
|
# log things higher than fatal, which is nothing.
|
15
|
-
|
16
|
-
|
17
|
+
Traject::Indexer.singleton_class.prepend(Module.new do
|
18
|
+
def default_settings
|
19
|
+
super.merge("log.level" => "gt.fatal")
|
20
|
+
end
|
21
|
+
end)
|
22
|
+
|
17
23
|
|
18
24
|
def support_file_path(relative_path)
|
19
25
|
return File.expand_path(File.join("test_support", relative_path), File.dirname(__FILE__))
|
@@ -0,0 +1,7 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<top xmlns="http://example.org/top" xmlns:a="http://example.org/a" xmlns:b="http://example.org/b" xmlns:unused="http://example.org/unused">
|
3
|
+
<record>
|
4
|
+
<a:something>a:something</a:something>
|
5
|
+
<b:something>b:something</b:something>
|
6
|
+
</record>
|
7
|
+
</top>
|
@@ -0,0 +1,17 @@
|
|
1
|
+
settings do
|
2
|
+
provide "nokogiri.namespaces", {
|
3
|
+
"oai" => "http://www.openarchives.org/OAI/2.0/",
|
4
|
+
"dc" => "http://purl.org/dc/elements/1.1/",
|
5
|
+
"oai_dc" => "http://www.openarchives.org/OAI/2.0/oai_dc/"
|
6
|
+
}
|
7
|
+
end
|
8
|
+
|
9
|
+
to_field "institution", literal("University of Hogwarts")
|
10
|
+
|
11
|
+
to_field "id", extract_xpath("//oai:record//oai:metadata/oai_dc:dc/dc:identifier"), first_only
|
12
|
+
to_field "title", extract_xpath("//oai:metadata/oai_dc:dc/dc:title")
|
13
|
+
to_field "rights", extract_xpath("//oai:metadata/oai_dc:dc/dc:rights")
|
14
|
+
to_field "creator", extract_xpath("//oai:metadata/oai_dc:dc/dc:creator")
|
15
|
+
to_field "description", extract_xpath("//oai:metadata/oai_dc:dc/dc:description")
|
16
|
+
to_field "creator", extract_xpath("//oai:metadata/oai_dc:dc/dc:format")
|
17
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="/assets/blacklight_oai_provider/oai2-215c34219a0c518cf7dde42605d91175cbfd22c3f0ce528f795eae128dd1d872.xsl"?>
|
3
|
+
<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"><responseDate>2018-06-15T22:34:53Z</responseDate><request metadataPrefix="oai_dc" verb="ListRecords">https://digital.sciencehistory.org/oai</request><ListRecords><record><header><identifier>oai:sciencehistoryorg:w0892992w</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
4
|
+
<dc:identifier>https://digital.sciencehistory.org/works/w0892992w</dc:identifier>
|
5
|
+
<dc:title>Benzaldehyde Plant</dc:title>
|
6
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
7
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
8
|
+
<dc:date>1950s</dc:date>
|
9
|
+
<dc:description>View of the benzaldehyde plant at the Norda Company plant in Boonton, New Jersey.</dc:description>
|
10
|
+
<dc:format>image/tiff</dc:format>
|
11
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
12
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
13
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
14
|
+
<dc:subject>Perfumes industry</dc:subject>
|
15
|
+
<dc:type>Image</dc:type>
|
16
|
+
<dc:type>photographs</dc:type>
|
17
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/2z10wq46j/dl_small?no_content_disposition=true</dc:identifier>
|
18
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/w0892992w</dpla:originalRecord>
|
19
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/2z10wq46j/dl_small?no_content_disposition=true</edm:preview>
|
20
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
21
|
+
<edm:hasType>photographs</edm:hasType>
|
22
|
+
<edm:object>http://digital.sciencehistory.org/downloads/2z10wq46j</edm:object>
|
23
|
+
</oai_dc:dc>
|
24
|
+
</metadata></record><resumptionToken completeListSize="2"></resumptionToken></ListRecords></OAI-PMH>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="/assets/blacklight_oai_provider/oai2-215c34219a0c518cf7dde42605d91175cbfd22c3f0ce528f795eae128dd1d872.xsl"?>
|
3
|
+
<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"><responseDate>2018-06-15T22:34:53Z</responseDate><request metadataPrefix="oai_dc" verb="ListRecords">https://digital.sciencehistory.org/oai</request><ListRecords><record><header><identifier>oai:sciencehistoryorg:fq977t769</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
4
|
+
<dc:identifier>https://digital.sciencehistory.org/works/fq977t769</dc:identifier>
|
5
|
+
<dc:title>Spice Storage</dc:title>
|
6
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
7
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
8
|
+
<dc:date>1950s</dc:date>
|
9
|
+
<dc:description>Interior view of the spice storage area at the Norda Company plant in Boonton, New Jersey, showing sacks of spices used in the manufacture of perfumes and essential oils.</dc:description>
|
10
|
+
<dc:format>image/tiff</dc:format>
|
11
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
12
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
13
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
14
|
+
<dc:subject>Perfumes industry</dc:subject>
|
15
|
+
<dc:type>Image</dc:type>
|
16
|
+
<dc:type>photographs</dc:type>
|
17
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/9k41zd701/dl_small?no_content_disposition=true</dc:identifier>
|
18
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/fq977t769</dpla:originalRecord>
|
19
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/9k41zd701/dl_small?no_content_disposition=true</edm:preview>
|
20
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
21
|
+
<edm:hasType>photographs</edm:hasType>
|
22
|
+
<edm:object>http://digital.sciencehistory.org/downloads/9k41zd701</edm:object>
|
23
|
+
</oai_dc:dc>
|
24
|
+
</metadata></record><resumptionToken completeListSize="2">dummy_resumption</resumptionToken></ListRecords></OAI-PMH>
|
@@ -0,0 +1,197 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="/assets/blacklight_oai_provider/oai2-215c34219a0c518cf7dde42605d91175cbfd22c3f0ce528f795eae128dd1d872.xsl"?>
|
3
|
+
<OAI-PMH schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"><responseDate>2018-06-15T22:34:53Z</responseDate><request metadataPrefix="oai_dc" verb="ListRecords">https://digital.sciencehistory.org/oai</request><ListRecords><record><header><identifier>oai:sciencehistoryorg:mk61rg92z</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
4
|
+
<identifier>https://digital.sciencehistory.org/works/mk61rg92z</identifier>
|
5
|
+
<title>Warehouses</title>
|
6
|
+
|
7
|
+
</dc>
|
8
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:fq977t769</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
9
|
+
<identifier>https://digital.sciencehistory.org/works/fq977t769</identifier>
|
10
|
+
<title>Spice Storage</title>
|
11
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
12
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
13
|
+
<date>1950s</date>
|
14
|
+
<description>Interior view of the spice storage area at the Norda Company plant in Boonton, New Jersey, showing sacks of spices used in the manufacture of perfumes and essential oils.</description>
|
15
|
+
<format>image/tiff</format>
|
16
|
+
<subject>Research, Industrial--Laboratories</subject>
|
17
|
+
<subject>Essences and essential oils industry</subject>
|
18
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
19
|
+
<subject>Perfumes industry</subject>
|
20
|
+
<type>Image</type>
|
21
|
+
<type>photographs</type>
|
22
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/9k41zd701/dl_small?no_content_disposition=true</identifier>
|
23
|
+
<originalRecord>https://digital.sciencehistory.org/works/fq977t769</originalRecord>
|
24
|
+
<preview>https://digital.sciencehistory.org/download_redirect/9k41zd701/dl_small?no_content_disposition=true</preview>
|
25
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
26
|
+
<hasType>photographs</hasType>
|
27
|
+
<object>http://digital.sciencehistory.org/downloads/9k41zd701</object>
|
28
|
+
</dc>
|
29
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:p5547r367</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
30
|
+
<identifier>https://digital.sciencehistory.org/works/p5547r367</identifier>
|
31
|
+
<title>Building #1 and Still Tower</title>
|
32
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
33
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
34
|
+
<date>1950s</date>
|
35
|
+
<description>Exterior view of the Norda Company plant in Boonton, New Jersey. Photograph includes view of building #1 and the still tower.</description>
|
36
|
+
<format>image/tiff</format>
|
37
|
+
<subject>Research, Industrial--Laboratories</subject>
|
38
|
+
<subject>Essences and essential oils industry</subject>
|
39
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
40
|
+
<subject>Perfumes industry</subject>
|
41
|
+
<type>Image</type>
|
42
|
+
<type>photographs</type>
|
43
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/mc87pq46k/dl_small?no_content_disposition=true</identifier>
|
44
|
+
<originalRecord>https://digital.sciencehistory.org/works/p5547r367</originalRecord>
|
45
|
+
<preview>https://digital.sciencehistory.org/download_redirect/mc87pq46k/dl_small?no_content_disposition=true</preview>
|
46
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
47
|
+
<hasType>photographs</hasType>
|
48
|
+
<object>http://digital.sciencehistory.org/downloads/mc87pq46k</object>
|
49
|
+
</dc>
|
50
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:jm214p12r</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
51
|
+
<identifier>https://digital.sciencehistory.org/works/jm214p12r</identifier>
|
52
|
+
<title>Control Laboratory</title>
|
53
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
54
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
55
|
+
<date>1950s</date>
|
56
|
+
<description>Interior view of the control laboratory at the Norda Company plant in Boonton, New Jersey, showing various bottles, glassware, and apparatuses used in the manufacture of perfumes and essential oils.</description>
|
57
|
+
<format>image/tiff</format>
|
58
|
+
<subject>Research, Industrial--Laboratories</subject>
|
59
|
+
<subject>Essences and essential oils industry</subject>
|
60
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
61
|
+
<subject>Perfumes industry</subject>
|
62
|
+
<type>Image</type>
|
63
|
+
<type>photographs</type>
|
64
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/8336h203f/dl_small?no_content_disposition=true</identifier>
|
65
|
+
<originalRecord>https://digital.sciencehistory.org/works/jm214p12r</originalRecord>
|
66
|
+
<preview>https://digital.sciencehistory.org/download_redirect/8336h203f/dl_small?no_content_disposition=true</preview>
|
67
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
68
|
+
<hasType>photographs</hasType>
|
69
|
+
<object>http://digital.sciencehistory.org/downloads/8336h203f</object>
|
70
|
+
</dc>
|
71
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:f4752g72m</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
72
|
+
<identifier>https://digital.sciencehistory.org/works/f4752g72m</identifier>
|
73
|
+
<title>Hydroxy Building</title>
|
74
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
75
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
76
|
+
<date>1950s</date>
|
77
|
+
<description>Exterior view of the hydroxy building at the Norda Company plant in Boonton, New Jersey.</description>
|
78
|
+
<format>image/tiff</format>
|
79
|
+
<subject>Research, Industrial--Laboratories</subject>
|
80
|
+
<subject>Essences and essential oils industry</subject>
|
81
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
82
|
+
<subject>Perfumes industry</subject>
|
83
|
+
<type>Image</type>
|
84
|
+
<type>photographs</type>
|
85
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/wd375w431/dl_small?no_content_disposition=true</identifier>
|
86
|
+
<originalRecord>https://digital.sciencehistory.org/works/f4752g72m</originalRecord>
|
87
|
+
<preview>https://digital.sciencehistory.org/download_redirect/wd375w431/dl_small?no_content_disposition=true</preview>
|
88
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
89
|
+
<hasType>photographs</hasType>
|
90
|
+
<object>http://digital.sciencehistory.org/downloads/wd375w431</object>
|
91
|
+
</dc>
|
92
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:0g354f20t</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
93
|
+
<identifier>https://digital.sciencehistory.org/works/0g354f20t</identifier>
|
94
|
+
<title>Norda Plant</title>
|
95
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
96
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
97
|
+
<date>1950s</date>
|
98
|
+
<description>Exterior view of the Norda Company plant in Boonton, New Jersey. Photograph includes view of smokestack and water tower branded with "Norda," as well as neighboring railroad tracks.</description>
|
99
|
+
<format>image/tiff</format>
|
100
|
+
<subject>Research, Industrial--Laboratories</subject>
|
101
|
+
<subject>Essences and essential oils industry</subject>
|
102
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
103
|
+
<subject>Perfumes industry</subject>
|
104
|
+
<type>Image</type>
|
105
|
+
<type>photographs</type>
|
106
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/t435gd16w/dl_small?no_content_disposition=true</identifier>
|
107
|
+
<originalRecord>https://digital.sciencehistory.org/works/0g354f20t</originalRecord>
|
108
|
+
<preview>https://digital.sciencehistory.org/download_redirect/t435gd16w/dl_small?no_content_disposition=true</preview>
|
109
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
110
|
+
<hasType>photographs</hasType>
|
111
|
+
<object>http://digital.sciencehistory.org/downloads/t435gd16w</object>
|
112
|
+
</dc>
|
113
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:tq57nr00k</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
114
|
+
<identifier>https://digital.sciencehistory.org/works/tq57nr00k</identifier>
|
115
|
+
<title>Interior of Building #1</title>
|
116
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
117
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
118
|
+
<date>1950s</date>
|
119
|
+
<description>Interior view of building #1 at the Norda Company plant in Boonton, New Jersey, showing various machinery used in the manufacture of perfumes and essential oils.</description>
|
120
|
+
<format>image/tiff</format>
|
121
|
+
<subject>Research, Industrial--Laboratories</subject>
|
122
|
+
<subject>Essences and essential oils industry</subject>
|
123
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
124
|
+
<subject>Perfumes industry</subject>
|
125
|
+
<type>Image</type>
|
126
|
+
<type>photographs</type>
|
127
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/6395w7352/dl_small?no_content_disposition=true</identifier>
|
128
|
+
<originalRecord>https://digital.sciencehistory.org/works/tq57nr00k</originalRecord>
|
129
|
+
<preview>https://digital.sciencehistory.org/download_redirect/6395w7352/dl_small?no_content_disposition=true</preview>
|
130
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
131
|
+
<hasType>photographs</hasType>
|
132
|
+
<object>http://digital.sciencehistory.org/downloads/6395w7352</object>
|
133
|
+
</dc>
|
134
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:bn999672v</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
135
|
+
<identifier>https://digital.sciencehistory.org/works/bn999672v</identifier>
|
136
|
+
<title>Vacuum Still</title>
|
137
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
138
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
139
|
+
<date>1950s</date>
|
140
|
+
<description>View of a vacuum still at the Norda Company plant in Boonton, New Jersey.</description>
|
141
|
+
<format>image/tiff</format>
|
142
|
+
<subject>Research, Industrial--Laboratories</subject>
|
143
|
+
<subject>Essences and essential oils industry</subject>
|
144
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
145
|
+
<subject>Perfumes industry</subject>
|
146
|
+
<type>Image</type>
|
147
|
+
<type>photographs</type>
|
148
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/mw22v558n/dl_small?no_content_disposition=true</identifier>
|
149
|
+
<originalRecord>https://digital.sciencehistory.org/works/bn999672v</originalRecord>
|
150
|
+
<preview>https://digital.sciencehistory.org/download_redirect/mw22v558n/dl_small?no_content_disposition=true</preview>
|
151
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
152
|
+
<hasType>photographs</hasType>
|
153
|
+
<object>http://digital.sciencehistory.org/downloads/mw22v558n</object>
|
154
|
+
</dc>
|
155
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:x920fw84d</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
156
|
+
<identifier>https://digital.sciencehistory.org/works/x920fw84d</identifier>
|
157
|
+
<title>Vacuum Stills</title>
|
158
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
159
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
160
|
+
<date>1950s</date>
|
161
|
+
<description>View of the vacuum stills at the Norda Company plant in Boonton, New Jersey.</description>
|
162
|
+
<format>image/tiff</format>
|
163
|
+
<subject>Research, Industrial--Laboratories</subject>
|
164
|
+
<subject>Essences and essential oils industry</subject>
|
165
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
166
|
+
<subject>Perfumes industry</subject>
|
167
|
+
<type>Image</type>
|
168
|
+
<type>photographs</type>
|
169
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/rb68xc003/dl_small?no_content_disposition=true</identifier>
|
170
|
+
<originalRecord>https://digital.sciencehistory.org/works/x920fw84d</originalRecord>
|
171
|
+
<preview>https://digital.sciencehistory.org/download_redirect/rb68xc003/dl_small?no_content_disposition=true</preview>
|
172
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
173
|
+
<hasType>photographs</hasType>
|
174
|
+
<object>http://digital.sciencehistory.org/downloads/rb68xc003</object>
|
175
|
+
</dc>
|
176
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:w0892992w</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><dc>
|
177
|
+
<identifier>https://digital.sciencehistory.org/works/w0892992w</identifier>
|
178
|
+
<title>Benzaldehyde Plant</title>
|
179
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
180
|
+
<creator>Norda Essential Oil and Chemical Company</creator>
|
181
|
+
<date>1950s</date>
|
182
|
+
<description>View of the benzaldehyde plant at the Norda Company plant in Boonton, New Jersey.</description>
|
183
|
+
<format>image/tiff</format>
|
184
|
+
<subject>Research, Industrial--Laboratories</subject>
|
185
|
+
<subject>Essences and essential oils industry</subject>
|
186
|
+
<subject>Norda Essential Oil and Chemical Company</subject>
|
187
|
+
<subject>Perfumes industry</subject>
|
188
|
+
<type>Image</type>
|
189
|
+
<type>photographs</type>
|
190
|
+
<identifier>https://digital.sciencehistory.org/download_redirect/2z10wq46j/dl_small?no_content_disposition=true</identifier>
|
191
|
+
<originalRecord>https://digital.sciencehistory.org/works/w0892992w</originalRecord>
|
192
|
+
<preview>https://digital.sciencehistory.org/download_redirect/2z10wq46j/dl_small?no_content_disposition=true</preview>
|
193
|
+
<rights>http://rightsstatements.org/vocab/NKC/1.0/</rights>
|
194
|
+
<hasType>photographs</hasType>
|
195
|
+
<object>http://digital.sciencehistory.org/downloads/2z10wq46j</object>
|
196
|
+
</dc>
|
197
|
+
</metadata></record><resumptionToken completeListSize="6387">oai_dc.f(2018-05-03T18:09:08Z).u(2018-06-15T19:25:21Z).t(6387):100</resumptionToken></ListRecords></OAI-PMH>
|
@@ -0,0 +1,197 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<?xml-stylesheet type="text/xsl" href="/assets/blacklight_oai_provider/oai2-215c34219a0c518cf7dde42605d91175cbfd22c3f0ce528f795eae128dd1d872.xsl"?>
|
3
|
+
<OAI-PMH xmlns="http://www.openarchives.org/OAI/2.0/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openarchives.org/OAI/2.0/ http://www.openarchives.org/OAI/2.0/OAI-PMH.xsd"><responseDate>2018-06-15T22:34:53Z</responseDate><request metadataPrefix="oai_dc" verb="ListRecords">https://digital.sciencehistory.org/oai</request><ListRecords><record><header><identifier>oai:sciencehistoryorg:mk61rg92z</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
4
|
+
<dc:identifier>https://digital.sciencehistory.org/works/mk61rg92z</dc:identifier>
|
5
|
+
<dc:title>Warehouses</dc:title>
|
6
|
+
|
7
|
+
</oai_dc:dc>
|
8
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:fq977t769</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
9
|
+
<dc:identifier>https://digital.sciencehistory.org/works/fq977t769</dc:identifier>
|
10
|
+
<dc:title>Spice Storage</dc:title>
|
11
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
12
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
13
|
+
<dc:date>1950s</dc:date>
|
14
|
+
<dc:description>Interior view of the spice storage area at the Norda Company plant in Boonton, New Jersey, showing sacks of spices used in the manufacture of perfumes and essential oils.</dc:description>
|
15
|
+
<dc:format>image/tiff</dc:format>
|
16
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
17
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
18
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
19
|
+
<dc:subject>Perfumes industry</dc:subject>
|
20
|
+
<dc:type>Image</dc:type>
|
21
|
+
<dc:type>photographs</dc:type>
|
22
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/9k41zd701/dl_small?no_content_disposition=true</dc:identifier>
|
23
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/fq977t769</dpla:originalRecord>
|
24
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/9k41zd701/dl_small?no_content_disposition=true</edm:preview>
|
25
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
26
|
+
<edm:hasType>photographs</edm:hasType>
|
27
|
+
<edm:object>http://digital.sciencehistory.org/downloads/9k41zd701</edm:object>
|
28
|
+
</oai_dc:dc>
|
29
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:p5547r367</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
30
|
+
<dc:identifier>https://digital.sciencehistory.org/works/p5547r367</dc:identifier>
|
31
|
+
<dc:title>Building #1 and Still Tower</dc:title>
|
32
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
33
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
34
|
+
<dc:date>1950s</dc:date>
|
35
|
+
<dc:description>Exterior view of the Norda Company plant in Boonton, New Jersey. Photograph includes view of building #1 and the still tower.</dc:description>
|
36
|
+
<dc:format>image/tiff</dc:format>
|
37
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
38
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
39
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
40
|
+
<dc:subject>Perfumes industry</dc:subject>
|
41
|
+
<dc:type>Image</dc:type>
|
42
|
+
<dc:type>photographs</dc:type>
|
43
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/mc87pq46k/dl_small?no_content_disposition=true</dc:identifier>
|
44
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/p5547r367</dpla:originalRecord>
|
45
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/mc87pq46k/dl_small?no_content_disposition=true</edm:preview>
|
46
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
47
|
+
<edm:hasType>photographs</edm:hasType>
|
48
|
+
<edm:object>http://digital.sciencehistory.org/downloads/mc87pq46k</edm:object>
|
49
|
+
</oai_dc:dc>
|
50
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:jm214p12r</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
51
|
+
<dc:identifier>https://digital.sciencehistory.org/works/jm214p12r</dc:identifier>
|
52
|
+
<dc:title>Control Laboratory</dc:title>
|
53
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
54
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
55
|
+
<dc:date>1950s</dc:date>
|
56
|
+
<dc:description>Interior view of the control laboratory at the Norda Company plant in Boonton, New Jersey, showing various bottles, glassware, and apparatuses used in the manufacture of perfumes and essential oils.</dc:description>
|
57
|
+
<dc:format>image/tiff</dc:format>
|
58
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
59
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
60
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
61
|
+
<dc:subject>Perfumes industry</dc:subject>
|
62
|
+
<dc:type>Image</dc:type>
|
63
|
+
<dc:type>photographs</dc:type>
|
64
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/8336h203f/dl_small?no_content_disposition=true</dc:identifier>
|
65
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/jm214p12r</dpla:originalRecord>
|
66
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/8336h203f/dl_small?no_content_disposition=true</edm:preview>
|
67
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
68
|
+
<edm:hasType>photographs</edm:hasType>
|
69
|
+
<edm:object>http://digital.sciencehistory.org/downloads/8336h203f</edm:object>
|
70
|
+
</oai_dc:dc>
|
71
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:f4752g72m</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
72
|
+
<dc:identifier>https://digital.sciencehistory.org/works/f4752g72m</dc:identifier>
|
73
|
+
<dc:title>Hydroxy Building</dc:title>
|
74
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
75
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
76
|
+
<dc:date>1950s</dc:date>
|
77
|
+
<dc:description>Exterior view of the hydroxy building at the Norda Company plant in Boonton, New Jersey.</dc:description>
|
78
|
+
<dc:format>image/tiff</dc:format>
|
79
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
80
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
81
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
82
|
+
<dc:subject>Perfumes industry</dc:subject>
|
83
|
+
<dc:type>Image</dc:type>
|
84
|
+
<dc:type>photographs</dc:type>
|
85
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/wd375w431/dl_small?no_content_disposition=true</dc:identifier>
|
86
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/f4752g72m</dpla:originalRecord>
|
87
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/wd375w431/dl_small?no_content_disposition=true</edm:preview>
|
88
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
89
|
+
<edm:hasType>photographs</edm:hasType>
|
90
|
+
<edm:object>http://digital.sciencehistory.org/downloads/wd375w431</edm:object>
|
91
|
+
</oai_dc:dc>
|
92
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:0g354f20t</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
93
|
+
<dc:identifier>https://digital.sciencehistory.org/works/0g354f20t</dc:identifier>
|
94
|
+
<dc:title>Norda Plant</dc:title>
|
95
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
96
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
97
|
+
<dc:date>1950s</dc:date>
|
98
|
+
<dc:description>Exterior view of the Norda Company plant in Boonton, New Jersey. Photograph includes view of smokestack and water tower branded with "Norda," as well as neighboring railroad tracks.</dc:description>
|
99
|
+
<dc:format>image/tiff</dc:format>
|
100
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
101
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
102
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
103
|
+
<dc:subject>Perfumes industry</dc:subject>
|
104
|
+
<dc:type>Image</dc:type>
|
105
|
+
<dc:type>photographs</dc:type>
|
106
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/t435gd16w/dl_small?no_content_disposition=true</dc:identifier>
|
107
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/0g354f20t</dpla:originalRecord>
|
108
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/t435gd16w/dl_small?no_content_disposition=true</edm:preview>
|
109
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
110
|
+
<edm:hasType>photographs</edm:hasType>
|
111
|
+
<edm:object>http://digital.sciencehistory.org/downloads/t435gd16w</edm:object>
|
112
|
+
</oai_dc:dc>
|
113
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:tq57nr00k</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
114
|
+
<dc:identifier>https://digital.sciencehistory.org/works/tq57nr00k</dc:identifier>
|
115
|
+
<dc:title>Interior of Building #1</dc:title>
|
116
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
117
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
118
|
+
<dc:date>1950s</dc:date>
|
119
|
+
<dc:description>Interior view of building #1 at the Norda Company plant in Boonton, New Jersey, showing various machinery used in the manufacture of perfumes and essential oils.</dc:description>
|
120
|
+
<dc:format>image/tiff</dc:format>
|
121
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
122
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
123
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
124
|
+
<dc:subject>Perfumes industry</dc:subject>
|
125
|
+
<dc:type>Image</dc:type>
|
126
|
+
<dc:type>photographs</dc:type>
|
127
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/6395w7352/dl_small?no_content_disposition=true</dc:identifier>
|
128
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/tq57nr00k</dpla:originalRecord>
|
129
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/6395w7352/dl_small?no_content_disposition=true</edm:preview>
|
130
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
131
|
+
<edm:hasType>photographs</edm:hasType>
|
132
|
+
<edm:object>http://digital.sciencehistory.org/downloads/6395w7352</edm:object>
|
133
|
+
</oai_dc:dc>
|
134
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:bn999672v</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
135
|
+
<dc:identifier>https://digital.sciencehistory.org/works/bn999672v</dc:identifier>
|
136
|
+
<dc:title>Vacuum Still</dc:title>
|
137
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
138
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
139
|
+
<dc:date>1950s</dc:date>
|
140
|
+
<dc:description>View of a vacuum still at the Norda Company plant in Boonton, New Jersey.</dc:description>
|
141
|
+
<dc:format>image/tiff</dc:format>
|
142
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
143
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
144
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
145
|
+
<dc:subject>Perfumes industry</dc:subject>
|
146
|
+
<dc:type>Image</dc:type>
|
147
|
+
<dc:type>photographs</dc:type>
|
148
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/mw22v558n/dl_small?no_content_disposition=true</dc:identifier>
|
149
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/bn999672v</dpla:originalRecord>
|
150
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/mw22v558n/dl_small?no_content_disposition=true</edm:preview>
|
151
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
152
|
+
<edm:hasType>photographs</edm:hasType>
|
153
|
+
<edm:object>http://digital.sciencehistory.org/downloads/mw22v558n</edm:object>
|
154
|
+
</oai_dc:dc>
|
155
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:x920fw84d</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
156
|
+
<dc:identifier>https://digital.sciencehistory.org/works/x920fw84d</dc:identifier>
|
157
|
+
<dc:title>Vacuum Stills</dc:title>
|
158
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
159
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
160
|
+
<dc:date>1950s</dc:date>
|
161
|
+
<dc:description>View of the vacuum stills at the Norda Company plant in Boonton, New Jersey.</dc:description>
|
162
|
+
<dc:format>image/tiff</dc:format>
|
163
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
164
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
165
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
166
|
+
<dc:subject>Perfumes industry</dc:subject>
|
167
|
+
<dc:type>Image</dc:type>
|
168
|
+
<dc:type>photographs</dc:type>
|
169
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/rb68xc003/dl_small?no_content_disposition=true</dc:identifier>
|
170
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/x920fw84d</dpla:originalRecord>
|
171
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/rb68xc003/dl_small?no_content_disposition=true</edm:preview>
|
172
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
173
|
+
<edm:hasType>photographs</edm:hasType>
|
174
|
+
<edm:object>http://digital.sciencehistory.org/downloads/rb68xc003</edm:object>
|
175
|
+
</oai_dc:dc>
|
176
|
+
</metadata></record><record><header><identifier>oai:sciencehistoryorg:w0892992w</identifier><datestamp>2018-05-03T18:09:08Z</datestamp></header><metadata><oai_dc:dc xmlns:dpla="http://dp.la/about/map/" xmlns:cnt="http://www.w3.org/2011/content#" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:dcmitype="http://purl.org/dc/dcmitype/" xmlns:edm="http://www.europeana.eu/schemas/edm/" xmlns:gn="http://www.geonames.org/ontology#" xmlns:oa="http://www.w3.org/ns/oa#" xmlns:ore="http://www.openarchives.org/ore/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:svcs="http://rdfs.org/sioc/services" xmlns:wgs84="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:oai_dc="http://www.openarchives.org/OAI/2.0/oai_dc/">
|
177
|
+
<dc:identifier>https://digital.sciencehistory.org/works/w0892992w</dc:identifier>
|
178
|
+
<dc:title>Benzaldehyde Plant</dc:title>
|
179
|
+
<dc:rights>http://rightsstatements.org/vocab/NKC/1.0/</dc:rights>
|
180
|
+
<dc:creator>Norda Essential Oil and Chemical Company</dc:creator>
|
181
|
+
<dc:date>1950s</dc:date>
|
182
|
+
<dc:description>View of the benzaldehyde plant at the Norda Company plant in Boonton, New Jersey.</dc:description>
|
183
|
+
<dc:format>image/tiff</dc:format>
|
184
|
+
<dc:subject>Research, Industrial--Laboratories</dc:subject>
|
185
|
+
<dc:subject>Essences and essential oils industry</dc:subject>
|
186
|
+
<dc:subject>Norda Essential Oil and Chemical Company</dc:subject>
|
187
|
+
<dc:subject>Perfumes industry</dc:subject>
|
188
|
+
<dc:type>Image</dc:type>
|
189
|
+
<dc:type>photographs</dc:type>
|
190
|
+
<dc:identifier>https://digital.sciencehistory.org/download_redirect/2z10wq46j/dl_small?no_content_disposition=true</dc:identifier>
|
191
|
+
<dpla:originalRecord>https://digital.sciencehistory.org/works/w0892992w</dpla:originalRecord>
|
192
|
+
<edm:preview>https://digital.sciencehistory.org/download_redirect/2z10wq46j/dl_small?no_content_disposition=true</edm:preview>
|
193
|
+
<edm:rights>http://rightsstatements.org/vocab/NKC/1.0/</edm:rights>
|
194
|
+
<edm:hasType>photographs</edm:hasType>
|
195
|
+
<edm:object>http://digital.sciencehistory.org/downloads/2z10wq46j</edm:object>
|
196
|
+
</oai_dc:dc>
|
197
|
+
</metadata></record><resumptionToken completeListSize="6387">oai_dc.f(2018-05-03T18:09:08Z).u(2018-06-15T19:25:21Z).t(6387):100</resumptionToken></ListRecords></OAI-PMH>
|