blogmodule 0.0.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/app/assets/javascripts/comments.js +2 -0
- data/app/assets/stylesheets/comments.css +4 -0
- data/app/controllers/comments_controller.rb +10 -0
- data/app/helpers/comments_helper.rb +2 -0
- data/app/models/comment.rb +9 -0
- data/app/models/post.rb +2 -0
- data/app/views/comments/_comment.html.erb +6 -0
- data/app/views/comments/_form.html.erb +38 -0
- data/app/views/posts/show.html.erb +3 -7
- data/config/routes.rb +5 -1
- data/db/migrate/20120102163952_create_comments.rb +17 -0
- data/lib/blogmodule/version.rb +1 -1
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/schema.rb +11 -1
- data/test/dummy/log/development.log +2371 -0
- data/test/dummy/tmp/pids/server.pid +1 -0
- data/test/fixtures/comments.yml +11 -0
- data/test/functional/comments_controller_test.rb +9 -0
- data/test/unit/comment_test.rb +7 -0
- data/test/unit/helpers/comments_helper_test.rb +4 -0
- metadata +25 -7
@@ -10436,3 +10436,2374 @@ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
|
10436
10436
|
|
10437
10437
|
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-01 19:41:24 -0200
|
10438
10438
|
Served asset /application.css - 304 Not Modified (0ms)
|
10439
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
10440
|
+
Migrating to CreateCategories (20111231175637)
|
10441
|
+
Migrating to CreatePosts (20111231181111)
|
10442
|
+
Migrating to CreateCategoriesPosts (20111231183528)
|
10443
|
+
Migrating to CreateComments (20120102163952)
|
10444
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
10445
|
+
[1m[36m (0.5ms)[0m [1mCREATE TABLE "comments" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "author" varchar(255), "email" varchar(255), "url" varchar(255), "body" text, "post_id" integer, "created_at" datetime, "updated_at" datetime) [0m
|
10446
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120102163952')
|
10447
|
+
[1m[36m (0.3ms)[0m [1mselect sqlite_version(*)[0m
|
10448
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
10449
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("categories")[0m
|
10450
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("categories_posts")
|
10451
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("comments")[0m
|
10452
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("posts")
|
10453
|
+
|
10454
|
+
|
10455
|
+
Started GET "/" for 127.0.0.1 at 2012-01-02 14:56:25 -0200
|
10456
|
+
|
10457
|
+
ActionController::RoutingError (No route matches [GET] "/"):
|
10458
|
+
|
10459
|
+
|
10460
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (3.5ms)
|
10461
|
+
|
10462
|
+
|
10463
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 14:56:32 -0200
|
10464
|
+
Processing by PostsController#index as HTML
|
10465
|
+
[1m[36mCategory Load (0.2ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10466
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (7.1ms)
|
10467
|
+
[1m[35m (17.7ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 16:56:33.231226')
|
10468
|
+
[1m[36mPost Load (0.4ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 16:56:33.231226')[0m
|
10469
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (258.1ms)
|
10470
|
+
Completed 200 OK in 510ms (Views: 399.2ms | ActiveRecord: 18.9ms)
|
10471
|
+
|
10472
|
+
|
10473
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:33 -0200
|
10474
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
10475
|
+
|
10476
|
+
|
10477
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:56:34 -0200
|
10478
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10479
|
+
|
10480
|
+
|
10481
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:34 -0200
|
10482
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10483
|
+
|
10484
|
+
|
10485
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:34 -0200
|
10486
|
+
Served asset /jquery_ujs.js - 304 Not Modified (1ms)
|
10487
|
+
|
10488
|
+
|
10489
|
+
Started GET "/posts?category_id=2" for 127.0.0.1 at 2012-01-02 14:56:56 -0200
|
10490
|
+
Processing by PostsController#index as HTML
|
10491
|
+
Parameters: {"category_id"=>"2"}
|
10492
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories"
|
10493
|
+
[1m[36mCategory Load (0.3ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "2"]]
|
10494
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.6ms)
|
10495
|
+
[1m[35mPost Load (4.3ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 2
|
10496
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (111.2ms)
|
10497
|
+
Completed 200 OK in 210ms (Views: 114.5ms | ActiveRecord: 5.9ms)
|
10498
|
+
|
10499
|
+
|
10500
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:56:56 -0200
|
10501
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10502
|
+
|
10503
|
+
|
10504
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:56 -0200
|
10505
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10506
|
+
|
10507
|
+
|
10508
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:56 -0200
|
10509
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10510
|
+
|
10511
|
+
|
10512
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:56 -0200
|
10513
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10514
|
+
|
10515
|
+
|
10516
|
+
Started GET "/posts?category_id=6" for 127.0.0.1 at 2012-01-02 14:56:59 -0200
|
10517
|
+
Processing by PostsController#index as HTML
|
10518
|
+
Parameters: {"category_id"=>"6"}
|
10519
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10520
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "6"]]
|
10521
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.3ms)
|
10522
|
+
[1m[36mPost Load (14.6ms)[0m [1mSELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 6[0m
|
10523
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (31.6ms)
|
10524
|
+
Completed 200 OK in 53ms (Views: 23.0ms | ActiveRecord: 15.7ms)
|
10525
|
+
|
10526
|
+
|
10527
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:56:59 -0200
|
10528
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10529
|
+
|
10530
|
+
|
10531
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:59 -0200
|
10532
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10533
|
+
|
10534
|
+
|
10535
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:59 -0200
|
10536
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10537
|
+
|
10538
|
+
|
10539
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:56:59 -0200
|
10540
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10541
|
+
|
10542
|
+
|
10543
|
+
Started GET "/posts?category_id=4" for 127.0.0.1 at 2012-01-02 14:57:00 -0200
|
10544
|
+
Processing by PostsController#index as HTML
|
10545
|
+
Parameters: {"category_id"=>"4"}
|
10546
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
10547
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "4"]]
|
10548
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.2ms)
|
10549
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 4
|
10550
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (6.8ms)
|
10551
|
+
Completed 200 OK in 37ms (Views: 12.1ms | ActiveRecord: 1.3ms)
|
10552
|
+
|
10553
|
+
|
10554
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:00 -0200
|
10555
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10556
|
+
|
10557
|
+
|
10558
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:00 -0200
|
10559
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10560
|
+
|
10561
|
+
|
10562
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:00 -0200
|
10563
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10564
|
+
|
10565
|
+
|
10566
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:00 -0200
|
10567
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10568
|
+
|
10569
|
+
|
10570
|
+
Started GET "/posts?category_id=7" for 127.0.0.1 at 2012-01-02 14:57:01 -0200
|
10571
|
+
Processing by PostsController#index as HTML
|
10572
|
+
Parameters: {"category_id"=>"7"}
|
10573
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10574
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "7"]]
|
10575
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.2ms)
|
10576
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 7[0m
|
10577
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (16.2ms)
|
10578
|
+
Completed 200 OK in 63ms (Views: 21.3ms | ActiveRecord: 1.3ms)
|
10579
|
+
|
10580
|
+
|
10581
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:01 -0200
|
10582
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10583
|
+
|
10584
|
+
|
10585
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:01 -0200
|
10586
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10587
|
+
|
10588
|
+
|
10589
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:01 -0200
|
10590
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10591
|
+
|
10592
|
+
|
10593
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:01 -0200
|
10594
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10595
|
+
|
10596
|
+
|
10597
|
+
Started GET "/posts?category_id=2" for 127.0.0.1 at 2012-01-02 14:57:02 -0200
|
10598
|
+
Processing by PostsController#index as HTML
|
10599
|
+
Parameters: {"category_id"=>"2"}
|
10600
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories"
|
10601
|
+
[1m[36mCategory Load (0.3ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "2"]]
|
10602
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.1ms)
|
10603
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 2
|
10604
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (48.4ms)
|
10605
|
+
Completed 200 OK in 70ms (Views: 53.5ms | ActiveRecord: 2.0ms)
|
10606
|
+
|
10607
|
+
|
10608
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:02 -0200
|
10609
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10610
|
+
|
10611
|
+
|
10612
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:02 -0200
|
10613
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10614
|
+
|
10615
|
+
|
10616
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:02 -0200
|
10617
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10618
|
+
|
10619
|
+
|
10620
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:02 -0200
|
10621
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10622
|
+
|
10623
|
+
|
10624
|
+
Started GET "/posts?category_id=4" for 127.0.0.1 at 2012-01-02 14:57:03 -0200
|
10625
|
+
Processing by PostsController#index as HTML
|
10626
|
+
Parameters: {"category_id"=>"4"}
|
10627
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10628
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "4"]]
|
10629
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.1ms)
|
10630
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 4[0m
|
10631
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (6.9ms)
|
10632
|
+
Completed 200 OK in 28ms (Views: 12.4ms | ActiveRecord: 1.4ms)
|
10633
|
+
|
10634
|
+
|
10635
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:03 -0200
|
10636
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10637
|
+
|
10638
|
+
|
10639
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:03 -0200
|
10640
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10641
|
+
|
10642
|
+
|
10643
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:03 -0200
|
10644
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10645
|
+
|
10646
|
+
|
10647
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:03 -0200
|
10648
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10649
|
+
|
10650
|
+
|
10651
|
+
Started GET "/posts?category_id=3" for 127.0.0.1 at 2012-01-02 14:57:04 -0200
|
10652
|
+
Processing by PostsController#index as HTML
|
10653
|
+
Parameters: {"category_id"=>"3"}
|
10654
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
10655
|
+
[1m[36mCategory Load (0.2ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "3"]]
|
10656
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (3.4ms)
|
10657
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 3
|
10658
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (8.0ms)
|
10659
|
+
Completed 200 OK in 31ms (Views: 14.0ms | ActiveRecord: 1.6ms)
|
10660
|
+
|
10661
|
+
|
10662
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:04 -0200
|
10663
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10664
|
+
|
10665
|
+
|
10666
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:04 -0200
|
10667
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10668
|
+
|
10669
|
+
|
10670
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:04 -0200
|
10671
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10672
|
+
|
10673
|
+
|
10674
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:04 -0200
|
10675
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10676
|
+
|
10677
|
+
|
10678
|
+
Started GET "/posts?category_id=2" for 127.0.0.1 at 2012-01-02 14:57:05 -0200
|
10679
|
+
Processing by PostsController#index as HTML
|
10680
|
+
Parameters: {"category_id"=>"2"}
|
10681
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10682
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "2"]]
|
10683
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.2ms)
|
10684
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 2[0m
|
10685
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (18.7ms)
|
10686
|
+
Completed 200 OK in 40ms (Views: 24.0ms | ActiveRecord: 1.4ms)
|
10687
|
+
|
10688
|
+
|
10689
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:05 -0200
|
10690
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10691
|
+
|
10692
|
+
|
10693
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:05 -0200
|
10694
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10695
|
+
|
10696
|
+
|
10697
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:05 -0200
|
10698
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10699
|
+
|
10700
|
+
|
10701
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:05 -0200
|
10702
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10703
|
+
|
10704
|
+
|
10705
|
+
Started GET "/posts?category_id=4" for 127.0.0.1 at 2012-01-02 14:57:06 -0200
|
10706
|
+
Processing by PostsController#index as HTML
|
10707
|
+
Parameters: {"category_id"=>"4"}
|
10708
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
10709
|
+
[1m[36mCategory Load (0.2ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "4"]]
|
10710
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.6ms)
|
10711
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 4
|
10712
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (7.0ms)
|
10713
|
+
Completed 200 OK in 55ms (Views: 12.6ms | ActiveRecord: 1.5ms)
|
10714
|
+
|
10715
|
+
|
10716
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:06 -0200
|
10717
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10718
|
+
|
10719
|
+
|
10720
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:06 -0200
|
10721
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10722
|
+
|
10723
|
+
|
10724
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:06 -0200
|
10725
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10726
|
+
|
10727
|
+
|
10728
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:06 -0200
|
10729
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10730
|
+
|
10731
|
+
|
10732
|
+
Started GET "/posts?category_id=6" for 127.0.0.1 at 2012-01-02 14:57:07 -0200
|
10733
|
+
Processing by PostsController#index as HTML
|
10734
|
+
Parameters: {"category_id"=>"6"}
|
10735
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10736
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "6"]]
|
10737
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (1.8ms)
|
10738
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 6[0m
|
10739
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (43.4ms)
|
10740
|
+
Completed 200 OK in 64ms (Views: 48.4ms | ActiveRecord: 1.4ms)
|
10741
|
+
|
10742
|
+
|
10743
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:07 -0200
|
10744
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10745
|
+
|
10746
|
+
|
10747
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:07 -0200
|
10748
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10749
|
+
|
10750
|
+
|
10751
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:07 -0200
|
10752
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10753
|
+
|
10754
|
+
|
10755
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:07 -0200
|
10756
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10757
|
+
|
10758
|
+
|
10759
|
+
Started GET "/posts?category_id=7" for 127.0.0.1 at 2012-01-02 14:57:08 -0200
|
10760
|
+
Processing by PostsController#index as HTML
|
10761
|
+
Parameters: {"category_id"=>"7"}
|
10762
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories"
|
10763
|
+
[1m[36mCategory Load (3.4ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "7"]]
|
10764
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.1ms)
|
10765
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 7
|
10766
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (16.0ms)
|
10767
|
+
Completed 200 OK in 43ms (Views: 23.5ms | ActiveRecord: 4.6ms)
|
10768
|
+
|
10769
|
+
|
10770
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:08 -0200
|
10771
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10772
|
+
|
10773
|
+
|
10774
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:08 -0200
|
10775
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10776
|
+
|
10777
|
+
|
10778
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:08 -0200
|
10779
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10780
|
+
|
10781
|
+
|
10782
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:08 -0200
|
10783
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10784
|
+
|
10785
|
+
|
10786
|
+
Started GET "/posts/4-ruby-e-legal" for 127.0.0.1 at 2012-01-02 14:57:11 -0200
|
10787
|
+
Processing by PostsController#show as HTML
|
10788
|
+
Parameters: {"id"=>"4-ruby-e-legal"}
|
10789
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10790
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 16:57:11.084967') LIMIT 1 [["id", "4-ruby-e-legal"]]
|
10791
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (10.5ms)
|
10792
|
+
Completed 200 OK in 28ms (Views: 16.1ms | ActiveRecord: 1.1ms)
|
10793
|
+
|
10794
|
+
|
10795
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:11 -0200
|
10796
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10797
|
+
|
10798
|
+
|
10799
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:11 -0200
|
10800
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10801
|
+
|
10802
|
+
|
10803
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:11 -0200
|
10804
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10805
|
+
|
10806
|
+
|
10807
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:11 -0200
|
10808
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10809
|
+
|
10810
|
+
|
10811
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 14:57:13 -0200
|
10812
|
+
Processing by PostsController#index as HTML
|
10813
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10814
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (6.2ms)
|
10815
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 16:57:13.150727')
|
10816
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 16:57:13.150727')[0m
|
10817
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (25.7ms)
|
10818
|
+
Completed 200 OK in 70ms (Views: 30.7ms | ActiveRecord: 1.3ms)
|
10819
|
+
|
10820
|
+
|
10821
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 14:57:13 -0200
|
10822
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10823
|
+
|
10824
|
+
|
10825
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:13 -0200
|
10826
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10827
|
+
|
10828
|
+
|
10829
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:13 -0200
|
10830
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10831
|
+
|
10832
|
+
|
10833
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 14:57:13 -0200
|
10834
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10835
|
+
|
10836
|
+
|
10837
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 15:31:56 -0200
|
10838
|
+
Processing by PostsController#index as HTML
|
10839
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories"
|
10840
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (6.5ms)
|
10841
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:32:05.251016')[0m
|
10842
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:32:05.251016')
|
10843
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (60.7ms)
|
10844
|
+
Completed 200 OK in 191ms (Views: 163.1ms | ActiveRecord: 1.6ms)
|
10845
|
+
|
10846
|
+
|
10847
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:32:05 -0200
|
10848
|
+
Processing by PostsController#show as HTML
|
10849
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
10850
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10851
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:32:05.511383') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
10852
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (162.9ms)
|
10853
|
+
Completed 500 Internal Server Error in 178ms
|
10854
|
+
|
10855
|
+
ActionView::Template::Error (undefined method `comments' for #<Post:0x00000003face38>):
|
10856
|
+
16: </p>
|
10857
|
+
17:
|
10858
|
+
18:
|
10859
|
+
19: <%= render @post.comments || "Nobody commented this post yet." %>
|
10860
|
+
20:
|
10861
|
+
21: <%= link_to 'Edit', edit_post_path(@post) %> |
|
10862
|
+
22: <%= link_to 'Back', posts_path %>
|
10863
|
+
|
10864
|
+
|
10865
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
10866
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
10867
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
|
10868
|
+
|
10869
|
+
|
10870
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:32:05 -0200
|
10871
|
+
Processing by PostsController#show as HTML
|
10872
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
10873
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10874
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:32:06.013096') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
10875
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (8.3ms)
|
10876
|
+
Completed 500 Internal Server Error in 25ms
|
10877
|
+
|
10878
|
+
ActionView::Template::Error (undefined method `comments' for #<Post:0x00000004b88d60>):
|
10879
|
+
16: </p>
|
10880
|
+
17:
|
10881
|
+
18:
|
10882
|
+
19: <%= render @post.comments || "Nobody commented this post yet." %>
|
10883
|
+
20:
|
10884
|
+
21: <%= link_to 'Edit', edit_post_path(@post) %> |
|
10885
|
+
22: <%= link_to 'Back', posts_path %>
|
10886
|
+
|
10887
|
+
|
10888
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
10889
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
10890
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
|
10891
|
+
|
10892
|
+
|
10893
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:33:16 -0200
|
10894
|
+
Processing by PostsController#show as HTML
|
10895
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
10896
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10897
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:33:16.300921') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
10898
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (1.4ms)
|
10899
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (30.7ms)
|
10900
|
+
Completed 500 Internal Server Error in 73ms
|
10901
|
+
|
10902
|
+
ActionView::Template::Error (undefined method `model_name' for NilClass:Class):
|
10903
|
+
1: <%= div_for comment, :class => "comment" do %>
|
10904
|
+
2:
|
10905
|
+
3: <div class="author">
|
10906
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
10907
|
+
|
10908
|
+
|
10909
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
10910
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
10911
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.3ms)
|
10912
|
+
|
10913
|
+
|
10914
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:33:30 -0200
|
10915
|
+
Processing by PostsController#show as HTML
|
10916
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
10917
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10918
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:33:30.570970') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
10919
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (0.7ms)
|
10920
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (9.1ms)
|
10921
|
+
Completed 500 Internal Server Error in 24ms
|
10922
|
+
|
10923
|
+
ActionView::Template::Error (undefined method `model_name' for NilClass:Class):
|
10924
|
+
1: <%= div_for comment, :class => "comment" do %>
|
10925
|
+
2:
|
10926
|
+
3: <div class="author">
|
10927
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
10928
|
+
|
10929
|
+
|
10930
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
10931
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
10932
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (30.4ms)
|
10933
|
+
|
10934
|
+
|
10935
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:33:57 -0200
|
10936
|
+
Processing by PostsController#show as HTML
|
10937
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
10938
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10939
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:33:57.972289') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
10940
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (0.7ms)
|
10941
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (8.7ms)
|
10942
|
+
Completed 500 Internal Server Error in 24ms
|
10943
|
+
|
10944
|
+
ActionView::Template::Error (undefined method `model_name' for NilClass:Class):
|
10945
|
+
1: <%= div_for comment, :class => "comment" do %>
|
10946
|
+
2:
|
10947
|
+
3: <div class="author">
|
10948
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
10949
|
+
|
10950
|
+
|
10951
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
10952
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
10953
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.3ms)
|
10954
|
+
|
10955
|
+
|
10956
|
+
Started GET "/posts/" for 127.0.0.1 at 2012-01-02 15:34:19 -0200
|
10957
|
+
Processing by PostsController#index as HTML
|
10958
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
10959
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (6.0ms)
|
10960
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:34:19.775603')
|
10961
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:34:19.775603')[0m
|
10962
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (22.5ms)
|
10963
|
+
Completed 200 OK in 37ms (Views: 27.3ms | ActiveRecord: 1.1ms)
|
10964
|
+
|
10965
|
+
|
10966
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:34:19 -0200
|
10967
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
10968
|
+
|
10969
|
+
|
10970
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:34:19 -0200
|
10971
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
10972
|
+
|
10973
|
+
|
10974
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:34:19 -0200
|
10975
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
10976
|
+
|
10977
|
+
|
10978
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:34:19 -0200
|
10979
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
10980
|
+
|
10981
|
+
|
10982
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:34:21 -0200
|
10983
|
+
Processing by PostsController#show as HTML
|
10984
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
10985
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
10986
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:34:21.951994') LIMIT 1[0m [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
10987
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (9.8ms)
|
10988
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (18.7ms)
|
10989
|
+
Completed 500 Internal Server Error in 33ms
|
10990
|
+
|
10991
|
+
ActionView::Template::Error (undefined method `model_name' for NilClass:Class):
|
10992
|
+
1: <%= div_for comment, :class => "comment" do %>
|
10993
|
+
2:
|
10994
|
+
3: <div class="author">
|
10995
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
10996
|
+
|
10997
|
+
|
10998
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
10999
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11000
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.8ms)
|
11001
|
+
|
11002
|
+
|
11003
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:34:59 -0200
|
11004
|
+
Processing by PostsController#show as HTML
|
11005
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
11006
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11007
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:34:59.111198') LIMIT 1[0m [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
11008
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (34.5ms)
|
11009
|
+
Completed 500 Internal Server Error in 49ms
|
11010
|
+
|
11011
|
+
ActionView::Template::Error (undefined method `comments' for #<Post:0x00000004d9fe00>):
|
11012
|
+
16: </p>
|
11013
|
+
17:
|
11014
|
+
18:
|
11015
|
+
19: <%= render @post.comments || "Nobody commented this post yet." %>
|
11016
|
+
20: <%= render "comments/form", :post => @post, :comment => Comment.new %>
|
11017
|
+
21:
|
11018
|
+
22: <%= link_to 'Edit', edit_post_path(@post) %> |
|
11019
|
+
|
11020
|
+
|
11021
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
11022
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11023
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
|
11024
|
+
|
11025
|
+
|
11026
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:36:08 -0200
|
11027
|
+
Processing by PostsController#show as HTML
|
11028
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
11029
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11030
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:36:08.712376') LIMIT 1[0m [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
11031
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 2
|
11032
|
+
Rendered collection (0.0ms)
|
11033
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (238.1ms)
|
11034
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (357.7ms)
|
11035
|
+
Completed 500 Internal Server Error in 372ms
|
11036
|
+
|
11037
|
+
ActionView::Template::Error (undefined method `post_comments_path' for #<#<Class:0x00000004cfd718>:0x00000004d0d078>):
|
11038
|
+
1: <%= form_for [post, comment] do |f| %>
|
11039
|
+
2:
|
11040
|
+
3: <%= error_messages_for comment %>
|
11041
|
+
4:
|
11042
|
+
|
11043
|
+
|
11044
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
11045
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11046
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
|
11047
|
+
|
11048
|
+
|
11049
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:36:51 -0200
|
11050
|
+
Processing by PostsController#show as HTML
|
11051
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
11052
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11053
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:36:51.548647') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
11054
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 2[0m
|
11055
|
+
Rendered collection (0.0ms)
|
11056
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (111.2ms)
|
11057
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (127.3ms)
|
11058
|
+
Completed 500 Internal Server Error in 142ms
|
11059
|
+
|
11060
|
+
ActionView::Template::Error (undefined method `error_messages_for' for #<#<Class:0x000000043bd478>:0x00000004199390>):
|
11061
|
+
1: <%= form_for [post, comment] do |f| %>
|
11062
|
+
2:
|
11063
|
+
3: <%= error_messages_for comment %>
|
11064
|
+
4:
|
11065
|
+
5: <div class="field">
|
11066
|
+
6: <%= f.label :author %><br />
|
11067
|
+
|
11068
|
+
|
11069
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
11070
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11071
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.5ms)
|
11072
|
+
|
11073
|
+
|
11074
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:37:59 -0200
|
11075
|
+
Processing by PostsController#show as HTML
|
11076
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
11077
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11078
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:37:59.799050') LIMIT 1[0m [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
11079
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 2
|
11080
|
+
Rendered collection (0.0ms)
|
11081
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (43.6ms)
|
11082
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (87.6ms)
|
11083
|
+
Completed 200 OK in 103ms (Views: 92.2ms | ActiveRecord: 1.6ms)
|
11084
|
+
|
11085
|
+
|
11086
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:37:59 -0200
|
11087
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11088
|
+
|
11089
|
+
|
11090
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:37:59 -0200
|
11091
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11092
|
+
|
11093
|
+
|
11094
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:37:59 -0200
|
11095
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11096
|
+
|
11097
|
+
|
11098
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:37:59 -0200
|
11099
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11100
|
+
|
11101
|
+
|
11102
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 15:38:23 -0200
|
11103
|
+
Processing by PostsController#index as HTML
|
11104
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11105
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (34.4ms)
|
11106
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:38:23.146795')
|
11107
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:38:23.146795')[0m
|
11108
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (51.2ms)
|
11109
|
+
Completed 200 OK in 66ms (Views: 56.5ms | ActiveRecord: 1.1ms)
|
11110
|
+
|
11111
|
+
|
11112
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:38:23 -0200
|
11113
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11114
|
+
|
11115
|
+
|
11116
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:38:23 -0200
|
11117
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11118
|
+
|
11119
|
+
|
11120
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:38:23 -0200
|
11121
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11122
|
+
|
11123
|
+
|
11124
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:38:23 -0200
|
11125
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11126
|
+
|
11127
|
+
|
11128
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 15:39:04 -0200
|
11129
|
+
Processing by PostsController#index as HTML
|
11130
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11131
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (5.7ms)
|
11132
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:39:04.582395')[0m
|
11133
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:39:04.582395')
|
11134
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (51.4ms)
|
11135
|
+
Completed 200 OK in 67ms (Views: 56.5ms | ActiveRecord: 1.1ms)
|
11136
|
+
|
11137
|
+
|
11138
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:04 -0200
|
11139
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11140
|
+
|
11141
|
+
|
11142
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:04 -0200
|
11143
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11144
|
+
|
11145
|
+
|
11146
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:04 -0200
|
11147
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11148
|
+
|
11149
|
+
|
11150
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:04 -0200
|
11151
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11152
|
+
|
11153
|
+
|
11154
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:39:06 -0200
|
11155
|
+
Processing by PostsController#show as HTML
|
11156
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
11157
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11158
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:39:06.369893') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
11159
|
+
[1m[36mComment Load (0.3ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 2[0m
|
11160
|
+
Rendered collection (0.0ms)
|
11161
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (12.2ms)
|
11162
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (58.4ms)
|
11163
|
+
Completed 200 OK in 75ms (Views: 63.4ms | ActiveRecord: 1.7ms)
|
11164
|
+
|
11165
|
+
|
11166
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:06 -0200
|
11167
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11168
|
+
|
11169
|
+
|
11170
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:06 -0200
|
11171
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11172
|
+
|
11173
|
+
|
11174
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:06 -0200
|
11175
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11176
|
+
|
11177
|
+
|
11178
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:06 -0200
|
11179
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11180
|
+
|
11181
|
+
|
11182
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:39:28 -0200
|
11183
|
+
Processing by PostsController#show as HTML
|
11184
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
11185
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11186
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:39:28.164534') LIMIT 1[0m [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
11187
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 2
|
11188
|
+
Rendered collection (0.0ms)
|
11189
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (12.0ms)
|
11190
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (58.8ms)
|
11191
|
+
Completed 200 OK in 75ms (Views: 63.5ms | ActiveRecord: 1.7ms)
|
11192
|
+
|
11193
|
+
|
11194
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:28 -0200
|
11195
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11196
|
+
|
11197
|
+
|
11198
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:28 -0200
|
11199
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11200
|
+
|
11201
|
+
|
11202
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:28 -0200
|
11203
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11204
|
+
|
11205
|
+
|
11206
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:28 -0200
|
11207
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11208
|
+
|
11209
|
+
|
11210
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 15:39:33 -0200
|
11211
|
+
Processing by PostsController#index as HTML
|
11212
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11213
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (5.6ms)
|
11214
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:39:33.321133')
|
11215
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:39:33.321133')[0m
|
11216
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (51.3ms)
|
11217
|
+
Completed 200 OK in 66ms (Views: 56.7ms | ActiveRecord: 1.1ms)
|
11218
|
+
|
11219
|
+
|
11220
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:33 -0200
|
11221
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11222
|
+
|
11223
|
+
|
11224
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:33 -0200
|
11225
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11226
|
+
|
11227
|
+
|
11228
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:33 -0200
|
11229
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11230
|
+
|
11231
|
+
|
11232
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:33 -0200
|
11233
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11234
|
+
|
11235
|
+
|
11236
|
+
Started GET "/posts?category_id=2" for 127.0.0.1 at 2012-01-02 15:39:34 -0200
|
11237
|
+
Processing by PostsController#index as HTML
|
11238
|
+
Parameters: {"category_id"=>"2"}
|
11239
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11240
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "2"]]
|
11241
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (1.9ms)
|
11242
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 2
|
11243
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (46.8ms)
|
11244
|
+
Completed 200 OK in 67ms (Views: 51.8ms | ActiveRecord: 1.2ms)
|
11245
|
+
|
11246
|
+
|
11247
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11248
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11249
|
+
|
11250
|
+
|
11251
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11252
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11253
|
+
|
11254
|
+
|
11255
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11256
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11257
|
+
|
11258
|
+
|
11259
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11260
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11261
|
+
|
11262
|
+
|
11263
|
+
Started GET "/posts?category_id=3" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11264
|
+
Processing by PostsController#index as HTML
|
11265
|
+
Parameters: {"category_id"=>"3"}
|
11266
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11267
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "3"]]
|
11268
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (1.9ms)
|
11269
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 3[0m
|
11270
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (6.3ms)
|
11271
|
+
Completed 200 OK in 26ms (Views: 11.1ms | ActiveRecord: 1.3ms)
|
11272
|
+
|
11273
|
+
|
11274
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11275
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11276
|
+
|
11277
|
+
|
11278
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11279
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11280
|
+
|
11281
|
+
|
11282
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11283
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11284
|
+
|
11285
|
+
|
11286
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:35 -0200
|
11287
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11288
|
+
|
11289
|
+
|
11290
|
+
Started GET "/posts?category_id=4" for 127.0.0.1 at 2012-01-02 15:39:36 -0200
|
11291
|
+
Processing by PostsController#index as HTML
|
11292
|
+
Parameters: {"category_id"=>"4"}
|
11293
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11294
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1[0m [["id", "4"]]
|
11295
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.1ms)
|
11296
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 4
|
11297
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (6.7ms)
|
11298
|
+
Completed 200 OK in 26ms (Views: 11.6ms | ActiveRecord: 1.2ms)
|
11299
|
+
|
11300
|
+
|
11301
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:36 -0200
|
11302
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11303
|
+
|
11304
|
+
|
11305
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:36 -0200
|
11306
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11307
|
+
|
11308
|
+
|
11309
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:36 -0200
|
11310
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11311
|
+
|
11312
|
+
|
11313
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:36 -0200
|
11314
|
+
Served asset /application.js - 304 Not Modified (2ms)
|
11315
|
+
|
11316
|
+
|
11317
|
+
Started GET "/posts?category_id=6" for 127.0.0.1 at 2012-01-02 15:39:37 -0200
|
11318
|
+
Processing by PostsController#index as HTML
|
11319
|
+
Parameters: {"category_id"=>"6"}
|
11320
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11321
|
+
[1m[35mCategory Load (0.2ms)[0m SELECT "categories".* FROM "categories" WHERE "categories"."id" = ? LIMIT 1 [["id", "6"]]
|
11322
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (2.1ms)
|
11323
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" INNER JOIN "categories_posts" ON "posts"."id" = "categories_posts"."post_id" WHERE "categories_posts"."category_id" = 6[0m
|
11324
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (16.0ms)
|
11325
|
+
Completed 200 OK in 36ms (Views: 21.5ms | ActiveRecord: 1.3ms)
|
11326
|
+
|
11327
|
+
|
11328
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:37 -0200
|
11329
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11330
|
+
|
11331
|
+
|
11332
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:37 -0200
|
11333
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11334
|
+
|
11335
|
+
|
11336
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:37 -0200
|
11337
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11338
|
+
|
11339
|
+
|
11340
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:37 -0200
|
11341
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11342
|
+
|
11343
|
+
|
11344
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:39:38 -0200
|
11345
|
+
Processing by PostsController#show as HTML
|
11346
|
+
Parameters: {"id"=>"5-google"}
|
11347
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11348
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:39:38.444732') LIMIT 1[0m [["id", "5-google"]]
|
11349
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11350
|
+
Rendered collection (0.0ms)
|
11351
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (11.4ms)
|
11352
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (29.0ms)
|
11353
|
+
Completed 200 OK in 74ms (Views: 33.6ms | ActiveRecord: 1.8ms)
|
11354
|
+
|
11355
|
+
|
11356
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:39:38 -0200
|
11357
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11358
|
+
|
11359
|
+
|
11360
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:38 -0200
|
11361
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11362
|
+
|
11363
|
+
|
11364
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:38 -0200
|
11365
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11366
|
+
|
11367
|
+
|
11368
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:39:38 -0200
|
11369
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11370
|
+
|
11371
|
+
|
11372
|
+
Started POST "/posts/5-google/comments" for 127.0.0.1 at 2012-01-02 15:39:49 -0200
|
11373
|
+
Processing by CommentsController#create as HTML
|
11374
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"K3n5uDfUmCxnlyArwH8t7psOCQctqt6eEuZ7nwHMvVA=", "comment"=>{"author"=>"hahahhaha", "email"=>"email@exemplo.com", "url"=>"https://tecnobest.tk", "body"=>"ddasasddadadaaadasdadasds"}, "commit"=>"Create Comment", "post_id"=>"5-google"}
|
11375
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "5-google"]]
|
11376
|
+
[1m[35mSQL (474.6ms)[0m INSERT INTO "comments" ("author", "body", "created_at", "email", "post_id", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["author", "hahahhaha"], ["body", "ddasasddadadaaadasdadasds"], ["created_at", Mon, 02 Jan 2012 17:39:50 UTC +00:00], ["email", "email@exemplo.com"], ["post_id", 5], ["updated_at", Mon, 02 Jan 2012 17:39:50 UTC +00:00], ["url", "https://tecnobest.tk"]]
|
11377
|
+
Redirected to http://localhost:3000/posts/5-google
|
11378
|
+
Completed 302 Found in 610ms
|
11379
|
+
|
11380
|
+
|
11381
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:39:50 -0200
|
11382
|
+
Processing by PostsController#show as HTML
|
11383
|
+
Parameters: {"id"=>"5-google"}
|
11384
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11385
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:39:50.651261') LIMIT 1 [["id", "5-google"]]
|
11386
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11387
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (105.7ms)
|
11388
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (130.6ms)
|
11389
|
+
Completed 500 Internal Server Error in 172ms
|
11390
|
+
|
11391
|
+
ActionView::Template::Error (undefined method `gravatar_image_tag' for #<#<Class:0x000000049b1190>:0x00000004852470>):
|
11392
|
+
1: <%= div_for comment, :class => "comment" do %>
|
11393
|
+
2:
|
11394
|
+
3: <div class="author">
|
11395
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
11396
|
+
5: <div class="meta">
|
11397
|
+
6: <span class="name"><%= comment_author(comment.author, comment.url) %></span><br/>
|
11398
|
+
7: <span class="date">Posted <%= time_ago_in_words comment.created_at %> ago</span>
|
11399
|
+
|
11400
|
+
|
11401
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
11402
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
11403
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.1ms)
|
11404
|
+
|
11405
|
+
|
11406
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:40:22 -0200
|
11407
|
+
Processing by PostsController#show as HTML
|
11408
|
+
Parameters: {"id"=>"5-google"}
|
11409
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11410
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:40:22.465372') LIMIT 1[0m [["id", "5-google"]]
|
11411
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11412
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (68.2ms)
|
11413
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (113.2ms)
|
11414
|
+
Completed 500 Internal Server Error in 127ms
|
11415
|
+
|
11416
|
+
ActionView::Template::Error (undefined method `gravatar_image_tag' for #<#<Class:0x00000004e8fc20>:0x00000004e93b90>):
|
11417
|
+
1: <%= div_for comment, :class => "comment" do %>
|
11418
|
+
2:
|
11419
|
+
3: <div class="author">
|
11420
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
11421
|
+
5: <div class="meta">
|
11422
|
+
6: <span class="name"><%= comment_author(comment.author, comment.url) %></span><br/>
|
11423
|
+
7: <span class="date">Posted <%= time_ago_in_words comment.created_at %> ago</span>
|
11424
|
+
|
11425
|
+
|
11426
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
11427
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11428
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
|
11429
|
+
|
11430
|
+
|
11431
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:43:21 -0200
|
11432
|
+
Processing by PostsController#show as HTML
|
11433
|
+
Parameters: {"id"=>"5-google"}
|
11434
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11435
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:43:21.698516') LIMIT 1 [["id", "5-google"]]
|
11436
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (12.4ms)
|
11437
|
+
Completed 500 Internal Server Error in 27ms
|
11438
|
+
|
11439
|
+
ActionView::Template::Error (Unknown validator: 'CommentValidator'):
|
11440
|
+
16: </p>
|
11441
|
+
17:
|
11442
|
+
18: <hr />
|
11443
|
+
19: <%= render @post.comments || "Nobody commented this post yet." %>
|
11444
|
+
20: <%= render "comments/form", :post => @post, :comment => Comment.new %>
|
11445
|
+
21:
|
11446
|
+
22: <%= link_to 'Edit', edit_post_path(@post) %> |
|
11447
|
+
|
11448
|
+
|
11449
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
11450
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
11451
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.4ms)
|
11452
|
+
|
11453
|
+
|
11454
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:44:14 -0200
|
11455
|
+
Processing by PostsController#show as HTML
|
11456
|
+
Parameters: {"id"=>"5-google"}
|
11457
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11458
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:44:14.774204') LIMIT 1 [["id", "5-google"]]
|
11459
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11460
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (120.2ms)
|
11461
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (137.8ms)
|
11462
|
+
Completed 500 Internal Server Error in 153ms
|
11463
|
+
|
11464
|
+
ActionView::Template::Error (undefined method `gravatar_image_tag' for #<#<Class:0x00000004a7f0b8>:0x00000004a8ed60>):
|
11465
|
+
1: <%= div_for comment, :class => "comment" do %>
|
11466
|
+
2:
|
11467
|
+
3: <div class="author">
|
11468
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
11469
|
+
5: <div class="meta">
|
11470
|
+
6: <span class="name"><%= comment_author(comment.author, comment.url) %></span><br/>
|
11471
|
+
7: <span class="date">Posted <%= time_ago_in_words comment.created_at %> ago</span>
|
11472
|
+
|
11473
|
+
|
11474
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
11475
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
11476
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
|
11477
|
+
|
11478
|
+
|
11479
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:44:42 -0200
|
11480
|
+
Processing by PostsController#show as HTML
|
11481
|
+
Parameters: {"id"=>"5-google"}
|
11482
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11483
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:44:42.443950') LIMIT 1[0m [["id", "5-google"]]
|
11484
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11485
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (84.1ms)
|
11486
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (101.9ms)
|
11487
|
+
Completed 500 Internal Server Error in 117ms
|
11488
|
+
|
11489
|
+
ActionView::Template::Error (undefined method `comment_author' for #<#<Class:0x000000049af048>:0x000000049be3e0>):
|
11490
|
+
2:
|
11491
|
+
3: <div class="author">
|
11492
|
+
4: <div class="meta">
|
11493
|
+
5: <span class="name"><%= comment_author(comment.author, comment.url) %></span><br/>
|
11494
|
+
6: <span class="date">Posted <%= time_ago_in_words comment.created_at %> ago</span>
|
11495
|
+
7: </div>
|
11496
|
+
8: </div>
|
11497
|
+
|
11498
|
+
|
11499
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
11500
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11501
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
|
11502
|
+
|
11503
|
+
|
11504
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:46:31 -0200
|
11505
|
+
Processing by PostsController#show as HTML
|
11506
|
+
Parameters: {"id"=>"5-google"}
|
11507
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11508
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:46:31.621323') LIMIT 1 [["id", "5-google"]]
|
11509
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11510
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (1.3ms)
|
11511
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (19.3ms)
|
11512
|
+
Completed 500 Internal Server Error in 34ms
|
11513
|
+
|
11514
|
+
ActionView::Template::Error (You have a nil object when you didn't expect it!
|
11515
|
+
You might have expected an instance of Array.
|
11516
|
+
The error occurred while evaluating nil.each):
|
11517
|
+
1: <% @comments.each do |comment| %>
|
11518
|
+
2:
|
11519
|
+
3: <div class="author">
|
11520
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
11521
|
+
|
11522
|
+
|
11523
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
11524
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11525
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
|
11526
|
+
|
11527
|
+
|
11528
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:46:37 -0200
|
11529
|
+
Processing by PostsController#show as HTML
|
11530
|
+
Parameters: {"id"=>"5-google"}
|
11531
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11532
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:46:37.607088') LIMIT 1[0m [["id", "5-google"]]
|
11533
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11534
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (0.7ms)
|
11535
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (19.1ms)
|
11536
|
+
Completed 500 Internal Server Error in 34ms
|
11537
|
+
|
11538
|
+
ActionView::Template::Error (You have a nil object when you didn't expect it!
|
11539
|
+
You might have expected an instance of Array.
|
11540
|
+
The error occurred while evaluating nil.each):
|
11541
|
+
1: <% @comments.each do |comment| %>
|
11542
|
+
2:
|
11543
|
+
3: <div class="author">
|
11544
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
11545
|
+
|
11546
|
+
|
11547
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
11548
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
11549
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.4ms)
|
11550
|
+
|
11551
|
+
|
11552
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:46:38 -0200
|
11553
|
+
Processing by PostsController#show as HTML
|
11554
|
+
Parameters: {"id"=>"5-google"}
|
11555
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11556
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:46:38.580790') LIMIT 1 [["id", "5-google"]]
|
11557
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11558
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (0.7ms)
|
11559
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (19.0ms)
|
11560
|
+
Completed 500 Internal Server Error in 34ms
|
11561
|
+
|
11562
|
+
ActionView::Template::Error (You have a nil object when you didn't expect it!
|
11563
|
+
You might have expected an instance of Array.
|
11564
|
+
The error occurred while evaluating nil.each):
|
11565
|
+
1: <% @comments.each do |comment| %>
|
11566
|
+
2:
|
11567
|
+
3: <div class="author">
|
11568
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
11569
|
+
|
11570
|
+
|
11571
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
11572
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11573
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
|
11574
|
+
|
11575
|
+
|
11576
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:46:57 -0200
|
11577
|
+
Processing by PostsController#show as HTML
|
11578
|
+
Parameters: {"id"=>"5-google"}
|
11579
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11580
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:46:57.685496') LIMIT 1[0m [["id", "5-google"]]
|
11581
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11582
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (1.1ms)
|
11583
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (19.7ms)
|
11584
|
+
Completed 500 Internal Server Error in 35ms
|
11585
|
+
|
11586
|
+
ActionView::Template::Error (You have a nil object when you didn't expect it!
|
11587
|
+
You might have expected an instance of Array.
|
11588
|
+
The error occurred while evaluating nil.each):
|
11589
|
+
1: <% @comments.each do |comment| %>
|
11590
|
+
2:
|
11591
|
+
3:
|
11592
|
+
4: <%= comment.body %>
|
11593
|
+
|
11594
|
+
|
11595
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
11596
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11597
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
|
11598
|
+
|
11599
|
+
|
11600
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:47:07 -0200
|
11601
|
+
Processing by PostsController#show as HTML
|
11602
|
+
Parameters: {"id"=>"5-google"}
|
11603
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11604
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:47:07.368595') LIMIT 1 [["id", "5-google"]]
|
11605
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11606
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (82.9ms)
|
11607
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (100.9ms)
|
11608
|
+
Completed 500 Internal Server Error in 116ms
|
11609
|
+
|
11610
|
+
ActionView::Template::Error (undefined method `gravatar_image_tag' for #<#<Class:0x00000003facf00>:0x000000039ea090>):
|
11611
|
+
1: <%= div_for comment, :class => "comment" do %>
|
11612
|
+
2:
|
11613
|
+
3: <div class="author">
|
11614
|
+
4: <div class="avatar"><%= gravatar_image_tag comment.email %></div>
|
11615
|
+
5: <div class="meta">
|
11616
|
+
6: <span class="name"><%= comment_author(comment.author, comment.url) %></span><br/>
|
11617
|
+
7: <span class="date">Posted <%= time_ago_in_words comment.created_at %> ago</span>
|
11618
|
+
|
11619
|
+
|
11620
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.7ms)
|
11621
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11622
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
|
11623
|
+
|
11624
|
+
|
11625
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:47:22 -0200
|
11626
|
+
Processing by PostsController#show as HTML
|
11627
|
+
Parameters: {"id"=>"5-google"}
|
11628
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11629
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:47:22.967185') LIMIT 1[0m [["id", "5-google"]]
|
11630
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11631
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (82.8ms)
|
11632
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (101.0ms)
|
11633
|
+
Completed 500 Internal Server Error in 142ms
|
11634
|
+
|
11635
|
+
ActionView::Template::Error (undefined method `comment_author' for #<#<Class:0x00000004032da8>:0x000000030a0f48>):
|
11636
|
+
3: <div class="author">
|
11637
|
+
4:
|
11638
|
+
5: <div class="meta">
|
11639
|
+
6: <span class="name"><%= comment_author(comment.author, comment.url) %></span><br/>
|
11640
|
+
7: <span class="date">Posted <%= time_ago_in_words comment.created_at %> ago</span>
|
11641
|
+
8: </div>
|
11642
|
+
9: </div>
|
11643
|
+
|
11644
|
+
|
11645
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
|
11646
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.1ms)
|
11647
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
|
11648
|
+
|
11649
|
+
|
11650
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:47:33 -0200
|
11651
|
+
Processing by PostsController#show as HTML
|
11652
|
+
Parameters: {"id"=>"5-google"}
|
11653
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11654
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:47:33.695339') LIMIT 1 [["id", "5-google"]]
|
11655
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11656
|
+
ERROR: compiling __home_phinfonet_projetos_pessoais_blogmodule_app_views_comments__comment_html_erb__2876856541231502718_32775220 RAISED /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:6: syntax error, unexpected ')', expecting '='
|
11657
|
+
...(comment.author, comment.url) );@output_buffer.safe_concat('...
|
11658
|
+
... ^
|
11659
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:14: syntax error, unexpected keyword_end, expecting ')'
|
11660
|
+
'); end ;@output_buffer.to_s
|
11661
|
+
^
|
11662
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:15: syntax error, unexpected keyword_ensure, expecting ')'
|
11663
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:17: syntax error, unexpected keyword_end, expecting ')'
|
11664
|
+
Function body: def __home_phinfonet_projetos_pessoais_blogmodule_app_views_comments__comment_html_erb__2876856541231502718_32775220(local_assigns, output_buffer)
|
11665
|
+
_old_virtual_path, @virtual_path = @virtual_path, "comments/_comment";_old_output_buffer = @output_buffer;comment = local_assigns[:comment];comment_counter = local_assigns[:comment_counter];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= div_for comment, :class => "comment" do @output_buffer.safe_concat('
|
11666
|
+
');@output_buffer.safe_concat('
|
11667
|
+
<div class="author">
|
11668
|
+
|
11669
|
+
<div class="meta">
|
11670
|
+
<span class="name">');@output_buffer.append= ( (comment.author, comment.url) );@output_buffer.safe_concat('</span><br/>
|
11671
|
+
<span class="date">Posted ');@output_buffer.append= ( time_ago_in_words comment.created_at );@output_buffer.safe_concat(' ago</span>
|
11672
|
+
</div>
|
11673
|
+
</div>
|
11674
|
+
|
11675
|
+
<div class="body" style="margin-bottom:20px;">
|
11676
|
+
');@output_buffer.append= ( comment.body );@output_buffer.safe_concat('
|
11677
|
+
');@output_buffer.safe_concat(' </div>
|
11678
|
+
'); end ;@output_buffer.to_s
|
11679
|
+
ensure
|
11680
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
11681
|
+
end
|
11682
|
+
Backtrace: /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:309:in `module_eval'
|
11683
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:309:in `compile'
|
11684
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:217:in `compile!'
|
11685
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:170:in `block in render'
|
11686
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:55:in `instrument'
|
11687
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:169:in `render'
|
11688
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:334:in `block in collection_with_template'
|
11689
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:331:in `each'
|
11690
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:331:in `collection_with_template'
|
11691
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:241:in `render_collection'
|
11692
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:224:in `block (2 levels) in render'
|
11693
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `block in instrument'
|
11694
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `block in instrument'
|
11695
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
11696
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `instrument'
|
11697
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `instrument'
|
11698
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:223:in `block in render'
|
11699
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:22:in `wrap_formats'
|
11700
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:219:in `render'
|
11701
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
11702
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
11703
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb:19:in `__home_phinfonet_projetos_pessoais_blogmodule_app_views_posts_show_html_erb__1598244093900383625_41201200'
|
11704
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:171:in `block in render'
|
11705
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:55:in `instrument'
|
11706
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:169:in `render'
|
11707
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:40:in `block (2 levels) in render_template'
|
11708
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `block in instrument'
|
11709
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `block in instrument'
|
11710
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
11711
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `instrument'
|
11712
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `instrument'
|
11713
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:39:in `block in render_template'
|
11714
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:47:in `render_with_layout'
|
11715
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:38:in `render_template'
|
11716
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:12:in `block in render'
|
11717
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:22:in `wrap_formats'
|
11718
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:9:in `render'
|
11719
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
11720
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/renderer.rb:17:in `render'
|
11721
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:120:in `_render_template'
|
11722
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/streaming.rb:250:in `_render_template'
|
11723
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:114:in `render_to_body'
|
11724
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/renderers.rb:30:in `render_to_body'
|
11725
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/compatibility.rb:43:in `render_to_body'
|
11726
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:99:in `render'
|
11727
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rendering.rb:16:in `render'
|
11728
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
11729
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
11730
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
11731
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
11732
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
11733
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime'
|
11734
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
11735
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
11736
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
11737
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/mime_responds.rb:268:in `block in retrieve_response_from_mimes'
|
11738
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/mime_responds.rb:195:in `call'
|
11739
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/mime_responds.rb:195:in `respond_to'
|
11740
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/controllers/posts_controller.rb:22:in `show'
|
11741
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
11742
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/base.rb:167:in `process_action'
|
11743
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
11744
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
11745
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:425:in `_run__4222272641519117634__process_action__3630446096960218640__callbacks'
|
11746
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:386:in `_run_process_action_callbacks'
|
11747
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11748
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
11749
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rescue.rb:17:in `process_action'
|
11750
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
11751
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `block in instrument'
|
11752
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
11753
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `instrument'
|
11754
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
11755
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/params_wrapper.rb:201:in `process_action'
|
11756
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
11757
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/base.rb:121:in `process'
|
11758
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:45:in `process'
|
11759
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal.rb:193:in `dispatch'
|
11760
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
11761
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal.rb:236:in `block in action'
|
11762
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:65:in `call'
|
11763
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:65:in `dispatch'
|
11764
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:29:in `call'
|
11765
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/route_set.rb:152:in `block in call'
|
11766
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/code_generation.rb:96:in `block in recognize'
|
11767
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/code_generation.rb:110:in `optimized_each'
|
11768
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/code_generation.rb:95:in `recognize'
|
11769
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/route_set.rb:141:in `call'
|
11770
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:532:in `call'
|
11771
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
11772
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/etag.rb:23:in `call'
|
11773
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/conditionalget.rb:25:in `call'
|
11774
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/head.rb:14:in `call'
|
11775
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
11776
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/flash.rb:247:in `call'
|
11777
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/session/abstract/id.rb:195:in `context'
|
11778
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/session/abstract/id.rb:190:in `call'
|
11779
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/cookies.rb:331:in `call'
|
11780
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/query_cache.rb:64:in `call'
|
11781
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/connection_adapters/abstract/connection_pool.rb:477:in `call'
|
11782
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
11783
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:392:in `_run_call_callbacks'
|
11784
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
11785
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/callbacks.rb:28:in `call'
|
11786
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/reloader.rb:68:in `call'
|
11787
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/sendfile.rb:101:in `call'
|
11788
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/remote_ip.rb:48:in `call'
|
11789
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call'
|
11790
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/rack/logger.rb:13:in `call'
|
11791
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/methodoverride.rb:24:in `call'
|
11792
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/runtime.rb:17:in `call'
|
11793
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
11794
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/lock.rb:15:in `call'
|
11795
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/static.rb:53:in `call'
|
11796
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/engine.rb:456:in `call'
|
11797
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/content_length.rb:14:in `call'
|
11798
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/rack/log_tailer.rb:14:in `call'
|
11799
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/handler/webrick.rb:59:in `service'
|
11800
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
11801
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
11802
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
11803
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (0.9ms)
|
11804
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (45.8ms)
|
11805
|
+
Completed 500 Internal Server Error in 60ms
|
11806
|
+
|
11807
|
+
ActionView::Template::Error (/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:6: syntax error, unexpected ')', expecting '='
|
11808
|
+
...(comment.author, comment.url) );@output_buffer.safe_concat('...
|
11809
|
+
... ^
|
11810
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:14: syntax error, unexpected keyword_end, expecting ')'
|
11811
|
+
'); end ;@output_buffer.to_s
|
11812
|
+
^
|
11813
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:15: syntax error, unexpected keyword_ensure, expecting ')'
|
11814
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:17: syntax error, unexpected keyword_end, expecting ')'):
|
11815
|
+
3: <div class="author">
|
11816
|
+
4:
|
11817
|
+
5: <div class="meta">
|
11818
|
+
6: <span class="name"><%= (comment.author, comment.url) %></span><br/>
|
11819
|
+
7: <span class="date">Posted <%= time_ago_in_words comment.created_at %> ago</span>
|
11820
|
+
8: </div>
|
11821
|
+
9: </div>
|
11822
|
+
|
11823
|
+
|
11824
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
11825
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
11826
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.5ms)
|
11827
|
+
|
11828
|
+
|
11829
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:47:40 -0200
|
11830
|
+
Processing by PostsController#show as HTML
|
11831
|
+
Parameters: {"id"=>"5-google"}
|
11832
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11833
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:47:40.087564') LIMIT 1[0m [["id", "5-google"]]
|
11834
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11835
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (18.1ms)
|
11836
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.6ms)
|
11837
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (69.0ms)
|
11838
|
+
Completed 200 OK in 85ms (Views: 74.2ms | ActiveRecord: 1.5ms)
|
11839
|
+
|
11840
|
+
|
11841
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:47:40 -0200
|
11842
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11843
|
+
|
11844
|
+
|
11845
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:47:40 -0200
|
11846
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11847
|
+
|
11848
|
+
|
11849
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:47:40 -0200
|
11850
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11851
|
+
|
11852
|
+
|
11853
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:47:40 -0200
|
11854
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11855
|
+
|
11856
|
+
|
11857
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:48:13 -0200
|
11858
|
+
Processing by PostsController#show as HTML
|
11859
|
+
Parameters: {"id"=>"5-google"}
|
11860
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11861
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:48:13.414467') LIMIT 1 [["id", "5-google"]]
|
11862
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11863
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.4ms)
|
11864
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.8ms)
|
11865
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (62.2ms)
|
11866
|
+
Completed 200 OK in 79ms (Views: 66.9ms | ActiveRecord: 1.6ms)
|
11867
|
+
|
11868
|
+
|
11869
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:13 -0200
|
11870
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11871
|
+
|
11872
|
+
|
11873
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:13 -0200
|
11874
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11875
|
+
|
11876
|
+
|
11877
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:48:13 -0200
|
11878
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11879
|
+
|
11880
|
+
|
11881
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:13 -0200
|
11882
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11883
|
+
|
11884
|
+
|
11885
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:48:33 -0200
|
11886
|
+
Processing by PostsController#show as HTML
|
11887
|
+
Parameters: {"id"=>"5-google"}
|
11888
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11889
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:48:33.468958') LIMIT 1[0m [["id", "5-google"]]
|
11890
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11891
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (9.2ms)
|
11892
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (4.4ms)
|
11893
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (63.4ms)
|
11894
|
+
Completed 200 OK in 80ms (Views: 68.1ms | ActiveRecord: 1.9ms)
|
11895
|
+
|
11896
|
+
|
11897
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:48:33 -0200
|
11898
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11899
|
+
|
11900
|
+
|
11901
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:33 -0200
|
11902
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11903
|
+
|
11904
|
+
|
11905
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:33 -0200
|
11906
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11907
|
+
|
11908
|
+
|
11909
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:33 -0200
|
11910
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11911
|
+
|
11912
|
+
|
11913
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:48:57 -0200
|
11914
|
+
Processing by PostsController#show as HTML
|
11915
|
+
Parameters: {"id"=>"5-google"}
|
11916
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11917
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:48:57.397298') LIMIT 1 [["id", "5-google"]]
|
11918
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11919
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.5ms)
|
11920
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.6ms)
|
11921
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (32.4ms)
|
11922
|
+
Completed 200 OK in 76ms (Views: 37.8ms | ActiveRecord: 1.6ms)
|
11923
|
+
|
11924
|
+
|
11925
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:48:57 -0200
|
11926
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11927
|
+
|
11928
|
+
|
11929
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:57 -0200
|
11930
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11931
|
+
|
11932
|
+
|
11933
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:57 -0200
|
11934
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11935
|
+
|
11936
|
+
|
11937
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:48:57 -0200
|
11938
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11939
|
+
|
11940
|
+
|
11941
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:49:12 -0200
|
11942
|
+
Processing by PostsController#show as HTML
|
11943
|
+
Parameters: {"id"=>"5-google"}
|
11944
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
11945
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:49:12.236533') LIMIT 1[0m [["id", "5-google"]]
|
11946
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
11947
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.4ms)
|
11948
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.9ms)
|
11949
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (33.3ms)
|
11950
|
+
Completed 200 OK in 77ms (Views: 38.0ms | ActiveRecord: 1.5ms)
|
11951
|
+
|
11952
|
+
|
11953
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:49:12 -0200
|
11954
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11955
|
+
|
11956
|
+
|
11957
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:12 -0200
|
11958
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11959
|
+
|
11960
|
+
|
11961
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:12 -0200
|
11962
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11963
|
+
|
11964
|
+
|
11965
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:12 -0200
|
11966
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11967
|
+
|
11968
|
+
|
11969
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:49:35 -0200
|
11970
|
+
Processing by PostsController#show as HTML
|
11971
|
+
Parameters: {"id"=>"5-google"}
|
11972
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
11973
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:49:35.845014') LIMIT 1 [["id", "5-google"]]
|
11974
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
11975
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (9.0ms)
|
11976
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.4ms)
|
11977
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (32.6ms)
|
11978
|
+
Completed 200 OK in 49ms (Views: 37.2ms | ActiveRecord: 1.5ms)
|
11979
|
+
|
11980
|
+
|
11981
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:49:35 -0200
|
11982
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
11983
|
+
|
11984
|
+
|
11985
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:35 -0200
|
11986
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
11987
|
+
|
11988
|
+
|
11989
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:35 -0200
|
11990
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
11991
|
+
|
11992
|
+
|
11993
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:35 -0200
|
11994
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
11995
|
+
|
11996
|
+
|
11997
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:49:40 -0200
|
11998
|
+
Processing by PostsController#show as HTML
|
11999
|
+
Parameters: {"id"=>"5-google"}
|
12000
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12001
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:49:40.183652') LIMIT 1[0m [["id", "5-google"]]
|
12002
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12003
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.5ms)
|
12004
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.6ms)
|
12005
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (31.7ms)
|
12006
|
+
Completed 200 OK in 48ms (Views: 36.5ms | ActiveRecord: 1.5ms)
|
12007
|
+
|
12008
|
+
|
12009
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:40 -0200
|
12010
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12011
|
+
|
12012
|
+
|
12013
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:49:40 -0200
|
12014
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12015
|
+
|
12016
|
+
|
12017
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:40 -0200
|
12018
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12019
|
+
|
12020
|
+
|
12021
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:49:40 -0200
|
12022
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12023
|
+
|
12024
|
+
|
12025
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:50:00 -0200
|
12026
|
+
Processing by PostsController#show as HTML
|
12027
|
+
Parameters: {"id"=>"5-google"}
|
12028
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12029
|
+
[1m[35mPost Load (0.3ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:50:00.340605') LIMIT 1 [["id", "5-google"]]
|
12030
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
12031
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (85.1ms)
|
12032
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (103.3ms)
|
12033
|
+
Completed 500 Internal Server Error in 119ms
|
12034
|
+
|
12035
|
+
ActionView::Template::Error (undefined local variable or method `blank' for #<#<Class:0x00000003e95db0>:0x00000003e98a38>):
|
12036
|
+
1: <%= div_for comment, :class => "comment" do %>
|
12037
|
+
2:
|
12038
|
+
3: Posted <%= time_ago_in_words comment.created_at %> ago <br />
|
12039
|
+
4: <%= link_to comment.author :target => blank %> <br />
|
12040
|
+
5: <%= comment.body %>
|
12041
|
+
6: <% end %>
|
12042
|
+
|
12043
|
+
|
12044
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
12045
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
|
12046
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.5ms)
|
12047
|
+
|
12048
|
+
|
12049
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:50:15 -0200
|
12050
|
+
Processing by PostsController#show as HTML
|
12051
|
+
Parameters: {"id"=>"5-google"}
|
12052
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12053
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:50:15.429823') LIMIT 1[0m [["id", "5-google"]]
|
12054
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12055
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.8ms)
|
12056
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (4.0ms)
|
12057
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (32.9ms)
|
12058
|
+
Completed 200 OK in 75ms (Views: 37.7ms | ActiveRecord: 1.7ms)
|
12059
|
+
|
12060
|
+
|
12061
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:15 -0200
|
12062
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12063
|
+
|
12064
|
+
|
12065
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:15 -0200
|
12066
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12067
|
+
|
12068
|
+
|
12069
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:50:15 -0200
|
12070
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12071
|
+
|
12072
|
+
|
12073
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:15 -0200
|
12074
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12075
|
+
|
12076
|
+
|
12077
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:50:17 -0200
|
12078
|
+
Processing by PostsController#show as HTML
|
12079
|
+
Parameters: {"id"=>"5-google"}
|
12080
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12081
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:50:17.263968') LIMIT 1 [["id", "5-google"]]
|
12082
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
12083
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.5ms)
|
12084
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.5ms)
|
12085
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (32.3ms)
|
12086
|
+
Completed 200 OK in 49ms (Views: 37.3ms | ActiveRecord: 1.5ms)
|
12087
|
+
|
12088
|
+
|
12089
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:17 -0200
|
12090
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12091
|
+
|
12092
|
+
|
12093
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:17 -0200
|
12094
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12095
|
+
|
12096
|
+
|
12097
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:50:17 -0200
|
12098
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12099
|
+
|
12100
|
+
|
12101
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:17 -0200
|
12102
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12103
|
+
|
12104
|
+
|
12105
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:50:17 -0200
|
12106
|
+
Processing by PostsController#show as HTML
|
12107
|
+
Parameters: {"id"=>"5-google"}
|
12108
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12109
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:50:18.052460') LIMIT 1[0m [["id", "5-google"]]
|
12110
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12111
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.2ms)
|
12112
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.5ms)
|
12113
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (31.9ms)
|
12114
|
+
Completed 200 OK in 49ms (Views: 36.8ms | ActiveRecord: 1.8ms)
|
12115
|
+
|
12116
|
+
|
12117
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12118
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12119
|
+
|
12120
|
+
|
12121
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12122
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12123
|
+
|
12124
|
+
|
12125
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12126
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12127
|
+
|
12128
|
+
|
12129
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12130
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12131
|
+
|
12132
|
+
|
12133
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12134
|
+
Processing by PostsController#show as HTML
|
12135
|
+
Parameters: {"id"=>"5-google"}
|
12136
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12137
|
+
[1m[35mPost Load (0.5ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:50:18.734000') LIMIT 1 [["id", "5-google"]]
|
12138
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
12139
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.6ms)
|
12140
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.7ms)
|
12141
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (32.1ms)
|
12142
|
+
Completed 200 OK in 49ms (Views: 37.1ms | ActiveRecord: 1.7ms)
|
12143
|
+
|
12144
|
+
|
12145
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12146
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12147
|
+
|
12148
|
+
|
12149
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12150
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12151
|
+
|
12152
|
+
|
12153
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12154
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12155
|
+
|
12156
|
+
|
12157
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:18 -0200
|
12158
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12159
|
+
|
12160
|
+
|
12161
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:50:19 -0200
|
12162
|
+
Processing by PostsController#show as HTML
|
12163
|
+
Parameters: {"id"=>"5-google"}
|
12164
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12165
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:50:19.422128') LIMIT 1[0m [["id", "5-google"]]
|
12166
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12167
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.3ms)
|
12168
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (4.0ms)
|
12169
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (32.0ms)
|
12170
|
+
Completed 200 OK in 49ms (Views: 36.9ms | ActiveRecord: 1.5ms)
|
12171
|
+
|
12172
|
+
|
12173
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:50:19 -0200
|
12174
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12175
|
+
|
12176
|
+
|
12177
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:19 -0200
|
12178
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12179
|
+
|
12180
|
+
|
12181
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:19 -0200
|
12182
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12183
|
+
|
12184
|
+
|
12185
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:19 -0200
|
12186
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12187
|
+
|
12188
|
+
|
12189
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 15:50:21 -0200
|
12190
|
+
Processing by PostsController#show as HTML
|
12191
|
+
Parameters: {"id"=>"5-google"}
|
12192
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12193
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:50:21.831730') LIMIT 1 [["id", "5-google"]]
|
12194
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
12195
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.7ms)
|
12196
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.6ms)
|
12197
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (31.9ms)
|
12198
|
+
Completed 200 OK in 49ms (Views: 36.8ms | ActiveRecord: 1.6ms)
|
12199
|
+
|
12200
|
+
|
12201
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:21 -0200
|
12202
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12203
|
+
|
12204
|
+
|
12205
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:50:21 -0200
|
12206
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12207
|
+
|
12208
|
+
|
12209
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:21 -0200
|
12210
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12211
|
+
|
12212
|
+
|
12213
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:50:21 -0200
|
12214
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12215
|
+
|
12216
|
+
|
12217
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 15:52:14 -0200
|
12218
|
+
Processing by PostsController#index as HTML
|
12219
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12220
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (10.0ms)
|
12221
|
+
[1m[36m (0.2ms)[0m [1mSELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:52:14.577275')[0m
|
12222
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 17:52:14.577275')
|
12223
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (30.5ms)
|
12224
|
+
Completed 200 OK in 45ms (Views: 35.2ms | ActiveRecord: 1.1ms)
|
12225
|
+
|
12226
|
+
|
12227
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:52:14 -0200
|
12228
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12229
|
+
|
12230
|
+
|
12231
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:14 -0200
|
12232
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12233
|
+
|
12234
|
+
|
12235
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:14 -0200
|
12236
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12237
|
+
|
12238
|
+
|
12239
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:14 -0200
|
12240
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12241
|
+
|
12242
|
+
|
12243
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 15:52:18 -0200
|
12244
|
+
Processing by PostsController#show as HTML
|
12245
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
12246
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12247
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:52:18.448896') LIMIT 1 [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
12248
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 2[0m
|
12249
|
+
Rendered collection (0.0ms)
|
12250
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (11.6ms)
|
12251
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (30.1ms)
|
12252
|
+
Completed 200 OK in 47ms (Views: 35.3ms | ActiveRecord: 1.5ms)
|
12253
|
+
|
12254
|
+
|
12255
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:52:18 -0200
|
12256
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12257
|
+
|
12258
|
+
|
12259
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:18 -0200
|
12260
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12261
|
+
|
12262
|
+
|
12263
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:18 -0200
|
12264
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12265
|
+
|
12266
|
+
|
12267
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:18 -0200
|
12268
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12269
|
+
|
12270
|
+
|
12271
|
+
Started GET "/posts/3-industria-automobilistica-embala-arrecadacao-recorde-de-impostos-em-2011" for 127.0.0.1 at 2012-01-02 15:52:24 -0200
|
12272
|
+
Processing by PostsController#show as HTML
|
12273
|
+
Parameters: {"id"=>"3-industria-automobilistica-embala-arrecadacao-recorde-de-impostos-em-2011"}
|
12274
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12275
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 17:52:24.453434') LIMIT 1[0m [["id", "3-industria-automobilistica-embala-arrecadacao-recorde-de-impostos-em-2011"]]
|
12276
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 3
|
12277
|
+
Rendered collection (0.0ms)
|
12278
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (11.7ms)
|
12279
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (30.8ms)
|
12280
|
+
Completed 200 OK in 47ms (Views: 35.8ms | ActiveRecord: 1.6ms)
|
12281
|
+
|
12282
|
+
|
12283
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 15:52:24 -0200
|
12284
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12285
|
+
|
12286
|
+
|
12287
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:24 -0200
|
12288
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12289
|
+
|
12290
|
+
|
12291
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:24 -0200
|
12292
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12293
|
+
|
12294
|
+
|
12295
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 15:52:24 -0200
|
12296
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12297
|
+
|
12298
|
+
|
12299
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 16:02:30 -0200
|
12300
|
+
Processing by PostsController#index as HTML
|
12301
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12302
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (5.7ms)
|
12303
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:30.227115')
|
12304
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:30.227115')[0m
|
12305
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (23.0ms)
|
12306
|
+
Completed 200 OK in 39ms (Views: 27.7ms | ActiveRecord: 1.2ms)
|
12307
|
+
|
12308
|
+
|
12309
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:02:30 -0200
|
12310
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12311
|
+
|
12312
|
+
|
12313
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:30 -0200
|
12314
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12315
|
+
|
12316
|
+
|
12317
|
+
Started GET "/posts/2-ford-mondeo-desfila-camuflado-antes-de-detroit" for 127.0.0.1 at 2012-01-02 16:02:31 -0200
|
12318
|
+
Processing by PostsController#show as HTML
|
12319
|
+
Parameters: {"id"=>"2-ford-mondeo-desfila-camuflado-antes-de-detroit"}
|
12320
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12321
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:02:31.753032') LIMIT 1[0m [["id", "2-ford-mondeo-desfila-camuflado-antes-de-detroit"]]
|
12322
|
+
[1m[35mComment Load (0.4ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 2
|
12323
|
+
Rendered collection (0.0ms)
|
12324
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (11.7ms)
|
12325
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (31.0ms)
|
12326
|
+
Completed 200 OK in 47ms (Views: 35.5ms | ActiveRecord: 1.8ms)
|
12327
|
+
|
12328
|
+
|
12329
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:02:31 -0200
|
12330
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12331
|
+
|
12332
|
+
|
12333
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:31 -0200
|
12334
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12335
|
+
|
12336
|
+
|
12337
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:31 -0200
|
12338
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12339
|
+
|
12340
|
+
|
12341
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:31 -0200
|
12342
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12343
|
+
|
12344
|
+
|
12345
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 16:02:35 -0200
|
12346
|
+
Processing by PostsController#index as HTML
|
12347
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12348
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (5.7ms)
|
12349
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:35.341820')
|
12350
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:35.341820')[0m
|
12351
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (23.3ms)
|
12352
|
+
Completed 200 OK in 39ms (Views: 28.6ms | ActiveRecord: 1.3ms)
|
12353
|
+
|
12354
|
+
|
12355
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:35 -0200
|
12356
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12357
|
+
|
12358
|
+
|
12359
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:35 -0200
|
12360
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12361
|
+
|
12362
|
+
|
12363
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:35 -0200
|
12364
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12365
|
+
|
12366
|
+
|
12367
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:02:35 -0200
|
12368
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12369
|
+
|
12370
|
+
|
12371
|
+
Started GET "/posts/3-industria-automobilistica-embala-arrecadacao-recorde-de-impostos-em-2011" for 127.0.0.1 at 2012-01-02 16:02:36 -0200
|
12372
|
+
Processing by PostsController#show as HTML
|
12373
|
+
Parameters: {"id"=>"3-industria-automobilistica-embala-arrecadacao-recorde-de-impostos-em-2011"}
|
12374
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12375
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:02:36.599348') LIMIT 1[0m [["id", "3-industria-automobilistica-embala-arrecadacao-recorde-de-impostos-em-2011"]]
|
12376
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 3
|
12377
|
+
Rendered collection (0.0ms)
|
12378
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (11.8ms)
|
12379
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (31.0ms)
|
12380
|
+
Completed 200 OK in 47ms (Views: 35.6ms | ActiveRecord: 1.6ms)
|
12381
|
+
|
12382
|
+
|
12383
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:02:36 -0200
|
12384
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12385
|
+
|
12386
|
+
|
12387
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:36 -0200
|
12388
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12389
|
+
|
12390
|
+
|
12391
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:36 -0200
|
12392
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12393
|
+
|
12394
|
+
|
12395
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:36 -0200
|
12396
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12397
|
+
|
12398
|
+
|
12399
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 16:02:38 -0200
|
12400
|
+
Processing by PostsController#index as HTML
|
12401
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12402
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (5.7ms)
|
12403
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:38.703546')
|
12404
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:38.703546')[0m
|
12405
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (22.3ms)
|
12406
|
+
Completed 200 OK in 37ms (Views: 27.0ms | ActiveRecord: 1.1ms)
|
12407
|
+
|
12408
|
+
|
12409
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:02:38 -0200
|
12410
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12411
|
+
|
12412
|
+
|
12413
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:38 -0200
|
12414
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12415
|
+
|
12416
|
+
|
12417
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:38 -0200
|
12418
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12419
|
+
|
12420
|
+
|
12421
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:38 -0200
|
12422
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12423
|
+
|
12424
|
+
|
12425
|
+
Started GET "/posts/4-ruby-e-legal" for 127.0.0.1 at 2012-01-02 16:02:39 -0200
|
12426
|
+
Processing by PostsController#show as HTML
|
12427
|
+
Parameters: {"id"=>"4-ruby-e-legal"}
|
12428
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12429
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:02:39.736943') LIMIT 1[0m [["id", "4-ruby-e-legal"]]
|
12430
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 4
|
12431
|
+
Rendered collection (0.0ms)
|
12432
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (12.4ms)
|
12433
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (31.2ms)
|
12434
|
+
Completed 200 OK in 48ms (Views: 36.4ms | ActiveRecord: 1.6ms)
|
12435
|
+
|
12436
|
+
|
12437
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:02:39 -0200
|
12438
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12439
|
+
|
12440
|
+
|
12441
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:39 -0200
|
12442
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12443
|
+
|
12444
|
+
|
12445
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:39 -0200
|
12446
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12447
|
+
|
12448
|
+
|
12449
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:39 -0200
|
12450
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12451
|
+
|
12452
|
+
|
12453
|
+
Started GET "/posts" for 127.0.0.1 at 2012-01-02 16:02:41 -0200
|
12454
|
+
Processing by PostsController#index as HTML
|
12455
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12456
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/_categories.html.erb (5.8ms)
|
12457
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:41.802525')
|
12458
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE (published = 't' AND date < '2012-01-02 18:02:41.802525')[0m
|
12459
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/index.html.erb within layouts/application (22.3ms)
|
12460
|
+
Completed 200 OK in 37ms (Views: 27.1ms | ActiveRecord: 1.1ms)
|
12461
|
+
|
12462
|
+
|
12463
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:02:41 -0200
|
12464
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12465
|
+
|
12466
|
+
|
12467
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:41 -0200
|
12468
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12469
|
+
|
12470
|
+
|
12471
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:41 -0200
|
12472
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12473
|
+
|
12474
|
+
|
12475
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:02:41 -0200
|
12476
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12477
|
+
|
12478
|
+
|
12479
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 16:02:43 -0200
|
12480
|
+
Processing by PostsController#show as HTML
|
12481
|
+
Parameters: {"id"=>"5-google"}
|
12482
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12483
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:02:43.612844') LIMIT 1[0m [["id", "5-google"]]
|
12484
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12485
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (85.6ms)
|
12486
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (104.0ms)
|
12487
|
+
Completed 500 Internal Server Error in 119ms
|
12488
|
+
|
12489
|
+
ActionView::Template::Error (undefined local variable or method `target' for #<#<Class:0x000000043ae950>:0x00000003f05b60>):
|
12490
|
+
1: <%= div_for comment, :class => "comment" do %>
|
12491
|
+
2:
|
12492
|
+
3: Posted <%= time_ago_in_words comment.created_at %> ago <br />
|
12493
|
+
4: <%= link_to comment.author, target => '_blank' %> <br />
|
12494
|
+
5: <%= comment.body %>
|
12495
|
+
6: <% end %>
|
12496
|
+
|
12497
|
+
|
12498
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
|
12499
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
|
12500
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.0ms)
|
12501
|
+
|
12502
|
+
|
12503
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 16:03:01 -0200
|
12504
|
+
Processing by PostsController#show as HTML
|
12505
|
+
Parameters: {"id"=>"5-google"}
|
12506
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12507
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:03:01.453218') LIMIT 1 [["id", "5-google"]]
|
12508
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
12509
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (9.4ms)
|
12510
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.6ms)
|
12511
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (33.8ms)
|
12512
|
+
Completed 200 OK in 76ms (Views: 38.5ms | ActiveRecord: 1.5ms)
|
12513
|
+
|
12514
|
+
|
12515
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:03:01 -0200
|
12516
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12517
|
+
|
12518
|
+
|
12519
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:01 -0200
|
12520
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12521
|
+
|
12522
|
+
|
12523
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:01 -0200
|
12524
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12525
|
+
|
12526
|
+
|
12527
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:01 -0200
|
12528
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12529
|
+
|
12530
|
+
|
12531
|
+
Started GET "/posts/5-google?target=_blank" for 127.0.0.1 at 2012-01-02 16:03:04 -0200
|
12532
|
+
Processing by PostsController#show as HTML
|
12533
|
+
Parameters: {"target"=>"_blank", "id"=>"5-google"}
|
12534
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12535
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:03:04.384492') LIMIT 1[0m [["id", "5-google"]]
|
12536
|
+
[1m[35mComment Load (0.3ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12537
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (8.9ms)
|
12538
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.3ms)
|
12539
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (33.0ms)
|
12540
|
+
Completed 200 OK in 77ms (Views: 37.4ms | ActiveRecord: 1.6ms)
|
12541
|
+
|
12542
|
+
|
12543
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:03:04 -0200
|
12544
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12545
|
+
|
12546
|
+
|
12547
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:04 -0200
|
12548
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12549
|
+
|
12550
|
+
|
12551
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:04 -0200
|
12552
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12553
|
+
|
12554
|
+
|
12555
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:04 -0200
|
12556
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12557
|
+
|
12558
|
+
|
12559
|
+
Started POST "/posts/5-google/comments" for 127.0.0.1 at 2012-01-02 16:03:13 -0200
|
12560
|
+
Processing by CommentsController#create as HTML
|
12561
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"K3n5uDfUmCxnlyArwH8t7psOCQctqt6eEuZ7nwHMvVA=", "comment"=>{"author"=>"hahahhaha", "email"=>"email@exemplo.com", "url"=>"https://tecnobest.tk", "body"=>"fsdadsasd"}, "commit"=>"Create Comment", "post_id"=>"5-google"}
|
12562
|
+
[1m[36mPost Load (0.3ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT 1[0m [["id", "5-google"]]
|
12563
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "comments" ("author", "body", "created_at", "email", "post_id", "updated_at", "url") VALUES (?, ?, ?, ?, ?, ?, ?) [["author", "hahahhaha"], ["body", "fsdadsasd"], ["created_at", Mon, 02 Jan 2012 18:03:13 UTC +00:00], ["email", "email@exemplo.com"], ["post_id", 5], ["updated_at", Mon, 02 Jan 2012 18:03:13 UTC +00:00], ["url", "https://tecnobest.tk"]]
|
12564
|
+
Redirected to http://localhost:3000/posts/5-google
|
12565
|
+
Completed 302 Found in 226ms
|
12566
|
+
|
12567
|
+
|
12568
|
+
Started GET "/posts/5-google" for 127.0.0.1 at 2012-01-02 16:03:13 -0200
|
12569
|
+
Processing by PostsController#show as HTML
|
12570
|
+
Parameters: {"id"=>"5-google"}
|
12571
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12572
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:03:13.484314') LIMIT 1 [["id", "5-google"]]
|
12573
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
12574
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (9.5ms)
|
12575
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.4ms)
|
12576
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (62.1ms)
|
12577
|
+
Completed 200 OK in 78ms (Views: 66.9ms | ActiveRecord: 1.4ms)
|
12578
|
+
|
12579
|
+
|
12580
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:03:13 -0200
|
12581
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12582
|
+
|
12583
|
+
|
12584
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:13 -0200
|
12585
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12586
|
+
|
12587
|
+
|
12588
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:13 -0200
|
12589
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12590
|
+
|
12591
|
+
|
12592
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:13 -0200
|
12593
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12594
|
+
|
12595
|
+
|
12596
|
+
Started GET "/posts/5-google?target=_blank" for 127.0.0.1 at 2012-01-02 16:03:15 -0200
|
12597
|
+
Processing by PostsController#show as HTML
|
12598
|
+
Parameters: {"target"=>"_blank", "id"=>"5-google"}
|
12599
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12600
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:03:15.286763') LIMIT 1[0m [["id", "5-google"]]
|
12601
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12602
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (9.8ms)
|
12603
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.5ms)
|
12604
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (33.3ms)
|
12605
|
+
Completed 200 OK in 78ms (Views: 66.8ms | ActiveRecord: 1.6ms)
|
12606
|
+
|
12607
|
+
|
12608
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:03:15 -0200
|
12609
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12610
|
+
|
12611
|
+
|
12612
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:15 -0200
|
12613
|
+
Served asset /jquery.js - 304 Not Modified (0ms)
|
12614
|
+
|
12615
|
+
|
12616
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:15 -0200
|
12617
|
+
Served asset /application.js - 304 Not Modified (0ms)
|
12618
|
+
|
12619
|
+
|
12620
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:03:15 -0200
|
12621
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12622
|
+
|
12623
|
+
|
12624
|
+
Started GET "/posts/5-google?target=_blank" for 127.0.0.1 at 2012-01-02 16:07:40 -0200
|
12625
|
+
Processing by PostsController#show as HTML
|
12626
|
+
Parameters: {"target"=>"_blank", "id"=>"5-google"}
|
12627
|
+
[1m[36mCategory Load (0.1ms)[0m [1mSELECT "categories".* FROM "categories" [0m
|
12628
|
+
[1m[35mPost Load (0.2ms)[0m SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:07:40.937297') LIMIT 1 [["id", "5-google"]]
|
12629
|
+
[1m[36mComment Load (0.2ms)[0m [1mSELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5[0m
|
12630
|
+
ERROR: compiling __home_phinfonet_projetos_pessoais_blogmodule_app_views_comments__comment_html_erb__2876856541231502718_38633040 RAISED /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:4: syntax error, unexpected tSYMBEG, expecting ')'
|
12631
|
+
...o comment.author, comment.url :target => '_blank' );@output...
|
12632
|
+
... ^
|
12633
|
+
Function body: def __home_phinfonet_projetos_pessoais_blogmodule_app_views_comments__comment_html_erb__2876856541231502718_38633040(local_assigns, output_buffer)
|
12634
|
+
_old_virtual_path, @virtual_path = @virtual_path, "comments/_comment";_old_output_buffer = @output_buffer;comment = local_assigns[:comment];comment_counter = local_assigns[:comment_counter];;@output_buffer = output_buffer || ActionView::OutputBuffer.new;@output_buffer.append= div_for comment, :class => "comment" do @output_buffer.safe_concat('
|
12635
|
+
');@output_buffer.safe_concat('
|
12636
|
+
Posted ');@output_buffer.append= ( time_ago_in_words comment.created_at );@output_buffer.safe_concat(' ago <br />
|
12637
|
+
');@output_buffer.append= ( link_to comment.author, comment.url :target => '_blank' );@output_buffer.safe_concat(' <br />
|
12638
|
+
');@output_buffer.append= ( comment.body );@output_buffer.safe_concat('
|
12639
|
+
'); end ;@output_buffer.to_s
|
12640
|
+
ensure
|
12641
|
+
@virtual_path, @output_buffer = _old_virtual_path, _old_output_buffer
|
12642
|
+
end
|
12643
|
+
Backtrace: /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:309:in `module_eval'
|
12644
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:309:in `compile'
|
12645
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:217:in `compile!'
|
12646
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:170:in `block in render'
|
12647
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:55:in `instrument'
|
12648
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:169:in `render'
|
12649
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:334:in `block in collection_with_template'
|
12650
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:331:in `each'
|
12651
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:331:in `collection_with_template'
|
12652
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:241:in `render_collection'
|
12653
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:224:in `block (2 levels) in render'
|
12654
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `block in instrument'
|
12655
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `block in instrument'
|
12656
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
12657
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `instrument'
|
12658
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `instrument'
|
12659
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:223:in `block in render'
|
12660
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:22:in `wrap_formats'
|
12661
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/partial_renderer.rb:219:in `render'
|
12662
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/renderer.rb:41:in `render_partial'
|
12663
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/helpers/rendering_helper.rb:27:in `render'
|
12664
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb:19:in `__home_phinfonet_projetos_pessoais_blogmodule_app_views_posts_show_html_erb__1598244093900383625_41201200'
|
12665
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:171:in `block in render'
|
12666
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:55:in `instrument'
|
12667
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/template.rb:169:in `render'
|
12668
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:40:in `block (2 levels) in render_template'
|
12669
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `block in instrument'
|
12670
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `block in instrument'
|
12671
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
12672
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `instrument'
|
12673
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:33:in `instrument'
|
12674
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:39:in `block in render_template'
|
12675
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:47:in `render_with_layout'
|
12676
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:38:in `render_template'
|
12677
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:12:in `block in render'
|
12678
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/abstract_renderer.rb:22:in `wrap_formats'
|
12679
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/template_renderer.rb:9:in `render'
|
12680
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/renderer.rb:36:in `render_template'
|
12681
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_view/renderer/renderer.rb:17:in `render'
|
12682
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:120:in `_render_template'
|
12683
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/streaming.rb:250:in `_render_template'
|
12684
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:114:in `render_to_body'
|
12685
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/renderers.rb:30:in `render_to_body'
|
12686
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/compatibility.rb:43:in `render_to_body'
|
12687
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:99:in `render'
|
12688
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rendering.rb:16:in `render'
|
12689
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:40:in `block (2 levels) in render'
|
12690
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/core_ext/benchmark.rb:5:in `block in ms'
|
12691
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
|
12692
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/core_ext/benchmark.rb:5:in `ms'
|
12693
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:40:in `block in render'
|
12694
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:78:in `cleanup_view_runtime'
|
12695
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/railties/controller_runtime.rb:24:in `cleanup_view_runtime'
|
12696
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:39:in `render'
|
12697
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/implicit_render.rb:10:in `default_render'
|
12698
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/mime_responds.rb:268:in `block in retrieve_response_from_mimes'
|
12699
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/mime_responds.rb:195:in `call'
|
12700
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/mime_responds.rb:195:in `respond_to'
|
12701
|
+
/home/phinfonet/projetos/pessoais/blogmodule/app/controllers/posts_controller.rb:22:in `show'
|
12702
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
12703
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/base.rb:167:in `process_action'
|
12704
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rendering.rb:10:in `process_action'
|
12705
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/callbacks.rb:18:in `block in process_action'
|
12706
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:425:in `_run__4222272641519117634__process_action__3630446096960218640__callbacks'
|
12707
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:386:in `_run_process_action_callbacks'
|
12708
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12709
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/callbacks.rb:17:in `process_action'
|
12710
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rescue.rb:17:in `process_action'
|
12711
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:30:in `block in process_action'
|
12712
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `block in instrument'
|
12713
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
12714
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/notifications.rb:53:in `instrument'
|
12715
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/instrumentation.rb:29:in `process_action'
|
12716
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/params_wrapper.rb:201:in `process_action'
|
12717
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
12718
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/base.rb:121:in `process'
|
12719
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/abstract_controller/rendering.rb:45:in `process'
|
12720
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal.rb:193:in `dispatch'
|
12721
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal/rack_delegation.rb:14:in `dispatch'
|
12722
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_controller/metal.rb:236:in `block in action'
|
12723
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:65:in `call'
|
12724
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:65:in `dispatch'
|
12725
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:29:in `call'
|
12726
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/route_set.rb:152:in `block in call'
|
12727
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/code_generation.rb:96:in `block in recognize'
|
12728
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/code_generation.rb:110:in `optimized_each'
|
12729
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/code_generation.rb:95:in `recognize'
|
12730
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-mount-0.8.3/lib/rack/mount/route_set.rb:141:in `call'
|
12731
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/routing/route_set.rb:532:in `call'
|
12732
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
|
12733
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/etag.rb:23:in `call'
|
12734
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/conditionalget.rb:25:in `call'
|
12735
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/head.rb:14:in `call'
|
12736
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/params_parser.rb:21:in `call'
|
12737
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/flash.rb:247:in `call'
|
12738
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/session/abstract/id.rb:195:in `context'
|
12739
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/session/abstract/id.rb:190:in `call'
|
12740
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/cookies.rb:331:in `call'
|
12741
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/query_cache.rb:64:in `call'
|
12742
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activerecord-3.1.3/lib/active_record/connection_adapters/abstract/connection_pool.rb:477:in `call'
|
12743
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
12744
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:392:in `_run_call_callbacks'
|
12745
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/callbacks.rb:81:in `run_callbacks'
|
12746
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/callbacks.rb:28:in `call'
|
12747
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/reloader.rb:68:in `call'
|
12748
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/sendfile.rb:101:in `call'
|
12749
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/remote_ip.rb:48:in `call'
|
12750
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/show_exceptions.rb:47:in `call'
|
12751
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/rack/logger.rb:13:in `call'
|
12752
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/methodoverride.rb:24:in `call'
|
12753
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/runtime.rb:17:in `call'
|
12754
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/activesupport-3.1.3/lib/active_support/cache/strategy/local_cache.rb:72:in `call'
|
12755
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/lock.rb:15:in `call'
|
12756
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/static.rb:53:in `call'
|
12757
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/engine.rb:456:in `call'
|
12758
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/content_length.rb:14:in `call'
|
12759
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/railties-3.1.3/lib/rails/rack/log_tailer.rb:14:in `call'
|
12760
|
+
/home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/rack-1.3.6/lib/rack/handler/webrick.rb:59:in `service'
|
12761
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
|
12762
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
|
12763
|
+
/home/phinfonet/.rvm/rubies/ruby-1.9.3-p0/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
|
12764
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (0.8ms)
|
12765
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (19.0ms)
|
12766
|
+
Completed 500 Internal Server Error in 62ms
|
12767
|
+
|
12768
|
+
ActionView::Template::Error (/home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb:4: syntax error, unexpected tSYMBEG, expecting ')'
|
12769
|
+
...o comment.author, comment.url :target => '_blank' );@output...
|
12770
|
+
... ^):
|
12771
|
+
1: <%= div_for comment, :class => "comment" do %>
|
12772
|
+
2:
|
12773
|
+
3: Posted <%= time_ago_in_words comment.created_at %> ago <br />
|
12774
|
+
4: <%= link_to comment.author, comment.url :target => '_blank' %> <br />
|
12775
|
+
5: <%= comment.body %>
|
12776
|
+
6: <% end %>
|
12777
|
+
|
12778
|
+
|
12779
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
|
12780
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
|
12781
|
+
Rendered /home/phinfonet/.rvm/gems/ruby-1.9.3-p0/gems/actionpack-3.1.3/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (5.2ms)
|
12782
|
+
|
12783
|
+
|
12784
|
+
Started GET "/posts/5-google?target=_blank" for 127.0.0.1 at 2012-01-02 16:08:00 -0200
|
12785
|
+
Processing by PostsController#show as HTML
|
12786
|
+
Parameters: {"target"=>"_blank", "id"=>"5-google"}
|
12787
|
+
[1m[35mCategory Load (0.1ms)[0m SELECT "categories".* FROM "categories"
|
12788
|
+
[1m[36mPost Load (0.2ms)[0m [1mSELECT "posts".* FROM "posts" WHERE "posts"."id" = ? AND (published = 't' AND date < '2012-01-02 18:08:00.830223') LIMIT 1[0m [["id", "5-google"]]
|
12789
|
+
[1m[35mComment Load (0.2ms)[0m SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 5
|
12790
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_comment.html.erb (9.5ms)
|
12791
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/comments/_form.html.erb (3.8ms)
|
12792
|
+
Rendered /home/phinfonet/projetos/pessoais/blogmodule/app/views/posts/show.html.erb within layouts/application (34.4ms)
|
12793
|
+
Completed 200 OK in 82ms (Views: 39.4ms | ActiveRecord: 1.6ms)
|
12794
|
+
|
12795
|
+
|
12796
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-01-02 16:08:00 -0200
|
12797
|
+
Served asset /application.css - 304 Not Modified (0ms)
|
12798
|
+
|
12799
|
+
|
12800
|
+
Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-01-02 16:08:00 -0200
|
12801
|
+
Served asset /jquery.js - 304 Not Modified (1ms)
|
12802
|
+
|
12803
|
+
|
12804
|
+
Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-01-02 16:08:00 -0200
|
12805
|
+
Served asset /jquery_ujs.js - 304 Not Modified (0ms)
|
12806
|
+
|
12807
|
+
|
12808
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-01-02 16:08:00 -0200
|
12809
|
+
Served asset /application.js - 304 Not Modified (0ms)
|