nested_form 0.2.3 → 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.rdoc +18 -0
- data/CONTRIBUTING.md +11 -0
- data/Gemfile +1 -0
- data/README.md +3 -4
- data/lib/nested_form/builder_mixin.rb +38 -8
- data/lib/nested_form/builders.rb +8 -0
- data/lib/nested_form/view_helper.rb +7 -0
- data/spec/dummy/app/assets/javascripts/jquery_nested_form.js +13 -10
- data/spec/dummy/app/assets/javascripts/prototype_nested_form.js +8 -7
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +2322 -50
- data/spec/dummy/log/test.log +878 -422
- data/spec/dummy/tmp/cache/assets/C99/4D0/sprockets%2F5e30a6b911437f1428dc32c3ae182123 +0 -0
- data/spec/dummy/tmp/cache/assets/C99/7D0/sprockets%2F79513e6956e0ee8624976e041fd5636d +0 -0
- data/spec/dummy/tmp/cache/assets/CAA/C90/sprockets%2F1e6c8ee1258009385ccf5b84015424b3 +0 -0
- data/spec/dummy/tmp/cache/assets/CB2/CB0/sprockets%2F11cc8d161d71a716dd36f16849d90870 +0 -0
- data/spec/dummy/tmp/cache/assets/CB7/7F0/sprockets%2Fac97b043470f6fcc925c352f16956643 +0 -0
- data/spec/dummy/tmp/cache/assets/CDB/8A0/sprockets%2Faed2a2575c376263c26e93b56b57051d +0 -0
- data/spec/dummy/tmp/cache/assets/D1F/A10/sprockets%2F60317e62cb324bfd9987e8da9636fd06 +0 -0
- data/spec/dummy/tmp/cache/assets/D49/870/sprockets%2F90896142645585acc8baf56ad57e3afb +0 -0
- data/spec/dummy/tmp/cache/assets/D62/F00/sprockets%2F6ac03a007f26b1c18ed3d53498ad3eb8 +0 -0
- data/spec/dummy/tmp/cache/assets/D79/BC0/sprockets%2F85a1db977361cc5130fcefb4637ff67e +0 -0
- data/spec/dummy/tmp/cache/assets/D87/1F0/sprockets%2F61c9ceafb877fb740c67416ff6f782a9 +0 -0
- data/spec/dummy/tmp/cache/assets/DAD/4F0/sprockets%2F765acd1bf68dc90f7d3e61da78b1e659 +0 -0
- data/spec/dummy/tmp/cache/assets/E03/3F0/sprockets%2F82b37ae9eccec44c1ef44cfdd07d8534 +0 -0
- data/spec/dummy/tmp/cache/assets/E0A/CA0/sprockets%2F7fe72ac1c0db1a7e8e7f59cf25e8a39e +0 -0
- data/spec/dummy/tmp/cache/assets/E3A/A60/sprockets%2F7c72c96cfc66454caf5fc8ca0fedd4f3 +0 -0
- data/spec/dummy/tmp/cache/assets/E54/400/sprockets%2Fd0cbc16cc37efcf9dc41f242b5dbbf81 +0 -0
- data/spec/dummy/tmp/cache/assets/EB7/AB0/sprockets%2F801d29a5debdbfbfb4eef14d70d9bcdb +0 -0
- data/spec/dummy/tmp/cache/assets/F48/5E0/sprockets%2F26cd6ffcffbebbe2fd6cd1a8f0c2debc +0 -0
- data/spec/form_spec.rb +1 -1
- data/spec/nested_form/builder_spec.rb +55 -10
- data/spec/nested_form/view_helper_spec.rb +8 -0
- data/vendor/assets/javascripts/jquery_nested_form.js +13 -10
- data/vendor/assets/javascripts/prototype_nested_form.js +8 -7
- metadata +72 -87
- data/spec/dummy/tmp/capybara/capybara-201208212241496415482929.html +0 -31
data/CHANGELOG.rdoc
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
0.3.0 (October 23, 2012)
|
2
|
+
|
3
|
+
* Fix issue when deeply nested and first level only has a select input (thanks eric88)
|
4
|
+
|
5
|
+
* Fix context getting for input names with an underscore (thanks kevinrood)
|
6
|
+
|
7
|
+
* Add option to toggle wrapper div behavior with <tt>wrapper</tt> option in <tt>fields_for</tt> helper
|
8
|
+
|
9
|
+
* Ability to set object for blueprint using <tt>model_object</tt> option in <tt>link_to_add</tt> helper (thanks Baltazore)
|
10
|
+
|
11
|
+
* Support for FormtasticBootstrapBuilder (thanks rvanlieshout)
|
12
|
+
|
13
|
+
* Store blueprint html in data-blueprint attribute
|
14
|
+
|
15
|
+
* Add the <tt>marked_for_destruction</tt> class on the div if the object is marked for destruction
|
16
|
+
|
17
|
+
* Add parent association name to the blueprint div id
|
18
|
+
|
1
19
|
0.2.3 (August 23, 2012)
|
2
20
|
|
3
21
|
* Fix selector for deeply nested forms (thanks groe)
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
### Please read before contributing
|
2
|
+
|
3
|
+
1) If you have any questions about NestedForm, search the [Wiki](https://github.com/ryanb/nested_form/wiki) or [Stack Overflow](http://stackoverflow.com). Do not post questions here.
|
4
|
+
|
5
|
+
2) If you find a security bug, **DO NOT** submit an issue here. Please send an e-mail to [just.lest@gmail.com](mailto:just.lest@gmail.com) instead.
|
6
|
+
|
7
|
+
3) Do a small search on the issues tracker before submitting your issue to see if it was already reported / fixed. In case it was not, create your report including Rails and NestedForm versions. If you are getting exceptions, please include the full backtrace into a gist.
|
8
|
+
|
9
|
+
That's it! The more information you give, the more easy it becomes for us to track it down and fix it. Ideal scenario would be adding the issue to NestedForm test suite or to a sample application.
|
10
|
+
|
11
|
+
Thanks!
|
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -59,6 +59,9 @@ You will then be able to use `link_to_add` and `link_to_remove` helper methods o
|
|
59
59
|
<p><%= f.link_to_add "Add a task", :tasks %></p>
|
60
60
|
```
|
61
61
|
|
62
|
+
In order to choose how to handle, after validation errors, fields that are
|
63
|
+
marked for destruction, the `marked_for_destruction` class is added on the div
|
64
|
+
if the object is marked for destruction.
|
62
65
|
|
63
66
|
## SimpleForm and Formtastic Support
|
64
67
|
|
@@ -137,10 +140,6 @@ window.nestedFormEvents.insertFields = function(content, assoc, link) {
|
|
137
140
|
}
|
138
141
|
```
|
139
142
|
|
140
|
-
## Project Status
|
141
|
-
|
142
|
-
Unfortunately I have not had time to actively work on this project recently. If you find a critical issue where it does not work as documented please [ping me on Twitter](http://twitter.com/rbates) and I'll take a look.
|
143
|
-
|
144
143
|
## Contributing
|
145
144
|
|
146
145
|
If you have any issues with Nested Form not addressed above or in the [example project](http://github.com/ryanb/complex-form-examples/tree/nested_form), please add an [issue on GitHub](http://github.com/ryanb/nested_form/issues) or [fork the project](http://help.github.com/fork-a-repo) and send a [pull request](http://help.github.com/send-pull-requests). To run the specs:
|
@@ -10,6 +10,11 @@ module NestedForm
|
|
10
10
|
# Add Task
|
11
11
|
# <% end %>
|
12
12
|
#
|
13
|
+
# You can also pass <tt>model_object</tt> option with an object for use in
|
14
|
+
# the blueprint, e.g.:
|
15
|
+
#
|
16
|
+
# <%= f.link_to_add(:tasks, :model_object => Task.new(:name => 'Task')) %>
|
17
|
+
#
|
13
18
|
# See the README for more details on where to call this method.
|
14
19
|
def link_to_add(*args, &block)
|
15
20
|
options = args.extract_options!.symbolize_keys
|
@@ -18,18 +23,21 @@ module NestedForm
|
|
18
23
|
unless (reflection = object.class.reflect_on_association(association))
|
19
24
|
raise ArgumentError, "Failed to find #{object.class.name} association by name \"#{association}\""
|
20
25
|
end
|
21
|
-
model_object = reflection.klass.new
|
26
|
+
model_object = options.delete(:model_object) || reflection.klass.new
|
22
27
|
|
23
28
|
options[:class] = [options[:class], "add_nested_fields"].compact.join(" ")
|
24
29
|
options["data-association"] = association
|
30
|
+
options["data-blueprint-id"] = fields_blueprint_id = fields_blueprint_id_for(association)
|
25
31
|
args << (options.delete(:href) || "javascript:void(0)")
|
26
32
|
args << options
|
27
33
|
|
28
34
|
@fields ||= {}
|
29
|
-
@template.after_nested_form(
|
30
|
-
blueprint =
|
31
|
-
|
32
|
-
|
35
|
+
@template.after_nested_form(fields_blueprint_id) do
|
36
|
+
blueprint = {:id => fields_blueprint_id, :style => 'display: none'}
|
37
|
+
block, options = @fields[fields_blueprint_id].values_at(:block, :options)
|
38
|
+
options[:child_index] = "new_#{association}"
|
39
|
+
blueprint[:"data-blueprint"] = fields_for(association, model_object, options, &block).to_str
|
40
|
+
@template.content_tag(:div, nil, blueprint)
|
33
41
|
end
|
34
42
|
@template.link_to(*args, &block)
|
35
43
|
end
|
@@ -56,19 +64,41 @@ module NestedForm
|
|
56
64
|
|
57
65
|
args << (options.delete(:href) || "javascript:void(0)")
|
58
66
|
args << options
|
59
|
-
|
67
|
+
hidden_field(:_destroy) << @template.link_to(*args, &block)
|
60
68
|
end
|
61
69
|
|
62
70
|
def fields_for_with_nested_attributes(association_name, *args)
|
63
71
|
# TODO Test this better
|
64
72
|
block = args.pop || Proc.new { |fields| @template.render(:partial => "#{association_name.to_s.singularize}_fields", :locals => {:f => fields}) }
|
73
|
+
|
74
|
+
options = if args[0].kind_of? Array # Rails 3.0.x
|
75
|
+
args[0].dup.extract_options!
|
76
|
+
else
|
77
|
+
args.dup.extract_options!
|
78
|
+
end
|
79
|
+
|
65
80
|
@fields ||= {}
|
66
|
-
@fields[association_name] = block
|
81
|
+
@fields[fields_blueprint_id_for(association_name)] = { :block => block, :options => options }
|
67
82
|
super(association_name, *(args << block))
|
68
83
|
end
|
69
84
|
|
70
85
|
def fields_for_nested_model(name, object, options, block)
|
71
|
-
|
86
|
+
classes = 'fields'
|
87
|
+
classes << ' marked_for_destruction' if object.respond_to?(:marked_for_destruction?) && object.marked_for_destruction?
|
88
|
+
|
89
|
+
if options.fetch(:wrapper, true)
|
90
|
+
@template.content_tag(:div, super, :class => classes)
|
91
|
+
else
|
92
|
+
super
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
private
|
97
|
+
|
98
|
+
def fields_blueprint_id_for(association)
|
99
|
+
assocs = object_name.to_s.scan(/(\w+)_attributes/).map(&:first)
|
100
|
+
assocs << association
|
101
|
+
assocs.join('_') + '_fields_blueprint'
|
72
102
|
end
|
73
103
|
end
|
74
104
|
end
|
data/lib/nested_form/builders.rb
CHANGED
@@ -21,6 +21,13 @@ module NestedForm
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
+
if defined?(NestedForm::FormtasticBootstrapBuilder)
|
25
|
+
def semantic_bootstrap_nested_form_for(*args, &block)
|
26
|
+
options = args.extract_options!.reverse_merge(:builder => NestedForm::FormtasticBootstrapBuilder)
|
27
|
+
semantic_form_for(*(args << options), &block) << after_nested_form_callbacks
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
24
31
|
def after_nested_form(association, &block)
|
25
32
|
@associations ||= []
|
26
33
|
@after_nested_form_callbacks ||= []
|
@@ -7,21 +7,22 @@ jQuery(function($) {
|
|
7
7
|
NestedFormEvents.prototype = {
|
8
8
|
addFields: function(e) {
|
9
9
|
// Setup
|
10
|
-
var link
|
11
|
-
var assoc
|
12
|
-
var
|
10
|
+
var link = e.currentTarget;
|
11
|
+
var assoc = $(link).data('association'); // Name of child
|
12
|
+
var blueprint = $('#' + $(link).data('blueprint-id'));
|
13
|
+
var content = blueprint.data('blueprint'); // Fields template
|
13
14
|
|
14
|
-
// Make the context correct by replacing
|
15
|
+
// Make the context correct by replacing <parents> with the generated ID
|
15
16
|
// of each of the parent objects
|
16
|
-
var context = ($(link).closest('.fields').closestChild('input, textarea').eq(0).attr('name') || '').replace(new RegExp('\[[a-
|
17
|
+
var context = ($(link).closest('.fields').closestChild('input, textarea, select').eq(0).attr('name') || '').replace(new RegExp('\[[a-z_]+\]$'), '');
|
17
18
|
|
18
19
|
// context will be something like this for a brand new form:
|
19
|
-
// project[tasks_attributes][
|
20
|
+
// project[tasks_attributes][1255929127459][assignments_attributes][1255929128105]
|
20
21
|
// or for an edit form:
|
21
22
|
// project[tasks_attributes][0][assignments_attributes][1]
|
22
23
|
if (context) {
|
23
24
|
var parentNames = context.match(/[a-z_]+_attributes/g) || [];
|
24
|
-
var parentIds = context.match(/
|
25
|
+
var parentIds = context.match(/[0-9]+/g) || [];
|
25
26
|
|
26
27
|
for(var i = 0; i < parentNames.length; i++) {
|
27
28
|
if(parentIds[i]) {
|
@@ -39,7 +40,7 @@ jQuery(function($) {
|
|
39
40
|
// Make a unique ID for the new child
|
40
41
|
var regexp = new RegExp('new_' + assoc, 'g');
|
41
42
|
var new_id = new Date().getTime();
|
42
|
-
content = content.replace(regexp,
|
43
|
+
content = content.replace(regexp, new_id);
|
43
44
|
|
44
45
|
var field = this.insertFields(content, assoc, link);
|
45
46
|
// bubble up event upto document (through form)
|
@@ -69,9 +70,11 @@ jQuery(function($) {
|
|
69
70
|
};
|
70
71
|
|
71
72
|
window.nestedFormEvents = new NestedFormEvents();
|
72
|
-
$(
|
73
|
-
|
73
|
+
$(document)
|
74
|
+
.delegate('form a.add_nested_fields', 'click', nestedFormEvents.addFields)
|
75
|
+
.delegate('form a.remove_nested_fields', 'click', nestedFormEvents.removeFields);
|
74
76
|
});
|
77
|
+
|
75
78
|
// http://plugins.jquery.com/project/closestChild
|
76
79
|
/*
|
77
80
|
* Copyright 2011, Tobias Lindig
|
@@ -1,20 +1,21 @@
|
|
1
1
|
document.observe('click', function(e, el) {
|
2
2
|
if (el = e.findElement('form a.add_nested_fields')) {
|
3
3
|
// Setup
|
4
|
-
var assoc
|
5
|
-
var
|
4
|
+
var assoc = el.readAttribute('data-association'); // Name of child
|
5
|
+
var blueprint = $(el.readAttribute('data-blueprint-id'));
|
6
|
+
var content = blueprint.readAttribute('data-blueprint'); // Fields template
|
6
7
|
|
7
|
-
// Make the context correct by replacing
|
8
|
+
// Make the context correct by replacing <parents> with the generated ID
|
8
9
|
// of each of the parent objects
|
9
|
-
var context = (el.getOffsetParent('.fields').firstDescendant().readAttribute('name') || '').replace(new RegExp('\[[a-
|
10
|
+
var context = (el.getOffsetParent('.fields').firstDescendant().readAttribute('name') || '').replace(new RegExp('\[[a-z_]+\]$'), '');
|
10
11
|
|
11
12
|
// context will be something like this for a brand new form:
|
12
|
-
// project[tasks_attributes][
|
13
|
+
// project[tasks_attributes][1255929127459][assignments_attributes][1255929128105]
|
13
14
|
// or for an edit form:
|
14
15
|
// project[tasks_attributes][0][assignments_attributes][1]
|
15
16
|
if(context) {
|
16
17
|
var parent_names = context.match(/[a-z_]+_attributes/g) || [];
|
17
|
-
var parent_ids = context.match(/
|
18
|
+
var parent_ids = context.match(/[0-9]+/g) || [];
|
18
19
|
|
19
20
|
for(i = 0; i < parent_names.length; i++) {
|
20
21
|
if(parent_ids[i]) {
|
@@ -32,7 +33,7 @@ document.observe('click', function(e, el) {
|
|
32
33
|
// Make a unique ID for the new child
|
33
34
|
var regexp = new RegExp('new_' + assoc, 'g');
|
34
35
|
var new_id = new Date().getTime();
|
35
|
-
content = content.replace(regexp,
|
36
|
+
content = content.replace(regexp, new_id);
|
36
37
|
|
37
38
|
var field = el.insert({ before: content });
|
38
39
|
field.fire('nested:fieldAdded', {field: field});
|
Binary file
|
data/spec/dummy/db/test.sqlite3
CHANGED
Binary file
|
@@ -1,25 +1,31 @@
|
|
1
1
|
Connecting to database specified by database.yml
|
2
|
-
[1m[36m (0.
|
3
|
-
[1m[35m (
|
4
|
-
[1m[36m (0.
|
5
|
-
[1m[35m (
|
2
|
+
[1m[36m (0.2ms)[0m [1mselect sqlite_version(*)[0m
|
3
|
+
[1m[35m (3.7ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
4
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
5
|
+
[1m[35m (1.7ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
6
6
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
7
7
|
Migrating to InitialTables (20110710143903)
|
8
8
|
[1m[35m (0.0ms)[0m begin transaction
|
9
|
-
[1m[36m (0.
|
10
|
-
[1m[35m (0.
|
11
|
-
[1m[36m (0.
|
12
|
-
[1m[35m (0.
|
13
|
-
[1m[36m (
|
14
|
-
|
9
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "projects" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255)) [0m
|
10
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255))
|
11
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "milestones" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "task_id" integer, "name" varchar(255)) [0m
|
12
|
+
[1m[35m (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110710143903')
|
13
|
+
[1m[36m (2.4ms)[0m [1mcommit transaction[0m
|
14
|
+
Migrating to AddAssociationWithClassName (20120819164528)
|
15
|
+
[1m[35m (0.1ms)[0m begin transaction
|
16
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "project_tasks" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "project_id" integer, "name" varchar(255)) [0m
|
17
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120819164528')
|
18
|
+
[1m[36m (2.5ms)[0m [1mcommit transaction[0m
|
19
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
15
20
|
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
16
21
|
[1m[35m (0.0ms)[0m PRAGMA index_list("milestones")
|
17
|
-
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("
|
18
|
-
[1m[35m (0.0ms)[0m PRAGMA index_list("
|
22
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("project_tasks")[0m
|
23
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("projects")
|
24
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("tasks")[0m
|
19
25
|
Connecting to database specified by database.yml
|
20
26
|
|
21
27
|
|
22
|
-
Started GET "/" for 127.0.0.1 at 2012-
|
28
|
+
Started GET "/" for 127.0.0.1 at 2012-09-16 15:10:48 +0400
|
23
29
|
|
24
30
|
ActionController::RoutingError (No route matches [GET] "/"):
|
25
31
|
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
@@ -42,50 +48,2316 @@ ActionController::RoutingError (No route matches [GET] "/"):
|
|
42
48
|
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
43
49
|
|
44
50
|
|
45
|
-
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (
|
51
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.4ms)
|
52
|
+
|
53
|
+
|
54
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
55
|
+
Processing by ProjectsController#new as HTML
|
56
|
+
Rendered projects/new.html.erb within layouts/application (64.7ms)
|
57
|
+
Completed 200 OK in 72ms (Views: 68.1ms | ActiveRecord: 0.7ms)
|
58
|
+
|
59
|
+
|
60
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
61
|
+
Compiled jquery_events_test.js (0ms) (pid 69549)
|
62
|
+
Served asset /jquery_events_test.js - 200 OK (29ms)
|
63
|
+
|
64
|
+
|
65
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
66
|
+
Compiled jquery.js (2ms) (pid 69549)
|
67
|
+
Served asset /jquery.js - 200 OK (159ms)
|
68
|
+
|
69
|
+
|
70
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:10:55 +0400
|
71
|
+
Compiled jquery_nested_form.js (0ms) (pid 69549)
|
72
|
+
Served asset /jquery_nested_form.js - 200 OK (52ms)
|
73
|
+
|
74
|
+
|
75
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
76
|
+
Processing by ProjectsController#new as HTML
|
77
|
+
Rendered projects/new.html.erb within layouts/application (2.7ms)
|
78
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
79
|
+
|
80
|
+
|
81
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
82
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
83
|
+
|
84
|
+
|
85
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
86
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
87
|
+
|
88
|
+
|
89
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:11:57 +0400
|
90
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
91
|
+
|
92
|
+
|
93
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:12:10 +0400
|
94
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
95
|
+
|
96
|
+
|
97
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:12:10 +0400
|
98
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
99
|
+
|
100
|
+
|
101
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:12:10 +0400
|
102
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
103
|
+
|
104
|
+
|
105
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
106
|
+
Processing by ProjectsController#new as HTML
|
107
|
+
Rendered projects/new.html.erb within layouts/application (2.4ms)
|
108
|
+
Completed 200 OK in 5ms (Views: 5.0ms | ActiveRecord: 0.0ms)
|
109
|
+
|
110
|
+
|
111
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
112
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
113
|
+
|
46
114
|
|
115
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
116
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
47
117
|
|
48
|
-
Started GET "/projects/without_intermediate_inputs" for 127.0.0.1 at 2012-08-21 22:22:48 +0300
|
49
|
-
Processing by ProjectsController#without_intermediate_inputs as HTML
|
50
|
-
Rendered projects/without_intermediate_inputs.html.erb within layouts/application (46.8ms)
|
51
|
-
Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.5ms)
|
52
118
|
|
119
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:13:03 +0400
|
120
|
+
Compiled jquery_nested_form.js (0ms) (pid 69549)
|
121
|
+
Served asset /jquery_nested_form.js - 200 OK (147ms)
|
53
122
|
|
54
|
-
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-08-21 22:22:48 +0300
|
55
|
-
Compiled jquery.js (3ms) (pid 22470)
|
56
|
-
Served asset /jquery.js - 200 OK (20ms)
|
57
123
|
|
124
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
125
|
+
Processing by ProjectsController#new as HTML
|
126
|
+
Rendered projects/new.html.erb within layouts/application (2.4ms)
|
127
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
58
128
|
|
59
|
-
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-08-21 22:22:48 +0300
|
60
|
-
Compiled jquery_nested_form.js (0ms) (pid 22470)
|
61
|
-
Served asset /jquery_nested_form.js - 200 OK (6ms)
|
62
129
|
|
130
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
131
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
63
132
|
|
64
|
-
|
65
|
-
|
66
|
-
Served asset /
|
133
|
+
|
134
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
135
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
136
|
+
|
137
|
+
|
138
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:13:09 +0400
|
139
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
140
|
+
|
141
|
+
|
142
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
143
|
+
Processing by ProjectsController#new as HTML
|
144
|
+
Rendered projects/new.html.erb within layouts/application (2.9ms)
|
145
|
+
Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.0ms)
|
146
|
+
|
147
|
+
|
148
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
149
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
150
|
+
|
151
|
+
|
152
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
153
|
+
Compiled jquery_nested_form.js (0ms) (pid 69549)
|
154
|
+
Served asset /jquery_nested_form.js - 200 OK (24ms)
|
155
|
+
|
156
|
+
|
157
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-16 15:13:33 +0400
|
158
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
67
159
|
Connecting to database specified by database.yml
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
160
|
+
|
161
|
+
|
162
|
+
Started GET "/" for 127.0.0.1 at 2012-09-17 21:26:04 +0300
|
163
|
+
|
164
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
165
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
166
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
167
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
168
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
169
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
170
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
171
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
172
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
173
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
174
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
175
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
176
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
177
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
178
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
179
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
180
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
181
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
182
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
183
|
+
|
184
|
+
|
185
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
|
186
|
+
|
187
|
+
|
188
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:26:10 +0300
|
189
|
+
Processing by ProjectsController#new as HTML
|
190
|
+
Rendered projects/new.html.erb within layouts/application (31.8ms)
|
191
|
+
Completed 500 Internal Server Error in 49ms
|
192
|
+
|
193
|
+
ActionView::Template::Error (can't dup NilClass):
|
194
|
+
1: <%= nested_form_for @project do |f| -%>
|
195
|
+
2: <%= render partial: f %>
|
196
|
+
3: <%= f.text_field :name %>
|
197
|
+
4: <%= f.fields_for :tasks do |tf| -%>
|
198
|
+
app/views/projects/new.html.erb:1:in `block in _app_views_projects_new_html_erb___2641250149401427666_2171759060'
|
199
|
+
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2171759060'
|
200
|
+
|
201
|
+
|
202
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
203
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
204
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (11.0ms)
|
205
|
+
|
206
|
+
|
207
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:26:40 +0300
|
208
|
+
Processing by ProjectsController#new as HTML
|
209
|
+
Rendered projects/new.html.erb within layouts/application (10.1ms)
|
210
|
+
Completed 500 Internal Server Error in 30ms
|
211
|
+
|
212
|
+
ActionView::Template::Error (can't dup NilClass):
|
213
|
+
1: <%= nested_form_for @project do |f| -%>
|
214
|
+
2: <%= render f %>
|
215
|
+
3: <%= f.text_field :name %>
|
216
|
+
4: <%= f.fields_for :tasks do |tf| -%>
|
217
|
+
app/views/projects/new.html.erb:1:in `block in _app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
218
|
+
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
219
|
+
|
220
|
+
|
221
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.2ms)
|
222
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
|
223
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (13.8ms)
|
224
|
+
|
225
|
+
|
226
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:26:40 +0300
|
227
|
+
Processing by ProjectsController#new as HTML
|
228
|
+
Rendered projects/new.html.erb within layouts/application (1.3ms)
|
229
|
+
Completed 500 Internal Server Error in 3ms
|
230
|
+
|
231
|
+
ActionView::Template::Error (can't dup NilClass):
|
232
|
+
1: <%= nested_form_for @project do |f| -%>
|
233
|
+
2: <%= render f %>
|
234
|
+
3: <%= f.text_field :name %>
|
235
|
+
4: <%= f.fields_for :tasks do |tf| -%>
|
236
|
+
app/views/projects/new.html.erb:1:in `block in _app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
237
|
+
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2170823360'
|
238
|
+
|
239
|
+
|
240
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
241
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
242
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.4ms)
|
243
|
+
|
244
|
+
|
245
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-17 21:27:13 +0300
|
246
|
+
Processing by ProjectsController#new as HTML
|
247
|
+
Rendered projects/new.html.erb within layouts/application (2.9ms)
|
248
|
+
Completed 500 Internal Server Error in 5ms
|
249
|
+
|
250
|
+
ActionView::Template::Error (Missing partial projects/form, application/form with {:locale=>[:en], :formats=>[:html], :handlers=>[:erb, :builder]}. Searched in:
|
251
|
+
* "/Users/lest/code/nested_form/spec/dummy/app/views"
|
252
|
+
):
|
253
|
+
1: <%= form_for @project do |f| %>
|
254
|
+
2: <%= render partial: f %>
|
255
|
+
3: <% end %>
|
256
|
+
4: <%= nested_form_for @project do |f| -%>
|
257
|
+
5: <%= f.text_field :name %>
|
258
|
+
app/views/projects/new.html.erb:2:in `block in _app_views_projects_new_html_erb___2641250149401427666_2172320740'
|
259
|
+
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb___2641250149401427666_2172320740'
|
260
|
+
|
261
|
+
|
262
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
263
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
|
264
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.1ms)
|
82
265
|
Connecting to database specified by database.yml
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
266
|
+
|
267
|
+
|
268
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:24:22 +0300
|
269
|
+
Processing by ProjectsController#new as HTML
|
270
|
+
Rendered projects/new.html.erb within layouts/application (80.6ms)
|
271
|
+
Completed 200 OK in 169ms (Views: 163.8ms | ActiveRecord: 0.7ms)
|
272
|
+
|
273
|
+
|
274
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:24:23 +0300
|
275
|
+
Compiled jquery_events_test.js (0ms) (pid 30965)
|
276
|
+
Served asset /jquery_events_test.js - 200 OK (92ms)
|
277
|
+
|
278
|
+
|
279
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:24:23 +0300
|
280
|
+
Compiled jquery_nested_form.js (0ms) (pid 30965)
|
281
|
+
Served asset /jquery_nested_form.js - 200 OK (44ms)
|
282
|
+
|
283
|
+
|
284
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:24:23 +0300
|
285
|
+
Compiled jquery.js (2ms) (pid 30965)
|
286
|
+
Served asset /jquery.js - 200 OK (133ms)
|
287
|
+
Connecting to database specified by database.yml
|
288
|
+
|
289
|
+
|
290
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:25:48 +0300
|
291
|
+
Processing by ProjectsController#new as HTML
|
292
|
+
Rendered projects/new.html.erb within layouts/application (42.2ms)
|
293
|
+
Completed 200 OK in 82ms (Views: 78.7ms | ActiveRecord: 0.6ms)
|
294
|
+
|
295
|
+
|
296
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:25:48 +0300
|
297
|
+
Served asset /jquery_events_test.js - 304 Not Modified (3ms)
|
298
|
+
|
299
|
+
|
300
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:25:49 +0300
|
301
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
302
|
+
|
303
|
+
|
304
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:25:49 +0300
|
305
|
+
Served asset /jquery.js - 304 Not Modified (3ms)
|
306
|
+
|
307
|
+
|
308
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
309
|
+
Processing by ProjectsController#new as HTML
|
310
|
+
Rendered projects/new.html.erb within layouts/application (4.7ms)
|
311
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
312
|
+
|
313
|
+
|
314
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
315
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
316
|
+
|
317
|
+
|
318
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
319
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
320
|
+
|
321
|
+
|
322
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:26:06 +0300
|
323
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
324
|
+
Connecting to database specified by database.yml
|
325
|
+
|
326
|
+
|
327
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
328
|
+
Processing by ProjectsController#new as HTML
|
329
|
+
Rendered projects/new.html.erb within layouts/application (41.6ms)
|
330
|
+
Completed 200 OK in 82ms (Views: 78.5ms | ActiveRecord: 0.6ms)
|
331
|
+
|
332
|
+
|
333
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
334
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (3ms)
|
335
|
+
|
336
|
+
|
337
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
338
|
+
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
339
|
+
|
340
|
+
|
341
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:26:13 +0300
|
342
|
+
Served asset /jquery.js - 304 Not Modified (4ms)
|
343
|
+
Connecting to database specified by database.yml
|
344
|
+
|
345
|
+
|
346
|
+
Started GET "/" for 127.0.0.1 at 2012-09-26 22:56:18 +0300
|
347
|
+
|
348
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
349
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
350
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
351
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
352
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
353
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
354
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
355
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
356
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
357
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
358
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
359
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
360
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
361
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
362
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
363
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
364
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
365
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
366
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
367
|
+
|
368
|
+
|
369
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.4ms)
|
370
|
+
|
371
|
+
|
372
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
373
|
+
Processing by ProjectsController#new as HTML
|
374
|
+
Rendered projects/new.html.erb within layouts/application (36.8ms)
|
375
|
+
Completed 200 OK in 70ms (Views: 66.5ms | ActiveRecord: 0.6ms)
|
376
|
+
|
377
|
+
|
378
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
379
|
+
Served asset /jquery.js - 304 Not Modified (9ms)
|
380
|
+
|
381
|
+
|
382
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
383
|
+
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
384
|
+
|
385
|
+
|
386
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:56:21 +0300
|
387
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
388
|
+
|
389
|
+
|
390
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
391
|
+
Processing by ProjectsController#new as HTML
|
392
|
+
Rendered projects/new.html.erb within layouts/application (2.5ms)
|
393
|
+
Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.0ms)
|
394
|
+
|
395
|
+
|
396
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
397
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
398
|
+
|
399
|
+
|
400
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
401
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
402
|
+
|
403
|
+
|
404
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:56:55 +0300
|
405
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
406
|
+
|
407
|
+
|
408
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
409
|
+
Processing by ProjectsController#new as HTML
|
410
|
+
Rendered projects/new.html.erb within layouts/application (4.2ms)
|
411
|
+
Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
|
412
|
+
|
413
|
+
|
414
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
415
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
416
|
+
|
417
|
+
|
418
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
419
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
420
|
+
|
421
|
+
|
422
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:58:31 +0300
|
423
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
424
|
+
|
425
|
+
|
426
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
427
|
+
Processing by ProjectsController#new as HTML
|
428
|
+
Rendered projects/new.html.erb within layouts/application (2.5ms)
|
429
|
+
Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
430
|
+
|
431
|
+
|
432
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
433
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
434
|
+
|
435
|
+
|
436
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
437
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
438
|
+
|
439
|
+
|
440
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:58:59 +0300
|
441
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
442
|
+
Connecting to database specified by database.yml
|
443
|
+
|
444
|
+
|
445
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:59:16 +0300
|
446
|
+
Processing by ProjectsController#new as HTML
|
447
|
+
Rendered projects/new.html.erb within layouts/application (29.6ms)
|
448
|
+
Completed 200 OK in 70ms (Views: 66.4ms | ActiveRecord: 0.3ms)
|
449
|
+
|
450
|
+
|
451
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:59:17 +0300
|
452
|
+
Served asset /jquery.js - 304 Not Modified (49ms)
|
453
|
+
|
454
|
+
|
455
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:59:17 +0300
|
456
|
+
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
457
|
+
|
458
|
+
|
459
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:59:17 +0300
|
460
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
461
|
+
Connecting to database specified by database.yml
|
462
|
+
|
463
|
+
|
464
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:59:49 +0300
|
465
|
+
Processing by ProjectsController#new as HTML
|
466
|
+
Rendered projects/new.html.erb within layouts/application (29.4ms)
|
467
|
+
Completed 200 OK in 69ms (Views: 65.9ms | ActiveRecord: 0.3ms)
|
468
|
+
|
469
|
+
|
470
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:59:49 +0300
|
471
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (4ms)
|
472
|
+
|
473
|
+
|
474
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:59:50 +0300
|
475
|
+
Served asset /jquery.js - 304 Not Modified (6ms)
|
476
|
+
|
477
|
+
|
478
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:59:50 +0300
|
479
|
+
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
480
|
+
|
481
|
+
|
482
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 22:59:50 +0300
|
483
|
+
Processing by ProjectsController#new as HTML
|
484
|
+
Rendered projects/new.html.erb within layouts/application (2.0ms)
|
485
|
+
Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
|
486
|
+
|
487
|
+
|
488
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 22:59:51 +0300
|
489
|
+
Served asset /jquery_nested_form.js - 200 OK (0ms)
|
490
|
+
|
491
|
+
|
492
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 22:59:51 +0300
|
493
|
+
Served asset /jquery.js - 200 OK (0ms)
|
494
|
+
|
495
|
+
|
496
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 22:59:51 +0300
|
497
|
+
Served asset /jquery_events_test.js - 200 OK (0ms)
|
498
|
+
|
499
|
+
|
500
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
501
|
+
Processing by ProjectsController#new as HTML
|
502
|
+
Rendered projects/new.html.erb within layouts/application (4.1ms)
|
503
|
+
Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.0ms)
|
504
|
+
|
505
|
+
|
506
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
507
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
508
|
+
|
509
|
+
|
510
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
511
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
512
|
+
|
513
|
+
|
514
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:00:30 +0300
|
515
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
516
|
+
|
517
|
+
|
518
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
519
|
+
Processing by ProjectsController#new as HTML
|
520
|
+
Rendered projects/new.html.erb within layouts/application (3.1ms)
|
521
|
+
Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
|
522
|
+
|
523
|
+
|
524
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
525
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
526
|
+
|
527
|
+
|
528
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
529
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
530
|
+
|
531
|
+
|
532
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:00:57 +0300
|
533
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
534
|
+
Connecting to database specified by database.yml
|
535
|
+
Connecting to database specified by database.yml
|
536
|
+
|
537
|
+
|
538
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:01:45 +0300
|
539
|
+
Processing by ProjectsController#new as HTML
|
540
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
541
|
+
Rendered projects/new.html.erb within layouts/application (35.8ms)
|
542
|
+
Completed 500 Internal Server Error in 74ms
|
543
|
+
|
544
|
+
ActionView::Template::Error (undefined method `project_path' for #<#<Class:0x00000100a45d70>:0x00000100b4e7d0>):
|
545
|
+
1: <%= nested_form_for Project.last do |f| -%>
|
546
|
+
2: <table>
|
547
|
+
3: <%= f.fields_for :tasks, wrapper: false do |tf| -%>
|
548
|
+
4: <tr class="fields">
|
549
|
+
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb__4484368745097314982_2156635800'
|
550
|
+
|
551
|
+
|
552
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
553
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
554
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (12.1ms)
|
555
|
+
|
556
|
+
|
557
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:01:56 +0300
|
558
|
+
Processing by ProjectsController#new as HTML
|
559
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1
|
560
|
+
Rendered projects/new.html.erb within layouts/application (2.4ms)
|
561
|
+
Completed 500 Internal Server Error in 4ms
|
562
|
+
|
563
|
+
ActionView::Template::Error (wrong number of arguments (3 for 2)):
|
564
|
+
1: <%= nested_form_for :project, Project.last do |f| -%>
|
565
|
+
2: <table>
|
566
|
+
3: <%= f.fields_for :tasks, wrapper: false do |tf| -%>
|
567
|
+
4: <tr class="fields">
|
568
|
+
app/views/projects/new.html.erb:1:in `_app_views_projects_new_html_erb__4484368745097314982_2160042100'
|
569
|
+
|
570
|
+
|
571
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
|
572
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
573
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.9ms)
|
574
|
+
|
575
|
+
|
576
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
577
|
+
Processing by ProjectsController#new as HTML
|
578
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
579
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
580
|
+
Rendered projects/new.html.erb within layouts/application (63.0ms)
|
581
|
+
Completed 200 OK in 67ms (Views: 66.0ms | ActiveRecord: 0.6ms)
|
582
|
+
|
583
|
+
|
584
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
585
|
+
Served asset /jquery.js - 304 Not Modified (7ms)
|
586
|
+
|
587
|
+
|
588
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
589
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (2ms)
|
590
|
+
|
591
|
+
|
592
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:01 +0300
|
593
|
+
Served asset /jquery_events_test.js - 304 Not Modified (2ms)
|
594
|
+
|
595
|
+
|
596
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:13 +0300
|
597
|
+
Processing by ProjectsController#new as HTML
|
598
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
599
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
600
|
+
Rendered projects/new.html.erb within layouts/application (3.5ms)
|
601
|
+
Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.3ms)
|
602
|
+
|
603
|
+
|
604
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:14 +0300
|
605
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
606
|
+
|
607
|
+
|
608
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:14 +0300
|
609
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
610
|
+
|
611
|
+
|
612
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:14 +0300
|
613
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
614
|
+
|
615
|
+
|
616
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
617
|
+
Processing by ProjectsController#new as HTML
|
618
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
619
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
620
|
+
Rendered projects/new.html.erb within layouts/application (4.6ms)
|
621
|
+
Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.3ms)
|
622
|
+
|
623
|
+
|
624
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
625
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
626
|
+
|
627
|
+
|
628
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
629
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
630
|
+
|
631
|
+
|
632
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:45 +0300
|
633
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
634
|
+
|
635
|
+
|
636
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
637
|
+
Processing by ProjectsController#new as HTML
|
638
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" ORDER BY "projects"."id" DESC LIMIT 1[0m
|
639
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 1
|
640
|
+
Rendered projects/new.html.erb within layouts/application (4.6ms)
|
641
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.3ms)
|
642
|
+
|
643
|
+
|
644
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
645
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
646
|
+
|
647
|
+
|
648
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
649
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
650
|
+
|
651
|
+
|
652
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-09-26 23:02:52 +0300
|
653
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
654
|
+
Connecting to database specified by database.yml
|
655
|
+
|
656
|
+
|
657
|
+
Started GET "/" for 127.0.0.1 at 2012-10-17 22:09:31 +0300
|
658
|
+
|
659
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
660
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
661
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
662
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
663
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
664
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
665
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
666
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
667
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
668
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
669
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
670
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
671
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
672
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
673
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
674
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
675
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
676
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
677
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
678
|
+
|
679
|
+
|
680
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.8ms)
|
681
|
+
|
682
|
+
|
683
|
+
Started GET "/" for 127.0.0.1 at 2012-10-17 22:09:32 +0300
|
684
|
+
|
685
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
686
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
687
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
688
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
689
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
690
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
691
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
692
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
693
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
694
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
695
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
696
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
697
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
698
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
699
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
700
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
701
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
702
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
703
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
704
|
+
|
705
|
+
|
706
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
707
|
+
|
708
|
+
|
709
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-10-17 22:09:33 +0300
|
710
|
+
Processing by ProjectsController#new as HTML
|
711
|
+
Rendered projects/_task_fields.html.erb (20.5ms)
|
712
|
+
Rendered projects/new.html.erb within layouts/application (178.0ms)
|
713
|
+
Completed 200 OK in 211ms (Views: 205.7ms | ActiveRecord: 0.7ms)
|
714
|
+
|
715
|
+
|
716
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-17 22:09:34 +0300
|
717
|
+
Compiled jquery_nested_form.js (1ms) (pid 71916)
|
718
|
+
Served asset /jquery_nested_form.js - 200 OK (139ms)
|
719
|
+
|
720
|
+
|
721
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-17 22:09:34 +0300
|
722
|
+
Served asset /jquery_events_test.js - 200 OK (36ms)
|
723
|
+
|
724
|
+
|
725
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-17 22:09:34 +0300
|
726
|
+
Served asset /jquery.js - 200 OK (114ms)
|
727
|
+
|
728
|
+
|
729
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
730
|
+
Processing by ProjectsController#new as HTML
|
731
|
+
Rendered projects/_task_fields.html.erb (1.3ms)
|
732
|
+
Rendered projects/_task_fields.html.erb (0.6ms)
|
733
|
+
Rendered projects/new.html.erb within layouts/application (32.4ms)
|
734
|
+
Completed 200 OK in 49ms (Views: 48.2ms | ActiveRecord: 0.0ms)
|
735
|
+
|
736
|
+
|
737
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
738
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
739
|
+
|
740
|
+
|
741
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
742
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
743
|
+
|
744
|
+
|
745
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-17 22:10:27 +0300
|
746
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
747
|
+
|
748
|
+
|
749
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
750
|
+
Processing by ProjectsController#new as HTML
|
751
|
+
Rendered projects/_task_fields.html.erb (0.6ms)
|
752
|
+
Rendered projects/_task_fields.html.erb (1.2ms)
|
753
|
+
Rendered projects/new.html.erb within layouts/application (36.7ms)
|
754
|
+
Completed 200 OK in 40ms (Views: 39.3ms | ActiveRecord: 0.0ms)
|
755
|
+
|
756
|
+
|
757
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
758
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
759
|
+
|
760
|
+
|
761
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
762
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
763
|
+
|
764
|
+
|
765
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-17 22:10:32 +0300
|
766
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
767
|
+
Connecting to database specified by database.yml
|
768
|
+
|
769
|
+
|
770
|
+
Started GET "/projects/new" for 127.0.0.1 at 2012-10-18 21:56:00 +0300
|
771
|
+
Processing by ProjectsController#new as HTML
|
772
|
+
Rendered projects/_form_table.html.erb (159.6ms)
|
773
|
+
Rendered projects/edit.html.erb within layouts/application (188.9ms)
|
774
|
+
Completed 200 OK in 247ms (Views: 243.0ms | ActiveRecord: 0.7ms)
|
775
|
+
|
776
|
+
|
777
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:01 +0300
|
778
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (142ms)
|
779
|
+
|
780
|
+
|
781
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:01 +0300
|
782
|
+
Served asset /jquery.js - 200 OK (47ms)
|
783
|
+
|
784
|
+
|
785
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:01 +0300
|
786
|
+
Served asset /jquery_events_test.js - 304 Not Modified (6ms)
|
787
|
+
|
788
|
+
|
789
|
+
Started POST "/projects" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
790
|
+
Processing by ProjectsController#create as HTML
|
791
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"1350586565282"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"1350586571951"=>{"name"=>"123", "_destroy"=>"false"}}}, "1350586564703"=>{"name"=>"", "_destroy"=>"false"}, "1350586563513"=>{"name"=>"", "_destroy"=>"false"}}}, "commit"=>"Create Project"}
|
792
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
793
|
+
[1m[35mSQL (12.7ms)[0m INSERT INTO "projects" ("name") VALUES (?) [["name", "123"]]
|
794
|
+
[1m[36mSQL (10.2ms)[0m [1mINSERT INTO "tasks" ("name", "project_id") VALUES (?, ?)[0m [["name", "123"], ["project_id", 2]]
|
795
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "milestones" ("name", "task_id") VALUES (?, ?) [["name", "123"], ["task_id", 2]]
|
796
|
+
[1m[36mSQL (0.0ms)[0m [1mINSERT INTO "tasks" ("name", "project_id") VALUES (?, ?)[0m [["name", ""], ["project_id", 2]]
|
797
|
+
[1m[35mSQL (0.0ms)[0m INSERT INTO "tasks" ("name", "project_id") VALUES (?, ?) [["name", ""], ["project_id", 2]]
|
798
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
799
|
+
Redirected to http://localhost:3000/projects
|
800
|
+
Completed 302 Found in 87ms (ActiveRecord: 27.0ms)
|
801
|
+
|
802
|
+
|
803
|
+
Started GET "/projects" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
804
|
+
Processing by ProjectsController#index as HTML
|
805
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects"
|
806
|
+
Rendered projects/index.html.erb within layouts/application (1.4ms)
|
807
|
+
Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.2ms)
|
808
|
+
|
809
|
+
|
810
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
811
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
812
|
+
|
813
|
+
|
814
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:15 +0300
|
815
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
816
|
+
|
817
|
+
|
818
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:18 +0300
|
819
|
+
Processing by ProjectsController#edit as HTML
|
820
|
+
Parameters: {"id"=>"2"}
|
821
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
822
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
823
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
824
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
825
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
826
|
+
Rendered projects/_form_table.html.erb (11.0ms)
|
827
|
+
Rendered projects/edit.html.erb within layouts/application (11.6ms)
|
828
|
+
Completed 200 OK in 16ms (Views: 13.6ms | ActiveRecord: 0.9ms)
|
829
|
+
|
830
|
+
|
831
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:18 +0300
|
832
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
833
|
+
|
834
|
+
|
835
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:18 +0300
|
836
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
837
|
+
|
838
|
+
|
839
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
840
|
+
Processing by ProjectsController#edit as HTML
|
841
|
+
Parameters: {"id"=>"2"}
|
842
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
843
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
844
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
845
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
846
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
847
|
+
Rendered projects/_form_table.html.erb (8.7ms)
|
848
|
+
Rendered projects/edit.html.erb within layouts/application (9.3ms)
|
849
|
+
Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.7ms)
|
850
|
+
|
851
|
+
|
852
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
853
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
854
|
+
|
855
|
+
|
856
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
857
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
858
|
+
|
859
|
+
|
860
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:21 +0300
|
861
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
862
|
+
|
863
|
+
|
864
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:24 +0300
|
865
|
+
Processing by ProjectsController#update as HTML
|
866
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
867
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
868
|
+
[1m[35m (0.1ms)[0m begin transaction
|
869
|
+
[1m[36mTask Load (0.4ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
870
|
+
[1m[35mMilestone Load (0.4ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
871
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "tasks" SET "name" = '123123' WHERE "tasks"."id" = 3[0m
|
872
|
+
[1m[35m (2.4ms)[0m commit transaction
|
873
|
+
Redirected to http://localhost:3000/projects/2/edit
|
874
|
+
Completed 302 Found in 45ms (ActiveRecord: 3.9ms)
|
875
|
+
|
876
|
+
|
877
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
878
|
+
Processing by ProjectsController#edit as HTML
|
879
|
+
Parameters: {"id"=>"2"}
|
880
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
881
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
882
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
883
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
884
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
885
|
+
Rendered projects/_form_table.html.erb (30.9ms)
|
886
|
+
Rendered projects/edit.html.erb within layouts/application (31.6ms)
|
887
|
+
Completed 200 OK in 35ms (Views: 33.8ms | ActiveRecord: 0.8ms)
|
888
|
+
|
889
|
+
|
890
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
891
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
892
|
+
|
893
|
+
|
894
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
895
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
896
|
+
|
897
|
+
|
898
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:25 +0300
|
899
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
900
|
+
|
901
|
+
|
902
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
903
|
+
Processing by ProjectsController#edit as HTML
|
904
|
+
Parameters: {"id"=>"2"}
|
905
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
906
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
907
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
908
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
909
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
910
|
+
Rendered projects/_form_table.html.erb (8.9ms)
|
911
|
+
Rendered projects/edit.html.erb within layouts/application (9.5ms)
|
912
|
+
Completed 200 OK in 14ms (Views: 11.8ms | ActiveRecord: 0.6ms)
|
913
|
+
|
914
|
+
|
915
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
916
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
917
|
+
|
918
|
+
|
919
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
920
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
921
|
+
|
922
|
+
|
923
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:26 +0300
|
924
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
925
|
+
|
926
|
+
|
927
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
928
|
+
Processing by ProjectsController#update as HTML
|
929
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
930
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
931
|
+
[1m[35m (0.1ms)[0m begin transaction
|
932
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
933
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
934
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "milestones" SET "name" = '123123' WHERE "milestones"."id" = 1[0m
|
935
|
+
[1m[35m (3.5ms)[0m commit transaction
|
936
|
+
Redirected to http://localhost:3000/projects/2/edit
|
937
|
+
Completed 302 Found in 11ms (ActiveRecord: 4.3ms)
|
938
|
+
|
939
|
+
|
940
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
941
|
+
Processing by ProjectsController#edit as HTML
|
942
|
+
Parameters: {"id"=>"2"}
|
943
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
944
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
945
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
946
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
947
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
948
|
+
Rendered projects/_form_table.html.erb (10.8ms)
|
949
|
+
Rendered projects/edit.html.erb within layouts/application (11.5ms)
|
950
|
+
Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.8ms)
|
951
|
+
|
952
|
+
|
953
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
954
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
955
|
+
|
956
|
+
|
957
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
958
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
959
|
+
|
960
|
+
|
961
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:40 +0300
|
962
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
963
|
+
|
964
|
+
|
965
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
966
|
+
Processing by ProjectsController#edit as HTML
|
967
|
+
Parameters: {"id"=>"2"}
|
968
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
969
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
970
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
971
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
972
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
973
|
+
Rendered projects/_form_table.html.erb (33.5ms)
|
974
|
+
Rendered projects/edit.html.erb within layouts/application (34.4ms)
|
975
|
+
Completed 200 OK in 39ms (Views: 36.8ms | ActiveRecord: 0.8ms)
|
976
|
+
|
977
|
+
|
978
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
979
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
980
|
+
|
981
|
+
|
982
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
983
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
984
|
+
|
985
|
+
|
986
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:42 +0300
|
987
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
988
|
+
|
989
|
+
|
990
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
991
|
+
Processing by ProjectsController#update as HTML
|
992
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
993
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
994
|
+
[1m[35m (0.1ms)[0m begin transaction
|
995
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
996
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
997
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "milestones" SET "name" = '' WHERE "milestones"."id" = 1[0m
|
998
|
+
[1m[35m (2.6ms)[0m commit transaction
|
999
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1000
|
+
Completed 302 Found in 9ms (ActiveRecord: 3.4ms)
|
1001
|
+
|
1002
|
+
|
1003
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1004
|
+
Processing by ProjectsController#edit as HTML
|
1005
|
+
Parameters: {"id"=>"2"}
|
1006
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1007
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1008
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1009
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1010
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1011
|
+
Rendered projects/_form_table.html.erb (9.0ms)
|
1012
|
+
Rendered projects/edit.html.erb within layouts/application (9.6ms)
|
1013
|
+
Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.6ms)
|
1014
|
+
|
1015
|
+
|
1016
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1017
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1018
|
+
|
1019
|
+
|
1020
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1021
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1022
|
+
|
1023
|
+
|
1024
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:49 +0300
|
1025
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1026
|
+
|
1027
|
+
|
1028
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:50 +0300
|
1029
|
+
Processing by ProjectsController#edit as HTML
|
1030
|
+
Parameters: {"id"=>"2"}
|
1031
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1032
|
+
[1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1033
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1034
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1035
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1036
|
+
Rendered projects/_form_table.html.erb (11.0ms)
|
1037
|
+
Rendered projects/edit.html.erb within layouts/application (11.7ms)
|
1038
|
+
Completed 200 OK in 16ms (Views: 13.7ms | ActiveRecord: 0.9ms)
|
1039
|
+
|
1040
|
+
|
1041
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:51 +0300
|
1042
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1043
|
+
|
1044
|
+
|
1045
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:51 +0300
|
1046
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1047
|
+
|
1048
|
+
|
1049
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:51 +0300
|
1050
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1051
|
+
|
1052
|
+
|
1053
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1054
|
+
Processing by ProjectsController#update as HTML
|
1055
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1056
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1057
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1058
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1059
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1060
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
1061
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1062
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
|
1063
|
+
|
1064
|
+
|
1065
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1066
|
+
Processing by ProjectsController#edit as HTML
|
1067
|
+
Parameters: {"id"=>"2"}
|
1068
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1069
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1070
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1071
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1072
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1073
|
+
Rendered projects/_form_table.html.erb (9.1ms)
|
1074
|
+
Rendered projects/edit.html.erb within layouts/application (9.7ms)
|
1075
|
+
Completed 200 OK in 13ms (Views: 11.6ms | ActiveRecord: 0.7ms)
|
1076
|
+
|
1077
|
+
|
1078
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1079
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1080
|
+
|
1081
|
+
|
1082
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1083
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1084
|
+
|
1085
|
+
|
1086
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:56:55 +0300
|
1087
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1088
|
+
|
1089
|
+
|
1090
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1091
|
+
Processing by ProjectsController#edit as HTML
|
1092
|
+
Parameters: {"id"=>"2"}
|
1093
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1094
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1095
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1096
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1097
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1098
|
+
Rendered projects/_form_table.html.erb (10.3ms)
|
1099
|
+
Rendered projects/edit.html.erb within layouts/application (10.9ms)
|
1100
|
+
Completed 200 OK in 15ms (Views: 13.2ms | ActiveRecord: 0.7ms)
|
1101
|
+
|
1102
|
+
|
1103
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1104
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1105
|
+
|
1106
|
+
|
1107
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1108
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1109
|
+
|
1110
|
+
|
1111
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:00 +0300
|
1112
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1113
|
+
|
1114
|
+
|
1115
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1116
|
+
Processing by ProjectsController#update as HTML
|
1117
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1118
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1119
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1120
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)
|
1121
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)[0m
|
1122
|
+
[1m[35m (0.3ms)[0m UPDATE "milestones" SET "name" = '123123' WHERE "milestones"."id" = 1
|
1123
|
+
[1m[36m (3.4ms)[0m [1mcommit transaction[0m
|
1124
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1125
|
+
Completed 302 Found in 10ms (ActiveRecord: 4.3ms)
|
1126
|
+
|
1127
|
+
|
1128
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1129
|
+
Processing by ProjectsController#edit as HTML
|
1130
|
+
Parameters: {"id"=>"2"}
|
1131
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1132
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1133
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1134
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1135
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1136
|
+
Rendered projects/_form_table.html.erb (9.2ms)
|
1137
|
+
Rendered projects/edit.html.erb within layouts/application (9.8ms)
|
1138
|
+
Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.7ms)
|
1139
|
+
|
1140
|
+
|
1141
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1142
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1143
|
+
|
1144
|
+
|
1145
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1146
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1147
|
+
|
1148
|
+
|
1149
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1150
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1151
|
+
|
1152
|
+
|
1153
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1154
|
+
Processing by ProjectsController#update as HTML
|
1155
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1156
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1157
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1158
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1159
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1160
|
+
[1m[36m (0.1ms)[0m [1mcommit transaction[0m
|
1161
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1162
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.5ms)
|
1163
|
+
|
1164
|
+
|
1165
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1166
|
+
Processing by ProjectsController#edit as HTML
|
1167
|
+
Parameters: {"id"=>"2"}
|
1168
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1169
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1170
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1171
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1172
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1173
|
+
Rendered projects/_form_table.html.erb (9.0ms)
|
1174
|
+
Rendered projects/edit.html.erb within layouts/application (9.7ms)
|
1175
|
+
Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.7ms)
|
1176
|
+
|
1177
|
+
|
1178
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1179
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1180
|
+
|
1181
|
+
|
1182
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1183
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1184
|
+
|
1185
|
+
|
1186
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:03 +0300
|
1187
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1188
|
+
|
1189
|
+
|
1190
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1191
|
+
Processing by ProjectsController#edit as HTML
|
1192
|
+
Parameters: {"id"=>"2"}
|
1193
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1194
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1195
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1196
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1197
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1198
|
+
Rendered projects/_form_table.html.erb (9.5ms)
|
1199
|
+
Rendered projects/edit.html.erb within layouts/application (10.2ms)
|
1200
|
+
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.7ms)
|
1201
|
+
|
1202
|
+
|
1203
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1204
|
+
Served asset /jquery_events_test.js - 304 Not Modified (1ms)
|
1205
|
+
|
1206
|
+
|
1207
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1208
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1209
|
+
|
1210
|
+
|
1211
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:05 +0300
|
1212
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1213
|
+
|
1214
|
+
|
1215
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:08 +0300
|
1216
|
+
Processing by ProjectsController#update as HTML
|
1217
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1218
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1219
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1220
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)
|
1221
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)[0m
|
1222
|
+
[1m[35m (0.1ms)[0m commit transaction
|
1223
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1224
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
|
1225
|
+
|
1226
|
+
|
1227
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:08 +0300
|
1228
|
+
Processing by ProjectsController#edit as HTML
|
1229
|
+
Parameters: {"id"=>"2"}
|
1230
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1231
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1232
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1233
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1234
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1235
|
+
Rendered projects/_form_table.html.erb (36.7ms)
|
1236
|
+
Rendered projects/edit.html.erb within layouts/application (37.4ms)
|
1237
|
+
Completed 200 OK in 41ms (Views: 39.5ms | ActiveRecord: 0.7ms)
|
1238
|
+
|
1239
|
+
|
1240
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1241
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1242
|
+
|
1243
|
+
|
1244
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1245
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1246
|
+
|
1247
|
+
|
1248
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1249
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1250
|
+
|
1251
|
+
|
1252
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:09 +0300
|
1253
|
+
Processing by ProjectsController#edit as HTML
|
1254
|
+
Parameters: {"id"=>"2"}
|
1255
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1256
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1257
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1258
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1259
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1260
|
+
Rendered projects/_form_table.html.erb (9.2ms)
|
1261
|
+
Rendered projects/edit.html.erb within layouts/application (9.8ms)
|
1262
|
+
Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.6ms)
|
1263
|
+
|
1264
|
+
|
1265
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:10 +0300
|
1266
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1267
|
+
|
1268
|
+
|
1269
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:10 +0300
|
1270
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1271
|
+
|
1272
|
+
|
1273
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:10 +0300
|
1274
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1275
|
+
|
1276
|
+
|
1277
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1278
|
+
Processing by ProjectsController#update as HTML
|
1279
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"123123123123", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1280
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1281
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1282
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1283
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1284
|
+
[1m[36m (0.3ms)[0m [1mUPDATE "milestones" SET "name" = '123123123123' WHERE "milestones"."id" = 1[0m
|
1285
|
+
[1m[35m (7.3ms)[0m commit transaction
|
1286
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1287
|
+
Completed 302 Found in 13ms (ActiveRecord: 8.1ms)
|
1288
|
+
|
1289
|
+
|
1290
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1291
|
+
Processing by ProjectsController#edit as HTML
|
1292
|
+
Parameters: {"id"=>"2"}
|
1293
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1294
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1295
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1296
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1297
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1298
|
+
Rendered projects/_form_table.html.erb (9.5ms)
|
1299
|
+
Rendered projects/edit.html.erb within layouts/application (10.2ms)
|
1300
|
+
Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.7ms)
|
1301
|
+
|
1302
|
+
|
1303
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1304
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1305
|
+
|
1306
|
+
|
1307
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1308
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1309
|
+
|
1310
|
+
|
1311
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:57:33 +0300
|
1312
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1313
|
+
Connecting to database specified by database.yml
|
1314
|
+
|
1315
|
+
|
1316
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:58:53 +0300
|
1317
|
+
Processing by ProjectsController#edit as HTML
|
1318
|
+
Parameters: {"id"=>"2"}
|
1319
|
+
[1m[36mProject Load (12.7ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1320
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1321
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1322
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1323
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1324
|
+
Rendered projects/_form_table.html.erb (152.4ms)
|
1325
|
+
Rendered projects/edit.html.erb within layouts/application (159.4ms)
|
1326
|
+
Completed 200 OK in 226ms (Views: 205.1ms | ActiveRecord: 13.8ms)
|
1327
|
+
|
1328
|
+
|
1329
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:58:54 +0300
|
1330
|
+
Served asset /jquery.js - 304 Not Modified (53ms)
|
1331
|
+
|
1332
|
+
|
1333
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:58:54 +0300
|
1334
|
+
Served asset /jquery_events_test.js - 304 Not Modified (10ms)
|
1335
|
+
|
1336
|
+
|
1337
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:58:54 +0300
|
1338
|
+
Compiled jquery_nested_form.js (12ms) (pid 73344)
|
1339
|
+
Served asset /jquery_nested_form.js - 200 OK (114ms)
|
1340
|
+
|
1341
|
+
|
1342
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1343
|
+
Processing by ProjectsController#edit as HTML
|
1344
|
+
Parameters: {"id"=>"2"}
|
1345
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1346
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1347
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1348
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1349
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1350
|
+
Rendered projects/_form_table.html.erb (9.0ms)
|
1351
|
+
Rendered projects/edit.html.erb within layouts/application (9.6ms)
|
1352
|
+
Completed 200 OK in 13ms (Views: 11.7ms | ActiveRecord: 0.7ms)
|
1353
|
+
|
1354
|
+
|
1355
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1356
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1357
|
+
|
1358
|
+
|
1359
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1360
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1361
|
+
|
1362
|
+
|
1363
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 21:59:02 +0300
|
1364
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
1365
|
+
|
1366
|
+
|
1367
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1368
|
+
Processing by ProjectsController#edit as HTML
|
1369
|
+
Parameters: {"id"=>"2"}
|
1370
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1371
|
+
[1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1372
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1373
|
+
[1m[35mMilestone Load (0.3ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1374
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1375
|
+
Rendered projects/_form_table.html.erb (14.5ms)
|
1376
|
+
Rendered projects/edit.html.erb within layouts/application (66.2ms)
|
1377
|
+
Completed 200 OK in 70ms (Views: 67.7ms | ActiveRecord: 1.1ms)
|
1378
|
+
|
1379
|
+
|
1380
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1381
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1382
|
+
|
1383
|
+
|
1384
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1385
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1386
|
+
|
1387
|
+
|
1388
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:00:41 +0300
|
1389
|
+
Compiled jquery_nested_form.js (0ms) (pid 73344)
|
1390
|
+
Served asset /jquery_nested_form.js - 200 OK (14ms)
|
1391
|
+
|
1392
|
+
|
1393
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1394
|
+
Processing by ProjectsController#edit as HTML
|
1395
|
+
Parameters: {"id"=>"2"}
|
1396
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1397
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1398
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1399
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1400
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1401
|
+
Rendered projects/_form_table.html.erb (8.2ms)
|
1402
|
+
Rendered projects/edit.html.erb within layouts/application (8.8ms)
|
1403
|
+
Completed 200 OK in 13ms (Views: 11.0ms | ActiveRecord: 0.7ms)
|
1404
|
+
|
1405
|
+
|
1406
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1407
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1408
|
+
|
1409
|
+
|
1410
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1411
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1412
|
+
|
1413
|
+
|
1414
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:01:15 +0300
|
1415
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1416
|
+
|
1417
|
+
|
1418
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1419
|
+
Processing by ProjectsController#edit as HTML
|
1420
|
+
Parameters: {"id"=>"2"}
|
1421
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1422
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1423
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1424
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1425
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1426
|
+
Rendered projects/_form_table.html.erb (8.0ms)
|
1427
|
+
Rendered projects/edit.html.erb within layouts/application (8.5ms)
|
1428
|
+
Completed 200 OK in 12ms (Views: 10.3ms | ActiveRecord: 0.6ms)
|
1429
|
+
|
1430
|
+
|
1431
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1432
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1433
|
+
|
1434
|
+
|
1435
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1436
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1437
|
+
|
1438
|
+
|
1439
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:01:17 +0300
|
1440
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1441
|
+
Connecting to database specified by database.yml
|
1442
|
+
|
1443
|
+
|
1444
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:03:15 +0300
|
1445
|
+
|
1446
|
+
ActionController::RoutingError (No route matches [GET] "/projects/2/edit"):
|
1447
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1448
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1449
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1450
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1451
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1452
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1453
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1454
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1455
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1456
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1457
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1458
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1459
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1460
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1461
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1462
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1463
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1464
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1465
|
+
|
1466
|
+
|
1467
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (4.6ms)
|
1468
|
+
|
1469
|
+
|
1470
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:03:19 +0300
|
1471
|
+
|
1472
|
+
ActionController::RoutingError (No route matches [GET] "/projects/2/edit"):
|
1473
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1474
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1475
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1476
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1477
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1478
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1479
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1480
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1481
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1482
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1483
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1484
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1485
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1486
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1487
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1488
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1489
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1490
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1491
|
+
|
1492
|
+
|
1493
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
1494
|
+
|
1495
|
+
|
1496
|
+
Started GET "/projects/2" for 127.0.0.1 at 2012-10-18 22:03:22 +0300
|
1497
|
+
|
1498
|
+
AbstractController::ActionNotFound (The action '2' could not be found for ProjectsController):
|
1499
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
|
1500
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
1501
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
1502
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
1503
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
1504
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
1505
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
1506
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
1507
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
1508
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
1509
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
1510
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
1511
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
1512
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
1513
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
1514
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
1515
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
1516
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
1517
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
1518
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
1519
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
1520
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
1521
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
1522
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
1523
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2072785776171806141__call__2962146054285193037__callbacks'
|
1524
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
1525
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
1526
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
1527
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
1528
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
1529
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
1530
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
1531
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1532
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1533
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1534
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1535
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1536
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1537
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1538
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1539
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1540
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1541
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1542
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1543
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1544
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1545
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1546
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1547
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1548
|
+
|
1549
|
+
|
1550
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.8ms)
|
1551
|
+
|
1552
|
+
|
1553
|
+
Started GET "/projects" for 127.0.0.1 at 2012-10-18 22:03:25 +0300
|
1554
|
+
|
1555
|
+
ActionController::RoutingError (No route matches [GET] "/projects"):
|
1556
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
1557
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
1558
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
1559
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
1560
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
1561
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
1562
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
1563
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
1564
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
1565
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
1566
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
1567
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
1568
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
1569
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
1570
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
1571
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
1572
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
1573
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
1574
|
+
|
1575
|
+
|
1576
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
|
1577
|
+
Connecting to database specified by database.yml
|
1578
|
+
|
1579
|
+
|
1580
|
+
Started GET "/projects" for 127.0.0.1 at 2012-10-18 22:04:06 +0300
|
1581
|
+
Processing by ProjectsController#index as HTML
|
1582
|
+
[1m[36mProject Load (13.9ms)[0m [1mSELECT "projects".* FROM "projects" [0m
|
1583
|
+
Rendered projects/index.html.erb within layouts/application (4.4ms)
|
1584
|
+
Completed 200 OK in 71ms (Views: 50.0ms | ActiveRecord: 13.9ms)
|
1585
|
+
|
1586
|
+
|
1587
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:04:07 +0300
|
1588
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1589
|
+
Served asset /jquery_nested_form.js - 200 OK (23ms)
|
1590
|
+
|
1591
|
+
|
1592
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:07 +0300
|
1593
|
+
Served asset /jquery.js - 304 Not Modified (44ms)
|
1594
|
+
|
1595
|
+
|
1596
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:07 +0300
|
1597
|
+
Served asset /jquery_events_test.js - 304 Not Modified (9ms)
|
1598
|
+
|
1599
|
+
|
1600
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:04:08 +0300
|
1601
|
+
Processing by ProjectsController#edit as HTML
|
1602
|
+
Parameters: {"id"=>"2"}
|
1603
|
+
[1m[35mProject Load (0.3ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1604
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1605
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1606
|
+
[1m[36mMilestone Load (0.3ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1607
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1608
|
+
Rendered projects/_form.html.erb (178.2ms)
|
1609
|
+
Rendered projects/edit.html.erb within layouts/application (487.0ms)
|
1610
|
+
Completed 200 OK in 493ms (Views: 489.0ms | ActiveRecord: 1.5ms)
|
1611
|
+
|
1612
|
+
|
1613
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:09 +0300
|
1614
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1615
|
+
|
1616
|
+
|
1617
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:09 +0300
|
1618
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1619
|
+
|
1620
|
+
|
1621
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1622
|
+
Processing by ProjectsController#edit as HTML
|
1623
|
+
Parameters: {"id"=>"2"}
|
1624
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1625
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1626
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1627
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1628
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1629
|
+
Rendered projects/_form_table.html.erb (41.3ms)
|
1630
|
+
Rendered projects/edit.html.erb within layouts/application (42.7ms)
|
1631
|
+
Completed 200 OK in 47ms (Views: 44.9ms | ActiveRecord: 0.8ms)
|
1632
|
+
|
1633
|
+
|
1634
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1635
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1636
|
+
|
1637
|
+
|
1638
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1639
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1640
|
+
|
1641
|
+
|
1642
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:19 +0300
|
1643
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1644
|
+
|
1645
|
+
|
1646
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1647
|
+
Processing by ProjectsController#edit as HTML
|
1648
|
+
Parameters: {"id"=>"2"}
|
1649
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1650
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1651
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1652
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1653
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1654
|
+
Rendered projects/_form_table.html.erb (8.4ms)
|
1655
|
+
Rendered projects/edit.html.erb within layouts/application (9.0ms)
|
1656
|
+
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.6ms)
|
1657
|
+
|
1658
|
+
|
1659
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1660
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1661
|
+
|
1662
|
+
|
1663
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1664
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1665
|
+
|
1666
|
+
|
1667
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:04:29 +0300
|
1668
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1669
|
+
|
1670
|
+
|
1671
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1672
|
+
Processing by ProjectsController#edit as HTML
|
1673
|
+
Parameters: {"id"=>"2"}
|
1674
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1675
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1676
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1677
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1678
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1679
|
+
Rendered projects/_form_table.html.erb (10.2ms)
|
1680
|
+
Rendered projects/edit.html.erb within layouts/application (11.1ms)
|
1681
|
+
Completed 200 OK in 23ms (Views: 13.6ms | ActiveRecord: 0.8ms)
|
1682
|
+
|
1683
|
+
|
1684
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1685
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1686
|
+
Served asset /jquery_nested_form.js - 200 OK (51ms)
|
1687
|
+
|
1688
|
+
|
1689
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1690
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1691
|
+
|
1692
|
+
|
1693
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:06:42 +0300
|
1694
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1695
|
+
|
1696
|
+
|
1697
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1698
|
+
Processing by ProjectsController#edit as HTML
|
1699
|
+
Parameters: {"id"=>"2"}
|
1700
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1701
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1702
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1703
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1704
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1705
|
+
Rendered projects/_form_table.html.erb (31.4ms)
|
1706
|
+
Rendered projects/edit.html.erb within layouts/application (32.3ms)
|
1707
|
+
Completed 200 OK in 37ms (Views: 34.9ms | ActiveRecord: 0.8ms)
|
1708
|
+
|
1709
|
+
|
1710
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1711
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1712
|
+
Served asset /jquery_nested_form.js - 200 OK (49ms)
|
1713
|
+
|
1714
|
+
|
1715
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1716
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1717
|
+
|
1718
|
+
|
1719
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:07:47 +0300
|
1720
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1721
|
+
|
1722
|
+
|
1723
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:08:01 +0300
|
1724
|
+
Processing by ProjectsController#edit as HTML
|
1725
|
+
Parameters: {"id"=>"2"}
|
1726
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1727
|
+
[1m[35mTask Load (0.5ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1728
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1729
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1730
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1731
|
+
Rendered projects/_form_table.html.erb (9.8ms)
|
1732
|
+
Rendered projects/edit.html.erb within layouts/application (10.4ms)
|
1733
|
+
Completed 200 OK in 14ms (Views: 12.0ms | ActiveRecord: 0.9ms)
|
1734
|
+
|
1735
|
+
|
1736
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:08:02 +0300
|
1737
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1738
|
+
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
1739
|
+
|
1740
|
+
|
1741
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:08:02 +0300
|
1742
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1743
|
+
|
1744
|
+
|
1745
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:08:02 +0300
|
1746
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1747
|
+
|
1748
|
+
|
1749
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:08:25 +0300
|
1750
|
+
Processing by ProjectsController#edit as HTML
|
1751
|
+
Parameters: {"id"=>"2"}
|
1752
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1753
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1754
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1755
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1756
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1757
|
+
Rendered projects/_form_table.html.erb (8.7ms)
|
1758
|
+
Rendered projects/edit.html.erb within layouts/application (9.4ms)
|
1759
|
+
Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.7ms)
|
1760
|
+
|
1761
|
+
|
1762
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:08:26 +0300
|
1763
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1764
|
+
|
1765
|
+
|
1766
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:08:26 +0300
|
1767
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1768
|
+
|
1769
|
+
|
1770
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:08:26 +0300
|
1771
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1772
|
+
Served asset /jquery_nested_form.js - 200 OK (9ms)
|
1773
|
+
|
1774
|
+
|
1775
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:08:44 +0300
|
1776
|
+
Processing by ProjectsController#edit as HTML
|
1777
|
+
Parameters: {"id"=>"2"}
|
1778
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1779
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1780
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1781
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1782
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1783
|
+
Rendered projects/_form_table.html.erb (34.3ms)
|
1784
|
+
Rendered projects/edit.html.erb within layouts/application (35.0ms)
|
1785
|
+
Completed 200 OK in 39ms (Views: 36.7ms | ActiveRecord: 0.9ms)
|
1786
|
+
|
1787
|
+
|
1788
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:08:45 +0300
|
1789
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1790
|
+
|
1791
|
+
|
1792
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:08:45 +0300
|
1793
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1794
|
+
Served asset /jquery_nested_form.js - 200 OK (8ms)
|
1795
|
+
|
1796
|
+
|
1797
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:08:45 +0300
|
1798
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1799
|
+
|
1800
|
+
|
1801
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1802
|
+
Processing by ProjectsController#edit as HTML
|
1803
|
+
Parameters: {"id"=>"2"}
|
1804
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1805
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1806
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1807
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1808
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1809
|
+
Rendered projects/_form_table.html.erb (8.8ms)
|
1810
|
+
Rendered projects/edit.html.erb within layouts/application (9.4ms)
|
1811
|
+
Completed 200 OK in 13ms (Views: 11.3ms | ActiveRecord: 0.6ms)
|
1812
|
+
|
1813
|
+
|
1814
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1815
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1816
|
+
Served asset /jquery_nested_form.js - 200 OK (68ms)
|
1817
|
+
|
1818
|
+
|
1819
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1820
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1821
|
+
|
1822
|
+
|
1823
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:09:11 +0300
|
1824
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1825
|
+
|
1826
|
+
|
1827
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1828
|
+
Processing by ProjectsController#edit as HTML
|
1829
|
+
Parameters: {"id"=>"2"}
|
1830
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1831
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1832
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1833
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1834
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1835
|
+
Rendered projects/_form_table.html.erb (8.4ms)
|
1836
|
+
Rendered projects/edit.html.erb within layouts/application (9.0ms)
|
1837
|
+
Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.7ms)
|
1838
|
+
|
1839
|
+
|
1840
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1841
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1842
|
+
Served asset /jquery_nested_form.js - 200 OK (10ms)
|
1843
|
+
|
1844
|
+
|
1845
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1846
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1847
|
+
|
1848
|
+
|
1849
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:10:07 +0300
|
1850
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1851
|
+
|
1852
|
+
|
1853
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:14 +0300
|
1854
|
+
Processing by ProjectsController#edit as HTML
|
1855
|
+
Parameters: {"id"=>"2"}
|
1856
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1857
|
+
[1m[36mTask Load (0.3ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1858
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1859
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1860
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1861
|
+
Rendered projects/_form_table.html.erb (8.2ms)
|
1862
|
+
Rendered projects/edit.html.erb within layouts/application (8.8ms)
|
1863
|
+
Completed 200 OK in 12ms (Views: 10.6ms | ActiveRecord: 0.7ms)
|
1864
|
+
|
1865
|
+
|
1866
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:14 +0300
|
1867
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1868
|
+
|
1869
|
+
|
1870
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:15 +0300
|
1871
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1872
|
+
Served asset /jquery_nested_form.js - 200 OK (9ms)
|
1873
|
+
|
1874
|
+
|
1875
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:15 +0300
|
1876
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1877
|
+
|
1878
|
+
|
1879
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1880
|
+
Processing by ProjectsController#update as HTML
|
1881
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"11", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1882
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1883
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1884
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1885
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1886
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "milestones" SET "name" = '11' WHERE "milestones"."id" = 1[0m
|
1887
|
+
[1m[35m (2.7ms)[0m commit transaction
|
1888
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1889
|
+
Completed 302 Found in 55ms (ActiveRecord: 3.7ms)
|
1890
|
+
|
1891
|
+
|
1892
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1893
|
+
Processing by ProjectsController#edit as HTML
|
1894
|
+
Parameters: {"id"=>"2"}
|
1895
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1896
|
+
[1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1897
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1898
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1899
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1900
|
+
Rendered projects/_form_table.html.erb (9.7ms)
|
1901
|
+
Rendered projects/edit.html.erb within layouts/application (10.3ms)
|
1902
|
+
Completed 200 OK in 14ms (Views: 12.5ms | ActiveRecord: 0.7ms)
|
1903
|
+
|
1904
|
+
|
1905
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1906
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1907
|
+
|
1908
|
+
|
1909
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1910
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1911
|
+
|
1912
|
+
|
1913
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:19 +0300
|
1914
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1915
|
+
|
1916
|
+
|
1917
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:22 +0300
|
1918
|
+
Processing by ProjectsController#edit as HTML
|
1919
|
+
Parameters: {"id"=>"2"}
|
1920
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1921
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1922
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1923
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1924
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1925
|
+
Rendered projects/_form_table.html.erb (9.5ms)
|
1926
|
+
Rendered projects/edit.html.erb within layouts/application (10.1ms)
|
1927
|
+
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.7ms)
|
1928
|
+
|
1929
|
+
|
1930
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:23 +0300
|
1931
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1932
|
+
|
1933
|
+
|
1934
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:23 +0300
|
1935
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1936
|
+
|
1937
|
+
|
1938
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:23 +0300
|
1939
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1940
|
+
|
1941
|
+
|
1942
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:11:25 +0300
|
1943
|
+
Processing by ProjectsController#update as HTML
|
1944
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"name"=>"asdfasdf", "_destroy"=>"false", "id"=>"1"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
1945
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1946
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1947
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
1948
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1)
|
1949
|
+
[1m[36m (0.4ms)[0m [1mUPDATE "milestones" SET "name" = 'asdfasdf' WHERE "milestones"."id" = 1[0m
|
1950
|
+
[1m[35m (3.0ms)[0m commit transaction
|
1951
|
+
Redirected to http://localhost:3000/projects/2/edit
|
1952
|
+
Completed 302 Found in 11ms (ActiveRecord: 4.0ms)
|
1953
|
+
|
1954
|
+
|
1955
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:26 +0300
|
1956
|
+
Processing by ProjectsController#edit as HTML
|
1957
|
+
Parameters: {"id"=>"2"}
|
1958
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
1959
|
+
[1m[35mTask Load (0.3ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
1960
|
+
[1m[36mMilestone Load (0.3ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
1961
|
+
[1m[35mMilestone Load (0.3ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
1962
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
1963
|
+
Rendered projects/_form_table.html.erb (14.0ms)
|
1964
|
+
Rendered projects/edit.html.erb within layouts/application (15.0ms)
|
1965
|
+
Completed 200 OK in 20ms (Views: 17.5ms | ActiveRecord: 1.2ms)
|
1966
|
+
|
1967
|
+
|
1968
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:27 +0300
|
1969
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
1970
|
+
|
1971
|
+
|
1972
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:27 +0300
|
1973
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
1974
|
+
|
1975
|
+
|
1976
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:27 +0300
|
1977
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
1978
|
+
|
1979
|
+
|
1980
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
1981
|
+
Processing by ProjectsController#edit as HTML
|
1982
|
+
Parameters: {"id"=>"2"}
|
1983
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
1984
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
1985
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
1986
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
1987
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
1988
|
+
Rendered projects/_form_table.html.erb (9.6ms)
|
1989
|
+
Rendered projects/edit.html.erb within layouts/application (10.2ms)
|
1990
|
+
Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.7ms)
|
1991
|
+
|
1992
|
+
|
1993
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
1994
|
+
Compiled jquery_nested_form.js (0ms) (pid 73504)
|
1995
|
+
Served asset /jquery_nested_form.js - 200 OK (92ms)
|
1996
|
+
|
1997
|
+
|
1998
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
1999
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2000
|
+
|
2001
|
+
|
2002
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:42 +0300
|
2003
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2004
|
+
|
2005
|
+
|
2006
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2007
|
+
Processing by ProjectsController#edit as HTML
|
2008
|
+
Parameters: {"id"=>"2"}
|
2009
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2010
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2011
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2012
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2013
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2014
|
+
Rendered projects/_form_table.html.erb (10.3ms)
|
2015
|
+
Rendered projects/edit.html.erb within layouts/application (11.1ms)
|
2016
|
+
Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 0.7ms)
|
2017
|
+
|
2018
|
+
|
2019
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2020
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2021
|
+
|
2022
|
+
|
2023
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2024
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2025
|
+
|
2026
|
+
|
2027
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:11:56 +0300
|
2028
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2029
|
+
|
2030
|
+
|
2031
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2032
|
+
Processing by ProjectsController#update as HTML
|
2033
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"id"=>"1", "name"=>"asdfasdf", "_destroy"=>"false"}, "1350587518216"=>{"id"=>"", "name"=>"asdfasdf", "_destroy"=>"false"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
2034
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2035
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2036
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)
|
2037
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1, 0)[0m
|
2038
|
+
[1m[35mSQL (46.3ms)[0m INSERT INTO "milestones" ("name", "task_id") VALUES (?, ?) [["name", "asdfasdf"], ["task_id", 2]]
|
2039
|
+
[1m[36m (2.9ms)[0m [1mcommit transaction[0m
|
2040
|
+
Redirected to http://localhost:3000/projects/2/edit
|
2041
|
+
Completed 302 Found in 57ms (ActiveRecord: 49.6ms)
|
2042
|
+
|
2043
|
+
|
2044
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2045
|
+
Processing by ProjectsController#edit as HTML
|
2046
|
+
Parameters: {"id"=>"2"}
|
2047
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2048
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2049
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2050
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2051
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2052
|
+
Rendered projects/_form_table.html.erb (9.1ms)
|
2053
|
+
Rendered projects/edit.html.erb within layouts/application (9.7ms)
|
2054
|
+
Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.6ms)
|
2055
|
+
|
2056
|
+
|
2057
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2058
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2059
|
+
|
2060
|
+
|
2061
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2062
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2063
|
+
|
2064
|
+
|
2065
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:12:01 +0300
|
2066
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2067
|
+
|
2068
|
+
|
2069
|
+
Started PUT "/projects/2" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2070
|
+
Processing by ProjectsController#update as HTML
|
2071
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"yvPkogXwFxuzJqf7Gf94ECKKKNHi3Lvnp222MzlJ72g=", "project"=>{"name"=>"123", "tasks_attributes"=>{"0"=>{"name"=>"123", "_destroy"=>"false", "milestones_attributes"=>{"0"=>{"id"=>"1", "name"=>"asdfasdf", "_destroy"=>"false"}, "1"=>{"id"=>"2", "name"=>"asdfasdf", "_destroy"=>"false"}, "1350587522833"=>{"id"=>"", "name"=>"123123", "_destroy"=>"false"}}, "id"=>"2"}, "1"=>{"name"=>"123123", "_destroy"=>"false", "id"=>"3"}, "2"=>{"name"=>"", "_destroy"=>"false", "id"=>"4"}}}, "commit"=>"Update Project", "id"=>"2"}
|
2072
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2073
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2074
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2 AND "tasks"."id" IN (2, 3, 4)[0m
|
2075
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2 AND "milestones"."id" IN (1, 2, 0)
|
2076
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "milestones" ("name", "task_id") VALUES (?, ?)[0m [["name", "123123"], ["task_id", 2]]
|
2077
|
+
[1m[35m (3.5ms)[0m commit transaction
|
2078
|
+
Redirected to http://localhost:3000/projects/2/edit
|
2079
|
+
Completed 302 Found in 32ms (ActiveRecord: 4.2ms)
|
2080
|
+
|
2081
|
+
|
2082
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2083
|
+
Processing by ProjectsController#edit as HTML
|
2084
|
+
Parameters: {"id"=>"2"}
|
2085
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2086
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2087
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2088
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2089
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2090
|
+
Rendered projects/_form_table.html.erb (9.9ms)
|
2091
|
+
Rendered projects/edit.html.erb within layouts/application (10.5ms)
|
2092
|
+
Completed 200 OK in 14ms (Views: 12.6ms | ActiveRecord: 0.6ms)
|
2093
|
+
|
2094
|
+
|
2095
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2096
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2097
|
+
|
2098
|
+
|
2099
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2100
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2101
|
+
|
2102
|
+
|
2103
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:12:06 +0300
|
2104
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2105
|
+
|
2106
|
+
|
2107
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2108
|
+
Processing by ProjectsController#edit as HTML
|
2109
|
+
Parameters: {"id"=>"2"}
|
2110
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2111
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2112
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2113
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2114
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2115
|
+
Rendered projects/_form_table.html.erb (11.8ms)
|
2116
|
+
Rendered projects/edit.html.erb within layouts/application (12.7ms)
|
2117
|
+
Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.7ms)
|
2118
|
+
|
2119
|
+
|
2120
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2121
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2122
|
+
|
2123
|
+
|
2124
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2125
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2126
|
+
|
2127
|
+
|
2128
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:12:11 +0300
|
2129
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2130
|
+
|
2131
|
+
|
2132
|
+
Started GET "/" for 127.0.0.1 at 2012-10-18 22:16:20 +0300
|
2133
|
+
|
2134
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
2135
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
2136
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2137
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
2138
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
2139
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2140
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
2141
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
2142
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2143
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
2144
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
2145
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
2146
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
2147
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
2148
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
2149
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
2150
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2151
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2152
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2153
|
+
|
2154
|
+
|
2155
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
2156
|
+
|
2157
|
+
|
2158
|
+
Started GET "/" for 127.0.0.1 at 2012-10-18 22:25:52 +0300
|
2159
|
+
|
2160
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
2161
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
2162
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2163
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
2164
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
2165
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2166
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
2167
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
2168
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2169
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
2170
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
2171
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
2172
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
2173
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
2174
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
2175
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
2176
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2177
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2178
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2179
|
+
|
2180
|
+
|
2181
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
|
2182
|
+
|
2183
|
+
|
2184
|
+
Started GET "/projects/2" for 127.0.0.1 at 2012-10-18 22:25:54 +0300
|
2185
|
+
|
2186
|
+
AbstractController::ActionNotFound (The action 'show' could not be found for ProjectsController):
|
2187
|
+
actionpack (3.2.8) lib/abstract_controller/base.rb:116:in `process'
|
2188
|
+
actionpack (3.2.8) lib/abstract_controller/rendering.rb:45:in `process'
|
2189
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:203:in `dispatch'
|
2190
|
+
actionpack (3.2.8) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
2191
|
+
actionpack (3.2.8) lib/action_controller/metal.rb:246:in `block in action'
|
2192
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
2193
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
2194
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:36:in `call'
|
2195
|
+
journey (1.0.4) lib/journey/router.rb:68:in `block in call'
|
2196
|
+
journey (1.0.4) lib/journey/router.rb:56:in `each'
|
2197
|
+
journey (1.0.4) lib/journey/router.rb:56:in `call'
|
2198
|
+
actionpack (3.2.8) lib/action_dispatch/routing/route_set.rb:600:in `call'
|
2199
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
2200
|
+
rack (1.4.1) lib/rack/etag.rb:23:in `call'
|
2201
|
+
rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
|
2202
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
|
2203
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
2204
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
|
2205
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
|
2206
|
+
rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
|
2207
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
|
2208
|
+
activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
|
2209
|
+
activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
|
2210
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
|
2211
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4190427419334200419__call__1803629933879325397__callbacks'
|
2212
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
|
2213
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
|
2214
|
+
activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
2215
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
2216
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
|
2217
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
|
2218
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
|
2219
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
|
2220
|
+
railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
|
2221
|
+
railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
|
2222
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
|
2223
|
+
rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
|
2224
|
+
rack (1.4.1) lib/rack/runtime.rb:17:in `call'
|
2225
|
+
activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
2226
|
+
rack (1.4.1) lib/rack/lock.rb:15:in `call'
|
2227
|
+
actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
|
2228
|
+
railties (3.2.8) lib/rails/engine.rb:479:in `call'
|
2229
|
+
railties (3.2.8) lib/rails/application.rb:223:in `call'
|
2230
|
+
rack (1.4.1) lib/rack/content_length.rb:14:in `call'
|
2231
|
+
railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
|
2232
|
+
rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
|
2233
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
2234
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
2235
|
+
/Users/lest/.rbenv/versions/1.9.3-p194/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
2236
|
+
|
2237
|
+
|
2238
|
+
Rendered /Users/lest/code/nested_form/.bundle/ruby/1.9.1/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.5ms)
|
2239
|
+
|
2240
|
+
|
2241
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2242
|
+
Processing by ProjectsController#edit as HTML
|
2243
|
+
Parameters: {"id"=>"2"}
|
2244
|
+
[1m[36mProject Load (13.7ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2245
|
+
[1m[35mTask Load (0.1ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2246
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2247
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2248
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2249
|
+
Rendered projects/_form_table.html.erb (32.8ms)
|
2250
|
+
Rendered projects/edit.html.erb within layouts/application (47.5ms)
|
2251
|
+
Completed 200 OK in 88ms (Views: 68.5ms | ActiveRecord: 14.8ms)
|
2252
|
+
|
2253
|
+
|
2254
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2255
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2256
|
+
|
2257
|
+
|
2258
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2259
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2260
|
+
|
2261
|
+
|
2262
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:25:56 +0300
|
2263
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2264
|
+
|
2265
|
+
|
2266
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2267
|
+
Processing by ProjectsController#edit as HTML
|
2268
|
+
Parameters: {"id"=>"2"}
|
2269
|
+
[1m[35mProject Load (0.1ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2270
|
+
[1m[36mTask Load (0.2ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2271
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2272
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2273
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2274
|
+
Rendered projects/_form_table.html.erb (9.5ms)
|
2275
|
+
Rendered projects/edit.html.erb within layouts/application (10.1ms)
|
2276
|
+
Completed 200 OK in 14ms (Views: 12.2ms | ActiveRecord: 0.7ms)
|
2277
|
+
|
2278
|
+
|
2279
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2280
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2281
|
+
|
2282
|
+
|
2283
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2284
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2285
|
+
|
2286
|
+
|
2287
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:25:58 +0300
|
2288
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2289
|
+
|
2290
|
+
|
2291
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:26:16 +0300
|
2292
|
+
Processing by ProjectsController#edit as HTML
|
2293
|
+
Parameters: {"id"=>"2"}
|
2294
|
+
[1m[36mProject Load (0.2ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2295
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2296
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2297
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2298
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2299
|
+
Rendered projects/_form_table.html.erb (11.0ms)
|
2300
|
+
Rendered projects/edit.html.erb within layouts/application (11.6ms)
|
2301
|
+
Completed 200 OK in 15ms (Views: 13.4ms | ActiveRecord: 0.8ms)
|
2302
|
+
|
2303
|
+
|
2304
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:26:17 +0300
|
2305
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2306
|
+
|
2307
|
+
|
2308
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:26:17 +0300
|
2309
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2310
|
+
|
2311
|
+
|
2312
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:26:17 +0300
|
2313
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2314
|
+
|
2315
|
+
|
2316
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2317
|
+
Processing by ProjectsController#edit as HTML
|
2318
|
+
Parameters: {"id"=>"2"}
|
2319
|
+
[1m[35mProject Load (0.2ms)[0m SELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1 [["id", "2"]]
|
2320
|
+
[1m[36mTask Load (0.1ms)[0m [1mSELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2[0m
|
2321
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2
|
2322
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3[0m
|
2323
|
+
[1m[35mMilestone Load (0.1ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4
|
2324
|
+
Rendered projects/_form_table.html.erb (65.5ms)
|
2325
|
+
Rendered projects/edit.html.erb within layouts/application (66.2ms)
|
2326
|
+
Completed 200 OK in 74ms (Views: 68.5ms | ActiveRecord: 1.3ms)
|
2327
|
+
|
2328
|
+
|
2329
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2330
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2331
|
+
|
2332
|
+
|
2333
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2334
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|
2335
|
+
|
2336
|
+
|
2337
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:26:32 +0300
|
2338
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2339
|
+
|
2340
|
+
|
2341
|
+
Started GET "/projects/2/edit" for 127.0.0.1 at 2012-10-18 22:26:34 +0300
|
2342
|
+
Processing by ProjectsController#edit as HTML
|
2343
|
+
Parameters: {"id"=>"2"}
|
2344
|
+
[1m[36mProject Load (0.1ms)[0m [1mSELECT "projects".* FROM "projects" WHERE "projects"."id" = ? LIMIT 1[0m [["id", "2"]]
|
2345
|
+
[1m[35mTask Load (0.2ms)[0m SELECT "tasks".* FROM "tasks" WHERE "tasks"."project_id" = 2
|
2346
|
+
[1m[36mMilestone Load (0.1ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 2[0m
|
2347
|
+
[1m[35mMilestone Load (0.2ms)[0m SELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 3
|
2348
|
+
[1m[36mMilestone Load (0.2ms)[0m [1mSELECT "milestones".* FROM "milestones" WHERE "milestones"."task_id" = 4[0m
|
2349
|
+
Rendered projects/_form_table.html.erb (10.2ms)
|
2350
|
+
Rendered projects/edit.html.erb within layouts/application (10.9ms)
|
2351
|
+
Completed 200 OK in 14ms (Views: 12.7ms | ActiveRecord: 0.7ms)
|
2352
|
+
|
2353
|
+
|
2354
|
+
Started GET "/assets/jquery.js" for 127.0.0.1 at 2012-10-18 22:26:35 +0300
|
2355
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
2356
|
+
|
2357
|
+
|
2358
|
+
Started GET "/assets/jquery_events_test.js" for 127.0.0.1 at 2012-10-18 22:26:35 +0300
|
2359
|
+
Served asset /jquery_events_test.js - 304 Not Modified (0ms)
|
2360
|
+
|
2361
|
+
|
2362
|
+
Started GET "/assets/jquery_nested_form.js" for 127.0.0.1 at 2012-10-18 22:26:35 +0300
|
2363
|
+
Served asset /jquery_nested_form.js - 304 Not Modified (0ms)
|