widgetz 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/README +91 -0
- data/README.html +60 -0
- data/gemspec.rb +28 -0
- data/install.rb +210 -0
- data/lib/widgets.rb +154 -0
- data/sample/rails/README +182 -0
- data/sample/rails/Rakefile +10 -0
- data/sample/rails/app/controllers/application.rb +11 -0
- data/sample/rails/app/controllers/sample_controller.rb +30 -0
- data/sample/rails/app/helpers/application_helper.rb +3 -0
- data/sample/rails/app/views/layouts/application.rhtml +1 -0
- data/sample/rails/app/views/sample/b.rhtml +2 -0
- data/sample/rails/app/views/widgets/b.rhtml +3 -0
- data/sample/rails/app/views/widgets/c.rhtml +3 -0
- data/sample/rails/app/views/widgets/page.rhtml +15 -0
- data/sample/rails/config/boot.rb +45 -0
- data/sample/rails/config/database.yml +16 -0
- data/sample/rails/config/environment.rb +62 -0
- data/sample/rails/config/environments/development.rb +21 -0
- data/sample/rails/config/environments/production.rb +18 -0
- data/sample/rails/config/environments/test.rb +19 -0
- data/sample/rails/config/lighttpd.conf +54 -0
- data/sample/rails/config/routes.rb +23 -0
- data/sample/rails/doc/README_FOR_APP +2 -0
- data/sample/rails/lib/widgets/b.rb +8 -0
- data/sample/rails/lib/widgets/c.rb +7 -0
- data/sample/rails/lib/widgets/page.rb +7 -0
- data/sample/rails/log/development.log +1616 -0
- data/sample/rails/log/fastcgi.crash.log +48 -0
- data/sample/rails/log/lighttpd.access.log +59 -0
- data/sample/rails/log/lighttpd.error.log +42 -0
- data/sample/rails/log/production.log +0 -0
- data/sample/rails/log/server.log +0 -0
- data/sample/rails/log/test.log +0 -0
- data/sample/rails/public/404.html +30 -0
- data/sample/rails/public/500.html +30 -0
- data/sample/rails/public/dispatch.cgi +10 -0
- data/sample/rails/public/dispatch.fcgi +24 -0
- data/sample/rails/public/dispatch.rb +10 -0
- data/sample/rails/public/favicon.ico +0 -0
- data/sample/rails/public/images/rails.png +0 -0
- data/sample/rails/public/index.html +277 -0
- data/sample/rails/public/javascripts/application.js +2 -0
- data/sample/rails/public/javascripts/controls.js +833 -0
- data/sample/rails/public/javascripts/dragdrop.js +942 -0
- data/sample/rails/public/javascripts/effects.js +1088 -0
- data/sample/rails/public/javascripts/prototype.js +2515 -0
- data/sample/rails/public/robots.txt +1 -0
- data/sample/rails/script/about +3 -0
- data/sample/rails/script/breakpointer +3 -0
- data/sample/rails/script/console +3 -0
- data/sample/rails/script/destroy +3 -0
- data/sample/rails/script/generate +3 -0
- data/sample/rails/script/performance/benchmarker +3 -0
- data/sample/rails/script/performance/profiler +3 -0
- data/sample/rails/script/plugin +3 -0
- data/sample/rails/script/process/inspector +3 -0
- data/sample/rails/script/process/reaper +3 -0
- data/sample/rails/script/process/spawner +3 -0
- data/sample/rails/script/runner +3 -0
- data/sample/rails/script/server +3 -0
- data/sample/rails/test/test_helper.rb +28 -0
- data/sample/rails/tmp/sessions/ruby_sess.45bcc3811314bce8 +0 -0
- data/sample/rails/tmp/sessions/ruby_sess.b741114026a9d990 +0 -0
- data/widgetz-0.0.1.gem +0 -0
- metadata +160 -0
@@ -0,0 +1,19 @@
|
|
1
|
+
# Settings specified here will take precedence over those in config/environment.rb
|
2
|
+
|
3
|
+
# The test environment is used exclusively to run your application's
|
4
|
+
# test suite. You never need to work with it otherwise. Remember that
|
5
|
+
# your test database is "scratch space" for the test suite and is wiped
|
6
|
+
# and recreated between test runs. Don't rely on the data there!
|
7
|
+
config.cache_classes = true
|
8
|
+
|
9
|
+
# Log error messages when you accidentally call methods on nil.
|
10
|
+
config.whiny_nils = true
|
11
|
+
|
12
|
+
# Show full error reports and disable caching
|
13
|
+
config.action_controller.consider_all_requests_local = true
|
14
|
+
config.action_controller.perform_caching = false
|
15
|
+
|
16
|
+
# Tell ActionMailer not to deliver emails to the real world.
|
17
|
+
# The :test delivery method accumulates sent emails in the
|
18
|
+
# ActionMailer::Base.deliveries array.
|
19
|
+
config.action_mailer.delivery_method = :test
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Default configuration file for the lighttpd web server
|
2
|
+
# Start using ./script/server lighttpd
|
3
|
+
|
4
|
+
server.bind = "0.0.0.0"
|
5
|
+
server.port = 3000
|
6
|
+
|
7
|
+
server.modules = ( "mod_rewrite", "mod_accesslog", "mod_fastcgi", "mod_compress", "mod_expire" )
|
8
|
+
|
9
|
+
server.error-handler-404 = "/dispatch.fcgi"
|
10
|
+
server.pid-file = CWD + "/tmp/pids/lighttpd.pid"
|
11
|
+
server.document-root = CWD + "/public/"
|
12
|
+
|
13
|
+
server.errorlog = CWD + "/log/lighttpd.error.log"
|
14
|
+
accesslog.filename = CWD + "/log/lighttpd.access.log"
|
15
|
+
|
16
|
+
url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
|
17
|
+
|
18
|
+
compress.filetype = ( "text/plain", "text/html", "text/css", "text/javascript" )
|
19
|
+
compress.cache-dir = CWD + "/tmp/cache"
|
20
|
+
|
21
|
+
expire.url = ( "/favicon.ico" => "access 3 days",
|
22
|
+
"/images/" => "access 3 days",
|
23
|
+
"/stylesheets/" => "access 3 days",
|
24
|
+
"/javascripts/" => "access 3 days" )
|
25
|
+
|
26
|
+
|
27
|
+
# Change *-procs to 2 if you need to use Upload Progress or other tasks that
|
28
|
+
# *need* to execute a second request while the first is still pending.
|
29
|
+
fastcgi.server = ( ".fcgi" => ( "localhost" => (
|
30
|
+
"min-procs" => 1,
|
31
|
+
"max-procs" => 1,
|
32
|
+
"socket" => CWD + "/tmp/sockets/fcgi.socket",
|
33
|
+
"bin-path" => CWD + "/public/dispatch.fcgi",
|
34
|
+
"bin-environment" => ( "RAILS_ENV" => "development" )
|
35
|
+
) ) )
|
36
|
+
|
37
|
+
mimetype.assign = (
|
38
|
+
".css" => "text/css",
|
39
|
+
".gif" => "image/gif",
|
40
|
+
".htm" => "text/html",
|
41
|
+
".html" => "text/html",
|
42
|
+
".jpeg" => "image/jpeg",
|
43
|
+
".jpg" => "image/jpeg",
|
44
|
+
".js" => "text/javascript",
|
45
|
+
".png" => "image/png",
|
46
|
+
".swf" => "application/x-shockwave-flash",
|
47
|
+
".txt" => "text/plain"
|
48
|
+
)
|
49
|
+
|
50
|
+
# Making sure file uploads above 64k always work when using IE or Safari
|
51
|
+
# For more information, see http://trac.lighttpd.net/trac/ticket/360
|
52
|
+
$HTTP["useragent"] =~ "^(.*MSIE.*)|(.*AppleWebKit.*)$" {
|
53
|
+
server.max-keep-alive-requests = 0
|
54
|
+
}
|
@@ -0,0 +1,23 @@
|
|
1
|
+
ActionController::Routing::Routes.draw do |map|
|
2
|
+
# The priority is based upon order of creation: first created -> highest priority.
|
3
|
+
|
4
|
+
# Sample of regular route:
|
5
|
+
# map.connect 'products/:id', :controller => 'catalog', :action => 'view'
|
6
|
+
# Keep in mind you can assign values other than :controller and :action
|
7
|
+
|
8
|
+
# Sample of named route:
|
9
|
+
# map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
|
10
|
+
# This route can be invoked with purchase_url(:id => product.id)
|
11
|
+
|
12
|
+
# You can have the root of your site routed by hooking up ''
|
13
|
+
# -- just remember to delete public/index.html.
|
14
|
+
# map.connect '', :controller => "welcome"
|
15
|
+
|
16
|
+
# Allow downloading Web Service WSDL as a file with an extension
|
17
|
+
# instead of a file named 'wsdl'
|
18
|
+
map.connect ':controller/service.wsdl', :action => 'wsdl'
|
19
|
+
|
20
|
+
# Install the default route as the lowest priority.
|
21
|
+
map.connect ':controller/:action/:id.:format'
|
22
|
+
map.connect ':controller/:action/:id'
|
23
|
+
end
|
@@ -0,0 +1,1616 @@
|
|
1
|
+
no such file to load -- widgetz
|
2
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
3
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
4
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:495:in `require'
|
5
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
6
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:495:in `require'
|
7
|
+
script/../config/../lib/widgets.rb:1
|
8
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
9
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
10
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
11
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
12
|
+
./script/../config/../app/controllers/application.rb:8
|
13
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:203:in `load_without_new_constant_marking'
|
14
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:203:in `load_file'
|
15
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
16
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:202:in `load_file'
|
17
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:94:in `require_or_load'
|
18
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:60:in `depend_on'
|
19
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:442:in `require_dependency'
|
20
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:110:in `prepare_application'
|
21
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:39:in `dispatch'
|
22
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:78:in `process'
|
23
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `synchronize'
|
24
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/rails.rb:76:in `process'
|
25
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:618:in `process_client'
|
26
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `each'
|
27
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:617:in `process_client'
|
28
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
|
29
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `initialize'
|
30
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `new'
|
31
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:736:in `run'
|
32
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `initialize'
|
33
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `new'
|
34
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel.rb:720:in `run'
|
35
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:271:in `run'
|
36
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `each'
|
37
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/configurator.rb:270:in `run'
|
38
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:127:in `run'
|
39
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/lib/mongrel/command.rb:211:in `run'
|
40
|
+
/opt/local/lib/ruby/gems/1.8/gems/mongrel-1.0.1/bin/mongrel_rails:243
|
41
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
42
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
43
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
44
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
45
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/commands/servers/mongrel.rb:60
|
46
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
47
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
48
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:495:in `require'
|
49
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
50
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:495:in `require'
|
51
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/commands/server.rb:39
|
52
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `gem_original_require'
|
53
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/rubygems/custom_require.rb:27:in `require'
|
54
|
+
./script/server:3
|
55
|
+
SampleController: missing default helper path sample_helper
|
56
|
+
|
57
|
+
|
58
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 22:52:40) [GET]
|
59
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
60
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
61
|
+
Completed in 0.00106 (940 reqs/sec) | Rendering: 0.00005 (4%) | 200 OK [http://localhost/sample/a/]
|
62
|
+
SampleController: missing default helper path sample_helper
|
63
|
+
|
64
|
+
|
65
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 22:54:35) [GET]
|
66
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
67
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
68
|
+
Completed in 0.00082 (1222 reqs/sec) | Rendering: 0.00004 (4%) | 200 OK [http://localhost/sample/a/]
|
69
|
+
SampleController: missing default helper path sample_helper
|
70
|
+
|
71
|
+
|
72
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:43:24) [GET]
|
73
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
74
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
75
|
+
Completed in 0.00103 (971 reqs/sec) | Rendering: 0.00005 (4%) | 200 OK [http://localhost/sample/a/]
|
76
|
+
SampleController: missing default helper path sample_helper
|
77
|
+
|
78
|
+
|
79
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:44:36) [GET]
|
80
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
81
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
82
|
+
Completed in 0.00085 (1175 reqs/sec) | Rendering: 0.00006 (7%) | 200 OK [http://localhost/sample/a/]
|
83
|
+
SampleController: missing default helper path sample_helper
|
84
|
+
|
85
|
+
|
86
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:44:38) [GET]
|
87
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
88
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
89
|
+
Completed in 0.00080 (1242 reqs/sec) | Rendering: 0.00004 (4%) | 200 OK [http://localhost/sample/a/]
|
90
|
+
SampleController: missing default helper path sample_helper
|
91
|
+
|
92
|
+
|
93
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:45:39) [GET]
|
94
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
95
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
96
|
+
Completed in 0.00095 (1057 reqs/sec) | Rendering: 0.00005 (4%) | 200 OK [http://localhost/sample/a/]
|
97
|
+
SampleController: missing default helper path sample_helper
|
98
|
+
|
99
|
+
|
100
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:46:08) [GET]
|
101
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
102
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
103
|
+
Completed in 0.00081 (1239 reqs/sec) | Rendering: 0.00004 (4%) | 200 OK [http://localhost/sample/a/]
|
104
|
+
SampleController: missing default helper path sample_helper
|
105
|
+
|
106
|
+
|
107
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:46:09) [GET]
|
108
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
109
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
110
|
+
Completed in 0.00077 (1292 reqs/sec) | Rendering: 0.00004 (5%) | 200 OK [http://localhost/sample/a/]
|
111
|
+
SampleController: missing default helper path sample_helper
|
112
|
+
|
113
|
+
|
114
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:48:12) [GET]
|
115
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
116
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
117
|
+
|
118
|
+
|
119
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-17 23:49:11) [GET]
|
120
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
121
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
122
|
+
|
123
|
+
|
124
|
+
SystemExit (exit):
|
125
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:116:in `exit'
|
126
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:116:in `exit_now_handler'
|
127
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/inflector.rb:250:in `to_proc'
|
128
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:139:in `call'
|
129
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:139:in `clean_backtrace'
|
130
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:139:in `collect'
|
131
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:139:in `clean_backtrace'
|
132
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:43:in `log_error'
|
133
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
134
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:37:in `log_error'
|
135
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:25:in `rescue_action'
|
136
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:109:in `perform_action'
|
137
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
138
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
139
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
140
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
141
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
142
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
143
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
144
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
145
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
146
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
147
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
148
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
149
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
150
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
151
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
152
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
153
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
154
|
+
|
155
|
+
|
156
|
+
SampleController: missing default helper path sample_helper
|
157
|
+
|
158
|
+
|
159
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:19:17) [GET]
|
160
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
161
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
162
|
+
Completed in 0.00193 (518 reqs/sec) | Rendering: 0.00006 (2%) | 200 OK [http://localhost/sample/a/]
|
163
|
+
SampleController: missing default helper path sample_helper
|
164
|
+
|
165
|
+
|
166
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:20:51) [GET]
|
167
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
168
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
169
|
+
Completed in 0.00084 (1183 reqs/sec) | Rendering: 0.00005 (6%) | 200 OK [http://localhost/sample/a/]
|
170
|
+
SampleController: missing default helper path sample_helper
|
171
|
+
|
172
|
+
|
173
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:21:24) [GET]
|
174
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
175
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
176
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
177
|
+
Completed in 0.02348 (42 reqs/sec) | Rendering: 0.02270 (96%) | 200 OK [http://localhost/sample/a/]
|
178
|
+
SampleController: missing default helper path sample_helper
|
179
|
+
|
180
|
+
|
181
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:21:38) [GET]
|
182
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
183
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
184
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
185
|
+
Completed in 0.00143 (699 reqs/sec) | Rendering: 0.00066 (46%) | 200 OK [http://localhost/sample/a/]
|
186
|
+
SampleController: missing default helper path sample_helper
|
187
|
+
|
188
|
+
|
189
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:31:32) [GET]
|
190
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
191
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
192
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
193
|
+
|
194
|
+
|
195
|
+
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
196
|
+
The error occurred while evaluating nil.for_content) on line #1 of app/views/layouts/application.rhtml:
|
197
|
+
1: <%= @page.for_content{ yield } %>
|
198
|
+
|
199
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
200
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
201
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
202
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
203
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
204
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
205
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
206
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
207
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
208
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
209
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
210
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
211
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
212
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
213
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
214
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
215
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
216
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
217
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
218
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
219
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
220
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
221
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
222
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
223
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
224
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
225
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
226
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
227
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
228
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
229
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
230
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
231
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
232
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
233
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
234
|
+
|
235
|
+
|
236
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
237
|
+
SampleController: missing default helper path sample_helper
|
238
|
+
|
239
|
+
|
240
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:31:42) [GET]
|
241
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
242
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
243
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
244
|
+
|
245
|
+
|
246
|
+
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
247
|
+
The error occurred while evaluating nil.for_content) on line #1 of app/views/layouts/application.rhtml:
|
248
|
+
1: <%= @page.for_content{ yield } %>
|
249
|
+
|
250
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
251
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
252
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
253
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
254
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
255
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
256
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
257
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
258
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
259
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
260
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
261
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
262
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
263
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
264
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
265
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
266
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
267
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
268
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
269
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
270
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
271
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
272
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
273
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
274
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
275
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
276
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
277
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
278
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
279
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
280
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
281
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
282
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
283
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
284
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
285
|
+
|
286
|
+
|
287
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
288
|
+
SampleController: missing default helper path sample_helper
|
289
|
+
|
290
|
+
|
291
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:31:55) [GET]
|
292
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
293
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
294
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
295
|
+
|
296
|
+
|
297
|
+
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
298
|
+
The error occurred while evaluating nil.for_content) on line #1 of app/views/layouts/application.rhtml:
|
299
|
+
1: <%= @page.for_content{ yield } %>
|
300
|
+
|
301
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
302
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
303
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
304
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
305
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
306
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
307
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
308
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
309
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
310
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
311
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
312
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
313
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
314
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
315
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
316
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
317
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
318
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
319
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
320
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
321
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
322
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
323
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
324
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
325
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
326
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
327
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
328
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
329
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
330
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
331
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
332
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
333
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
334
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
335
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
336
|
+
|
337
|
+
|
338
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
339
|
+
SampleController: missing default helper path sample_helper
|
340
|
+
|
341
|
+
|
342
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:31:56) [GET]
|
343
|
+
Session ID: 776e5b87b86003de49c49d82a2b85bd1
|
344
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
345
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
346
|
+
|
347
|
+
|
348
|
+
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
349
|
+
The error occurred while evaluating nil.for_content) on line #1 of app/views/layouts/application.rhtml:
|
350
|
+
1: <%= @page.for_content{ yield } %>
|
351
|
+
|
352
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
353
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
354
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
355
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
356
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
357
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
358
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
359
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
360
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
361
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
362
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
363
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
364
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
365
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
366
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
367
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
368
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
369
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
370
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
371
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
372
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
373
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
374
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
375
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
376
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
377
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
378
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
379
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
380
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
381
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
382
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
383
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
384
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
385
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
386
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
387
|
+
|
388
|
+
|
389
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
390
|
+
SampleController: missing default helper path sample_helper
|
391
|
+
page=#<Widget::Page:0x345583c @name="page", @controller=#<SampleController:0x345669c @page=page=#<Widget::Page:0x345583c ...>>>
|
392
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../app/controllers/application.rb:10:in `initialize'
|
393
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
394
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
395
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
396
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
397
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
398
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
399
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
400
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
401
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
402
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
403
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
404
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
405
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
406
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
407
|
+
SampleController: missing default helper path sample_helper
|
408
|
+
|
409
|
+
|
410
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:32:25) [GET]
|
411
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
412
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
413
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
414
|
+
|
415
|
+
|
416
|
+
ActionView::TemplateError (undefined method `for_content' for #<Widget::Page:0x364b998>) on line #1 of app/views/layouts/application.rhtml:
|
417
|
+
1: <%= @page.for_content{ yield } %>
|
418
|
+
|
419
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
420
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
421
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
422
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
423
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
424
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
425
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
426
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
427
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
428
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
429
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
430
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
431
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
432
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
433
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
434
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
435
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
436
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
437
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
438
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
439
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
440
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
441
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
442
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
443
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
444
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
445
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
446
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
447
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
448
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
449
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
450
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
451
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
452
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
453
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
454
|
+
|
455
|
+
|
456
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
457
|
+
SampleController: missing default helper path sample_helper
|
458
|
+
|
459
|
+
|
460
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:32:35) [GET]
|
461
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
462
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
463
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
464
|
+
|
465
|
+
|
466
|
+
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
467
|
+
You might have expected an instance of Array.
|
468
|
+
The error occurred while evaluating nil.flatten) on line #1 of app/views/layouts/application.rhtml:
|
469
|
+
1: <%= @page.for_content{ yield } %>
|
470
|
+
|
471
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:66:in `inherited_attributes'
|
472
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:73:in `to_hash'
|
473
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:80:in `render'
|
474
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:90:in `for_content'
|
475
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
476
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
477
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
478
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
479
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
480
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
481
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
482
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
483
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
484
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
485
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
486
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
487
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
488
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
489
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
490
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
491
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
492
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
493
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
494
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
495
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
496
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
497
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
498
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
499
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
500
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
501
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
502
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
503
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
504
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
505
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
506
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
507
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
508
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
509
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
510
|
+
|
511
|
+
|
512
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
513
|
+
SampleController: missing default helper path sample_helper
|
514
|
+
|
515
|
+
|
516
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:35:05) [GET]
|
517
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
518
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
519
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
520
|
+
|
521
|
+
|
522
|
+
ActionView::TemplateError (undefined local variable or method `ancestor' for #<Widget::Page:0x1091b80>) on line #1 of app/views/layouts/application.rhtml:
|
523
|
+
1: <%= @page.for_content{ yield } %>
|
524
|
+
|
525
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:68:in `inherited_attributes'
|
526
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:75:in `to_hash'
|
527
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:82:in `render'
|
528
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:92:in `for_content'
|
529
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
530
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
531
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
532
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
533
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
534
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
535
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
536
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
537
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
538
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
539
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
540
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
541
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
542
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
543
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
544
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
545
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
546
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
547
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
548
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
549
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
550
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
551
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
552
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
553
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
554
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
555
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
556
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
557
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
558
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
559
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
560
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
561
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
562
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
563
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
564
|
+
|
565
|
+
|
566
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
567
|
+
SampleController: missing default helper path sample_helper
|
568
|
+
|
569
|
+
|
570
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:35:26) [GET]
|
571
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
572
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
573
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
574
|
+
|
575
|
+
|
576
|
+
ActionView::TemplateError (undefined local variable or method `ancestor' for #<Widget::Page:0x356b67c>) on line #1 of app/views/layouts/application.rhtml:
|
577
|
+
1: <%= @page.for_content{ yield } %>
|
578
|
+
|
579
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:68:in `inherited_attributes'
|
580
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:75:in `to_hash'
|
581
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:82:in `render'
|
582
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:92:in `for_content'
|
583
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
584
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
585
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
586
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
587
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
588
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
589
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
590
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
591
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
592
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
593
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
594
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
595
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
596
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
597
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
598
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
599
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
600
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
601
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
602
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
603
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
604
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
605
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
606
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
607
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
608
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
609
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
610
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
611
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
612
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
613
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
614
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
615
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
616
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
617
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
618
|
+
|
619
|
+
|
620
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
621
|
+
SampleController: missing default helper path sample_helper
|
622
|
+
|
623
|
+
|
624
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:35:34) [GET]
|
625
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
626
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
627
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
628
|
+
Rendering widgets/page
|
629
|
+
|
630
|
+
|
631
|
+
ActionView::TemplateError (undefined local variable or method `title' for #<#<Class:0x10912e8>:0x10912ac>) on line #5 of app/views/widgets/page.rhtml:
|
632
|
+
2: <head>
|
633
|
+
3: <title>
|
634
|
+
4: <%=
|
635
|
+
5: title
|
636
|
+
6: %>
|
637
|
+
7: </title>
|
638
|
+
8: </head>
|
639
|
+
|
640
|
+
#{RAILS_ROOT}/app/views/widgets/page.rhtml:5:in `_run_rhtml_47app47views47widgets47page46rhtml'
|
641
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
642
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
643
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
644
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
645
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:806:in `render_file'
|
646
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
647
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
648
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
649
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
650
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
651
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
652
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
653
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
654
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:85:in `render'
|
655
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:84:in `instance_eval'
|
656
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:84:in `render'
|
657
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:92:in `for_content'
|
658
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
659
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
660
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
661
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
662
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
663
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
664
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
665
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
666
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
667
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
668
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
669
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
670
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
671
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
672
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
673
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
674
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
675
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
676
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
677
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
678
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
679
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
680
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
681
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
682
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
683
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
684
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
685
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
686
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
687
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
688
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
689
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
690
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
691
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
692
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
693
|
+
|
694
|
+
|
695
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
696
|
+
SampleController: missing default helper path sample_helper
|
697
|
+
|
698
|
+
|
699
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:36:29) [GET]
|
700
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
701
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
702
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
703
|
+
Rendering widgets/page
|
704
|
+
Completed in 0.00194 (515 reqs/sec) | Rendering: 0.00120 (61%) | 200 OK [http://localhost/sample/a/]
|
705
|
+
SampleController: missing default helper path sample_helper
|
706
|
+
|
707
|
+
|
708
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:36:39) [GET]
|
709
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
710
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
711
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
712
|
+
Rendering widgets/page
|
713
|
+
Rendering widgets/page
|
714
|
+
Rendering widgets/page
|
715
|
+
Rendering widgets/page
|
716
|
+
Rendering widgets/page
|
717
|
+
Rendering widgets/page
|
718
|
+
Rendering widgets/page
|
719
|
+
Rendering widgets/page
|
720
|
+
Rendering widgets/page
|
721
|
+
Rendering widgets/page
|
722
|
+
Rendering widgets/page
|
723
|
+
Rendering widgets/page
|
724
|
+
Rendering widgets/page
|
725
|
+
Rendering widgets/page
|
726
|
+
Rendering widgets/page
|
727
|
+
Rendering widgets/page
|
728
|
+
Rendering widgets/page
|
729
|
+
Rendering widgets/page
|
730
|
+
Rendering widgets/page
|
731
|
+
Rendering widgets/page
|
732
|
+
Rendering widgets/page
|
733
|
+
Rendering widgets/page
|
734
|
+
Rendering widgets/page
|
735
|
+
Rendering widgets/page
|
736
|
+
Rendering widgets/page
|
737
|
+
Rendering widgets/page
|
738
|
+
Rendering widgets/page
|
739
|
+
Rendering widgets/page
|
740
|
+
Rendering widgets/page
|
741
|
+
Rendering widgets/page
|
742
|
+
Rendering widgets/page
|
743
|
+
Rendering widgets/page
|
744
|
+
Rendering widgets/page
|
745
|
+
Rendering widgets/page
|
746
|
+
Rendering widgets/page
|
747
|
+
Rendering widgets/page
|
748
|
+
Rendering widgets/page
|
749
|
+
Rendering widgets/page
|
750
|
+
Rendering widgets/page
|
751
|
+
Rendering widgets/page
|
752
|
+
Rendering widgets/page
|
753
|
+
Rendering widgets/page
|
754
|
+
Rendering widgets/page
|
755
|
+
Rendering widgets/page
|
756
|
+
Rendering widgets/page
|
757
|
+
Rendering widgets/page
|
758
|
+
Rendering widgets/page
|
759
|
+
Rendering widgets/page
|
760
|
+
Rendering widgets/page
|
761
|
+
Rendering widgets/page
|
762
|
+
Rendering widgets/page
|
763
|
+
Rendering widgets/page
|
764
|
+
Rendering widgets/page
|
765
|
+
Rendering widgets/page
|
766
|
+
Rendering widgets/page
|
767
|
+
Rendering widgets/page
|
768
|
+
Rendering widgets/page
|
769
|
+
Rendering widgets/page
|
770
|
+
Rendering widgets/page
|
771
|
+
Rendering widgets/page
|
772
|
+
Rendering widgets/page
|
773
|
+
Rendering widgets/page
|
774
|
+
Rendering widgets/page
|
775
|
+
Rendering widgets/page
|
776
|
+
Rendering widgets/page
|
777
|
+
Rendering widgets/page
|
778
|
+
Rendering widgets/page
|
779
|
+
Rendering widgets/page
|
780
|
+
Rendering widgets/page
|
781
|
+
Rendering widgets/page
|
782
|
+
Rendering widgets/page
|
783
|
+
Rendering widgets/page
|
784
|
+
Rendering widgets/page
|
785
|
+
Rendering widgets/page
|
786
|
+
Rendering widgets/page
|
787
|
+
Rendering widgets/page
|
788
|
+
Rendering widgets/page
|
789
|
+
Rendering widgets/page
|
790
|
+
Rendering widgets/page
|
791
|
+
Rendering widgets/page
|
792
|
+
Rendering widgets/page
|
793
|
+
Rendering widgets/page
|
794
|
+
Rendering widgets/page
|
795
|
+
Rendering widgets/page
|
796
|
+
Rendering widgets/page
|
797
|
+
Rendering widgets/page
|
798
|
+
Rendering widgets/page
|
799
|
+
Rendering widgets/page
|
800
|
+
Rendering widgets/page
|
801
|
+
Rendering widgets/page
|
802
|
+
Rendering widgets/page
|
803
|
+
Rendering widgets/page
|
804
|
+
Rendering widgets/page
|
805
|
+
Rendering widgets/page
|
806
|
+
Rendering widgets/page
|
807
|
+
Rendering widgets/page
|
808
|
+
Rendering widgets/page
|
809
|
+
Rendering widgets/page
|
810
|
+
Rendering widgets/page
|
811
|
+
Rendering widgets/page
|
812
|
+
Rendering widgets/page
|
813
|
+
Rendering widgets/page
|
814
|
+
Rendering widgets/page
|
815
|
+
Rendering widgets/page
|
816
|
+
Rendering widgets/page
|
817
|
+
Rendering widgets/page
|
818
|
+
Rendering widgets/page
|
819
|
+
Rendering widgets/page
|
820
|
+
Rendering widgets/page
|
821
|
+
Rendering widgets/page
|
822
|
+
Rendering widgets/page
|
823
|
+
Rendering widgets/page
|
824
|
+
Rendering widgets/page
|
825
|
+
Rendering widgets/page
|
826
|
+
Rendering widgets/page
|
827
|
+
Rendering widgets/page
|
828
|
+
Rendering widgets/page
|
829
|
+
Rendering widgets/page
|
830
|
+
Rendering widgets/page
|
831
|
+
Rendering widgets/page
|
832
|
+
Rendering widgets/page
|
833
|
+
Rendering widgets/page
|
834
|
+
Rendering widgets/page
|
835
|
+
Rendering widgets/page
|
836
|
+
Rendering widgets/page
|
837
|
+
Rendering widgets/page
|
838
|
+
Rendering widgets/page
|
839
|
+
Rendering widgets/page
|
840
|
+
Rendering widgets/page
|
841
|
+
Rendering widgets/page
|
842
|
+
Rendering widgets/page
|
843
|
+
Rendering widgets/page
|
844
|
+
Rendering widgets/page
|
845
|
+
Rendering widgets/page
|
846
|
+
Rendering widgets/page
|
847
|
+
Rendering widgets/page
|
848
|
+
Rendering widgets/page
|
849
|
+
Rendering widgets/page
|
850
|
+
Rendering widgets/page
|
851
|
+
Rendering widgets/page
|
852
|
+
Rendering widgets/page
|
853
|
+
Rendering widgets/page
|
854
|
+
Rendering widgets/page
|
855
|
+
Rendering widgets/page
|
856
|
+
Rendering widgets/page
|
857
|
+
Rendering widgets/page
|
858
|
+
Rendering widgets/page
|
859
|
+
Rendering widgets/page
|
860
|
+
Rendering widgets/page
|
861
|
+
Rendering widgets/page
|
862
|
+
Rendering widgets/page
|
863
|
+
Rendering widgets/page
|
864
|
+
Rendering widgets/page
|
865
|
+
Rendering widgets/page
|
866
|
+
Rendering widgets/page
|
867
|
+
Rendering widgets/page
|
868
|
+
Rendering widgets/page
|
869
|
+
Rendering widgets/page
|
870
|
+
Rendering widgets/page
|
871
|
+
Rendering widgets/page
|
872
|
+
Rendering widgets/page
|
873
|
+
Rendering widgets/page
|
874
|
+
Rendering widgets/page
|
875
|
+
Rendering widgets/page
|
876
|
+
Rendering widgets/page
|
877
|
+
Rendering widgets/page
|
878
|
+
Rendering widgets/page
|
879
|
+
Rendering widgets/page
|
880
|
+
Rendering widgets/page
|
881
|
+
Rendering widgets/page
|
882
|
+
Rendering widgets/page
|
883
|
+
Rendering widgets/page
|
884
|
+
Rendering widgets/page
|
885
|
+
Rendering widgets/page
|
886
|
+
Rendering widgets/page
|
887
|
+
Rendering widgets/page
|
888
|
+
Rendering widgets/page
|
889
|
+
Rendering widgets/page
|
890
|
+
Rendering widgets/page
|
891
|
+
Rendering widgets/page
|
892
|
+
Rendering widgets/page
|
893
|
+
Rendering widgets/page
|
894
|
+
Rendering widgets/page
|
895
|
+
Rendering widgets/page
|
896
|
+
Rendering widgets/page
|
897
|
+
Rendering widgets/page
|
898
|
+
Rendering widgets/page
|
899
|
+
Rendering widgets/page
|
900
|
+
Rendering widgets/page
|
901
|
+
Rendering widgets/page
|
902
|
+
Rendering widgets/page
|
903
|
+
Rendering widgets/page
|
904
|
+
Rendering widgets/page
|
905
|
+
Rendering widgets/page
|
906
|
+
Rendering widgets/page
|
907
|
+
Rendering widgets/page
|
908
|
+
Rendering widgets/page
|
909
|
+
Rendering widgets/page
|
910
|
+
Rendering widgets/page
|
911
|
+
Rendering widgets/page
|
912
|
+
Rendering widgets/page
|
913
|
+
Rendering widgets/page
|
914
|
+
Rendering widgets/page
|
915
|
+
Rendering widgets/page
|
916
|
+
Rendering widgets/page
|
917
|
+
Rendering widgets/page
|
918
|
+
Rendering widgets/page
|
919
|
+
Rendering widgets/page
|
920
|
+
Rendering widgets/page
|
921
|
+
Rendering widgets/page
|
922
|
+
Rendering widgets/page
|
923
|
+
Rendering widgets/page
|
924
|
+
Rendering widgets/page
|
925
|
+
Rendering widgets/page
|
926
|
+
Rendering widgets/page
|
927
|
+
Rendering widgets/page
|
928
|
+
Rendering widgets/page
|
929
|
+
Rendering widgets/page
|
930
|
+
Rendering widgets/page
|
931
|
+
Rendering widgets/page
|
932
|
+
Rendering widgets/page
|
933
|
+
Rendering widgets/page
|
934
|
+
Rendering widgets/page
|
935
|
+
Rendering widgets/page
|
936
|
+
Rendering widgets/page
|
937
|
+
Rendering widgets/page
|
938
|
+
Rendering widgets/page
|
939
|
+
Rendering widgets/page
|
940
|
+
Rendering widgets/page
|
941
|
+
Rendering widgets/page
|
942
|
+
Rendering widgets/page
|
943
|
+
Rendering widgets/page
|
944
|
+
Rendering widgets/page
|
945
|
+
Rendering widgets/page
|
946
|
+
Rendering widgets/page
|
947
|
+
Rendering widgets/page
|
948
|
+
Rendering widgets/page
|
949
|
+
Rendering widgets/page
|
950
|
+
Rendering widgets/page
|
951
|
+
Rendering widgets/page
|
952
|
+
Rendering widgets/page
|
953
|
+
Rendering widgets/page
|
954
|
+
Rendering widgets/page
|
955
|
+
Rendering widgets/page
|
956
|
+
Rendering widgets/page
|
957
|
+
Rendering widgets/page
|
958
|
+
Rendering widgets/page
|
959
|
+
Rendering widgets/page
|
960
|
+
SampleController: missing default helper path sample_helper
|
961
|
+
|
962
|
+
|
963
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:37:58) [GET]
|
964
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
965
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
966
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
967
|
+
Rendering widgets/page
|
968
|
+
|
969
|
+
|
970
|
+
ActionView::TemplateError (recursive render of page) on line #6 of app/views/widgets/page.rhtml:
|
971
|
+
3: <title>
|
972
|
+
4: <%=
|
973
|
+
5: #title
|
974
|
+
6: widget
|
975
|
+
7: %>
|
976
|
+
8: </title>
|
977
|
+
9: </head>
|
978
|
+
|
979
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:79:in `to_s'
|
980
|
+
#{RAILS_ROOT}/app/views/widgets/page.rhtml:6:in `_run_rhtml_47app47views47widgets47page46rhtml'
|
981
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
982
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
983
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
984
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
985
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:806:in `render_file'
|
986
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
987
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
988
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
989
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
990
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
991
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
992
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
993
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
994
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:88:in `render'
|
995
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:87:in `instance_eval'
|
996
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:87:in `render'
|
997
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:98:in `for_content'
|
998
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
999
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1000
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1001
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1002
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1003
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
1004
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1005
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1006
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1007
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
1008
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1009
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1010
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1011
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1012
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1013
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1014
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1015
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1016
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1017
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1018
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1019
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1020
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1021
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1022
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1023
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1024
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1025
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1026
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1027
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1028
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1029
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1030
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1031
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1032
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
1033
|
+
|
1034
|
+
|
1035
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1036
|
+
SampleController: missing default helper path sample_helper
|
1037
|
+
private method `initialize' called for page=#<Widget::Page:0x10905f0 @name="page", @in_render=false>:Widget::Page
|
1038
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../../../lib/widgets.rb:38:in `new'
|
1039
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../../../lib/widgets.rb:36:in `instance_eval'
|
1040
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../../../lib/widgets.rb:36:in `new'
|
1041
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/core_ext/object/misc.rb:23:in `returning'
|
1042
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../../../lib/widgets.rb:35:in `new'
|
1043
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../../../lib/widgets.rb:31:in `for_controller'
|
1044
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../../../lib/widgets.rb:140:in `widget'
|
1045
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/../config/../app/controllers/application.rb:9:in `initialize'
|
1046
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
1047
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1048
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1049
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1050
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1051
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1052
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1053
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1054
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1055
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1056
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1057
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1058
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1059
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
1060
|
+
SampleController: missing default helper path sample_helper
|
1061
|
+
|
1062
|
+
|
1063
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:41:11) [GET]
|
1064
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1065
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
1066
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
1067
|
+
Rendering widgets/page
|
1068
|
+
|
1069
|
+
|
1070
|
+
ActionView::TemplateError (recursive render of page) on line #6 of app/views/widgets/page.rhtml:
|
1071
|
+
3: <title>
|
1072
|
+
4: <%=
|
1073
|
+
5: #title
|
1074
|
+
6: widget
|
1075
|
+
7: %>
|
1076
|
+
8: </title>
|
1077
|
+
9: </head>
|
1078
|
+
|
1079
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:88:in `to_s'
|
1080
|
+
#{RAILS_ROOT}/app/views/widgets/page.rhtml:6:in `_run_rhtml_47app47views47widgets47page46rhtml'
|
1081
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1082
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1083
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1084
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1085
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:806:in `render_file'
|
1086
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
1087
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
1088
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1089
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1090
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1091
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1092
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
1093
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1094
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:97:in `render'
|
1095
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:96:in `instance_eval'
|
1096
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:96:in `render'
|
1097
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:107:in `for_content'
|
1098
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
1099
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1100
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1101
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1102
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1103
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
1104
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1105
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1106
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1107
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:3:in `a'
|
1108
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1109
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1110
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1111
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1112
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1113
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1114
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1115
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1116
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1117
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1118
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1119
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1120
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1121
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1122
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1123
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1124
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1125
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1126
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1127
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1128
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1129
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1130
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1131
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1132
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
1133
|
+
|
1134
|
+
|
1135
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1136
|
+
SampleController: missing default helper path sample_helper
|
1137
|
+
|
1138
|
+
|
1139
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:41:29) [GET]
|
1140
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1141
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
1142
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
1143
|
+
Rendering widgets/page
|
1144
|
+
Completed in 0.00195 (514 reqs/sec) | Rendering: 0.00121 (62%) | 200 OK [http://localhost/sample/a/]
|
1145
|
+
SampleController: missing default helper path sample_helper
|
1146
|
+
|
1147
|
+
|
1148
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:41:42) [GET]
|
1149
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1150
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
1151
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
1152
|
+
Rendering widgets/page
|
1153
|
+
Completed in 0.08642 (11 reqs/sec) | Rendering: 0.08557 (99%) | 200 OK [http://localhost/sample/a/]
|
1154
|
+
SampleController: missing default helper path sample_helper
|
1155
|
+
|
1156
|
+
|
1157
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 00:48:32) [GET]
|
1158
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1159
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
1160
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
1161
|
+
Rendering widgets/page
|
1162
|
+
Completed in 0.00308 (324 reqs/sec) | Rendering: 0.00224 (72%) | 200 OK [http://localhost/sample/a/]
|
1163
|
+
SampleController: missing default helper path sample_helper
|
1164
|
+
|
1165
|
+
|
1166
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:53:09) [GET]
|
1167
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1168
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1169
|
+
Rendering within layouts/application
|
1170
|
+
Rendering sample/b
|
1171
|
+
|
1172
|
+
|
1173
|
+
ActionView::TemplateError (undefined local variable or method `foo' for #<#<Class:0x363deb0>:0x363de88>) on line #1 of app/views/sample/b.rhtml:
|
1174
|
+
1: foo : <%= foo %> <br>
|
1175
|
+
2: bar : <%= bar %> <br>
|
1176
|
+
3: foobar : <%= widget.foobar %> <br>
|
1177
|
+
|
1178
|
+
#{RAILS_ROOT}/app/views/sample/b.rhtml:1:in `_run_rhtml_47app47views47sample47b46rhtml'
|
1179
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1180
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1181
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1182
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1183
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:806:in `render_file'
|
1184
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:711:in `render_with_no_layout'
|
1185
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:247:in `render_without_benchmark'
|
1186
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1187
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1188
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1189
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:14:in `b'
|
1190
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1191
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1192
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1193
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1194
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1195
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1196
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1197
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1198
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1199
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1200
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1201
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1202
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1203
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1204
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1205
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1206
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1207
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1208
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1209
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1210
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1211
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1212
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1213
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1214
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
1215
|
+
|
1216
|
+
|
1217
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1218
|
+
SampleController: missing default helper path sample_helper
|
1219
|
+
|
1220
|
+
|
1221
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:54:11) [GET]
|
1222
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1223
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1224
|
+
Rendering within layouts/application
|
1225
|
+
Rendering sample/b
|
1226
|
+
Rendering widgets/b
|
1227
|
+
Rendering widgets/page
|
1228
|
+
Completed in 0.00372 (269 reqs/sec) | Rendering: 0.00249 (67%) | 200 OK [http://localhost/sample/b/]
|
1229
|
+
SampleController: missing default helper path sample_helper
|
1230
|
+
|
1231
|
+
|
1232
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:54:29) [GET]
|
1233
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1234
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1235
|
+
Rendering within layouts/application
|
1236
|
+
Rendering sample/b
|
1237
|
+
Rendering widgets/b
|
1238
|
+
Rendering widgets/page
|
1239
|
+
Completed in 0.00290 (344 reqs/sec) | Rendering: 0.00158 (54%) | 200 OK [http://localhost/sample/b/]
|
1240
|
+
SampleController: missing default helper path sample_helper
|
1241
|
+
|
1242
|
+
|
1243
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:54:30) [GET]
|
1244
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1245
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1246
|
+
Rendering within layouts/application
|
1247
|
+
Rendering sample/b
|
1248
|
+
Rendering widgets/b
|
1249
|
+
Rendering widgets/page
|
1250
|
+
Completed in 0.00296 (337 reqs/sec) | Rendering: 0.00169 (56%) | 200 OK [http://localhost/sample/b/]
|
1251
|
+
SampleController: missing default helper path sample_helper
|
1252
|
+
|
1253
|
+
|
1254
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:54:35) [GET]
|
1255
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1256
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1257
|
+
Rendering within layouts/application
|
1258
|
+
Rendering sample/b
|
1259
|
+
Rendering widgets/b
|
1260
|
+
Rendering widgets/page
|
1261
|
+
Completed in 0.00284 (352 reqs/sec) | Rendering: 0.00162 (57%) | 200 OK [http://localhost/sample/b/]
|
1262
|
+
SampleController: missing default helper path sample_helper
|
1263
|
+
|
1264
|
+
|
1265
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:54:51) [GET]
|
1266
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1267
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1268
|
+
Rendering within layouts/application
|
1269
|
+
Rendering sample/b
|
1270
|
+
Rendering widgets/b
|
1271
|
+
Rendering widgets/page
|
1272
|
+
Completed in 0.00309 (323 reqs/sec) | Rendering: 0.00190 (61%) | 200 OK [http://localhost/sample/b/]
|
1273
|
+
SampleController: missing default helper path sample_helper
|
1274
|
+
|
1275
|
+
|
1276
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:56:11) [GET]
|
1277
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1278
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1279
|
+
Rendering within layouts/application
|
1280
|
+
Rendering sample/b
|
1281
|
+
Rendering widgets/b
|
1282
|
+
Rendering widgets/page
|
1283
|
+
Completed in 0.00525 (190 reqs/sec) | Rendering: 0.00376 (71%) | 200 OK [http://localhost/sample/b/]
|
1284
|
+
SampleController: missing default helper path sample_helper
|
1285
|
+
|
1286
|
+
|
1287
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:56:12) [GET]
|
1288
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1289
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1290
|
+
Rendering within layouts/application
|
1291
|
+
Rendering sample/b
|
1292
|
+
Rendering widgets/b
|
1293
|
+
Rendering widgets/page
|
1294
|
+
Completed in 0.00282 (355 reqs/sec) | Rendering: 0.00159 (56%) | 200 OK [http://localhost/sample/b/]
|
1295
|
+
SampleController: missing default helper path sample_helper
|
1296
|
+
|
1297
|
+
|
1298
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:56:14) [GET]
|
1299
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1300
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1301
|
+
Rendering within layouts/application
|
1302
|
+
Rendering sample/b
|
1303
|
+
Rendering widgets/b
|
1304
|
+
Rendering widgets/page
|
1305
|
+
Completed in 0.00283 (353 reqs/sec) | Rendering: 0.00161 (57%) | 200 OK [http://localhost/sample/b/]
|
1306
|
+
SampleController: missing default helper path sample_helper
|
1307
|
+
|
1308
|
+
|
1309
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:56:14) [GET]
|
1310
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1311
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1312
|
+
Rendering within layouts/application
|
1313
|
+
Rendering sample/b
|
1314
|
+
Rendering widgets/b
|
1315
|
+
Rendering widgets/page
|
1316
|
+
Completed in 0.00273 (366 reqs/sec) | Rendering: 0.00153 (55%) | 200 OK [http://localhost/sample/b/]
|
1317
|
+
SampleController: missing default helper path sample_helper
|
1318
|
+
|
1319
|
+
|
1320
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:56:31) [GET]
|
1321
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1322
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1323
|
+
Rendering within layouts/application
|
1324
|
+
Rendering sample/b
|
1325
|
+
Rendering widgets/b
|
1326
|
+
Rendering widgets/page
|
1327
|
+
Completed in 0.00275 (363 reqs/sec) | Rendering: 0.00157 (56%) | 200 OK [http://localhost/sample/b/]
|
1328
|
+
SampleController: missing default helper path sample_helper
|
1329
|
+
|
1330
|
+
|
1331
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:56:53) [GET]
|
1332
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1333
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1334
|
+
Rendering within layouts/application
|
1335
|
+
Rendering sample/b
|
1336
|
+
Rendering widgets/b
|
1337
|
+
Rendering widgets/page
|
1338
|
+
Completed in 0.00291 (343 reqs/sec) | Rendering: 0.00167 (57%) | 200 OK [http://localhost/sample/b/]
|
1339
|
+
SampleController: missing default helper path sample_helper
|
1340
|
+
|
1341
|
+
|
1342
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:56:54) [GET]
|
1343
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1344
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1345
|
+
Rendering within layouts/application
|
1346
|
+
Rendering sample/b
|
1347
|
+
Rendering widgets/b
|
1348
|
+
Rendering widgets/page
|
1349
|
+
Completed in 0.00287 (348 reqs/sec) | Rendering: 0.00160 (55%) | 200 OK [http://localhost/sample/b/]
|
1350
|
+
SampleController: missing default helper path sample_helper
|
1351
|
+
|
1352
|
+
|
1353
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:57:03) [GET]
|
1354
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1355
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1356
|
+
Rendering within layouts/application
|
1357
|
+
Rendering sample/b
|
1358
|
+
Rendering widgets/b
|
1359
|
+
Rendering widgets/page
|
1360
|
+
Completed in 0.00274 (364 reqs/sec) | Rendering: 0.00153 (55%) | 200 OK [http://localhost/sample/b/]
|
1361
|
+
SampleController: missing default helper path sample_helper
|
1362
|
+
|
1363
|
+
|
1364
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:57:07) [GET]
|
1365
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1366
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1367
|
+
Rendering within layouts/application
|
1368
|
+
Rendering sample/b
|
1369
|
+
Rendering widgets/page
|
1370
|
+
Completed in 0.00179 (559 reqs/sec) | Rendering: 0.00100 (55%) | 200 OK [http://localhost/sample/b/]
|
1371
|
+
SampleController: missing default helper path sample_helper
|
1372
|
+
|
1373
|
+
|
1374
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:57:09) [GET]
|
1375
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1376
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1377
|
+
Rendering within layouts/application
|
1378
|
+
Rendering sample/b
|
1379
|
+
Rendering widgets/b
|
1380
|
+
Rendering widgets/page
|
1381
|
+
Completed in 0.00275 (363 reqs/sec) | Rendering: 0.00153 (55%) | 200 OK [http://localhost/sample/b/]
|
1382
|
+
SampleController: missing default helper path sample_helper
|
1383
|
+
|
1384
|
+
|
1385
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:57:33) [GET]
|
1386
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1387
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1388
|
+
Rendering within layouts/application
|
1389
|
+
Rendering sample/b
|
1390
|
+
Rendering widgets/b
|
1391
|
+
Rendering widgets/page
|
1392
|
+
Completed in 0.00482 (207 reqs/sec) | Rendering: 0.00327 (67%) | 200 OK [http://localhost/sample/b/]
|
1393
|
+
SampleController: missing default helper path sample_helper
|
1394
|
+
|
1395
|
+
|
1396
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:57:40) [GET]
|
1397
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1398
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1399
|
+
Rendering within layouts/application
|
1400
|
+
Rendering sample/b
|
1401
|
+
Rendering widgets/b
|
1402
|
+
Rendering widgets/page
|
1403
|
+
Completed in 0.00306 (327 reqs/sec) | Rendering: 0.00160 (52%) | 200 OK [http://localhost/sample/b/]
|
1404
|
+
SampleController: missing default helper path sample_helper
|
1405
|
+
|
1406
|
+
|
1407
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 00:57:42) [GET]
|
1408
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1409
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1410
|
+
Rendering within layouts/application
|
1411
|
+
Rendering sample/b
|
1412
|
+
Rendering widgets/b
|
1413
|
+
Rendering widgets/page
|
1414
|
+
Completed in 0.00272 (367 reqs/sec) | Rendering: 0.00149 (54%) | 200 OK [http://localhost/sample/b/]
|
1415
|
+
SampleController: missing default helper path sample_helper
|
1416
|
+
|
1417
|
+
|
1418
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:00:57) [GET]
|
1419
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1420
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1421
|
+
Rendering within layouts/application
|
1422
|
+
Rendering sample/b
|
1423
|
+
Rendering widgets/b
|
1424
|
+
Rendering widgets/page
|
1425
|
+
Completed in 0.00478 (209 reqs/sec) | Rendering: 0.00329 (68%) | 200 OK [http://localhost/sample/b/]
|
1426
|
+
SampleController: missing default helper path sample_helper
|
1427
|
+
|
1428
|
+
|
1429
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:01:09) [GET]
|
1430
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1431
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1432
|
+
Rendering within layouts/application
|
1433
|
+
Rendering sample/b
|
1434
|
+
Rendering widgets/b
|
1435
|
+
Rendering widgets/page
|
1436
|
+
Completed in 0.00288 (346 reqs/sec) | Rendering: 0.00160 (55%) | 200 OK [http://localhost/sample/b/]
|
1437
|
+
SampleController: missing default helper path sample_helper
|
1438
|
+
|
1439
|
+
|
1440
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:01:12) [GET]
|
1441
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1442
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1443
|
+
Rendering within layouts/application
|
1444
|
+
Rendering sample/b
|
1445
|
+
Rendering widgets/b
|
1446
|
+
Rendering widgets/page
|
1447
|
+
Completed in 0.00286 (349 reqs/sec) | Rendering: 0.00162 (56%) | 200 OK [http://localhost/sample/b/]
|
1448
|
+
SampleController: missing default helper path sample_helper
|
1449
|
+
|
1450
|
+
|
1451
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:01:15) [GET]
|
1452
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1453
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1454
|
+
Rendering within layouts/application
|
1455
|
+
Rendering sample/b
|
1456
|
+
Rendering widgets/b
|
1457
|
+
Rendering widgets/page
|
1458
|
+
Completed in 0.00311 (321 reqs/sec) | Rendering: 0.00179 (57%) | 200 OK [http://localhost/sample/b/]
|
1459
|
+
SampleController: missing default helper path sample_helper
|
1460
|
+
|
1461
|
+
|
1462
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:02:34) [GET]
|
1463
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1464
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1465
|
+
Rendering within layouts/application
|
1466
|
+
Rendering sample/b
|
1467
|
+
Rendering widgets/b
|
1468
|
+
Rendering widgets/page
|
1469
|
+
|
1470
|
+
|
1471
|
+
ActionView::TemplateError (undefined local variable or method `bgcolor' for #<#<Class:0x355c078>:0x355c050>) on line #10 of app/views/widgets/page.rhtml:
|
1472
|
+
7: </title>
|
1473
|
+
8: </head>
|
1474
|
+
9:
|
1475
|
+
10: <body bgcolor="<%= bgcolor %>">
|
1476
|
+
11: <%=
|
1477
|
+
12: yield
|
1478
|
+
13: %>
|
1479
|
+
|
1480
|
+
#{RAILS_ROOT}/app/views/widgets/page.rhtml:10:in `_run_rhtml_47app47views47widgets47page46rhtml'
|
1481
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1482
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1483
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1484
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1485
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:806:in `render_file'
|
1486
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
1487
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
1488
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1489
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1490
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1491
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1492
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
1493
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1494
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:99:in `render'
|
1495
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:98:in `instance_eval'
|
1496
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:98:in `render'
|
1497
|
+
#{RAILS_ROOT}/../../lib/widgets.rb:109:in `for_content'
|
1498
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
1499
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1500
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1501
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1502
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1503
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
1504
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1505
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1506
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1507
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:22:in `b'
|
1508
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1509
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1510
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1511
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1512
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1513
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1514
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1515
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1516
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1517
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1518
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1519
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1520
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1521
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1522
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1523
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1524
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1525
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1526
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1527
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1528
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1529
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1530
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1531
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1532
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.1/sample/rails/public/dispatch.fcgi:24
|
1533
|
+
|
1534
|
+
|
1535
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1536
|
+
SampleController: missing default helper path sample_helper
|
1537
|
+
|
1538
|
+
|
1539
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:02:49) [GET]
|
1540
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1541
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1542
|
+
Rendering within layouts/application
|
1543
|
+
Rendering sample/b
|
1544
|
+
Rendering widgets/b
|
1545
|
+
Rendering widgets/page
|
1546
|
+
Completed in 0.00351 (284 reqs/sec) | Rendering: 0.00226 (64%) | 200 OK [http://localhost/sample/b/]
|
1547
|
+
SampleController: missing default helper path sample_helper
|
1548
|
+
|
1549
|
+
|
1550
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:03:00) [GET]
|
1551
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1552
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1553
|
+
Rendering within layouts/application
|
1554
|
+
Rendering sample/b
|
1555
|
+
Rendering widgets/b
|
1556
|
+
Rendering widgets/page
|
1557
|
+
Completed in 0.00311 (321 reqs/sec) | Rendering: 0.00165 (53%) | 200 OK [http://localhost/sample/b/]
|
1558
|
+
SampleController: missing default helper path sample_helper
|
1559
|
+
|
1560
|
+
|
1561
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:03:06) [GET]
|
1562
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1563
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1564
|
+
Rendering within layouts/application
|
1565
|
+
Rendering sample/b
|
1566
|
+
Rendering widgets/b
|
1567
|
+
Rendering widgets/page
|
1568
|
+
Completed in 0.00279 (357 reqs/sec) | Rendering: 0.00161 (57%) | 200 OK [http://localhost/sample/b/]
|
1569
|
+
SampleController: missing default helper path sample_helper
|
1570
|
+
|
1571
|
+
|
1572
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:03:08) [GET]
|
1573
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1574
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1575
|
+
Rendering within layouts/application
|
1576
|
+
Rendering sample/b
|
1577
|
+
Rendering widgets/b
|
1578
|
+
Rendering widgets/page
|
1579
|
+
Completed in 0.00280 (357 reqs/sec) | Rendering: 0.00160 (57%) | 200 OK [http://localhost/sample/b/]
|
1580
|
+
SampleController: missing default helper path sample_helper
|
1581
|
+
|
1582
|
+
|
1583
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 01:03:30) [GET]
|
1584
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1585
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1586
|
+
Rendering within layouts/application
|
1587
|
+
Rendering sample/b
|
1588
|
+
Rendering widgets/b
|
1589
|
+
Rendering widgets/page
|
1590
|
+
Completed in 0.00305 (328 reqs/sec) | Rendering: 0.00173 (56%) | 200 OK [http://localhost/sample/b/]
|
1591
|
+
SampleController: missing default helper path sample_helper
|
1592
|
+
|
1593
|
+
|
1594
|
+
Processing SampleController#c (for 127.0.0.1 at 2007-07-18 01:08:15) [GET]
|
1595
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1596
|
+
Parameters: {"action"=>"c", "controller"=>"sample"}
|
1597
|
+
Rendering layoutfalseinline var: <%= @var %>
|
1598
|
+
<hr>
|
1599
|
+
<%= @c %>
|
1600
|
+
within layouts/application
|
1601
|
+
Rendering widgets/c
|
1602
|
+
Rendering widgets/page
|
1603
|
+
Completed in 0.00411 (243 reqs/sec) | Rendering: 0.00285 (69%) | 200 OK [http://localhost/sample/c/]
|
1604
|
+
SampleController: missing default helper path sample_helper
|
1605
|
+
|
1606
|
+
|
1607
|
+
Processing SampleController#c (for 127.0.0.1 at 2007-07-18 01:08:28) [GET]
|
1608
|
+
Session ID: ca4280f4748b25401d19d311d96cbdde
|
1609
|
+
Parameters: {"action"=>"c", "controller"=>"sample"}
|
1610
|
+
Rendering layoutfalseinline var: <%= @var %>
|
1611
|
+
<hr>
|
1612
|
+
<%= @c %>
|
1613
|
+
within layouts/application
|
1614
|
+
Rendering widgets/c
|
1615
|
+
Rendering widgets/page
|
1616
|
+
Completed in 0.00265 (377 reqs/sec) | Rendering: 0.00148 (55%) | 200 OK [http://localhost/sample/c/]
|