widgetz 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/widgets.rb +45 -19
- data/{sample/rails → rails}/README +0 -0
- data/{sample/rails → rails}/Rakefile +0 -0
- data/{sample/rails → rails}/app/controllers/application.rb +2 -1
- data/{sample/rails → rails}/app/controllers/sample_controller.rb +4 -0
- data/{sample/rails → rails}/app/helpers/application_helper.rb +0 -0
- data/rails/app/views/layouts/application.rhtml +5 -0
- data/{sample/rails → rails}/app/views/sample/b.rhtml +0 -0
- data/{sample/rails → rails}/app/views/widgets/b.rhtml +0 -0
- data/{sample/rails → rails}/app/views/widgets/c.rhtml +0 -0
- data/{sample/rails → rails}/app/views/widgets/page.rhtml +0 -0
- data/{sample/rails → rails}/config/boot.rb +0 -0
- data/{sample/rails → rails}/config/database.yml +0 -0
- data/{sample/rails → rails}/config/environment.rb +1 -1
- data/{sample/rails → rails}/config/environments/development.rb +0 -0
- data/{sample/rails → rails}/config/environments/production.rb +0 -0
- data/{sample/rails → rails}/config/environments/test.rb +0 -0
- data/{sample/rails → rails}/config/lighttpd.conf +0 -0
- data/{sample/rails → rails}/config/routes.rb +0 -0
- data/{sample/rails → rails}/doc/README_FOR_APP +0 -0
- data/{sample/rails → rails}/lib/widgets/b.rb +0 -0
- data/{sample/rails → rails}/lib/widgets/c.rb +0 -0
- data/{sample/rails → rails}/lib/widgets/page.rb +0 -0
- data/rails/log/development.log +3127 -0
- data/{sample/rails → rails}/log/fastcgi.crash.log +18 -0
- data/rails/log/lighttpd.access.log +122 -0
- data/{sample/rails → rails}/log/lighttpd.error.log +18 -0
- data/{sample/rails → rails}/log/production.log +0 -0
- data/{sample/rails → rails}/log/server.log +0 -0
- data/{sample/rails → rails}/log/test.log +0 -0
- data/{sample/rails → rails}/public/404.html +0 -0
- data/{sample/rails → rails}/public/500.html +0 -0
- data/{sample/rails → rails}/public/dispatch.cgi +0 -0
- data/{sample/rails → rails}/public/dispatch.fcgi +0 -0
- data/{sample/rails → rails}/public/dispatch.rb +0 -0
- data/{sample/rails → rails}/public/favicon.ico +0 -0
- data/{sample/rails → rails}/public/images/rails.png +0 -0
- data/{sample/rails → rails}/public/index.html +0 -0
- data/{sample/rails → rails}/public/javascripts/application.js +0 -0
- data/{sample/rails → rails}/public/javascripts/controls.js +0 -0
- data/{sample/rails → rails}/public/javascripts/dragdrop.js +0 -0
- data/{sample/rails → rails}/public/javascripts/effects.js +0 -0
- data/{sample/rails → rails}/public/javascripts/prototype.js +0 -0
- data/{sample/rails → rails}/public/robots.txt +0 -0
- data/{sample/rails → rails}/script/about +0 -0
- data/{sample/rails → rails}/script/breakpointer +0 -0
- data/{sample/rails → rails}/script/console +0 -0
- data/{sample/rails → rails}/script/destroy +0 -0
- data/{sample/rails → rails}/script/generate +0 -0
- data/{sample/rails → rails}/script/performance/benchmarker +0 -0
- data/{sample/rails → rails}/script/performance/profiler +0 -0
- data/{sample/rails → rails}/script/plugin +0 -0
- data/{sample/rails → rails}/script/process/inspector +0 -0
- data/{sample/rails → rails}/script/process/reaper +0 -0
- data/{sample/rails → rails}/script/process/spawner +0 -0
- data/{sample/rails → rails}/script/runner +0 -0
- data/{sample/rails → rails}/script/server +0 -0
- data/{sample/rails → rails}/test/test_helper.rb +0 -0
- data/{sample/rails → rails}/tmp/sessions/ruby_sess.45bcc3811314bce8 +0 -0
- data/{sample/rails/tmp/sessions/ruby_sess.b741114026a9d990 → rails/tmp/sessions/ruby_sess.6c2777f8b5918b3b} +0 -0
- data/rails/tmp/sessions/ruby_sess.723038c439283f00 +0 -0
- data/rails/tmp/sessions/ruby_sess.b741114026a9d990 +0 -0
- metadata +103 -103
- data/sample/rails/app/views/layouts/application.rhtml +0 -1
- data/sample/rails/log/development.log +0 -1616
- data/sample/rails/log/lighttpd.access.log +0 -59
- data/widgetz-0.0.1.gem +0 -0
data/lib/widgets.rb
CHANGED
@@ -3,43 +3,45 @@ require 'attributes'
|
|
3
3
|
|
4
4
|
class Widget
|
5
5
|
#--{{{
|
6
|
-
VERSION = '0.0.
|
6
|
+
VERSION = '0.0.2' unless defined? Widget::VERSION
|
7
7
|
def self.version() VERSION end
|
8
8
|
|
9
9
|
class << self
|
10
10
|
attribute('libdir'){ File.join RAILS_ROOT, 'lib', 'widgets' }
|
11
11
|
|
12
12
|
def for_controller controller, name, *a, &b
|
13
|
+
#--{{{
|
13
14
|
klass = Widget.load name
|
14
|
-
|
15
|
+
|
16
|
+
returning( klass.allocate ) do |obj|
|
17
|
+
obj.instance_eval do
|
18
|
+
@controller = controller
|
19
|
+
@defined_at = caller
|
20
|
+
initialize *a, &b
|
21
|
+
end
|
22
|
+
end
|
23
|
+
#--}}}
|
15
24
|
end
|
16
25
|
|
17
26
|
def load name
|
27
|
+
#--{{{
|
18
28
|
lib = File.join libdir, "#{ name }.rb"
|
19
29
|
RAILS_ENV == "development" ? Kernel.load(lib) : Kernel.require(lib)
|
20
|
-
#RAILS_ENV == "development" ? eval(IO.read((lib))) : Kernel.require(lib)
|
21
|
-
#eval(IO.read((lib)))
|
22
30
|
begin
|
23
31
|
const_for name
|
24
32
|
rescue
|
25
33
|
raise "wtf? Widget '#{ name }' was not defined in #{ lib }"
|
26
34
|
end
|
35
|
+
#--}}}
|
27
36
|
end
|
28
37
|
|
29
38
|
def const_for name
|
39
|
+
#--{{{
|
30
40
|
consts = name.camelize.split %r/::/
|
31
41
|
klass = Widget
|
32
42
|
consts.each{|const| klass = klass.const_get(const)}
|
33
43
|
klass
|
34
|
-
|
35
|
-
|
36
|
-
def new *a, &b
|
37
|
-
returning( allocate ) do |obj|
|
38
|
-
obj.instance_eval do
|
39
|
-
@in_render = false
|
40
|
-
initialize *a, &b
|
41
|
-
end
|
42
|
-
end
|
44
|
+
#--}}}
|
43
45
|
end
|
44
46
|
end
|
45
47
|
FileUtils.mkdir_p libdir rescue nil
|
@@ -50,16 +52,23 @@ class Widget
|
|
50
52
|
attribute 'template'
|
51
53
|
attribute 'show' => true
|
52
54
|
attribute 'content' => ''
|
55
|
+
attribute 'in_render' => false
|
56
|
+
attribute 'defined_at'
|
53
57
|
|
54
58
|
def inspect
|
59
|
+
#--{{{
|
55
60
|
"#{ name }=#{ super }"
|
61
|
+
#--}}}
|
56
62
|
end
|
57
63
|
|
58
64
|
def template
|
65
|
+
#--{{{
|
59
66
|
"widgets/#{ name }"
|
67
|
+
#--}}}
|
60
68
|
end
|
61
69
|
|
62
70
|
def configure options = {} , &block
|
71
|
+
#--{{{
|
63
72
|
options.to_options!
|
64
73
|
has_attribute = attributes.inject({}){|h,k| h.update k.to_s => true, k.to_sym => true}
|
65
74
|
options.each do |k,v|
|
@@ -71,24 +80,30 @@ class Widget
|
|
71
80
|
end
|
72
81
|
instance_eval &block if block
|
73
82
|
self
|
83
|
+
#--}}}
|
74
84
|
end
|
75
85
|
|
76
86
|
def inherited_attributes
|
87
|
+
#--{{{
|
77
88
|
ancestors = self.class.ancestors
|
78
89
|
offset = ancestors.index Widget
|
79
90
|
ancestors = ancestors[0, offset + 1].compact if offset
|
80
91
|
ancestors.reverse.map do |ancestor|
|
81
92
|
ancestor.attributes
|
82
93
|
end.flatten.uniq
|
94
|
+
#--}}}
|
83
95
|
end
|
84
96
|
|
85
97
|
def to_hash
|
98
|
+
#--{{{
|
86
99
|
inherited_attributes.inject({}){|h,a| h.update a.to_sym => send(a)}
|
100
|
+
#--}}}
|
87
101
|
end
|
88
102
|
|
89
103
|
def render options = {}
|
90
|
-
|
91
|
-
|
104
|
+
#--{{{
|
105
|
+
raise "recursive render of #{ name }" if in_render?
|
106
|
+
in_render true
|
92
107
|
begin
|
93
108
|
return '' unless show?
|
94
109
|
widget = self
|
@@ -99,30 +114,40 @@ class Widget
|
|
99
114
|
render_to_string :file => template, :use_full_path => true, :locals => locals
|
100
115
|
end
|
101
116
|
ensure
|
102
|
-
|
117
|
+
in_render false
|
103
118
|
end
|
119
|
+
#--}}}
|
104
120
|
end
|
105
121
|
alias_method "to_s", "render"
|
106
122
|
|
107
123
|
def with_content
|
124
|
+
#--{{{
|
108
125
|
content yield
|
109
126
|
render
|
127
|
+
#--}}}
|
110
128
|
end
|
111
129
|
alias_method "for_content", "with_content"
|
112
130
|
|
113
131
|
def [] k
|
132
|
+
#--{{{
|
114
133
|
send k
|
134
|
+
#--}}}
|
115
135
|
end
|
116
136
|
|
117
137
|
def []= k, v
|
138
|
+
#--{{{
|
118
139
|
send k, v
|
140
|
+
#--}}}
|
119
141
|
end
|
120
142
|
|
121
143
|
def widget name, *a, &b
|
144
|
+
#--{{{
|
122
145
|
controller.widget name, *a, &b
|
146
|
+
#--}}}
|
123
147
|
end
|
124
148
|
|
125
|
-
def self.
|
149
|
+
def self.class_factory path, &block
|
150
|
+
#--{{{
|
126
151
|
classes = path.camelize.split %r/::/
|
127
152
|
klass = Widget
|
128
153
|
classes.each do |const|
|
@@ -135,6 +160,7 @@ class Widget
|
|
135
160
|
end
|
136
161
|
klass.module_eval &block
|
137
162
|
klass
|
163
|
+
#--}}}
|
138
164
|
end
|
139
165
|
#--}}}
|
140
166
|
end
|
@@ -148,7 +174,7 @@ if defined?(Rails)
|
|
148
174
|
end
|
149
175
|
end
|
150
176
|
|
151
|
-
def Widget(*a, &b) Widget.
|
177
|
+
def Widget(*a, &b) Widget.class_factory(*a, &b) end
|
152
178
|
|
153
179
|
Widgetz = Widget unless defined? Widgetz
|
154
|
-
def Widgetz(*a, &b) Widgetz.
|
180
|
+
def Widgetz(*a, &b) Widgetz.class_factory(*a, &b) end
|
File without changes
|
File without changes
|
@@ -1,4 +1,8 @@
|
|
1
1
|
class SampleController < ApplicationController
|
2
|
+
def index
|
3
|
+
render :inline =>
|
4
|
+
%w[ a b c ].map{|action| "<a href='/sample/#{ action }'> /sample/#{ action } </a>"}.join('<br>')
|
5
|
+
end
|
2
6
|
#
|
3
7
|
# check out app/controllers/application.rb and app/views/layout/application.rb
|
4
8
|
#
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -0,0 +1,3127 @@
|
|
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/]
|
1617
|
+
|
1618
|
+
|
1619
|
+
Processing ApplicationController#index (for 127.0.0.1 at 2007-07-18 17:00:48) [GET]
|
1620
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
1621
|
+
Parameters: {}
|
1622
|
+
|
1623
|
+
|
1624
|
+
ActionController::RoutingError (no route found to match "/widgetz/" with {:method=>:get}):
|
1625
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/routing.rb:1292:in `recognize_path'
|
1626
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/routing.rb:1282:in `recognize'
|
1627
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:40:in `dispatch'
|
1628
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1629
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1630
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1631
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1632
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1633
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1634
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1635
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1636
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1637
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1638
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
1639
|
+
|
1640
|
+
|
1641
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (404 Page Not Found)
|
1642
|
+
SampleController: missing default helper path sample_helper
|
1643
|
+
|
1644
|
+
|
1645
|
+
Processing SampleController#index (for 127.0.0.1 at 2007-07-18 17:01:01) [GET]
|
1646
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
1647
|
+
Parameters: {"action"=>"index", "controller"=>"sample"}
|
1648
|
+
|
1649
|
+
|
1650
|
+
ActionController::UnknownAction (No action responded to index):
|
1651
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1652
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1653
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1654
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1655
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1656
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1657
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1658
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1659
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1660
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1661
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1662
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1663
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1664
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1665
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1666
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1667
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1668
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1669
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1670
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1671
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1672
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1673
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
1674
|
+
|
1675
|
+
|
1676
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (404 Page Not Found)
|
1677
|
+
SampleController: missing default helper path sample_helper
|
1678
|
+
|
1679
|
+
|
1680
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:01:05) [GET]
|
1681
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
1682
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
1683
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
1684
|
+
|
1685
|
+
|
1686
|
+
ActionView::TemplateError (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml) on line #1 of app/views/layouts/application.rhtml:
|
1687
|
+
1: <%= @page.for_content{ yield } %>
|
1688
|
+
|
1689
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
1690
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
1691
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
1692
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
1693
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1694
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1695
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1696
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1697
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
1698
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1699
|
+
#{RAILS_ROOT}/../lib/widgets.rb:112:in `render'
|
1700
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `instance_eval'
|
1701
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `render'
|
1702
|
+
#{RAILS_ROOT}/../lib/widgets.rb:124:in `for_content'
|
1703
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
1704
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1705
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1706
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1707
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1708
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
1709
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1710
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1711
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1712
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:6:in `a'
|
1713
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1714
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1715
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1716
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1717
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1718
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1719
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1720
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1721
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1722
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1723
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1724
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1725
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1726
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1727
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1728
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1729
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1730
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1731
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1732
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1733
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1734
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1735
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1736
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1737
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
1738
|
+
|
1739
|
+
|
1740
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1741
|
+
SampleController: missing default helper path sample_helper
|
1742
|
+
|
1743
|
+
|
1744
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 17:01:31) [GET]
|
1745
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
1746
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
1747
|
+
Rendering within layouts/application
|
1748
|
+
Rendering sample/b
|
1749
|
+
|
1750
|
+
|
1751
|
+
ActionView::TemplateError (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml) on line #2 of app/views/sample/b.rhtml:
|
1752
|
+
1: the widget b <hr>
|
1753
|
+
2: <%= @b %>
|
1754
|
+
|
1755
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
1756
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
1757
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
1758
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
1759
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1760
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1761
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1762
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1763
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
1764
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1765
|
+
#{RAILS_ROOT}/../lib/widgets.rb:112:in `to_s'
|
1766
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `instance_eval'
|
1767
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `to_s'
|
1768
|
+
#{RAILS_ROOT}/app/views/sample/b.rhtml:2:in `_run_rhtml_47app47views47sample47b46rhtml'
|
1769
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1770
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1771
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1772
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1773
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:806:in `render_file'
|
1774
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:711:in `render_with_no_layout'
|
1775
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:247:in `render_without_benchmark'
|
1776
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1777
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1778
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1779
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:14:in `b'
|
1780
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1781
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1782
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1783
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1784
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1785
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1786
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1787
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1788
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1789
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1790
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1791
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1792
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1793
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1794
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1795
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1796
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1797
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1798
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1799
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1800
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1801
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1802
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1803
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1804
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
1805
|
+
|
1806
|
+
|
1807
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1808
|
+
SampleController: missing default helper path sample_helper
|
1809
|
+
|
1810
|
+
|
1811
|
+
Processing SampleController#c (for 127.0.0.1 at 2007-07-18 17:01:35) [GET]
|
1812
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
1813
|
+
Parameters: {"action"=>"c", "controller"=>"sample"}
|
1814
|
+
Rendering layoutfalseinline var: <%= @var %>
|
1815
|
+
<hr>
|
1816
|
+
<%= @c %>
|
1817
|
+
within layouts/application
|
1818
|
+
|
1819
|
+
|
1820
|
+
ActionController::MissingTemplate (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml):
|
1821
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
1822
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
1823
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
1824
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
1825
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1826
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1827
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1828
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1829
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
1830
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1831
|
+
/../lib/widgets.rb:112:in `to_s'
|
1832
|
+
/../lib/widgets.rb:111:in `instance_eval'
|
1833
|
+
/../lib/widgets.rb:111:in `to_s'
|
1834
|
+
compiled-template:3:in `_run_1'
|
1835
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1836
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1837
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1838
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:811:in `render_template'
|
1839
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:744:in `render_with_no_layout'
|
1840
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:244:in `render_without_benchmark'
|
1841
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1842
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1843
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1844
|
+
/app/controllers/sample_controller.rb:24:in `c'
|
1845
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1846
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1847
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1848
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1849
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1850
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1851
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1852
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1853
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1854
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1855
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1856
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1857
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1858
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1859
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1860
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1861
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1862
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1863
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1864
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1865
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1866
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1867
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1868
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1869
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
1870
|
+
|
1871
|
+
|
1872
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1873
|
+
SampleController: missing default helper path sample_helper
|
1874
|
+
|
1875
|
+
|
1876
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:01:54) [GET]
|
1877
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
1878
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
1879
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
1880
|
+
|
1881
|
+
|
1882
|
+
ActionView::TemplateError (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml) on line #1 of app/views/layouts/application.rhtml:
|
1883
|
+
1: <%= @page.for_content{ yield } %>
|
1884
|
+
|
1885
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
1886
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
1887
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
1888
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
1889
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1890
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1891
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1892
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1893
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
1894
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1895
|
+
#{RAILS_ROOT}/../lib/widgets.rb:112:in `render'
|
1896
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `instance_eval'
|
1897
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `render'
|
1898
|
+
#{RAILS_ROOT}/../lib/widgets.rb:124:in `for_content'
|
1899
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
1900
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1901
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1902
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1903
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1904
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
1905
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1906
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1907
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1908
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:6:in `a'
|
1909
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1910
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1911
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1912
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1913
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1914
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1915
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1916
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1917
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1918
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1919
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1920
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1921
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1922
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1923
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1924
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1925
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1926
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1927
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1928
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1929
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1930
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1931
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1932
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1933
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
1934
|
+
|
1935
|
+
|
1936
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
1937
|
+
SampleController: missing default helper path sample_helper
|
1938
|
+
|
1939
|
+
|
1940
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:04:11) [GET]
|
1941
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
1942
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
1943
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
1944
|
+
|
1945
|
+
|
1946
|
+
ActionView::TemplateError (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml) on line #1 of app/views/layouts/application.rhtml:
|
1947
|
+
1: <%= @page.for_content{ yield } %>
|
1948
|
+
|
1949
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
1950
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
1951
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
1952
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
1953
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1954
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1955
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1956
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1957
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
1958
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
1959
|
+
#{RAILS_ROOT}/../lib/widgets.rb:112:in `render'
|
1960
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `instance_eval'
|
1961
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `render'
|
1962
|
+
#{RAILS_ROOT}/../lib/widgets.rb:124:in `for_content'
|
1963
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
1964
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
1965
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
1966
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
1967
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
1968
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
1969
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1970
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1971
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
1972
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
1973
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
1974
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
1975
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
1976
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
1977
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1978
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
1979
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
1980
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
1981
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
1982
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
1983
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
1984
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
1985
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
1986
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
1987
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
1988
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
1989
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
1990
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
1991
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
1992
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
1993
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
1994
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
1995
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
1996
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
1997
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
1998
|
+
|
1999
|
+
|
2000
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2001
|
+
SampleController: missing default helper path sample_helper
|
2002
|
+
|
2003
|
+
|
2004
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:04:12) [GET]
|
2005
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2006
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2007
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2008
|
+
|
2009
|
+
|
2010
|
+
ActionView::TemplateError (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml) on line #1 of app/views/layouts/application.rhtml:
|
2011
|
+
1: <%= @page.for_content{ yield } %>
|
2012
|
+
|
2013
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
2014
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
2015
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
2016
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
2017
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2018
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2019
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2020
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
2021
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
2022
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
2023
|
+
#{RAILS_ROOT}/../lib/widgets.rb:112:in `render'
|
2024
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `instance_eval'
|
2025
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `render'
|
2026
|
+
#{RAILS_ROOT}/../lib/widgets.rb:124:in `for_content'
|
2027
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2028
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2029
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2030
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2031
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2032
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2033
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2034
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2035
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2036
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2037
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2038
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2039
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2040
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2041
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2042
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2043
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2044
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2045
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2046
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2047
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2048
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2049
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2050
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2051
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2052
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2053
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2054
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2055
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2056
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2057
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2058
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2059
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2060
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2061
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2062
|
+
|
2063
|
+
|
2064
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2065
|
+
SampleController: missing default helper path sample_helper
|
2066
|
+
|
2067
|
+
|
2068
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:04:17) [GET]
|
2069
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2070
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2071
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2072
|
+
|
2073
|
+
|
2074
|
+
ActionView::TemplateError (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml) on line #1 of app/views/layouts/application.rhtml:
|
2075
|
+
1: <%= @page.for_content{ yield } %>
|
2076
|
+
|
2077
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
2078
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
2079
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
2080
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
2081
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2082
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2083
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2084
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
2085
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
2086
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
2087
|
+
#{RAILS_ROOT}/../lib/widgets.rb:112:in `render'
|
2088
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `instance_eval'
|
2089
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `render'
|
2090
|
+
#{RAILS_ROOT}/../lib/widgets.rb:124:in `for_content'
|
2091
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2092
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2093
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2094
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2095
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2096
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2097
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2098
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2099
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2100
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2101
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2102
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2103
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2104
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2105
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2106
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2107
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2108
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2109
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2110
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2111
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2112
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2113
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2114
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2115
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2116
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2117
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2118
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2119
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2120
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2121
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2122
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2123
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2124
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2125
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2126
|
+
|
2127
|
+
|
2128
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2129
|
+
SampleController: missing default helper path sample_helper
|
2130
|
+
|
2131
|
+
|
2132
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:04:21) [GET]
|
2133
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2134
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2135
|
+
|
2136
|
+
|
2137
|
+
MissingSourceFile (no such file to load -- /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets):
|
2138
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
2139
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
2140
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:342:in `new_constants_in'
|
2141
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/dependencies.rb:488:in `load'
|
2142
|
+
/app/controllers/sample_controller.rb:6:in `a'
|
2143
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2144
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2145
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2146
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2147
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2148
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2149
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2150
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2151
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2152
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2153
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2154
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2155
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2156
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2157
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2158
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2159
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2160
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2161
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2162
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2163
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2164
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2165
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2166
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2167
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2168
|
+
|
2169
|
+
|
2170
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2171
|
+
SampleController: missing default helper path sample_helper
|
2172
|
+
|
2173
|
+
|
2174
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:04:27) [GET]
|
2175
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2176
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2177
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2178
|
+
|
2179
|
+
|
2180
|
+
ActionView::TemplateError (["widgets/widget", "widget"]) on line #1 of app/views/layouts/application.rhtml:
|
2181
|
+
1: <%= @page.for_content{ yield } %>
|
2182
|
+
|
2183
|
+
#{RAILS_ROOT}/../lib/widgets.rb:109:in `render'
|
2184
|
+
#{RAILS_ROOT}/../lib/widgets.rb:125:in `for_content'
|
2185
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2186
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2187
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2188
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2189
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2190
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2191
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2192
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2193
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2194
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2195
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2196
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2197
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2198
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2199
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2200
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2201
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2202
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2203
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2204
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2205
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2206
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2207
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2208
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2209
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2210
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2211
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2212
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2213
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2214
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2215
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2216
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2217
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2218
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2219
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2220
|
+
|
2221
|
+
|
2222
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2223
|
+
SampleController: missing default helper path sample_helper
|
2224
|
+
|
2225
|
+
|
2226
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:06:36) [GET]
|
2227
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2228
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2229
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2230
|
+
|
2231
|
+
|
2232
|
+
ActionView::TemplateError (Missing template /Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views/widgets/widget.rhtml) on line #1 of app/views/layouts/application.rhtml:
|
2233
|
+
1: <%= @page.for_content{ yield } %>
|
2234
|
+
|
2235
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1205:in `assert_existence_of_template_file'
|
2236
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:804:in `render_file'
|
2237
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:738:in `render_with_no_layout'
|
2238
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
2239
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2240
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2241
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2242
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
2243
|
+
/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/deprecation.rb:44:in `silence'
|
2244
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:786:in `render_to_string'
|
2245
|
+
#{RAILS_ROOT}/../lib/widgets.rb:112:in `render'
|
2246
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `instance_eval'
|
2247
|
+
#{RAILS_ROOT}/../lib/widgets.rb:111:in `render'
|
2248
|
+
#{RAILS_ROOT}/../lib/widgets.rb:124:in `for_content'
|
2249
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2250
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2251
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2252
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2253
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2254
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2255
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2256
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2257
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2258
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2259
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2260
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2261
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2262
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2263
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2264
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2265
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2266
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2267
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2268
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2269
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2270
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2271
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2272
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2273
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2274
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2275
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2276
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2277
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2278
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2279
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2280
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2281
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2282
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2283
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2284
|
+
|
2285
|
+
|
2286
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2287
|
+
SampleController: missing default helper path sample_helper
|
2288
|
+
|
2289
|
+
|
2290
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:06:58) [GET]
|
2291
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2292
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2293
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2294
|
+
|
2295
|
+
|
2296
|
+
ActionView::TemplateError (widget=#<Widget:0x354e518 @name="widget", @controller=#<SampleController:0x354f378 @request_origin="127.0.0.1 at 2007-07-18 17:06:58", @template=#<#<Class:0x354e2d4>:0x354e2ac @_params={"action"=>"a", "controller"=>"sample"}, @page=widget=#<Widget:0x354e518 ...>, @request_origin="127.0.0.1 at 2007-07-18 17:06:58", @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @assigns_added=true, @variables_added=nil, @_flash={}, @params={"action"=>"a", "controller"=>"sample"}, @response=#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, @action_name="a", @_session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @before_filter_chain_aborted=false, @_request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @controller=#<SampleController:0x354f378 ...>, @base_path="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", @ignore_missing_templates=nil, @_headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @content_for_layout="forty-two", @logger=#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, @template_class=ActionView::Base, @assigns={"template_root"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", "template_class"=>ActionView::Base, "_session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "response"=>#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, "action_name"=>"a", "_response"=>#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, "session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "url"=>#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, "template"=>#<#<Class:0x354e2d4>:0x354e2ac ...>, "request_origin"=>"127.0.0.1 at 2007-07-18 17:06:58", "_cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "_request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "params"=>{"action"=>"a", "controller"=>"sample"}, "_flash"=>{}, "variables_added"=>nil, "_headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "ignore_missing_templates"=>nil, "request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "page"=>widget=#<Widget:0x354e518 ...>, "logger"=>#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, "flash"=>{}, "_params"=>{"action"=>"a", "controller"=>"sample"}, "headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "before_filter_chain_aborted"=>false}, @_cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @first_render="layouts/application", @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @url=#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @flash={}, @_response=#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, @template_root="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views">, @_params={"action"=>"a", "controller"=>"sample"}, @page=widget=#<Widget:0x354e518 ...>, @variables_added=true, @_flash={}, @response=#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac @_params={"action"=>"a", "controller"=>"sample"}, @page=widget=#<Widget:0x354e518 ...>, @request_origin="127.0.0.1 at 2007-07-18 17:06:58", @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @assigns_added=true, @variables_added=nil, @_flash={}, @params={"action"=>"a", "controller"=>"sample"}, @response=#<ActionController::CgiResponse:0x357e010 ...>, @action_name="a", @_session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @before_filter_chain_aborted=false, @_request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @controller=#<SampleController:0x354f378 ...>, @base_path="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", @ignore_missing_templates=nil, @_headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @content_for_layout="forty-two", @logger=#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, @template_class=ActionView::Base, @assigns={"template_root"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", "template_class"=>ActionView::Base, "_session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "response"=>#<ActionController::CgiResponse:0x357e010 ...>, "action_name"=>"a", "_response"=>#<ActionController::CgiResponse:0x357e010 ...>, "session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "url"=>#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, "template"=>#<#<Class:0x354e2d4>:0x354e2ac ...>, "request_origin"=>"127.0.0.1 at 2007-07-18 17:06:58", "_cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "_request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "params"=>{"action"=>"a", "controller"=>"sample"}, "_flash"=>{}, "variables_added"=>nil, "_headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "ignore_missing_templates"=>nil, "request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "page"=>widget=#<Widget:0x354e518 ...>, "logger"=>#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, "flash"=>{}, "_params"=>{"action"=>"a", "controller"=>"sample"}, "headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "before_filter_chain_aborted"=>false}, @_cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @first_render="layouts/application", @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @url=#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @flash={}, @_response=#<ActionController::CgiResponse:0x357e010 ...>, @template_root="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views">, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, @params={"action"=>"a", "controller"=>"sample"}, @action_name="a", @_session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @_request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @before_filter_chain_aborted=false, @_headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @performed_redirect=false, @assigns={"template_root"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", "template_class"=>ActionView::Base, "_session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "response"=>#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac @_params={"action"=>"a", "controller"=>"sample"}, @page=widget=#<Widget:0x354e518 ...>, @request_origin="127.0.0.1 at 2007-07-18 17:06:58", @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @assigns_added=true, @variables_added=nil, @_flash={}, @params={"action"=>"a", "controller"=>"sample"}, @response=#<ActionController::CgiResponse:0x357e010 ...>, @action_name="a", @_session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @before_filter_chain_aborted=false, @_request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @controller=#<SampleController:0x354f378 ...>, @base_path="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", @ignore_missing_templates=nil, @_headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @content_for_layout="forty-two", @logger=#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, @template_class=ActionView::Base, @assigns={...}, @_cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @first_render="layouts/application", @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @url=#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @flash={}, @_response=#<ActionController::CgiResponse:0x357e010 ...>, @template_root="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views">, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, "action_name"=>"a", "_response"=>#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac @_params={"action"=>"a", "controller"=>"sample"}, @page=widget=#<Widget:0x354e518 ...>, @request_origin="127.0.0.1 at 2007-07-18 17:06:58", @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @assigns_added=true, @variables_added=nil, @_flash={}, @params={"action"=>"a", "controller"=>"sample"}, @response=#<ActionController::CgiResponse:0x357e010 ...>, @action_name="a", @_session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @before_filter_chain_aborted=false, @_request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @controller=#<SampleController:0x354f378 ...>, @base_path="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", @ignore_missing_templates=nil, @_headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @content_for_layout="forty-two", @logger=#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, @template_class=ActionView::Base, @assigns={...}, @_cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @first_render="layouts/application", @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @url=#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @flash={}, @_response=#<ActionController::CgiResponse:0x357e010 ...>, @template_root="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views">, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, "session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "url"=>#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, "template"=>#<#<Class:0x354e2d4>:0x354e2ac @_params={"action"=>"a", "controller"=>"sample"}, @page=widget=#<Widget:0x354e518 ...>, @request_origin="127.0.0.1 at 2007-07-18 17:06:58", @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @assigns_added=true, @variables_added=nil, @_flash={}, @params={"action"=>"a", "controller"=>"sample"}, @response=#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, @action_name="a", @_session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @before_filter_chain_aborted=false, @_request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @controller=#<SampleController:0x354f378 ...>, @base_path="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", @ignore_missing_templates=nil, @_headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @content_for_layout="forty-two", @logger=#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, @template_class=ActionView::Base, @assigns={...}, @_cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @first_render="layouts/application", @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @url=#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @flash={}, @_response=#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>, @template_root="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views">, "request_origin"=>"127.0.0.1 at 2007-07-18 17:06:58", "_cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "_request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "params"=>{"action"=>"a", "controller"=>"sample"}, "_flash"=>{}, "variables_added"=>nil, "_headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "ignore_missing_templates"=>nil, "request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "page"=>widget=#<Widget:0x354e518 ...>, "logger"=>#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, "flash"=>{}, "_params"=>{"action"=>"a", "controller"=>"sample"}, "headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "before_filter_chain_aborted"=>false}, @_cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @url=#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @performed_render=false, @flash={}, @_response=#<ActionController::CgiResponse:0x357e010 @template=#<#<Class:0x354e2d4>:0x354e2ac @_params={"action"=>"a", "controller"=>"sample"}, @page=widget=#<Widget:0x354e518 ...>, @request_origin="127.0.0.1 at 2007-07-18 17:06:58", @template=#<#<Class:0x354e2d4>:0x354e2ac ...>, @assigns_added=true, @variables_added=nil, @_flash={}, @params={"action"=>"a", "controller"=>"sample"}, @response=#<ActionController::CgiResponse:0x357e010 ...>, @action_name="a", @_session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @before_filter_chain_aborted=false, @_request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @controller=#<SampleController:0x354f378 ...>, @base_path="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", @ignore_missing_templates=nil, @_headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @content_for_layout="forty-two", @logger=#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, @template_class=ActionView::Base, @assigns={"template_root"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views", "template_class"=>ActionView::Base, "_session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "response"=>#<ActionController::CgiResponse:0x357e010 ...>, "action_name"=>"a", "_response"=>#<ActionController::CgiResponse:0x357e010 ...>, "session"=>#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, "url"=>#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, "template"=>#<#<Class:0x354e2d4>:0x354e2ac ...>, "request_origin"=>"127.0.0.1 at 2007-07-18 17:06:58", "_cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "_request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "params"=>{"action"=>"a", "controller"=>"sample"}, "_flash"=>{}, "variables_added"=>nil, "_headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "ignore_missing_templates"=>nil, "request"=>#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, "cookies"=>{"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, "page"=>widget=#<Widget:0x354e518 ...>, "logger"=>#<Logger:0x273e108 @default_formatter=#<Logger::Formatter:0x273de10 @datetime_format=nil>, @progname=nil, @logdev=#<Logger::LogDevice:0x273da00 @shift_age=0, @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log", @mutex=#<Logger::LogDevice::LogDeviceMutex:0x273cc90 @mon_owner=nil, @mon_waiting_queue=[], @mon_entering_queue=[], @mon_count=0>, @dev=#<File:/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../log/development.log>, @shift_size=1048576>, @level=0, @formatter=nil>, "flash"=>{}, "_params"=>{"action"=>"a", "controller"=>"sample"}, "headers"=>{"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, "before_filter_chain_aborted"=>false}, @_cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @first_render="layouts/application", @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>, @url=#<ActionController::UrlRewriter:0x3548dac @parameters={"action"=>"a", "controller"=>"sample"}, @request=#<ActionController::CgiRequest:0x357e024 @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @query_parameters={}, @symbolized_path_parameters=nil, @request_method=:get, @request_parameters={"action"=>"a", "controller"=>"sample"}, @parameters={"action"=>"a", "controller"=>"sample"}, @content_type=nil, @path_parameters={"action"=>"a", "controller"=>"sample"}, @session_options_with_string_keys={"session_key"=>"_rails_session_id", "prefix"=>"ruby_sess.", "tmpdir"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions/", "session_path"=>"/", "database_manager"=>CGI::Session::PStore}, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @session_options={:session_key=>"_rails_session_id"}, @env={"SERVER_NAME"=>"localhost:3000", "FCGI_ROLE"=>"RESPONDER", "HTTP_ACCEPT_ENCODING"=>"gzip,deflate", "HTTP_USER_AGENT"=>"Mozilla/5.0 (Macintosh; U; Intel Mac OS X; en-US; rv:1.8.1.5) Gecko/20070713 Firefox/2.0.0.5", "PATH_INFO"=>"", "HTTP_CACHE_CONTROL"=>"max-age=0", "HTTP_ACCEPT_LANGUAGE"=>"en-us,en;q=0.5", "HTTP_HOST"=>"localhost:3000", "SERVER_PROTOCOL"=>"HTTP/1.1", "REDIRECT_URI"=>"/dispatch.fcgi", "SCRIPT_NAME"=>"/dispatch.fcgi", "SERVER_ADDR"=>"127.0.0.1", "HTTP_KEEP_ALIVE"=>"300", "REMOTE_ADDR"=>"127.0.0.1", "SERVER_SOFTWARE"=>"lighttpd/1.4.15", "HTTP_COOKIE"=>"_rails_session_id=d4c16df08b030bfd8d17b3793a51825a; Site_session_id=14d5ef314377f90ad9a170fc25912f52", "HTTP_ACCEPT_CHARSET"=>"ISO-8859-1,utf-8;q=0.7,*;q=0.7", "REQUEST_URI"=>"/sample/a", "DOCUMENT_ROOT"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/", "SERVER_PORT"=>"3000", "QUERY_STRING"=>"", "REMOTE_PORT"=>"51360", "GATEWAY_INTERFACE"=>"CGI/1.1", "HTTP_ACCEPT"=>"text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5", "SCRIPT_FILENAME"=>"/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi", "HTTP_CONNECTION"=>"keep-alive", "REDIRECT_STATUS"=>"200", "REQUEST_METHOD"=>"GET"}>>, @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>, @flash={}, @_response=#<ActionController::CgiResponse:0x357e010 ...>, @template_root="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/views">, @cgi=#<FCGI::CGI:0x357e7f4 @params={}, @output_hidden={"_rails_session_id"=>"d4c16df08b030bfd8d17b3793a51825a"}, @output_cookies=[["d4c16df08b030bfd8d17b3793a51825a"]], @cookies={"_rails_session_id"=>["d4c16df08b030bfd8d17b3793a51825a"], "Site_session_id"=>["14d5ef314377f90ad9a170fc25912f52"]}, @args=nil, @multipart=false, @request=#<FCGI:0x357ef24>>, @redirected_to=nil, @headers={"Status"=>"200 OK", "cookie"=>[], "Cache-Control"=>"no-cache"}, @body=nil, @layout="layouts/application", @assigns=[], @session=#<CGI::Session:0x354e090 @session_id="d4c16df08b030bfd8d17b3793a51825a", @dbprot=[#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>], @data={"flash"=>{}}, @dbman=#<CGI::Session::PStore:0x354df14 @p=#<PStore:0x3549b30 @filename="/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../tmp/sessions//ruby_sess.723038c439283f00", @table=nil, @abort=false, @transaction=false, @rdonly=false>, @hash={"flash"=>{}}>, @new_session=false>>>>) on line #1 of app/views/layouts/application.rhtml:
|
2297
|
+
1: <%= raise @page.inspect; @page.for_content{ yield } %>
|
2298
|
+
|
2299
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2300
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2301
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2302
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2303
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2304
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2305
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2306
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2307
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2308
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2309
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2310
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2311
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2312
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2313
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2314
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2315
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2316
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2317
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2318
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2319
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2320
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2321
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2322
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2323
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2324
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2325
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2326
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2327
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2328
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2329
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2330
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2331
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2332
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2333
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2334
|
+
|
2335
|
+
|
2336
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2337
|
+
SampleController: missing default helper path sample_helper
|
2338
|
+
|
2339
|
+
|
2340
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:07:59) [GET]
|
2341
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2342
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2343
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2344
|
+
|
2345
|
+
|
2346
|
+
ActionView::TemplateError (You have a nil object when you didn't expect it!
|
2347
|
+
You might have expected an instance of Array.
|
2348
|
+
The error occurred while evaluating nil.first) on line #1 of app/views/layouts/application.rhtml:
|
2349
|
+
1: <%= raise @page.defined_at.first; @page.for_content{ yield } %>
|
2350
|
+
|
2351
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2352
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2353
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2354
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2355
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2356
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2357
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2358
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2359
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2360
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2361
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2362
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2363
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2364
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2365
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2366
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2367
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2368
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2369
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2370
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2371
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2372
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2373
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2374
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2375
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2376
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2377
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2378
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2379
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2380
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2381
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2382
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2383
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2384
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2385
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2386
|
+
|
2387
|
+
|
2388
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2389
|
+
SampleController: missing default helper path sample_helper
|
2390
|
+
|
2391
|
+
|
2392
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:08:06) [GET]
|
2393
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2394
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2395
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2396
|
+
|
2397
|
+
|
2398
|
+
ActionView::TemplateError (/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:17:in `instance_eval') on line #1 of app/views/layouts/application.rhtml:
|
2399
|
+
1: <%= raise @page.defined_at.first; @page.for_content{ yield } %>
|
2400
|
+
|
2401
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2402
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2403
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2404
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2405
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2406
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2407
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2408
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2409
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2410
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2411
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2412
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2413
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2414
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2415
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2416
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2417
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2418
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2419
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2420
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2421
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2422
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2423
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2424
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2425
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2426
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2427
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2428
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2429
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2430
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2431
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2432
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2433
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2434
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2435
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2436
|
+
|
2437
|
+
|
2438
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2439
|
+
SampleController: missing default helper path sample_helper
|
2440
|
+
|
2441
|
+
|
2442
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:08:27) [GET]
|
2443
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2444
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2445
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2446
|
+
|
2447
|
+
|
2448
|
+
ActionView::TemplateError (/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:17:in `for_controller') on line #1 of app/views/layouts/application.rhtml:
|
2449
|
+
1: <%= raise @page.defined_at[1]; @page.for_content{ yield } %>
|
2450
|
+
|
2451
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2452
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2453
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2454
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2455
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2456
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2457
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2458
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2459
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2460
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2461
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2462
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2463
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2464
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2465
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2466
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2467
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2468
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2469
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2470
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2471
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2472
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2473
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2474
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2475
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2476
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2477
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2478
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2479
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2480
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2481
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2482
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2483
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2484
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2485
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2486
|
+
|
2487
|
+
|
2488
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2489
|
+
SampleController: missing default helper path sample_helper
|
2490
|
+
|
2491
|
+
|
2492
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:08:34) [GET]
|
2493
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2494
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2495
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2496
|
+
|
2497
|
+
|
2498
|
+
ActionView::TemplateError (/opt/local/lib/ruby/gems/1.8/gems/activesupport-1.4.2/lib/active_support/core_ext/object/misc.rb:23:in `returning') on line #1 of app/views/layouts/application.rhtml:
|
2499
|
+
1: <%= raise @page.defined_at[2]; @page.for_content{ yield } %>
|
2500
|
+
|
2501
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2502
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2503
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2504
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2505
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2506
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2507
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2508
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2509
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2510
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2511
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2512
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2513
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2514
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2515
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2516
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2517
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2518
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2519
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2520
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2521
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2522
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2523
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2524
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2525
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2526
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2527
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2528
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2529
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2530
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2531
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2532
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2533
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2534
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2535
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2536
|
+
|
2537
|
+
|
2538
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2539
|
+
SampleController: missing default helper path sample_helper
|
2540
|
+
|
2541
|
+
|
2542
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:08:57) [GET]
|
2543
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2544
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2545
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2546
|
+
|
2547
|
+
|
2548
|
+
ActionView::TemplateError (/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24) on line #1 of app/views/layouts/application.rhtml:
|
2549
|
+
1: <%= raise @page.defined_at.last; @page.for_content{ yield } %>
|
2550
|
+
|
2551
|
+
#{RAILS_ROOT}/app/views/layouts/application.rhtml:1:in `_run_rhtml_47app47views47layouts47application46rhtml'
|
2552
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `send'
|
2553
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:326:in `compile_and_render_template'
|
2554
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:301:in `render_template'
|
2555
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_view/base.rb:260:in `render_file'
|
2556
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:254:in `render_without_benchmark'
|
2557
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2558
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2559
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2560
|
+
#{RAILS_ROOT}/app/controllers/sample_controller.rb:7:in `a'
|
2561
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2562
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2563
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2564
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2565
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2566
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2567
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
2568
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
2569
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
2570
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
2571
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
2572
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
2573
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2574
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2575
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2576
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2577
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2578
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2579
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2580
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2581
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2582
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2583
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2584
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2585
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2586
|
+
|
2587
|
+
|
2588
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
2589
|
+
SampleController: missing default helper path sample_helper
|
2590
|
+
|
2591
|
+
|
2592
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:09:35) [GET]
|
2593
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2594
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2595
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2596
|
+
Completed in 0.00652 (153 reqs/sec) | Rendering: 0.00064 (9%) | 200 OK [http://localhost/sample/a]
|
2597
|
+
SampleController: missing default helper path sample_helper
|
2598
|
+
widget
|
2599
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:10:in `initialize'
|
2600
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2601
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2602
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2603
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2604
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2605
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2606
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2607
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2608
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2609
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2610
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2611
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2612
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2613
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2614
|
+
SampleController: missing default helper path sample_helper
|
2615
|
+
You have a nil object when you didn't expect it!
|
2616
|
+
The error occurred while evaluating nil.headers
|
2617
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:817:in `render_text'
|
2618
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:734:in `render_with_no_layout'
|
2619
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
2620
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2621
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2622
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2623
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:10:in `initialize'
|
2624
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2625
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2626
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2627
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2628
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2629
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2630
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2631
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2632
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2633
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2634
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2635
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2636
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2637
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2638
|
+
SampleController: missing default helper path sample_helper
|
2639
|
+
You have a nil object when you didn't expect it!
|
2640
|
+
The error occurred while evaluating nil.headers
|
2641
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:817:in `render_text'
|
2642
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:734:in `render_with_no_layout'
|
2643
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/layout.rb:256:in `render_without_benchmark'
|
2644
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2645
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
2646
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:50:in `render'
|
2647
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:10:in `initialize'
|
2648
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2649
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2650
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2651
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2652
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2653
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2654
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2655
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2656
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2657
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2658
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2659
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2660
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2661
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2662
|
+
SampleController: missing default helper path sample_helper
|
2663
|
+
|
2664
|
+
|
2665
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:10:40) [GET]
|
2666
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2667
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2668
|
+
Completed in 0.00084 (1194 reqs/sec) | Rendering: 0.00004 (4%) | 200 OK [http://localhost/sample/a]
|
2669
|
+
SampleController: missing default helper path sample_helper
|
2670
|
+
|
2671
|
+
|
2672
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:10:44) [GET]
|
2673
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2674
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2675
|
+
Completed in 0.00640 (156 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2676
|
+
SampleController: missing default helper path sample_helper
|
2677
|
+
|
2678
|
+
|
2679
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:10:45) [GET]
|
2680
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2681
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2682
|
+
Completed in 0.00604 (165 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2683
|
+
SampleController: missing default helper path sample_helper
|
2684
|
+
|
2685
|
+
|
2686
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:10:57) [GET]
|
2687
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2688
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2689
|
+
Completed in 0.00592 (169 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2690
|
+
SampleController: missing default helper path sample_helper
|
2691
|
+
|
2692
|
+
|
2693
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:10:58) [GET]
|
2694
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2695
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2696
|
+
Completed in 0.00599 (167 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2697
|
+
SampleController: missing default helper path sample_helper
|
2698
|
+
|
2699
|
+
|
2700
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:11:45) [GET]
|
2701
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2702
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2703
|
+
Completed in 0.00630 (158 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2704
|
+
SampleController: missing default helper path sample_helper
|
2705
|
+
Widget::Page
|
2706
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:15:in `for_controller'
|
2707
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:174:in `widget'
|
2708
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:9:in `initialize'
|
2709
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2710
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2711
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2712
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2713
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2714
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2715
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2716
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2717
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2718
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2719
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2720
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2721
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2722
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2723
|
+
SampleController: missing default helper path sample_helper
|
2724
|
+
Widget::Page
|
2725
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:15:in `for_controller'
|
2726
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:174:in `widget'
|
2727
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:9:in `initialize'
|
2728
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2729
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2730
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2731
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2732
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2733
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2734
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2735
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2736
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2737
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2738
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2739
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2740
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2741
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2742
|
+
SampleController: missing default helper path sample_helper
|
2743
|
+
Widget::Page
|
2744
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:15:in `for_controller'
|
2745
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:174:in `widget'
|
2746
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:9:in `initialize'
|
2747
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2748
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2749
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2750
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2751
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2752
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2753
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2754
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2755
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2756
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2757
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2758
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2759
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2760
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2761
|
+
SampleController: missing default helper path sample_helper
|
2762
|
+
Widget::Page
|
2763
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:15:in `for_controller'
|
2764
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:174:in `widget'
|
2765
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:9:in `initialize'
|
2766
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2767
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2768
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2769
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2770
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2771
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2772
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2773
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2774
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2775
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2776
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2777
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2778
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2779
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2780
|
+
SampleController: missing default helper path sample_helper
|
2781
|
+
Widget::Page
|
2782
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:15:in `for_controller'
|
2783
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../../lib/widgets.rb:174:in `widget'
|
2784
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:9:in `initialize'
|
2785
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2786
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2787
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2788
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2789
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2790
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2791
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2792
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2793
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2794
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2795
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2796
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2797
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2798
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2799
|
+
SampleController: missing default helper path sample_helper
|
2800
|
+
|
2801
|
+
|
2802
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:12:22) [GET]
|
2803
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2804
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2805
|
+
Completed in 0.00638 (156 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2806
|
+
SampleController: missing default helper path sample_helper
|
2807
|
+
|
2808
|
+
|
2809
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:12:35) [GET]
|
2810
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2811
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2812
|
+
Completed in 0.00605 (165 reqs/sec) | Rendering: 0.00004 (0%) | 200 OK [http://localhost/sample/a]
|
2813
|
+
SampleController: missing default helper path sample_helper
|
2814
|
+
|
2815
|
+
|
2816
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:12:43) [GET]
|
2817
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2818
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2819
|
+
Completed in 0.00590 (169 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2820
|
+
SampleController: missing default helper path sample_helper
|
2821
|
+
|
2822
|
+
|
2823
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:16:00) [GET]
|
2824
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2825
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2826
|
+
Completed in 0.00636 (157 reqs/sec) | Rendering: 0.00006 (0%) | 200 OK [http://localhost/sample/a]
|
2827
|
+
SampleController: missing default helper path sample_helper
|
2828
|
+
|
2829
|
+
|
2830
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:16:01) [GET]
|
2831
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2832
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2833
|
+
Completed in 0.00606 (165 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2834
|
+
SampleController: missing default helper path sample_helper
|
2835
|
+
wrong number of arguments (1 for 2)
|
2836
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:10:in `for_controller'
|
2837
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:10:in `initialize'
|
2838
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2839
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2840
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2841
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2842
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2843
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2844
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2845
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2846
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2847
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2848
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2849
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2850
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2851
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2852
|
+
SampleController: missing default helper path sample_helper
|
2853
|
+
wrong number of arguments (1 for 2)
|
2854
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:10:in `for_controller'
|
2855
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/../config/../app/controllers/application.rb:10:in `initialize'
|
2856
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `new'
|
2857
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
2858
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
2859
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2860
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2861
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2862
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2863
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2864
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2865
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2866
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2867
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2868
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2869
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2870
|
+
SampleController: missing default helper path sample_helper
|
2871
|
+
|
2872
|
+
|
2873
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:17:08) [GET]
|
2874
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2875
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2876
|
+
Completed in 0.00642 (155 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2877
|
+
SampleController: missing default helper path sample_helper
|
2878
|
+
|
2879
|
+
|
2880
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:17:09) [GET]
|
2881
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2882
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2883
|
+
Completed in 0.00595 (167 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2884
|
+
SampleController: missing default helper path sample_helper
|
2885
|
+
|
2886
|
+
|
2887
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:17:51) [GET]
|
2888
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2889
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2890
|
+
Completed in 0.00675 (148 reqs/sec) | Rendering: 0.00006 (0%) | 200 OK [http://localhost/sample/a]
|
2891
|
+
SampleController: missing default helper path sample_helper
|
2892
|
+
|
2893
|
+
|
2894
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:17:52) [GET]
|
2895
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2896
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2897
|
+
Completed in 0.00689 (145 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2898
|
+
SampleController: missing default helper path sample_helper
|
2899
|
+
|
2900
|
+
|
2901
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:18:06) [GET]
|
2902
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2903
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2904
|
+
Completed in 0.00667 (149 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2905
|
+
SampleController: missing default helper path sample_helper
|
2906
|
+
|
2907
|
+
|
2908
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:18:07) [GET]
|
2909
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2910
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2911
|
+
Completed in 0.00644 (155 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2912
|
+
SampleController: missing default helper path sample_helper
|
2913
|
+
|
2914
|
+
|
2915
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:18:11) [GET]
|
2916
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2917
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2918
|
+
Completed in 0.00635 (157 reqs/sec) | Rendering: 0.00004 (0%) | 200 OK [http://localhost/sample/a]
|
2919
|
+
SampleController: missing default helper path sample_helper
|
2920
|
+
|
2921
|
+
|
2922
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:22:08) [GET]
|
2923
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2924
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2925
|
+
Completed in 0.00645 (154 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2926
|
+
SampleController: missing default helper path sample_helper
|
2927
|
+
|
2928
|
+
|
2929
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:29:59) [GET]
|
2930
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2931
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2932
|
+
Completed in 0.00691 (144 reqs/sec) | Rendering: 0.00005 (0%) | 200 OK [http://localhost/sample/a]
|
2933
|
+
SampleController: missing default helper path sample_helper
|
2934
|
+
|
2935
|
+
|
2936
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:30:13) [GET]
|
2937
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2938
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2939
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2940
|
+
Rendering widgets/page
|
2941
|
+
Completed in 0.00256 (390 reqs/sec) | Rendering: 0.00183 (71%) | 200 OK [http://localhost/sample/a]
|
2942
|
+
SampleController: missing default helper path sample_helper
|
2943
|
+
|
2944
|
+
|
2945
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:31:03) [GET]
|
2946
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2947
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
2948
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
2949
|
+
Rendering widgets/page
|
2950
|
+
Completed in 0.00171 (585 reqs/sec) | Rendering: 0.00095 (55%) | 200 OK [http://localhost/sample/a]
|
2951
|
+
SampleController: missing default helper path sample_helper
|
2952
|
+
|
2953
|
+
|
2954
|
+
Processing SampleController#index (for 127.0.0.1 at 2007-07-18 17:31:06) [GET]
|
2955
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2956
|
+
Parameters: {"action"=>"index", "controller"=>"sample"}
|
2957
|
+
Completed in 0.00121 (829 reqs/sec) | Rendering: 0.00041 (34%) | 200 OK [http://localhost/sample/]
|
2958
|
+
|
2959
|
+
|
2960
|
+
Processing ApplicationController#index (for 127.0.0.1 at 2007-07-18 17:31:08) [GET]
|
2961
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2962
|
+
Parameters: {}
|
2963
|
+
|
2964
|
+
|
2965
|
+
ActionController::RoutingError (no route found to match "/a" with {:method=>:get}):
|
2966
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/routing.rb:1292:in `recognize_path'
|
2967
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/routing.rb:1282:in `recognize'
|
2968
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:40:in `dispatch'
|
2969
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
2970
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
2971
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
2972
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
2973
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
2974
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
2975
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
2976
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
2977
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
2978
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
2979
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
2980
|
+
|
2981
|
+
|
2982
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (404 Page Not Found)
|
2983
|
+
SampleController: missing default helper path sample_helper
|
2984
|
+
|
2985
|
+
|
2986
|
+
Processing SampleController#index (for 127.0.0.1 at 2007-07-18 17:32:35) [GET]
|
2987
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
2988
|
+
Parameters: {"action"=>"index", "controller"=>"sample"}
|
2989
|
+
|
2990
|
+
|
2991
|
+
NameError (undefined local variable or method `action' for #<SampleController:0x351f290>):
|
2992
|
+
/app/controllers/sample_controller.rb:4:in `index'
|
2993
|
+
/app/controllers/sample_controller.rb:4:in `map'
|
2994
|
+
/app/controllers/sample_controller.rb:4:in `index'
|
2995
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `send'
|
2996
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:1095:in `perform_action_without_filters'
|
2997
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:632:in `call_filter'
|
2998
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:619:in `perform_action_without_benchmark'
|
2999
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
3000
|
+
/opt/local/lib/ruby/1.8/benchmark.rb:293:in `measure'
|
3001
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/benchmarking.rb:66:in `perform_action_without_rescue'
|
3002
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/rescue.rb:83:in `perform_action'
|
3003
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `send'
|
3004
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:430:in `process_without_filters'
|
3005
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/filters.rb:624:in `process_without_session_management_support'
|
3006
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/session_management.rb:114:in `process'
|
3007
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/base.rb:330:in `process'
|
3008
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:41:in `dispatch'
|
3009
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
3010
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
3011
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
3012
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
3013
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
3014
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
3015
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
3016
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
3017
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
3018
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
3019
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
3020
|
+
|
3021
|
+
|
3022
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (500 Internal Error)
|
3023
|
+
SampleController: missing default helper path sample_helper
|
3024
|
+
|
3025
|
+
|
3026
|
+
Processing SampleController#index (for 127.0.0.1 at 2007-07-18 17:32:46) [GET]
|
3027
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
3028
|
+
Parameters: {"action"=>"index", "controller"=>"sample"}
|
3029
|
+
Completed in 0.00120 (834 reqs/sec) | Rendering: 0.00039 (32%) | 200 OK [http://localhost/sample/]
|
3030
|
+
SampleController: missing default helper path sample_helper
|
3031
|
+
|
3032
|
+
|
3033
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 17:32:49) [GET]
|
3034
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
3035
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
3036
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
3037
|
+
Rendering widgets/page
|
3038
|
+
Completed in 0.00176 (566 reqs/sec) | Rendering: 0.00099 (56%) | 200 OK [http://localhost/sample/a]
|
3039
|
+
SampleController: missing default helper path sample_helper
|
3040
|
+
|
3041
|
+
|
3042
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 17:32:54) [GET]
|
3043
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
3044
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
3045
|
+
Rendering within layouts/application
|
3046
|
+
Rendering sample/b
|
3047
|
+
Rendering widgets/b
|
3048
|
+
Rendering widgets/page
|
3049
|
+
Completed in 0.00433 (230 reqs/sec) | Rendering: 0.00282 (65%) | 200 OK [http://localhost/sample/b]
|
3050
|
+
SampleController: missing default helper path sample_helper
|
3051
|
+
|
3052
|
+
|
3053
|
+
Processing SampleController#c (for 127.0.0.1 at 2007-07-18 17:32:58) [GET]
|
3054
|
+
Session ID: d4c16df08b030bfd8d17b3793a51825a
|
3055
|
+
Parameters: {"action"=>"c", "controller"=>"sample"}
|
3056
|
+
Rendering layoutfalseinline var: <%= @var %>
|
3057
|
+
<hr>
|
3058
|
+
<%= @c %>
|
3059
|
+
within layouts/application
|
3060
|
+
Rendering widgets/c
|
3061
|
+
Rendering widgets/page
|
3062
|
+
Completed in 0.00351 (285 reqs/sec) | Rendering: 0.00229 (65%) | 200 OK [http://localhost/sample/c]
|
3063
|
+
|
3064
|
+
|
3065
|
+
Processing ApplicationController#index (for 127.0.0.1 at 2007-07-18 20:04:11) [GET]
|
3066
|
+
Session ID: f0ddf06fbafc93165300b792d49e7ee4
|
3067
|
+
Parameters: {}
|
3068
|
+
|
3069
|
+
|
3070
|
+
ActionController::RoutingError (no route found to match "/samples/" with {:method=>:get}):
|
3071
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/routing.rb:1292:in `recognize_path'
|
3072
|
+
/opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/routing.rb:1282:in `recognize'
|
3073
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/dispatcher.rb:40:in `dispatch'
|
3074
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:168:in `process_request'
|
3075
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:143:in `process_each_request!'
|
3076
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:109:in `with_signal_handler'
|
3077
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:142:in `process_each_request!'
|
3078
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:600:in `each_cgi'
|
3079
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each'
|
3080
|
+
/opt/local/lib/ruby/vendor_ruby/1.8/fcgi.rb:597:in `each_cgi'
|
3081
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:141:in `process_each_request!'
|
3082
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:55:in `process!'
|
3083
|
+
/opt/local/lib/ruby/gems/1.8/gems/rails-1.2.3/lib/fcgi_handler.rb:25:in `process!'
|
3084
|
+
/Users/ahoward/src/ruby/widgetz/widgetz-0.0.2/rails/public/dispatch.fcgi:24
|
3085
|
+
|
3086
|
+
|
3087
|
+
Rendering /opt/local/lib/ruby/gems/1.8/gems/actionpack-1.13.3/lib/action_controller/templates/rescues/layout.rhtml (404 Page Not Found)
|
3088
|
+
SampleController: missing default helper path sample_helper
|
3089
|
+
|
3090
|
+
|
3091
|
+
Processing SampleController#index (for 127.0.0.1 at 2007-07-18 20:04:14) [GET]
|
3092
|
+
Session ID: f0ddf06fbafc93165300b792d49e7ee4
|
3093
|
+
Parameters: {"action"=>"index", "controller"=>"sample"}
|
3094
|
+
Completed in 0.00146 (682 reqs/sec) | Rendering: 0.00045 (30%) | 200 OK [http://localhost/sample]
|
3095
|
+
SampleController: missing default helper path sample_helper
|
3096
|
+
|
3097
|
+
|
3098
|
+
Processing SampleController#a (for 127.0.0.1 at 2007-07-18 20:04:16) [GET]
|
3099
|
+
Session ID: f0ddf06fbafc93165300b792d49e7ee4
|
3100
|
+
Parameters: {"action"=>"a", "controller"=>"sample"}
|
3101
|
+
Rendering textforty-twolayoutfalse within layouts/application
|
3102
|
+
Rendering widgets/page
|
3103
|
+
Completed in 0.03398 (29 reqs/sec) | Rendering: 0.03299 (97%) | 200 OK [http://localhost/sample/a]
|
3104
|
+
SampleController: missing default helper path sample_helper
|
3105
|
+
|
3106
|
+
|
3107
|
+
Processing SampleController#b (for 127.0.0.1 at 2007-07-18 20:10:59) [GET]
|
3108
|
+
Session ID: f0ddf06fbafc93165300b792d49e7ee4
|
3109
|
+
Parameters: {"action"=>"b", "controller"=>"sample"}
|
3110
|
+
Rendering within layouts/application
|
3111
|
+
Rendering sample/b
|
3112
|
+
Rendering widgets/b
|
3113
|
+
Rendering widgets/page
|
3114
|
+
Completed in 0.00380 (263 reqs/sec) | Rendering: 0.00251 (66%) | 200 OK [http://localhost/sample/b]
|
3115
|
+
SampleController: missing default helper path sample_helper
|
3116
|
+
|
3117
|
+
|
3118
|
+
Processing SampleController#c (for 127.0.0.1 at 2007-07-18 20:11:15) [GET]
|
3119
|
+
Session ID: f0ddf06fbafc93165300b792d49e7ee4
|
3120
|
+
Parameters: {"action"=>"c", "controller"=>"sample"}
|
3121
|
+
Rendering layoutfalseinline var: <%= @var %>
|
3122
|
+
<hr>
|
3123
|
+
<%= @c %>
|
3124
|
+
within layouts/application
|
3125
|
+
Rendering widgets/c
|
3126
|
+
Rendering widgets/page
|
3127
|
+
Completed in 0.03077 (32 reqs/sec) | Rendering: 0.00348 (11%) | 200 OK [http://localhost/sample/c]
|