daengine 0.6.22 → 0.6.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/digital_assets_controller.rb +14 -1
- data/bin/process_assets +0 -0
- data/bin/process_availability +0 -0
- data/bin/process_taxonomy +0 -0
- data/lib/daengine/version.rb +1 -1
- data/spec/controllers/digital_assets_controller_spec.rb +26 -14
- data/spec/dummy/log/test.log +1500 -0
- data/spec/mock_data/daengine.yml +1 -1
- data/spec/mock_data/taxonomy/taxonomyengine.yml +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9bbb2408f93f7c69b53473434cc2d837582ee477
|
4
|
+
data.tar.gz: 713e80b9670749d696a03df1f65346d45a31e7e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 626df692271e74fb306a8956b7599d2b6af31e7e4f45922835eb2db8444a5e45c702eacacd92be9685baf1e09ca5b0eb880188f602db9b2572459cd6bc4ceb47
|
7
|
+
data.tar.gz: 4971ee117d55c850916b4f5ef6e5f0ce3734c994dd966c1b70ede4b874a0b1d52c7e7b5833d36dbc2680d70c3add808c9bf77af63e45aafb9692a7b1e2718235
|
@@ -29,8 +29,21 @@ class DigitalAssetsController < ApplicationController
|
|
29
29
|
|
30
30
|
def update
|
31
31
|
da_passed = params[:digital_asset]
|
32
|
-
|
32
|
+
digital_asset_id = params[:id] || da_passed[:digital_asset_id]
|
33
|
+
assets = DigitalAsset.any_of({digital_asset_id: digital_asset_id}, {path: da_passed[:path]})
|
34
|
+
case assets.count
|
35
|
+
when 0 #creating
|
36
|
+
da = assets.build
|
37
|
+
da.digital_asset_id = digital_asset_id
|
38
|
+
when 1 # updating single
|
39
|
+
da = assets.first
|
40
|
+
else #duplicate path / id combo
|
41
|
+
assets.delete_all
|
42
|
+
da = DigitalAsset.find_or_initialize_by(digital_asset_id: digital_asset_id)
|
43
|
+
end
|
33
44
|
creating = da.new?
|
45
|
+
# da_passed.delete(:digital_asset_id) # remove the ID from params hash
|
46
|
+
da_passed[:digital_asset_id] = digital_asset_id # the url ID wins
|
34
47
|
da.update_attributes! da_passed
|
35
48
|
if(creating)
|
36
49
|
head :created, location: digital_asset_path(da)
|
data/bin/process_assets
CHANGED
File without changes
|
data/bin/process_availability
CHANGED
File without changes
|
data/bin/process_taxonomy
CHANGED
File without changes
|
data/lib/daengine/version.rb
CHANGED
@@ -22,6 +22,32 @@ describe DigitalAssetsController do
|
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
|
+
describe "create/update" do
|
26
|
+
let(:params) {FactoryGirl.attributes_for :digital_asset}
|
27
|
+
it "inserts if the ID+PATH does not exist" do
|
28
|
+
put :update, :id => params[:digital_asset_id], :digital_asset => params
|
29
|
+
response.code.should eq('201')
|
30
|
+
end
|
31
|
+
it "updates if ID exists" do
|
32
|
+
asset = FactoryGirl.create :digital_asset
|
33
|
+
put :update, :id => asset.digital_asset_id, :digital_asset => params
|
34
|
+
response.code.should eq('200')
|
35
|
+
DigitalAsset.where(digital_asset_id: params[:digital_asset_id]).count.should == 0
|
36
|
+
DigitalAsset.where(digital_asset_id: asset.digital_asset_id).count.should == 1
|
37
|
+
end
|
38
|
+
it "replaces if PATH exists" do
|
39
|
+
asset = FactoryGirl.create :digital_asset
|
40
|
+
params[:path] = asset.path # duplicate path
|
41
|
+
put :update, :id => params[:digital_asset_id], :digital_asset => params
|
42
|
+
response.code.should eq('200')
|
43
|
+
pp "replacer id = #{params[:digital_asset_id]}"
|
44
|
+
DigitalAsset.where(digital_asset_id: params[:digital_asset_id]).count.should == 1
|
45
|
+
DigitalAsset.where(digital_asset_id: asset.digital_asset_id).count.should == 0
|
46
|
+
end
|
47
|
+
it "removes overlapping records with the same ID OR PATH" do
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
25
51
|
describe "show" do
|
26
52
|
it 'returns a single asset when given a digital_asset_id' do
|
27
53
|
get :show, :id => digital_asset.digital_asset_id
|
@@ -49,20 +75,6 @@ describe DigitalAssetsController do
|
|
49
75
|
# end
|
50
76
|
end
|
51
77
|
|
52
|
-
# describe "new" do
|
53
|
-
# it "returns a not allowed" do
|
54
|
-
# get :new, {}
|
55
|
-
# response.should be '404'
|
56
|
-
# end
|
57
|
-
# end
|
58
|
-
|
59
|
-
# describe "edit" do
|
60
|
-
# it "returns a not allowed" do
|
61
|
-
# get :edit, {:id => digital_asset.id}
|
62
|
-
# response.should be '404'
|
63
|
-
# end
|
64
|
-
# end
|
65
|
-
|
66
78
|
describe 'search' do
|
67
79
|
context 'blank query' do
|
68
80
|
it 'returns nothing' do
|
@@ -0,0 +1,1500 @@
|
|
1
|
+
Processing by DigitalAssetsController#index as HTML
|
2
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
3
|
+
Processing by DigitalAssetsController#show as HTML
|
4
|
+
Parameters: {"id"=>"id-foobar-permanent-14"}
|
5
|
+
Completed 406 Not Acceptable in 10.0ms
|
6
|
+
Processing by DigitalAssetsController#show as HTML
|
7
|
+
Parameters: {"id"=>"IL1111.077"}
|
8
|
+
Completed 406 Not Acceptable in 8.0ms
|
9
|
+
Processing by DigitalAssetsController#show as HTML
|
10
|
+
Parameters: {"id"=>"IL1111.077"}
|
11
|
+
Completed 406 Not Acceptable in 7.0ms
|
12
|
+
Processing by DigitalAssetsController#show as HTML
|
13
|
+
Parameters: {"id"=>"id-foobar-permanent-18"}
|
14
|
+
Completed 406 Not Acceptable in 9.0ms
|
15
|
+
Processing by DigitalAssetsController#search as HTML
|
16
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
17
|
+
Processing by DigitalAssetsController#search as HTML
|
18
|
+
Parameters: {"path"=>"/one/off.path"}
|
19
|
+
Completed 200 OK in 20.0ms (Views: 19.0ms)
|
20
|
+
Processing by DigitalAssetsController#search as HTML
|
21
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
22
|
+
Completed 200 OK in 8.0ms (Views: 5.0ms)
|
23
|
+
Processing by DigitalAssetsController#search as HTML
|
24
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
25
|
+
Completed 200 OK in 24.0ms (Views: 23.0ms)
|
26
|
+
Processing by DigitalAssetsController#search as HTML
|
27
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
28
|
+
Completed 200 OK in 42.0ms (Views: 40.0ms)
|
29
|
+
Processing by DigitalAssetsController#search as HTML
|
30
|
+
Parameters: {"audience"=>"492"}
|
31
|
+
Completed 200 OK in 33.0ms (Views: 32.0ms)
|
32
|
+
Processing by DigitalAssetsController#search as HTML
|
33
|
+
Parameters: {"title"=>"Doc Title"}
|
34
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
35
|
+
Processing by DigitalAssetsController#search as HTML
|
36
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-40"}
|
37
|
+
Completed 200 OK in 17.0ms (Views: 16.0ms)
|
38
|
+
Processing by DigitalAssetsController#search as HTML
|
39
|
+
Parameters: {"business_owner"=>"biz owner"}
|
40
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
41
|
+
Processing by DigitalAssetsController#search as HTML
|
42
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-47", "title"=>"Doc Title"}
|
43
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
44
|
+
Processing by DigitalAssetsController#search as HTML
|
45
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
46
|
+
Completed 200 OK in 48.0ms (Views: 46.0ms)
|
47
|
+
Processing by DigitalAssetsController#search as HTML
|
48
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
49
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
50
|
+
Processing by DigitalAssetsController#index as HTML
|
51
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
52
|
+
Processing by DigitalAssetsController#show as HTML
|
53
|
+
Parameters: {"id"=>"id-foobar-permanent-14"}
|
54
|
+
Completed 406 Not Acceptable in 6.0ms
|
55
|
+
Processing by DigitalAssetsController#show as HTML
|
56
|
+
Parameters: {"id"=>"IL1111.077"}
|
57
|
+
Completed 406 Not Acceptable in 7.0ms
|
58
|
+
Processing by DigitalAssetsController#show as HTML
|
59
|
+
Parameters: {"id"=>"IL1111.077"}
|
60
|
+
Completed 406 Not Acceptable in 5.0ms
|
61
|
+
Processing by DigitalAssetsController#show as HTML
|
62
|
+
Parameters: {"id"=>"id-foobar-permanent-18"}
|
63
|
+
Completed 406 Not Acceptable in 9.0ms
|
64
|
+
Processing by DigitalAssetsController#search as HTML
|
65
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
66
|
+
Processing by DigitalAssetsController#search as HTML
|
67
|
+
Parameters: {"path"=>"/one/off.path"}
|
68
|
+
Completed 200 OK in 19.0ms (Views: 17.0ms)
|
69
|
+
Processing by DigitalAssetsController#search as HTML
|
70
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
71
|
+
Completed 200 OK in 6.0ms (Views: 4.0ms)
|
72
|
+
Processing by DigitalAssetsController#search as HTML
|
73
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
74
|
+
Completed 200 OK in 17.0ms (Views: 16.0ms)
|
75
|
+
Processing by DigitalAssetsController#search as HTML
|
76
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
77
|
+
Completed 200 OK in 32.0ms (Views: 31.0ms)
|
78
|
+
Processing by DigitalAssetsController#search as HTML
|
79
|
+
Parameters: {"audience"=>"492"}
|
80
|
+
Completed 200 OK in 31.0ms (Views: 30.0ms)
|
81
|
+
Processing by DigitalAssetsController#search as HTML
|
82
|
+
Parameters: {"title"=>"Doc Title"}
|
83
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
84
|
+
Processing by DigitalAssetsController#search as HTML
|
85
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-40"}
|
86
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
87
|
+
Processing by DigitalAssetsController#search as HTML
|
88
|
+
Parameters: {"business_owner"=>"biz owner"}
|
89
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
90
|
+
Processing by DigitalAssetsController#search as HTML
|
91
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-47", "title"=>"Doc Title"}
|
92
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
93
|
+
Processing by DigitalAssetsController#search as HTML
|
94
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
95
|
+
Completed 200 OK in 48.0ms (Views: 46.0ms)
|
96
|
+
Processing by DigitalAssetsController#search as HTML
|
97
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
98
|
+
Completed 200 OK in 23.0ms (Views: 2.0ms)
|
99
|
+
Processing by DigitalAssetsController#index as HTML
|
100
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
101
|
+
Processing by DigitalAssetsController#update as HTML
|
102
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:25:44 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:25:44 UTC", "expires_at"=>"2014-06-24 13:25:44 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:25:44 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
103
|
+
Completed 201 Created in 58.0ms
|
104
|
+
Processing by DigitalAssetsController#show as HTML
|
105
|
+
Parameters: {"id"=>"id-foobar-permanent-14"}
|
106
|
+
Completed 406 Not Acceptable in 5.0ms
|
107
|
+
Processing by DigitalAssetsController#show as HTML
|
108
|
+
Parameters: {"id"=>"IL1111.077"}
|
109
|
+
Completed 406 Not Acceptable in 7.0ms
|
110
|
+
Processing by DigitalAssetsController#show as HTML
|
111
|
+
Parameters: {"id"=>"IL1111.077"}
|
112
|
+
Completed 406 Not Acceptable in 7.0ms
|
113
|
+
Processing by DigitalAssetsController#show as HTML
|
114
|
+
Parameters: {"id"=>"id-foobar-permanent-18"}
|
115
|
+
Completed 406 Not Acceptable in 5.0ms
|
116
|
+
Processing by DigitalAssetsController#search as HTML
|
117
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
118
|
+
Processing by DigitalAssetsController#search as HTML
|
119
|
+
Parameters: {"path"=>"/one/off.path"}
|
120
|
+
Completed 200 OK in 22.0ms (Views: 21.0ms)
|
121
|
+
Processing by DigitalAssetsController#search as HTML
|
122
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
123
|
+
Completed 200 OK in 7.0ms (Views: 4.0ms)
|
124
|
+
Processing by DigitalAssetsController#search as HTML
|
125
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
126
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
127
|
+
Processing by DigitalAssetsController#search as HTML
|
128
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
129
|
+
Completed 200 OK in 31.0ms (Views: 29.0ms)
|
130
|
+
Processing by DigitalAssetsController#search as HTML
|
131
|
+
Parameters: {"audience"=>"492"}
|
132
|
+
Completed 200 OK in 32.0ms (Views: 31.0ms)
|
133
|
+
Processing by DigitalAssetsController#search as HTML
|
134
|
+
Parameters: {"title"=>"Doc Title"}
|
135
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
136
|
+
Processing by DigitalAssetsController#search as HTML
|
137
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-40"}
|
138
|
+
Completed 200 OK in 20.0ms (Views: 18.0ms)
|
139
|
+
Processing by DigitalAssetsController#search as HTML
|
140
|
+
Parameters: {"business_owner"=>"biz owner"}
|
141
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
142
|
+
Processing by DigitalAssetsController#search as HTML
|
143
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-47", "title"=>"Doc Title"}
|
144
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
145
|
+
Processing by DigitalAssetsController#search as HTML
|
146
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
147
|
+
Completed 200 OK in 75.0ms (Views: 74.0ms)
|
148
|
+
Processing by DigitalAssetsController#search as HTML
|
149
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
150
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
151
|
+
Processing by DigitalAssetsController#index as HTML
|
152
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
153
|
+
Processing by DigitalAssetsController#update as HTML
|
154
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:42:27 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:42:27 UTC", "expires_at"=>"2014-06-24 13:42:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:42:27 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
155
|
+
Completed 201 Created in 66.0ms
|
156
|
+
Processing by DigitalAssetsController#update as HTML
|
157
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:42:27 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:42:27 UTC", "expires_at"=>"2014-06-24 13:42:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:42:27 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
158
|
+
Completed 201 Created in 25.0ms
|
159
|
+
Processing by DigitalAssetsController#show as HTML
|
160
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
161
|
+
Completed 406 Not Acceptable in 5.0ms
|
162
|
+
Processing by DigitalAssetsController#show as HTML
|
163
|
+
Parameters: {"id"=>"IL1111.077"}
|
164
|
+
Completed 406 Not Acceptable in 7.0ms
|
165
|
+
Processing by DigitalAssetsController#show as HTML
|
166
|
+
Parameters: {"id"=>"IL1111.077"}
|
167
|
+
Completed 406 Not Acceptable in 5.0ms
|
168
|
+
Processing by DigitalAssetsController#show as HTML
|
169
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
170
|
+
Completed 406 Not Acceptable in 5.0ms
|
171
|
+
Processing by DigitalAssetsController#search as HTML
|
172
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
173
|
+
Processing by DigitalAssetsController#search as HTML
|
174
|
+
Parameters: {"path"=>"/one/off.path"}
|
175
|
+
Completed 200 OK in 19.0ms (Views: 17.0ms)
|
176
|
+
Processing by DigitalAssetsController#search as HTML
|
177
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
178
|
+
Completed 200 OK in 8.0ms (Views: 5.0ms)
|
179
|
+
Processing by DigitalAssetsController#search as HTML
|
180
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
181
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
182
|
+
Processing by DigitalAssetsController#search as HTML
|
183
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
184
|
+
Completed 200 OK in 28.0ms (Views: 27.0ms)
|
185
|
+
Processing by DigitalAssetsController#search as HTML
|
186
|
+
Parameters: {"audience"=>"492"}
|
187
|
+
Completed 200 OK in 30.0ms (Views: 29.0ms)
|
188
|
+
Processing by DigitalAssetsController#search as HTML
|
189
|
+
Parameters: {"title"=>"Doc Title"}
|
190
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
191
|
+
Processing by DigitalAssetsController#search as HTML
|
192
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
193
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
194
|
+
Processing by DigitalAssetsController#search as HTML
|
195
|
+
Parameters: {"business_owner"=>"biz owner"}
|
196
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
197
|
+
Processing by DigitalAssetsController#search as HTML
|
198
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
199
|
+
Completed 200 OK in 11.0ms (Views: 10.0ms)
|
200
|
+
Processing by DigitalAssetsController#search as HTML
|
201
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
202
|
+
Completed 200 OK in 52.0ms (Views: 51.0ms)
|
203
|
+
Processing by DigitalAssetsController#search as HTML
|
204
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
205
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
206
|
+
Processing by DigitalAssetsController#index as HTML
|
207
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
208
|
+
Processing by DigitalAssetsController#update as HTML
|
209
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:43:00 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:43:00 UTC", "expires_at"=>"2014-06-24 13:43:00 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:43:00 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
210
|
+
Completed 201 Created in 53.0ms
|
211
|
+
Processing by DigitalAssetsController#update as HTML
|
212
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:43:00 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:43:00 UTC", "expires_at"=>"2014-06-24 13:43:00 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:43:00 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
213
|
+
Completed 201 Created in 27.0ms
|
214
|
+
Processing by DigitalAssetsController#show as HTML
|
215
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
216
|
+
Completed 406 Not Acceptable in 7.0ms
|
217
|
+
Processing by DigitalAssetsController#show as HTML
|
218
|
+
Parameters: {"id"=>"IL1111.077"}
|
219
|
+
Completed 406 Not Acceptable in 10.0ms
|
220
|
+
Processing by DigitalAssetsController#show as HTML
|
221
|
+
Parameters: {"id"=>"IL1111.077"}
|
222
|
+
Completed 406 Not Acceptable in 8.0ms
|
223
|
+
Processing by DigitalAssetsController#show as HTML
|
224
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
225
|
+
Completed 406 Not Acceptable in 5.0ms
|
226
|
+
Processing by DigitalAssetsController#search as HTML
|
227
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
228
|
+
Processing by DigitalAssetsController#search as HTML
|
229
|
+
Parameters: {"path"=>"/one/off.path"}
|
230
|
+
Completed 200 OK in 18.0ms (Views: 17.0ms)
|
231
|
+
Processing by DigitalAssetsController#search as HTML
|
232
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
233
|
+
Completed 200 OK in 7.0ms (Views: 4.0ms)
|
234
|
+
Processing by DigitalAssetsController#search as HTML
|
235
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
236
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
237
|
+
Processing by DigitalAssetsController#search as HTML
|
238
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
239
|
+
Completed 200 OK in 34.0ms (Views: 32.0ms)
|
240
|
+
Processing by DigitalAssetsController#search as HTML
|
241
|
+
Parameters: {"audience"=>"492"}
|
242
|
+
Completed 200 OK in 37.0ms (Views: 35.0ms)
|
243
|
+
Processing by DigitalAssetsController#search as HTML
|
244
|
+
Parameters: {"title"=>"Doc Title"}
|
245
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
246
|
+
Processing by DigitalAssetsController#search as HTML
|
247
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
248
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
249
|
+
Processing by DigitalAssetsController#search as HTML
|
250
|
+
Parameters: {"business_owner"=>"biz owner"}
|
251
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
252
|
+
Processing by DigitalAssetsController#search as HTML
|
253
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
254
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
255
|
+
Processing by DigitalAssetsController#search as HTML
|
256
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
257
|
+
Completed 200 OK in 74.0ms (Views: 73.0ms)
|
258
|
+
Processing by DigitalAssetsController#search as HTML
|
259
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
260
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
261
|
+
Processing by DigitalAssetsController#index as HTML
|
262
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
263
|
+
Processing by DigitalAssetsController#update as HTML
|
264
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:44:01 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:44:01 UTC", "expires_at"=>"2014-06-24 13:44:01 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:44:01 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
265
|
+
Completed 201 Created in 61.0ms
|
266
|
+
Processing by DigitalAssetsController#update as HTML
|
267
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:44:01 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:44:01 UTC", "expires_at"=>"2014-06-24 13:44:01 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:44:01 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
268
|
+
Completed 200 OK in 24.0ms
|
269
|
+
Processing by DigitalAssetsController#show as HTML
|
270
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
271
|
+
Completed 406 Not Acceptable in 6.0ms
|
272
|
+
Processing by DigitalAssetsController#show as HTML
|
273
|
+
Parameters: {"id"=>"IL1111.077"}
|
274
|
+
Completed 406 Not Acceptable in 9.0ms
|
275
|
+
Processing by DigitalAssetsController#show as HTML
|
276
|
+
Parameters: {"id"=>"IL1111.077"}
|
277
|
+
Completed 406 Not Acceptable in 5.0ms
|
278
|
+
Processing by DigitalAssetsController#show as HTML
|
279
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
280
|
+
Completed 406 Not Acceptable in 4.0ms
|
281
|
+
Processing by DigitalAssetsController#search as HTML
|
282
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
283
|
+
Processing by DigitalAssetsController#search as HTML
|
284
|
+
Parameters: {"path"=>"/one/off.path"}
|
285
|
+
Completed 200 OK in 18.0ms (Views: 16.0ms)
|
286
|
+
Processing by DigitalAssetsController#search as HTML
|
287
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
288
|
+
Completed 200 OK in 6.0ms (Views: 4.0ms)
|
289
|
+
Processing by DigitalAssetsController#search as HTML
|
290
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
291
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
292
|
+
Processing by DigitalAssetsController#search as HTML
|
293
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
294
|
+
Completed 200 OK in 30.0ms (Views: 29.0ms)
|
295
|
+
Processing by DigitalAssetsController#search as HTML
|
296
|
+
Parameters: {"audience"=>"492"}
|
297
|
+
Completed 200 OK in 30.0ms (Views: 28.0ms)
|
298
|
+
Processing by DigitalAssetsController#search as HTML
|
299
|
+
Parameters: {"title"=>"Doc Title"}
|
300
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
301
|
+
Processing by DigitalAssetsController#search as HTML
|
302
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
303
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
304
|
+
Processing by DigitalAssetsController#search as HTML
|
305
|
+
Parameters: {"business_owner"=>"biz owner"}
|
306
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
307
|
+
Processing by DigitalAssetsController#search as HTML
|
308
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
309
|
+
Completed 200 OK in 11.0ms (Views: 10.0ms)
|
310
|
+
Processing by DigitalAssetsController#search as HTML
|
311
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
312
|
+
Completed 200 OK in 52.0ms (Views: 50.0ms)
|
313
|
+
Processing by DigitalAssetsController#search as HTML
|
314
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
315
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
316
|
+
Processing by DigitalAssetsController#index as HTML
|
317
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
318
|
+
Processing by DigitalAssetsController#update as HTML
|
319
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:48:06 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:48:06 UTC", "expires_at"=>"2014-06-24 13:48:06 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:48:06 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
320
|
+
Completed 201 Created in 58.0ms
|
321
|
+
Processing by DigitalAssetsController#update as HTML
|
322
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:48:06 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:48:06 UTC", "expires_at"=>"2014-06-24 13:48:06 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:48:06 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
323
|
+
Completed 200 OK in 24.0ms
|
324
|
+
Processing by DigitalAssetsController#show as HTML
|
325
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
326
|
+
Completed 406 Not Acceptable in 5.0ms
|
327
|
+
Processing by DigitalAssetsController#show as HTML
|
328
|
+
Parameters: {"id"=>"IL1111.077"}
|
329
|
+
Completed 406 Not Acceptable in 9.0ms
|
330
|
+
Processing by DigitalAssetsController#show as HTML
|
331
|
+
Parameters: {"id"=>"IL1111.077"}
|
332
|
+
Completed 406 Not Acceptable in 5.0ms
|
333
|
+
Processing by DigitalAssetsController#show as HTML
|
334
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
335
|
+
Completed 406 Not Acceptable in 4.0ms
|
336
|
+
Processing by DigitalAssetsController#search as HTML
|
337
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
338
|
+
Processing by DigitalAssetsController#search as HTML
|
339
|
+
Parameters: {"path"=>"/one/off.path"}
|
340
|
+
Completed 200 OK in 18.0ms (Views: 16.0ms)
|
341
|
+
Processing by DigitalAssetsController#search as HTML
|
342
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
343
|
+
Completed 200 OK in 6.0ms (Views: 4.0ms)
|
344
|
+
Processing by DigitalAssetsController#search as HTML
|
345
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
346
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
347
|
+
Processing by DigitalAssetsController#search as HTML
|
348
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
349
|
+
Completed 200 OK in 28.0ms (Views: 27.0ms)
|
350
|
+
Processing by DigitalAssetsController#search as HTML
|
351
|
+
Parameters: {"audience"=>"492"}
|
352
|
+
Completed 200 OK in 29.0ms (Views: 28.0ms)
|
353
|
+
Processing by DigitalAssetsController#search as HTML
|
354
|
+
Parameters: {"title"=>"Doc Title"}
|
355
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
356
|
+
Processing by DigitalAssetsController#search as HTML
|
357
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
358
|
+
Completed 200 OK in 15.0ms (Views: 14.0ms)
|
359
|
+
Processing by DigitalAssetsController#search as HTML
|
360
|
+
Parameters: {"business_owner"=>"biz owner"}
|
361
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
362
|
+
Processing by DigitalAssetsController#search as HTML
|
363
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
364
|
+
Completed 200 OK in 11.0ms (Views: 9.0ms)
|
365
|
+
Processing by DigitalAssetsController#search as HTML
|
366
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
367
|
+
Completed 200 OK in 77.0ms (Views: 76.0ms)
|
368
|
+
Processing by DigitalAssetsController#search as HTML
|
369
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
370
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
371
|
+
Processing by DigitalAssetsController#index as HTML
|
372
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
373
|
+
Processing by DigitalAssetsController#update as HTML
|
374
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:50:01 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:50:01 UTC", "expires_at"=>"2014-06-24 13:50:01 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:50:01 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
375
|
+
Completed 201 Created in 58.0ms
|
376
|
+
Processing by DigitalAssetsController#update as HTML
|
377
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:50:01 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:50:01 UTC", "expires_at"=>"2014-06-24 13:50:01 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:50:01 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
378
|
+
Completed 406 Not Acceptable in 25.0ms
|
379
|
+
Processing by DigitalAssetsController#show as HTML
|
380
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
381
|
+
Completed 406 Not Acceptable in 5.0ms
|
382
|
+
Processing by DigitalAssetsController#show as HTML
|
383
|
+
Parameters: {"id"=>"IL1111.077"}
|
384
|
+
Completed 406 Not Acceptable in 7.0ms
|
385
|
+
Processing by DigitalAssetsController#show as HTML
|
386
|
+
Parameters: {"id"=>"IL1111.077"}
|
387
|
+
Completed 406 Not Acceptable in 5.0ms
|
388
|
+
Processing by DigitalAssetsController#show as HTML
|
389
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
390
|
+
Completed 406 Not Acceptable in 5.0ms
|
391
|
+
Processing by DigitalAssetsController#search as HTML
|
392
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
393
|
+
Processing by DigitalAssetsController#search as HTML
|
394
|
+
Parameters: {"path"=>"/one/off.path"}
|
395
|
+
Completed 200 OK in 19.0ms (Views: 17.0ms)
|
396
|
+
Processing by DigitalAssetsController#search as HTML
|
397
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
398
|
+
Completed 200 OK in 6.0ms (Views: 4.0ms)
|
399
|
+
Processing by DigitalAssetsController#search as HTML
|
400
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
401
|
+
Completed 200 OK in 17.0ms (Views: 15.0ms)
|
402
|
+
Processing by DigitalAssetsController#search as HTML
|
403
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
404
|
+
Completed 200 OK in 30.0ms (Views: 28.0ms)
|
405
|
+
Processing by DigitalAssetsController#search as HTML
|
406
|
+
Parameters: {"audience"=>"492"}
|
407
|
+
Completed 200 OK in 29.0ms (Views: 28.0ms)
|
408
|
+
Processing by DigitalAssetsController#search as HTML
|
409
|
+
Parameters: {"title"=>"Doc Title"}
|
410
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
411
|
+
Processing by DigitalAssetsController#search as HTML
|
412
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
413
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
414
|
+
Processing by DigitalAssetsController#search as HTML
|
415
|
+
Parameters: {"business_owner"=>"biz owner"}
|
416
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
417
|
+
Processing by DigitalAssetsController#search as HTML
|
418
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
419
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
420
|
+
Processing by DigitalAssetsController#search as HTML
|
421
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
422
|
+
Completed 200 OK in 50.0ms (Views: 49.0ms)
|
423
|
+
Processing by DigitalAssetsController#search as HTML
|
424
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
425
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
426
|
+
Processing by DigitalAssetsController#index as HTML
|
427
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
428
|
+
Processing by DigitalAssetsController#update as HTML
|
429
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:50:39 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:50:39 UTC", "expires_at"=>"2014-06-24 13:50:39 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:50:39 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
430
|
+
Completed 201 Created in 55.0ms
|
431
|
+
Processing by DigitalAssetsController#update as HTML
|
432
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:50:39 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:50:39 UTC", "expires_at"=>"2014-06-24 13:50:39 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:50:39 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
433
|
+
Completed 200 OK in 30.0ms
|
434
|
+
Processing by DigitalAssetsController#show as HTML
|
435
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
436
|
+
Completed 406 Not Acceptable in 5.0ms
|
437
|
+
Processing by DigitalAssetsController#show as HTML
|
438
|
+
Parameters: {"id"=>"IL1111.077"}
|
439
|
+
Completed 406 Not Acceptable in 8.0ms
|
440
|
+
Processing by DigitalAssetsController#show as HTML
|
441
|
+
Parameters: {"id"=>"IL1111.077"}
|
442
|
+
Completed 406 Not Acceptable in 5.0ms
|
443
|
+
Processing by DigitalAssetsController#show as HTML
|
444
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
445
|
+
Completed 406 Not Acceptable in 5.0ms
|
446
|
+
Processing by DigitalAssetsController#search as HTML
|
447
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
448
|
+
Processing by DigitalAssetsController#search as HTML
|
449
|
+
Parameters: {"path"=>"/one/off.path"}
|
450
|
+
Completed 200 OK in 18.0ms (Views: 17.0ms)
|
451
|
+
Processing by DigitalAssetsController#search as HTML
|
452
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
453
|
+
Completed 200 OK in 7.0ms (Views: 4.0ms)
|
454
|
+
Processing by DigitalAssetsController#search as HTML
|
455
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
456
|
+
Completed 200 OK in 17.0ms (Views: 16.0ms)
|
457
|
+
Processing by DigitalAssetsController#search as HTML
|
458
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
459
|
+
Completed 200 OK in 29.0ms (Views: 28.0ms)
|
460
|
+
Processing by DigitalAssetsController#search as HTML
|
461
|
+
Parameters: {"audience"=>"492"}
|
462
|
+
Completed 200 OK in 36.0ms (Views: 33.0ms)
|
463
|
+
Processing by DigitalAssetsController#search as HTML
|
464
|
+
Parameters: {"title"=>"Doc Title"}
|
465
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
466
|
+
Processing by DigitalAssetsController#search as HTML
|
467
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
468
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
469
|
+
Processing by DigitalAssetsController#search as HTML
|
470
|
+
Parameters: {"business_owner"=>"biz owner"}
|
471
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
472
|
+
Processing by DigitalAssetsController#search as HTML
|
473
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
474
|
+
Completed 200 OK in 13.0ms (Views: 11.0ms)
|
475
|
+
Processing by DigitalAssetsController#search as HTML
|
476
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
477
|
+
Completed 200 OK in 51.0ms (Views: 49.0ms)
|
478
|
+
Processing by DigitalAssetsController#search as HTML
|
479
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
480
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
481
|
+
Processing by DigitalAssetsController#index as HTML
|
482
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
483
|
+
Processing by DigitalAssetsController#update as HTML
|
484
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:51:44 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:51:44 UTC", "expires_at"=>"2014-06-24 13:51:44 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:51:44 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
485
|
+
Completed 201 Created in 57.0ms
|
486
|
+
Processing by DigitalAssetsController#update as HTML
|
487
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:51:44 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:51:44 UTC", "expires_at"=>"2014-06-24 13:51:44 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:51:44 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
488
|
+
Completed 200 OK in 24.0ms
|
489
|
+
Processing by DigitalAssetsController#show as HTML
|
490
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
491
|
+
Completed 406 Not Acceptable in 5.0ms
|
492
|
+
Processing by DigitalAssetsController#show as HTML
|
493
|
+
Parameters: {"id"=>"IL1111.077"}
|
494
|
+
Completed 406 Not Acceptable in 9.0ms
|
495
|
+
Processing by DigitalAssetsController#show as HTML
|
496
|
+
Parameters: {"id"=>"IL1111.077"}
|
497
|
+
Completed 406 Not Acceptable in 6.0ms
|
498
|
+
Processing by DigitalAssetsController#show as HTML
|
499
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
500
|
+
Completed 406 Not Acceptable in 5.0ms
|
501
|
+
Processing by DigitalAssetsController#search as HTML
|
502
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
503
|
+
Processing by DigitalAssetsController#search as HTML
|
504
|
+
Parameters: {"path"=>"/one/off.path"}
|
505
|
+
Completed 200 OK in 18.0ms (Views: 17.0ms)
|
506
|
+
Processing by DigitalAssetsController#search as HTML
|
507
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
508
|
+
Completed 200 OK in 6.0ms (Views: 4.0ms)
|
509
|
+
Processing by DigitalAssetsController#search as HTML
|
510
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
511
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
512
|
+
Processing by DigitalAssetsController#search as HTML
|
513
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
514
|
+
Completed 200 OK in 28.0ms (Views: 27.0ms)
|
515
|
+
Processing by DigitalAssetsController#search as HTML
|
516
|
+
Parameters: {"audience"=>"492"}
|
517
|
+
Completed 200 OK in 31.0ms (Views: 29.0ms)
|
518
|
+
Processing by DigitalAssetsController#search as HTML
|
519
|
+
Parameters: {"title"=>"Doc Title"}
|
520
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
521
|
+
Processing by DigitalAssetsController#search as HTML
|
522
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
523
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
524
|
+
Processing by DigitalAssetsController#search as HTML
|
525
|
+
Parameters: {"business_owner"=>"biz owner"}
|
526
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
527
|
+
Processing by DigitalAssetsController#search as HTML
|
528
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
529
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
530
|
+
Processing by DigitalAssetsController#search as HTML
|
531
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
532
|
+
Completed 200 OK in 49.0ms (Views: 47.0ms)
|
533
|
+
Processing by DigitalAssetsController#search as HTML
|
534
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
535
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
536
|
+
Processing by DigitalAssetsController#index as HTML
|
537
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
538
|
+
Processing by DigitalAssetsController#update as HTML
|
539
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:52:23 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:52:23 UTC", "expires_at"=>"2014-06-24 13:52:23 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:52:23 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
540
|
+
Completed 201 Created in 58.0ms
|
541
|
+
Processing by DigitalAssetsController#update as HTML
|
542
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:52:23 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:52:23 UTC", "expires_at"=>"2014-06-24 13:52:23 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:52:23 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
543
|
+
Completed 200 OK in 23.0ms
|
544
|
+
Processing by DigitalAssetsController#show as HTML
|
545
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
546
|
+
Completed 406 Not Acceptable in 5.0ms
|
547
|
+
Processing by DigitalAssetsController#show as HTML
|
548
|
+
Parameters: {"id"=>"IL1111.077"}
|
549
|
+
Completed 406 Not Acceptable in 7.0ms
|
550
|
+
Processing by DigitalAssetsController#show as HTML
|
551
|
+
Parameters: {"id"=>"IL1111.077"}
|
552
|
+
Completed 406 Not Acceptable in 5.0ms
|
553
|
+
Processing by DigitalAssetsController#show as HTML
|
554
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
555
|
+
Completed 406 Not Acceptable in 4.0ms
|
556
|
+
Processing by DigitalAssetsController#search as HTML
|
557
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
558
|
+
Processing by DigitalAssetsController#search as HTML
|
559
|
+
Parameters: {"path"=>"/one/off.path"}
|
560
|
+
Completed 200 OK in 18.0ms (Views: 17.0ms)
|
561
|
+
Processing by DigitalAssetsController#search as HTML
|
562
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
563
|
+
Completed 200 OK in 7.0ms (Views: 4.0ms)
|
564
|
+
Processing by DigitalAssetsController#search as HTML
|
565
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
566
|
+
Completed 200 OK in 16.0ms (Views: 14.0ms)
|
567
|
+
Processing by DigitalAssetsController#search as HTML
|
568
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
569
|
+
Completed 200 OK in 28.0ms (Views: 27.0ms)
|
570
|
+
Processing by DigitalAssetsController#search as HTML
|
571
|
+
Parameters: {"audience"=>"492"}
|
572
|
+
Completed 200 OK in 29.0ms (Views: 28.0ms)
|
573
|
+
Processing by DigitalAssetsController#search as HTML
|
574
|
+
Parameters: {"title"=>"Doc Title"}
|
575
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
576
|
+
Processing by DigitalAssetsController#search as HTML
|
577
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
578
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
579
|
+
Processing by DigitalAssetsController#search as HTML
|
580
|
+
Parameters: {"business_owner"=>"biz owner"}
|
581
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
582
|
+
Processing by DigitalAssetsController#search as HTML
|
583
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
584
|
+
Completed 200 OK in 10.0ms (Views: 9.0ms)
|
585
|
+
Processing by DigitalAssetsController#search as HTML
|
586
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
587
|
+
Completed 200 OK in 77.0ms (Views: 74.0ms)
|
588
|
+
Processing by DigitalAssetsController#search as HTML
|
589
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
590
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
591
|
+
Processing by DigitalAssetsController#index as HTML
|
592
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
593
|
+
Processing by DigitalAssetsController#update as HTML
|
594
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:52:59 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:52:59 UTC", "expires_at"=>"2014-06-24 13:52:59 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:52:59 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
595
|
+
Completed 201 Created in 67.0ms
|
596
|
+
Processing by DigitalAssetsController#update as HTML
|
597
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:52:59 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:52:59 UTC", "expires_at"=>"2014-06-24 13:52:59 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:52:59 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
598
|
+
Completed 200 OK in 25.0ms
|
599
|
+
Processing by DigitalAssetsController#show as HTML
|
600
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
601
|
+
Completed 406 Not Acceptable in 5.0ms
|
602
|
+
Processing by DigitalAssetsController#show as HTML
|
603
|
+
Parameters: {"id"=>"IL1111.077"}
|
604
|
+
Completed 406 Not Acceptable in 7.0ms
|
605
|
+
Processing by DigitalAssetsController#show as HTML
|
606
|
+
Parameters: {"id"=>"IL1111.077"}
|
607
|
+
Completed 406 Not Acceptable in 5.0ms
|
608
|
+
Processing by DigitalAssetsController#show as HTML
|
609
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
610
|
+
Completed 406 Not Acceptable in 5.0ms
|
611
|
+
Processing by DigitalAssetsController#search as HTML
|
612
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
613
|
+
Processing by DigitalAssetsController#search as HTML
|
614
|
+
Parameters: {"path"=>"/one/off.path"}
|
615
|
+
Completed 200 OK in 18.0ms (Views: 16.0ms)
|
616
|
+
Processing by DigitalAssetsController#search as HTML
|
617
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
618
|
+
Completed 200 OK in 6.0ms (Views: 4.0ms)
|
619
|
+
Processing by DigitalAssetsController#search as HTML
|
620
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
621
|
+
Completed 200 OK in 15.0ms (Views: 14.0ms)
|
622
|
+
Processing by DigitalAssetsController#search as HTML
|
623
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
624
|
+
Completed 200 OK in 28.0ms (Views: 27.0ms)
|
625
|
+
Processing by DigitalAssetsController#search as HTML
|
626
|
+
Parameters: {"audience"=>"492"}
|
627
|
+
Completed 200 OK in 29.0ms (Views: 28.0ms)
|
628
|
+
Processing by DigitalAssetsController#search as HTML
|
629
|
+
Parameters: {"title"=>"Doc Title"}
|
630
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
631
|
+
Processing by DigitalAssetsController#search as HTML
|
632
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
633
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
634
|
+
Processing by DigitalAssetsController#search as HTML
|
635
|
+
Parameters: {"business_owner"=>"biz owner"}
|
636
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
637
|
+
Processing by DigitalAssetsController#search as HTML
|
638
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
639
|
+
Completed 200 OK in 11.0ms (Views: 9.0ms)
|
640
|
+
Processing by DigitalAssetsController#search as HTML
|
641
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
642
|
+
Completed 200 OK in 50.0ms (Views: 48.0ms)
|
643
|
+
Processing by DigitalAssetsController#search as HTML
|
644
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
645
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
646
|
+
Processing by DigitalAssetsController#index as HTML
|
647
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
648
|
+
Processing by DigitalAssetsController#update as HTML
|
649
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:54:13 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:54:13 UTC", "expires_at"=>"2014-06-24 13:54:13 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:54:13 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
650
|
+
Completed 201 Created in 63.0ms
|
651
|
+
Processing by DigitalAssetsController#update as HTML
|
652
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:54:13 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:54:13 UTC", "expires_at"=>"2014-06-24 13:54:13 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:54:13 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
653
|
+
Completed 200 OK in 28.0ms
|
654
|
+
Processing by DigitalAssetsController#show as HTML
|
655
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
656
|
+
Completed 406 Not Acceptable in 5.0ms
|
657
|
+
Processing by DigitalAssetsController#show as HTML
|
658
|
+
Parameters: {"id"=>"IL1111.077"}
|
659
|
+
Completed 406 Not Acceptable in 9.0ms
|
660
|
+
Processing by DigitalAssetsController#show as HTML
|
661
|
+
Parameters: {"id"=>"IL1111.077"}
|
662
|
+
Completed 406 Not Acceptable in 5.0ms
|
663
|
+
Processing by DigitalAssetsController#show as HTML
|
664
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
665
|
+
Completed 406 Not Acceptable in 5.0ms
|
666
|
+
Processing by DigitalAssetsController#search as HTML
|
667
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
668
|
+
Processing by DigitalAssetsController#search as HTML
|
669
|
+
Parameters: {"path"=>"/one/off.path"}
|
670
|
+
Completed 200 OK in 18.0ms (Views: 17.0ms)
|
671
|
+
Processing by DigitalAssetsController#search as HTML
|
672
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
673
|
+
Completed 200 OK in 7.0ms (Views: 4.0ms)
|
674
|
+
Processing by DigitalAssetsController#search as HTML
|
675
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
676
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
677
|
+
Processing by DigitalAssetsController#search as HTML
|
678
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
679
|
+
Completed 200 OK in 29.0ms (Views: 28.0ms)
|
680
|
+
Processing by DigitalAssetsController#search as HTML
|
681
|
+
Parameters: {"audience"=>"492"}
|
682
|
+
Completed 200 OK in 31.0ms (Views: 30.0ms)
|
683
|
+
Processing by DigitalAssetsController#search as HTML
|
684
|
+
Parameters: {"title"=>"Doc Title"}
|
685
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
686
|
+
Processing by DigitalAssetsController#search as HTML
|
687
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
688
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
689
|
+
Processing by DigitalAssetsController#search as HTML
|
690
|
+
Parameters: {"business_owner"=>"biz owner"}
|
691
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
692
|
+
Processing by DigitalAssetsController#search as HTML
|
693
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
694
|
+
Completed 200 OK in 11.0ms (Views: 10.0ms)
|
695
|
+
Processing by DigitalAssetsController#search as HTML
|
696
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
697
|
+
Completed 200 OK in 49.0ms (Views: 47.0ms)
|
698
|
+
Processing by DigitalAssetsController#search as HTML
|
699
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
700
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
701
|
+
Processing by DigitalAssetsController#index as HTML
|
702
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
703
|
+
Processing by DigitalAssetsController#update as HTML
|
704
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:55:14 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 13:55:14 UTC", "expires_at"=>"2014-06-24 13:55:14 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:55:14 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
705
|
+
Completed 201 Created in 61.0ms
|
706
|
+
Processing by DigitalAssetsController#update as HTML
|
707
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:55:14 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 13:55:14 UTC", "expires_at"=>"2014-06-24 13:55:14 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:55:14 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
708
|
+
Completed 200 OK in 25.0ms
|
709
|
+
Processing by DigitalAssetsController#show as HTML
|
710
|
+
Parameters: {"id"=>"id-foobar-permanent-16"}
|
711
|
+
Completed 406 Not Acceptable in 6.0ms
|
712
|
+
Processing by DigitalAssetsController#show as HTML
|
713
|
+
Parameters: {"id"=>"IL1111.077"}
|
714
|
+
Completed 406 Not Acceptable in 7.0ms
|
715
|
+
Processing by DigitalAssetsController#show as HTML
|
716
|
+
Parameters: {"id"=>"IL1111.077"}
|
717
|
+
Completed 406 Not Acceptable in 5.0ms
|
718
|
+
Processing by DigitalAssetsController#show as HTML
|
719
|
+
Parameters: {"id"=>"id-foobar-permanent-20"}
|
720
|
+
Completed 406 Not Acceptable in 4.0ms
|
721
|
+
Processing by DigitalAssetsController#search as HTML
|
722
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
723
|
+
Processing by DigitalAssetsController#search as HTML
|
724
|
+
Parameters: {"path"=>"/one/off.path"}
|
725
|
+
Completed 200 OK in 18.0ms (Views: 17.0ms)
|
726
|
+
Processing by DigitalAssetsController#search as HTML
|
727
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
728
|
+
Completed 200 OK in 7.0ms (Views: 4.0ms)
|
729
|
+
Processing by DigitalAssetsController#search as HTML
|
730
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
731
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
732
|
+
Processing by DigitalAssetsController#search as HTML
|
733
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
734
|
+
Completed 200 OK in 28.0ms (Views: 27.0ms)
|
735
|
+
Processing by DigitalAssetsController#search as HTML
|
736
|
+
Parameters: {"audience"=>"492"}
|
737
|
+
Completed 200 OK in 30.0ms (Views: 28.0ms)
|
738
|
+
Processing by DigitalAssetsController#search as HTML
|
739
|
+
Parameters: {"title"=>"Doc Title"}
|
740
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
741
|
+
Processing by DigitalAssetsController#search as HTML
|
742
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-42"}
|
743
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
744
|
+
Processing by DigitalAssetsController#search as HTML
|
745
|
+
Parameters: {"business_owner"=>"biz owner"}
|
746
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
747
|
+
Processing by DigitalAssetsController#search as HTML
|
748
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-49", "title"=>"Doc Title"}
|
749
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
750
|
+
Processing by DigitalAssetsController#search as HTML
|
751
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
752
|
+
Completed 200 OK in 54.0ms (Views: 51.0ms)
|
753
|
+
Processing by DigitalAssetsController#search as HTML
|
754
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
755
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
756
|
+
Processing by DigitalAssetsController#update as HTML
|
757
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:55:42 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 13:55:42 UTC", "expires_at"=>"2014-06-24 13:55:42 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:55:42 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
758
|
+
Completed 201 Created in 71.0ms
|
759
|
+
Processing by DigitalAssetsController#update as HTML
|
760
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:55:42 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 13:55:42 UTC", "expires_at"=>"2014-06-24 13:55:42 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:55:42 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
761
|
+
Completed 200 OK in 33.0ms
|
762
|
+
Processing by DigitalAssetsController#update as HTML
|
763
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:56:55 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 13:56:55 UTC", "expires_at"=>"2014-06-24 13:56:55 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:56:55 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
764
|
+
Completed 201 Created in 73.0ms
|
765
|
+
Processing by DigitalAssetsController#update as HTML
|
766
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:56:55 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 13:56:55 UTC", "expires_at"=>"2014-06-24 13:56:55 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:56:55 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
767
|
+
Completed 200 OK in 37.0ms
|
768
|
+
Processing by DigitalAssetsController#update as HTML
|
769
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:57:35 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 13:57:35 UTC", "expires_at"=>"2014-06-24 13:57:35 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:57:35 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
770
|
+
Completed 201 Created in 73.0ms
|
771
|
+
Processing by DigitalAssetsController#update as HTML
|
772
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:57:35 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 13:57:35 UTC", "expires_at"=>"2014-06-24 13:57:35 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:57:35 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
773
|
+
Completed 200 OK in 33.0ms
|
774
|
+
Processing by DigitalAssetsController#update as HTML
|
775
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:58:41 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 13:58:41 UTC", "expires_at"=>"2014-06-24 13:58:41 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:58:41 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
776
|
+
Completed 201 Created in 62.0ms
|
777
|
+
Processing by DigitalAssetsController#update as HTML
|
778
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:58:41 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 13:58:41 UTC", "expires_at"=>"2014-06-24 13:58:41 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:58:41 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
779
|
+
Completed 200 OK in 32.0ms
|
780
|
+
Processing by DigitalAssetsController#update as HTML
|
781
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:59:06 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 13:59:06 UTC", "expires_at"=>"2014-06-24 13:59:06 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:59:06 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
782
|
+
Completed 201 Created in 57.0ms
|
783
|
+
Processing by DigitalAssetsController#update as HTML
|
784
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 13:59:06 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 13:59:06 UTC", "expires_at"=>"2014-06-24 13:59:06 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 13:59:06 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
785
|
+
Completed 200 OK in 29.0ms
|
786
|
+
Processing by DigitalAssetsController#update as HTML
|
787
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:02:29 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:02:29 UTC", "expires_at"=>"2014-06-24 14:02:29 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:02:29 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
788
|
+
Completed 201 Created in 67.0ms
|
789
|
+
Processing by DigitalAssetsController#update as HTML
|
790
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:02:29 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 14:02:29 UTC", "expires_at"=>"2014-06-24 14:02:29 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:02:29 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
791
|
+
Completed 200 OK in 27.0ms
|
792
|
+
Processing by DigitalAssetsController#update as HTML
|
793
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:02:29 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-5", "published_at"=>"2014-04-14 14:02:29 UTC", "expires_at"=>"2014-06-24 14:02:29 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/4/foo/bar.txt", "finra_path"=>"/path/finradoc/5/foo/bar.txt", "legacy_path"=>"/oldpath/5/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:02:29 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-5"}
|
794
|
+
Completed 422 Unprocessable Entity in 88.0ms
|
795
|
+
Processing by DigitalAssetsController#update as HTML
|
796
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:06:54 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:06:54 UTC", "expires_at"=>"2014-06-24 14:06:54 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:06:54 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
797
|
+
Completed 500 Internal Server Error in 5.0ms
|
798
|
+
Processing by DigitalAssetsController#update as HTML
|
799
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:06:54 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 14:06:54 UTC", "expires_at"=>"2014-06-24 14:06:54 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:06:54 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
800
|
+
Completed 500 Internal Server Error in 5.0ms
|
801
|
+
Processing by DigitalAssetsController#update as HTML
|
802
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:06:54 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-5", "published_at"=>"2014-04-14 14:06:54 UTC", "expires_at"=>"2014-06-24 14:06:54 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/4/foo/bar.txt", "finra_path"=>"/path/finradoc/5/foo/bar.txt", "legacy_path"=>"/oldpath/5/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:06:54 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-5"}
|
803
|
+
Completed 500 Internal Server Error in 4.0ms
|
804
|
+
Processing by DigitalAssetsController#update as HTML
|
805
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:17:24 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:17:24 UTC", "expires_at"=>"2014-06-24 14:17:24 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:17:24 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
806
|
+
Completed 201 Created in 66.0ms
|
807
|
+
Processing by DigitalAssetsController#update as HTML
|
808
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:17:24 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 14:17:24 UTC", "expires_at"=>"2014-06-24 14:17:24 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:17:24 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
809
|
+
Completed 422 Unprocessable Entity in 92.0ms
|
810
|
+
Processing by DigitalAssetsController#update as HTML
|
811
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:17:24 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-5", "published_at"=>"2014-04-14 14:17:24 UTC", "expires_at"=>"2014-06-24 14:17:24 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/4/foo/bar.txt", "finra_path"=>"/path/finradoc/5/foo/bar.txt", "legacy_path"=>"/oldpath/5/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:17:24 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-5"}
|
812
|
+
Completed 422 Unprocessable Entity in 32.0ms
|
813
|
+
Processing by DigitalAssetsController#update as HTML
|
814
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:19:03 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-2", "published_at"=>"2014-04-14 14:19:03 UTC", "expires_at"=>"2014-06-24 14:19:03 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/2/foo/bar.txt", "finra_path"=>"/path/finradoc/2/foo/bar.txt", "legacy_path"=>"/oldpath/2/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:19:03 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
815
|
+
Completed 422 Unprocessable Entity in 107.0ms
|
816
|
+
Processing by DigitalAssetsController#update as HTML
|
817
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:21:12 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-2", "published_at"=>"2014-04-14 14:21:12 UTC", "expires_at"=>"2014-06-24 14:21:12 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/2/foo/bar.txt", "finra_path"=>"/path/finradoc/2/foo/bar.txt", "legacy_path"=>"/oldpath/2/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:21:12 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
818
|
+
Completed 422 Unprocessable Entity in 110.0ms
|
819
|
+
Processing by DigitalAssetsController#update as HTML
|
820
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:21:54 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-2", "published_at"=>"2014-04-14 14:21:54 UTC", "expires_at"=>"2014-06-24 14:21:54 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/2/foo/bar.txt", "finra_path"=>"/path/finradoc/2/foo/bar.txt", "legacy_path"=>"/oldpath/2/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:21:54 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
821
|
+
Completed 200 OK in 61.0ms
|
822
|
+
Processing by DigitalAssetsController#update as HTML
|
823
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:22:35 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-2", "published_at"=>"2014-04-14 14:22:35 UTC", "expires_at"=>"2014-06-24 14:22:35 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/2/foo/bar.txt", "finra_path"=>"/path/finradoc/2/foo/bar.txt", "legacy_path"=>"/oldpath/2/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:22:35 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
824
|
+
Completed 422 Unprocessable Entity in 119.0ms
|
825
|
+
Processing by DigitalAssetsController#update as HTML
|
826
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:23:33 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-2", "published_at"=>"2014-04-14 14:23:33 UTC", "expires_at"=>"2014-06-24 14:23:33 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/2/foo/bar.txt", "finra_path"=>"/path/finradoc/2/foo/bar.txt", "legacy_path"=>"/oldpath/2/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:23:33 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
827
|
+
Completed 200 OK in 58.0ms
|
828
|
+
Processing by DigitalAssetsController#update as HTML
|
829
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:24:09 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:24:09 UTC", "expires_at"=>"2014-06-24 14:24:09 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:24:09 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
830
|
+
Completed 422 Unprocessable Entity in 124.0ms
|
831
|
+
Processing by DigitalAssetsController#update as HTML
|
832
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:24:09 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 14:24:09 UTC", "expires_at"=>"2014-06-24 14:24:09 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:24:09 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
833
|
+
Completed 200 OK in 37.0ms
|
834
|
+
Processing by DigitalAssetsController#update as HTML
|
835
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:24:09 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-5", "published_at"=>"2014-04-14 14:24:09 UTC", "expires_at"=>"2014-06-24 14:24:09 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/4/foo/bar.txt", "finra_path"=>"/path/finradoc/5/foo/bar.txt", "legacy_path"=>"/oldpath/5/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:24:09 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-5"}
|
836
|
+
Completed 200 OK in 28.0ms
|
837
|
+
Processing by DigitalAssetsController#update as HTML
|
838
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:24:44 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:24:44 UTC", "expires_at"=>"2014-06-24 14:24:44 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:24:44 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
839
|
+
Completed 422 Unprocessable Entity in 142.0ms
|
840
|
+
Processing by DigitalAssetsController#update as HTML
|
841
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:25:13 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:25:13 UTC", "expires_at"=>"2014-06-24 14:25:13 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:25:13 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
842
|
+
Completed 422 Unprocessable Entity in 127.0ms
|
843
|
+
Processing by DigitalAssetsController#update as HTML
|
844
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:25:38 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:25:38 UTC", "expires_at"=>"2014-06-24 14:25:38 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:25:38 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
845
|
+
Completed 422 Unprocessable Entity in 125.0ms
|
846
|
+
Processing by DigitalAssetsController#update as HTML
|
847
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:27:04 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:27:04 UTC", "expires_at"=>"2014-06-24 14:27:04 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:27:04 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
848
|
+
Completed 201 Created in 69.0ms
|
849
|
+
Processing by DigitalAssetsController#update as HTML
|
850
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:27:30 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:27:30 UTC", "expires_at"=>"2014-06-24 14:27:30 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:27:30 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
851
|
+
Completed 201 Created in 67.0ms
|
852
|
+
Processing by DigitalAssetsController#update as HTML
|
853
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:27:30 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 14:27:30 UTC", "expires_at"=>"2014-06-24 14:27:30 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:27:30 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
854
|
+
Completed 200 OK in 37.0ms
|
855
|
+
Processing by DigitalAssetsController#update as HTML
|
856
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:27:30 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-5", "published_at"=>"2014-04-14 14:27:30 UTC", "expires_at"=>"2014-06-24 14:27:30 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/4/foo/bar.txt", "finra_path"=>"/path/finradoc/5/foo/bar.txt", "legacy_path"=>"/oldpath/5/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:27:30 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-5"}
|
857
|
+
Completed 200 OK in 24.0ms
|
858
|
+
Processing by DigitalAssetsController#update as HTML
|
859
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:29:15 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:29:15 UTC", "expires_at"=>"2014-06-24 14:29:15 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:29:15 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
860
|
+
Completed 201 Created in 75.0ms
|
861
|
+
Processing by DigitalAssetsController#update as HTML
|
862
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:29:15 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 14:29:15 UTC", "expires_at"=>"2014-06-24 14:29:15 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:29:15 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
863
|
+
Completed 200 OK in 47.0ms
|
864
|
+
Processing by DigitalAssetsController#update as HTML
|
865
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:29:15 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-5", "published_at"=>"2014-04-14 14:29:15 UTC", "expires_at"=>"2014-06-24 14:29:15 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/4/foo/bar.txt", "finra_path"=>"/path/finradoc/5/foo/bar.txt", "legacy_path"=>"/oldpath/5/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:29:15 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-5"}
|
866
|
+
Completed 200 OK in 25.0ms
|
867
|
+
Processing by DigitalAssetsController#update as HTML
|
868
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:30:30 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-2", "published_at"=>"2014-04-14 14:30:30 UTC", "expires_at"=>"2014-06-24 14:30:31 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/2/foo/bar.txt", "legacy_path"=>"/oldpath/2/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:30:31 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
869
|
+
Completed 200 OK in 60.0ms
|
870
|
+
Processing by DigitalAssetsController#update as HTML
|
871
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:33:11 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-2", "published_at"=>"2014-04-14 14:33:11 UTC", "expires_at"=>"2014-06-24 14:33:11 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/2/foo/bar.txt", "legacy_path"=>"/oldpath/2/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:33:11 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
872
|
+
Completed 200 OK in 70.0ms
|
873
|
+
Processing by DigitalAssetsController#update as HTML
|
874
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:33:25 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-1", "published_at"=>"2014-04-14 14:33:25 UTC", "expires_at"=>"2014-06-24 14:33:25 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/1/foo/bar.txt", "finra_path"=>"/path/finradoc/1/foo/bar.txt", "legacy_path"=>"/oldpath/1/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:33:25 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-1"}
|
875
|
+
Completed 201 Created in 77.0ms
|
876
|
+
Processing by DigitalAssetsController#update as HTML
|
877
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:33:25 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-3", "published_at"=>"2014-04-14 14:33:25 UTC", "expires_at"=>"2014-06-24 14:33:25 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/3/foo/bar.txt", "finra_path"=>"/path/finradoc/3/foo/bar.txt", "legacy_path"=>"/oldpath/3/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:33:25 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-2"}
|
878
|
+
Completed 200 OK in 37.0ms
|
879
|
+
Processing by DigitalAssetsController#update as HTML
|
880
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:33:25 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-5", "published_at"=>"2014-04-14 14:33:25 UTC", "expires_at"=>"2014-06-24 14:33:25 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/4/foo/bar.txt", "finra_path"=>"/path/finradoc/5/foo/bar.txt", "legacy_path"=>"/oldpath/5/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:33:25 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-5"}
|
881
|
+
Completed 200 OK in 29.0ms
|
882
|
+
Processing by DigitalAssetsController#index as HTML
|
883
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
884
|
+
Processing by DigitalAssetsController#update as HTML
|
885
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:33:41 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-13", "published_at"=>"2014-04-14 14:33:41 UTC", "expires_at"=>"2014-06-24 14:33:41 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/13/foo/bar.txt", "finra_path"=>"/path/finradoc/13/foo/bar.txt", "legacy_path"=>"/oldpath/13/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:33:41 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-13"}
|
886
|
+
Completed 201 Created in 74.0ms
|
887
|
+
Processing by DigitalAssetsController#update as HTML
|
888
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:33:41 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-15", "published_at"=>"2014-04-14 14:33:41 UTC", "expires_at"=>"2014-06-24 14:33:41 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/15/foo/bar.txt", "finra_path"=>"/path/finradoc/15/foo/bar.txt", "legacy_path"=>"/oldpath/15/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:33:41 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-14"}
|
889
|
+
Completed 200 OK in 26.0ms
|
890
|
+
Processing by DigitalAssetsController#update as HTML
|
891
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:33:41 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-17", "published_at"=>"2014-04-14 14:33:41 UTC", "expires_at"=>"2014-06-24 14:33:41 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/16/foo/bar.txt", "finra_path"=>"/path/finradoc/17/foo/bar.txt", "legacy_path"=>"/oldpath/17/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:33:41 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-17"}
|
892
|
+
Completed 200 OK in 38.0ms
|
893
|
+
Processing by DigitalAssetsController#show as HTML
|
894
|
+
Parameters: {"id"=>"id-foobar-permanent-18"}
|
895
|
+
Completed 406 Not Acceptable in 5.0ms
|
896
|
+
Processing by DigitalAssetsController#show as HTML
|
897
|
+
Parameters: {"id"=>"IL1111.077"}
|
898
|
+
Completed 406 Not Acceptable in 8.0ms
|
899
|
+
Processing by DigitalAssetsController#show as HTML
|
900
|
+
Parameters: {"id"=>"IL1111.077"}
|
901
|
+
Completed 406 Not Acceptable in 5.0ms
|
902
|
+
Processing by DigitalAssetsController#show as HTML
|
903
|
+
Parameters: {"id"=>"id-foobar-permanent-22"}
|
904
|
+
Completed 406 Not Acceptable in 5.0ms
|
905
|
+
Processing by DigitalAssetsController#search as HTML
|
906
|
+
Completed 200 OK in 3.0ms (Views: 3.0ms)
|
907
|
+
Processing by DigitalAssetsController#search as HTML
|
908
|
+
Parameters: {"path"=>"/one/off.path"}
|
909
|
+
Completed 200 OK in 17.0ms (Views: 16.0ms)
|
910
|
+
Processing by DigitalAssetsController#search as HTML
|
911
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
912
|
+
Completed 200 OK in 6.0ms (Views: 3.0ms)
|
913
|
+
Processing by DigitalAssetsController#search as HTML
|
914
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
915
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
916
|
+
Processing by DigitalAssetsController#search as HTML
|
917
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
918
|
+
Completed 200 OK in 31.0ms (Views: 30.0ms)
|
919
|
+
Processing by DigitalAssetsController#search as HTML
|
920
|
+
Parameters: {"audience"=>"492"}
|
921
|
+
Completed 200 OK in 30.0ms (Views: 28.0ms)
|
922
|
+
Processing by DigitalAssetsController#search as HTML
|
923
|
+
Parameters: {"title"=>"Doc Title"}
|
924
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
925
|
+
Processing by DigitalAssetsController#search as HTML
|
926
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-44"}
|
927
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
928
|
+
Processing by DigitalAssetsController#search as HTML
|
929
|
+
Parameters: {"business_owner"=>"biz owner"}
|
930
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
931
|
+
Processing by DigitalAssetsController#search as HTML
|
932
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-51", "title"=>"Doc Title"}
|
933
|
+
Completed 200 OK in 12.0ms (Views: 10.0ms)
|
934
|
+
Processing by DigitalAssetsController#search as HTML
|
935
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
936
|
+
Completed 200 OK in 48.0ms (Views: 47.0ms)
|
937
|
+
Processing by DigitalAssetsController#search as HTML
|
938
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
939
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
940
|
+
Started GET "/content_folders" for 127.0.0.1 at 2014-04-24 08:34:11 -0600
|
941
|
+
Processing by ContentFoldersController#index as JSON
|
942
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (3.0ms)
|
943
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (1.0ms)
|
944
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/index.json.jbuilder (57.0ms)
|
945
|
+
Completed 200 OK in 89.0ms (Views: 76.0ms)
|
946
|
+
Started GET "/content_folders" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
947
|
+
Processing by ContentFoldersController#index as JSON
|
948
|
+
Completed 404 Not Found in 1.0ms (Views: 0.0ms)
|
949
|
+
Started GET "/content_folders/lit_center" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
950
|
+
Processing by ContentFoldersController#show as JSON
|
951
|
+
Parameters: {"id"=>"lit_center"}
|
952
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (2.0ms)
|
953
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/show.json.jbuilder (19.0ms)
|
954
|
+
Completed 200 OK in 34.0ms (Views: 27.0ms)
|
955
|
+
Started GET "/content_folders/lit_center" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
956
|
+
Processing by ContentFoldersController#show as JSON
|
957
|
+
Parameters: {"id"=>"lit_center"}
|
958
|
+
Completed 404 Not Found in 1.0ms (Views: 1.0ms)
|
959
|
+
Started POST "/content_folders" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
960
|
+
Processing by ContentFoldersController#create as JSON
|
961
|
+
Parameters: {"content_folder"=>{"folder_id"=>"folder id", "label"=>"label", "document_ids"=>["id1", "id2"], "child_folders"=>[{"folder_id"=>"child folder id", "label"=>"child label", "document_ids"=>["id1", "id2"]}]}}
|
962
|
+
Completed 201 Created in 25.0ms (Views: 3.0ms)
|
963
|
+
Started POST "/content_folders" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
964
|
+
Processing by ContentFoldersController#create as JSON
|
965
|
+
Parameters: {"content_folder"=>{"folder_id"=>"folder id", "label"=>"label", "document_ids"=>nil, "child_folders"=>nil}}
|
966
|
+
Completed 201 Created in 14.0ms (Views: 3.0ms)
|
967
|
+
Started GET "/digital_assets" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
968
|
+
Processing by DigitalAssetsController#index as JSON
|
969
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
970
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
971
|
+
Processing by DigitalAssetsController#index as JSON
|
972
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
|
973
|
+
Completed 200 OK in 14.0ms (Views: 13.0ms)
|
974
|
+
Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
975
|
+
Processing by DigitalAssetsController#index as JSON
|
976
|
+
Parameters: {"fund"=>"00200"}
|
977
|
+
Completed 200 OK in 23.0ms (Views: 20.0ms)
|
978
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
979
|
+
Processing by DigitalAssetsController#index as JSON
|
980
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
|
981
|
+
Completed 200 OK in 20.0ms (Views: 15.0ms)
|
982
|
+
Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
983
|
+
Processing by DigitalAssetsController#index as JSON
|
984
|
+
Parameters: {"path"=>"/some/other/path.pdf"}
|
985
|
+
Completed 200 OK in 19.0ms (Views: 16.0ms)
|
986
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
987
|
+
Processing by DigitalAssetsController#index as JSON
|
988
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
|
989
|
+
Completed 200 OK in 12.0ms (Views: 11.0ms)
|
990
|
+
Started GET "/digital_assets?published=2014-04-24+12%3A34%3A12+UTC" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
991
|
+
Processing by DigitalAssetsController#index as JSON
|
992
|
+
Parameters: {"published"=>"2014-04-24 12:34:12 UTC"}
|
993
|
+
Completed 200 OK in 36.0ms (Views: 13.0ms)
|
994
|
+
Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
995
|
+
Processing by DigitalAssetsController#show as JSON
|
996
|
+
Parameters: {"id"=>"foo-bar-id"}
|
997
|
+
Completed 200 OK in 26.0ms (Views: 11.0ms)
|
998
|
+
Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-04-24 08:34:12 -0600
|
999
|
+
Processing by DigitalAssetsController#show as JSON
|
1000
|
+
Parameters: {"id"=>"not-found-doc"}
|
1001
|
+
Completed 404 Not Found in 52.0ms (Views: 1.0ms)
|
1002
|
+
Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-04-24 08:34:13 -0600
|
1003
|
+
Processing by DigitalAssetsController#updated_time as JSON
|
1004
|
+
Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
|
1005
|
+
Completed 200 OK in 11.0ms (Views: 0.0ms)
|
1006
|
+
Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-04-24 08:34:13 -0600
|
1007
|
+
Processing by DigitalAssetsController#update as JSON
|
1008
|
+
Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-04-22 14:34:11 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-04-14 14:34:11 UTC", "expires_at"=>"2014-06-24 14:34:11 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/16/foo/bar.txt", "finra_path"=>"/path/finradoc/17/foo/bar.txt", "legacy_path"=>"/oldpath/17/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:34:11 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-04-24 14:34:13 UTC", "created_at"=>"2014-04-24 14:34:13 UTC"}, "id"=>"foo-bar-digital-asset-id"}
|
1009
|
+
Completed 200 OK in 23.0ms
|
1010
|
+
Started POST "/digital_assets" for 127.0.0.1 at 2014-04-24 08:34:13 -0600
|
1011
|
+
Processing by DigitalAssetsController#create as JSON
|
1012
|
+
Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"535920e5bed48de72538283d", "title"=>"Doc Title", "changed_at"=>"2014-04-22 14:34:11 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-04-14 14:34:11 UTC", "expires_at"=>"2014-06-24 14:34:11 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/17/foo/bar.txt", "finra_path"=>"/path/finradoc/18/foo/bar.txt", "legacy_path"=>"/oldpath/18/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:34:11 UTC", "content_type"=>"fact_sheet"}}
|
1013
|
+
Completed 201 Created in 28.0ms
|
1014
|
+
Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-04-24 08:34:13 -0600
|
1015
|
+
Processing by DigitalAssetsController#destroy as JSON
|
1016
|
+
Parameters: {"id"=>"foo-bar-digital-asset-id"}
|
1017
|
+
Completed 200 OK in 5.0ms
|
1018
|
+
Started DELETE "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-04-24 08:34:13 -0600
|
1019
|
+
Processing by DigitalAssetsController#destroy as JSON
|
1020
|
+
Parameters: {"id"=>"not-found-doc"}
|
1021
|
+
Completed 404 Not Found in 2.0ms
|
1022
|
+
Started GET "/" for 127.0.0.1 at 2014-04-24 08:34:13 -0600
|
1023
|
+
|
1024
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
1025
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1026
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1027
|
+
railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
|
1028
|
+
railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
|
1029
|
+
activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1030
|
+
railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
|
1031
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1032
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
1033
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
1034
|
+
activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1035
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
1036
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
|
1037
|
+
railties (3.2.17) lib/rails/engine.rb:484:in `call'
|
1038
|
+
railties (3.2.17) lib/rails/application.rb:231:in `call'
|
1039
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
1040
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
1041
|
+
rack-test (0.6.2) lib/rack/test.rb:57:in `get'
|
1042
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/1.9/forwardable.rb:201:in `get'
|
1043
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
|
1044
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/client_base.rb:39:in `process'
|
1045
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/client_base.rb:9:in `get'
|
1046
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
|
1047
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
|
1048
|
+
org/jruby/RubyBasicObject.java:1536:in `instance_eval'
|
1049
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:114:in `run'
|
1050
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
1051
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:111:in `run'
|
1052
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:390:in `run_examples'
|
1053
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1054
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:386:in `run_examples'
|
1055
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:371:in `run'
|
1056
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:372:in `run'
|
1057
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1058
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:372:in `run'
|
1059
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:28:in `run'
|
1060
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1061
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:28:in `run'
|
1062
|
+
rspec-core (2.14.8) lib/rspec/core/reporter.rb:58:in `report'
|
1063
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:25:in `run'
|
1064
|
+
rspec-core (2.14.8) lib/rspec/core/runner.rb:80:in `run'
|
1065
|
+
rspec-core (2.14.8) lib/rspec/core/runner.rb:17:in `autorun'
|
1066
|
+
|
1067
|
+
|
1068
|
+
Rendered /Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
|
1069
|
+
Processing by DigitalAssetsController#index as HTML
|
1070
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1071
|
+
Processing by DigitalAssetsController#update as HTML
|
1072
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:34:11 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-20", "published_at"=>"2014-04-14 14:34:11 UTC", "expires_at"=>"2014-06-24 14:34:11 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/31/foo/bar.txt", "finra_path"=>"/path/finradoc/32/foo/bar.txt", "legacy_path"=>"/oldpath/32/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:34:11 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-20"}
|
1073
|
+
Completed 201 Created in 31.0ms
|
1074
|
+
Processing by DigitalAssetsController#update as HTML
|
1075
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:34:11 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-22", "published_at"=>"2014-04-14 14:34:11 UTC", "expires_at"=>"2014-06-24 14:34:11 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/33/foo/bar.txt", "finra_path"=>"/path/finradoc/34/foo/bar.txt", "legacy_path"=>"/oldpath/34/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:34:11 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-21"}
|
1076
|
+
Completed 200 OK in 31.0ms
|
1077
|
+
Processing by DigitalAssetsController#update as HTML
|
1078
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 14:34:11 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-24", "published_at"=>"2014-04-14 14:34:11 UTC", "expires_at"=>"2014-06-24 14:34:11 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/34/foo/bar.txt", "finra_path"=>"/path/finradoc/36/foo/bar.txt", "legacy_path"=>"/oldpath/36/foo/bar.txt", "doc_changed_at"=>"2014-04-22 14:34:11 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-24"}
|
1079
|
+
Completed 200 OK in 22.0ms
|
1080
|
+
Processing by DigitalAssetsController#show as HTML
|
1081
|
+
Parameters: {"id"=>"id-foobar-permanent-25"}
|
1082
|
+
Completed 406 Not Acceptable in 4.0ms
|
1083
|
+
Processing by DigitalAssetsController#show as HTML
|
1084
|
+
Parameters: {"id"=>"IL1111.077"}
|
1085
|
+
Completed 406 Not Acceptable in 5.0ms
|
1086
|
+
Processing by DigitalAssetsController#show as HTML
|
1087
|
+
Parameters: {"id"=>"IL1111.077"}
|
1088
|
+
Completed 406 Not Acceptable in 5.0ms
|
1089
|
+
Processing by DigitalAssetsController#show as HTML
|
1090
|
+
Parameters: {"id"=>"id-foobar-permanent-29"}
|
1091
|
+
Completed 406 Not Acceptable in 4.0ms
|
1092
|
+
Processing by DigitalAssetsController#search as HTML
|
1093
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1094
|
+
Processing by DigitalAssetsController#search as HTML
|
1095
|
+
Parameters: {"path"=>"/one/off.path"}
|
1096
|
+
Completed 200 OK in 11.0ms (Views: 10.0ms)
|
1097
|
+
Processing by DigitalAssetsController#search as HTML
|
1098
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
1099
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1100
|
+
Processing by DigitalAssetsController#search as HTML
|
1101
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
1102
|
+
Completed 200 OK in 10.0ms (Views: 9.0ms)
|
1103
|
+
Processing by DigitalAssetsController#search as HTML
|
1104
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
1105
|
+
Completed 200 OK in 25.0ms (Views: 24.0ms)
|
1106
|
+
Processing by DigitalAssetsController#search as HTML
|
1107
|
+
Parameters: {"audience"=>"492"}
|
1108
|
+
Completed 200 OK in 28.0ms (Views: 26.0ms)
|
1109
|
+
Processing by DigitalAssetsController#search as HTML
|
1110
|
+
Parameters: {"title"=>"Doc Title"}
|
1111
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1112
|
+
Processing by DigitalAssetsController#search as HTML
|
1113
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-51"}
|
1114
|
+
Completed 200 OK in 14.0ms (Views: 13.0ms)
|
1115
|
+
Processing by DigitalAssetsController#search as HTML
|
1116
|
+
Parameters: {"business_owner"=>"biz owner"}
|
1117
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1118
|
+
Processing by DigitalAssetsController#search as HTML
|
1119
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-58", "title"=>"Doc Title"}
|
1120
|
+
Completed 200 OK in 27.0ms (Views: 26.0ms)
|
1121
|
+
Processing by DigitalAssetsController#search as HTML
|
1122
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
1123
|
+
Completed 200 OK in 41.0ms (Views: 39.0ms)
|
1124
|
+
Processing by DigitalAssetsController#search as HTML
|
1125
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
1126
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1127
|
+
Started GET "/content_folders" for 127.0.0.1 at 2014-04-24 09:53:59 -0600
|
1128
|
+
Processing by ContentFoldersController#index as JSON
|
1129
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (2.0ms)
|
1130
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (1.0ms)
|
1131
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/index.json.jbuilder (56.0ms)
|
1132
|
+
Completed 200 OK in 88.0ms (Views: 76.0ms)
|
1133
|
+
Started GET "/content_folders" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1134
|
+
Processing by ContentFoldersController#index as JSON
|
1135
|
+
Completed 404 Not Found in 1.0ms (Views: 1.0ms)
|
1136
|
+
Started GET "/content_folders/lit_center" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1137
|
+
Processing by ContentFoldersController#show as JSON
|
1138
|
+
Parameters: {"id"=>"lit_center"}
|
1139
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (1.0ms)
|
1140
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/show.json.jbuilder (19.0ms)
|
1141
|
+
Completed 200 OK in 33.0ms (Views: 26.0ms)
|
1142
|
+
Started GET "/content_folders/lit_center" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1143
|
+
Processing by ContentFoldersController#show as JSON
|
1144
|
+
Parameters: {"id"=>"lit_center"}
|
1145
|
+
Completed 404 Not Found in 1.0ms (Views: 1.0ms)
|
1146
|
+
Started POST "/content_folders" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1147
|
+
Processing by ContentFoldersController#create as JSON
|
1148
|
+
Parameters: {"content_folder"=>{"folder_id"=>"folder id", "label"=>"label", "document_ids"=>["id1", "id2"], "child_folders"=>[{"folder_id"=>"child folder id", "label"=>"child label", "document_ids"=>["id1", "id2"]}]}}
|
1149
|
+
Completed 201 Created in 25.0ms (Views: 4.0ms)
|
1150
|
+
Started POST "/content_folders" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1151
|
+
Processing by ContentFoldersController#create as JSON
|
1152
|
+
Parameters: {"content_folder"=>{"folder_id"=>"folder id", "label"=>"label", "document_ids"=>nil, "child_folders"=>nil}}
|
1153
|
+
Completed 201 Created in 15.0ms (Views: 3.0ms)
|
1154
|
+
Started GET "/digital_assets" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1155
|
+
Processing by DigitalAssetsController#index as JSON
|
1156
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
1157
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1158
|
+
Processing by DigitalAssetsController#index as JSON
|
1159
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
|
1160
|
+
Completed 200 OK in 13.0ms (Views: 12.0ms)
|
1161
|
+
Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1162
|
+
Processing by DigitalAssetsController#index as JSON
|
1163
|
+
Parameters: {"fund"=>"00200"}
|
1164
|
+
Completed 200 OK in 23.0ms (Views: 19.0ms)
|
1165
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1166
|
+
Processing by DigitalAssetsController#index as JSON
|
1167
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
|
1168
|
+
Completed 200 OK in 19.0ms (Views: 14.0ms)
|
1169
|
+
Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1170
|
+
Processing by DigitalAssetsController#index as JSON
|
1171
|
+
Parameters: {"path"=>"/some/other/path.pdf"}
|
1172
|
+
Completed 200 OK in 19.0ms (Views: 16.0ms)
|
1173
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1174
|
+
Processing by DigitalAssetsController#index as JSON
|
1175
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
|
1176
|
+
Completed 200 OK in 14.0ms (Views: 13.0ms)
|
1177
|
+
Started GET "/digital_assets?published=2014-04-24+13%3A54%3A00+UTC" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1178
|
+
Processing by DigitalAssetsController#index as JSON
|
1179
|
+
Parameters: {"published"=>"2014-04-24 13:54:00 UTC"}
|
1180
|
+
Completed 200 OK in 38.0ms (Views: 13.0ms)
|
1181
|
+
Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1182
|
+
Processing by DigitalAssetsController#show as JSON
|
1183
|
+
Parameters: {"id"=>"foo-bar-id"}
|
1184
|
+
Completed 200 OK in 25.0ms (Views: 10.0ms)
|
1185
|
+
Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-04-24 09:54:00 -0600
|
1186
|
+
Processing by DigitalAssetsController#show as JSON
|
1187
|
+
Parameters: {"id"=>"not-found-doc"}
|
1188
|
+
Completed 404 Not Found in 55.0ms (Views: 1.0ms)
|
1189
|
+
Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-04-24 09:54:01 -0600
|
1190
|
+
Processing by DigitalAssetsController#updated_time as JSON
|
1191
|
+
Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
|
1192
|
+
Completed 200 OK in 12.0ms (Views: 0.0ms)
|
1193
|
+
Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-04-24 09:54:01 -0600
|
1194
|
+
Processing by DigitalAssetsController#update as JSON
|
1195
|
+
Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-04-22 15:53:59 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-04-14 15:53:59 UTC", "expires_at"=>"2014-06-24 15:53:59 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/16/foo/bar.txt", "finra_path"=>"/path/finradoc/17/foo/bar.txt", "legacy_path"=>"/oldpath/17/foo/bar.txt", "doc_changed_at"=>"2014-04-22 15:53:59 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-04-24 15:54:01 UTC", "created_at"=>"2014-04-24 15:54:01 UTC"}, "id"=>"foo-bar-digital-asset-id"}
|
1196
|
+
Completed 200 OK in 23.0ms
|
1197
|
+
Started POST "/digital_assets" for 127.0.0.1 at 2014-04-24 09:54:01 -0600
|
1198
|
+
Processing by DigitalAssetsController#create as JSON
|
1199
|
+
Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"535933991c2615a09ea66dd4", "title"=>"Doc Title", "changed_at"=>"2014-04-22 15:53:59 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-04-14 15:53:59 UTC", "expires_at"=>"2014-06-24 15:53:59 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/17/foo/bar.txt", "finra_path"=>"/path/finradoc/18/foo/bar.txt", "legacy_path"=>"/oldpath/18/foo/bar.txt", "doc_changed_at"=>"2014-04-22 15:53:59 UTC", "content_type"=>"fact_sheet"}}
|
1200
|
+
Completed 201 Created in 27.0ms
|
1201
|
+
Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-04-24 09:54:01 -0600
|
1202
|
+
Processing by DigitalAssetsController#destroy as JSON
|
1203
|
+
Parameters: {"id"=>"foo-bar-digital-asset-id"}
|
1204
|
+
Completed 200 OK in 5.0ms
|
1205
|
+
Started DELETE "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-04-24 09:54:01 -0600
|
1206
|
+
Processing by DigitalAssetsController#destroy as JSON
|
1207
|
+
Parameters: {"id"=>"not-found-doc"}
|
1208
|
+
Completed 404 Not Found in 2.0ms
|
1209
|
+
Started GET "/" for 127.0.0.1 at 2014-04-24 09:54:01 -0600
|
1210
|
+
|
1211
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
1212
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1213
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1214
|
+
railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
|
1215
|
+
railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
|
1216
|
+
activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1217
|
+
railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
|
1218
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1219
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
1220
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
1221
|
+
activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1222
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
1223
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
|
1224
|
+
railties (3.2.17) lib/rails/engine.rb:484:in `call'
|
1225
|
+
railties (3.2.17) lib/rails/application.rb:231:in `call'
|
1226
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
1227
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
1228
|
+
rack-test (0.6.2) lib/rack/test.rb:57:in `get'
|
1229
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/1.9/forwardable.rb:201:in `get'
|
1230
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
|
1231
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/client_base.rb:39:in `process'
|
1232
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/client_base.rb:9:in `get'
|
1233
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
|
1234
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
|
1235
|
+
org/jruby/RubyBasicObject.java:1536:in `instance_eval'
|
1236
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:114:in `run'
|
1237
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
1238
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:111:in `run'
|
1239
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:390:in `run_examples'
|
1240
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1241
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:386:in `run_examples'
|
1242
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:371:in `run'
|
1243
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:372:in `run'
|
1244
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1245
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:372:in `run'
|
1246
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:28:in `run'
|
1247
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1248
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:28:in `run'
|
1249
|
+
rspec-core (2.14.8) lib/rspec/core/reporter.rb:58:in `report'
|
1250
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:25:in `run'
|
1251
|
+
rspec-core (2.14.8) lib/rspec/core/runner.rb:80:in `run'
|
1252
|
+
rspec-core (2.14.8) lib/rspec/core/runner.rb:17:in `autorun'
|
1253
|
+
|
1254
|
+
|
1255
|
+
Rendered /Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
|
1256
|
+
Processing by DigitalAssetsController#index as HTML
|
1257
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1258
|
+
Processing by DigitalAssetsController#update as HTML
|
1259
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 15:53:59 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-20", "published_at"=>"2014-04-14 15:53:59 UTC", "expires_at"=>"2014-06-24 15:53:59 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/31/foo/bar.txt", "finra_path"=>"/path/finradoc/32/foo/bar.txt", "legacy_path"=>"/oldpath/32/foo/bar.txt", "doc_changed_at"=>"2014-04-22 15:53:59 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-20"}
|
1260
|
+
Completed 201 Created in 33.0ms
|
1261
|
+
Processing by DigitalAssetsController#update as HTML
|
1262
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 15:53:59 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-22", "published_at"=>"2014-04-14 15:53:59 UTC", "expires_at"=>"2014-06-24 15:53:59 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/33/foo/bar.txt", "finra_path"=>"/path/finradoc/34/foo/bar.txt", "legacy_path"=>"/oldpath/34/foo/bar.txt", "doc_changed_at"=>"2014-04-22 15:53:59 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-21"}
|
1263
|
+
Completed 200 OK in 28.0ms
|
1264
|
+
Processing by DigitalAssetsController#update as HTML
|
1265
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-22 15:53:59 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-24", "published_at"=>"2014-04-14 15:53:59 UTC", "expires_at"=>"2014-06-24 15:53:59 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/34/foo/bar.txt", "finra_path"=>"/path/finradoc/36/foo/bar.txt", "legacy_path"=>"/oldpath/36/foo/bar.txt", "doc_changed_at"=>"2014-04-22 15:53:59 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-24"}
|
1266
|
+
Completed 200 OK in 21.0ms
|
1267
|
+
Processing by DigitalAssetsController#show as HTML
|
1268
|
+
Parameters: {"id"=>"id-foobar-permanent-25"}
|
1269
|
+
Completed 406 Not Acceptable in 6.0ms
|
1270
|
+
Processing by DigitalAssetsController#show as HTML
|
1271
|
+
Parameters: {"id"=>"IL1111.077"}
|
1272
|
+
Completed 406 Not Acceptable in 4.0ms
|
1273
|
+
Processing by DigitalAssetsController#show as HTML
|
1274
|
+
Parameters: {"id"=>"IL1111.077"}
|
1275
|
+
Completed 406 Not Acceptable in 4.0ms
|
1276
|
+
Processing by DigitalAssetsController#show as HTML
|
1277
|
+
Parameters: {"id"=>"id-foobar-permanent-29"}
|
1278
|
+
Completed 406 Not Acceptable in 3.0ms
|
1279
|
+
Processing by DigitalAssetsController#search as HTML
|
1280
|
+
Completed 200 OK in 4.0ms (Views: 2.0ms)
|
1281
|
+
Processing by DigitalAssetsController#search as HTML
|
1282
|
+
Parameters: {"path"=>"/one/off.path"}
|
1283
|
+
Completed 200 OK in 10.0ms (Views: 9.0ms)
|
1284
|
+
Processing by DigitalAssetsController#search as HTML
|
1285
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
1286
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1287
|
+
Processing by DigitalAssetsController#search as HTML
|
1288
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
1289
|
+
Completed 200 OK in 10.0ms (Views: 9.0ms)
|
1290
|
+
Processing by DigitalAssetsController#search as HTML
|
1291
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
1292
|
+
Completed 200 OK in 23.0ms (Views: 22.0ms)
|
1293
|
+
Processing by DigitalAssetsController#search as HTML
|
1294
|
+
Parameters: {"audience"=>"492"}
|
1295
|
+
Completed 200 OK in 27.0ms (Views: 26.0ms)
|
1296
|
+
Processing by DigitalAssetsController#search as HTML
|
1297
|
+
Parameters: {"title"=>"Doc Title"}
|
1298
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1299
|
+
Processing by DigitalAssetsController#search as HTML
|
1300
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-51"}
|
1301
|
+
Completed 200 OK in 16.0ms (Views: 15.0ms)
|
1302
|
+
Processing by DigitalAssetsController#search as HTML
|
1303
|
+
Parameters: {"business_owner"=>"biz owner"}
|
1304
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1305
|
+
Processing by DigitalAssetsController#search as HTML
|
1306
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-58", "title"=>"Doc Title"}
|
1307
|
+
Completed 200 OK in 26.0ms (Views: 24.0ms)
|
1308
|
+
Processing by DigitalAssetsController#search as HTML
|
1309
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
1310
|
+
Completed 200 OK in 39.0ms (Views: 38.0ms)
|
1311
|
+
Processing by DigitalAssetsController#search as HTML
|
1312
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
1313
|
+
Completed 200 OK in 2.0ms (Views: 1.0ms)
|
1314
|
+
Started GET "/content_folders" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1315
|
+
Processing by ContentFoldersController#index as JSON
|
1316
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (2.0ms)
|
1317
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (1.0ms)
|
1318
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/index.json.jbuilder (53.0ms)
|
1319
|
+
Completed 200 OK in 85.0ms (Views: 72.0ms)
|
1320
|
+
Started GET "/content_folders" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1321
|
+
Processing by ContentFoldersController#index as JSON
|
1322
|
+
Completed 404 Not Found in 1.0ms (Views: 0.0ms)
|
1323
|
+
Started GET "/content_folders/lit_center" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1324
|
+
Processing by ContentFoldersController#show as JSON
|
1325
|
+
Parameters: {"id"=>"lit_center"}
|
1326
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/_content_folder.json.jbuilder (2.0ms)
|
1327
|
+
Rendered /Users/spjms/projects/daengine/app/views/content_folders/show.json.jbuilder (19.0ms)
|
1328
|
+
Completed 200 OK in 29.0ms (Views: 23.0ms)
|
1329
|
+
Started GET "/content_folders/lit_center" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1330
|
+
Processing by ContentFoldersController#show as JSON
|
1331
|
+
Parameters: {"id"=>"lit_center"}
|
1332
|
+
Completed 404 Not Found in 1.0ms (Views: 0.0ms)
|
1333
|
+
Started POST "/content_folders" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1334
|
+
Processing by ContentFoldersController#create as JSON
|
1335
|
+
Parameters: {"content_folder"=>{"folder_id"=>"folder id", "label"=>"label", "document_ids"=>["id1", "id2"], "child_folders"=>[{"folder_id"=>"child folder id", "label"=>"child label", "document_ids"=>["id1", "id2"]}]}}
|
1336
|
+
Completed 201 Created in 24.0ms (Views: 3.0ms)
|
1337
|
+
Started POST "/content_folders" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1338
|
+
Processing by ContentFoldersController#create as JSON
|
1339
|
+
Parameters: {"content_folder"=>{"folder_id"=>"folder id", "label"=>"label", "document_ids"=>nil, "child_folders"=>nil}}
|
1340
|
+
Completed 201 Created in 15.0ms (Views: 3.0ms)
|
1341
|
+
Started GET "/digital_assets" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1342
|
+
Processing by DigitalAssetsController#index as JSON
|
1343
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
1344
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-1" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1345
|
+
Processing by DigitalAssetsController#index as JSON
|
1346
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-1"}
|
1347
|
+
Completed 200 OK in 35.0ms (Views: 34.0ms)
|
1348
|
+
Started GET "/digital_assets?fund=00200" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1349
|
+
Processing by DigitalAssetsController#index as JSON
|
1350
|
+
Parameters: {"fund"=>"00200"}
|
1351
|
+
Completed 200 OK in 23.0ms (Views: 21.0ms)
|
1352
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-4" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1353
|
+
Processing by DigitalAssetsController#index as JSON
|
1354
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-4"}
|
1355
|
+
Completed 200 OK in 18.0ms (Views: 14.0ms)
|
1356
|
+
Started GET "/digital_assets?path=%2Fsome%2Fother%2Fpath.pdf" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1357
|
+
Processing by DigitalAssetsController#index as JSON
|
1358
|
+
Parameters: {"path"=>"/some/other/path.pdf"}
|
1359
|
+
Completed 200 OK in 20.0ms (Views: 17.0ms)
|
1360
|
+
Started GET "/digital_assets?digital_asset_id=id-foobar-permanent-6" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1361
|
+
Processing by DigitalAssetsController#index as JSON
|
1362
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-6"}
|
1363
|
+
Completed 200 OK in 13.0ms (Views: 12.0ms)
|
1364
|
+
Started GET "/digital_assets?published=2014-04-28+14%3A58%3A28+UTC" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1365
|
+
Processing by DigitalAssetsController#index as JSON
|
1366
|
+
Parameters: {"published"=>"2014-04-28 14:58:28 UTC"}
|
1367
|
+
Completed 200 OK in 37.0ms (Views: 12.0ms)
|
1368
|
+
Started GET "/digital_assets/foo-bar-id" for 127.0.0.1 at 2014-04-28 10:58:28 -0600
|
1369
|
+
Processing by DigitalAssetsController#show as JSON
|
1370
|
+
Parameters: {"id"=>"foo-bar-id"}
|
1371
|
+
Completed 200 OK in 25.0ms (Views: 11.0ms)
|
1372
|
+
Started GET "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-04-28 10:58:29 -0600
|
1373
|
+
Processing by DigitalAssetsController#show as JSON
|
1374
|
+
Parameters: {"id"=>"not-found-doc"}
|
1375
|
+
Completed 404 Not Found in 53.0ms (Views: 1.0ms)
|
1376
|
+
Started POST "/digital_assets/updated_time" for 127.0.0.1 at 2014-04-28 10:58:29 -0600
|
1377
|
+
Processing by DigitalAssetsController#updated_time as JSON
|
1378
|
+
Parameters: {"ids"=>["id-1", "id-2", "id-3", "id-4"]}
|
1379
|
+
Completed 200 OK in 10.0ms (Views: 0.0ms)
|
1380
|
+
Started PUT "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-04-28 10:58:29 -0600
|
1381
|
+
Processing by DigitalAssetsController#update as JSON
|
1382
|
+
Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"foo-bar-digital-asset-id", "title"=>"another title", "changed_at"=>"2014-04-26 16:58:27 UTC", "digital_asset_id"=>"foo-bar-digital-asset-id", "published_at"=>"2014-04-18 16:58:27 UTC", "expires_at"=>"2014-06-28 16:58:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/16/foo/bar.txt", "finra_path"=>"/path/finradoc/17/foo/bar.txt", "legacy_path"=>"/oldpath/17/foo/bar.txt", "doc_changed_at"=>"2014-04-26 16:58:27 UTC", "content_type"=>"fact_sheet", "updated_at"=>"2014-04-28 16:58:29 UTC", "created_at"=>"2014-04-28 16:58:29 UTC"}, "id"=>"foo-bar-digital-asset-id"}
|
1383
|
+
Completed 200 OK in 22.0ms
|
1384
|
+
Started POST "/digital_assets" for 127.0.0.1 at 2014-04-28 10:58:29 -0600
|
1385
|
+
Processing by DigitalAssetsController#create as JSON
|
1386
|
+
Parameters: {"digital_asset"=>{"audiences"=>["investor"], "omniture_codes"=>["KOW2MY24D"], "orderable"=>"false", "pages"=>"1", "fund_codes"=>["00200", "00190", "00210"], "_id"=>"535e88b5bed46dbbc902b554", "title"=>"Doc Title", "changed_at"=>"2014-04-26 16:58:27 UTC", "digital_asset_id"=>"new-digital-asset-id", "published_at"=>"2014-04-18 16:58:27 UTC", "expires_at"=>"2014-06-28 16:58:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "path"=>"/17/foo/bar.txt", "finra_path"=>"/path/finradoc/18/foo/bar.txt", "legacy_path"=>"/oldpath/18/foo/bar.txt", "doc_changed_at"=>"2014-04-26 16:58:27 UTC", "content_type"=>"fact_sheet"}}
|
1387
|
+
Completed 201 Created in 25.0ms
|
1388
|
+
Started DELETE "/digital_assets/foo-bar-digital-asset-id" for 127.0.0.1 at 2014-04-28 10:58:29 -0600
|
1389
|
+
Processing by DigitalAssetsController#destroy as JSON
|
1390
|
+
Parameters: {"id"=>"foo-bar-digital-asset-id"}
|
1391
|
+
Completed 200 OK in 6.0ms
|
1392
|
+
Started DELETE "/digital_assets/not-found-doc" for 127.0.0.1 at 2014-04-28 10:58:29 -0600
|
1393
|
+
Processing by DigitalAssetsController#destroy as JSON
|
1394
|
+
Parameters: {"id"=>"not-found-doc"}
|
1395
|
+
Completed 404 Not Found in 3.0ms
|
1396
|
+
Started GET "/" for 127.0.0.1 at 2014-04-28 10:58:29 -0600
|
1397
|
+
|
1398
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
1399
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1400
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1401
|
+
railties (3.2.17) lib/rails/rack/logger.rb:32:in `call_app'
|
1402
|
+
railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
|
1403
|
+
activesupport (3.2.17) lib/active_support/tagged_logging.rb:22:in `tagged'
|
1404
|
+
railties (3.2.17) lib/rails/rack/logger.rb:16:in `call'
|
1405
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1406
|
+
rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
|
1407
|
+
rack (1.4.5) lib/rack/runtime.rb:17:in `call'
|
1408
|
+
activesupport (3.2.17) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1409
|
+
rack (1.4.5) lib/rack/lock.rb:15:in `call'
|
1410
|
+
actionpack (3.2.17) lib/action_dispatch/middleware/static.rb:63:in `call'
|
1411
|
+
railties (3.2.17) lib/rails/engine.rb:484:in `call'
|
1412
|
+
railties (3.2.17) lib/rails/application.rb:231:in `call'
|
1413
|
+
rack-test (0.6.2) lib/rack/mock_session.rb:30:in `request'
|
1414
|
+
rack-test (0.6.2) lib/rack/test.rb:230:in `process_request'
|
1415
|
+
rack-test (0.6.2) lib/rack/test.rb:57:in `get'
|
1416
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/1.9/forwardable.rb:201:in `get'
|
1417
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/rack_test_client.rb:38:in `do_request'
|
1418
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/client_base.rb:39:in `process'
|
1419
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/client_base.rb:9:in `get'
|
1420
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/dsl/endpoint.rb:47:in `do_request'
|
1421
|
+
/Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/bundler/gems/rspec_api_documentation-7d63a4d0c86d/lib/rspec_api_documentation/dsl/endpoint.rb:20:in `example_request'
|
1422
|
+
org/jruby/RubyBasicObject.java:1536:in `instance_eval'
|
1423
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:114:in `run'
|
1424
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:254:in `with_around_each_hooks'
|
1425
|
+
rspec-core (2.14.8) lib/rspec/core/example.rb:111:in `run'
|
1426
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:390:in `run_examples'
|
1427
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1428
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:386:in `run_examples'
|
1429
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:371:in `run'
|
1430
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:372:in `run'
|
1431
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1432
|
+
rspec-core (2.14.8) lib/rspec/core/example_group.rb:372:in `run'
|
1433
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:28:in `run'
|
1434
|
+
org/jruby/RubyArray.java:2409:in `map'
|
1435
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:28:in `run'
|
1436
|
+
rspec-core (2.14.8) lib/rspec/core/reporter.rb:58:in `report'
|
1437
|
+
rspec-core (2.14.8) lib/rspec/core/command_line.rb:25:in `run'
|
1438
|
+
rspec-core (2.14.8) lib/rspec/core/runner.rb:80:in `run'
|
1439
|
+
rspec-core (2.14.8) lib/rspec/core/runner.rb:17:in `autorun'
|
1440
|
+
|
1441
|
+
|
1442
|
+
Rendered /Users/spjms/.rbenv/versions/jruby-1.7.9/lib/ruby/gems/shared/gems/actionpack-3.2.17/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.0ms)
|
1443
|
+
Processing by DigitalAssetsController#index as HTML
|
1444
|
+
Completed 200 OK in 2.0ms (Views: 2.0ms)
|
1445
|
+
Processing by DigitalAssetsController#update as HTML
|
1446
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-26 16:58:27 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-20", "published_at"=>"2014-04-18 16:58:27 UTC", "expires_at"=>"2014-06-28 16:58:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/31/foo/bar.txt", "finra_path"=>"/path/finradoc/32/foo/bar.txt", "legacy_path"=>"/oldpath/32/foo/bar.txt", "doc_changed_at"=>"2014-04-26 16:58:27 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-20"}
|
1447
|
+
Completed 201 Created in 29.0ms
|
1448
|
+
Processing by DigitalAssetsController#update as HTML
|
1449
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-26 16:58:27 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-22", "published_at"=>"2014-04-18 16:58:27 UTC", "expires_at"=>"2014-06-28 16:58:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/33/foo/bar.txt", "finra_path"=>"/path/finradoc/34/foo/bar.txt", "legacy_path"=>"/oldpath/34/foo/bar.txt", "doc_changed_at"=>"2014-04-26 16:58:27 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-21"}
|
1450
|
+
Completed 200 OK in 28.0ms
|
1451
|
+
Processing by DigitalAssetsController#update as HTML
|
1452
|
+
Parameters: {"digital_asset"=>{"title"=>"Doc Title", "changed_at"=>"2014-04-26 16:58:27 UTC", "audiences"=>["investor"], "digital_asset_id"=>"id-foobar-permanent-24", "published_at"=>"2014-04-18 16:58:27 UTC", "expires_at"=>"2014-06-28 16:58:27 UTC", "sami_code"=>"IL1111.077", "business_owner"=>"biz owner", "omniture_codes"=>["KOW2MY24D"], "path"=>"/34/foo/bar.txt", "finra_path"=>"/path/finradoc/36/foo/bar.txt", "legacy_path"=>"/oldpath/36/foo/bar.txt", "doc_changed_at"=>"2014-04-26 16:58:27 UTC", "content_type"=>"fact_sheet", "fund_codes"=>["00200", "00190", "00210"]}, "id"=>"id-foobar-permanent-24"}
|
1453
|
+
Completed 200 OK in 18.0ms
|
1454
|
+
Processing by DigitalAssetsController#show as HTML
|
1455
|
+
Parameters: {"id"=>"id-foobar-permanent-25"}
|
1456
|
+
Completed 406 Not Acceptable in 4.0ms
|
1457
|
+
Processing by DigitalAssetsController#show as HTML
|
1458
|
+
Parameters: {"id"=>"IL1111.077"}
|
1459
|
+
Completed 406 Not Acceptable in 5.0ms
|
1460
|
+
Processing by DigitalAssetsController#show as HTML
|
1461
|
+
Parameters: {"id"=>"IL1111.077"}
|
1462
|
+
Completed 406 Not Acceptable in 4.0ms
|
1463
|
+
Processing by DigitalAssetsController#show as HTML
|
1464
|
+
Parameters: {"id"=>"id-foobar-permanent-29"}
|
1465
|
+
Completed 406 Not Acceptable in 4.0ms
|
1466
|
+
Processing by DigitalAssetsController#search as HTML
|
1467
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1468
|
+
Processing by DigitalAssetsController#search as HTML
|
1469
|
+
Parameters: {"path"=>"/one/off.path"}
|
1470
|
+
Completed 200 OK in 11.0ms (Views: 10.0ms)
|
1471
|
+
Processing by DigitalAssetsController#search as HTML
|
1472
|
+
Parameters: {"doctype"=>"fact_sheet"}
|
1473
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1474
|
+
Processing by DigitalAssetsController#search as HTML
|
1475
|
+
Parameters: {"doctype"=>["fact_sheet", "prospectus"]}
|
1476
|
+
Completed 200 OK in 10.0ms (Views: 9.0ms)
|
1477
|
+
Processing by DigitalAssetsController#search as HTML
|
1478
|
+
Parameters: {"sami"=>"SOMETHING.001"}
|
1479
|
+
Completed 200 OK in 24.0ms (Views: 23.0ms)
|
1480
|
+
Processing by DigitalAssetsController#search as HTML
|
1481
|
+
Parameters: {"audience"=>"492"}
|
1482
|
+
Completed 200 OK in 27.0ms (Views: 26.0ms)
|
1483
|
+
Processing by DigitalAssetsController#search as HTML
|
1484
|
+
Parameters: {"title"=>"Doc Title"}
|
1485
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|
1486
|
+
Processing by DigitalAssetsController#search as HTML
|
1487
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-51"}
|
1488
|
+
Completed 200 OK in 15.0ms (Views: 14.0ms)
|
1489
|
+
Processing by DigitalAssetsController#search as HTML
|
1490
|
+
Parameters: {"business_owner"=>"biz owner"}
|
1491
|
+
Completed 200 OK in 4.0ms (Views: 3.0ms)
|
1492
|
+
Processing by DigitalAssetsController#search as HTML
|
1493
|
+
Parameters: {"digital_asset_id"=>"id-foobar-permanent-58", "title"=>"Doc Title"}
|
1494
|
+
Completed 200 OK in 27.0ms (Views: 25.0ms)
|
1495
|
+
Processing by DigitalAssetsController#search as HTML
|
1496
|
+
Parameters: {"title"=>"Doc Title", "audiences"=>["investor"], "sami"=>"IL1111.077"}
|
1497
|
+
Completed 200 OK in 40.0ms (Views: 38.0ms)
|
1498
|
+
Processing by DigitalAssetsController#search as HTML
|
1499
|
+
Parameters: {"digital_asset_id"=>"blargh-blargh-blargh", "title"=>"Doc Title"}
|
1500
|
+
Completed 200 OK in 3.0ms (Views: 2.0ms)
|