formula 0.3.4 → 0.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +2 -0
- data/lib/formula.rb +40 -12
- data/lib/formula/version.rb +1 -1
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/models/contact.rb +2 -0
- data/test/dummy/app/views/contacts/_form.html.erb +3 -1
- data/test/dummy/db/migrate/20110109175811_create_contacts.rb +1 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +726 -0
- data/test/dummy/log/test.log +585 -0
- data/test/dummy/test/integration/contact_form_test.rb +10 -4
- data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +171 -6
- metadata +18 -7
data/Rakefile
CHANGED
data/lib/formula.rb
CHANGED
@@ -16,6 +16,18 @@ module Formula
|
|
16
16
|
mattr_accessor :association_class
|
17
17
|
@@association_class = 'association'
|
18
18
|
|
19
|
+
# Default class assigned to block with errors (<div class="block errors">...</div>).
|
20
|
+
mattr_accessor :block_error_class
|
21
|
+
@@block_error_class = 'errors'
|
22
|
+
|
23
|
+
# Default class assigned to input with errors (<div class="input errors">...</div>).
|
24
|
+
mattr_accessor :input_error_class
|
25
|
+
@@input_error_class = false
|
26
|
+
|
27
|
+
# Default class assigned to input with errors (<div class="association errors">...</div>).
|
28
|
+
mattr_accessor :association_error_class
|
29
|
+
@@association_error_class = false
|
30
|
+
|
19
31
|
# Default class assigned to error (<div class="error">...</div>).
|
20
32
|
mattr_accessor :error_class
|
21
33
|
@@error_class = 'error'
|
@@ -122,6 +134,7 @@ module Formula
|
|
122
134
|
|
123
135
|
options[:container] ||= {}
|
124
136
|
options[:container][:class] = arrayorize(options[:container][:class]) << ::Formula.block_class << method
|
137
|
+
options[:container][:class] << ::Formula.block_error_class if ::Formula.block_error_class.present? and error?(method)
|
125
138
|
|
126
139
|
components << @template.content_tag(::Formula.hint_tag , options[:hint ], :class => ::Formula.hint_class ) if options[:hint ]
|
127
140
|
components << @template.content_tag(::Formula.error_tag, options[:error], :class => ::Formula.error_class) if options[:error]
|
@@ -151,17 +164,17 @@ module Formula
|
|
151
164
|
#
|
152
165
|
# Equivalent:
|
153
166
|
#
|
154
|
-
# <div class="block">
|
167
|
+
# <div class="block name">
|
155
168
|
# <%= f.label(:name)
|
156
169
|
# <div class="input string"><%= f.text_field(:name)</div>
|
157
170
|
# <div class="error">...</div>
|
158
171
|
# </div>
|
159
|
-
# <div class="block">
|
172
|
+
# <div class="block email">
|
160
173
|
# <%= f.label(:email)
|
161
174
|
# <div class="input string"><%= f.email_field(:email)</div>
|
162
175
|
# <div class="error">...</div>
|
163
176
|
# </div>
|
164
|
-
# <div class="block half">
|
177
|
+
# <div class="block half password_a">
|
165
178
|
# <div class="input">
|
166
179
|
# <%= f.label(:password_a, "Password")
|
167
180
|
# <%= f.password_field(:password_a)
|
@@ -169,7 +182,7 @@ module Formula
|
|
169
182
|
# <div class="error">...</div>
|
170
183
|
# </div>
|
171
184
|
# </div>
|
172
|
-
# <div class="block half">
|
185
|
+
# <div class="block half password_b">
|
173
186
|
# <div class="input">
|
174
187
|
# <%= f.label(:password_b, "Password")
|
175
188
|
# <%= f.password_field(:password_b)
|
@@ -182,14 +195,18 @@ module Formula
|
|
182
195
|
options[:as] ||= as(method)
|
183
196
|
options[:input] ||= {}
|
184
197
|
|
198
|
+
return hidden_field method, options[:input] if options[:as] == :hidden
|
199
|
+
|
200
|
+
klass = [::Formula.input_class, options[:as]]
|
201
|
+
klass << ::Formula.input_error_class if ::Formula.input_error_class.present? and error?(method)
|
202
|
+
|
185
203
|
self.block(method, options) do
|
186
|
-
@template.content_tag(::Formula.input_tag, :class =>
|
204
|
+
@template.content_tag(::Formula.input_tag, :class => klass) do
|
187
205
|
case options[:as]
|
188
206
|
when :text then text_area method, options[:input]
|
189
207
|
when :file then file_field method, options[:input]
|
190
208
|
when :string then text_field method, options[:input]
|
191
209
|
when :password then password_field method, options[:input]
|
192
|
-
when :hidden then hidden_field method, options[:input]
|
193
210
|
when :boolean then check_box method, options[:input]
|
194
211
|
when :url then url_field method, options[:input]
|
195
212
|
when :email then email_field method, options[:input]
|
@@ -224,7 +241,7 @@ module Formula
|
|
224
241
|
# Equivalent:
|
225
242
|
#
|
226
243
|
# <div>
|
227
|
-
# <div class="association">
|
244
|
+
# <div class="association category">
|
228
245
|
# <%= f.label(:category)
|
229
246
|
# <div class="association">
|
230
247
|
# <%= f.collection_select(:category, Category.all, :id, :name) %>
|
@@ -234,7 +251,7 @@ module Formula
|
|
234
251
|
# </div>
|
235
252
|
# </div>
|
236
253
|
# <div>
|
237
|
-
# <div class="association">
|
254
|
+
# <div class="association category">
|
238
255
|
# <%= f.label(:category)
|
239
256
|
# <div class="association">
|
240
257
|
# <%= f.collection_select(:category, Category.all, :id, :name, { :prompt => "Category") } %>
|
@@ -243,7 +260,7 @@ module Formula
|
|
243
260
|
# </div>
|
244
261
|
# </div>
|
245
262
|
# <div>
|
246
|
-
# <div class="association">
|
263
|
+
# <div class="association category">
|
247
264
|
# <%= f.label(:category)
|
248
265
|
# <div class="association">
|
249
266
|
# <%= f.collection_select(:category, Category.all, :id, :name, {}, { :class => "category" } %>
|
@@ -257,8 +274,11 @@ module Formula
|
|
257
274
|
options[:as] ||= :select
|
258
275
|
options[:association] ||= {}
|
259
276
|
|
277
|
+
klass = [::Formula.association_class, options[:as]]
|
278
|
+
klass << ::Formula.association_error_class if ::Formula.association_error_class.present? and error?(method)
|
279
|
+
|
260
280
|
self.block(method, options) do
|
261
|
-
@template.content_tag(::Formula.association_tag, :class =>
|
281
|
+
@template.content_tag(::Formula.association_tag, :class => klass) do
|
262
282
|
case options[:as]
|
263
283
|
when :select then collection_select :"#{method}_id", collection, value, text,
|
264
284
|
options[:association], options[:association].delete(:html) || {}
|
@@ -357,6 +377,14 @@ module Formula
|
|
357
377
|
end
|
358
378
|
|
359
379
|
|
380
|
+
# Identify if error message exists for a given method by checking for the presence of the object
|
381
|
+
# followed by the presence of errors.
|
382
|
+
|
383
|
+
def error?(method)
|
384
|
+
@object.present? and @object.errors[method].present?
|
385
|
+
end
|
386
|
+
|
387
|
+
|
360
388
|
# Create an array from a string, a symbol, or an undefined value. The default is to return
|
361
389
|
# the value and assume it has already is valid.
|
362
390
|
|
@@ -398,8 +426,8 @@ module Formula
|
|
398
426
|
end
|
399
427
|
|
400
428
|
alias :fieldsula_for :formula_fields_for
|
401
|
-
|
402
|
-
|
429
|
+
|
430
|
+
|
403
431
|
end
|
404
432
|
|
405
433
|
module FormulaFormHelper
|
data/lib/formula/version.rb
CHANGED
@@ -126,6 +126,21 @@ html, body
|
|
126
126
|
font-weight: bolder;
|
127
127
|
}
|
128
128
|
|
129
|
+
.errors label
|
130
|
+
{
|
131
|
+
color: #A00;
|
132
|
+
}
|
133
|
+
|
134
|
+
.errors .hint
|
135
|
+
{
|
136
|
+
color: #A00;
|
137
|
+
}
|
138
|
+
|
139
|
+
.errors .error
|
140
|
+
{
|
141
|
+
color: #A00;
|
142
|
+
}
|
143
|
+
|
129
144
|
label
|
130
145
|
{
|
131
146
|
display: inline;
|
@@ -13,7 +13,9 @@
|
|
13
13
|
|
14
14
|
<%= form.association :group, Group.all, :id, :name, :container => { :class => 'grid-12' },
|
15
15
|
:association => { :prompt => "-- Group --", :html => { :class => 'group' } } %>
|
16
|
-
|
16
|
+
|
17
|
+
<%= form.input :secret, :as => :hidden %>
|
18
|
+
|
17
19
|
<%= form.button 'Save', :container => { :class => 'grid-12' } %>
|
18
20
|
|
19
21
|
<% end %>
|
data/test/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -8490,3 +8490,729 @@ Migrating to CreateGroups (20110213001348)
|
|
8490
8490
|
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
8491
8491
|
[1m[35m (1.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20110213001348')
|
8492
8492
|
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20110109175811')[0m
|
8493
|
+
|
8494
|
+
|
8495
|
+
Started GET "/" for 127.0.0.1 at 2011-12-29 00:36:29 -0800
|
8496
|
+
Processing by MainController#index as HTML
|
8497
|
+
Rendered main/index.html.erb within layouts/application (2.9ms)
|
8498
|
+
Compiled application.css (2ms) (pid 31381)
|
8499
|
+
Completed 200 OK in 67ms (Views: 66.2ms | ActiveRecord: 0.0ms)
|
8500
|
+
|
8501
|
+
|
8502
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8503
|
+
Served asset /contacts.css - 200 OK (3ms)
|
8504
|
+
|
8505
|
+
|
8506
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8507
|
+
Served asset /application.css - 200 OK (0ms)
|
8508
|
+
|
8509
|
+
|
8510
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8511
|
+
Served asset /jquery.js - 200 OK (6ms)
|
8512
|
+
|
8513
|
+
|
8514
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8515
|
+
Served asset /main.css - 200 OK (2ms)
|
8516
|
+
|
8517
|
+
|
8518
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8519
|
+
Served asset /jquery_ujs.js - 200 OK (2ms)
|
8520
|
+
|
8521
|
+
|
8522
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8523
|
+
Served asset /contacts.js - 200 OK (2ms)
|
8524
|
+
|
8525
|
+
|
8526
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8527
|
+
Served asset /main.js - 200 OK (2ms)
|
8528
|
+
|
8529
|
+
|
8530
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:36:30 -0800
|
8531
|
+
Served asset /application.js - 200 OK (0ms)
|
8532
|
+
|
8533
|
+
|
8534
|
+
Started GET "/" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8535
|
+
Processing by MainController#index as HTML
|
8536
|
+
Rendered main/index.html.erb within layouts/application (0.6ms)
|
8537
|
+
Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
8538
|
+
|
8539
|
+
|
8540
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8541
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8542
|
+
|
8543
|
+
|
8544
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8545
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8546
|
+
|
8547
|
+
|
8548
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8549
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8550
|
+
|
8551
|
+
|
8552
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8553
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8554
|
+
|
8555
|
+
|
8556
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8557
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8558
|
+
|
8559
|
+
|
8560
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8561
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8562
|
+
|
8563
|
+
|
8564
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8565
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8566
|
+
|
8567
|
+
|
8568
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:38 -0800
|
8569
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8570
|
+
|
8571
|
+
|
8572
|
+
Started GET "/contacts" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8573
|
+
Processing by ContactsController#index as HTML
|
8574
|
+
[1m[36mContact Load (0.6ms)[0m [1mSELECT "contacts".* FROM "contacts" [0m
|
8575
|
+
Rendered contacts/index.html.erb within layouts/application (13.5ms)
|
8576
|
+
Completed 200 OK in 80ms (Views: 19.2ms | ActiveRecord: 1.6ms)
|
8577
|
+
|
8578
|
+
|
8579
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8580
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8581
|
+
|
8582
|
+
|
8583
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8584
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8585
|
+
|
8586
|
+
|
8587
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8588
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8589
|
+
|
8590
|
+
|
8591
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8592
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8593
|
+
|
8594
|
+
|
8595
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8596
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8597
|
+
|
8598
|
+
|
8599
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8600
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8601
|
+
|
8602
|
+
|
8603
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8604
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8605
|
+
|
8606
|
+
|
8607
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:40 -0800
|
8608
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8609
|
+
|
8610
|
+
|
8611
|
+
Started GET "/contacts/712064548/edit" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8612
|
+
Processing by ContactsController#edit as HTML
|
8613
|
+
Parameters: {"id"=>"712064548"}
|
8614
|
+
[1m[35mContact Load (0.2ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
8615
|
+
[1m[36mGroup Load (0.6ms)[0m [1mSELECT "groups".* FROM "groups" [0m
|
8616
|
+
Rendered contacts/_form.html.erb (30.8ms)
|
8617
|
+
Rendered contacts/edit.html.erb within layouts/application (35.2ms)
|
8618
|
+
Completed 200 OK in 53ms (Views: 39.6ms | ActiveRecord: 1.8ms)
|
8619
|
+
|
8620
|
+
|
8621
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8622
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8623
|
+
|
8624
|
+
|
8625
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8626
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8627
|
+
|
8628
|
+
|
8629
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8630
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8631
|
+
|
8632
|
+
|
8633
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8634
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8635
|
+
|
8636
|
+
|
8637
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8638
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8639
|
+
|
8640
|
+
|
8641
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8642
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8643
|
+
|
8644
|
+
|
8645
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8646
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8647
|
+
|
8648
|
+
|
8649
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:37:42 -0800
|
8650
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8651
|
+
|
8652
|
+
|
8653
|
+
Started GET "/contacts/712064548/edit" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8654
|
+
Processing by ContactsController#edit as HTML
|
8655
|
+
Parameters: {"id"=>"712064548"}
|
8656
|
+
[1m[35mContact Load (0.1ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
8657
|
+
[1m[36mGroup Load (0.2ms)[0m [1mSELECT "groups".* FROM "groups" [0m
|
8658
|
+
Rendered contacts/_form.html.erb (28.0ms)
|
8659
|
+
Rendered contacts/edit.html.erb within layouts/application (28.6ms)
|
8660
|
+
Completed 200 OK in 47ms (Views: 33.8ms | ActiveRecord: 1.2ms)
|
8661
|
+
|
8662
|
+
|
8663
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8664
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8665
|
+
|
8666
|
+
|
8667
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8668
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8669
|
+
|
8670
|
+
|
8671
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8672
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8673
|
+
|
8674
|
+
|
8675
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8676
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8677
|
+
|
8678
|
+
|
8679
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8680
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8681
|
+
|
8682
|
+
|
8683
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8684
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8685
|
+
|
8686
|
+
|
8687
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8688
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8689
|
+
|
8690
|
+
|
8691
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:09 -0800
|
8692
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8693
|
+
|
8694
|
+
|
8695
|
+
Started GET "/contacts/712064548/edit" for 127.0.0.1 at 2011-12-29 00:38:35 -0800
|
8696
|
+
Processing by ContactsController#edit as HTML
|
8697
|
+
Parameters: {"id"=>"712064548"}
|
8698
|
+
[1m[35mContact Load (0.2ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
8699
|
+
[1m[36mGroup Load (0.2ms)[0m [1mSELECT "groups".* FROM "groups" [0m
|
8700
|
+
Rendered contacts/_form.html.erb (29.8ms)
|
8701
|
+
Rendered contacts/edit.html.erb within layouts/application (30.4ms)
|
8702
|
+
Completed 200 OK in 81ms (Views: 36.2ms | ActiveRecord: 1.3ms)
|
8703
|
+
|
8704
|
+
|
8705
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8706
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8707
|
+
|
8708
|
+
|
8709
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8710
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8711
|
+
|
8712
|
+
|
8713
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8714
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8715
|
+
|
8716
|
+
|
8717
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8718
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8719
|
+
|
8720
|
+
|
8721
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8722
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8723
|
+
|
8724
|
+
|
8725
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8726
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8727
|
+
|
8728
|
+
|
8729
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8730
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8731
|
+
|
8732
|
+
|
8733
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:38:36 -0800
|
8734
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8735
|
+
|
8736
|
+
|
8737
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:43:26 -0800
|
8738
|
+
Processing by ContactsController#update as HTML
|
8739
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"Kevin", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"email@address.com", "phone"=>"(555) 555-5555", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "hidden_field"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
8740
|
+
[1m[36mContact Load (0.3ms)[0m [1mSELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
8741
|
+
Completed 500 Internal Server Error in 70ms
|
8742
|
+
|
8743
|
+
ActiveRecord::UnknownAttributeError (unknown attribute: hidden_field):
|
8744
|
+
app/controllers/contacts_controller.rb:32:in `update'
|
8745
|
+
|
8746
|
+
Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
8747
|
+
Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
8748
|
+
Rendered /Users/kevin/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms)
|
8749
|
+
|
8750
|
+
|
8751
|
+
Started GET "/contacts/712064548/edit" for 127.0.0.1 at 2011-12-29 00:43:29 -0800
|
8752
|
+
Processing by ContactsController#edit as HTML
|
8753
|
+
Parameters: {"id"=>"712064548"}
|
8754
|
+
[1m[35mContact Load (0.2ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
8755
|
+
[1m[36mGroup Load (0.2ms)[0m [1mSELECT "groups".* FROM "groups" [0m
|
8756
|
+
Rendered contacts/_form.html.erb (59.8ms)
|
8757
|
+
Rendered contacts/edit.html.erb within layouts/application (64.4ms)
|
8758
|
+
Completed 200 OK in 96ms (Views: 81.5ms | ActiveRecord: 1.4ms)
|
8759
|
+
|
8760
|
+
|
8761
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:29 -0800
|
8762
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8763
|
+
|
8764
|
+
|
8765
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:30 -0800
|
8766
|
+
Served asset /contacts.js - 304 Not Modified (1ms)
|
8767
|
+
|
8768
|
+
|
8769
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:30 -0800
|
8770
|
+
Served asset /contacts.css - 304 Not Modified (1ms)
|
8771
|
+
|
8772
|
+
|
8773
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:30 -0800
|
8774
|
+
Served asset /jquery_ujs.js - 304 Not Modified (2ms)
|
8775
|
+
|
8776
|
+
|
8777
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:30 -0800
|
8778
|
+
Served asset /main.css - 304 Not Modified (1ms)
|
8779
|
+
|
8780
|
+
|
8781
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:30 -0800
|
8782
|
+
Served asset /jquery.js - 304 Not Modified (2ms)
|
8783
|
+
|
8784
|
+
|
8785
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:30 -0800
|
8786
|
+
Served asset /main.js - 304 Not Modified (2ms)
|
8787
|
+
|
8788
|
+
|
8789
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:30 -0800
|
8790
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8791
|
+
|
8792
|
+
|
8793
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:43:31 -0800
|
8794
|
+
Processing by ContactsController#update as HTML
|
8795
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"Kevin", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"email@address.com", "phone"=>"(555) 555-5555", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "secret"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
8796
|
+
[1m[35mContact Load (0.1ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
8797
|
+
[1m[36mGroup Load (0.1ms)[0m [1mSELECT "groups".* FROM "groups" WHERE "groups"."id" = 637242267 LIMIT 1[0m
|
8798
|
+
[attached] save attached
|
8799
|
+
Redirected to http://localhost:3000/contacts
|
8800
|
+
Completed 302 Found in 90ms
|
8801
|
+
|
8802
|
+
|
8803
|
+
Started GET "/contacts" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8804
|
+
Processing by ContactsController#index as HTML
|
8805
|
+
[1m[35mContact Load (0.1ms)[0m SELECT "contacts".* FROM "contacts"
|
8806
|
+
Rendered contacts/index.html.erb within layouts/application (13.1ms)
|
8807
|
+
Completed 200 OK in 63ms (Views: 19.4ms | ActiveRecord: 0.8ms)
|
8808
|
+
|
8809
|
+
|
8810
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8811
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8812
|
+
|
8813
|
+
|
8814
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8815
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8816
|
+
|
8817
|
+
|
8818
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8819
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8820
|
+
|
8821
|
+
|
8822
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8823
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8824
|
+
|
8825
|
+
|
8826
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8827
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8828
|
+
|
8829
|
+
|
8830
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8831
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8832
|
+
|
8833
|
+
|
8834
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8835
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8836
|
+
|
8837
|
+
|
8838
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:32 -0800
|
8839
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8840
|
+
|
8841
|
+
|
8842
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8843
|
+
Processing by ContactsController#update as HTML
|
8844
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"", "phone"=>"", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "secret"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
8845
|
+
[1m[36mContact Load (0.1ms)[0m [1mSELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
8846
|
+
[1m[35mGroup Load (0.1ms)[0m SELECT "groups".* FROM "groups" WHERE "groups"."id" = 637242267 LIMIT 1
|
8847
|
+
[1m[36mGroup Load (0.2ms)[0m [1mSELECT "groups".* FROM "groups" [0m
|
8848
|
+
Rendered contacts/_form.html.erb (6.0ms)
|
8849
|
+
Rendered contacts/edit.html.erb within layouts/application (6.5ms)
|
8850
|
+
Completed 200 OK in 86ms (Views: 10.0ms | ActiveRecord: 0.2ms)
|
8851
|
+
|
8852
|
+
|
8853
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8854
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8855
|
+
|
8856
|
+
|
8857
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8858
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
8859
|
+
|
8860
|
+
|
8861
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8862
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8863
|
+
|
8864
|
+
|
8865
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8866
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8867
|
+
|
8868
|
+
|
8869
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8870
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8871
|
+
|
8872
|
+
|
8873
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8874
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8875
|
+
|
8876
|
+
|
8877
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8878
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8879
|
+
|
8880
|
+
|
8881
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:43:39 -0800
|
8882
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8883
|
+
|
8884
|
+
|
8885
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8886
|
+
Processing by ContactsController#update as HTML
|
8887
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"", "phone"=>"", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "secret"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
8888
|
+
[1m[35mContact Load (0.1ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
8889
|
+
[1m[36mGroup Load (0.1ms)[0m [1mSELECT "groups".* FROM "groups" WHERE "groups"."id" = 637242267 LIMIT 1[0m
|
8890
|
+
[1m[35mGroup Load (0.2ms)[0m SELECT "groups".* FROM "groups"
|
8891
|
+
Rendered contacts/_form.html.erb (6.8ms)
|
8892
|
+
Rendered contacts/edit.html.erb within layouts/application (7.3ms)
|
8893
|
+
Compiled application.css (1ms) (pid 31431)
|
8894
|
+
Completed 200 OK in 97ms (Views: 18.1ms | ActiveRecord: 0.2ms)
|
8895
|
+
|
8896
|
+
|
8897
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8898
|
+
Served asset /application.css - 200 OK (0ms)
|
8899
|
+
|
8900
|
+
|
8901
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8902
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8903
|
+
|
8904
|
+
|
8905
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8906
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8907
|
+
|
8908
|
+
|
8909
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8910
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8911
|
+
|
8912
|
+
|
8913
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8914
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8915
|
+
|
8916
|
+
|
8917
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8918
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8919
|
+
|
8920
|
+
|
8921
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8922
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8923
|
+
|
8924
|
+
|
8925
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:40 -0800
|
8926
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8927
|
+
|
8928
|
+
|
8929
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8930
|
+
Processing by ContactsController#update as HTML
|
8931
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"", "phone"=>"", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "secret"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
8932
|
+
[1m[36mContact Load (0.1ms)[0m [1mSELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
8933
|
+
[1m[35mGroup Load (0.1ms)[0m SELECT "groups".* FROM "groups" WHERE "groups"."id" = 637242267 LIMIT 1
|
8934
|
+
[1m[36mGroup Load (0.2ms)[0m [1mSELECT "groups".* FROM "groups" [0m
|
8935
|
+
Rendered contacts/_form.html.erb (7.4ms)
|
8936
|
+
Rendered contacts/edit.html.erb within layouts/application (8.2ms)
|
8937
|
+
Compiled application.css (1ms) (pid 31431)
|
8938
|
+
Completed 200 OK in 92ms (Views: 18.3ms | ActiveRecord: 0.2ms)
|
8939
|
+
|
8940
|
+
|
8941
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8942
|
+
Served asset /application.css - 200 OK (0ms)
|
8943
|
+
|
8944
|
+
|
8945
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8946
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
8947
|
+
|
8948
|
+
|
8949
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8950
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
8951
|
+
|
8952
|
+
|
8953
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8954
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8955
|
+
|
8956
|
+
|
8957
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8958
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8959
|
+
|
8960
|
+
|
8961
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8962
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8963
|
+
|
8964
|
+
|
8965
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8966
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
8967
|
+
|
8968
|
+
|
8969
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:46:55 -0800
|
8970
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
8971
|
+
|
8972
|
+
|
8973
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:47:00 -0800
|
8974
|
+
Processing by ContactsController#update as HTML
|
8975
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"", "phone"=>"", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "secret"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
8976
|
+
[1m[35mContact Load (0.1ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
8977
|
+
[1m[36mGroup Load (0.2ms)[0m [1mSELECT "groups".* FROM "groups" WHERE "groups"."id" = 637242267 LIMIT 1[0m
|
8978
|
+
[1m[35mGroup Load (0.2ms)[0m SELECT "groups".* FROM "groups"
|
8979
|
+
Rendered contacts/_form.html.erb (6.5ms)
|
8980
|
+
Rendered contacts/edit.html.erb within layouts/application (7.0ms)
|
8981
|
+
Compiled application.css (1ms) (pid 31431)
|
8982
|
+
Completed 200 OK in 90ms (Views: 16.5ms | ActiveRecord: 0.2ms)
|
8983
|
+
|
8984
|
+
|
8985
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:00 -0800
|
8986
|
+
Served asset /application.css - 200 OK (0ms)
|
8987
|
+
|
8988
|
+
|
8989
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:00 -0800
|
8990
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
8991
|
+
|
8992
|
+
|
8993
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:00 -0800
|
8994
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
8995
|
+
|
8996
|
+
|
8997
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:00 -0800
|
8998
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
8999
|
+
|
9000
|
+
|
9001
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9002
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
9003
|
+
|
9004
|
+
|
9005
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9006
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
9007
|
+
|
9008
|
+
|
9009
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9010
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
9011
|
+
|
9012
|
+
|
9013
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9014
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
9015
|
+
|
9016
|
+
|
9017
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9018
|
+
Processing by ContactsController#update as HTML
|
9019
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"", "phone"=>"", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "secret"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
9020
|
+
[1m[36mContact Load (0.2ms)[0m [1mSELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1[0m [["id", "712064548"]]
|
9021
|
+
[1m[35mGroup Load (0.2ms)[0m SELECT "groups".* FROM "groups" WHERE "groups"."id" = 637242267 LIMIT 1
|
9022
|
+
[1m[36mGroup Load (0.2ms)[0m [1mSELECT "groups".* FROM "groups" [0m
|
9023
|
+
Rendered contacts/_form.html.erb (6.7ms)
|
9024
|
+
Rendered contacts/edit.html.erb within layouts/application (8.0ms)
|
9025
|
+
Completed 200 OK in 109ms (Views: 11.7ms | ActiveRecord: 0.2ms)
|
9026
|
+
|
9027
|
+
|
9028
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9029
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
9030
|
+
|
9031
|
+
|
9032
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9033
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
9034
|
+
|
9035
|
+
|
9036
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9037
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
9038
|
+
|
9039
|
+
|
9040
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9041
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
9042
|
+
|
9043
|
+
|
9044
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9045
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
9046
|
+
|
9047
|
+
|
9048
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9049
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
9050
|
+
|
9051
|
+
|
9052
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9053
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
9054
|
+
|
9055
|
+
|
9056
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:01 -0800
|
9057
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
9058
|
+
|
9059
|
+
|
9060
|
+
Started PUT "/contacts/712064548" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9061
|
+
Processing by ContactsController#update as HTML
|
9062
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"OvCv3KUIo6KhZn2PVOkcILjflAiD5uzYwucuGcNku80=", "contact"=>{"name"=>"", "details"=>"A Ruby on Rails and Cocoa developer...", "email"=>"", "phone"=>"", "url"=>"http://ksylvest.com/", "group_id"=>"637242267", "secret"=>""}, "commit"=>"Save", "id"=>"712064548"}
|
9063
|
+
[1m[35mContact Load (0.1ms)[0m SELECT "contacts".* FROM "contacts" WHERE "contacts"."id" = ? LIMIT 1 [["id", "712064548"]]
|
9064
|
+
[1m[36mGroup Load (0.1ms)[0m [1mSELECT "groups".* FROM "groups" WHERE "groups"."id" = 637242267 LIMIT 1[0m
|
9065
|
+
[1m[35mGroup Load (0.2ms)[0m SELECT "groups".* FROM "groups"
|
9066
|
+
Rendered contacts/_form.html.erb (6.7ms)
|
9067
|
+
Rendered contacts/edit.html.erb within layouts/application (7.2ms)
|
9068
|
+
Compiled application.css (1ms) (pid 31431)
|
9069
|
+
Completed 200 OK in 93ms (Views: 17.8ms | ActiveRecord: 0.2ms)
|
9070
|
+
|
9071
|
+
|
9072
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9073
|
+
Served asset /application.css - 200 OK (0ms)
|
9074
|
+
|
9075
|
+
|
9076
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9077
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
9078
|
+
|
9079
|
+
|
9080
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9081
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
9082
|
+
|
9083
|
+
|
9084
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9085
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
9086
|
+
|
9087
|
+
|
9088
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9089
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
9090
|
+
|
9091
|
+
|
9092
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9093
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
9094
|
+
|
9095
|
+
|
9096
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9097
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
9098
|
+
|
9099
|
+
|
9100
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:47:19 -0800
|
9101
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
9102
|
+
|
9103
|
+
|
9104
|
+
Started GET "/" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9105
|
+
Processing by MainController#index as HTML
|
9106
|
+
Rendered main/index.html.erb within layouts/application (0.9ms)
|
9107
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
9108
|
+
|
9109
|
+
|
9110
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9111
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
9112
|
+
|
9113
|
+
|
9114
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9115
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
9116
|
+
|
9117
|
+
|
9118
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9119
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
9120
|
+
|
9121
|
+
|
9122
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9123
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
9124
|
+
|
9125
|
+
|
9126
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9127
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
9128
|
+
|
9129
|
+
|
9130
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9131
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
9132
|
+
|
9133
|
+
|
9134
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9135
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
9136
|
+
|
9137
|
+
|
9138
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:02 -0800
|
9139
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
9140
|
+
|
9141
|
+
|
9142
|
+
Started GET "/contacts" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9143
|
+
Processing by ContactsController#index as HTML
|
9144
|
+
[1m[36mContact Load (0.1ms)[0m [1mSELECT "contacts".* FROM "contacts" [0m
|
9145
|
+
Rendered contacts/index.html.erb within layouts/application (47.7ms)
|
9146
|
+
Completed 200 OK in 65ms (Views: 53.3ms | ActiveRecord: 0.8ms)
|
9147
|
+
|
9148
|
+
|
9149
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9150
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
9151
|
+
|
9152
|
+
|
9153
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9154
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
9155
|
+
|
9156
|
+
|
9157
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9158
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
9159
|
+
|
9160
|
+
|
9161
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9162
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
9163
|
+
|
9164
|
+
|
9165
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9166
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
9167
|
+
|
9168
|
+
|
9169
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9170
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
9171
|
+
|
9172
|
+
|
9173
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9174
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
9175
|
+
|
9176
|
+
|
9177
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:04 -0800
|
9178
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
9179
|
+
|
9180
|
+
|
9181
|
+
Started GET "/contacts/new" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9182
|
+
Processing by ContactsController#new as HTML
|
9183
|
+
[1m[35mGroup Load (0.1ms)[0m SELECT "groups".* FROM "groups"
|
9184
|
+
Rendered contacts/_form.html.erb (28.2ms)
|
9185
|
+
Rendered contacts/new.html.erb within layouts/application (29.1ms)
|
9186
|
+
Completed 200 OK in 45ms (Views: 34.0ms | ActiveRecord: 1.1ms)
|
9187
|
+
|
9188
|
+
|
9189
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9190
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
9191
|
+
|
9192
|
+
|
9193
|
+
Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9194
|
+
Served asset /main.css - 304 Not Modified (0ms)
|
9195
|
+
|
9196
|
+
|
9197
|
+
Started GET "/assets/contacts.css?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9198
|
+
Served asset /contacts.css - 304 Not Modified (0ms)
|
9199
|
+
|
9200
|
+
|
9201
|
+
Started GET "/assets/contacts.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9202
|
+
Served asset /contacts.js - 304 Not Modified (0ms)
|
9203
|
+
|
9204
|
+
|
9205
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9206
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
9207
|
+
|
9208
|
+
|
9209
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9210
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
9211
|
+
|
9212
|
+
|
9213
|
+
Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9214
|
+
Served asset /main.js - 304 Not Modified (0ms)
|
9215
|
+
|
9216
|
+
|
9217
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-29 00:59:06 -0800
|
9218
|
+
Served asset /application.js - 304 Not Modified (0ms)
|