s33r 0.5.2 → 0.5.3
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.
- data/examples/fores33r/app/controllers/browser_controller.rb +2 -1
- data/examples/fores33r/app/views/browser/_create_bucket.rhtml +2 -2
- data/examples/fores33r/app/views/browser/_upload.rhtml +2 -2
- data/examples/fores33r/config/environment.rb +2 -2
- data/examples/fores33r/config/routes.rb +11 -5
- data/lib/s33r.rb +13 -3
- data/lib/s33r/client.rb +3 -1
- data/lib/s33r/{builder.rb → orderly_xml_markup.rb} +3 -1
- data/lib/s33r/utility.rb +7 -2
- data/test/cases/spec_acl.rb +11 -11
- data/test/cases/spec_bucket_listing.rb +12 -12
- data/test/cases/spec_logging.rb +3 -3
- data/test/cases/spec_s3_object.rb +10 -10
- data/test/cases/spec_utility.rb +46 -39
- data/test/cases/spec_xml.rb +3 -3
- data/test/test_setup.rb +6 -1
- metadata +85 -88
- data/examples/fores33r/log/development.log +0 -3032
- data/examples/fores33r/log/mongrel.log +0 -59
- data/examples/fores33r/tmp/sessions/ruby_sess.75445a6f4154aa9d +0 -0
- data/examples/fores33r/tmp/sessions/ruby_sess.f55f1b0adcf2e2d8 +0 -0
data/test/cases/spec_xml.rb
CHANGED
@@ -9,14 +9,14 @@ context 'LibXML extensions' do
|
|
9
9
|
|
10
10
|
specify 'should make it easy to get an XML::Document from an XML string' do
|
11
11
|
@doc.should_be_an_instance_of XML::Document
|
12
|
-
clean_xml(@doc.to_s).should
|
12
|
+
clean_xml(@doc.to_s).should == clean_xml(@with_xml_str)
|
13
13
|
end
|
14
14
|
|
15
15
|
specify 'should return content of the first node matching a path' do
|
16
|
-
@doc.xget('//Size').should
|
16
|
+
@doc.xget('//Size').should == '14'
|
17
17
|
end
|
18
18
|
|
19
19
|
specify 'should return nil if no matching path' do
|
20
|
-
@doc.xget('//madeup').should
|
20
|
+
@doc.xget('//madeup').should == nil
|
21
21
|
end
|
22
22
|
end
|
data/test/test_setup.rb
CHANGED
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.9.
|
2
|
+
rubygems_version: 0.9.4
|
3
3
|
specification_version: 1
|
4
4
|
name: s33r
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.5.
|
7
|
-
date: 2007-
|
6
|
+
version: 0.5.3
|
7
|
+
date: 2007-10-19 00:00:00 +01:00
|
8
8
|
summary: A library for accessing Amazon S3
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -29,140 +29,137 @@ post_install_message:
|
|
29
29
|
authors:
|
30
30
|
- Elliot Smith
|
31
31
|
files:
|
32
|
-
- examples/fores33r
|
33
32
|
- examples/cli
|
33
|
+
- examples/fores33r
|
34
34
|
- examples/s3.yaml
|
35
|
-
- examples/
|
36
|
-
- examples/
|
37
|
-
- examples/
|
38
|
-
- examples/fores33r/log
|
39
|
-
- examples/fores33r/script
|
40
|
-
- examples/fores33r/config
|
35
|
+
- examples/cli/s3cli.rb
|
36
|
+
- examples/cli/simple.rb
|
37
|
+
- examples/cli/instant_download_server.rb
|
41
38
|
- examples/fores33r/db
|
39
|
+
- examples/fores33r/app
|
42
40
|
- examples/fores33r/doc
|
43
41
|
- examples/fores33r/lib
|
44
|
-
- examples/fores33r/
|
45
|
-
- examples/fores33r/
|
42
|
+
- examples/fores33r/log
|
43
|
+
- examples/fores33r/tmp
|
44
|
+
- examples/fores33r/test
|
46
45
|
- examples/fores33r/Rakefile
|
47
|
-
- examples/fores33r/
|
48
|
-
- examples/fores33r/
|
49
|
-
- examples/fores33r/
|
50
|
-
- examples/fores33r/
|
51
|
-
- examples/fores33r/test/mocks
|
52
|
-
- examples/fores33r/test/test_helper.rb
|
53
|
-
- examples/fores33r/test/mocks/test
|
54
|
-
- examples/fores33r/test/mocks/development
|
55
|
-
- examples/fores33r/app/helpers
|
56
|
-
- examples/fores33r/app/models
|
57
|
-
- examples/fores33r/app/controllers
|
46
|
+
- examples/fores33r/config
|
47
|
+
- examples/fores33r/public
|
48
|
+
- examples/fores33r/script
|
49
|
+
- examples/fores33r/vendor
|
58
50
|
- examples/fores33r/app/views
|
59
|
-
- examples/fores33r/app/
|
60
|
-
- examples/fores33r/app/
|
61
|
-
- examples/fores33r/app/
|
51
|
+
- examples/fores33r/app/controllers
|
52
|
+
- examples/fores33r/app/models
|
53
|
+
- examples/fores33r/app/helpers
|
62
54
|
- examples/fores33r/app/views/layouts
|
63
55
|
- examples/fores33r/app/views/browser
|
64
56
|
- examples/fores33r/app/views/layouts/s3_layout.rhtml
|
65
57
|
- examples/fores33r/app/views/layouts/application.rhtml
|
66
58
|
- examples/fores33r/app/views/browser/s3_index.rhtml
|
67
59
|
- examples/fores33r/app/views/browser/show_bucket.rhtml
|
68
|
-
- examples/fores33r/app/views/browser/index.rhtml
|
69
60
|
- examples/fores33r/app/views/browser/plain_bucket.rhtml
|
70
61
|
- examples/fores33r/app/views/browser/_create_bucket.rhtml
|
62
|
+
- examples/fores33r/app/views/browser/index.rhtml
|
71
63
|
- examples/fores33r/app/views/browser/_upload.rhtml
|
64
|
+
- examples/fores33r/app/controllers/browser_controller.rb
|
65
|
+
- examples/fores33r/app/controllers/application.rb
|
66
|
+
- examples/fores33r/app/helpers/application_helper.rb
|
67
|
+
- examples/fores33r/doc/README_FOR_APP
|
68
|
+
- examples/fores33r/lib/tasks
|
69
|
+
- examples/fores33r/tmp/pids
|
72
70
|
- examples/fores33r/tmp/cache
|
73
|
-
- examples/fores33r/tmp/sessions
|
74
71
|
- examples/fores33r/tmp/sockets
|
75
|
-
- examples/fores33r/tmp/sessions
|
76
|
-
- examples/fores33r/
|
77
|
-
- examples/fores33r/
|
78
|
-
- examples/fores33r/
|
79
|
-
- examples/fores33r/
|
80
|
-
- examples/fores33r/
|
81
|
-
- examples/fores33r/
|
82
|
-
- examples/fores33r/
|
83
|
-
- examples/fores33r/
|
84
|
-
- examples/fores33r/script/destroy
|
85
|
-
- examples/fores33r/script/runner
|
86
|
-
- examples/fores33r/script/about
|
87
|
-
- examples/fores33r/script/generate
|
88
|
-
- examples/fores33r/script/plugin
|
89
|
-
- examples/fores33r/script/performance/benchmarker
|
90
|
-
- examples/fores33r/script/performance/profiler
|
91
|
-
- examples/fores33r/script/process/spawner
|
92
|
-
- examples/fores33r/script/process/reaper
|
93
|
-
- examples/fores33r/config/environments
|
94
|
-
- examples/fores33r/config/environment.rb
|
72
|
+
- examples/fores33r/tmp/sessions
|
73
|
+
- examples/fores33r/test/unit
|
74
|
+
- examples/fores33r/test/mocks
|
75
|
+
- examples/fores33r/test/functional
|
76
|
+
- examples/fores33r/test/fixtures
|
77
|
+
- examples/fores33r/test/integration
|
78
|
+
- examples/fores33r/test/test_helper.rb
|
79
|
+
- examples/fores33r/test/mocks/test
|
80
|
+
- examples/fores33r/test/mocks/development
|
95
81
|
- examples/fores33r/config/routes.rb
|
82
|
+
- examples/fores33r/config/environments
|
96
83
|
- examples/fores33r/config/database.yml
|
84
|
+
- examples/fores33r/config/environment.rb
|
97
85
|
- examples/fores33r/config/boot.rb
|
98
86
|
- examples/fores33r/config/environments/test.rb
|
99
87
|
- examples/fores33r/config/environments/development.rb
|
100
88
|
- examples/fores33r/config/environments/production.rb
|
101
|
-
- examples/fores33r/
|
102
|
-
- examples/fores33r/
|
103
|
-
- examples/fores33r/vendor/plugins
|
104
|
-
- examples/fores33r/public/images
|
105
|
-
- examples/fores33r/public/javascripts
|
89
|
+
- examples/fores33r/public/favicon.ico
|
90
|
+
- examples/fores33r/public/404.html
|
106
91
|
- examples/fores33r/public/stylesheets
|
107
|
-
- examples/fores33r/public/
|
108
|
-
- examples/fores33r/public/dispatch.cgi
|
109
|
-
- examples/fores33r/public/dispatch.rb
|
92
|
+
- examples/fores33r/public/javascripts
|
110
93
|
- examples/fores33r/public/robots.txt
|
94
|
+
- examples/fores33r/public/images
|
95
|
+
- examples/fores33r/public/dispatch.fcgi
|
111
96
|
- examples/fores33r/public/500.html
|
112
|
-
- examples/fores33r/public/
|
113
|
-
- examples/fores33r/public/
|
114
|
-
- examples/fores33r/public/
|
115
|
-
- examples/fores33r/public/javascripts/application.js
|
97
|
+
- examples/fores33r/public/dispatch.rb
|
98
|
+
- examples/fores33r/public/dispatch.cgi
|
99
|
+
- examples/fores33r/public/stylesheets/core.css
|
116
100
|
- examples/fores33r/public/javascripts/prototype.js
|
101
|
+
- examples/fores33r/public/javascripts/controls.js
|
117
102
|
- examples/fores33r/public/javascripts/effects.js
|
118
103
|
- examples/fores33r/public/javascripts/dragdrop.js
|
119
|
-
- examples/fores33r/public/javascripts/
|
120
|
-
- examples/fores33r/public/
|
121
|
-
- examples/
|
122
|
-
- examples/
|
123
|
-
- examples/
|
104
|
+
- examples/fores33r/public/javascripts/application.js
|
105
|
+
- examples/fores33r/public/images/rails.png
|
106
|
+
- examples/fores33r/script/console
|
107
|
+
- examples/fores33r/script/destroy
|
108
|
+
- examples/fores33r/script/about
|
109
|
+
- examples/fores33r/script/generate
|
110
|
+
- examples/fores33r/script/breakpointer
|
111
|
+
- examples/fores33r/script/plugin
|
112
|
+
- examples/fores33r/script/server
|
113
|
+
- examples/fores33r/script/runner
|
114
|
+
- examples/fores33r/script/process
|
115
|
+
- examples/fores33r/script/performance
|
116
|
+
- examples/fores33r/script/process/spawner
|
117
|
+
- examples/fores33r/script/process/reaper
|
118
|
+
- examples/fores33r/script/performance/benchmarker
|
119
|
+
- examples/fores33r/script/performance/profiler
|
120
|
+
- examples/fores33r/vendor/plugins
|
124
121
|
- lib/s33r
|
125
122
|
- lib/s33r.rb
|
126
|
-
- lib/s33r/bucket_listing.rb
|
127
|
-
- lib/s33r/utility.rb
|
128
123
|
- lib/s33r/s3_acl.rb
|
129
|
-
- lib/s33r/
|
130
|
-
- lib/s33r/
|
131
|
-
- lib/s33r/client.rb
|
124
|
+
- lib/s33r/s3_logging.rb
|
125
|
+
- lib/s33r/bucket_listing.rb
|
132
126
|
- lib/s33r/libxml_extensions.rb
|
133
|
-
- lib/s33r/
|
127
|
+
- lib/s33r/networking.rb
|
128
|
+
- lib/s33r/s3_obj.rb
|
134
129
|
- lib/s33r/s33r_exception.rb
|
135
130
|
- lib/s33r/mimetypes.rb
|
131
|
+
- lib/s33r/client.rb
|
136
132
|
- lib/s33r/bucket.rb
|
137
|
-
- lib/s33r/
|
138
|
-
- lib/s33r/
|
139
|
-
-
|
133
|
+
- lib/s33r/s33r_http.rb
|
134
|
+
- lib/s33r/utility.rb
|
135
|
+
- lib/s33r/orderly_xml_markup.rb
|
140
136
|
- test/cases
|
137
|
+
- test/files
|
141
138
|
- test/test_setup.rb
|
139
|
+
- test/cases/spec_acl.rb
|
140
|
+
- test/cases/spec_bucket_listing.rb
|
141
|
+
- test/cases/spec_networking.rb
|
142
|
+
- test/cases/spec_xml.rb
|
143
|
+
- test/cases/spec_s3_object.rb
|
144
|
+
- test/cases/spec_logging.rb
|
145
|
+
- test/cases/spec_utility.rb
|
146
|
+
- test/files/suspect_bucket_listing.xml
|
142
147
|
- test/files/textfile.txt
|
143
|
-
- test/files/
|
148
|
+
- test/files/logging_status_enabled.xml
|
144
149
|
- test/files/bucket_listing2.xml
|
145
|
-
- test/files/config.yaml
|
146
150
|
- test/files/bucket_listing3.xml
|
151
|
+
- test/files/config.yaml
|
152
|
+
- test/files/wave.jpg
|
147
153
|
- test/files/acl.xml
|
148
|
-
- test/files/logging_status_enabled.xml
|
149
|
-
- test/files/logging_acl.xml
|
150
154
|
- test/files/bucket_listing.xml
|
151
155
|
- test/files/bucket_listing_broken.xml
|
152
|
-
- test/files/
|
156
|
+
- test/files/logging_acl.xml
|
157
|
+
- test/files/logging_status_disabled.xml
|
153
158
|
- test/files/acl_grant1.xml
|
154
159
|
- test/files/acl_grant2.xml
|
155
|
-
- test/files/suspect_bucket_listing.xml
|
156
160
|
- test/files/acl_grant3.xml
|
157
161
|
- test/files/acl_grant4.xml
|
158
|
-
- test/files/
|
159
|
-
- test/cases/spec_bucket_listing.rb
|
160
|
-
- test/cases/spec_s3_object.rb
|
161
|
-
- test/cases/spec_logging.rb
|
162
|
-
- test/cases/spec_acl.rb
|
163
|
-
- test/cases/spec_xml.rb
|
164
|
-
- test/cases/spec_utility.rb
|
165
|
-
- test/cases/spec_networking.rb
|
162
|
+
- test/files/s3_object.xml
|
166
163
|
test_files: []
|
167
164
|
|
168
165
|
rdoc_options: []
|
@@ -1,3032 +0,0 @@
|
|
1
|
-
# Logfile created on Mon Jan 08 11:22:37 GMT 2007 by logger.rb/1.5.2.7
|
2
|
-
BrowserController: missing default helper path browser_helper
|
3
|
-
file script/../config/../tmp/sessions//ruby_sess.4b133320578f83a3 not readable
|
4
|
-
/opt/lampp/lib/ruby/1.8/pstore.rb:95:in `initialize'
|
5
|
-
/opt/lampp/lib/ruby/1.8/cgi/session/pstore.rb:70:in `initialize'
|
6
|
-
/opt/lampp/lib/ruby/1.8/cgi/session.rb:273:in `initialize'
|
7
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/cgi_process.rb:112:in `session'
|
8
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/cgi_process.rb:142:in `stale_session_check!'
|
9
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/cgi_process.rb:108:in `session'
|
10
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:918:in `assign_shortcuts_without_flash'
|
11
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/flash.rb:141:in `assign_shortcuts'
|
12
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:402:in `process_without_filters'
|
13
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
14
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
15
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
16
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
17
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
18
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
19
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
20
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
21
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
22
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
23
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
24
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
25
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
26
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
27
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
28
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
29
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
30
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
31
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
32
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
33
|
-
script/server:3
|
34
|
-
BrowserController: missing default helper path browser_helper
|
35
|
-
|
36
|
-
|
37
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:23:14) [GET]
|
38
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
39
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
40
|
-
Rendering within layouts/application
|
41
|
-
Rendering browser/index
|
42
|
-
Rendered browser/_create_bucket (0.00695)
|
43
|
-
Completed in 0.83541 (1 reqs/sec) | Rendering: 0.02453 (2%) | 200 OK [http://localhost/]
|
44
|
-
BrowserController: missing default helper path browser_helper
|
45
|
-
|
46
|
-
|
47
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:23:17) [GET]
|
48
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
49
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
50
|
-
Rendering within layouts/application
|
51
|
-
Rendering browser/show_bucket
|
52
|
-
Rendered browser/_upload (0.00282)
|
53
|
-
Completed in 0.79000 (1 reqs/sec) | Rendering: 0.01043 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
54
|
-
BrowserController: missing default helper path browser_helper
|
55
|
-
|
56
|
-
|
57
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:23:22) [GET]
|
58
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
59
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "resource_key"=>"bad_manners-special_brew.mp3", "action"=>"delete", "controller"=>"browser"}
|
60
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-backup
|
61
|
-
Completed in 0.43023 (2 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-backup/bad_manners-special_brew.mp3]
|
62
|
-
BrowserController: missing default helper path browser_helper
|
63
|
-
|
64
|
-
|
65
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:23:23) [GET]
|
66
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
67
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
68
|
-
Rendering within layouts/application
|
69
|
-
Rendering browser/show_bucket
|
70
|
-
Rendered browser/_upload (0.00148)
|
71
|
-
Completed in 0.40135 (2 reqs/sec) | Rendering: 0.00452 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
72
|
-
BrowserController: missing default helper path browser_helper
|
73
|
-
|
74
|
-
|
75
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:23:26) [GET]
|
76
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
77
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
78
|
-
Rendering within layouts/application
|
79
|
-
Rendering browser/index
|
80
|
-
Rendered browser/_create_bucket (0.00072)
|
81
|
-
Completed in 0.70162 (1 reqs/sec) | Rendering: 0.00596 (0%) | 200 OK [http://localhost/]
|
82
|
-
BrowserController: missing default helper path browser_helper
|
83
|
-
|
84
|
-
|
85
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:23:29) [GET]
|
86
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
87
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
88
|
-
Rendering within layouts/application
|
89
|
-
Rendering browser/show_bucket
|
90
|
-
Rendered browser/_upload (0.00094)
|
91
|
-
Completed in 0.85621 (1 reqs/sec) | Rendering: 0.10709 (12%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
92
|
-
BrowserController: missing default helper path browser_helper
|
93
|
-
|
94
|
-
|
95
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:23:34) [GET]
|
96
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
97
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "resource_key"=>"/home/ell/personal/photos/misc/elliot.jpg", "action"=>"delete", "controller"=>"browser"}
|
98
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-instant-server
|
99
|
-
Completed in 0.44745 (2 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-instant-server/%2Fhome%2Fell%2Fpersonal%2Fphotos%2Fmisc%2Felliot.jpg]
|
100
|
-
BrowserController: missing default helper path browser_helper
|
101
|
-
|
102
|
-
|
103
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:23:34) [GET]
|
104
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
105
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
106
|
-
Rendering within layouts/application
|
107
|
-
Rendering browser/show_bucket
|
108
|
-
Rendered browser/_upload (0.00108)
|
109
|
-
Completed in 0.75365 (1 reqs/sec) | Rendering: 0.00780 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
110
|
-
BrowserController: missing default helper path browser_helper
|
111
|
-
|
112
|
-
|
113
|
-
Processing BrowserController#plain_bucket (for 127.0.0.1 at 2007-01-08 11:23:37) [GET]
|
114
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
115
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"plain_bucket", "controller"=>"browser"}
|
116
|
-
Rendering browser/plain_bucket
|
117
|
-
Completed in 0.74511 (1 reqs/sec) | Rendering: 0.00356 (0%) | 200 OK [http://localhost/plain_bucket/elliotsmith-instant-server/listing.txt]
|
118
|
-
BrowserController: missing default helper path browser_helper
|
119
|
-
|
120
|
-
|
121
|
-
Processing BrowserController#add_index (for 127.0.0.1 at 2007-01-08 11:23:45) [GET]
|
122
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
123
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"add_index", "controller"=>"browser"}
|
124
|
-
Rendering layoutfalseactions3_index within layouts/s3_layout
|
125
|
-
Rendering browser/s3_index
|
126
|
-
Completed in 1.17093 (0 reqs/sec) | Rendering: 0.00496 (0%) | 302 Found [http://localhost/add_index/elliotsmith-instant-server]
|
127
|
-
BrowserController: missing default helper path browser_helper
|
128
|
-
|
129
|
-
|
130
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:23:46) [GET]
|
131
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
132
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
133
|
-
Rendering within layouts/application
|
134
|
-
Rendering browser/show_bucket
|
135
|
-
Rendered browser/_upload (0.00094)
|
136
|
-
Completed in 0.85354 (1 reqs/sec) | Rendering: 0.01461 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
137
|
-
BrowserController: missing default helper path browser_helper
|
138
|
-
|
139
|
-
|
140
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:23:54) [GET]
|
141
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
142
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "resource_key"=>"index.html", "action"=>"delete", "controller"=>"browser"}
|
143
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-instant-server
|
144
|
-
Completed in 0.39222 (2 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-instant-server/index.html]
|
145
|
-
BrowserController: missing default helper path browser_helper
|
146
|
-
|
147
|
-
|
148
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:23:54) [GET]
|
149
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
150
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
151
|
-
Rendering within layouts/application
|
152
|
-
Rendering browser/show_bucket
|
153
|
-
Rendered browser/_upload (0.00074)
|
154
|
-
Completed in 0.69897 (1 reqs/sec) | Rendering: 0.00480 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
155
|
-
BrowserController: missing default helper path browser_helper
|
156
|
-
|
157
|
-
|
158
|
-
Processing BrowserController#upload (for 127.0.0.1 at 2007-01-08 11:24:05) [POST]
|
159
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
160
|
-
Parameters: {"commit"=>"Upload", "action"=>"upload", "upload"=>{"bucket_name"=>"elliotsmith-instant-server", "filename"=>#<File:/tmp/CGI8767.1>}, "controller"=>"browser"}
|
161
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-instant-server
|
162
|
-
Completed in 5.35463 (0 reqs/sec) | 302 Found [http://localhost/browser/upload]
|
163
|
-
BrowserController: missing default helper path browser_helper
|
164
|
-
|
165
|
-
|
166
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:24:10) [GET]
|
167
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
168
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
169
|
-
Rendering within layouts/application
|
170
|
-
Rendering browser/show_bucket
|
171
|
-
Rendered browser/_upload (0.00293)
|
172
|
-
Completed in 2.42945 (0 reqs/sec) | Rendering: 0.01215 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
173
|
-
BrowserController: missing default helper path browser_helper
|
174
|
-
|
175
|
-
|
176
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:24:20) [GET]
|
177
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
178
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "resource_key"=>"CIMG2472.JPG", "action"=>"delete", "controller"=>"browser"}
|
179
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-instant-server
|
180
|
-
Completed in 0.40480 (2 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-instant-server/CIMG2472.JPG]
|
181
|
-
BrowserController: missing default helper path browser_helper
|
182
|
-
|
183
|
-
|
184
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 11:24:21) [GET]
|
185
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
186
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
187
|
-
Rendering within layouts/application
|
188
|
-
Rendering browser/show_bucket
|
189
|
-
Rendered browser/_upload (0.00065)
|
190
|
-
Completed in 0.76710 (1 reqs/sec) | Rendering: 0.00651 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
191
|
-
BrowserController: missing default helper path browser_helper
|
192
|
-
|
193
|
-
|
194
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:24:22) [GET]
|
195
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
196
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
197
|
-
Rendering within layouts/application
|
198
|
-
Rendering browser/index
|
199
|
-
Rendered browser/_create_bucket (0.00060)
|
200
|
-
Completed in 0.80007 (1 reqs/sec) | Rendering: 0.00536 (0%) | 200 OK [http://localhost/]
|
201
|
-
BrowserController: missing default helper path browser_helper
|
202
|
-
|
203
|
-
|
204
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:24:26) [GET]
|
205
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
206
|
-
Parameters: {"bucket_name"=>"elliotsmith-marvellous-bucket", "action"=>"delete", "controller"=>"browser"}
|
207
|
-
Redirected to http://localhost:3000/
|
208
|
-
Completed in 4.34245 (0 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-marvellous-bucket]
|
209
|
-
BrowserController: missing default helper path browser_helper
|
210
|
-
|
211
|
-
|
212
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:24:30) [GET]
|
213
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
214
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
215
|
-
Rendering within layouts/application
|
216
|
-
Rendering browser/index
|
217
|
-
Rendered browser/_create_bucket (0.00106)
|
218
|
-
Completed in 0.78244 (1 reqs/sec) | Rendering: 0.00959 (1%) | 200 OK [http://localhost/]
|
219
|
-
BrowserController: missing default helper path browser_helper
|
220
|
-
|
221
|
-
|
222
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:24:36) [GET]
|
223
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
224
|
-
Parameters: {"bucket_name"=>"nowaythisexistnosiree", "action"=>"delete", "controller"=>"browser"}
|
225
|
-
Redirected to http://localhost:3000/
|
226
|
-
Completed in 0.89373 (1 reqs/sec) | 302 Found [http://localhost/delete/nowaythisexistnosiree]
|
227
|
-
BrowserController: missing default helper path browser_helper
|
228
|
-
|
229
|
-
|
230
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:24:37) [GET]
|
231
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
232
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
233
|
-
Rendering within layouts/application
|
234
|
-
Rendering browser/index
|
235
|
-
Rendered browser/_create_bucket (0.00061)
|
236
|
-
Completed in 0.69239 (1 reqs/sec) | Rendering: 0.00461 (0%) | 200 OK [http://localhost/]
|
237
|
-
BrowserController: missing default helper path browser_helper
|
238
|
-
|
239
|
-
|
240
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-08 11:24:42) [POST]
|
241
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
242
|
-
Parameters: {"commit"=>"Create", "bucket"=>{"name"=>"Hello", "prefix"=>"1"}, "action"=>"create_bucket", "controller"=>"browser"}
|
243
|
-
|
244
|
-
|
245
|
-
NoMethodError (You have a nil object when you didn't expect it!
|
246
|
-
You might have expected an instance of Array.
|
247
|
-
The error occured while evaluating nil.+):
|
248
|
-
/app/controllers/browser_controller.rb:74:in `create_bucket'
|
249
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
250
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
251
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
252
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
253
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
254
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
255
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
256
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
257
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
258
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
259
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
260
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
261
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
262
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
263
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
264
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
265
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
266
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
267
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
268
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
269
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
270
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
271
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
272
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
273
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
274
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
275
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
276
|
-
script/server:3
|
277
|
-
|
278
|
-
|
279
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
280
|
-
BrowserController: missing default helper path browser_helper
|
281
|
-
|
282
|
-
|
283
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-08 11:24:55) [POST]
|
284
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
285
|
-
Parameters: {"commit"=>"Create", "bucket"=>{"name"=>"elliotsmith-charlieboy", "prefix"=>"1"}, "action"=>"create_bucket", "controller"=>"browser"}
|
286
|
-
|
287
|
-
|
288
|
-
NoMethodError (You have a nil object when you didn't expect it!
|
289
|
-
You might have expected an instance of Array.
|
290
|
-
The error occured while evaluating nil.+):
|
291
|
-
/app/controllers/browser_controller.rb:74:in `create_bucket'
|
292
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
293
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
294
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
295
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
296
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
297
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
298
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
299
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
300
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
301
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
302
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
303
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
304
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
305
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
306
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
307
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
308
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
309
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
310
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
311
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
312
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
313
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
314
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
315
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
316
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
317
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
318
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
319
|
-
script/server:3
|
320
|
-
|
321
|
-
|
322
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
323
|
-
BrowserController: missing default helper path browser_helper
|
324
|
-
|
325
|
-
|
326
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-08 11:25:32) [POST]
|
327
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
328
|
-
Parameters: {"commit"=>"Create", "bucket"=>{"name"=>"elliotsmith-charlieboy", "prefix"=>"1"}, "action"=>"create_bucket", "controller"=>"browser"}
|
329
|
-
Redirected to http://localhost:3000/
|
330
|
-
Completed in 0.88056 (1 reqs/sec) | 302 Found [http://localhost/create_bucket]
|
331
|
-
BrowserController: missing default helper path browser_helper
|
332
|
-
|
333
|
-
|
334
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:25:33) [GET]
|
335
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
336
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
337
|
-
Rendering within layouts/application
|
338
|
-
Rendering browser/index
|
339
|
-
Rendered browser/_create_bucket (0.00141)
|
340
|
-
Completed in 0.87086 (1 reqs/sec) | Rendering: 0.01895 (2%) | 200 OK [http://localhost/]
|
341
|
-
BrowserController: missing default helper path browser_helper
|
342
|
-
|
343
|
-
|
344
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:26:22) [GET]
|
345
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
346
|
-
Parameters: {"bucket_name"=>"-elliotsmith-charlieboy", "action"=>"delete", "controller"=>"browser"}
|
347
|
-
Redirected to http://localhost:3000/
|
348
|
-
Completed in 0.83987 (1 reqs/sec) | 302 Found [http://localhost/delete/-elliotsmith-charlieboy]
|
349
|
-
BrowserController: missing default helper path browser_helper
|
350
|
-
|
351
|
-
|
352
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:26:23) [GET]
|
353
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
354
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
355
|
-
Rendering within layouts/application
|
356
|
-
Rendering browser/index
|
357
|
-
Rendered browser/_create_bucket (0.00134)
|
358
|
-
Completed in 0.74600 (1 reqs/sec) | Rendering: 0.01042 (1%) | 200 OK [http://localhost/]
|
359
|
-
BrowserController: missing default helper path browser_helper
|
360
|
-
|
361
|
-
|
362
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-08 11:26:30) [POST]
|
363
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
364
|
-
Parameters: {"commit"=>"Create", "bucket"=>{"name"=>"elliotsmith-spiffing", "prefix"=>"1"}, "action"=>"create_bucket", "controller"=>"browser"}
|
365
|
-
Redirected to http://localhost:3000/
|
366
|
-
Completed in 0.71532 (1 reqs/sec) | 302 Found [http://localhost/create_bucket]
|
367
|
-
BrowserController: missing default helper path browser_helper
|
368
|
-
|
369
|
-
|
370
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:26:31) [GET]
|
371
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
372
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
373
|
-
Rendering within layouts/application
|
374
|
-
Rendering browser/index
|
375
|
-
Rendered browser/_create_bucket (0.00135)
|
376
|
-
Completed in 0.75237 (1 reqs/sec) | Rendering: 0.01067 (1%) | 200 OK [http://localhost/]
|
377
|
-
BrowserController: missing default helper path browser_helper
|
378
|
-
|
379
|
-
|
380
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 11:26:35) [GET]
|
381
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
382
|
-
Parameters: {"bucket_name"=>"elliotsmith-spiffing", "action"=>"delete", "controller"=>"browser"}
|
383
|
-
Redirected to http://localhost:3000/
|
384
|
-
Completed in 1.06202 (0 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-spiffing]
|
385
|
-
BrowserController: missing default helper path browser_helper
|
386
|
-
|
387
|
-
|
388
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 11:26:36) [GET]
|
389
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
390
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
391
|
-
Rendering within layouts/application
|
392
|
-
Rendering browser/index
|
393
|
-
Rendered browser/_create_bucket (0.00137)
|
394
|
-
Completed in 0.71770 (1 reqs/sec) | Rendering: 0.01186 (1%) | 200 OK [http://localhost/]
|
395
|
-
BrowserController: missing default helper path browser_helper
|
396
|
-
|
397
|
-
|
398
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 12:19:33) [GET]
|
399
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
400
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
401
|
-
Rendering within layouts/application
|
402
|
-
Rendering browser/index
|
403
|
-
Rendered browser/_create_bucket (0.01868)
|
404
|
-
Completed in 0.88003 (1 reqs/sec) | Rendering: 0.07322 (8%) | 200 OK [http://localhost/]
|
405
|
-
BrowserController: missing default helper path browser_helper
|
406
|
-
|
407
|
-
|
408
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:19:37) [GET]
|
409
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
410
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
411
|
-
Rendering within layouts/application
|
412
|
-
Rendering browser/show_bucket
|
413
|
-
Rendered browser/_upload (0.00209)
|
414
|
-
Completed in 0.71732 (1 reqs/sec) | Rendering: 0.03987 (5%) | 200 OK [http://localhost/show_bucket/townx.org]
|
415
|
-
BrowserController: missing default helper path browser_helper
|
416
|
-
|
417
|
-
|
418
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 12:21:05) [GET]
|
419
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
420
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
421
|
-
Rendering within layouts/application
|
422
|
-
Rendering browser/index
|
423
|
-
Rendered browser/_create_bucket (0.00134)
|
424
|
-
Completed in 0.72315 (1 reqs/sec) | Rendering: 0.01029 (1%) | 200 OK [http://localhost/]
|
425
|
-
BrowserController: missing default helper path browser_helper
|
426
|
-
|
427
|
-
|
428
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:21:08) [GET]
|
429
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
430
|
-
Parameters: {"bucket_name"=>"elliotsmith-test", "action"=>"show_bucket", "controller"=>"browser"}
|
431
|
-
Rendering within layouts/application
|
432
|
-
Rendering browser/show_bucket
|
433
|
-
Rendered browser/_upload (0.00143)
|
434
|
-
Completed in 0.81581 (1 reqs/sec) | Rendering: 0.00527 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-test]
|
435
|
-
BrowserController: missing default helper path browser_helper
|
436
|
-
|
437
|
-
|
438
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:21:12) [GET]
|
439
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
440
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
441
|
-
Rendering within layouts/application
|
442
|
-
Rendering browser/show_bucket
|
443
|
-
Rendered browser/_upload (0.00146)
|
444
|
-
Completed in 0.77136 (1 reqs/sec) | Rendering: 0.00968 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
445
|
-
BrowserController: missing default helper path browser_helper
|
446
|
-
|
447
|
-
|
448
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 12:21:41) [GET]
|
449
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
450
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
451
|
-
Rendering within layouts/application
|
452
|
-
Rendering browser/index
|
453
|
-
Rendered browser/_create_bucket (0.00166)
|
454
|
-
Completed in 1.20231 (0 reqs/sec) | Rendering: 0.01911 (1%) | 200 OK [http://localhost/]
|
455
|
-
BrowserController: missing default helper path browser_helper
|
456
|
-
|
457
|
-
|
458
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:21:44) [GET]
|
459
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
460
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
461
|
-
Rendering within layouts/application
|
462
|
-
Rendering browser/show_bucket
|
463
|
-
Rendered browser/_upload (0.00205)
|
464
|
-
Completed in 0.72002 (1 reqs/sec) | Rendering: 0.00953 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
465
|
-
BrowserController: missing default helper path browser_helper
|
466
|
-
|
467
|
-
|
468
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:33:31) [GET]
|
469
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
470
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
471
|
-
Rendering within layouts/application
|
472
|
-
Rendering browser/show_bucket
|
473
|
-
Rendered browser/_upload (0.00141)
|
474
|
-
Completed in 0.81837 (1 reqs/sec) | Rendering: 0.01505 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
475
|
-
BrowserController: missing default helper path browser_helper
|
476
|
-
|
477
|
-
|
478
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 12:33:41) [GET]
|
479
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
480
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"my_face", "action"=>"delete", "controller"=>"browser"}
|
481
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
482
|
-
Completed in 0.40292 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/my_face]
|
483
|
-
BrowserController: missing default helper path browser_helper
|
484
|
-
|
485
|
-
|
486
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:33:42) [GET]
|
487
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
488
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
489
|
-
Rendering within layouts/application
|
490
|
-
Rendering browser/show_bucket
|
491
|
-
Rendered browser/_upload (0.00095)
|
492
|
-
Completed in 0.76985 (1 reqs/sec) | Rendering: 0.00508 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
493
|
-
BrowserController: missing default helper path browser_helper
|
494
|
-
|
495
|
-
|
496
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 12:33:45) [GET]
|
497
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
498
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"my_face.jpg", "action"=>"delete", "controller"=>"browser"}
|
499
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
500
|
-
Completed in 0.39504 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/my_face.jpg]
|
501
|
-
BrowserController: missing default helper path browser_helper
|
502
|
-
|
503
|
-
|
504
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:33:45) [GET]
|
505
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
506
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
507
|
-
Rendering within layouts/application
|
508
|
-
Rendering browser/show_bucket
|
509
|
-
Rendered browser/_upload (0.00077)
|
510
|
-
Completed in 0.70528 (1 reqs/sec) | Rendering: 0.00463 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
511
|
-
BrowserController: missing default helper path browser_helper
|
512
|
-
|
513
|
-
|
514
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:36:08) [GET]
|
515
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
516
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
517
|
-
Rendering within layouts/application
|
518
|
-
Rendering browser/show_bucket
|
519
|
-
Rendered browser/_upload (0.00143)
|
520
|
-
Completed in 0.74296 (1 reqs/sec) | Rendering: 0.00976 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
521
|
-
BrowserController: missing default helper path browser_helper
|
522
|
-
|
523
|
-
|
524
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:36:32) [GET]
|
525
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
526
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
527
|
-
Rendering within layouts/application
|
528
|
-
Rendering browser/show_bucket
|
529
|
-
Rendered browser/_upload (0.00145)
|
530
|
-
Completed in 0.94824 (1 reqs/sec) | Rendering: 0.01420 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
531
|
-
BrowserController: missing default helper path browser_helper
|
532
|
-
|
533
|
-
|
534
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:36:52) [GET]
|
535
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
536
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
537
|
-
Rendering within layouts/application
|
538
|
-
Rendering browser/show_bucket
|
539
|
-
Rendered browser/_upload (0.00149)
|
540
|
-
Completed in 0.88171 (1 reqs/sec) | Rendering: 0.01170 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
541
|
-
BrowserController: missing default helper path browser_helper
|
542
|
-
|
543
|
-
|
544
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:40:57) [GET]
|
545
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
546
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
547
|
-
Rendering within layouts/application
|
548
|
-
Rendering browser/show_bucket
|
549
|
-
Rendered browser/_upload (0.00143)
|
550
|
-
Completed in 0.83745 (1 reqs/sec) | Rendering: 0.13011 (15%) | 200 OK [http://localhost/show_bucket/townx.org]
|
551
|
-
BrowserController: missing default helper path browser_helper
|
552
|
-
|
553
|
-
|
554
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 12:43:34) [GET]
|
555
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
556
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"my_face", "action"=>"delete", "controller"=>"browser"}
|
557
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
558
|
-
Completed in 0.40752 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/my_face]
|
559
|
-
BrowserController: missing default helper path browser_helper
|
560
|
-
|
561
|
-
|
562
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:43:35) [GET]
|
563
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
564
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
565
|
-
Rendering within layouts/application
|
566
|
-
Rendering browser/show_bucket
|
567
|
-
Rendered browser/_upload (0.00187)
|
568
|
-
Completed in 0.70989 (1 reqs/sec) | Rendering: 0.00765 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
569
|
-
BrowserController: missing default helper path browser_helper
|
570
|
-
|
571
|
-
|
572
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 12:43:38) [GET]
|
573
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
574
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"/home/ell/personal/photos/misc/radishes.jpg", "action"=>"delete", "controller"=>"browser"}
|
575
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
576
|
-
Completed in 0.37553 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/%2Fhome%2Fell%2Fpersonal%2Fphotos%2Fmisc%2Fradishes.jpg]
|
577
|
-
BrowserController: missing default helper path browser_helper
|
578
|
-
|
579
|
-
|
580
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:43:39) [GET]
|
581
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
582
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
583
|
-
Rendering within layouts/application
|
584
|
-
Rendering browser/show_bucket
|
585
|
-
Rendered browser/_upload (0.00125)
|
586
|
-
Completed in 0.72246 (1 reqs/sec) | Rendering: 0.00410 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
587
|
-
BrowserController: missing default helper path browser_helper
|
588
|
-
|
589
|
-
|
590
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 12:43:41) [GET]
|
591
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
592
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"/home/ell/no_backup/music/new/ar_kane/ar_kane-mars.mp3", "action"=>"delete", "controller"=>"browser"}
|
593
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
594
|
-
Completed in 0.37239 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/%2Fhome%2Fell%2Fno_backup%2Fmusic%2Fnew%2Far_kane%2Far_kane-mars.mp3]
|
595
|
-
BrowserController: missing default helper path browser_helper
|
596
|
-
|
597
|
-
|
598
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:43:42) [GET]
|
599
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
600
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
601
|
-
Rendering within layouts/application
|
602
|
-
Rendering browser/show_bucket
|
603
|
-
Rendered browser/_upload (0.00064)
|
604
|
-
Completed in 0.66201 (1 reqs/sec) | Rendering: 0.00272 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
605
|
-
BrowserController: missing default helper path browser_helper
|
606
|
-
|
607
|
-
|
608
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-08 12:43:45) [GET]
|
609
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
610
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"/home/ell/no_backup/music/new/ar_kane/ar_kane-miles_apart.mp3", "action"=>"delete", "controller"=>"browser"}
|
611
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
612
|
-
Completed in 0.38421 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/%2Fhome%2Fell%2Fno_backup%2Fmusic%2Fnew%2Far_kane%2Far_kane-miles_apart.mp3]
|
613
|
-
BrowserController: missing default helper path browser_helper
|
614
|
-
|
615
|
-
|
616
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:43:45) [GET]
|
617
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
618
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
619
|
-
Rendering within layouts/application
|
620
|
-
Rendering browser/show_bucket
|
621
|
-
Rendered browser/_upload (0.00062)
|
622
|
-
Completed in 0.42699 (2 reqs/sec) | Rendering: 0.00206 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
623
|
-
BrowserController: missing default helper path browser_helper
|
624
|
-
|
625
|
-
|
626
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 12:44:55) [GET]
|
627
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
628
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
629
|
-
Rendering within layouts/application
|
630
|
-
Rendering browser/show_bucket
|
631
|
-
Rendered browser/_upload (0.00146)
|
632
|
-
Completed in 0.73396 (1 reqs/sec) | Rendering: 0.00555 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
633
|
-
BrowserController: missing default helper path browser_helper
|
634
|
-
|
635
|
-
|
636
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:31:40) [GET]
|
637
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
638
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
639
|
-
Rendering within layouts/application
|
640
|
-
Rendering browser/show_bucket
|
641
|
-
Rendered browser/_upload (0.00162)
|
642
|
-
Completed in 0.70272 (1 reqs/sec) | Rendering: 0.00716 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
643
|
-
BrowserController: missing default helper path browser_helper
|
644
|
-
|
645
|
-
|
646
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:32:25) [GET]
|
647
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
648
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
649
|
-
Rendering within layouts/application
|
650
|
-
Rendering browser/show_bucket
|
651
|
-
Rendered browser/_upload (0.02656)
|
652
|
-
Completed in 0.94763 (1 reqs/sec) | Rendering: 0.14614 (15%) | 200 OK [http://localhost/show_bucket/townx.org]
|
653
|
-
BrowserController: missing default helper path browser_helper
|
654
|
-
|
655
|
-
|
656
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:32:32) [GET]
|
657
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
658
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
659
|
-
Rendering within layouts/application
|
660
|
-
Rendering browser/show_bucket
|
661
|
-
Rendered browser/_upload (0.00076)
|
662
|
-
Completed in 0.69928 (1 reqs/sec) | Rendering: 0.00418 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
663
|
-
BrowserController: missing default helper path browser_helper
|
664
|
-
|
665
|
-
|
666
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:33:01) [GET]
|
667
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
668
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
669
|
-
Rendering within layouts/application
|
670
|
-
Rendering browser/show_bucket
|
671
|
-
Rendered browser/_upload (0.00142)
|
672
|
-
Completed in 0.68670 (1 reqs/sec) | Rendering: 0.00710 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
673
|
-
BrowserController: missing default helper path browser_helper
|
674
|
-
|
675
|
-
|
676
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:33:26) [GET]
|
677
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
678
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
679
|
-
Rendering within layouts/application
|
680
|
-
Rendering browser/show_bucket
|
681
|
-
Rendered browser/_upload (0.00143)
|
682
|
-
Completed in 0.70694 (1 reqs/sec) | Rendering: 0.00750 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
683
|
-
BrowserController: missing default helper path browser_helper
|
684
|
-
|
685
|
-
|
686
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:34:25) [GET]
|
687
|
-
Session ID: 1d77535649be7fefc7424f715707d135
|
688
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
689
|
-
Rendering within layouts/application
|
690
|
-
Rendering browser/show_bucket
|
691
|
-
Rendered browser/_upload (0.00141)
|
692
|
-
Completed in 0.76253 (1 reqs/sec) | Rendering: 0.01589 (2%) | 200 OK [http://localhost/show_bucket/townx.org]
|
693
|
-
BrowserController: missing default helper path browser_helper
|
694
|
-
|
695
|
-
|
696
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-08 13:35:02) [GET]
|
697
|
-
Session ID: f53a65f273f735151b1ea72f730af0b8
|
698
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
699
|
-
Rendering within layouts/application
|
700
|
-
Rendering browser/index
|
701
|
-
Rendered browser/_create_bucket (0.00140)
|
702
|
-
Completed in 0.74629 (1 reqs/sec) | Rendering: 0.01899 (2%) | 200 OK [http://localhost/]
|
703
|
-
BrowserController: missing default helper path browser_helper
|
704
|
-
|
705
|
-
|
706
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:35:05) [GET]
|
707
|
-
Session ID: f53a65f273f735151b1ea72f730af0b8
|
708
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
709
|
-
Rendering within layouts/application
|
710
|
-
Rendering browser/show_bucket
|
711
|
-
Rendered browser/_upload (0.00143)
|
712
|
-
Completed in 0.86075 (1 reqs/sec) | Rendering: 0.00713 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
713
|
-
BrowserController: missing default helper path browser_helper
|
714
|
-
|
715
|
-
|
716
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:35:39) [GET]
|
717
|
-
Session ID: f53a65f273f735151b1ea72f730af0b8
|
718
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
719
|
-
Rendering within layouts/application
|
720
|
-
Rendering browser/show_bucket
|
721
|
-
Rendered browser/_upload (0.00142)
|
722
|
-
Completed in 0.69997 (1 reqs/sec) | Rendering: 0.00706 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
723
|
-
BrowserController: missing default helper path browser_helper
|
724
|
-
|
725
|
-
|
726
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 13:36:57) [GET]
|
727
|
-
Session ID: f53a65f273f735151b1ea72f730af0b8
|
728
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
729
|
-
Rendering within layouts/application
|
730
|
-
Rendering browser/show_bucket
|
731
|
-
Rendered browser/_upload (0.00143)
|
732
|
-
Completed in 0.81043 (1 reqs/sec) | Rendering: 0.00834 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
733
|
-
BrowserController: missing default helper path browser_helper
|
734
|
-
|
735
|
-
|
736
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-08 14:08:49) [GET]
|
737
|
-
Session ID: f53a65f273f735151b1ea72f730af0b8
|
738
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
739
|
-
Rendering within layouts/application
|
740
|
-
Rendering browser/show_bucket
|
741
|
-
Rendered browser/_upload (0.00142)
|
742
|
-
Completed in 1.40331 (0 reqs/sec) | Rendering: 0.00868 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
743
|
-
BrowserController: missing default helper path browser_helper
|
744
|
-
|
745
|
-
|
746
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:02:53) [GET]
|
747
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
748
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
749
|
-
|
750
|
-
|
751
|
-
NoMethodError (undefined method `s3_url' for #<S33r::Client:0xb76025a4>):
|
752
|
-
.//../../lib/s33r/networking.rb:67:in `do_request'
|
753
|
-
.//../../lib/s33r/networking.rb:179:in `do_get'
|
754
|
-
.//../../lib/s33r/client.rb:101:in `buckets'
|
755
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
756
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
757
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
758
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
759
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
760
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
761
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
762
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
763
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
764
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
765
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
766
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
767
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
768
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
769
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
770
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
771
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
772
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
773
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
774
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
775
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
776
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
777
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
778
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
779
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
780
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
781
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
782
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
783
|
-
script/server:3
|
784
|
-
|
785
|
-
|
786
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
787
|
-
BrowserController: missing default helper path browser_helper
|
788
|
-
|
789
|
-
|
790
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:04:31) [GET]
|
791
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
792
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
793
|
-
|
794
|
-
|
795
|
-
NoMethodError (undefined method `s3_url' for #<S33r::Client:0xb76025a4>):
|
796
|
-
.//../../lib/s33r/networking.rb:67:in `do_request'
|
797
|
-
.//../../lib/s33r/networking.rb:179:in `do_get'
|
798
|
-
.//../../lib/s33r/client.rb:101:in `buckets'
|
799
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
800
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
801
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
802
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
803
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
804
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
805
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
806
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
807
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
808
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
809
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
810
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
811
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
812
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
813
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
814
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
815
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
816
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
817
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
818
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
819
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
820
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
821
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
822
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
823
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
824
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
825
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
826
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
827
|
-
script/server:3
|
828
|
-
|
829
|
-
|
830
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
831
|
-
BrowserController: missing default helper path browser_helper
|
832
|
-
|
833
|
-
|
834
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:04:38) [GET]
|
835
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
836
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
837
|
-
|
838
|
-
|
839
|
-
NoMethodError (undefined method `s3_url' for #<S33r::Client:0xb76281d0>):
|
840
|
-
.//../../lib/s33r/networking.rb:67:in `do_request'
|
841
|
-
.//../../lib/s33r/networking.rb:179:in `do_get'
|
842
|
-
.//../../lib/s33r/client.rb:102:in `buckets'
|
843
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
844
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
845
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
846
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
847
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
848
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
849
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
850
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
851
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
852
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
853
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
854
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
855
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
856
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
857
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
858
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
859
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
860
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
861
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
862
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
863
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
864
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
865
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
866
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
867
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
868
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
869
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
870
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
871
|
-
script/server:3
|
872
|
-
|
873
|
-
|
874
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
875
|
-
BrowserController: missing default helper path browser_helper
|
876
|
-
|
877
|
-
|
878
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:04:40) [GET]
|
879
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
880
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
881
|
-
|
882
|
-
|
883
|
-
NoMethodError (undefined method `s3_url' for #<S33r::Client:0xb76281d0>):
|
884
|
-
.//../../lib/s33r/networking.rb:67:in `do_request'
|
885
|
-
.//../../lib/s33r/networking.rb:179:in `do_get'
|
886
|
-
.//../../lib/s33r/client.rb:102:in `buckets'
|
887
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
888
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
889
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
890
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
891
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
892
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
893
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
894
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
895
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
896
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
897
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
898
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
899
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
900
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
901
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
902
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
903
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
904
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
905
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
906
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
907
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
908
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
909
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
910
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
911
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
912
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
913
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
914
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
915
|
-
script/server:3
|
916
|
-
|
917
|
-
|
918
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
919
|
-
BrowserController: missing default helper path browser_helper
|
920
|
-
|
921
|
-
|
922
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:06:04) [GET]
|
923
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
924
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
925
|
-
|
926
|
-
|
927
|
-
S33r::S3Exception::KeysIncomplete (Access key or secret access key nil):
|
928
|
-
.//../../lib/s33r/utility.rb:167:in `generate_auth_header_value'
|
929
|
-
.//../../lib/s33r/networking.rb:89:in `do_request'
|
930
|
-
.//../../lib/s33r/networking.rb:179:in `do_get'
|
931
|
-
.//../../lib/s33r/client.rb:103:in `buckets'
|
932
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
933
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
934
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
935
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
936
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
937
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
938
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
939
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
940
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
941
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
942
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
943
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
944
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
945
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
946
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
947
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
948
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
949
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
950
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
951
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
952
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
953
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
954
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
955
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
956
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
957
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
958
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
959
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
960
|
-
script/server:3
|
961
|
-
|
962
|
-
|
963
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
964
|
-
BrowserController: missing default helper path browser_helper
|
965
|
-
|
966
|
-
|
967
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:06:53) [GET]
|
968
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
969
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
970
|
-
Rendering within layouts/application
|
971
|
-
Rendering browser/index
|
972
|
-
|
973
|
-
|
974
|
-
ActionView::TemplateError (undefined method `name' for #<Array:0xb7314560>) on line #7 of app/views/browser/index.rhtml:
|
975
|
-
4: <p><strong>No buckets to list</strong></p>
|
976
|
-
5: <% else %>
|
977
|
-
6: <% for bucket in @buckets %>
|
978
|
-
7: <p><%= link_to bucket.name, :action => 'show_bucket',
|
979
|
-
8: :bucket_name => bucket.name %> | <%= link_to 'delete', {:action => 'delete', :bucket_name => bucket.name},
|
980
|
-
9: :confirm => 'Are you sure you want to delete this bucket?' %></p>
|
981
|
-
10: <% end %>
|
982
|
-
|
983
|
-
#{RAILS_ROOT}/app/views/browser/index.rhtml:7:in `_run_rhtml_browser_index'
|
984
|
-
#{RAILS_ROOT}/app/views/browser/index.rhtml:6:in `_run_rhtml_browser_index'
|
985
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:316:in `compile_and_render_template'
|
986
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:292:in `render_template'
|
987
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:251:in `render_file'
|
988
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:726:in `render_file'
|
989
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:648:in `render_with_no_layout'
|
990
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/layout.rb:245:in `render_without_benchmark'
|
991
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
992
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
993
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
994
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:942:in `perform_action_without_filters'
|
995
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
996
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
997
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
998
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
999
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1000
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1001
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1002
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1003
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1004
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1005
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1006
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1007
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1008
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1009
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1010
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1011
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1012
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1013
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1014
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1015
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1016
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1017
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1018
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1019
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1020
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1021
|
-
script/server:3
|
1022
|
-
|
1023
|
-
|
1024
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1025
|
-
BrowserController: missing default helper path browser_helper
|
1026
|
-
|
1027
|
-
|
1028
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:09:07) [GET]
|
1029
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1030
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1031
|
-
Rendering within layouts/application
|
1032
|
-
Rendering browser/index
|
1033
|
-
|
1034
|
-
|
1035
|
-
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
1036
|
-
You might have expected an instance of Array.
|
1037
|
-
The error occured while evaluating nil.empty?) on line #3 of app/views/browser/index.rhtml:
|
1038
|
-
1: <h2>Buckets</h2>
|
1039
|
-
2:
|
1040
|
-
3: <% if @bucket_names.empty? %>
|
1041
|
-
4: <p><strong>No buckets to list</strong></p>
|
1042
|
-
5: <% else %>
|
1043
|
-
6: <% for name in @bucket_names %>
|
1044
|
-
|
1045
|
-
#{RAILS_ROOT}/app/views/browser/index.rhtml:3:in `_run_rhtml_browser_index'
|
1046
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:316:in `compile_and_render_template'
|
1047
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:292:in `render_template'
|
1048
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:251:in `render_file'
|
1049
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:726:in `render_file'
|
1050
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:648:in `render_with_no_layout'
|
1051
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/layout.rb:245:in `render_without_benchmark'
|
1052
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1053
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1054
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1055
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:942:in `perform_action_without_filters'
|
1056
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
1057
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1058
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1059
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1060
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1061
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1062
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1063
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1064
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1065
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1066
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1067
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1068
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1069
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1070
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1071
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1072
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1073
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1074
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1075
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1076
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1077
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1078
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1079
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1080
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1081
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1082
|
-
script/server:3
|
1083
|
-
|
1084
|
-
|
1085
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1086
|
-
BrowserController: missing default helper path browser_helper
|
1087
|
-
|
1088
|
-
|
1089
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:09:10) [GET]
|
1090
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1091
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1092
|
-
Rendering within layouts/application
|
1093
|
-
Rendering browser/index
|
1094
|
-
|
1095
|
-
|
1096
|
-
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
1097
|
-
You might have expected an instance of Array.
|
1098
|
-
The error occured while evaluating nil.empty?) on line #3 of app/views/browser/index.rhtml:
|
1099
|
-
1: <h2>Buckets</h2>
|
1100
|
-
2:
|
1101
|
-
3: <% if @bucket_names.empty? %>
|
1102
|
-
4: <p><strong>No buckets to list</strong></p>
|
1103
|
-
5: <% else %>
|
1104
|
-
6: <% for name in @bucket_names %>
|
1105
|
-
|
1106
|
-
#{RAILS_ROOT}/app/views/browser/index.rhtml:3:in `_run_rhtml_browser_index'
|
1107
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:316:in `compile_and_render_template'
|
1108
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:292:in `render_template'
|
1109
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:251:in `render_file'
|
1110
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:726:in `render_file'
|
1111
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:648:in `render_with_no_layout'
|
1112
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/layout.rb:245:in `render_without_benchmark'
|
1113
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1114
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1115
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1116
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:942:in `perform_action_without_filters'
|
1117
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
1118
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1119
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1120
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1121
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1122
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1123
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1124
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1125
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1126
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1127
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1128
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1129
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1130
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1131
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1132
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1133
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1134
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1135
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1136
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1137
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1138
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1139
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1140
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1141
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1142
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1143
|
-
script/server:3
|
1144
|
-
|
1145
|
-
|
1146
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1147
|
-
BrowserController: missing default helper path browser_helper
|
1148
|
-
|
1149
|
-
|
1150
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:09:19) [GET]
|
1151
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1152
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1153
|
-
Rendering within layouts/application
|
1154
|
-
Rendering browser/index
|
1155
|
-
Rendered browser/_create_bucket (0.00297)
|
1156
|
-
Completed in 0.81591 (1 reqs/sec) | Rendering: 0.02028 (2%) | 200 OK [http://localhost/]
|
1157
|
-
BrowserController: missing default helper path browser_helper
|
1158
|
-
|
1159
|
-
|
1160
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:09:22) [GET]
|
1161
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1162
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
1163
|
-
|
1164
|
-
|
1165
|
-
NoMethodError (undefined method `keys' for #<S33r::BucketListing:0xb737a75c>):
|
1166
|
-
/app/controllers/browser_controller.rb:92:in `get_bucket_listing'
|
1167
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:399:in `call_filters'
|
1168
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:394:in `call_filters'
|
1169
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:383:in `before_action'
|
1170
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:365:in `perform_action_without_benchmark'
|
1171
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1172
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1173
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1174
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1175
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1176
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1177
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1178
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1179
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1180
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1181
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1182
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1183
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1184
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1185
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1186
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1187
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1188
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1189
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1190
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1191
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1192
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1193
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1194
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1195
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1196
|
-
script/server:3
|
1197
|
-
|
1198
|
-
|
1199
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1200
|
-
BrowserController: missing default helper path browser_helper
|
1201
|
-
|
1202
|
-
|
1203
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:10:11) [GET]
|
1204
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1205
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
1206
|
-
Rendering within layouts/application
|
1207
|
-
Rendering browser/show_bucket
|
1208
|
-
|
1209
|
-
|
1210
|
-
ActionView::TemplateError (uninitialized constant ACCESS_KEY) on line #8 of app/views/browser/show_bucket.rhtml:
|
1211
|
-
5: <%= link_to 'Add index to bucket', :action => 'add_index', :bucket_name => @bucket_name %> ]</p>
|
1212
|
-
6:
|
1213
|
-
7: <% for key in @keys do %>
|
1214
|
-
8: <p><%= link_to key, authenticated_url(@bucket_name, key) %> |
|
1215
|
-
9: <%= link_to 'delete', {:action => 'delete', :bucket_name => @bucket_name,
|
1216
|
-
10: :resource_key => key}, :confirm => 'Are you sure you want to delete this resource?' %>
|
1217
|
-
11: </p>
|
1218
|
-
|
1219
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in `const_missing'
|
1220
|
-
#{RAILS_ROOT}/app/helpers/application_helper.rb:6:in `authenticated_url'
|
1221
|
-
#{RAILS_ROOT}/app/views/browser/show_bucket.rhtml:8:in `_run_rhtml_browser_show_bucket'
|
1222
|
-
#{RAILS_ROOT}/app/views/browser/show_bucket.rhtml:7:in `_run_rhtml_browser_show_bucket'
|
1223
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:316:in `compile_and_render_template'
|
1224
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:292:in `render_template'
|
1225
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:251:in `render_file'
|
1226
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:726:in `render_file'
|
1227
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:648:in `render_with_no_layout'
|
1228
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/layout.rb:245:in `render_without_benchmark'
|
1229
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1230
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1231
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1232
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:942:in `perform_action_without_filters'
|
1233
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
1234
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1235
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1236
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1237
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1238
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1239
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1240
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1241
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1242
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1243
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1244
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1245
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1246
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1247
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1248
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1249
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1250
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1251
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1252
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1253
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1254
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1255
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1256
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1257
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1258
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1259
|
-
script/server:3
|
1260
|
-
|
1261
|
-
|
1262
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1263
|
-
BrowserController: missing default helper path browser_helper
|
1264
|
-
|
1265
|
-
|
1266
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:10:15) [GET]
|
1267
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1268
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
1269
|
-
Rendering within layouts/application
|
1270
|
-
Rendering browser/show_bucket
|
1271
|
-
|
1272
|
-
|
1273
|
-
ActionView::TemplateError (uninitialized constant ACCESS_KEY) on line #8 of app/views/browser/show_bucket.rhtml:
|
1274
|
-
5: <%= link_to 'Add index to bucket', :action => 'add_index', :bucket_name => @bucket_name %> ]</p>
|
1275
|
-
6:
|
1276
|
-
7: <% for key in @keys do %>
|
1277
|
-
8: <p><%= link_to key, authenticated_url(@bucket_name, key) %> |
|
1278
|
-
9: <%= link_to 'delete', {:action => 'delete', :bucket_name => @bucket_name,
|
1279
|
-
10: :resource_key => key}, :confirm => 'Are you sure you want to delete this resource?' %>
|
1280
|
-
11: </p>
|
1281
|
-
|
1282
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in `const_missing'
|
1283
|
-
#{RAILS_ROOT}/app/helpers/application_helper.rb:6:in `authenticated_url'
|
1284
|
-
#{RAILS_ROOT}/app/views/browser/show_bucket.rhtml:8:in `_run_rhtml_browser_show_bucket'
|
1285
|
-
#{RAILS_ROOT}/app/views/browser/show_bucket.rhtml:7:in `_run_rhtml_browser_show_bucket'
|
1286
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:316:in `compile_and_render_template'
|
1287
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:292:in `render_template'
|
1288
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_view/base.rb:251:in `render_file'
|
1289
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:726:in `render_file'
|
1290
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:648:in `render_with_no_layout'
|
1291
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/layout.rb:245:in `render_without_benchmark'
|
1292
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1293
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1294
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:53:in `render'
|
1295
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:942:in `perform_action_without_filters'
|
1296
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
1297
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1298
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1299
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1300
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1301
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1302
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1303
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1304
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1305
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1306
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1307
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1308
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1309
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1310
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1311
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1312
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1313
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1314
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1315
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1316
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1317
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1318
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1319
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1320
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1321
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1322
|
-
script/server:3
|
1323
|
-
|
1324
|
-
|
1325
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1326
|
-
BrowserController: missing default helper path browser_helper
|
1327
|
-
|
1328
|
-
|
1329
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:11:35) [GET]
|
1330
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1331
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
1332
|
-
Rendering within layouts/application
|
1333
|
-
Rendering browser/show_bucket
|
1334
|
-
Rendered browser/_upload (0.00274)
|
1335
|
-
Completed in 0.86899 (1 reqs/sec) | Rendering: 0.01573 (1%) | 200 OK [http://localhost/show_bucket/es-backup]
|
1336
|
-
BrowserController: missing default helper path browser_helper
|
1337
|
-
|
1338
|
-
|
1339
|
-
Processing BrowserController#plain_bucket (for 127.0.0.1 at 2007-01-17 00:11:40) [GET]
|
1340
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1341
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"plain_bucket", "controller"=>"browser"}
|
1342
|
-
Rendering browser/plain_bucket
|
1343
|
-
Completed in 0.84738 (1 reqs/sec) | Rendering: 0.00259 (0%) | 200 OK [http://localhost/plain_bucket/es-backup/listing.txt]
|
1344
|
-
BrowserController: missing default helper path browser_helper
|
1345
|
-
|
1346
|
-
|
1347
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:11:53) [GET]
|
1348
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1349
|
-
Parameters: {"bucket_name"=>"es-backup", "resource_key"=>"/home/ell/personal/photos/misc/radishes.jpg", "action"=>"delete", "controller"=>"browser"}
|
1350
|
-
Redirected to http://localhost:3000/show_bucket/es-backup
|
1351
|
-
Completed in 0.49221 (2 reqs/sec) | 302 Found [http://localhost/delete/es-backup/%2Fhome%2Fell%2Fpersonal%2Fphotos%2Fmisc%2Fradishes.jpg]
|
1352
|
-
BrowserController: missing default helper path browser_helper
|
1353
|
-
|
1354
|
-
|
1355
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:11:54) [GET]
|
1356
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1357
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
1358
|
-
Rendering within layouts/application
|
1359
|
-
Rendering browser/show_bucket
|
1360
|
-
Rendered browser/_upload (0.00148)
|
1361
|
-
Completed in 0.85661 (1 reqs/sec) | Rendering: 0.01234 (1%) | 200 OK [http://localhost/show_bucket/es-backup]
|
1362
|
-
BrowserController: missing default helper path browser_helper
|
1363
|
-
|
1364
|
-
|
1365
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:11:58) [GET]
|
1366
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1367
|
-
Parameters: {"bucket_name"=>"es-backup", "resource_key"=>"boilments", "action"=>"delete", "controller"=>"browser"}
|
1368
|
-
Redirected to http://localhost:3000/show_bucket/es-backup
|
1369
|
-
Completed in 0.55705 (1 reqs/sec) | 302 Found [http://localhost/delete/es-backup/boilments]
|
1370
|
-
BrowserController: missing default helper path browser_helper
|
1371
|
-
|
1372
|
-
|
1373
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:11:58) [GET]
|
1374
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1375
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
1376
|
-
Rendering within layouts/application
|
1377
|
-
Rendering browser/show_bucket
|
1378
|
-
Rendered browser/_upload (0.00145)
|
1379
|
-
Completed in 0.83500 (1 reqs/sec) | Rendering: 0.01001 (1%) | 200 OK [http://localhost/show_bucket/es-backup]
|
1380
|
-
BrowserController: missing default helper path browser_helper
|
1381
|
-
|
1382
|
-
|
1383
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:12:02) [GET]
|
1384
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1385
|
-
Parameters: {"bucket_name"=>"es-backup", "resource_key"=>"hello", "action"=>"delete", "controller"=>"browser"}
|
1386
|
-
Redirected to http://localhost:3000/show_bucket/es-backup
|
1387
|
-
Completed in 0.49821 (2 reqs/sec) | 302 Found [http://localhost/delete/es-backup/hello]
|
1388
|
-
BrowserController: missing default helper path browser_helper
|
1389
|
-
|
1390
|
-
|
1391
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:12:03) [GET]
|
1392
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1393
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
1394
|
-
Rendering within layouts/application
|
1395
|
-
Rendering browser/show_bucket
|
1396
|
-
Rendered browser/_upload (0.00144)
|
1397
|
-
Completed in 0.83476 (1 reqs/sec) | Rendering: 0.01189 (1%) | 200 OK [http://localhost/show_bucket/es-backup]
|
1398
|
-
BrowserController: missing default helper path browser_helper
|
1399
|
-
|
1400
|
-
|
1401
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:12:04) [GET]
|
1402
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1403
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1404
|
-
Rendering within layouts/application
|
1405
|
-
Rendering browser/index
|
1406
|
-
Rendered browser/_create_bucket (0.01276)
|
1407
|
-
Completed in 0.93570 (1 reqs/sec) | Rendering: 0.14342 (15%) | 200 OK [http://localhost/]
|
1408
|
-
BrowserController: missing default helper path browser_helper
|
1409
|
-
|
1410
|
-
|
1411
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:12:09) [GET]
|
1412
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1413
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"delete", "controller"=>"browser"}
|
1414
|
-
Redirected to http://localhost:3000/
|
1415
|
-
Completed in 0.50648 (1 reqs/sec) | 302 Found [http://localhost/delete/es-backup]
|
1416
|
-
BrowserController: missing default helper path browser_helper
|
1417
|
-
|
1418
|
-
|
1419
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:12:09) [GET]
|
1420
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1421
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1422
|
-
Rendering within layouts/application
|
1423
|
-
Rendering browser/index
|
1424
|
-
Rendered browser/_create_bucket (0.00137)
|
1425
|
-
Completed in 0.86379 (1 reqs/sec) | Rendering: 0.02088 (2%) | 200 OK [http://localhost/]
|
1426
|
-
BrowserController: missing default helper path browser_helper
|
1427
|
-
|
1428
|
-
|
1429
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:12:14) [GET]
|
1430
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1431
|
-
Parameters: {"bucket_name"=>"es-backup", "action"=>"delete", "controller"=>"browser"}
|
1432
|
-
Redirected to http://localhost:3000/
|
1433
|
-
Completed in 0.51310 (1 reqs/sec) | 302 Found [http://localhost/delete/es-backup]
|
1434
|
-
BrowserController: missing default helper path browser_helper
|
1435
|
-
|
1436
|
-
|
1437
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:12:15) [GET]
|
1438
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1439
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1440
|
-
Rendering within layouts/application
|
1441
|
-
Rendering browser/index
|
1442
|
-
Rendered browser/_create_bucket (0.00136)
|
1443
|
-
Completed in 0.83433 (1 reqs/sec) | Rendering: 0.01451 (1%) | 200 OK [http://localhost/]
|
1444
|
-
BrowserController: missing default helper path browser_helper
|
1445
|
-
|
1446
|
-
|
1447
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:21:36) [GET]
|
1448
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1449
|
-
Parameters: {"bucket_name"=>"es-backup2", "action"=>"delete", "controller"=>"browser"}
|
1450
|
-
Redirected to http://localhost:3000/
|
1451
|
-
Completed in 5.05714 (0 reqs/sec) | 302 Found [http://localhost/delete/es-backup2]
|
1452
|
-
BrowserController: missing default helper path browser_helper
|
1453
|
-
|
1454
|
-
|
1455
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:21:42) [GET]
|
1456
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1457
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1458
|
-
Rendering within layouts/application
|
1459
|
-
Rendering browser/index
|
1460
|
-
Rendered browser/_create_bucket (0.00289)
|
1461
|
-
Completed in 0.89502 (1 reqs/sec) | Rendering: 0.02233 (2%) | 200 OK [http://localhost/]
|
1462
|
-
BrowserController: missing default helper path browser_helper
|
1463
|
-
|
1464
|
-
|
1465
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:21:46) [GET]
|
1466
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1467
|
-
Parameters: {"bucket_name"=>"es-h", "action"=>"delete", "controller"=>"browser"}
|
1468
|
-
Redirected to http://localhost:3000/
|
1469
|
-
Completed in 1.04946 (0 reqs/sec) | 302 Found [http://localhost/delete/es-h]
|
1470
|
-
BrowserController: missing default helper path browser_helper
|
1471
|
-
|
1472
|
-
|
1473
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:21:48) [GET]
|
1474
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1475
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1476
|
-
Rendering within layouts/application
|
1477
|
-
Rendering browser/index
|
1478
|
-
Rendered browser/_create_bucket (0.00138)
|
1479
|
-
Completed in 0.82048 (1 reqs/sec) | Rendering: 0.01378 (1%) | 200 OK [http://localhost/]
|
1480
|
-
BrowserController: missing default helper path browser_helper
|
1481
|
-
|
1482
|
-
|
1483
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:21:51) [GET]
|
1484
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1485
|
-
Parameters: {"bucket_name"=>"es-hellodd", "action"=>"delete", "controller"=>"browser"}
|
1486
|
-
Redirected to http://localhost:3000/
|
1487
|
-
Completed in 2.26680 (0 reqs/sec) | 302 Found [http://localhost/delete/es-hellodd]
|
1488
|
-
BrowserController: missing default helper path browser_helper
|
1489
|
-
|
1490
|
-
|
1491
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:21:53) [GET]
|
1492
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1493
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1494
|
-
Rendering within layouts/application
|
1495
|
-
Rendering browser/index
|
1496
|
-
Rendered browser/_create_bucket (0.00135)
|
1497
|
-
Completed in 0.85305 (1 reqs/sec) | Rendering: 0.01281 (1%) | 200 OK [http://localhost/]
|
1498
|
-
BrowserController: missing default helper path browser_helper
|
1499
|
-
|
1500
|
-
|
1501
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:21:58) [GET]
|
1502
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1503
|
-
Parameters: {"bucket_name"=>"minaaaaaa", "action"=>"delete", "controller"=>"browser"}
|
1504
|
-
Redirected to http://localhost:3000/
|
1505
|
-
Completed in 1.20810 (0 reqs/sec) | 302 Found [http://localhost/delete/minaaaaaa]
|
1506
|
-
BrowserController: missing default helper path browser_helper
|
1507
|
-
|
1508
|
-
|
1509
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:21:59) [GET]
|
1510
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1511
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1512
|
-
Rendering within layouts/application
|
1513
|
-
Rendering browser/index
|
1514
|
-
Rendered browser/_create_bucket (0.00139)
|
1515
|
-
Completed in 0.82432 (1 reqs/sec) | Rendering: 0.01320 (1%) | 200 OK [http://localhost/]
|
1516
|
-
BrowserController: missing default helper path browser_helper
|
1517
|
-
|
1518
|
-
|
1519
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:22:03) [GET]
|
1520
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1521
|
-
Parameters: {"bucket_name"=>"minkypinky", "action"=>"delete", "controller"=>"browser"}
|
1522
|
-
Redirected to http://localhost:3000/
|
1523
|
-
Completed in 1.08482 (0 reqs/sec) | 302 Found [http://localhost/delete/minkypinky]
|
1524
|
-
BrowserController: missing default helper path browser_helper
|
1525
|
-
|
1526
|
-
|
1527
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:22:04) [GET]
|
1528
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1529
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1530
|
-
Rendering within layouts/application
|
1531
|
-
Rendering browser/index
|
1532
|
-
Rendered browser/_create_bucket (0.00151)
|
1533
|
-
Completed in 0.92422 (1 reqs/sec) | Rendering: 0.01632 (1%) | 200 OK [http://localhost/]
|
1534
|
-
BrowserController: missing default helper path browser_helper
|
1535
|
-
|
1536
|
-
|
1537
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:22:10) [GET]
|
1538
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1539
|
-
Parameters: {"bucket_name"=>"minkypinky", "action"=>"delete", "controller"=>"browser"}
|
1540
|
-
|
1541
|
-
|
1542
|
-
S33r::S3Exception::S3OriginatedException (S3 returned an error
|
1543
|
-
Error code: NoSuchBucket; error message: The specified bucket does not exist):
|
1544
|
-
.//../../lib/s33r/client.rb:185:in `listing'
|
1545
|
-
.//../../lib/s33r/client.rb:197:in `delete_bucket'
|
1546
|
-
/app/controllers/browser_controller.rb:48:in `delete'
|
1547
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
1548
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
1549
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1550
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1551
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1552
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1553
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1554
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1555
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1556
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1557
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1558
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1559
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1560
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1561
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1562
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1563
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1564
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1565
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1566
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1567
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1568
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1569
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1570
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1571
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1572
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1573
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1574
|
-
script/server:3
|
1575
|
-
|
1576
|
-
|
1577
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1578
|
-
BrowserController: missing default helper path browser_helper
|
1579
|
-
|
1580
|
-
|
1581
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:22:15) [GET]
|
1582
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1583
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1584
|
-
Rendering within layouts/application
|
1585
|
-
Rendering browser/index
|
1586
|
-
Rendered browser/_create_bucket (0.00139)
|
1587
|
-
Completed in 0.82931 (1 reqs/sec) | Rendering: 0.01302 (1%) | 200 OK [http://localhost/]
|
1588
|
-
BrowserController: missing default helper path browser_helper
|
1589
|
-
|
1590
|
-
|
1591
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:22:20) [GET]
|
1592
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1593
|
-
Parameters: {"bucket_name"=>"moolaes", "action"=>"delete", "controller"=>"browser"}
|
1594
|
-
Redirected to http://localhost:3000/
|
1595
|
-
Completed in 1.02491 (0 reqs/sec) | 302 Found [http://localhost/delete/moolaes]
|
1596
|
-
BrowserController: missing default helper path browser_helper
|
1597
|
-
|
1598
|
-
|
1599
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:22:21) [GET]
|
1600
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1601
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1602
|
-
Rendering within layouts/application
|
1603
|
-
Rendering browser/index
|
1604
|
-
Rendered browser/_create_bucket (0.00138)
|
1605
|
-
Completed in 0.97821 (1 reqs/sec) | Rendering: 0.13041 (13%) | 200 OK [http://localhost/]
|
1606
|
-
BrowserController: missing default helper path browser_helper
|
1607
|
-
|
1608
|
-
|
1609
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:22:27) [GET]
|
1610
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1611
|
-
Parameters: {"bucket_name"=>"shilts", "action"=>"delete", "controller"=>"browser"}
|
1612
|
-
Redirected to http://localhost:3000/
|
1613
|
-
Completed in 11.16267 (0 reqs/sec) | 302 Found [http://localhost/delete/shilts]
|
1614
|
-
BrowserController: missing default helper path browser_helper
|
1615
|
-
|
1616
|
-
|
1617
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:22:38) [GET]
|
1618
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1619
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1620
|
-
Rendering within layouts/application
|
1621
|
-
Rendering browser/index
|
1622
|
-
Rendered browser/_create_bucket (0.00487)
|
1623
|
-
Completed in 0.82071 (1 reqs/sec) | Rendering: 0.01601 (1%) | 200 OK [http://localhost/]
|
1624
|
-
BrowserController: missing default helper path browser_helper
|
1625
|
-
|
1626
|
-
|
1627
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:22:43) [GET]
|
1628
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1629
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
1630
|
-
Rendering within layouts/application
|
1631
|
-
Rendering browser/show_bucket
|
1632
|
-
Rendered browser/_upload (0.00301)
|
1633
|
-
Completed in 0.96637 (1 reqs/sec) | Rendering: 0.00977 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
1634
|
-
BrowserController: missing default helper path browser_helper
|
1635
|
-
|
1636
|
-
|
1637
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:22:46) [GET]
|
1638
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1639
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1640
|
-
Rendering within layouts/application
|
1641
|
-
Rendering browser/index
|
1642
|
-
Rendered browser/_create_bucket (0.00134)
|
1643
|
-
Completed in 0.80115 (1 reqs/sec) | Rendering: 0.01014 (1%) | 200 OK [http://localhost/]
|
1644
|
-
BrowserController: missing default helper path browser_helper
|
1645
|
-
|
1646
|
-
|
1647
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:22:50) [GET]
|
1648
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1649
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"delete", "controller"=>"browser"}
|
1650
|
-
Redirected to http://localhost:3000/
|
1651
|
-
Completed in 2.93659 (0 reqs/sec) | 302 Found [http://localhost/delete/townx.org]
|
1652
|
-
BrowserController: missing default helper path browser_helper
|
1653
|
-
|
1654
|
-
|
1655
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:22:53) [GET]
|
1656
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1657
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1658
|
-
Rendering within layouts/application
|
1659
|
-
Rendering browser/index
|
1660
|
-
Rendered browser/_create_bucket (0.00138)
|
1661
|
-
Completed in 0.79653 (1 reqs/sec) | Rendering: 0.00975 (1%) | 200 OK [http://localhost/]
|
1662
|
-
BrowserController: missing default helper path browser_helper
|
1663
|
-
|
1664
|
-
|
1665
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-17 00:26:08) [GET]
|
1666
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1667
|
-
Parameters: {"action"=>"create_bucket", "controller"=>"browser"}
|
1668
|
-
|
1669
|
-
|
1670
|
-
NoMethodError (You have a nil object when you didn't expect it!
|
1671
|
-
You might have expected an instance of Array.
|
1672
|
-
The error occured while evaluating nil.[]):
|
1673
|
-
/app/controllers/browser_controller.rb:72:in `create_bucket'
|
1674
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
1675
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
1676
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1677
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1678
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1679
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1680
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1681
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1682
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1683
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1684
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1685
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1686
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1687
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1688
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1689
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1690
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1691
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1692
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1693
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1694
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1695
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1696
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1697
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1698
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1699
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1700
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1701
|
-
script/server:3
|
1702
|
-
|
1703
|
-
|
1704
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1705
|
-
BrowserController: missing default helper path browser_helper
|
1706
|
-
|
1707
|
-
|
1708
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:26:12) [GET]
|
1709
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1710
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1711
|
-
Rendering within layouts/application
|
1712
|
-
Rendering browser/index
|
1713
|
-
Rendered browser/_create_bucket (0.00180)
|
1714
|
-
Completed in 0.80707 (1 reqs/sec) | Rendering: 0.01068 (1%) | 200 OK [http://localhost/]
|
1715
|
-
BrowserController: missing default helper path browser_helper
|
1716
|
-
|
1717
|
-
|
1718
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-17 00:26:16) [POST]
|
1719
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1720
|
-
Parameters: {"commit"=>"Create", "bucket"=>{"name"=>"monkyponky", "prefix"=>"1"}, "action"=>"create_bucket", "controller"=>"browser"}
|
1721
|
-
Redirected to http://localhost:3000/
|
1722
|
-
Completed in 0.82600 (1 reqs/sec) | 302 Found [http://localhost/create_bucket]
|
1723
|
-
BrowserController: missing default helper path browser_helper
|
1724
|
-
|
1725
|
-
|
1726
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:26:17) [GET]
|
1727
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1728
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1729
|
-
Rendering within layouts/application
|
1730
|
-
Rendering browser/index
|
1731
|
-
Rendered browser/_create_bucket (0.00139)
|
1732
|
-
Completed in 0.80934 (1 reqs/sec) | Rendering: 0.01112 (1%) | 200 OK [http://localhost/]
|
1733
|
-
BrowserController: missing default helper path browser_helper
|
1734
|
-
|
1735
|
-
|
1736
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:26:21) [GET]
|
1737
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1738
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1739
|
-
Rendering within layouts/application
|
1740
|
-
Rendering browser/show_bucket
|
1741
|
-
Rendered browser/_upload (0.00291)
|
1742
|
-
Completed in 0.52355 (1 reqs/sec) | Rendering: 0.00827 (1%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1743
|
-
BrowserController: missing default helper path browser_helper
|
1744
|
-
|
1745
|
-
|
1746
|
-
Processing BrowserController#add_index (for 127.0.0.1 at 2007-01-17 00:26:24) [GET]
|
1747
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1748
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"add_index", "controller"=>"browser"}
|
1749
|
-
Rendering layoutfalseactions3_index within layouts/s3_layout
|
1750
|
-
Rendering browser/s3_index
|
1751
|
-
Completed in 6.09735 (0 reqs/sec) | Rendering: 0.00488 (0%) | 302 Found [http://localhost/add_index/monkyponky]
|
1752
|
-
BrowserController: missing default helper path browser_helper
|
1753
|
-
|
1754
|
-
|
1755
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:26:30) [GET]
|
1756
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1757
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1758
|
-
Rendering within layouts/application
|
1759
|
-
Rendering browser/show_bucket
|
1760
|
-
Rendered browser/_upload (0.00152)
|
1761
|
-
Completed in 0.81291 (1 reqs/sec) | Rendering: 0.00538 (0%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1762
|
-
BrowserController: missing default helper path browser_helper
|
1763
|
-
|
1764
|
-
|
1765
|
-
Processing BrowserController#plain_bucket (for 127.0.0.1 at 2007-01-17 00:26:45) [GET]
|
1766
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1767
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"plain_bucket", "controller"=>"browser"}
|
1768
|
-
Rendering browser/plain_bucket
|
1769
|
-
Completed in 0.80083 (1 reqs/sec) | Rendering: 0.00196 (0%) | 200 OK [http://localhost/plain_bucket/monkyponky/listing.txt]
|
1770
|
-
BrowserController: missing default helper path browser_helper
|
1771
|
-
|
1772
|
-
|
1773
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:27:42) [GET]
|
1774
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1775
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1776
|
-
Rendering within layouts/application
|
1777
|
-
Rendering browser/show_bucket
|
1778
|
-
Rendered browser/_upload (0.00148)
|
1779
|
-
Completed in 0.93134 (1 reqs/sec) | Rendering: 0.00618 (0%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1780
|
-
BrowserController: missing default helper path browser_helper
|
1781
|
-
|
1782
|
-
|
1783
|
-
Processing BrowserController#upload (for 127.0.0.1 at 2007-01-17 00:28:01) [POST]
|
1784
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1785
|
-
Parameters: {"commit"=>"Upload", "action"=>"upload", "upload"=>{"bucket_name"=>"monkyponky", "filename"=>#<StringIO:0xb75fef7c>}, "controller"=>"browser"}
|
1786
|
-
Redirected to http://localhost:3000/show_bucket/monkyponky
|
1787
|
-
Completed in 0.75824 (1 reqs/sec) | 302 Found [http://localhost/browser/upload]
|
1788
|
-
BrowserController: missing default helper path browser_helper
|
1789
|
-
|
1790
|
-
|
1791
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:28:02) [GET]
|
1792
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1793
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1794
|
-
Rendering within layouts/application
|
1795
|
-
Rendering browser/show_bucket
|
1796
|
-
Rendered browser/_upload (0.00144)
|
1797
|
-
Completed in 0.82225 (1 reqs/sec) | Rendering: 0.00643 (0%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1798
|
-
BrowserController: missing default helper path browser_helper
|
1799
|
-
|
1800
|
-
|
1801
|
-
Processing BrowserController#add_index (for 127.0.0.1 at 2007-01-17 00:28:10) [GET]
|
1802
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1803
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"add_index", "controller"=>"browser"}
|
1804
|
-
Rendering layoutfalseactions3_index within layouts/s3_layout
|
1805
|
-
Rendering browser/s3_index
|
1806
|
-
Completed in 1.51520 (0 reqs/sec) | Rendering: 0.00242 (0%) | 302 Found [http://localhost/add_index/monkyponky]
|
1807
|
-
BrowserController: missing default helper path browser_helper
|
1808
|
-
|
1809
|
-
|
1810
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:28:11) [GET]
|
1811
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1812
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1813
|
-
Rendering within layouts/application
|
1814
|
-
Rendering browser/show_bucket
|
1815
|
-
Rendered browser/_upload (0.00143)
|
1816
|
-
Completed in 0.84045 (1 reqs/sec) | Rendering: 0.00630 (0%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1817
|
-
BrowserController: missing default helper path browser_helper
|
1818
|
-
|
1819
|
-
|
1820
|
-
Processing BrowserController#plain_bucket (for 127.0.0.1 at 2007-01-17 00:28:14) [GET]
|
1821
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1822
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"plain_bucket", "controller"=>"browser"}
|
1823
|
-
Rendering browser/plain_bucket
|
1824
|
-
Completed in 0.80031 (1 reqs/sec) | Rendering: 0.00199 (0%) | 200 OK [http://localhost/plain_bucket/monkyponky/listing.txt]
|
1825
|
-
BrowserController: missing default helper path browser_helper
|
1826
|
-
|
1827
|
-
|
1828
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:29:02) [GET]
|
1829
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1830
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1831
|
-
Rendering within layouts/application
|
1832
|
-
Rendering browser/show_bucket
|
1833
|
-
Rendered browser/_upload (0.00293)
|
1834
|
-
Completed in 0.81295 (1 reqs/sec) | Rendering: 0.00810 (0%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1835
|
-
BrowserController: missing default helper path browser_helper
|
1836
|
-
|
1837
|
-
|
1838
|
-
Processing BrowserController#upload (for 127.0.0.1 at 2007-01-17 00:29:09) [POST]
|
1839
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1840
|
-
Parameters: {"commit"=>"Upload", "action"=>"upload", "upload"=>{"bucket_name"=>"monkyponky", "filename"=>#<StringIO:0xb74a8c40>}, "controller"=>"browser"}
|
1841
|
-
Redirected to http://localhost:3000/show_bucket/monkyponky
|
1842
|
-
Completed in 0.59915 (1 reqs/sec) | 302 Found [http://localhost/browser/upload]
|
1843
|
-
BrowserController: missing default helper path browser_helper
|
1844
|
-
|
1845
|
-
|
1846
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:29:10) [GET]
|
1847
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1848
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1849
|
-
Rendering within layouts/application
|
1850
|
-
Rendering browser/show_bucket
|
1851
|
-
Rendered browser/_upload (0.00148)
|
1852
|
-
Completed in 0.80865 (1 reqs/sec) | Rendering: 0.00778 (0%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1853
|
-
BrowserController: missing default helper path browser_helper
|
1854
|
-
|
1855
|
-
|
1856
|
-
Processing BrowserController#plain_bucket (for 127.0.0.1 at 2007-01-17 00:29:12) [GET]
|
1857
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1858
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"plain_bucket", "controller"=>"browser"}
|
1859
|
-
Rendering browser/plain_bucket
|
1860
|
-
Completed in 0.79536 (1 reqs/sec) | Rendering: 0.00230 (0%) | 200 OK [http://localhost/plain_bucket/monkyponky/listing.txt]
|
1861
|
-
BrowserController: missing default helper path browser_helper
|
1862
|
-
|
1863
|
-
|
1864
|
-
Processing BrowserController#add_index (for 127.0.0.1 at 2007-01-17 00:29:15) [GET]
|
1865
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1866
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"add_index", "controller"=>"browser"}
|
1867
|
-
Rendering layoutfalseactions3_index within layouts/s3_layout
|
1868
|
-
Rendering browser/s3_index
|
1869
|
-
Completed in 1.42214 (0 reqs/sec) | Rendering: 0.00283 (0%) | 302 Found [http://localhost/add_index/monkyponky]
|
1870
|
-
BrowserController: missing default helper path browser_helper
|
1871
|
-
|
1872
|
-
|
1873
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:29:17) [GET]
|
1874
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1875
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"show_bucket", "controller"=>"browser"}
|
1876
|
-
Rendering within layouts/application
|
1877
|
-
Rendering browser/show_bucket
|
1878
|
-
Rendered browser/_upload (0.00147)
|
1879
|
-
Completed in 0.80822 (1 reqs/sec) | Rendering: 0.01171 (1%) | 200 OK [http://localhost/show_bucket/monkyponky]
|
1880
|
-
BrowserController: missing default helper path browser_helper
|
1881
|
-
|
1882
|
-
|
1883
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:29:27) [GET]
|
1884
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1885
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1886
|
-
Rendering within layouts/application
|
1887
|
-
Rendering browser/index
|
1888
|
-
Rendered browser/_create_bucket (0.00137)
|
1889
|
-
Completed in 0.81792 (1 reqs/sec) | Rendering: 0.01564 (1%) | 200 OK [http://localhost/]
|
1890
|
-
BrowserController: missing default helper path browser_helper
|
1891
|
-
|
1892
|
-
|
1893
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:29:33) [GET]
|
1894
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1895
|
-
Parameters: {"bucket_name"=>"es-h", "action"=>"delete", "controller"=>"browser"}
|
1896
|
-
|
1897
|
-
|
1898
|
-
S33r::S3Exception::S3OriginatedException (S3 returned an error
|
1899
|
-
Error code: NoSuchBucket; error message: The specified bucket does not exist):
|
1900
|
-
.//../../lib/s33r/client.rb:185:in `listing'
|
1901
|
-
.//../../lib/s33r/client.rb:197:in `delete_bucket'
|
1902
|
-
/app/controllers/browser_controller.rb:48:in `delete'
|
1903
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
1904
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
1905
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1906
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1907
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
1908
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
1909
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
1910
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
1911
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
1912
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
1913
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
1914
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
1915
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
1916
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
1917
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
1918
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
1919
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
1920
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
1921
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
1922
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
1923
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
1924
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
1925
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1926
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1927
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
1928
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
1929
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
1930
|
-
script/server:3
|
1931
|
-
|
1932
|
-
|
1933
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1934
|
-
BrowserController: missing default helper path browser_helper
|
1935
|
-
|
1936
|
-
|
1937
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:29:37) [GET]
|
1938
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1939
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1940
|
-
Rendering within layouts/application
|
1941
|
-
Rendering browser/index
|
1942
|
-
Rendered browser/_create_bucket (0.00136)
|
1943
|
-
Completed in 0.80205 (1 reqs/sec) | Rendering: 0.01012 (1%) | 200 OK [http://localhost/]
|
1944
|
-
BrowserController: missing default helper path browser_helper
|
1945
|
-
|
1946
|
-
|
1947
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:29:44) [GET]
|
1948
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1949
|
-
Parameters: {"bucket_name"=>"monkyponky", "action"=>"delete", "controller"=>"browser"}
|
1950
|
-
Redirected to http://localhost:3000/
|
1951
|
-
Completed in 13.34052 (0 reqs/sec) | 302 Found [http://localhost/delete/monkyponky]
|
1952
|
-
BrowserController: missing default helper path browser_helper
|
1953
|
-
|
1954
|
-
|
1955
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:29:58) [GET]
|
1956
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1957
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1958
|
-
Rendering within layouts/application
|
1959
|
-
Rendering browser/index
|
1960
|
-
Rendered browser/_create_bucket (0.00138)
|
1961
|
-
Completed in 0.92580 (1 reqs/sec) | Rendering: 0.00960 (1%) | 200 OK [http://localhost/]
|
1962
|
-
BrowserController: missing default helper path browser_helper
|
1963
|
-
|
1964
|
-
|
1965
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:30:54) [GET]
|
1966
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1967
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1968
|
-
Rendering within layouts/application
|
1969
|
-
Rendering browser/index
|
1970
|
-
Rendered browser/_create_bucket (0.00152)
|
1971
|
-
Completed in 0.80604 (1 reqs/sec) | Rendering: 0.01130 (1%) | 200 OK [http://localhost/]
|
1972
|
-
BrowserController: missing default helper path browser_helper
|
1973
|
-
|
1974
|
-
|
1975
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-17 00:30:59) [POST]
|
1976
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1977
|
-
Parameters: {"commit"=>"Create", "bucket"=>{"name"=>"cont", "prefix"=>"1"}, "action"=>"create_bucket", "controller"=>"browser"}
|
1978
|
-
Redirected to http://localhost:3000/
|
1979
|
-
Completed in 0.81952 (1 reqs/sec) | 302 Found [http://localhost/create_bucket]
|
1980
|
-
BrowserController: missing default helper path browser_helper
|
1981
|
-
|
1982
|
-
|
1983
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:31:00) [GET]
|
1984
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1985
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
1986
|
-
Rendering within layouts/application
|
1987
|
-
Rendering browser/index
|
1988
|
-
Rendered browser/_create_bucket (0.00151)
|
1989
|
-
Completed in 0.89759 (1 reqs/sec) | Rendering: 0.01140 (1%) | 200 OK [http://localhost/]
|
1990
|
-
BrowserController: missing default helper path browser_helper
|
1991
|
-
|
1992
|
-
|
1993
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 00:31:03) [GET]
|
1994
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
1995
|
-
Parameters: {"bucket_name"=>"elliotsmith-cont", "action"=>"show_bucket", "controller"=>"browser"}
|
1996
|
-
Rendering within layouts/application
|
1997
|
-
Rendering browser/show_bucket
|
1998
|
-
Rendered browser/_upload (0.00520)
|
1999
|
-
Completed in 0.72501 (1 reqs/sec) | Rendering: 0.13092 (18%) | 200 OK [http://localhost/show_bucket/elliotsmith-cont]
|
2000
|
-
BrowserController: missing default helper path browser_helper
|
2001
|
-
|
2002
|
-
|
2003
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:31:07) [GET]
|
2004
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2005
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2006
|
-
Rendering within layouts/application
|
2007
|
-
Rendering browser/index
|
2008
|
-
Rendered browser/_create_bucket (0.00138)
|
2009
|
-
Completed in 0.80289 (1 reqs/sec) | Rendering: 0.01061 (1%) | 200 OK [http://localhost/]
|
2010
|
-
BrowserController: missing default helper path browser_helper
|
2011
|
-
|
2012
|
-
|
2013
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 00:31:11) [GET]
|
2014
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2015
|
-
Parameters: {"bucket_name"=>"elliotsmith-cont", "action"=>"delete", "controller"=>"browser"}
|
2016
|
-
Redirected to http://localhost:3000/
|
2017
|
-
Completed in 1.38161 (0 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-cont]
|
2018
|
-
BrowserController: missing default helper path browser_helper
|
2019
|
-
|
2020
|
-
|
2021
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:31:12) [GET]
|
2022
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2023
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2024
|
-
Rendering within layouts/application
|
2025
|
-
Rendering browser/index
|
2026
|
-
Rendered browser/_create_bucket (0.00137)
|
2027
|
-
Completed in 0.80405 (1 reqs/sec) | Rendering: 0.00988 (1%) | 200 OK [http://localhost/]
|
2028
|
-
BrowserController: missing default helper path browser_helper
|
2029
|
-
|
2030
|
-
|
2031
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 00:31:17) [GET]
|
2032
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2033
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2034
|
-
Rendering within layouts/application
|
2035
|
-
Rendering browser/index
|
2036
|
-
Rendered browser/_create_bucket (0.00136)
|
2037
|
-
Completed in 0.79300 (1 reqs/sec) | Rendering: 0.00976 (1%) | 200 OK [http://localhost/]
|
2038
|
-
BrowserController: missing default helper path browser_helper
|
2039
|
-
|
2040
|
-
|
2041
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 01:12:40) [GET]
|
2042
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2043
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2044
|
-
Rendering within layouts/application
|
2045
|
-
Rendering browser/index
|
2046
|
-
Rendered browser/_create_bucket (0.00148)
|
2047
|
-
Completed in 0.81345 (1 reqs/sec) | Rendering: 0.00909 (1%) | 200 OK [http://localhost/]
|
2048
|
-
BrowserController: missing default helper path browser_helper
|
2049
|
-
|
2050
|
-
|
2051
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 01:12:42) [GET]
|
2052
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2053
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2054
|
-
Rendering within layouts/application
|
2055
|
-
Rendering browser/show_bucket
|
2056
|
-
Rendered browser/_upload (0.00185)
|
2057
|
-
Completed in 0.51186 (1 reqs/sec) | Rendering: 0.00543 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2058
|
-
BrowserController: missing default helper path browser_helper
|
2059
|
-
|
2060
|
-
|
2061
|
-
Processing BrowserController#upload (for 127.0.0.1 at 2007-01-17 01:12:49) [POST]
|
2062
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2063
|
-
Parameters: {"commit"=>"Upload", "action"=>"upload", "upload"=>{"bucket_name"=>"elliotsmith-backup", "filename"=>#<StringIO:0xb75a2404>}, "controller"=>"browser"}
|
2064
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-backup
|
2065
|
-
Completed in 0.88902 (1 reqs/sec) | 302 Found [http://localhost/browser/upload]
|
2066
|
-
BrowserController: missing default helper path browser_helper
|
2067
|
-
|
2068
|
-
|
2069
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 01:12:50) [GET]
|
2070
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2071
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2072
|
-
Rendering within layouts/application
|
2073
|
-
Rendering browser/show_bucket
|
2074
|
-
Rendered browser/_upload (0.00144)
|
2075
|
-
Completed in 3.86646 (0 reqs/sec) | Rendering: 0.00555 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2076
|
-
BrowserController: missing default helper path browser_helper
|
2077
|
-
|
2078
|
-
|
2079
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 01:13:04) [GET]
|
2080
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2081
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2082
|
-
Rendering within layouts/application
|
2083
|
-
Rendering browser/index
|
2084
|
-
Rendered browser/_create_bucket (0.00407)
|
2085
|
-
Completed in 0.82850 (1 reqs/sec) | Rendering: 0.02314 (2%) | 200 OK [http://localhost/]
|
2086
|
-
BrowserController: missing default helper path browser_helper
|
2087
|
-
|
2088
|
-
|
2089
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 01:13:09) [GET]
|
2090
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2091
|
-
Parameters: {"bucket_name"=>"elliotsmith-marvellous-bucket", "action"=>"show_bucket", "controller"=>"browser"}
|
2092
|
-
Rendering within layouts/application
|
2093
|
-
Rendering browser/show_bucket
|
2094
|
-
Rendered browser/_upload (0.00144)
|
2095
|
-
Completed in 0.84083 (1 reqs/sec) | Rendering: 0.01334 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-marvellous-bucket]
|
2096
|
-
BrowserController: missing default helper path browser_helper
|
2097
|
-
|
2098
|
-
|
2099
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 01:13:15) [GET]
|
2100
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2101
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2102
|
-
Rendering within layouts/application
|
2103
|
-
Rendering browser/index
|
2104
|
-
Rendered browser/_create_bucket (0.00138)
|
2105
|
-
Completed in 0.79930 (1 reqs/sec) | Rendering: 0.01129 (1%) | 200 OK [http://localhost/]
|
2106
|
-
BrowserController: missing default helper path browser_helper
|
2107
|
-
|
2108
|
-
|
2109
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 01:13:19) [GET]
|
2110
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2111
|
-
Parameters: {"bucket_name"=>"elliotsmith-marvellous-bucket", "action"=>"delete", "controller"=>"browser"}
|
2112
|
-
Redirected to http://localhost:3000/
|
2113
|
-
Completed in 5.93687 (0 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-marvellous-bucket]
|
2114
|
-
BrowserController: missing default helper path browser_helper
|
2115
|
-
|
2116
|
-
|
2117
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 01:13:25) [GET]
|
2118
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2119
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2120
|
-
Rendering within layouts/application
|
2121
|
-
Rendering browser/index
|
2122
|
-
Rendered browser/_create_bucket (0.00161)
|
2123
|
-
Completed in 0.92870 (1 reqs/sec) | Rendering: 0.01094 (1%) | 200 OK [http://localhost/]
|
2124
|
-
BrowserController: missing default helper path browser_helper
|
2125
|
-
|
2126
|
-
|
2127
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 01:13:27) [GET]
|
2128
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2129
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"show_bucket", "controller"=>"browser"}
|
2130
|
-
Rendering within layouts/application
|
2131
|
-
Rendering browser/show_bucket
|
2132
|
-
Rendered browser/_upload (0.00147)
|
2133
|
-
Completed in 0.85277 (1 reqs/sec) | Rendering: 0.01049 (1%) | 200 OK [http://localhost/show_bucket/elliotsmith-instant-server]
|
2134
|
-
BrowserController: missing default helper path browser_helper
|
2135
|
-
|
2136
|
-
|
2137
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 01:13:30) [GET]
|
2138
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2139
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2140
|
-
Rendering within layouts/application
|
2141
|
-
Rendering browser/index
|
2142
|
-
Rendered browser/_create_bucket (0.00135)
|
2143
|
-
Completed in 0.86682 (1 reqs/sec) | Rendering: 0.01014 (1%) | 200 OK [http://localhost/]
|
2144
|
-
BrowserController: missing default helper path browser_helper
|
2145
|
-
|
2146
|
-
|
2147
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 01:13:34) [GET]
|
2148
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2149
|
-
Parameters: {"bucket_name"=>"elliotsmith-instant-server", "action"=>"delete", "controller"=>"browser"}
|
2150
|
-
Redirected to http://localhost:3000/
|
2151
|
-
Completed in 4.13189 (0 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-instant-server]
|
2152
|
-
BrowserController: missing default helper path browser_helper
|
2153
|
-
|
2154
|
-
|
2155
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 01:13:38) [GET]
|
2156
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2157
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2158
|
-
Rendering within layouts/application
|
2159
|
-
Rendering browser/index
|
2160
|
-
Rendered browser/_create_bucket (0.00135)
|
2161
|
-
Completed in 0.80076 (1 reqs/sec) | Rendering: 0.00957 (1%) | 200 OK [http://localhost/]
|
2162
|
-
BrowserController: missing default helper path browser_helper
|
2163
|
-
|
2164
|
-
|
2165
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-17 01:13:42) [GET]
|
2166
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2167
|
-
Parameters: {"bucket_name"=>"es-test", "action"=>"delete", "controller"=>"browser"}
|
2168
|
-
Redirected to http://localhost:3000/
|
2169
|
-
Completed in 3.93010 (0 reqs/sec) | 302 Found [http://localhost/delete/es-test]
|
2170
|
-
BrowserController: missing default helper path browser_helper
|
2171
|
-
|
2172
|
-
|
2173
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 01:13:46) [GET]
|
2174
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2175
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2176
|
-
Rendering within layouts/application
|
2177
|
-
Rendering browser/index
|
2178
|
-
Rendered browser/_create_bucket (0.00137)
|
2179
|
-
Completed in 0.79921 (1 reqs/sec) | Rendering: 0.00923 (1%) | 200 OK [http://localhost/]
|
2180
|
-
BrowserController: missing default helper path browser_helper
|
2181
|
-
|
2182
|
-
|
2183
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 11:20:34) [GET]
|
2184
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2185
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2186
|
-
Rendering within layouts/application
|
2187
|
-
Rendering browser/index
|
2188
|
-
Rendered browser/_create_bucket (0.00148)
|
2189
|
-
Completed in 0.71708 (1 reqs/sec) | Rendering: 0.01062 (1%) | 200 OK [http://localhost/]
|
2190
|
-
BrowserController: missing default helper path browser_helper
|
2191
|
-
|
2192
|
-
|
2193
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 11:20:36) [GET]
|
2194
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2195
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2196
|
-
Rendering within layouts/application
|
2197
|
-
Rendering browser/show_bucket
|
2198
|
-
Rendered browser/_upload (0.00160)
|
2199
|
-
Completed in 0.68385 (1 reqs/sec) | Rendering: 0.00559 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2200
|
-
BrowserController: missing default helper path browser_helper
|
2201
|
-
|
2202
|
-
|
2203
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 11:20:40) [GET]
|
2204
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2205
|
-
Parameters: {"bucket_name"=>"es-logs", "action"=>"show_bucket", "controller"=>"browser"}
|
2206
|
-
Rendering within layouts/application
|
2207
|
-
Rendering browser/show_bucket
|
2208
|
-
Rendered browser/_upload (0.00091)
|
2209
|
-
Completed in 0.58937 (1 reqs/sec) | Rendering: 0.02200 (3%) | 200 OK [http://localhost/show_bucket/es-logs]
|
2210
|
-
BrowserController: missing default helper path browser_helper
|
2211
|
-
|
2212
|
-
|
2213
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 11:21:09) [GET]
|
2214
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2215
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2216
|
-
Rendering within layouts/application
|
2217
|
-
Rendering browser/index
|
2218
|
-
Rendered browser/_create_bucket (0.00141)
|
2219
|
-
Completed in 0.76567 (1 reqs/sec) | Rendering: 0.00896 (1%) | 200 OK [http://localhost/]
|
2220
|
-
BrowserController: missing default helper path browser_helper
|
2221
|
-
|
2222
|
-
|
2223
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 11:21:12) [GET]
|
2224
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2225
|
-
Parameters: {"bucket_name"=>"moochlabs.com", "action"=>"show_bucket", "controller"=>"browser"}
|
2226
|
-
Rendering within layouts/application
|
2227
|
-
Rendering browser/show_bucket
|
2228
|
-
Rendered browser/_upload (0.00142)
|
2229
|
-
Completed in 0.41175 (2 reqs/sec) | Rendering: 0.00438 (1%) | 200 OK [http://localhost/show_bucket/moochlabs.com]
|
2230
|
-
BrowserController: missing default helper path browser_helper
|
2231
|
-
|
2232
|
-
|
2233
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 11:21:15) [GET]
|
2234
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2235
|
-
Parameters: {"bucket_name"=>"openadvantage", "action"=>"show_bucket", "controller"=>"browser"}
|
2236
|
-
Rendering within layouts/application
|
2237
|
-
Rendering browser/show_bucket
|
2238
|
-
Rendered browser/_upload (0.00149)
|
2239
|
-
Completed in 0.38467 (2 reqs/sec) | Rendering: 0.00451 (1%) | 200 OK [http://localhost/show_bucket/openadvantage]
|
2240
|
-
BrowserController: missing default helper path browser_helper
|
2241
|
-
|
2242
|
-
|
2243
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 11:21:18) [GET]
|
2244
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2245
|
-
Parameters: {"bucket_name"=>"openadvantage.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2246
|
-
Rendering within layouts/application
|
2247
|
-
Rendering browser/show_bucket
|
2248
|
-
Rendered browser/_upload (0.00148)
|
2249
|
-
Completed in 0.46058 (2 reqs/sec) | Rendering: 0.00451 (0%) | 200 OK [http://localhost/show_bucket/openadvantage.org]
|
2250
|
-
BrowserController: missing default helper path browser_helper
|
2251
|
-
|
2252
|
-
|
2253
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 11:21:21) [GET]
|
2254
|
-
Session ID: 6f0ca268a7cf5f839a1f9b93f814ce7e
|
2255
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2256
|
-
Rendering within layouts/application
|
2257
|
-
Rendering browser/show_bucket
|
2258
|
-
Rendered browser/_upload (0.00143)
|
2259
|
-
Completed in 0.72835 (1 reqs/sec) | Rendering: 0.01473 (2%) | 200 OK [http://localhost/show_bucket/townx.org]
|
2260
|
-
BrowserController: missing default helper path browser_helper
|
2261
|
-
|
2262
|
-
|
2263
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-17 19:52:11) [GET]
|
2264
|
-
Session ID: fef5c8088669b1d4840591e420f21f88
|
2265
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2266
|
-
Rendering within layouts/application
|
2267
|
-
Rendering browser/index
|
2268
|
-
Rendered browser/_create_bucket (0.00184)
|
2269
|
-
Completed in 1.20525 (0 reqs/sec) | Rendering: 0.00910 (0%) | 200 OK [http://localhost/]
|
2270
|
-
BrowserController: missing default helper path browser_helper
|
2271
|
-
|
2272
|
-
|
2273
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-17 19:52:14) [GET]
|
2274
|
-
Session ID: fef5c8088669b1d4840591e420f21f88
|
2275
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2276
|
-
Rendering within layouts/application
|
2277
|
-
Rendering browser/show_bucket
|
2278
|
-
Rendered browser/_upload (0.00179)
|
2279
|
-
Completed in 0.94319 (1 reqs/sec) | Rendering: 0.00588 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2280
|
-
BrowserController: missing default helper path browser_helper
|
2281
|
-
|
2282
|
-
|
2283
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 09:26:29) [GET]
|
2284
|
-
Session ID: fef5c8088669b1d4840591e420f21f88
|
2285
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2286
|
-
Rendering within layouts/application
|
2287
|
-
Rendering browser/index
|
2288
|
-
Rendered browser/_create_bucket (0.00285)
|
2289
|
-
Completed in 0.77938 (1 reqs/sec) | Rendering: 0.01656 (2%) | 200 OK [http://localhost/]
|
2290
|
-
BrowserController: missing default helper path browser_helper
|
2291
|
-
|
2292
|
-
|
2293
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:22:05) [GET]
|
2294
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2295
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2296
|
-
|
2297
|
-
|
2298
|
-
NoMethodError (undefined method `s3_url' for #<S33r::Client:0xb76689a8>):
|
2299
|
-
.//../../lib/s33r/networking.rb:53:in `do_request'
|
2300
|
-
.//../../lib/s33r/networking.rb:165:in `do_get'
|
2301
|
-
.//../../lib/s33r/client.rb:93:in `buckets'
|
2302
|
-
.//../../lib/s33r/client.rb:117:in `bucket_names'
|
2303
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
2304
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
2305
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
2306
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2307
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2308
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2309
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2310
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2311
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2312
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2313
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2314
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2315
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2316
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2317
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2318
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2319
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2320
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2321
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2322
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2323
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2324
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2325
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2326
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2327
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2328
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2329
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2330
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2331
|
-
script/server:3
|
2332
|
-
|
2333
|
-
|
2334
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2335
|
-
BrowserController: missing default helper path browser_helper
|
2336
|
-
|
2337
|
-
|
2338
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:22:25) [GET]
|
2339
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2340
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2341
|
-
|
2342
|
-
|
2343
|
-
NameError (/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in `const_missing': uninitialized constant Get):
|
2344
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2345
|
-
(eval):1:in `do_request'
|
2346
|
-
.//../../lib/s33r/networking.rb:165:in `eval'
|
2347
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2348
|
-
.//../../lib/s33r/networking.rb:165:in `do_get'
|
2349
|
-
.//../../lib/s33r/client.rb:93:in `buckets'
|
2350
|
-
.//../../lib/s33r/client.rb:117:in `bucket_names'
|
2351
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
2352
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
2353
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
2354
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2355
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2356
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2357
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2358
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2359
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2360
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2361
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2362
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2363
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2364
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2365
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2366
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2367
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2368
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2369
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2370
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2371
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2372
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2373
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2374
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2375
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2376
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2377
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2378
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2379
|
-
script/server:3
|
2380
|
-
|
2381
|
-
|
2382
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2383
|
-
BrowserController: missing default helper path browser_helper
|
2384
|
-
|
2385
|
-
|
2386
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:22:48) [GET]
|
2387
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2388
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2389
|
-
|
2390
|
-
|
2391
|
-
NameError (/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in `const_missing': uninitialized constant Get):
|
2392
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2393
|
-
(eval):1:in `do_request'
|
2394
|
-
.//../../lib/s33r/networking.rb:165:in `eval'
|
2395
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2396
|
-
.//../../lib/s33r/networking.rb:165:in `do_get'
|
2397
|
-
.//../../lib/s33r/client.rb:93:in `buckets'
|
2398
|
-
.//../../lib/s33r/client.rb:117:in `bucket_names'
|
2399
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
2400
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
2401
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
2402
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2403
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2404
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2405
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2406
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2407
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2408
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2409
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2410
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2411
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2412
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2413
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2414
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2415
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2416
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2417
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2418
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2419
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2420
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2421
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2422
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2423
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2424
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2425
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2426
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2427
|
-
script/server:3
|
2428
|
-
|
2429
|
-
|
2430
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2431
|
-
BrowserController: missing default helper path browser_helper
|
2432
|
-
|
2433
|
-
|
2434
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:22:50) [GET]
|
2435
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2436
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2437
|
-
|
2438
|
-
|
2439
|
-
NameError (/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in `const_missing': uninitialized constant Get):
|
2440
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2441
|
-
(eval):1:in `do_request'
|
2442
|
-
.//../../lib/s33r/networking.rb:165:in `eval'
|
2443
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2444
|
-
.//../../lib/s33r/networking.rb:165:in `do_get'
|
2445
|
-
.//../../lib/s33r/client.rb:93:in `buckets'
|
2446
|
-
.//../../lib/s33r/client.rb:117:in `bucket_names'
|
2447
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
2448
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
2449
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
2450
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2451
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2452
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2453
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2454
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2455
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2456
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2457
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2458
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2459
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2460
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2461
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2462
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2463
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2464
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2465
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2466
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2467
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2468
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2469
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2470
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2471
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2472
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2473
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2474
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2475
|
-
script/server:3
|
2476
|
-
|
2477
|
-
|
2478
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2479
|
-
BrowserController: missing default helper path browser_helper
|
2480
|
-
|
2481
|
-
|
2482
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:23:24) [GET]
|
2483
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2484
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2485
|
-
|
2486
|
-
|
2487
|
-
NameError (/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:123:in `const_missing': uninitialized constant Get):
|
2488
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2489
|
-
(eval):1:in `do_request'
|
2490
|
-
.//../../lib/s33r/networking.rb:165:in `eval'
|
2491
|
-
.//../../lib/s33r/networking.rb:62:in `do_request'
|
2492
|
-
.//../../lib/s33r/networking.rb:165:in `do_get'
|
2493
|
-
.//../../lib/s33r/client.rb:93:in `buckets'
|
2494
|
-
.//../../lib/s33r/client.rb:117:in `bucket_names'
|
2495
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
2496
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
2497
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
2498
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2499
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2500
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2501
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2502
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2503
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2504
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2505
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2506
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2507
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2508
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2509
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2510
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2511
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2512
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2513
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2514
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2515
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2516
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2517
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2518
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2519
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2520
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2521
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2522
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2523
|
-
script/server:3
|
2524
|
-
|
2525
|
-
|
2526
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2527
|
-
BrowserController: missing default helper path browser_helper
|
2528
|
-
|
2529
|
-
|
2530
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:24:08) [GET]
|
2531
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2532
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2533
|
-
Rendering within layouts/application
|
2534
|
-
Rendering browser/index
|
2535
|
-
Rendered browser/_create_bucket (0.00169)
|
2536
|
-
Completed in 1.02442 (0 reqs/sec) | Rendering: 0.06193 (6%) | 200 OK [http://localhost/]
|
2537
|
-
BrowserController: missing default helper path browser_helper
|
2538
|
-
|
2539
|
-
|
2540
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:24:11) [GET]
|
2541
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2542
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2543
|
-
Rendering within layouts/application
|
2544
|
-
Rendering browser/show_bucket
|
2545
|
-
Rendered browser/_upload (0.00192)
|
2546
|
-
Completed in 0.87333 (1 reqs/sec) | Rendering: 0.03982 (4%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2547
|
-
BrowserController: missing default helper path browser_helper
|
2548
|
-
|
2549
|
-
|
2550
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-18 23:24:15) [GET]
|
2551
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2552
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "resource_key"=>"osbc_us_2005_notes.html", "action"=>"delete", "controller"=>"browser"}
|
2553
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-backup
|
2554
|
-
Completed in 0.52855 (1 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-backup/osbc_us_2005_notes.html]
|
2555
|
-
BrowserController: missing default helper path browser_helper
|
2556
|
-
|
2557
|
-
|
2558
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:24:16) [GET]
|
2559
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2560
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2561
|
-
Rendering within layouts/application
|
2562
|
-
Rendering browser/show_bucket
|
2563
|
-
Rendered browser/_upload (0.00113)
|
2564
|
-
Completed in 0.49325 (2 reqs/sec) | Rendering: 0.00305 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2565
|
-
BrowserController: missing default helper path browser_helper
|
2566
|
-
|
2567
|
-
|
2568
|
-
Processing BrowserController#upload (for 127.0.0.1 at 2007-01-18 23:24:21) [POST]
|
2569
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2570
|
-
Parameters: {"commit"=>"Upload", "action"=>"upload", "upload"=>{"bucket_name"=>"elliotsmith-backup", "filename"=>#<File:/tmp/CGI10081.1>}, "controller"=>"browser"}
|
2571
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-backup
|
2572
|
-
Completed in 1.59526 (0 reqs/sec) | 302 Found [http://localhost/browser/upload]
|
2573
|
-
BrowserController: missing default helper path browser_helper
|
2574
|
-
|
2575
|
-
|
2576
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:24:23) [GET]
|
2577
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2578
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2579
|
-
Rendering within layouts/application
|
2580
|
-
Rendering browser/show_bucket
|
2581
|
-
Rendered browser/_upload (0.00143)
|
2582
|
-
Completed in 0.81280 (1 reqs/sec) | Rendering: 0.00688 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2583
|
-
BrowserController: missing default helper path browser_helper
|
2584
|
-
|
2585
|
-
|
2586
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-18 23:24:29) [GET]
|
2587
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2588
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "resource_key"=>"RedCloth-3.0.4.gem", "action"=>"delete", "controller"=>"browser"}
|
2589
|
-
Redirected to http://localhost:3000/show_bucket/elliotsmith-backup
|
2590
|
-
Completed in 0.49471 (2 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-backup/RedCloth-3.0.4.gem]
|
2591
|
-
BrowserController: missing default helper path browser_helper
|
2592
|
-
|
2593
|
-
|
2594
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:24:30) [GET]
|
2595
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2596
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2597
|
-
Rendering within layouts/application
|
2598
|
-
Rendering browser/show_bucket
|
2599
|
-
Rendered browser/_upload (0.00145)
|
2600
|
-
Completed in 0.59698 (1 reqs/sec) | Rendering: 0.00448 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2601
|
-
BrowserController: missing default helper path browser_helper
|
2602
|
-
|
2603
|
-
|
2604
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:24:32) [GET]
|
2605
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2606
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2607
|
-
Rendering within layouts/application
|
2608
|
-
Rendering browser/index
|
2609
|
-
Rendered browser/_create_bucket (0.00071)
|
2610
|
-
Completed in 0.78859 (1 reqs/sec) | Rendering: 0.00531 (0%) | 200 OK [http://localhost/]
|
2611
|
-
BrowserController: missing default helper path browser_helper
|
2612
|
-
|
2613
|
-
|
2614
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:24:34) [GET]
|
2615
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2616
|
-
Parameters: {"bucket_name"=>"elliotsmith-s33r-demo", "action"=>"show_bucket", "controller"=>"browser"}
|
2617
|
-
Rendering within layouts/application
|
2618
|
-
Rendering browser/show_bucket
|
2619
|
-
Rendered browser/_upload (0.00155)
|
2620
|
-
Completed in 0.89607 (1 reqs/sec) | Rendering: 0.00720 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-s33r-demo]
|
2621
|
-
BrowserController: missing default helper path browser_helper
|
2622
|
-
|
2623
|
-
|
2624
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:24:37) [GET]
|
2625
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2626
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2627
|
-
Rendering within layouts/application
|
2628
|
-
Rendering browser/index
|
2629
|
-
Rendered browser/_create_bucket (0.00086)
|
2630
|
-
Completed in 0.79893 (1 reqs/sec) | Rendering: 0.00635 (0%) | 200 OK [http://localhost/]
|
2631
|
-
BrowserController: missing default helper path browser_helper
|
2632
|
-
|
2633
|
-
|
2634
|
-
Processing BrowserController#create_bucket (for 127.0.0.1 at 2007-01-18 23:24:42) [POST]
|
2635
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2636
|
-
Parameters: {"commit"=>"Create", "bucket"=>{"name"=>"elliotsmith-charlieboy", "prefix"=>"1"}, "action"=>"create_bucket", "controller"=>"browser"}
|
2637
|
-
Redirected to http://localhost:3000/
|
2638
|
-
Completed in 0.92465 (1 reqs/sec) | 302 Found [http://localhost/create_bucket]
|
2639
|
-
BrowserController: missing default helper path browser_helper
|
2640
|
-
|
2641
|
-
|
2642
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:24:43) [GET]
|
2643
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2644
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2645
|
-
Rendering within layouts/application
|
2646
|
-
Rendering browser/index
|
2647
|
-
Rendered browser/_create_bucket (0.00135)
|
2648
|
-
Completed in 0.79534 (1 reqs/sec) | Rendering: 0.01203 (1%) | 200 OK [http://localhost/]
|
2649
|
-
BrowserController: missing default helper path browser_helper
|
2650
|
-
|
2651
|
-
|
2652
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-18 23:24:47) [GET]
|
2653
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2654
|
-
Parameters: {"bucket_name"=>"elliotsmith-elliotsmith-charlieboy", "action"=>"delete", "controller"=>"browser"}
|
2655
|
-
Redirected to http://localhost:3000/
|
2656
|
-
Completed in 1.10006 (0 reqs/sec) | 302 Found [http://localhost/delete/elliotsmith-elliotsmith-charlieboy]
|
2657
|
-
BrowserController: missing default helper path browser_helper
|
2658
|
-
|
2659
|
-
|
2660
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:24:48) [GET]
|
2661
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2662
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2663
|
-
Rendering within layouts/application
|
2664
|
-
Rendering browser/index
|
2665
|
-
Rendered browser/_create_bucket (0.00222)
|
2666
|
-
Completed in 0.81461 (1 reqs/sec) | Rendering: 0.01161 (1%) | 200 OK [http://localhost/]
|
2667
|
-
BrowserController: missing default helper path browser_helper
|
2668
|
-
|
2669
|
-
|
2670
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:39:31) [GET]
|
2671
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2672
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2673
|
-
|
2674
|
-
|
2675
|
-
NoMethodError (undefined method `s3_url' for #<S33r::Client:0xb7611548>):
|
2676
|
-
.//../../lib/s33r/networking.rb:53:in `do_request'
|
2677
|
-
.//../../lib/s33r/networking.rb:165:in `do_get'
|
2678
|
-
.//../../lib/s33r/client.rb:93:in `buckets'
|
2679
|
-
.//../../lib/s33r/client.rb:117:in `bucket_names'
|
2680
|
-
/app/controllers/browser_controller.rb:12:in `index'
|
2681
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:941:in `perform_action_without_filters'
|
2682
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:368:in `perform_action_without_benchmark'
|
2683
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2684
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2685
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2686
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2687
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2688
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2689
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2690
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2691
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2692
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2693
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2694
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2695
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2696
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2697
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2698
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2699
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2700
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2701
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2702
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2703
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2704
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2705
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2706
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2707
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2708
|
-
script/server:3
|
2709
|
-
|
2710
|
-
|
2711
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2712
|
-
BrowserController: missing default helper path browser_helper
|
2713
|
-
|
2714
|
-
|
2715
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:39:45) [GET]
|
2716
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2717
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2718
|
-
Rendering within layouts/application
|
2719
|
-
Rendering browser/index
|
2720
|
-
Rendered browser/_create_bucket (0.00149)
|
2721
|
-
Completed in 0.79398 (1 reqs/sec) | Rendering: 0.00893 (1%) | 200 OK [http://localhost/]
|
2722
|
-
BrowserController: missing default helper path browser_helper
|
2723
|
-
|
2724
|
-
|
2725
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:39:48) [GET]
|
2726
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2727
|
-
Parameters: {"bucket_name"=>"elliotsmith-backup", "action"=>"show_bucket", "controller"=>"browser"}
|
2728
|
-
Rendering within layouts/application
|
2729
|
-
Rendering browser/show_bucket
|
2730
|
-
Rendered browser/_upload (0.00156)
|
2731
|
-
Completed in 0.60257 (1 reqs/sec) | Rendering: 0.00469 (0%) | 200 OK [http://localhost/show_bucket/elliotsmith-backup]
|
2732
|
-
BrowserController: missing default helper path browser_helper
|
2733
|
-
|
2734
|
-
|
2735
|
-
Processing BrowserController#index (for 127.0.0.1 at 2007-01-18 23:39:51) [GET]
|
2736
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2737
|
-
Parameters: {"action"=>"index", "controller"=>"browser"}
|
2738
|
-
Rendering within layouts/application
|
2739
|
-
Rendering browser/index
|
2740
|
-
Rendered browser/_create_bucket (0.00085)
|
2741
|
-
Completed in 0.78675 (1 reqs/sec) | Rendering: 0.00642 (0%) | 200 OK [http://localhost/]
|
2742
|
-
BrowserController: missing default helper path browser_helper
|
2743
|
-
|
2744
|
-
|
2745
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:39:54) [GET]
|
2746
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2747
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2748
|
-
Rendering within layouts/application
|
2749
|
-
Rendering browser/show_bucket
|
2750
|
-
Rendered browser/_upload (0.00449)
|
2751
|
-
Completed in 0.97351 (1 reqs/sec) | Rendering: 0.12280 (12%) | 200 OK [http://localhost/show_bucket/townx.org]
|
2752
|
-
BrowserController: missing default helper path browser_helper
|
2753
|
-
|
2754
|
-
|
2755
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-18 23:39:58) [GET]
|
2756
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2757
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"/home/ell/personal/photos/misc/elliot.jpg", "action"=>"delete", "controller"=>"browser"}
|
2758
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
2759
|
-
Completed in 0.48315 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/%2Fhome%2Fell%2Fpersonal%2Fphotos%2Fmisc%2Felliot.jpg]
|
2760
|
-
BrowserController: missing default helper path browser_helper
|
2761
|
-
|
2762
|
-
|
2763
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-18 23:39:58) [GET]
|
2764
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2765
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2766
|
-
Rendering within layouts/application
|
2767
|
-
Rendering browser/show_bucket
|
2768
|
-
Rendered browser/_upload (0.00142)
|
2769
|
-
Completed in 1.30787 (0 reqs/sec) | Rendering: 0.01456 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
2770
|
-
BrowserController: missing default helper path browser_helper
|
2771
|
-
|
2772
|
-
|
2773
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:04:16) [GET]
|
2774
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2775
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2776
|
-
|
2777
|
-
|
2778
|
-
NoMethodError (undefined method `bucket_name_valid?' for #<S33r::Bucket:0xb744c118>):
|
2779
|
-
.//../../lib/s33r/bucket.rb:16:in `initialize'
|
2780
|
-
.//../../lib/s33r/client.rb:139:in `get_bucket'
|
2781
|
-
/app/controllers/browser_controller.rb:90:in `get_bucket_listing'
|
2782
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:399:in `call_filters'
|
2783
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:394:in `call_filters'
|
2784
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:383:in `before_action'
|
2785
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:365:in `perform_action_without_benchmark'
|
2786
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2787
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2788
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2789
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2790
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2791
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2792
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2793
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2794
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2795
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2796
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2797
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2798
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2799
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2800
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2801
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2802
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2803
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2804
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2805
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2806
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2807
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2808
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2809
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2810
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2811
|
-
script/server:3
|
2812
|
-
|
2813
|
-
|
2814
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2815
|
-
BrowserController: missing default helper path browser_helper
|
2816
|
-
|
2817
|
-
|
2818
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:04:17) [GET]
|
2819
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2820
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2821
|
-
|
2822
|
-
|
2823
|
-
NoMethodError (undefined method `bucket_name_valid?' for #<S33r::Bucket:0xb766d53c>):
|
2824
|
-
.//../../lib/s33r/bucket.rb:16:in `initialize'
|
2825
|
-
.//../../lib/s33r/client.rb:139:in `get_bucket'
|
2826
|
-
/app/controllers/browser_controller.rb:90:in `get_bucket_listing'
|
2827
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:399:in `call_filters'
|
2828
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:394:in `call_filters'
|
2829
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:383:in `before_action'
|
2830
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:365:in `perform_action_without_benchmark'
|
2831
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2832
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2833
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2834
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2835
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2836
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2837
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2838
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2839
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2840
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2841
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2842
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2843
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2844
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2845
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2846
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2847
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2848
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2849
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2850
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2851
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2852
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2853
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2854
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2855
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2856
|
-
script/server:3
|
2857
|
-
|
2858
|
-
|
2859
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2860
|
-
BrowserController: missing default helper path browser_helper
|
2861
|
-
|
2862
|
-
|
2863
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:04:18) [GET]
|
2864
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2865
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2866
|
-
|
2867
|
-
|
2868
|
-
NoMethodError (undefined method `bucket_name_valid?' for #<S33r::Bucket:0xb744a174>):
|
2869
|
-
.//../../lib/s33r/bucket.rb:16:in `initialize'
|
2870
|
-
.//../../lib/s33r/client.rb:139:in `get_bucket'
|
2871
|
-
/app/controllers/browser_controller.rb:90:in `get_bucket_listing'
|
2872
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:399:in `call_filters'
|
2873
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:394:in `call_filters'
|
2874
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:383:in `before_action'
|
2875
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:365:in `perform_action_without_benchmark'
|
2876
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2877
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2878
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2879
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2880
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2881
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2882
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2883
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2884
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2885
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2886
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2887
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2888
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2889
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2890
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2891
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2892
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2893
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2894
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2895
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2896
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2897
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2898
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2899
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2900
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2901
|
-
script/server:3
|
2902
|
-
|
2903
|
-
|
2904
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2905
|
-
BrowserController: missing default helper path browser_helper
|
2906
|
-
|
2907
|
-
|
2908
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:04:18) [GET]
|
2909
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2910
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2911
|
-
|
2912
|
-
|
2913
|
-
NoMethodError (undefined method `bucket_name_valid?' for #<S33r::Bucket:0xb76991a0>):
|
2914
|
-
.//../../lib/s33r/bucket.rb:16:in `initialize'
|
2915
|
-
.//../../lib/s33r/client.rb:139:in `get_bucket'
|
2916
|
-
/app/controllers/browser_controller.rb:90:in `get_bucket_listing'
|
2917
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:399:in `call_filters'
|
2918
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:394:in `call_filters'
|
2919
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:383:in `before_action'
|
2920
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:365:in `perform_action_without_benchmark'
|
2921
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2922
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2923
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2924
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2925
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2926
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2927
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2928
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2929
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2930
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2931
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2932
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2933
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2934
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2935
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2936
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2937
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2938
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2939
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2940
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2941
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2942
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2943
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2944
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2945
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2946
|
-
script/server:3
|
2947
|
-
|
2948
|
-
|
2949
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2950
|
-
BrowserController: missing default helper path browser_helper
|
2951
|
-
|
2952
|
-
|
2953
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:04:20) [GET]
|
2954
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
2955
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
2956
|
-
|
2957
|
-
|
2958
|
-
NoMethodError (undefined method `bucket_name_valid?' for #<S33r::Bucket:0xb74a8058>):
|
2959
|
-
.//../../lib/s33r/bucket.rb:16:in `initialize'
|
2960
|
-
.//../../lib/s33r/client.rb:139:in `get_bucket'
|
2961
|
-
/app/controllers/browser_controller.rb:90:in `get_bucket_listing'
|
2962
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:399:in `call_filters'
|
2963
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:394:in `call_filters'
|
2964
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:383:in `before_action'
|
2965
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:365:in `perform_action_without_benchmark'
|
2966
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2967
|
-
/opt/lampp/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2968
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/benchmarking.rb:69:in `perform_action_without_rescue'
|
2969
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/rescue.rb:82:in `perform_action'
|
2970
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/base.rb:408:in `process_without_filters'
|
2971
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/filters.rb:377:in `process_without_session_management_support'
|
2972
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/session_management.rb:117:in `process'
|
2973
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/dispatcher.rb:38:in `dispatch'
|
2974
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:115:in `handle_dispatch'
|
2975
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:81:in `service'
|
2976
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
|
2977
|
-
/opt/lampp/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
|
2978
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
|
2979
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
|
2980
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:95:in `start'
|
2981
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:92:in `start'
|
2982
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:23:in `start'
|
2983
|
-
/opt/lampp/lib/ruby/1.8/webrick/server.rb:82:in `start'
|
2984
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/webrick_server.rb:67:in `dispatch'
|
2985
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/servers/webrick.rb:59
|
2986
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2987
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2988
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/rails-1.1.6/lib/commands/server.rb:30
|
2989
|
-
/opt/lampp/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
2990
|
-
/opt/lampp/lib/ruby/gems/1.8/gems/activesupport-1.3.1/lib/active_support/dependencies.rb:147:in `require'
|
2991
|
-
script/server:3
|
2992
|
-
|
2993
|
-
|
2994
|
-
Rendering /opt/lampp/lib/ruby/gems/1.8/gems/actionpack-1.12.5/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2995
|
-
BrowserController: missing default helper path browser_helper
|
2996
|
-
|
2997
|
-
|
2998
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:04:44) [GET]
|
2999
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
3000
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
3001
|
-
Rendering within layouts/application
|
3002
|
-
Rendering browser/show_bucket
|
3003
|
-
Rendered browser/_upload (0.00277)
|
3004
|
-
Completed in 20.85113 (0 reqs/sec) | Rendering: 0.01806 (0%) | 200 OK [http://localhost/show_bucket/townx.org]
|
3005
|
-
BrowserController: missing default helper path browser_helper
|
3006
|
-
|
3007
|
-
|
3008
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:05:06) [GET]
|
3009
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
3010
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
3011
|
-
Rendering within layouts/application
|
3012
|
-
Rendering browser/show_bucket
|
3013
|
-
Rendered browser/_upload (0.00149)
|
3014
|
-
Completed in 0.90474 (1 reqs/sec) | Rendering: 0.01082 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|
3015
|
-
BrowserController: missing default helper path browser_helper
|
3016
|
-
|
3017
|
-
|
3018
|
-
Processing BrowserController#delete (for 127.0.0.1 at 2007-01-19 00:05:13) [GET]
|
3019
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
3020
|
-
Parameters: {"bucket_name"=>"townx.org", "resource_key"=>"/home/ell/personal/photos/misc/greedy.jpg", "action"=>"delete", "controller"=>"browser"}
|
3021
|
-
Redirected to http://localhost:3000/show_bucket/townx.org
|
3022
|
-
Completed in 0.49438 (2 reqs/sec) | 302 Found [http://localhost/delete/townx.org/%2Fhome%2Fell%2Fpersonal%2Fphotos%2Fmisc%2Fgreedy.jpg]
|
3023
|
-
BrowserController: missing default helper path browser_helper
|
3024
|
-
|
3025
|
-
|
3026
|
-
Processing BrowserController#show_bucket (for 127.0.0.1 at 2007-01-19 00:05:13) [GET]
|
3027
|
-
Session ID: e2df130ead6691252a2fe285c054fbdd
|
3028
|
-
Parameters: {"bucket_name"=>"townx.org", "action"=>"show_bucket", "controller"=>"browser"}
|
3029
|
-
Rendering within layouts/application
|
3030
|
-
Rendering browser/show_bucket
|
3031
|
-
Rendered browser/_upload (0.00557)
|
3032
|
-
Completed in 1.31795 (0 reqs/sec) | Rendering: 0.01349 (1%) | 200 OK [http://localhost/show_bucket/townx.org]
|