dor-services 4.4.12.1 → 4.4.13
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 +15 -0
- data/lib/dor/models/workflow_object.rb +7 -4
- data/lib/dor/version.rb +1 -1
- metadata +59 -128
- data/config/certs/dlss-dev-test.crt +0 -18
- data/config/certs/dlss-dev-test.key +0 -15
- data/config/certs/robots-dor-dev.crt +0 -29
- data/config/certs/robots-dor-dev.key +0 -27
- data/config/dev_console_env.rb +0 -66
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
NmUzYjNkZTFjOGI2MDVmZjZkNTE5Mjc0NGIzNzliNmNiMmI4ODIwZg==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
NzM4ZjgyNTEzYzU4ZjkzMzRjZWFkMmRhZDRiMjA0YzJlMmFiZmM2MA==
|
|
7
|
+
SHA512:
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
ZDU5NjJkNzRiYzVkNTM3M2NhNDI1ZmQ1MTY4MDlkNmQ1YzUyOTNlNzRjZmQx
|
|
10
|
+
MGJkMGMwMWRlNmRjOTljNGI0Y2UzOTE1ODQ4YjBlMTRkMTE0YTMwMjQxY2My
|
|
11
|
+
ZWM0YzBiMDU3ZjhkZDkzMTQyZGY1NmE1YzU2N2IzZDY0NmFlMTg=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
M2NmZjc2Mjg0NmI5YTMwY2YzOTNmNDljY2FkM2M4ZjM4MDJiN2I1NTVmZGU4
|
|
14
|
+
ODlhODI3ZWI5OWJjMTVlZjZmODY4YjQwNzQ0ODA0MzE0NTA4NjM3NzU2ZmY3
|
|
15
|
+
NGRkNmRhN2UwMjFiOWY4ZjNkNjMwYzc1Y2NkZjJiNDVkYjIwZTI=
|
|
@@ -13,8 +13,8 @@ module Dor
|
|
|
13
13
|
def self.find_by_name(name, opts={})
|
|
14
14
|
Dor.find_all(%{objectType_t:"#{self.object_type}" workflow_name_s:"#{name}"}, opts).first
|
|
15
15
|
end
|
|
16
|
-
|
|
17
|
-
# Searches for the workflow definition object in DOR, then
|
|
16
|
+
|
|
17
|
+
# Searches for the workflow definition object in DOR, then
|
|
18
18
|
# returns an object's initial workflow as defined in the worfklowDefinition datastream
|
|
19
19
|
# It will cache the result for subsequent requests
|
|
20
20
|
# @param [String] name the name of the workflow
|
|
@@ -30,14 +30,17 @@ module Dor
|
|
|
30
30
|
def definition
|
|
31
31
|
datastreams['workflowDefinition']
|
|
32
32
|
end
|
|
33
|
-
|
|
33
|
+
|
|
34
34
|
def graph *args
|
|
35
35
|
self.definition.graph *args
|
|
36
36
|
end
|
|
37
|
-
|
|
37
|
+
|
|
38
38
|
def to_solr solr_doc=Hash.new, *args
|
|
39
39
|
super solr_doc, *args
|
|
40
40
|
client = Dor::WorkflowService.workflow_resource
|
|
41
|
+
xml = client["workflow_archive?repository=#{definition.repo}&workflow=#{definition.name}&count-only=true"].get
|
|
42
|
+
count = Nokogiri::XML(xml).at_xpath('/objects/@count').value
|
|
43
|
+
add_solr_value(solr_doc,"#{definition.name}_archived",count,:integer,[:displayable])
|
|
41
44
|
solr_doc
|
|
42
45
|
end
|
|
43
46
|
|
data/lib/dor/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dor-services
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.4.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 4.4.13
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Michael Klein
|
|
@@ -13,28 +12,25 @@ authors:
|
|
|
13
12
|
autorequire:
|
|
14
13
|
bindir: bin
|
|
15
14
|
cert_chain: []
|
|
16
|
-
date: 2014-
|
|
15
|
+
date: 2014-01-15 00:00:00.000000000 Z
|
|
17
16
|
dependencies:
|
|
18
17
|
- !ruby/object:Gem::Dependency
|
|
19
18
|
name: rdf
|
|
20
19
|
requirement: !ruby/object:Gem::Requirement
|
|
21
|
-
none: false
|
|
22
20
|
requirements:
|
|
23
21
|
- - '='
|
|
24
22
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 1.0.
|
|
23
|
+
version: 1.0.9
|
|
26
24
|
type: :runtime
|
|
27
25
|
prerelease: false
|
|
28
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
29
|
-
none: false
|
|
30
27
|
requirements:
|
|
31
28
|
- - '='
|
|
32
29
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 1.0.
|
|
30
|
+
version: 1.0.9
|
|
34
31
|
- !ruby/object:Gem::Dependency
|
|
35
32
|
name: active-fedora
|
|
36
33
|
requirement: !ruby/object:Gem::Requirement
|
|
37
|
-
none: false
|
|
38
34
|
requirements:
|
|
39
35
|
- - ~>
|
|
40
36
|
- !ruby/object:Gem::Version
|
|
@@ -45,7 +41,6 @@ dependencies:
|
|
|
45
41
|
type: :runtime
|
|
46
42
|
prerelease: false
|
|
47
43
|
version_requirements: !ruby/object:Gem::Requirement
|
|
48
|
-
none: false
|
|
49
44
|
requirements:
|
|
50
45
|
- - ~>
|
|
51
46
|
- !ruby/object:Gem::Version
|
|
@@ -56,7 +51,6 @@ dependencies:
|
|
|
56
51
|
- !ruby/object:Gem::Dependency
|
|
57
52
|
name: om
|
|
58
53
|
requirement: !ruby/object:Gem::Requirement
|
|
59
|
-
none: false
|
|
60
54
|
requirements:
|
|
61
55
|
- - ! '>='
|
|
62
56
|
- !ruby/object:Gem::Version
|
|
@@ -64,7 +58,6 @@ dependencies:
|
|
|
64
58
|
type: :runtime
|
|
65
59
|
prerelease: false
|
|
66
60
|
version_requirements: !ruby/object:Gem::Requirement
|
|
67
|
-
none: false
|
|
68
61
|
requirements:
|
|
69
62
|
- - ! '>='
|
|
70
63
|
- !ruby/object:Gem::Version
|
|
@@ -72,7 +65,6 @@ dependencies:
|
|
|
72
65
|
- !ruby/object:Gem::Dependency
|
|
73
66
|
name: solrizer
|
|
74
67
|
requirement: !ruby/object:Gem::Requirement
|
|
75
|
-
none: false
|
|
76
68
|
requirements:
|
|
77
69
|
- - ~>
|
|
78
70
|
- !ruby/object:Gem::Version
|
|
@@ -80,7 +72,6 @@ dependencies:
|
|
|
80
72
|
type: :runtime
|
|
81
73
|
prerelease: false
|
|
82
74
|
version_requirements: !ruby/object:Gem::Requirement
|
|
83
|
-
none: false
|
|
84
75
|
requirements:
|
|
85
76
|
- - ~>
|
|
86
77
|
- !ruby/object:Gem::Version
|
|
@@ -88,7 +79,6 @@ dependencies:
|
|
|
88
79
|
- !ruby/object:Gem::Dependency
|
|
89
80
|
name: activesupport
|
|
90
81
|
requirement: !ruby/object:Gem::Requirement
|
|
91
|
-
none: false
|
|
92
82
|
requirements:
|
|
93
83
|
- - ! '>='
|
|
94
84
|
- !ruby/object:Gem::Version
|
|
@@ -96,7 +86,6 @@ dependencies:
|
|
|
96
86
|
type: :runtime
|
|
97
87
|
prerelease: false
|
|
98
88
|
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
-
none: false
|
|
100
89
|
requirements:
|
|
101
90
|
- - ! '>='
|
|
102
91
|
- !ruby/object:Gem::Version
|
|
@@ -104,7 +93,6 @@ dependencies:
|
|
|
104
93
|
- !ruby/object:Gem::Dependency
|
|
105
94
|
name: rsolr-ext
|
|
106
95
|
requirement: !ruby/object:Gem::Requirement
|
|
107
|
-
none: false
|
|
108
96
|
requirements:
|
|
109
97
|
- - ! '>='
|
|
110
98
|
- !ruby/object:Gem::Version
|
|
@@ -112,7 +100,6 @@ dependencies:
|
|
|
112
100
|
type: :runtime
|
|
113
101
|
prerelease: false
|
|
114
102
|
version_requirements: !ruby/object:Gem::Requirement
|
|
115
|
-
none: false
|
|
116
103
|
requirements:
|
|
117
104
|
- - ! '>='
|
|
118
105
|
- !ruby/object:Gem::Version
|
|
@@ -120,7 +107,6 @@ dependencies:
|
|
|
120
107
|
- !ruby/object:Gem::Dependency
|
|
121
108
|
name: nokogiri
|
|
122
109
|
requirement: !ruby/object:Gem::Requirement
|
|
123
|
-
none: false
|
|
124
110
|
requirements:
|
|
125
111
|
- - ! '>='
|
|
126
112
|
- !ruby/object:Gem::Version
|
|
@@ -128,7 +114,6 @@ dependencies:
|
|
|
128
114
|
type: :runtime
|
|
129
115
|
prerelease: false
|
|
130
116
|
version_requirements: !ruby/object:Gem::Requirement
|
|
131
|
-
none: false
|
|
132
117
|
requirements:
|
|
133
118
|
- - ! '>='
|
|
134
119
|
- !ruby/object:Gem::Version
|
|
@@ -136,7 +121,6 @@ dependencies:
|
|
|
136
121
|
- !ruby/object:Gem::Dependency
|
|
137
122
|
name: confstruct
|
|
138
123
|
requirement: !ruby/object:Gem::Requirement
|
|
139
|
-
none: false
|
|
140
124
|
requirements:
|
|
141
125
|
- - ! '>='
|
|
142
126
|
- !ruby/object:Gem::Version
|
|
@@ -144,7 +128,6 @@ dependencies:
|
|
|
144
128
|
type: :runtime
|
|
145
129
|
prerelease: false
|
|
146
130
|
version_requirements: !ruby/object:Gem::Requirement
|
|
147
|
-
none: false
|
|
148
131
|
requirements:
|
|
149
132
|
- - ! '>='
|
|
150
133
|
- !ruby/object:Gem::Version
|
|
@@ -152,7 +135,6 @@ dependencies:
|
|
|
152
135
|
- !ruby/object:Gem::Dependency
|
|
153
136
|
name: rest-client
|
|
154
137
|
requirement: !ruby/object:Gem::Requirement
|
|
155
|
-
none: false
|
|
156
138
|
requirements:
|
|
157
139
|
- - ! '>='
|
|
158
140
|
- !ruby/object:Gem::Version
|
|
@@ -160,7 +142,6 @@ dependencies:
|
|
|
160
142
|
type: :runtime
|
|
161
143
|
prerelease: false
|
|
162
144
|
version_requirements: !ruby/object:Gem::Requirement
|
|
163
|
-
none: false
|
|
164
145
|
requirements:
|
|
165
146
|
- - ! '>='
|
|
166
147
|
- !ruby/object:Gem::Version
|
|
@@ -168,7 +149,6 @@ dependencies:
|
|
|
168
149
|
- !ruby/object:Gem::Dependency
|
|
169
150
|
name: validatable
|
|
170
151
|
requirement: !ruby/object:Gem::Requirement
|
|
171
|
-
none: false
|
|
172
152
|
requirements:
|
|
173
153
|
- - ! '>='
|
|
174
154
|
- !ruby/object:Gem::Version
|
|
@@ -176,7 +156,6 @@ dependencies:
|
|
|
176
156
|
type: :runtime
|
|
177
157
|
prerelease: false
|
|
178
158
|
version_requirements: !ruby/object:Gem::Requirement
|
|
179
|
-
none: false
|
|
180
159
|
requirements:
|
|
181
160
|
- - ! '>='
|
|
182
161
|
- !ruby/object:Gem::Version
|
|
@@ -184,7 +163,6 @@ dependencies:
|
|
|
184
163
|
- !ruby/object:Gem::Dependency
|
|
185
164
|
name: uuidtools
|
|
186
165
|
requirement: !ruby/object:Gem::Requirement
|
|
187
|
-
none: false
|
|
188
166
|
requirements:
|
|
189
167
|
- - ! '>='
|
|
190
168
|
- !ruby/object:Gem::Version
|
|
@@ -192,7 +170,6 @@ dependencies:
|
|
|
192
170
|
type: :runtime
|
|
193
171
|
prerelease: false
|
|
194
172
|
version_requirements: !ruby/object:Gem::Requirement
|
|
195
|
-
none: false
|
|
196
173
|
requirements:
|
|
197
174
|
- - ! '>='
|
|
198
175
|
- !ruby/object:Gem::Version
|
|
@@ -200,7 +177,6 @@ dependencies:
|
|
|
200
177
|
- !ruby/object:Gem::Dependency
|
|
201
178
|
name: json
|
|
202
179
|
requirement: !ruby/object:Gem::Requirement
|
|
203
|
-
none: false
|
|
204
180
|
requirements:
|
|
205
181
|
- - ! '>='
|
|
206
182
|
- !ruby/object:Gem::Version
|
|
@@ -208,7 +184,6 @@ dependencies:
|
|
|
208
184
|
type: :runtime
|
|
209
185
|
prerelease: false
|
|
210
186
|
version_requirements: !ruby/object:Gem::Requirement
|
|
211
|
-
none: false
|
|
212
187
|
requirements:
|
|
213
188
|
- - ! '>='
|
|
214
189
|
- !ruby/object:Gem::Version
|
|
@@ -216,7 +191,6 @@ dependencies:
|
|
|
216
191
|
- !ruby/object:Gem::Dependency
|
|
217
192
|
name: ruby-cache
|
|
218
193
|
requirement: !ruby/object:Gem::Requirement
|
|
219
|
-
none: false
|
|
220
194
|
requirements:
|
|
221
195
|
- - ! '>='
|
|
222
196
|
- !ruby/object:Gem::Version
|
|
@@ -224,7 +198,6 @@ dependencies:
|
|
|
224
198
|
type: :runtime
|
|
225
199
|
prerelease: false
|
|
226
200
|
version_requirements: !ruby/object:Gem::Requirement
|
|
227
|
-
none: false
|
|
228
201
|
requirements:
|
|
229
202
|
- - ! '>='
|
|
230
203
|
- !ruby/object:Gem::Version
|
|
@@ -232,7 +205,6 @@ dependencies:
|
|
|
232
205
|
- !ruby/object:Gem::Dependency
|
|
233
206
|
name: systemu
|
|
234
207
|
requirement: !ruby/object:Gem::Requirement
|
|
235
|
-
none: false
|
|
236
208
|
requirements:
|
|
237
209
|
- - ! '>='
|
|
238
210
|
- !ruby/object:Gem::Version
|
|
@@ -240,7 +212,6 @@ dependencies:
|
|
|
240
212
|
type: :runtime
|
|
241
213
|
prerelease: false
|
|
242
214
|
version_requirements: !ruby/object:Gem::Requirement
|
|
243
|
-
none: false
|
|
244
215
|
requirements:
|
|
245
216
|
- - ! '>='
|
|
246
217
|
- !ruby/object:Gem::Version
|
|
@@ -248,7 +219,6 @@ dependencies:
|
|
|
248
219
|
- !ruby/object:Gem::Dependency
|
|
249
220
|
name: lyber-utils
|
|
250
221
|
requirement: !ruby/object:Gem::Requirement
|
|
251
|
-
none: false
|
|
252
222
|
requirements:
|
|
253
223
|
- - ! '>='
|
|
254
224
|
- !ruby/object:Gem::Version
|
|
@@ -256,7 +226,6 @@ dependencies:
|
|
|
256
226
|
type: :runtime
|
|
257
227
|
prerelease: false
|
|
258
228
|
version_requirements: !ruby/object:Gem::Requirement
|
|
259
|
-
none: false
|
|
260
229
|
requirements:
|
|
261
230
|
- - ! '>='
|
|
262
231
|
- !ruby/object:Gem::Version
|
|
@@ -264,7 +233,6 @@ dependencies:
|
|
|
264
233
|
- !ruby/object:Gem::Dependency
|
|
265
234
|
name: ruby-graphviz
|
|
266
235
|
requirement: !ruby/object:Gem::Requirement
|
|
267
|
-
none: false
|
|
268
236
|
requirements:
|
|
269
237
|
- - ! '>='
|
|
270
238
|
- !ruby/object:Gem::Version
|
|
@@ -272,7 +240,6 @@ dependencies:
|
|
|
272
240
|
type: :runtime
|
|
273
241
|
prerelease: false
|
|
274
242
|
version_requirements: !ruby/object:Gem::Requirement
|
|
275
|
-
none: false
|
|
276
243
|
requirements:
|
|
277
244
|
- - ! '>='
|
|
278
245
|
- !ruby/object:Gem::Version
|
|
@@ -280,7 +247,6 @@ dependencies:
|
|
|
280
247
|
- !ruby/object:Gem::Dependency
|
|
281
248
|
name: progressbar
|
|
282
249
|
requirement: !ruby/object:Gem::Requirement
|
|
283
|
-
none: false
|
|
284
250
|
requirements:
|
|
285
251
|
- - ! '>='
|
|
286
252
|
- !ruby/object:Gem::Version
|
|
@@ -288,7 +254,6 @@ dependencies:
|
|
|
288
254
|
type: :runtime
|
|
289
255
|
prerelease: false
|
|
290
256
|
version_requirements: !ruby/object:Gem::Requirement
|
|
291
|
-
none: false
|
|
292
257
|
requirements:
|
|
293
258
|
- - ! '>='
|
|
294
259
|
- !ruby/object:Gem::Version
|
|
@@ -296,7 +261,6 @@ dependencies:
|
|
|
296
261
|
- !ruby/object:Gem::Dependency
|
|
297
262
|
name: equivalent-xml
|
|
298
263
|
requirement: !ruby/object:Gem::Requirement
|
|
299
|
-
none: false
|
|
300
264
|
requirements:
|
|
301
265
|
- - ! '>='
|
|
302
266
|
- !ruby/object:Gem::Version
|
|
@@ -304,7 +268,6 @@ dependencies:
|
|
|
304
268
|
type: :runtime
|
|
305
269
|
prerelease: false
|
|
306
270
|
version_requirements: !ruby/object:Gem::Requirement
|
|
307
|
-
none: false
|
|
308
271
|
requirements:
|
|
309
272
|
- - ! '>='
|
|
310
273
|
- !ruby/object:Gem::Version
|
|
@@ -312,7 +275,6 @@ dependencies:
|
|
|
312
275
|
- !ruby/object:Gem::Dependency
|
|
313
276
|
name: net-ssh
|
|
314
277
|
requirement: !ruby/object:Gem::Requirement
|
|
315
|
-
none: false
|
|
316
278
|
requirements:
|
|
317
279
|
- - ! '>='
|
|
318
280
|
- !ruby/object:Gem::Version
|
|
@@ -320,7 +282,6 @@ dependencies:
|
|
|
320
282
|
type: :runtime
|
|
321
283
|
prerelease: false
|
|
322
284
|
version_requirements: !ruby/object:Gem::Requirement
|
|
323
|
-
none: false
|
|
324
285
|
requirements:
|
|
325
286
|
- - ! '>='
|
|
326
287
|
- !ruby/object:Gem::Version
|
|
@@ -328,7 +289,6 @@ dependencies:
|
|
|
328
289
|
- !ruby/object:Gem::Dependency
|
|
329
290
|
name: net-sftp
|
|
330
291
|
requirement: !ruby/object:Gem::Requirement
|
|
331
|
-
none: false
|
|
332
292
|
requirements:
|
|
333
293
|
- - ! '>='
|
|
334
294
|
- !ruby/object:Gem::Version
|
|
@@ -336,7 +296,6 @@ dependencies:
|
|
|
336
296
|
type: :runtime
|
|
337
297
|
prerelease: false
|
|
338
298
|
version_requirements: !ruby/object:Gem::Requirement
|
|
339
|
-
none: false
|
|
340
299
|
requirements:
|
|
341
300
|
- - ! '>='
|
|
342
301
|
- !ruby/object:Gem::Version
|
|
@@ -344,7 +303,6 @@ dependencies:
|
|
|
344
303
|
- !ruby/object:Gem::Dependency
|
|
345
304
|
name: druid-tools
|
|
346
305
|
requirement: !ruby/object:Gem::Requirement
|
|
347
|
-
none: false
|
|
348
306
|
requirements:
|
|
349
307
|
- - ! '>='
|
|
350
308
|
- !ruby/object:Gem::Version
|
|
@@ -352,7 +310,6 @@ dependencies:
|
|
|
352
310
|
type: :runtime
|
|
353
311
|
prerelease: false
|
|
354
312
|
version_requirements: !ruby/object:Gem::Requirement
|
|
355
|
-
none: false
|
|
356
313
|
requirements:
|
|
357
314
|
- - ! '>='
|
|
358
315
|
- !ruby/object:Gem::Version
|
|
@@ -360,7 +317,6 @@ dependencies:
|
|
|
360
317
|
- !ruby/object:Gem::Dependency
|
|
361
318
|
name: moab-versioning
|
|
362
319
|
requirement: !ruby/object:Gem::Requirement
|
|
363
|
-
none: false
|
|
364
320
|
requirements:
|
|
365
321
|
- - '='
|
|
366
322
|
- !ruby/object:Gem::Version
|
|
@@ -368,7 +324,6 @@ dependencies:
|
|
|
368
324
|
type: :runtime
|
|
369
325
|
prerelease: false
|
|
370
326
|
version_requirements: !ruby/object:Gem::Requirement
|
|
371
|
-
none: false
|
|
372
327
|
requirements:
|
|
373
328
|
- - '='
|
|
374
329
|
- !ruby/object:Gem::Version
|
|
@@ -376,7 +331,6 @@ dependencies:
|
|
|
376
331
|
- !ruby/object:Gem::Dependency
|
|
377
332
|
name: stanford-mods
|
|
378
333
|
requirement: !ruby/object:Gem::Requirement
|
|
379
|
-
none: false
|
|
380
334
|
requirements:
|
|
381
335
|
- - ! '>='
|
|
382
336
|
- !ruby/object:Gem::Version
|
|
@@ -384,7 +338,6 @@ dependencies:
|
|
|
384
338
|
type: :runtime
|
|
385
339
|
prerelease: false
|
|
386
340
|
version_requirements: !ruby/object:Gem::Requirement
|
|
387
|
-
none: false
|
|
388
341
|
requirements:
|
|
389
342
|
- - ! '>='
|
|
390
343
|
- !ruby/object:Gem::Version
|
|
@@ -392,7 +345,6 @@ dependencies:
|
|
|
392
345
|
- !ruby/object:Gem::Dependency
|
|
393
346
|
name: dor-workflow-service
|
|
394
347
|
requirement: !ruby/object:Gem::Requirement
|
|
395
|
-
none: false
|
|
396
348
|
requirements:
|
|
397
349
|
- - ~>
|
|
398
350
|
- !ruby/object:Gem::Version
|
|
@@ -400,7 +352,6 @@ dependencies:
|
|
|
400
352
|
type: :runtime
|
|
401
353
|
prerelease: false
|
|
402
354
|
version_requirements: !ruby/object:Gem::Requirement
|
|
403
|
-
none: false
|
|
404
355
|
requirements:
|
|
405
356
|
- - ~>
|
|
406
357
|
- !ruby/object:Gem::Version
|
|
@@ -408,7 +359,6 @@ dependencies:
|
|
|
408
359
|
- !ruby/object:Gem::Dependency
|
|
409
360
|
name: fakeweb
|
|
410
361
|
requirement: !ruby/object:Gem::Requirement
|
|
411
|
-
none: false
|
|
412
362
|
requirements:
|
|
413
363
|
- - ! '>='
|
|
414
364
|
- !ruby/object:Gem::Version
|
|
@@ -416,7 +366,6 @@ dependencies:
|
|
|
416
366
|
type: :development
|
|
417
367
|
prerelease: false
|
|
418
368
|
version_requirements: !ruby/object:Gem::Requirement
|
|
419
|
-
none: false
|
|
420
369
|
requirements:
|
|
421
370
|
- - ! '>='
|
|
422
371
|
- !ruby/object:Gem::Version
|
|
@@ -424,7 +373,6 @@ dependencies:
|
|
|
424
373
|
- !ruby/object:Gem::Dependency
|
|
425
374
|
name: haml
|
|
426
375
|
requirement: !ruby/object:Gem::Requirement
|
|
427
|
-
none: false
|
|
428
376
|
requirements:
|
|
429
377
|
- - ! '>='
|
|
430
378
|
- !ruby/object:Gem::Version
|
|
@@ -432,7 +380,6 @@ dependencies:
|
|
|
432
380
|
type: :development
|
|
433
381
|
prerelease: false
|
|
434
382
|
version_requirements: !ruby/object:Gem::Requirement
|
|
435
|
-
none: false
|
|
436
383
|
requirements:
|
|
437
384
|
- - ! '>='
|
|
438
385
|
- !ruby/object:Gem::Version
|
|
@@ -440,7 +387,6 @@ dependencies:
|
|
|
440
387
|
- !ruby/object:Gem::Dependency
|
|
441
388
|
name: jhove-service
|
|
442
389
|
requirement: !ruby/object:Gem::Requirement
|
|
443
|
-
none: false
|
|
444
390
|
requirements:
|
|
445
391
|
- - ! '>='
|
|
446
392
|
- !ruby/object:Gem::Version
|
|
@@ -448,7 +394,6 @@ dependencies:
|
|
|
448
394
|
type: :development
|
|
449
395
|
prerelease: false
|
|
450
396
|
version_requirements: !ruby/object:Gem::Requirement
|
|
451
|
-
none: false
|
|
452
397
|
requirements:
|
|
453
398
|
- - ! '>='
|
|
454
399
|
- !ruby/object:Gem::Version
|
|
@@ -456,7 +401,6 @@ dependencies:
|
|
|
456
401
|
- !ruby/object:Gem::Dependency
|
|
457
402
|
name: rake
|
|
458
403
|
requirement: !ruby/object:Gem::Requirement
|
|
459
|
-
none: false
|
|
460
404
|
requirements:
|
|
461
405
|
- - ! '>='
|
|
462
406
|
- !ruby/object:Gem::Version
|
|
@@ -464,7 +408,6 @@ dependencies:
|
|
|
464
408
|
type: :development
|
|
465
409
|
prerelease: false
|
|
466
410
|
version_requirements: !ruby/object:Gem::Requirement
|
|
467
|
-
none: false
|
|
468
411
|
requirements:
|
|
469
412
|
- - ! '>='
|
|
470
413
|
- !ruby/object:Gem::Version
|
|
@@ -472,7 +415,6 @@ dependencies:
|
|
|
472
415
|
- !ruby/object:Gem::Dependency
|
|
473
416
|
name: rdoc
|
|
474
417
|
requirement: !ruby/object:Gem::Requirement
|
|
475
|
-
none: false
|
|
476
418
|
requirements:
|
|
477
419
|
- - ! '>='
|
|
478
420
|
- !ruby/object:Gem::Version
|
|
@@ -480,7 +422,6 @@ dependencies:
|
|
|
480
422
|
type: :development
|
|
481
423
|
prerelease: false
|
|
482
424
|
version_requirements: !ruby/object:Gem::Requirement
|
|
483
|
-
none: false
|
|
484
425
|
requirements:
|
|
485
426
|
- - ! '>='
|
|
486
427
|
- !ruby/object:Gem::Version
|
|
@@ -488,7 +429,6 @@ dependencies:
|
|
|
488
429
|
- !ruby/object:Gem::Dependency
|
|
489
430
|
name: rspec
|
|
490
431
|
requirement: !ruby/object:Gem::Requirement
|
|
491
|
-
none: false
|
|
492
432
|
requirements:
|
|
493
433
|
- - ~>
|
|
494
434
|
- !ruby/object:Gem::Version
|
|
@@ -496,7 +436,6 @@ dependencies:
|
|
|
496
436
|
type: :development
|
|
497
437
|
prerelease: false
|
|
498
438
|
version_requirements: !ruby/object:Gem::Requirement
|
|
499
|
-
none: false
|
|
500
439
|
requirements:
|
|
501
440
|
- - ~>
|
|
502
441
|
- !ruby/object:Gem::Version
|
|
@@ -504,7 +443,6 @@ dependencies:
|
|
|
504
443
|
- !ruby/object:Gem::Dependency
|
|
505
444
|
name: yard
|
|
506
445
|
requirement: !ruby/object:Gem::Requirement
|
|
507
|
-
none: false
|
|
508
446
|
requirements:
|
|
509
447
|
- - ! '>='
|
|
510
448
|
- !ruby/object:Gem::Version
|
|
@@ -512,7 +450,6 @@ dependencies:
|
|
|
512
450
|
type: :development
|
|
513
451
|
prerelease: false
|
|
514
452
|
version_requirements: !ruby/object:Gem::Requirement
|
|
515
|
-
none: false
|
|
516
453
|
requirements:
|
|
517
454
|
- - ! '>='
|
|
518
455
|
- !ruby/object:Gem::Version
|
|
@@ -526,111 +463,105 @@ executables:
|
|
|
526
463
|
extensions: []
|
|
527
464
|
extra_rdoc_files: []
|
|
528
465
|
files:
|
|
466
|
+
- lib/dor/exceptions.rb
|
|
529
467
|
- lib/dor/config.rb
|
|
530
|
-
- lib/dor/
|
|
531
|
-
- lib/dor/
|
|
532
|
-
- lib/dor/
|
|
533
|
-
- lib/dor/
|
|
534
|
-
- lib/dor/datastreams/desc_metadata_ds.rb
|
|
468
|
+
- lib/dor/version.rb
|
|
469
|
+
- lib/dor/workflow/process.rb
|
|
470
|
+
- lib/dor/workflow/document.rb
|
|
471
|
+
- lib/dor/workflow/graph.rb
|
|
535
472
|
- lib/dor/datastreams/embargo_metadata_ds.rb
|
|
536
|
-
- lib/dor/datastreams/
|
|
473
|
+
- lib/dor/datastreams/datastream_spec_solrizer.rb
|
|
474
|
+
- lib/dor/datastreams/administrative_metadata_ds.rb
|
|
537
475
|
- lib/dor/datastreams/identity.xsl
|
|
538
|
-
- lib/dor/datastreams/identity_metadata_ds.rb
|
|
539
476
|
- lib/dor/datastreams/role_metadata_ds.rb
|
|
477
|
+
- lib/dor/datastreams/workflow_definition_ds.rb
|
|
540
478
|
- lib/dor/datastreams/simple_dublin_core_ds.rb
|
|
479
|
+
- lib/dor/datastreams/desc_metadata_ds.rb
|
|
480
|
+
- lib/dor/datastreams/default_object_rights_ds.rb
|
|
481
|
+
- lib/dor/datastreams/content_metadata_ds.rb
|
|
541
482
|
- lib/dor/datastreams/version_metadata_ds.rb
|
|
542
|
-
- lib/dor/datastreams/
|
|
483
|
+
- lib/dor/datastreams/identity_metadata_ds.rb
|
|
543
484
|
- lib/dor/datastreams/workflow_ds.rb
|
|
544
|
-
- lib/dor/
|
|
545
|
-
- lib/dor/
|
|
546
|
-
- lib/dor/
|
|
547
|
-
- lib/dor/
|
|
548
|
-
- lib/dor/
|
|
549
|
-
- lib/dor/migrations/identifiable/uriify_augmented_contentlocation_refs.rb
|
|
550
|
-
- lib/dor/migrations/identifiable/uriify_contentlocation_refs.rb
|
|
551
|
-
- lib/dor/migrations/processable/unify_workflows.rb
|
|
552
|
-
- lib/dor/migrations/versionable/add_missing_version_md.rb
|
|
553
|
-
- lib/dor/models/admin_policy_object.rb
|
|
554
|
-
- lib/dor/models/assembleable.rb
|
|
555
|
-
- lib/dor/models/collection.rb
|
|
556
|
-
- lib/dor/models/contentable.rb
|
|
557
|
-
- lib/dor/models/describable.rb
|
|
485
|
+
- lib/dor/datastreams/events_ds.rb
|
|
486
|
+
- lib/dor/utils/predicate_patch.rb
|
|
487
|
+
- lib/dor/utils/solr_doc_helper.rb
|
|
488
|
+
- lib/dor/utils/utc_date_field_mapper.rb
|
|
489
|
+
- lib/dor/utils/ng_tidy.rb
|
|
558
490
|
- lib/dor/models/discoverable.rb
|
|
559
491
|
- lib/dor/models/editable.rb
|
|
560
|
-
- lib/dor/models/
|
|
561
|
-
- lib/dor/models/eventable.rb
|
|
562
|
-
- lib/dor/models/governable.rb
|
|
492
|
+
- lib/dor/models/publishable.rb
|
|
563
493
|
- lib/dor/models/identifiable.rb
|
|
564
|
-
- lib/dor/models/
|
|
565
|
-
- lib/dor/models/
|
|
494
|
+
- lib/dor/models/contentable.rb
|
|
495
|
+
- lib/dor/models/workflow_object.rb
|
|
566
496
|
- lib/dor/models/mods2dc.xslt
|
|
497
|
+
- lib/dor/models/governable.rb
|
|
498
|
+
- lib/dor/models/embargoable.rb
|
|
567
499
|
- lib/dor/models/preservable.rb
|
|
500
|
+
- lib/dor/models/versionable.rb
|
|
501
|
+
- lib/dor/models/upgradable.rb
|
|
502
|
+
- lib/dor/models/collection.rb
|
|
503
|
+
- lib/dor/models/assembleable.rb
|
|
504
|
+
- lib/dor/models/itemizable.rb
|
|
505
|
+
- lib/dor/models/eventable.rb
|
|
506
|
+
- lib/dor/models/admin_policy_object.rb
|
|
507
|
+
- lib/dor/models/shelvable.rb
|
|
568
508
|
- lib/dor/models/processable.rb
|
|
569
|
-
- lib/dor/models/publishable.rb
|
|
570
509
|
- lib/dor/models/set.rb
|
|
571
|
-
- lib/dor/models/
|
|
572
|
-
- lib/dor/models/
|
|
573
|
-
- lib/dor/
|
|
574
|
-
- lib/dor/
|
|
575
|
-
- lib/dor/
|
|
576
|
-
- lib/dor/
|
|
577
|
-
- lib/dor/
|
|
578
|
-
- lib/dor/
|
|
579
|
-
- lib/dor/
|
|
510
|
+
- lib/dor/models/item.rb
|
|
511
|
+
- lib/dor/models/describable.rb
|
|
512
|
+
- lib/dor/migrations/versionable/add_missing_version_md.rb
|
|
513
|
+
- lib/dor/migrations/identifiable/fix_model_assertions.rb
|
|
514
|
+
- lib/dor/migrations/identifiable/record_remediation.rb
|
|
515
|
+
- lib/dor/migrations/identifiable/assert_adminPolicy.rb
|
|
516
|
+
- lib/dor/migrations/identifiable/uriify_contentlocation_refs.rb
|
|
517
|
+
- lib/dor/migrations/identifiable/uriify_augmented_contentlocation_refs.rb
|
|
518
|
+
- lib/dor/migrations/content_metadata_ds/change_content_type.rb
|
|
519
|
+
- lib/dor/migrations/processable/unify_workflows.rb
|
|
580
520
|
- lib/dor/services/metadata_service.rb
|
|
581
|
-
- lib/dor/services/registration_service.rb
|
|
582
521
|
- lib/dor/services/sdr_ingest_service.rb
|
|
583
|
-
- lib/dor/services/search_service.rb
|
|
584
522
|
- lib/dor/services/suri_service.rb
|
|
585
|
-
- lib/dor/services/technical_metadata_service.rb
|
|
586
523
|
- lib/dor/services/tei2dc.xslt
|
|
587
|
-
- lib/dor/
|
|
588
|
-
- lib/dor/
|
|
589
|
-
- lib/dor/
|
|
590
|
-
- lib/dor/
|
|
591
|
-
- lib/dor/
|
|
592
|
-
- lib/dor/
|
|
593
|
-
- lib/dor/
|
|
594
|
-
- lib/dor/
|
|
524
|
+
- lib/dor/services/search_service.rb
|
|
525
|
+
- lib/dor/services/cleanup_service.rb
|
|
526
|
+
- lib/dor/services/merge_service.rb
|
|
527
|
+
- lib/dor/services/technical_metadata_service.rb
|
|
528
|
+
- lib/dor/services/digital_stacks_service.rb
|
|
529
|
+
- lib/dor/services/registration_service.rb
|
|
530
|
+
- lib/dor/services/metadata_handlers/catalog_handler.rb
|
|
531
|
+
- lib/dor/services/metadata_handlers/mdtoolkit_handler.rb
|
|
595
532
|
- lib/dor-services.rb
|
|
596
|
-
- lib/gsearch/demoFoxmlToSolr.xslt
|
|
597
|
-
- lib/gsearch/schema.xml
|
|
598
533
|
- lib/tasks/dor.rake
|
|
599
534
|
- lib/tasks/rdoc.rake
|
|
600
|
-
-
|
|
601
|
-
-
|
|
535
|
+
- lib/gsearch/demoFoxmlToSolr.xslt
|
|
536
|
+
- lib/gsearch/schema.xml
|
|
602
537
|
- config/certs/README
|
|
603
|
-
- config/certs/robots-dor-dev.crt
|
|
604
|
-
- config/certs/robots-dor-dev.key
|
|
605
538
|
- config/config_defaults.yml
|
|
606
|
-
- config/dev_console_env.rb
|
|
607
|
-
- config/dev_console_env.rb.example
|
|
608
539
|
- config/predicate_mappings.yml
|
|
609
|
-
-
|
|
540
|
+
- config/dev_console_env.rb.example
|
|
610
541
|
- bin/dor-indexerd
|
|
542
|
+
- bin/dor-indexer
|
|
611
543
|
homepage:
|
|
612
544
|
licenses: []
|
|
545
|
+
metadata: {}
|
|
613
546
|
post_install_message:
|
|
614
547
|
rdoc_options: []
|
|
615
548
|
require_paths:
|
|
616
549
|
- lib
|
|
617
550
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
618
|
-
none: false
|
|
619
551
|
requirements:
|
|
620
552
|
- - ! '>='
|
|
621
553
|
- !ruby/object:Gem::Version
|
|
622
554
|
version: '0'
|
|
623
555
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
624
|
-
none: false
|
|
625
556
|
requirements:
|
|
626
557
|
- - ! '>='
|
|
627
558
|
- !ruby/object:Gem::Version
|
|
628
559
|
version: 1.3.6
|
|
629
560
|
requirements: []
|
|
630
561
|
rubyforge_project:
|
|
631
|
-
rubygems_version: 1.
|
|
562
|
+
rubygems_version: 2.1.9
|
|
632
563
|
signing_key:
|
|
633
|
-
specification_version:
|
|
564
|
+
specification_version: 4
|
|
634
565
|
summary: Ruby implmentation of DOR services used by the SULAIR Digital Library
|
|
635
566
|
test_files: []
|
|
636
567
|
has_rdoc:
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
-----BEGIN CERTIFICATE-----
|
|
2
|
-
MIIC3zCCAccCCQC3NmcDpol4lzANBgkqhkiG9w0BAQUFADBtMQswCQYDVQQGEwJV
|
|
3
|
-
UzETMBEGA1UECBMKQ2FsaWZvcm5pYTERMA8GA1UEBxMIU3RhbmZvcmQxETAPBgNV
|
|
4
|
-
BAoTCFN0YW5mb3JkMQ0wCwYDVQQLEwRETFNTMRQwEgYDVQQDEwtMeWJlclRlc3RD
|
|
5
|
-
QTAeFw0xMTAyMjMxNjUzNTlaFw0yMTAyMjAxNjUzNTlaMHoxCzAJBgNVBAYTAlVT
|
|
6
|
-
MRMwEQYDVQQIEwpDYWxpZm9ybmlhMREwDwYDVQQHEwhTdGFuZm9yZDEcMBoGA1UE
|
|
7
|
-
ChMTU3RhbmZvcmQgVW5pdmVyc2l0eTENMAsGA1UECxMERExTUzEWMBQGA1UEAxMN
|
|
8
|
-
ZGxzcy1kZXYtdGVzdDCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAl70WWl1c
|
|
9
|
-
eC50SwKDCr+vhNFH9N+YdTzh3rIRVKzJFPKvNqkye0jwq9MApyEtQzdyk3eDInlK
|
|
10
|
-
dOwKX0XpoLnzm9SgBIY714ojYKZMRPPaIc2k5D7mYgyAUYyWLTJnO93KH3PhMbZY
|
|
11
|
-
79BrNIMaYu7FGu/SVqQB44j9VnlG36mpmUUCAwEAATANBgkqhkiG9w0BAQUFAAOC
|
|
12
|
-
AQEAlAn5InW1y7GCH/I4t9FgL3nkaOkaO9EzdU8EGtQpQ3YuNqy7IWfqFUm0r06w
|
|
13
|
-
C9CkvEeaZe2GhzQ0ppKXFGI/oWOxETQhgr50HUlXp6hb+zvgrgD1daKbeBCseYF3
|
|
14
|
-
yni37BoPrmQbfA+kmrskRTPpxNnTyQqXCLF2IY+1oAsLC9LyZ3wit/x6oTHwFB6a
|
|
15
|
-
ME/9gJ49UkXaHqvfXy76/qWCBjDZOgMlR0O2y4gi1NPR4+EvEuxcyaXqu9wvAnm2
|
|
16
|
-
z+UPjqi8dBji8T5eWxtiqnawBN5457L80z9EGHCEADHzlyVFUVmHFbFCs/lTzQj7
|
|
17
|
-
fDH+2wlD4o4TMaztLAE3IR6Gtg==
|
|
18
|
-
-----END CERTIFICATE-----
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
-
MIICXAIBAAKBgQCXvRZaXVx4LnRLAoMKv6+E0Uf035h1POHeshFUrMkU8q82qTJ7
|
|
3
|
-
SPCr0wCnIS1DN3KTd4MieUp07ApfRemgufOb1KAEhjvXiiNgpkxE89ohzaTkPuZi
|
|
4
|
-
DIBRjJYtMmc73cofc+Extljv0Gs0gxpi7sUa79JWpAHjiP1WeUbfqamZRQIDAQAB
|
|
5
|
-
AoGAT5Rgm8XpEDK01P4dQc7kO5ES3u9BYwMqJoRXKIRx9SWOFOnJyvSnHEZOSljR
|
|
6
|
-
BzaWRZbhVHwuO4HrsqnU7HF5vAqWQvWfMFVnImIFnIY2hIai4MlB3HMljuosJ5jE
|
|
7
|
-
RRWng6FcalWq5AeWM5hjNG0yhULhKN5y+AI9mHkzIlpWSsECQQDILiA2uSh7zLBa
|
|
8
|
-
hcq2ODPfB42G9xJVXn4oxLdn2zlyKXWvVXoYWGMQWZnnxvrt75n4Iif1y6G/Imhq
|
|
9
|
-
C6DenWXRAkEAwgz1QYd7Ei+Sl3adTtKRVe6jtXrD3JEA7/JtY+mcgCpD8fbUynsS
|
|
10
|
-
7rFA4c8dIa5BkOSvp8kQWJ/Dl3uwnpt1NQJAKSZSOO2XBNvu5KzcHtku0Ioc7cGc
|
|
11
|
-
YzApfvfxO8g05uLe7kwD7T0+H/5LRPoCWycF35wl2sEhXskT7bi2OQziAQJAWtak
|
|
12
|
-
DMv2MdoxPlQZaaeqv1ZaLn9Mprj+flS3HpliWKDwc5l/nVWl1DUH0W0aDwU6zjAv
|
|
13
|
-
hlTaIRKRBh2x3V2arQJBAIwzwimH6SDiXqZUZ5pBxX1GETNvegHeeIj0Bmu+jFhN
|
|
14
|
-
0KDbvoWrJe0Hw1UpBlWiZdrD9Ht3mQdNiPyorL+DDJs=
|
|
15
|
-
-----END RSA PRIVATE KEY-----
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
-----BEGIN CERTIFICATE-----
|
|
2
|
-
MIIE9zCCAt8CCQCcUJVDTu7rTjANBgkqhkiG9w0BAQUFADCBvzELMAkGA1UEBhMC
|
|
3
|
-
VVMxEzARBgNVBAgTCkNhbGlmb3JuaWExETAPBgNVBAcTCFN0YW5mb3JkMRwwGgYD
|
|
4
|
-
VQQKExNTdGFuZm9yZCBVbml2ZXJzaXR5MRIwEAYDVQQLEwlMaWJyYXJpZXMxJTAj
|
|
5
|
-
BgNVBAMTHFNVTCBET1IgKGRldi90ZXN0KSBhY2Nlc3MgQ0ExLzAtBgkqhkiG9w0B
|
|
6
|
-
CQEWIHN1bC13ZWJtYXN0ZXJAbGlzdHMuc3RhbmZvcmQuZWR1MB4XDTEyMDkyNjE1
|
|
7
|
-
NTQzNVoXDTIyMDkyNDE1NTQzNVowgboxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpD
|
|
8
|
-
YWxpZm9ybmlhMREwDwYDVQQHEwhTdGFuZm9yZDEcMBoGA1UEChMTU3RhbmZvcmQg
|
|
9
|
-
VW5pdmVyc2l0eTEyMDAGA1UEAxQpcm9ib3RzQHN1bC1seWJlcnNlcnZpY2VzLWRl
|
|
10
|
-
di5zdGFuZm9yZC5lZHUxMTAvBgkqhkiG9w0BCQEWImRsc3MtZGV2ZWxvcGVyc0Bs
|
|
11
|
-
aXN0cy5zdGFuZm9yZC5lZHUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB
|
|
12
|
-
AQC1t+PPhLTDFQBuAf4f1GOj7jHdXMN0tvSHL1OCaibe0d8iKbXCMMIE0z8lbBpZ
|
|
13
|
-
1pA+8terIvxoTlly92EEvGkywZb+DIxnjyG0b9ftDJ64pARJMcnvwJMW/w3WdHCd
|
|
14
|
-
5uJ5HVM8ZCbEItUfskFukS6tfNBpG8ri6cIQ2ulJzOWYxPV5R2eRneM6vtFD0xtu
|
|
15
|
-
RJb/uMwiOwB79qk4QazbEQtkeZsrvomDFkIuHO/nf9wmgYG99H7q1kXplIrzDDX+
|
|
16
|
-
fvD+JHvuMr5YXfmBQ9wmaZf6YIL7CXj79HUF4uG/a0SjrLZyLh262zWJQFVpjSW8
|
|
17
|
-
Brl/fAyjeZvWJMyCDXRqsedjAgMBAAEwDQYJKoZIhvcNAQEFBQADggIBAG0jIfTj
|
|
18
|
-
1FJsxTzcD938vtKuNo5XEIX8phqW1MA2eJ5Ojgu1hpW5Jf7fmUHKVnamm7eya5QR
|
|
19
|
-
356KCJzZzwdCS4xVFq/l43gCA2j8TYrwO6/0EfM/5psUZS3ecwahzcJXfHPHvd9u
|
|
20
|
-
qaXRqbjJYi+Ls70uStTC/JBIIu48atDF0DeXJ21hAbstZ1OKKNzAcYgZk14GKxCi
|
|
21
|
-
ArgAzdg8UDtC4KsdqgxP6vF8Vc/gcHSu9AkVHgPVXbITjV0/kaKNgFi0bVqP7bJD
|
|
22
|
-
hrUFYrS+S+hflQJCmVrDwW0JU2HnJ3EJOFX5F4FYHL4vt6ZjVsMzucraMqiLyUaO
|
|
23
|
-
s6DVaWO8WMlphmFUfb3ChQjrKxFZZ6vKJPD/ExnQHa0kWwOELyMJuXw2PLk7k+qD
|
|
24
|
-
rmjX+K3Ed+JiJuiDG5k8f1BDZE24lvxDwye5fQyDWPfib1yTClYYy4PRh4AI688f
|
|
25
|
-
qgMyv51Qx82o0IJ1On1rNg5/iB7OEVcYSol3U5xiY9gRUd3vq637agZzMuRQnKXs
|
|
26
|
-
Uj0+Vl4OrZ54F8MVsUKfi7Je1oVUEhuHqFt/tSOGlHg1XyR/ExwulCNBKIVdhhrF
|
|
27
|
-
rxZCYrGDSUCF6tteJXpOBTtFT9b7hbMmBohKyS4XjfPSPRh9QHx7wepqSp3aHpmR
|
|
28
|
-
4gY8Go40mS83xHCKBooqsy2/Z9vQlSb9Cr8u
|
|
29
|
-
-----END CERTIFICATE-----
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
-----BEGIN RSA PRIVATE KEY-----
|
|
2
|
-
MIIEpQIBAAKCAQEAtbfjz4S0wxUAbgH+H9Rjo+4x3VzDdLb0hy9Tgmom3tHfIim1
|
|
3
|
-
wjDCBNM/JWwaWdaQPvLXqyL8aE5ZcvdhBLxpMsGW/gyMZ48htG/X7QyeuKQESTHJ
|
|
4
|
-
78CTFv8N1nRwnebieR1TPGQmxCLVH7JBbpEurXzQaRvK4unCENrpSczlmMT1eUdn
|
|
5
|
-
kZ3jOr7RQ9MbbkSW/7jMIjsAe/apOEGs2xELZHmbK76JgxZCLhzv53/cJoGBvfR+
|
|
6
|
-
6tZF6ZSK8ww1/n7w/iR77jK+WF35gUPcJmmX+mCC+wl4+/R1BeLhv2tEo6y2ci4d
|
|
7
|
-
uts1iUBVaY0lvAa5f3wMo3mb1iTMgg10arHnYwIDAQABAoIBAQCmlDzsZZ2C24S6
|
|
8
|
-
U29OZFc21kq1vqyaGIEOT48BFSguyDsAyTWKH0IsRC41suRxCGTQn7KeegLh5zjO
|
|
9
|
-
UAGK4uCYm6g7mOs4n5fpHUHWVuRFJG2dX1vbQTBVO1fHCJSX2ygumHhN+w0ibT/r
|
|
10
|
-
v2+F2ObuOGWghM62tkylQNfsRD0QjalE8ST2xp9p4xwPrAwEuURlA04qnLYNi4+6
|
|
11
|
-
qexDtrLG8E6JV/dd3dY95WjKPscadR1fAKm9sebD0XO31Lu6BGCvpmBU0OmYVfrY
|
|
12
|
-
BN/ofhEmJh+Xgwfxx6PicRDvu9bPnffqbGhDO4ckGDlqXp1fDBgf1I7CclXdrVMH
|
|
13
|
-
Qsxunh5pAoGBAN7929V1aw0S7Rqvuf4N+o1XwBExa2DL7EYI1Oea/nuBMPqvfeNh
|
|
14
|
-
SrbM0gYejEzLmeRUUKRhMMoAgXQnxcg3Kz/5pUXT3b4YtzeskX8nkJ6/2gEU3M7E
|
|
15
|
-
lJj7c5wW1otqMH19+iDNR4N8vjPh98kDJW1HZUHSAcdyE+dZiFP2ofMfAoGBANCe
|
|
16
|
-
AJgA9EkdwZsom+I7Ty9LSrTWx6cKmNEbLVn1iSlyJx1kHoWyTMtuZszCWBjiXx70
|
|
17
|
-
84WpX2B4MuJBq6sSoEiUahNsphks82glOd6i+eoE/I+NtZehOFnkAMyGux+FbMyG
|
|
18
|
-
q/9ZlQgsbWpFHxS59vX/kvlNun2RpJkaF6QPBuc9AoGBAIGdscCb5cPNsoCGkGf6
|
|
19
|
-
HB84WG4l+bJkFkyHKaoOT8neSGgOxe/7R4CGAbaI3yhsWGF+GPnTfJaOQLERxUch
|
|
20
|
-
ukQPil/STNwIZcc4ycHNb6S3A7MJO2f8oBtkXcjnBYI4EUOAjHmwmNb3FV/3Ax6W
|
|
21
|
-
c5TXoSXnOh2CU8twIWwcufolAoGATqnFf4uckZVu05rUbNIAYcz6NoZmck5EoVSm
|
|
22
|
-
HS3Asqggp6yA9djtrCfNC5icr4VsaLfku5nKJQ4t4bLxkGhNmBCejwSA/S09+x9O
|
|
23
|
-
Wu0JX3zR3y+IMczQ+tRGmNiU5qXhCJ4fbQHSeGqIN3Io7h/RR6E/QlJU59RrRG/a
|
|
24
|
-
SjqAV+ECgYEA2mA5VFK3jECnLde+biEaXidIOuBMcqaP0VG6sBwz2wTGSTBE1WkG
|
|
25
|
-
6prCD0McWVAgDTm3MMKxeuMaoW5eEi83+G+CywLaTBpc8Hz7qgRhBpKhRirCfHMW
|
|
26
|
-
EfQV5k32vEGoSI+eG8zcGb9mwDeb/EWXAMGXrx2YuYFu7txtwC2mZXc=
|
|
27
|
-
-----END RSA PRIVATE KEY-----
|
data/config/dev_console_env.rb
DELETED
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
# Copied from common-accessioning config/environments
|
|
2
|
-
|
|
3
|
-
cert_dir = File.join(File.dirname(__FILE__), ".", "certs")
|
|
4
|
-
|
|
5
|
-
Dor::Config.configure do
|
|
6
|
-
fedora do
|
|
7
|
-
url 'https://sul-dor-dev.stanford.edu/fedora'
|
|
8
|
-
end
|
|
9
|
-
|
|
10
|
-
ssl do
|
|
11
|
-
cert_file File.join(cert_dir,"robots-dor-dev.crt")
|
|
12
|
-
key_file File.join(cert_dir,"robots-dor-dev.key")
|
|
13
|
-
key_pass ''
|
|
14
|
-
end
|
|
15
|
-
|
|
16
|
-
suri do
|
|
17
|
-
mint_ids true
|
|
18
|
-
id_namespace 'druid'
|
|
19
|
-
url 'https://lyberservices-dev.stanford.edu'
|
|
20
|
-
user 'labware'
|
|
21
|
-
pass 'lyberteam'
|
|
22
|
-
end
|
|
23
|
-
|
|
24
|
-
metadata do
|
|
25
|
-
exist.url 'http://viewer:l3l%40nd@lyberapps-dev.stanford.edu/exist/rest/'
|
|
26
|
-
catalog.url 'http://lyberservices-prod.stanford.edu/catalog/mods'
|
|
27
|
-
end
|
|
28
|
-
|
|
29
|
-
stacks do
|
|
30
|
-
document_cache_host 'purl-dev.stanford.edu'
|
|
31
|
-
document_cache_user 'lyberadmin'
|
|
32
|
-
local_workspace_root '/dor/workspace'
|
|
33
|
-
storage_root '/stacks'
|
|
34
|
-
host 'stacks-dev.stanford.edu'
|
|
35
|
-
user 'lyberadmin'
|
|
36
|
-
local_stacks_root '/stacks'
|
|
37
|
-
local_document_cache_root '/purl/document_cache'
|
|
38
|
-
end
|
|
39
|
-
|
|
40
|
-
gsearch.url 'https://dor-dev.stanford.edu/solr/gsearch'
|
|
41
|
-
solrizer.url 'https://dor-dev.stanford.edu/solr'
|
|
42
|
-
workflow.url 'https://lyberservices-dev.stanford.edu/workflow/'
|
|
43
|
-
dor_services.url 'https://dorAdmin:dorAdmin@sul-lyberservices-dev.stanford.edu/dor/v1'
|
|
44
|
-
|
|
45
|
-
cleanup do
|
|
46
|
-
local_workspace_root '/dor/workspace'
|
|
47
|
-
local_export_home '/dor/export'
|
|
48
|
-
end
|
|
49
|
-
|
|
50
|
-
sdr do
|
|
51
|
-
local_workspace_root '/dor/workspace'
|
|
52
|
-
local_export_home '/dor/export'
|
|
53
|
-
datastreams do
|
|
54
|
-
contentMetadata 'required'
|
|
55
|
-
descMetadata 'required'
|
|
56
|
-
identityMetadata 'required'
|
|
57
|
-
provenanceMetadata 'required'
|
|
58
|
-
relationshipMetadata 'required'
|
|
59
|
-
rightsMetadata 'optional'
|
|
60
|
-
sourceMetadata 'optional'
|
|
61
|
-
end
|
|
62
|
-
end
|
|
63
|
-
|
|
64
|
-
accessioning_robot_sleep_time 30
|
|
65
|
-
|
|
66
|
-
end
|