kblog 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- M2M0OTc5ZDgzOTQ2ZmI1OGNiMTNhZjBlODE1ZmE0YmMzNWEwNjAzNg==
4
+ YzM2ZDdiZDdlYzA3ZWQ3NGIyMDk5YWVlMWI5M2MyMmQ4MTFlZjM1Yw==
5
5
  data.tar.gz: !binary |-
6
- OTY5NTkwZmIxMGI1Yzc0OGU5N2ExMGI3YWQ1ZmU1MWRhNjZmYzdlMQ==
6
+ ZGM3MzA2MGY5YjYyN2ZkNjkwM2U4ODIxN2MzZGFiYzdhNmZlMWM4ZA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- ZDI5NzU3ZTVlZjBiNGQ5ZWEyMmYxNTcxMTYxOGU0ZDdkMWVhNjNlMDM4ZmVk
10
- NTIyYTUzZGJkMjAwOTZlMDMxMmVkY2Y0YjA3OGU0YzhjNzVjYTIxZjFjMzJm
11
- Y2Q1YmQ3Yjk1OTIyZWI4NzhlY2IwNmJhYWRiYzI0YjBiNmQwMDY=
9
+ ZGNkMDk2ZDlmN2UwOGY4MWQ5ZTgzN2U4YzNmNWUzOGFkNzIyMTA4ZmY0MDg5
10
+ MzJiNDRiZDAzYmJkMTJiNmI1ZTgwOWVlZTUzNGFhMzM2NmY4NTFjZmM0Mjhm
11
+ ZjczODhiODc2ZTEwMGE2MjMxZTEwY2Y0ZmVlOTNlYjYzOTMxYTg=
12
12
  data.tar.gz: !binary |-
13
- OWFhN2M4NmU4ZGNlYTdhZTMwYWQ0MmMxNGY3YTQ4NTNmYjRjOGZhNDI4Zjlm
14
- ZjFhYTU2Mjg0NTM4ZTViZGRlOTM1NDFhZjlkZWI1NzU0NjEyNzVmM2YwNDcz
15
- YzZhY2VlNDZkYjViZTQ5NDBjNmRlN2U3MTEzMGY0MGMyMmUyMDg=
13
+ MjU3MDgxZDg3YzE5NzNkNzZmY2VjNDcwMDc4NjU5M2EyMGIxMDI3ZWFlMjRj
14
+ OTNjZGZkODY3ZDNjZDc2M2I1Y2VhZjAwZjEwZDJiYzM1YTc1YzIwNTA2NTJl
15
+ ZTkzNmYzN2EwYzQwZGU4MWI4ZjkyOTcyYWIxMjA3NjA3YzQwMWI=
@@ -12,37 +12,44 @@ No relation to author present.
12
12
  * rake db:migrate
13
13
  * rails g kblog # creates kblog_init.rb in config/initializers
14
14
  * add the engine to route.rb:
15
-
16
- <tt>mount Kblog::Engine => "/kblog"</tt>
15
+
16
+
17
+ # routes.rb
18
+ mount Kblog::Engine => "/kblog"
17
19
 
18
20
  * perhaps add provided css to your layoutfile:
19
21
 
20
- <tt><%= stylesheet_link_tag 'kblog/articles', :media => "all" %></tt>
21
-
22
- adopt config/initializer/kblog_init.rb:
23
22
 
24
- [role-based authentication] role-based rights to create/alter blog-articles
25
- user_class must respond_to :roles - and each role
26
- tring representation role.to_s == Kblog.auth_role
27
- expects *current_user* beeing available in views and controller
23
+ <%= stylesheet_link_tag 'kblog/articles', :media => "all" %>
28
24
 
29
- <tt>Kblog.auth_type = 'role'</tt>
30
25
 
31
- <tt>Kblog.auth_role = 'blogger' # role needed to alter blogs</tt>
26
+ adopt config/initializer/kblog_init.rb:
32
27
 
33
- [basic-auth] makes use of simple http-basic auth.
34
- configure with desired name/passwword
28
+ <b>role-based authentication</b>:: role-based rights to create/alter blog-articles user_class must respond_to :roles - and each roles string representation <tt>role.to_s == Kblog.auth_role</tt> expects *current_user* beeing available in views and controller
35
29
 
36
- <tt>Kblog.auth_type == 'basic'</tt>
37
30
 
38
- <tt>Kblog.authname = 'blogger'</tt>
31
+ # config/initializer/kblog_init.rb
32
+ Kblog.auth_type = 'role'
33
+ Kblog.auth_role = 'blogger' # role needed to alter blogs
39
34
 
40
- <tt>Kblog.authpassword = 'changeme'</tt>
35
+ <b>basic-auth</b>:: makes use of simple http-basic auth. configure with desired name/passwword
36
+
37
+
38
+ # config/initializer/kblog_init.rb
39
+ Kblog.auth_type == 'basic'
40
+ Kblog.authname = 'blogger'
41
+ Kblog.authpassword = 'changeme'
41
42
 
42
43
  == usage
43
44
 
44
45
  * add helper
45
- <tt><%= display_latest_articles(num=1) %></tt> to your views
46
+
47
+ use it for displaying <num> articles.
48
+ if argument <truncate> is greater than 0 - blog-text will be truncated after <truncate> chars
49
+
50
+ <%= display_latest_articles(num,truncate=0) %>
51
+
52
+ to your views
46
53
  * if mounted to /kblog visit index: /kblog/articles -
47
54
 
48
55
 
@@ -9,6 +9,7 @@ $border: #C0C0C0;
9
9
  $shadow: $border / 1;
10
10
  $smaller: 0.8em;
11
11
 
12
+
12
13
  @mixin rounded-well {
13
14
  padding: $margin;
14
15
  margin: $margin 0 0 0;
@@ -21,8 +22,12 @@ $smaller: 0.8em;
21
22
  box-shadow: 2px 2px 2px 2px $shadow;
22
23
  }
23
24
 
25
+
24
26
  .kblog {
25
27
  font-family:Verdana, Arial, Helvetika;
28
+ .slogan {
29
+ color: $border/3;
30
+ }
26
31
  padding: 0 50px 0 50px;
27
32
  .pagination-links {
28
33
  text-align: center;
@@ -2,16 +2,14 @@ require_dependency "kblog/application_controller"
2
2
 
3
3
  module Kblog
4
4
  class ArticlesController < ::ApplicationController
5
- layout 'kblog/kblog'
6
- before_filter :set_blog_user
7
- before_filter :set_article, only: [:show, :edit, :update, :destroy]
8
- before_filter :authenticate, only: [:edit, :update, :create, :destroy]
9
-
10
- if Kblog.auth_type == 'basic'
11
- http_basic_authenticate_with :name => Kblog.authname, :password => Kblog.authpassword, :except => [:index,:show]
12
- end
13
-
14
- # GET /articles
5
+
6
+ layout 'kblog/kblog'
7
+
8
+ before_filter :set_blog_user
9
+ before_filter :set_article, only: [:show, :edit, :update, :destroy]
10
+ before_filter :authenticate, only: [:edit, :update, :create, :destroy]
11
+
12
+ # GET /articles
15
13
  def index
16
14
  @articles = Article.order("created_at DESC").paginate(:page => params[:page], :per_page => 3)
17
15
  end
@@ -71,12 +69,13 @@ module Kblog
71
69
  # Never trust parameters from the scary internet, only allow the white list through.
72
70
  def article_params
73
71
  params[:article]
74
- #params.require(:article).permit(:title, :content)
75
72
  end
76
73
 
77
74
  def authenticate
78
75
  if Kblog.auth_type == 'basic'
79
- http_basic_authenticate_with :name => Kblog.authname, :password => Kblog.authpassword, :except => [:index,:show]
76
+ authenticate_or_request_with_http_basic("Kblog-#{Kblog::VERSION}") do |name,pass|
77
+ name == Kblog.authname && pass == Kblog.authpassword
78
+ end
80
79
  end
81
80
  if Kblog.auth_type == 'role'
82
81
  unless Kblog::Article.user_rights(current_user)
@@ -1,9 +1,20 @@
1
1
  module Kblog
2
2
  module ArticlesHelper
3
-
4
- def display_latest_articles(num=1)
5
- articles = Article.order('created_at DESC').limit(num)
6
- render(:partial => 'kblog/articles/article', :collection => articles)
3
+
4
+
5
+ # renders :num: articles
6
+ # if limit is given an greater than 0
7
+ # resulting articles will be truncated after
8
+ # :limit: chars
9
+ #
10
+ def display_latest_articles(num,limit=0)
11
+ truncate = limit > 0 ? limit : nil
12
+ render(:partial => 'kblog/articles/article', :collection => limit_articles(num), :locals => { :limit => truncate} )
7
13
  end
14
+
15
+ def limit_articles(num=1)
16
+ Article.order('created_at DESC').limit(num)
17
+ end
18
+
8
19
  end
9
20
  end
@@ -1,3 +1,4 @@
1
+ <% limit = limit || false %>
1
2
  <article class="kblog-article">
2
3
  <aside class="kblog-created">
3
4
  <%= localize(article.created_at, format: :long) %>
@@ -5,12 +6,16 @@
5
6
  <h2><%= article.title %></h2>
6
7
 
7
8
  <div class="kblog-content">
8
- <%= textilize(article.content).html_safe %>
9
+ <% if limit %>
10
+ <%= textilize(truncate(article.content, :length => limit, :omission => "... <em>#{link_to('continued', kblog.article_path(article))}</em> ")).html_safe %>
11
+ <% else %>
12
+ <%= textilize(article.content).html_safe %>
13
+ <% end %>
9
14
  </div>
10
15
  <% if defined?(current_user) && Kblog::Article.user_rights(current_user) %>
11
- <div class="kblog-links">
12
- <%= link_to 'Edit', kblog.edit_article_path(article) %> |
13
- <%= link_to 'Destroy', kblog.article_path(article), :confirm => 'Are you sure?', :method => :delete %>
14
- </div>
16
+ <div class="kblog-links">
17
+ <%= link_to 'Edit', kblog.edit_article_path(article) %> |
18
+ <%= link_to 'Destroy', kblog.article_path(article), :confirm => 'Are you sure?', :method => :delete %>
19
+ </div>
15
20
  <% end %>
16
21
  </article>
@@ -1,5 +1,4 @@
1
1
  <section class="kblog">
2
- <h1><%= Kblog.blog_title %></h1>
3
2
  <%= render(:partial => 'article', :collection => @articles) %>
4
3
  <div class="pagination-links">
5
4
  <%= will_paginate(@articles) %>
@@ -1,3 +1,6 @@
1
1
  <section class="kblog">
2
- <%= render(:partial => 'article', :locals => { :article => @article} ) %>
2
+ <%= render(:partial => 'article', :locals => { :article => @article, :limit => false} ) %>
3
+ <div class="kblog-links">
4
+ <%= link_to("blog", kblog.articles_path) %>
5
+ </div>
3
6
  </section>
@@ -8,6 +8,8 @@
8
8
  </head>
9
9
  <body>
10
10
 
11
+ <h1 class="kblog slogan"><%= Kblog.blog_title %></h1>
12
+
11
13
  <%= yield %>
12
14
 
13
15
  </body>
@@ -1,3 +1,3 @@
1
1
  module Kblog
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -12,7 +12,7 @@
12
12
  <%= yield %>
13
13
 
14
14
  <div id="testing">
15
- <%= display_latest_articles(1) %>
15
+ <%= display_latest_articles(1, 200) %>
16
16
  </div>
17
17
  </body>
18
18
  </html>
@@ -12,15 +12,15 @@ Kblog.user_class = 'User' # class of blog-author
12
12
  # string representation role.to_s == Kblog.auth_role #
13
13
  #######################################################
14
14
 
15
- Kblog.auth_type = 'role'
16
- Kblog.auth_role = 'blogger' # role needed to alter blogs
15
+ #Kblog.auth_type = 'role'
16
+ #Kblog.auth_role = 'blogger' # role needed to alter blogs
17
17
 
18
18
  #########################################################
19
19
  # http-basic-auth #
20
20
  #########################################################
21
- #Kblog.auth_type = 'basic'
22
- #Kblog.authname = 'blogger'
23
- #Kblog.authpassword = 'changeme'
21
+ Kblog.auth_type = 'basic'
22
+ Kblog.authname = 'blogger'
23
+ Kblog.authpassword = 'changeme'
24
24
 
25
25
  ActiveSupport.on_load :action_controller do
26
26
  helper Kblog::ArticlesHelper
@@ -9539,3 +9539,1723 @@ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9539
9539
 
9540
9540
  Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-07 18:20:50 +0100
9541
9541
  Served asset /kblog/application.js - 304 Not Modified (1ms)
9542
+
9543
+
9544
+ Started GET "/" for 127.0.0.1 at 2013-03-11 17:30:12 +0100
9545
+ Connecting to database specified by database.yml
9546
+
9547
+ ActionController::RoutingError (No route matches [GET] "/"):
9548
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
9549
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
9550
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
9551
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
9552
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
9553
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
9554
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
9555
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
9556
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
9557
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
9558
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
9559
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
9560
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
9561
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
9562
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
9563
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
9564
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
9565
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
9566
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
9567
+ /usr/local/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
9568
+
9569
+
9570
+ Rendered /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.8ms)
9571
+
9572
+
9573
+ Started GET "/users" for 127.0.0.1 at 2013-03-11 17:30:17 +0100
9574
+ Processing by UsersController#index as HTML
9575
+ User Load (17.9ms) SELECT "users".* FROM "users" 
9576
+ Rendered users/index.html.erb within layouts/application (2.5ms)
9577
+ Compiled scaffold.css (0ms) (pid 13786)
9578
+ Compiled users.css (0ms) (pid 13786)
9579
+ Compiled application.css (13ms) (pid 13786)
9580
+ Compiled kblog/articles.css (56ms) (pid 13786)
9581
+ Compiled jquery.js (1ms) (pid 13786)
9582
+ Compiled jquery_ujs.js (0ms) (pid 13786)
9583
+ Compiled users.js (0ms) (pid 13786)
9584
+ Compiled application.js (57ms) (pid 13786)
9585
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
9586
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (42.2ms)
9587
+ Completed 200 OK in 346ms (Views: 289.7ms | ActiveRecord: 49.2ms)
9588
+
9589
+
9590
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9591
+ Served asset /application.css - 200 OK (4ms)
9592
+
9593
+
9594
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9595
+ Served asset /kblog/articles.css - 200 OK (6ms)
9596
+
9597
+
9598
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9599
+ Served asset /users.css - 200 OK (1ms)
9600
+
9601
+
9602
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9603
+ Served asset /scaffold.css - 200 OK (1ms)
9604
+
9605
+
9606
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9607
+ Served asset /jquery_ujs.js - 200 OK (1ms)
9608
+
9609
+
9610
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9611
+ Served asset /jquery.js - 200 OK (2ms)
9612
+
9613
+
9614
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9615
+ Served asset /users.js - 200 OK (1ms)
9616
+
9617
+
9618
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-11 17:30:18 +0100
9619
+ Served asset /application.js - 200 OK (5ms)
9620
+
9621
+
9622
+ Started GET "/users" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9623
+ Processing by UsersController#index as HTML
9624
+ User Load (0.2ms) SELECT "users".* FROM "users" 
9625
+ Rendered users/index.html.erb within layouts/application (1.4ms)
9626
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
9627
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (6.5ms)
9628
+ Completed 200 OK in 16ms (Views: 14.5ms | ActiveRecord: 0.5ms)
9629
+
9630
+
9631
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9632
+ Served asset /application.css - 304 Not Modified (0ms)
9633
+
9634
+
9635
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9636
+ Served asset /scaffold.css - 304 Not Modified (0ms)
9637
+
9638
+
9639
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9640
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9641
+
9642
+
9643
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9644
+ Served asset /users.css - 304 Not Modified (0ms)
9645
+
9646
+
9647
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9648
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9649
+
9650
+
9651
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9652
+ Served asset /users.js - 304 Not Modified (0ms)
9653
+
9654
+
9655
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9656
+ Served asset /jquery.js - 304 Not Modified (0ms)
9657
+
9658
+
9659
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:31 +0100
9660
+ Served asset /application.js - 304 Not Modified (1ms)
9661
+
9662
+
9663
+ Started GET "/kblog/articles/8" for 127.0.0.1 at 2013-03-11 17:31:38 +0100
9664
+ Processing by Kblog::ArticlesController#show as HTML
9665
+ Parameters: {"id"=>"8"}
9666
+ Kblog::ArticlesController#set_blog_user - start
9667
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "8"]]
9668
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (1.7ms)
9669
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (2.8ms)
9670
+ Compiled kblog/application.css (1ms) (pid 13786)
9671
+ Compiled kblog/articles.js (0ms) (pid 13786)
9672
+ Compiled kblog/application.js (11ms) (pid 13786)
9673
+ Completed 200 OK in 84ms (Views: 81.9ms | ActiveRecord: 0.2ms)
9674
+
9675
+
9676
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:38 +0100
9677
+ Served asset /kblog/application.css - 200 OK (7ms)
9678
+
9679
+
9680
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:38 +0100
9681
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9682
+
9683
+
9684
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:38 +0100
9685
+ Served asset /jquery.js - 304 Not Modified (0ms)
9686
+
9687
+
9688
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:38 +0100
9689
+ Served asset /kblog/application.js - 200 OK (10ms)
9690
+
9691
+
9692
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:38 +0100
9693
+ Served asset /kblog/articles.js - 200 OK (2ms)
9694
+
9695
+
9696
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:38 +0100
9697
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9698
+
9699
+
9700
+ Started GET "/kblog/articles/8" for 127.0.0.1 at 2013-03-11 17:31:46 +0100
9701
+ Processing by Kblog::ArticlesController#show as HTML
9702
+ Parameters: {"id"=>"8"}
9703
+ Kblog::ArticlesController#set_blog_user - start
9704
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "8"]]
9705
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (0.9ms)
9706
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (1.7ms)
9707
+ Completed 200 OK in 8ms (Views: 6.2ms | ActiveRecord: 0.1ms)
9708
+
9709
+
9710
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:46 +0100
9711
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
9712
+
9713
+
9714
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:46 +0100
9715
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9716
+
9717
+
9718
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:46 +0100
9719
+ Served asset /jquery.js - 304 Not Modified (4ms)
9720
+
9721
+
9722
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:46 +0100
9723
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9724
+
9725
+
9726
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:46 +0100
9727
+ Served asset /kblog/articles.js - 304 Not Modified (1ms)
9728
+
9729
+
9730
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:46 +0100
9731
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
9732
+
9733
+
9734
+ Started GET "/kblog/articles/8" for 127.0.0.1 at 2013-03-11 17:31:47 +0100
9735
+ Processing by Kblog::ArticlesController#show as HTML
9736
+ Parameters: {"id"=>"8"}
9737
+ Kblog::ArticlesController#set_blog_user - start
9738
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "8"]]
9739
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (0.7ms)
9740
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (1.4ms)
9741
+ Completed 200 OK in 7ms (Views: 5.7ms | ActiveRecord: 0.1ms)
9742
+
9743
+
9744
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:48 +0100
9745
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
9746
+
9747
+
9748
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:48 +0100
9749
+ Served asset /kblog/articles.css - 304 Not Modified (2ms)
9750
+
9751
+
9752
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:48 +0100
9753
+ Served asset /jquery.js - 304 Not Modified (0ms)
9754
+
9755
+
9756
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:48 +0100
9757
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9758
+
9759
+
9760
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:48 +0100
9761
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9762
+
9763
+
9764
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:48 +0100
9765
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
9766
+
9767
+
9768
+ Started GET "/kblog/articles/8" for 127.0.0.1 at 2013-03-11 17:31:49 +0100
9769
+ Processing by Kblog::ArticlesController#show as HTML
9770
+ Parameters: {"id"=>"8"}
9771
+ Kblog::ArticlesController#set_blog_user - start
9772
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "8"]]
9773
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (0.7ms)
9774
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (1.3ms)
9775
+ Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.1ms)
9776
+
9777
+
9778
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:49 +0100
9779
+ Served asset /kblog/application.css - 304 Not Modified (38ms)
9780
+
9781
+
9782
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 17:31:49 +0100
9783
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9784
+
9785
+
9786
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:49 +0100
9787
+ Served asset /kblog/application.js - 304 Not Modified (6ms)
9788
+
9789
+
9790
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:49 +0100
9791
+ Served asset /jquery.js - 304 Not Modified (0ms)
9792
+
9793
+
9794
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:49 +0100
9795
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9796
+
9797
+
9798
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 17:31:49 +0100
9799
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9800
+
9801
+
9802
+ Started GET "/kblog/articles/8" for 127.0.0.1 at 2013-03-11 18:03:02 +0100
9803
+ Processing by Kblog::ArticlesController#show as HTML
9804
+ Parameters: {"id"=>"8"}
9805
+ Kblog::ArticlesController#set_blog_user - start
9806
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "8"]]
9807
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (0.9ms)
9808
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (1.7ms)
9809
+ Completed 200 OK in 8ms (Views: 6.8ms | ActiveRecord: 0.2ms)
9810
+
9811
+
9812
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 18:03:02 +0100
9813
+ Served asset /kblog/application.css - 304 Not Modified (2ms)
9814
+
9815
+
9816
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 18:03:02 +0100
9817
+ Served asset /jquery.js - 304 Not Modified (0ms)
9818
+
9819
+
9820
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 18:03:02 +0100
9821
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9822
+
9823
+
9824
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 18:03:02 +0100
9825
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9826
+
9827
+
9828
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 18:03:02 +0100
9829
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
9830
+
9831
+
9832
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 18:03:02 +0100
9833
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9834
+
9835
+
9836
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-11 19:07:31 +0100
9837
+ Processing by Kblog::ArticlesController#index as HTML
9838
+ Kblog::ArticlesController#set_blog_user - start
9839
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
9840
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles" 
9841
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (2.6ms)
9842
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (8.8ms)
9843
+ Completed 200 OK in 15ms (Views: 13.6ms | ActiveRecord: 0.5ms)
9844
+
9845
+
9846
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:31 +0100
9847
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
9848
+
9849
+
9850
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:31 +0100
9851
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9852
+
9853
+
9854
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:31 +0100
9855
+ Served asset /jquery.js - 304 Not Modified (0ms)
9856
+
9857
+
9858
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:31 +0100
9859
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9860
+
9861
+
9862
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:31 +0100
9863
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9864
+
9865
+
9866
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:31 +0100
9867
+ Served asset /kblog/application.js - 304 Not Modified (3ms)
9868
+
9869
+
9870
+ Started GET "/kblog/articles/8" for 127.0.0.1 at 2013-03-11 19:07:37 +0100
9871
+ Processing by Kblog::ArticlesController#show as HTML
9872
+ Parameters: {"id"=>"8"}
9873
+ Kblog::ArticlesController#set_blog_user - start
9874
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "8"]]
9875
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (0.8ms)
9876
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (1.7ms)
9877
+ Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.1ms)
9878
+
9879
+
9880
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:38 +0100
9881
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
9882
+
9883
+
9884
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:38 +0100
9885
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9886
+
9887
+
9888
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:38 +0100
9889
+ Served asset /jquery.js - 304 Not Modified (2ms)
9890
+
9891
+
9892
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:38 +0100
9893
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9894
+
9895
+
9896
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:38 +0100
9897
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9898
+
9899
+
9900
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:38 +0100
9901
+ Served asset /kblog/application.js - 304 Not Modified (40ms)
9902
+
9903
+
9904
+ Started GET "/kblog/articles/8" for 127.0.0.1 at 2013-03-11 19:07:39 +0100
9905
+ Processing by Kblog::ArticlesController#show as HTML
9906
+ Parameters: {"id"=>"8"}
9907
+ Kblog::ArticlesController#set_blog_user - start
9908
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "8"]]
9909
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (0.9ms)
9910
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (1.6ms)
9911
+ Completed 200 OK in 8ms (Views: 6.4ms | ActiveRecord: 0.1ms)
9912
+
9913
+
9914
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:39 +0100
9915
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
9916
+
9917
+
9918
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:39 +0100
9919
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9920
+
9921
+
9922
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:40 +0100
9923
+ Served asset /jquery.js - 304 Not Modified (0ms)
9924
+
9925
+
9926
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:40 +0100
9927
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9928
+
9929
+
9930
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:40 +0100
9931
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
9932
+
9933
+
9934
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:40 +0100
9935
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9936
+
9937
+
9938
+ Started GET "/kblog/articles/" for 127.0.0.1 at 2013-03-11 19:07:42 +0100
9939
+ Processing by Kblog::ArticlesController#index as HTML
9940
+ Kblog::ArticlesController#set_blog_user - start
9941
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
9942
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles" 
9943
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (1.8ms)
9944
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (6.2ms)
9945
+ Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.4ms)
9946
+
9947
+
9948
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:42 +0100
9949
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
9950
+
9951
+
9952
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:42 +0100
9953
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9954
+
9955
+
9956
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:42 +0100
9957
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
9958
+
9959
+
9960
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:42 +0100
9961
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9962
+
9963
+
9964
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:42 +0100
9965
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
9966
+
9967
+
9968
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:42 +0100
9969
+ Served asset /jquery.js - 304 Not Modified (0ms)
9970
+
9971
+
9972
+ Started GET "/kblog/?page=2" for 127.0.0.1 at 2013-03-11 19:07:44 +0100
9973
+ Processing by Kblog::ArticlesController#index as HTML
9974
+ Parameters: {"page"=>"2"}
9975
+ Kblog::ArticlesController#set_blog_user - start
9976
+ Kblog::Article Load (1.1ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 3
9977
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles" 
9978
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (1.7ms)
9979
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (6.9ms)
9980
+ Completed 200 OK in 12ms (Views: 10.4ms | ActiveRecord: 1.3ms)
9981
+
9982
+
9983
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:44 +0100
9984
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
9985
+
9986
+
9987
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:44 +0100
9988
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
9989
+
9990
+
9991
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:44 +0100
9992
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
9993
+
9994
+
9995
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:44 +0100
9996
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
9997
+
9998
+
9999
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:44 +0100
10000
+ Served asset /jquery.js - 304 Not Modified (0ms)
10001
+
10002
+
10003
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:44 +0100
10004
+ Served asset /kblog/application.js - 304 Not Modified (7ms)
10005
+
10006
+
10007
+ Started GET "/kblog/?page=3" for 127.0.0.1 at 2013-03-11 19:07:45 +0100
10008
+ Processing by Kblog::ArticlesController#index as HTML
10009
+ Parameters: {"page"=>"3"}
10010
+ Kblog::ArticlesController#set_blog_user - start
10011
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 6
10012
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (0.9ms)
10013
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (3.7ms)
10014
+ Completed 200 OK in 9ms (Views: 8.2ms | ActiveRecord: 0.2ms)
10015
+
10016
+
10017
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:45 +0100
10018
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10019
+
10020
+
10021
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-11 19:07:45 +0100
10022
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10023
+
10024
+
10025
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:45 +0100
10026
+ Served asset /jquery.js - 304 Not Modified (0ms)
10027
+
10028
+
10029
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:45 +0100
10030
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10031
+
10032
+
10033
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:45 +0100
10034
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10035
+
10036
+
10037
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-11 19:07:45 +0100
10038
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10039
+
10040
+
10041
+ Started GET "/" for 127.0.0.1 at 2013-03-13 14:54:22 +0100
10042
+ Connecting to database specified by database.yml
10043
+
10044
+ ActionController::RoutingError (No route matches [GET] "/"):
10045
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
10046
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10047
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
10048
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
10049
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
10050
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
10051
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10052
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10053
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10054
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10055
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10056
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
10057
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
10058
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
10059
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10060
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
10061
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10062
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10063
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10064
+ /usr/local/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10065
+
10066
+
10067
+ Rendered /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.7ms)
10068
+
10069
+
10070
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:54:26 +0100
10071
+ Processing by Kblog::ArticlesController#index as HTML
10072
+ Kblog::ArticlesController#set_blog_user - start
10073
+ Kblog::Article Load (22.1ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10074
+  (0.2ms) SELECT COUNT(*) FROM "kblog_articles"
10075
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (102.8ms)
10076
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (141.7ms)
10077
+ Compiled kblog/articles.css (82ms) (pid 4843)
10078
+ Compiled kblog/application.css (0ms) (pid 4843)
10079
+ Completed 200 OK in 371ms (Views: 345.1ms | ActiveRecord: 24.4ms)
10080
+
10081
+
10082
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:54:27 +0100
10083
+ Served asset /kblog/application.css - 304 Not Modified (2ms)
10084
+
10085
+
10086
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:54:27 +0100
10087
+ Served asset /kblog/articles.css - 200 OK (2ms)
10088
+
10089
+
10090
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:27 +0100
10091
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
10092
+
10093
+
10094
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:27 +0100
10095
+ Served asset /kblog/application.js - 304 Not Modified (6ms)
10096
+
10097
+
10098
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:27 +0100
10099
+ Served asset /kblog/articles.js - 304 Not Modified (31ms)
10100
+
10101
+
10102
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:27 +0100
10103
+ Served asset /jquery.js - 304 Not Modified (2ms)
10104
+
10105
+
10106
+ Started GET "/kblog/articles/new" for 127.0.0.1 at 2013-03-13 14:54:30 +0100
10107
+ Processing by Kblog::ArticlesController#new as HTML
10108
+ Kblog::ArticlesController#set_blog_user - start
10109
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_form.html.erb (3.6ms)
10110
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/new.html.erb within layouts/kblog/kblog (5.1ms)
10111
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
10112
+
10113
+
10114
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:54:30 +0100
10115
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10116
+
10117
+
10118
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:54:30 +0100
10119
+ Served asset /kblog/articles.css - 304 Not Modified (2ms)
10120
+
10121
+
10122
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:30 +0100
10123
+ Served asset /kblog/application.js - 304 Not Modified (2ms)
10124
+
10125
+
10126
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:30 +0100
10127
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10128
+
10129
+
10130
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:30 +0100
10131
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10132
+
10133
+
10134
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:54:30 +0100
10135
+ Served asset /jquery.js - 304 Not Modified (1ms)
10136
+
10137
+
10138
+ Started POST "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:54:41 +0100
10139
+ Processing by Kblog::ArticlesController#create as HTML
10140
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hRyKDhEU+srXC8yXOuRDIxYsOrqgIojV3L+5PEBX0Cs=", "article"=>{"title"=>"tis is ", "content"=>"test"}, "commit"=>"Create Article"}
10141
+ Kblog::ArticlesController#set_blog_user - start
10142
+ Filter chain halted as :authenticate rendered or redirected
10143
+ Completed 401 Unauthorized in 1ms (ActiveRecord: 0.0ms)
10144
+
10145
+
10146
+ Started POST "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:55:00 +0100
10147
+ Processing by Kblog::ArticlesController#create as HTML
10148
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hRyKDhEU+srXC8yXOuRDIxYsOrqgIojV3L+5PEBX0Cs=", "article"=>{"title"=>"tis is ", "content"=>"test"}, "commit"=>"Create Article"}
10149
+ Kblog::ArticlesController#set_blog_user - start
10150
+  (0.1ms) begin transaction
10151
+ SQL (676.7ms) INSERT INTO "kblog_articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "test"], ["created_at", Wed, 13 Mar 2013 13:55:00 UTC +00:00], ["title", "tis is "], ["updated_at", Wed, 13 Mar 2013 13:55:00 UTC +00:00]]
10152
+  (336.1ms) commit transaction
10153
+ Redirected to http://localhost:3000/kblog/articles/9
10154
+ Completed 302 Found in 1017ms (ActiveRecord: 1012.9ms)
10155
+
10156
+
10157
+ Started GET "/kblog/articles/9" for 127.0.0.1 at 2013-03-13 14:55:01 +0100
10158
+ Processing by Kblog::ArticlesController#show as HTML
10159
+ Parameters: {"id"=>"9"}
10160
+ Kblog::ArticlesController#set_blog_user - start
10161
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "9"]]
10162
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (1.9ms)
10163
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (3.5ms)
10164
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.3ms)
10165
+
10166
+
10167
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:01 +0100
10168
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10169
+
10170
+
10171
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:01 +0100
10172
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10173
+
10174
+
10175
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:01 +0100
10176
+ Served asset /jquery.js - 304 Not Modified (0ms)
10177
+
10178
+
10179
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:01 +0100
10180
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10181
+
10182
+
10183
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:01 +0100
10184
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10185
+
10186
+
10187
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:01 +0100
10188
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10189
+
10190
+
10191
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:55:04 +0100
10192
+ Processing by Kblog::ArticlesController#index as HTML
10193
+ Kblog::ArticlesController#set_blog_user - start
10194
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10195
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles"
10196
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.4ms)
10197
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (7.3ms)
10198
+ Completed 200 OK in 13ms (Views: 11.9ms | ActiveRecord: 0.4ms)
10199
+
10200
+
10201
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:04 +0100
10202
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10203
+
10204
+
10205
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:04 +0100
10206
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10207
+
10208
+
10209
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:04 +0100
10210
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10211
+
10212
+
10213
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:04 +0100
10214
+ Served asset /jquery.js - 304 Not Modified (1ms)
10215
+
10216
+
10217
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:04 +0100
10218
+ Served asset /kblog/application.js - 304 Not Modified (2ms)
10219
+
10220
+
10221
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:04 +0100
10222
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10223
+
10224
+
10225
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:55:28 +0100
10226
+ Connecting to database specified by database.yml
10227
+ Processing by Kblog::ArticlesController#index as HTML
10228
+ Kblog::ArticlesController#set_blog_user - start
10229
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10230
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles"
10231
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (12.5ms)
10232
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (58.2ms)
10233
+ Completed 200 OK in 110ms (Views: 106.0ms | ActiveRecord: 2.5ms)
10234
+
10235
+
10236
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:29 +0100
10237
+ Served asset /kblog/application.css - 304 Not Modified (36ms)
10238
+
10239
+
10240
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:29 +0100
10241
+ Served asset /kblog/articles.css - 304 Not Modified (2ms)
10242
+
10243
+
10244
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:29 +0100
10245
+ Served asset /jquery.js - 304 Not Modified (2ms)
10246
+
10247
+
10248
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:29 +0100
10249
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
10250
+
10251
+
10252
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:29 +0100
10253
+ Served asset /kblog/articles.js - 304 Not Modified (2ms)
10254
+
10255
+
10256
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:29 +0100
10257
+ Served asset /kblog/application.js - 304 Not Modified (7ms)
10258
+
10259
+
10260
+ Started DELETE "/kblog/articles/7" for 127.0.0.1 at 2013-03-13 14:55:33 +0100
10261
+ Processing by Kblog::ArticlesController#destroy as HTML
10262
+ Parameters: {"authenticity_token"=>"hRyKDhEU+srXC8yXOuRDIxYsOrqgIojV3L+5PEBX0Cs=", "id"=>"7"}
10263
+ Kblog::ArticlesController#set_blog_user - start
10264
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "7"]]
10265
+  (0.1ms) begin transaction
10266
+ SQL (41.2ms) DELETE FROM "kblog_articles" WHERE "kblog_articles"."id" = ? [["id", 7]]
10267
+  (463.4ms) commit transaction
10268
+ Redirected to http://localhost:3000/kblog/articles
10269
+ Completed 302 Found in 509ms (ActiveRecord: 504.9ms)
10270
+
10271
+
10272
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:55:34 +0100
10273
+ Processing by Kblog::ArticlesController#index as HTML
10274
+ Kblog::ArticlesController#set_blog_user - start
10275
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10276
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles"
10277
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (5.2ms)
10278
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (9.2ms)
10279
+ Completed 200 OK in 15ms (Views: 14.2ms | ActiveRecord: 0.4ms)
10280
+
10281
+
10282
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:34 +0100
10283
+ Served asset /kblog/application.css - 304 Not Modified (3ms)
10284
+
10285
+
10286
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:34 +0100
10287
+ Served asset /jquery.js - 304 Not Modified (3ms)
10288
+
10289
+
10290
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:34 +0100
10291
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
10292
+
10293
+
10294
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:34 +0100
10295
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10296
+
10297
+
10298
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:34 +0100
10299
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10300
+
10301
+
10302
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:34 +0100
10303
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10304
+
10305
+
10306
+ Started GET "/kblog/articles/new" for 127.0.0.1 at 2013-03-13 14:55:39 +0100
10307
+ Processing by Kblog::ArticlesController#new as HTML
10308
+ Kblog::ArticlesController#set_blog_user - start
10309
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_form.html.erb (3.5ms)
10310
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/new.html.erb within layouts/kblog/kblog (4.9ms)
10311
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
10312
+
10313
+
10314
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:39 +0100
10315
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10316
+
10317
+
10318
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:39 +0100
10319
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
10320
+
10321
+
10322
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:39 +0100
10323
+ Served asset /jquery.js - 304 Not Modified (0ms)
10324
+
10325
+
10326
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:39 +0100
10327
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10328
+
10329
+
10330
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:39 +0100
10331
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10332
+
10333
+
10334
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:39 +0100
10335
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10336
+
10337
+
10338
+ Started POST "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:55:45 +0100
10339
+ Processing by Kblog::ArticlesController#create as HTML
10340
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hRyKDhEU+srXC8yXOuRDIxYsOrqgIojV3L+5PEBX0Cs=", "article"=>{"title"=>"asdfasdf", "content"=>"asdfasdf"}, "commit"=>"Create Article"}
10341
+ Kblog::ArticlesController#set_blog_user - start
10342
+  (0.1ms) begin transaction
10343
+ SQL (2.6ms) INSERT INTO "kblog_articles" ("content", "created_at", "title", "updated_at") VALUES (?, ?, ?, ?) [["content", "asdfasdf"], ["created_at", Wed, 13 Mar 2013 13:55:45 UTC +00:00], ["title", "asdfasdf"], ["updated_at", Wed, 13 Mar 2013 13:55:45 UTC +00:00]]
10344
+  (183.9ms) commit transaction
10345
+ Redirected to http://localhost:3000/kblog/articles/10
10346
+ Completed 302 Found in 191ms (ActiveRecord: 186.5ms)
10347
+
10348
+
10349
+ Started GET "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 14:55:46 +0100
10350
+ Processing by Kblog::ArticlesController#show as HTML
10351
+ Parameters: {"id"=>"10"}
10352
+ Kblog::ArticlesController#set_blog_user - start
10353
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
10354
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (1.8ms)
10355
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (3.2ms)
10356
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
10357
+
10358
+
10359
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:46 +0100
10360
+ Served asset /kblog/application.css - 304 Not Modified (2ms)
10361
+
10362
+
10363
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:46 +0100
10364
+ Served asset /jquery.js - 304 Not Modified (0ms)
10365
+
10366
+
10367
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:46 +0100
10368
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10369
+
10370
+
10371
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:46 +0100
10372
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10373
+
10374
+
10375
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:46 +0100
10376
+ Served asset /kblog/articles.js - 304 Not Modified (5ms)
10377
+
10378
+
10379
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:46 +0100
10380
+ Served asset /kblog/application.js - 304 Not Modified (2ms)
10381
+
10382
+
10383
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:55:48 +0100
10384
+ Processing by Kblog::ArticlesController#index as HTML
10385
+ Kblog::ArticlesController#set_blog_user - start
10386
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10387
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles"
10388
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.2ms)
10389
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (7.0ms)
10390
+ Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.4ms)
10391
+
10392
+
10393
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:48 +0100
10394
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10395
+
10396
+
10397
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:55:48 +0100
10398
+ Served asset /kblog/articles.css - 304 Not Modified (4ms)
10399
+
10400
+
10401
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:48 +0100
10402
+ Served asset /jquery.js - 304 Not Modified (0ms)
10403
+
10404
+
10405
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:48 +0100
10406
+ Served asset /kblog/articles.js - 304 Not Modified (4ms)
10407
+
10408
+
10409
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:48 +0100
10410
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10411
+
10412
+
10413
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:55:48 +0100
10414
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10415
+
10416
+
10417
+ Started GET "/kblog/articles/10/edit" for 127.0.0.1 at 2013-03-13 14:56:52 +0100
10418
+ Processing by Kblog::ArticlesController#edit as HTML
10419
+ Parameters: {"id"=>"10"}
10420
+ Kblog::ArticlesController#set_blog_user - start
10421
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
10422
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_form.html.erb (3.1ms)
10423
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/edit.html.erb within layouts/kblog/kblog (5.7ms)
10424
+ Completed 200 OK in 17ms (Views: 12.6ms | ActiveRecord: 0.2ms)
10425
+
10426
+
10427
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:56:52 +0100
10428
+ Served asset /kblog/application.css - 304 Not Modified (1ms)
10429
+
10430
+
10431
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:56:52 +0100
10432
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10433
+
10434
+
10435
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:56:52 +0100
10436
+ Served asset /jquery.js - 304 Not Modified (6ms)
10437
+
10438
+
10439
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:56:52 +0100
10440
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10441
+
10442
+
10443
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:56:52 +0100
10444
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10445
+
10446
+
10447
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:56:52 +0100
10448
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10449
+
10450
+
10451
+ Started PUT "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10452
+ Processing by Kblog::ArticlesController#update as HTML
10453
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hRyKDhEU+srXC8yXOuRDIxYsOrqgIojV3L+5PEBX0Cs=", "article"=>{"title"=>"Etiam lobortis luctus dui non mollis. Aliquam aliquet cras amet.", "content"=>"Vivamus rutrum, dolor vitae convallis accumsan, nisi lectus aliquam nisi, sed consectetur mi magna ac nisl. In hac habitasse platea dictumst. Nam a augue non nunc auctor dapibus. Suspendisse tempor rutrum sem, nec porta sem commodo sed. Sed at tortor sit amet urna consequat blandit. Praesent malesuada nunc ornare urna pellentesque in pellentesque justo amet.\r\nAliquam quis neque eu urna varius dapibus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras id augue purus, in porttitor velit. Maecenas nec arcu sem, ac feugiat purus! Quisque congue sem id magna pellentesque vestibulum. Curabitur sollicitudin mattis arcu, nec condimentum mauris porta eu. Nam pellentesque tristique ornare. Donec pretium nulla vitae quam blandit eu dictum est mattis. Fusce et egestas nunc. Curabitur posuere diam at arcu accumsan consectetur. Cras elementum porttitor dolor nec eleifend.\r\n\r\nMorbi ante lorem, pellentesque ac posuere eu, convallis id libero. Nullam porttitor laoreet massa eu gravida. Curabitur tempus nibh malesuada augue vehicula in suscipit felis sollicitudin. Morbi lacus tortor, sodales sit amet venenatis a, faucibus auctor urna. Aliquam augue tellus, vulputate et porta eu, dignissim vitae nulla. Morbi id erat diam. Phasellus eu nulla sapien.\r\n\r\nSuspendisse feugiat vestibulum mauris ac pellentesque. Fusce rutrum metus eget dui accumsan placerat. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse in odio a mi faucibus posuere! Morbi bibendum sodales elementum. Curabitur eu elit in tellus congue posuere. Vivamus feugiat, mi a pharetra volutpat, odio lorem dictum eros, scelerisque elementum elit nisi nec arcu. Sed in eros nec risus euismod rutrum. Donec vulputate magna nec felis interdum non dapibus diam rhoncus! Nunc tempus rutrum libero eget ultricies. Mauris id nibh neque. Ut feugiat, massa vitae sodales placerat, felis sem hendrerit enim, ut vestibulum odio libero vitae arcu.\r\n\r\nSuspendisse mauris arcu, rutrum at aliquam a, rutrum tempus quam. Aliquam vehicula, risus et congue eleifend, urna arcu viverra risus, vitae scelerisque tellus lacus quis mauris. Nunc enim risus, tempus ac sagittis in, malesuada ac urna. Aliquam erat volutpat. Nam laoreet placerat leo, in malesuada enim pretium vitae. Nulla vitae massa eu augue porta varius. Nunc urna sapien, rutrum quis pellentesque eu, imperdiet vel ligula. Vestibulum eget scelerisque nibh. Nulla malesuada, arcu vitae iaculis consectetur, libero turpis mollis augue, sed mollis tortor mi nec risus? Ut a lacus erat, in sodales mi!\r\n\r\nSed in dignissim magna. Proin scelerisque mi sed nulla bibendum ultrices. Phasellus at tempus ante. Morbi venenatis velit vel magna adipiscing euismod laoreet risus cursus. Nunc et leo nunc, et eleifend lorem. Nulla facilisi. Etiam nisl velit, pharetra id pulvinar eu, dignissim vitae diam. Cras tempus velit elit. Aliquam felis lacus, interdum quis scelerisque id, tincidunt vitae augue! Pellentesque sit amet vestibulum erat. Nulla facilisi. Nullam varius semper dapibus. Cras molestie cursus velit, vel feugiat augue faucibus sed. Sed ultrices orci eget leo convallis tristique vitae vitae nulla. In elit nibh; consequat dignissim sagittis non; dignissim id ipsum.\r\n"}, "commit"=>"Update Article", "id"=>"10"}
10454
+ Kblog::ArticlesController#set_blog_user - start
10455
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
10456
+  (0.1ms) begin transaction
10457
+  (0.8ms) UPDATE "kblog_articles" SET "title" = 'Etiam lobortis luctus dui non mollis. Aliquam aliquet cras amet.', "content" = 'Vivamus rutrum, dolor vitae convallis accumsan, nisi lectus aliquam nisi, sed consectetur mi magna ac nisl. In hac habitasse platea dictumst. Nam a augue non nunc auctor dapibus. Suspendisse tempor rutrum sem, nec porta sem commodo sed. Sed at tortor sit amet urna consequat blandit. Praesent malesuada nunc ornare urna pellentesque in pellentesque justo amet.
10458
+ Aliquam quis neque eu urna varius dapibus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Cras id augue purus, in porttitor velit. Maecenas nec arcu sem, ac feugiat purus! Quisque congue sem id magna pellentesque vestibulum. Curabitur sollicitudin mattis arcu, nec condimentum mauris porta eu. Nam pellentesque tristique ornare. Donec pretium nulla vitae quam blandit eu dictum est mattis. Fusce et egestas nunc. Curabitur posuere diam at arcu accumsan consectetur. Cras elementum porttitor dolor nec eleifend.
10459
+
10460
+ Morbi ante lorem, pellentesque ac posuere eu, convallis id libero. Nullam porttitor laoreet massa eu gravida. Curabitur tempus nibh malesuada augue vehicula in suscipit felis sollicitudin. Morbi lacus tortor, sodales sit amet venenatis a, faucibus auctor urna. Aliquam augue tellus, vulputate et porta eu, dignissim vitae nulla. Morbi id erat diam. Phasellus eu nulla sapien.
10461
+
10462
+ Suspendisse feugiat vestibulum mauris ac pellentesque. Fusce rutrum metus eget dui accumsan placerat. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Suspendisse in odio a mi faucibus posuere! Morbi bibendum sodales elementum. Curabitur eu elit in tellus congue posuere. Vivamus feugiat, mi a pharetra volutpat, odio lorem dictum eros, scelerisque elementum elit nisi nec arcu. Sed in eros nec risus euismod rutrum. Donec vulputate magna nec felis interdum non dapibus diam rhoncus! Nunc tempus rutrum libero eget ultricies. Mauris id nibh neque. Ut feugiat, massa vitae sodales placerat, felis sem hendrerit enim, ut vestibulum odio libero vitae arcu.
10463
+
10464
+ Suspendisse mauris arcu, rutrum at aliquam a, rutrum tempus quam. Aliquam vehicula, risus et congue eleifend, urna arcu viverra risus, vitae scelerisque tellus lacus quis mauris. Nunc enim risus, tempus ac sagittis in, malesuada ac urna. Aliquam erat volutpat. Nam laoreet placerat leo, in malesuada enim pretium vitae. Nulla vitae massa eu augue porta varius. Nunc urna sapien, rutrum quis pellentesque eu, imperdiet vel ligula. Vestibulum eget scelerisque nibh. Nulla malesuada, arcu vitae iaculis consectetur, libero turpis mollis augue, sed mollis tortor mi nec risus? Ut a lacus erat, in sodales mi!
10465
+
10466
+ Sed in dignissim magna. Proin scelerisque mi sed nulla bibendum ultrices. Phasellus at tempus ante. Morbi venenatis velit vel magna adipiscing euismod laoreet risus cursus. Nunc et leo nunc, et eleifend lorem. Nulla facilisi. Etiam nisl velit, pharetra id pulvinar eu, dignissim vitae diam. Cras tempus velit elit. Aliquam felis lacus, interdum quis scelerisque id, tincidunt vitae augue! Pellentesque sit amet vestibulum erat. Nulla facilisi. Nullam varius semper dapibus. Cras molestie cursus velit, vel feugiat augue faucibus sed. Sed ultrices orci eget leo convallis tristique vitae vitae nulla. In elit nibh; consequat dignissim sagittis non; dignissim id ipsum.
10467
+ ', "updated_at" = '2013-03-13 13:57:15.416531' WHERE "kblog_articles"."id" = 10
10468
+  (142.9ms) commit transaction
10469
+ Redirected to http://localhost:3000/kblog/articles/10
10470
+ Completed 302 Found in 150ms (ActiveRecord: 143.9ms)
10471
+
10472
+
10473
+ Started GET "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10474
+ Processing by Kblog::ArticlesController#show as HTML
10475
+ Parameters: {"id"=>"10"}
10476
+ Kblog::ArticlesController#set_blog_user - start
10477
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
10478
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.3ms)
10479
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (4.3ms)
10480
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.2ms)
10481
+
10482
+
10483
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10484
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10485
+
10486
+
10487
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10488
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10489
+
10490
+
10491
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10492
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10493
+
10494
+
10495
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10496
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10497
+
10498
+
10499
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10500
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10501
+
10502
+
10503
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:15 +0100
10504
+ Served asset /jquery.js - 304 Not Modified (1ms)
10505
+
10506
+
10507
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:57:20 +0100
10508
+ Processing by Kblog::ArticlesController#index as HTML
10509
+ Kblog::ArticlesController#set_blog_user - start
10510
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10511
+  (0.2ms) SELECT COUNT(*) FROM "kblog_articles"
10512
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (6.5ms)
10513
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (11.3ms)
10514
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.5ms)
10515
+
10516
+
10517
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:20 +0100
10518
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10519
+
10520
+
10521
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:20 +0100
10522
+ Served asset /jquery_ujs.js - 304 Not Modified (3ms)
10523
+
10524
+
10525
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:20 +0100
10526
+ Served asset /jquery.js - 304 Not Modified (0ms)
10527
+
10528
+
10529
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:20 +0100
10530
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10531
+
10532
+
10533
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:20 +0100
10534
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10535
+
10536
+
10537
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:20 +0100
10538
+ Served asset /kblog/application.js - 304 Not Modified (2ms)
10539
+
10540
+
10541
+ Started DELETE "/kblog/articles/9" for 127.0.0.1 at 2013-03-13 14:57:26 +0100
10542
+ Processing by Kblog::ArticlesController#destroy as HTML
10543
+ Parameters: {"authenticity_token"=>"hRyKDhEU+srXC8yXOuRDIxYsOrqgIojV3L+5PEBX0Cs=", "id"=>"9"}
10544
+ Kblog::ArticlesController#set_blog_user - start
10545
+ Kblog::Article Load (0.2ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "9"]]
10546
+  (0.1ms) begin transaction
10547
+ SQL (0.4ms) DELETE FROM "kblog_articles" WHERE "kblog_articles"."id" = ? [["id", 9]]
10548
+  (176.1ms) commit transaction
10549
+ Redirected to http://localhost:3000/kblog/articles
10550
+ Completed 302 Found in 180ms (ActiveRecord: 176.7ms)
10551
+
10552
+
10553
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 14:57:27 +0100
10554
+ Processing by Kblog::ArticlesController#index as HTML
10555
+ Kblog::ArticlesController#set_blog_user - start
10556
+ Kblog::Article Load (0.4ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10557
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles"
10558
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (41.3ms)
10559
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (45.9ms)
10560
+ Completed 200 OK in 52ms (Views: 50.6ms | ActiveRecord: 0.5ms)
10561
+
10562
+
10563
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:27 +0100
10564
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10565
+
10566
+
10567
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:27 +0100
10568
+ Served asset /jquery.js - 304 Not Modified (0ms)
10569
+
10570
+
10571
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:27 +0100
10572
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10573
+
10574
+
10575
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:27 +0100
10576
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10577
+
10578
+
10579
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:27 +0100
10580
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10581
+
10582
+
10583
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:27 +0100
10584
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10585
+
10586
+
10587
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10588
+ Processing by UsersController#index as HTML
10589
+ User Load (0.1ms) SELECT "users".* FROM "users" 
10590
+ Rendered users/index.html.erb within layouts/application (2.4ms)
10591
+ Kblog::Article Load (0.4ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
10592
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (21.7ms)
10593
+ Completed 200 OK in 82ms (Views: 74.2ms | ActiveRecord: 0.8ms)
10594
+
10595
+
10596
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10597
+ Served asset /application.css - 304 Not Modified (4ms)
10598
+
10599
+
10600
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10601
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10602
+
10603
+
10604
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10605
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10606
+
10607
+
10608
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10609
+ Served asset /jquery.js - 304 Not Modified (0ms)
10610
+
10611
+
10612
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10613
+ Served asset /users.css - 304 Not Modified (1ms)
10614
+
10615
+
10616
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10617
+ Served asset /scaffold.css - 304 Not Modified (1ms)
10618
+
10619
+
10620
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10621
+ Served asset /users.js - 304 Not Modified (1ms)
10622
+
10623
+
10624
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:38 +0100
10625
+ Served asset /application.js - 304 Not Modified (42ms)
10626
+
10627
+
10628
+ Started GET "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 14:57:42 +0100
10629
+ Processing by Kblog::ArticlesController#show as HTML
10630
+ Parameters: {"id"=>"10"}
10631
+ Kblog::ArticlesController#set_blog_user - start
10632
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
10633
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.7ms)
10634
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (4.8ms)
10635
+ Completed 200 OK in 12ms (Views: 10.8ms | ActiveRecord: 0.1ms)
10636
+
10637
+
10638
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:42 +0100
10639
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
10640
+
10641
+
10642
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 14:57:42 +0100
10643
+ Served asset /kblog/articles.css - 304 Not Modified (6ms)
10644
+
10645
+
10646
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:42 +0100
10647
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10648
+
10649
+
10650
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:42 +0100
10651
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10652
+
10653
+
10654
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:42 +0100
10655
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10656
+
10657
+
10658
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 14:57:42 +0100
10659
+ Served asset /jquery.js - 304 Not Modified (0ms)
10660
+
10661
+
10662
+ Started GET "/" for 127.0.0.1 at 2013-03-13 16:18:04 +0100
10663
+ Connecting to database specified by database.yml
10664
+
10665
+ ActionController::RoutingError (No route matches [GET] "/"):
10666
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
10667
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
10668
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
10669
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
10670
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
10671
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
10672
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
10673
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
10674
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
10675
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
10676
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
10677
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
10678
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
10679
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
10680
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
10681
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
10682
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
10683
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
10684
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
10685
+ /usr/local/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
10686
+
10687
+
10688
+ Rendered /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (2.5ms)
10689
+
10690
+
10691
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:18:12 +0100
10692
+ Processing by UsersController#index as HTML
10693
+ User Load (0.1ms) SELECT "users".* FROM "users" 
10694
+ Rendered users/index.html.erb within layouts/application (2.4ms)
10695
+ Compiled scaffold.css (0ms) (pid 8018)
10696
+ Compiled users.css (0ms) (pid 8018)
10697
+ Compiled application.css (13ms) (pid 8018)
10698
+ Compiled kblog/articles.css (24ms) (pid 8018)
10699
+ Compiled jquery.js (1ms) (pid 8018)
10700
+ Compiled jquery_ujs.js (0ms) (pid 8018)
10701
+ Compiled users.js (0ms) (pid 8018)
10702
+ Compiled application.js (29ms) (pid 8018)
10703
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
10704
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (46.2ms)
10705
+ Completed 200 OK in 276ms (Views: 236.6ms | ActiveRecord: 31.6ms)
10706
+
10707
+
10708
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10709
+ Served asset /application.css - 200 OK (4ms)
10710
+
10711
+
10712
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10713
+ Served asset /kblog/articles.css - 200 OK (4ms)
10714
+
10715
+
10716
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10717
+ Served asset /users.css - 200 OK (1ms)
10718
+
10719
+
10720
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10721
+ Served asset /users.js - 200 OK (1ms)
10722
+
10723
+
10724
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10725
+ Served asset /jquery.js - 200 OK (3ms)
10726
+
10727
+
10728
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10729
+ Served asset /scaffold.css - 304 Not Modified (1ms)
10730
+
10731
+
10732
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10733
+ Served asset /application.js - 200 OK (6ms)
10734
+
10735
+
10736
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:13 +0100
10737
+ Served asset /jquery_ujs.js - 200 OK (5ms)
10738
+
10739
+
10740
+ Started GET "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 16:18:22 +0100
10741
+ Processing by Kblog::ArticlesController#show as HTML
10742
+ Parameters: {"id"=>"10"}
10743
+ Kblog::ArticlesController#set_blog_user - start
10744
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
10745
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (4.1ms)
10746
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (6.0ms)
10747
+ Compiled kblog/application.css (1ms) (pid 8018)
10748
+ Compiled kblog/articles.js (0ms) (pid 8018)
10749
+ Compiled kblog/application.js (11ms) (pid 8018)
10750
+ Completed 200 OK in 89ms (Views: 86.6ms | ActiveRecord: 0.3ms)
10751
+
10752
+
10753
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:22 +0100
10754
+ Served asset /kblog/application.css - 200 OK (4ms)
10755
+
10756
+
10757
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:22 +0100
10758
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10759
+
10760
+
10761
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:22 +0100
10762
+ Served asset /jquery.js - 304 Not Modified (0ms)
10763
+
10764
+
10765
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:22 +0100
10766
+ Served asset /kblog/articles.js - 200 OK (3ms)
10767
+
10768
+
10769
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:22 +0100
10770
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10771
+
10772
+
10773
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:22 +0100
10774
+ Served asset /kblog/application.js - 200 OK (10ms)
10775
+
10776
+
10777
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 16:18:28 +0100
10778
+ Processing by Kblog::ArticlesController#index as HTML
10779
+ Kblog::ArticlesController#set_blog_user - start
10780
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
10781
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles" 
10782
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (6.7ms)
10783
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (12.4ms)
10784
+ Completed 200 OK in 19ms (Views: 17.9ms | ActiveRecord: 0.4ms)
10785
+
10786
+
10787
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:28 +0100
10788
+ Served asset /kblog/application.css - 304 Not Modified (3ms)
10789
+
10790
+
10791
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:28 +0100
10792
+ Served asset /jquery.js - 304 Not Modified (0ms)
10793
+
10794
+
10795
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:28 +0100
10796
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10797
+
10798
+
10799
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:28 +0100
10800
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
10801
+
10802
+
10803
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:28 +0100
10804
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10805
+
10806
+
10807
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:28 +0100
10808
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
10809
+
10810
+
10811
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10812
+ Processing by UsersController#index as HTML
10813
+ User Load (0.2ms) SELECT "users".* FROM "users"
10814
+ Rendered users/index.html.erb within layouts/application (1.1ms)
10815
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
10816
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (2.1ms)
10817
+ Completed 200 OK in 11ms (Views: 9.7ms | ActiveRecord: 0.5ms)
10818
+
10819
+
10820
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10821
+ Served asset /application.css - 304 Not Modified (1ms)
10822
+
10823
+
10824
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10825
+ Served asset /jquery.js - 304 Not Modified (0ms)
10826
+
10827
+
10828
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10829
+ Served asset /scaffold.css - 304 Not Modified (0ms)
10830
+
10831
+
10832
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10833
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10834
+
10835
+
10836
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10837
+ Served asset /users.css - 304 Not Modified (0ms)
10838
+
10839
+
10840
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10841
+ Served asset /users.js - 304 Not Modified (0ms)
10842
+
10843
+
10844
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10845
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10846
+
10847
+
10848
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:18:42 +0100
10849
+ Served asset /application.js - 304 Not Modified (1ms)
10850
+
10851
+
10852
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:28:41 +0100
10853
+ Connecting to database specified by database.yml
10854
+ Processing by UsersController#index as HTML
10855
+ User Load (0.1ms) SELECT "users".* FROM "users" 
10856
+ Rendered users/index.html.erb within layouts/application (33.0ms)
10857
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
10858
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (46.3ms)
10859
+ Completed 200 OK in 155ms (Views: 116.8ms | ActiveRecord: 30.8ms)
10860
+
10861
+
10862
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10863
+ Served asset /application.css - 200 OK (3ms)
10864
+
10865
+
10866
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10867
+ Served asset /users.css - 200 OK (36ms)
10868
+
10869
+
10870
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10871
+ Served asset /kblog/articles.css - 200 OK (2ms)
10872
+
10873
+
10874
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10875
+ Served asset /scaffold.css - 304 Not Modified (1ms)
10876
+
10877
+
10878
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10879
+ Served asset /jquery_ujs.js - 200 OK (1ms)
10880
+
10881
+
10882
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10883
+ Served asset /users.js - 200 OK (1ms)
10884
+
10885
+
10886
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10887
+ Served asset /jquery.js - 200 OK (3ms)
10888
+
10889
+
10890
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:28:42 +0100
10891
+ Served asset /application.js - 200 OK (5ms)
10892
+
10893
+
10894
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10895
+ Connecting to database specified by database.yml
10896
+ Processing by UsersController#index as HTML
10897
+ User Load (0.1ms) SELECT "users".* FROM "users" 
10898
+ Rendered users/index.html.erb within layouts/application (32.7ms)
10899
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
10900
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (46.3ms)
10901
+ Completed 200 OK in 154ms (Views: 116.4ms | ActiveRecord: 30.1ms)
10902
+
10903
+
10904
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10905
+ Served asset /application.css - 304 Not Modified (4ms)
10906
+
10907
+
10908
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10909
+ Served asset /users.css - 304 Not Modified (4ms)
10910
+
10911
+
10912
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10913
+ Served asset /scaffold.css - 304 Not Modified (38ms)
10914
+
10915
+
10916
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10917
+ Served asset /kblog/articles.css - 304 Not Modified (5ms)
10918
+
10919
+
10920
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10921
+ Served asset /jquery_ujs.js - 304 Not Modified (1ms)
10922
+
10923
+
10924
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10925
+ Served asset /jquery.js - 304 Not Modified (3ms)
10926
+
10927
+
10928
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10929
+ Served asset /users.js - 304 Not Modified (1ms)
10930
+
10931
+
10932
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:34:19 +0100
10933
+ Served asset /application.js - 304 Not Modified (5ms)
10934
+
10935
+
10936
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10937
+ Processing by UsersController#index as HTML
10938
+ User Load (0.2ms) SELECT "users".* FROM "users" 
10939
+ Rendered users/index.html.erb within layouts/application (1.4ms)
10940
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
10941
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (2.8ms)
10942
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 0.5ms)
10943
+
10944
+
10945
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10946
+ Served asset /application.css - 304 Not Modified (0ms)
10947
+
10948
+
10949
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10950
+ Served asset /users.css - 304 Not Modified (0ms)
10951
+
10952
+
10953
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10954
+ Served asset /scaffold.css - 304 Not Modified (0ms)
10955
+
10956
+
10957
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10958
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10959
+
10960
+
10961
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10962
+ Served asset /application.js - 304 Not Modified (2ms)
10963
+
10964
+
10965
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10966
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
10967
+
10968
+
10969
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10970
+ Served asset /users.js - 304 Not Modified (0ms)
10971
+
10972
+
10973
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:14 +0100
10974
+ Served asset /jquery.js - 304 Not Modified (0ms)
10975
+
10976
+
10977
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
10978
+ Processing by UsersController#index as HTML
10979
+ User Load (0.2ms) SELECT "users".* FROM "users" 
10980
+ Rendered users/index.html.erb within layouts/application (1.2ms)
10981
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
10982
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.9ms)
10983
+ Completed 200 OK in 15ms (Views: 13.8ms | ActiveRecord: 0.5ms)
10984
+
10985
+
10986
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
10987
+ Served asset /application.css - 304 Not Modified (0ms)
10988
+
10989
+
10990
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
10991
+ Served asset /scaffold.css - 304 Not Modified (0ms)
10992
+
10993
+
10994
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
10995
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
10996
+
10997
+
10998
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
10999
+ Served asset /users.css - 304 Not Modified (0ms)
11000
+
11001
+
11002
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
11003
+ Served asset /jquery.js - 304 Not Modified (0ms)
11004
+
11005
+
11006
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
11007
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
11008
+
11009
+
11010
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
11011
+ Served asset /users.js - 304 Not Modified (0ms)
11012
+
11013
+
11014
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:46 +0100
11015
+ Served asset /application.js - 304 Not Modified (1ms)
11016
+
11017
+
11018
+ Started GET "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 16:35:48 +0100
11019
+ Processing by Kblog::ArticlesController#show as HTML
11020
+ Parameters: {"id"=>"10"}
11021
+ Kblog::ArticlesController#set_blog_user - start
11022
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
11023
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.7ms)
11024
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (5.2ms)
11025
+ Completed 200 OK in 23ms (Views: 20.6ms | ActiveRecord: 0.3ms)
11026
+
11027
+
11028
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:49 +0100
11029
+ Served asset /kblog/application.css - 200 OK (3ms)
11030
+
11031
+
11032
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:49 +0100
11033
+ Served asset /jquery.js - 304 Not Modified (5ms)
11034
+
11035
+
11036
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:35:49 +0100
11037
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
11038
+
11039
+
11040
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:49 +0100
11041
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
11042
+
11043
+
11044
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:49 +0100
11045
+ Served asset /kblog/application.js - 200 OK (8ms)
11046
+
11047
+
11048
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 16:35:49 +0100
11049
+ Served asset /kblog/articles.js - 200 OK (2ms)
11050
+
11051
+
11052
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11053
+ Processing by UsersController#index as HTML
11054
+ User Load (0.2ms) SELECT "users".* FROM "users"
11055
+ Rendered users/index.html.erb within layouts/application (1.3ms)
11056
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
11057
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (2.8ms)
11058
+ Completed 200 OK in 13ms (Views: 12.0ms | ActiveRecord: 0.5ms)
11059
+
11060
+
11061
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11062
+ Served asset /application.css - 304 Not Modified (0ms)
11063
+
11064
+
11065
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11066
+ Served asset /users.css - 304 Not Modified (9ms)
11067
+
11068
+
11069
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11070
+ Served asset /scaffold.css - 304 Not Modified (0ms)
11071
+
11072
+
11073
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11074
+ Served asset /kblog/articles.css - 304 Not Modified (1ms)
11075
+
11076
+
11077
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11078
+ Served asset /jquery.js - 304 Not Modified (1ms)
11079
+
11080
+
11081
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11082
+ Served asset /users.js - 304 Not Modified (0ms)
11083
+
11084
+
11085
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11086
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
11087
+
11088
+
11089
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:13 +0100
11090
+ Served asset /application.js - 304 Not Modified (1ms)
11091
+
11092
+
11093
+ Started GET "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 16:36:17 +0100
11094
+ Processing by Kblog::ArticlesController#show as HTML
11095
+ Parameters: {"id"=>"10"}
11096
+ Kblog::ArticlesController#set_blog_user - start
11097
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
11098
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.8ms)
11099
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (4.7ms)
11100
+ Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.1ms)
11101
+
11102
+
11103
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:17 +0100
11104
+ Served asset /kblog/application.css - 304 Not Modified (0ms)
11105
+
11106
+
11107
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:17 +0100
11108
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
11109
+
11110
+
11111
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:17 +0100
11112
+ Served asset /jquery.js - 304 Not Modified (0ms)
11113
+
11114
+
11115
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:17 +0100
11116
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
11117
+
11118
+
11119
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:17 +0100
11120
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
11121
+
11122
+
11123
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:17 +0100
11124
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
11125
+
11126
+
11127
+ Started GET "/kblog/articles" for 127.0.0.1 at 2013-03-13 16:36:21 +0100
11128
+ Processing by Kblog::ArticlesController#index as HTML
11129
+ Kblog::ArticlesController#set_blog_user - start
11130
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 3 OFFSET 0
11131
+  (0.1ms) SELECT COUNT(*) FROM "kblog_articles"
11132
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (7.6ms)
11133
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/index.html.erb within layouts/kblog/kblog (13.5ms)
11134
+ Completed 200 OK in 20ms (Views: 18.4ms | ActiveRecord: 0.5ms)
11135
+
11136
+
11137
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:21 +0100
11138
+ Served asset /kblog/application.css - 304 Not Modified (2ms)
11139
+
11140
+
11141
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:21 +0100
11142
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
11143
+
11144
+
11145
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:21 +0100
11146
+ Served asset /jquery.js - 304 Not Modified (0ms)
11147
+
11148
+
11149
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:21 +0100
11150
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
11151
+
11152
+
11153
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:21 +0100
11154
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
11155
+
11156
+
11157
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:21 +0100
11158
+ Served asset /kblog/application.js - 304 Not Modified (1ms)
11159
+
11160
+
11161
+ Started GET "/" for 127.0.0.1 at 2013-03-13 16:36:26 +0100
11162
+
11163
+ ActionController::RoutingError (No route matches [GET] "/"):
11164
+ actionpack (3.2.12) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
11165
+ actionpack (3.2.12) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
11166
+ railties (3.2.12) lib/rails/rack/logger.rb:32:in `call_app'
11167
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `block in call'
11168
+ activesupport (3.2.12) lib/active_support/tagged_logging.rb:22:in `tagged'
11169
+ railties (3.2.12) lib/rails/rack/logger.rb:16:in `call'
11170
+ actionpack (3.2.12) lib/action_dispatch/middleware/request_id.rb:22:in `call'
11171
+ rack (1.4.5) lib/rack/methodoverride.rb:21:in `call'
11172
+ rack (1.4.5) lib/rack/runtime.rb:17:in `call'
11173
+ activesupport (3.2.12) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
11174
+ rack (1.4.5) lib/rack/lock.rb:15:in `call'
11175
+ actionpack (3.2.12) lib/action_dispatch/middleware/static.rb:62:in `call'
11176
+ railties (3.2.12) lib/rails/engine.rb:479:in `call'
11177
+ railties (3.2.12) lib/rails/application.rb:223:in `call'
11178
+ rack (1.4.5) lib/rack/content_length.rb:14:in `call'
11179
+ railties (3.2.12) lib/rails/rack/log_tailer.rb:17:in `call'
11180
+ rack (1.4.5) lib/rack/handler/webrick.rb:59:in `service'
11181
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
11182
+ /usr/local/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
11183
+ /usr/local/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
11184
+
11185
+
11186
+ Rendered /usr/local/lib/ruby/gems/1.9.1/gems/actionpack-3.2.12/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.5ms)
11187
+
11188
+
11189
+ Started GET "/users" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11190
+ Processing by UsersController#index as HTML
11191
+ User Load (0.2ms) SELECT "users".* FROM "users" 
11192
+ Rendered users/index.html.erb within layouts/application (1.2ms)
11193
+ Kblog::Article Load (0.3ms) SELECT "kblog_articles".* FROM "kblog_articles" ORDER BY created_at DESC LIMIT 1
11194
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (2.1ms)
11195
+ Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.5ms)
11196
+
11197
+
11198
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11199
+ Served asset /application.css - 304 Not Modified (0ms)
11200
+
11201
+
11202
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11203
+ Served asset /jquery.js - 304 Not Modified (6ms)
11204
+
11205
+
11206
+ Started GET "/assets/users.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11207
+ Served asset /users.css - 304 Not Modified (0ms)
11208
+
11209
+
11210
+ Started GET "/assets/scaffold.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11211
+ Served asset /scaffold.css - 304 Not Modified (0ms)
11212
+
11213
+
11214
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11215
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
11216
+
11217
+
11218
+ Started GET "/assets/users.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11219
+ Served asset /users.js - 304 Not Modified (0ms)
11220
+
11221
+
11222
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11223
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
11224
+
11225
+
11226
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:30 +0100
11227
+ Served asset /application.js - 304 Not Modified (1ms)
11228
+
11229
+
11230
+ Started GET "/kblog/articles/10" for 127.0.0.1 at 2013-03-13 16:36:37 +0100
11231
+ Processing by Kblog::ArticlesController#show as HTML
11232
+ Parameters: {"id"=>"10"}
11233
+ Kblog::ArticlesController#set_blog_user - start
11234
+ Kblog::Article Load (0.1ms) SELECT "kblog_articles".* FROM "kblog_articles" WHERE "kblog_articles"."id" = ? LIMIT 1 [["id", "10"]]
11235
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/_article.html.erb (3.4ms)
11236
+ Rendered /home/erpe/devel/kblog/app/views/kblog/articles/show.html.erb within layouts/kblog/kblog (4.4ms)
11237
+ Completed 200 OK in 12ms (Views: 10.9ms | ActiveRecord: 0.1ms)
11238
+
11239
+
11240
+ Started GET "/assets/kblog/application.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:37 +0100
11241
+ Served asset /kblog/application.css - 304 Not Modified (49ms)
11242
+
11243
+
11244
+ Started GET "/assets/kblog/articles.css?body=1" for 127.0.0.1 at 2013-03-13 16:36:37 +0100
11245
+ Served asset /kblog/articles.css - 304 Not Modified (0ms)
11246
+
11247
+
11248
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:37 +0100
11249
+ Served asset /jquery.js - 304 Not Modified (1ms)
11250
+
11251
+
11252
+ Started GET "/assets/kblog/articles.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:37 +0100
11253
+ Served asset /kblog/articles.js - 304 Not Modified (0ms)
11254
+
11255
+
11256
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:37 +0100
11257
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
11258
+
11259
+
11260
+ Started GET "/assets/kblog/application.js?body=1" for 127.0.0.1 at 2013-03-13 16:36:37 +0100
11261
+ Served asset /kblog/application.js - 304 Not Modified (1ms)