optimacms 0.1.50 → 0.1.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/app/helpers/optimacms/forms_helper.rb +2 -1
 - data/lib/optimacms/version.rb +1 -1
 - data/spec/dummy/app/controllers/optimacms/admin/news_controller.rb +14 -1
 - data/spec/dummy/app/models/news.rb +3 -0
 - data/spec/dummy/app/views/optimacms/admin/news/index.html.haml +20 -1
 - data/spec/dummy/config/routes.rb +5 -1
 - data/spec/dummy/log/development.log +2664 -0
 - data/spec/dummy/tmp/pids/server.pid +1 -1
 - metadata +4 -4
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 1875e6e3474f8cc636a765b089803b8284c52b23
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: b5c3b54c47b3527c866ee0f2776d738edd78ea82
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: c683c7caadf64763df5418886c7f8b4940a5efeca3383e58184356173f13c7689c287077c1844b98559f130cbee703246a76dbcefce91cbac5de9330215243d9
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 837207a05f646c4146f6f8bd5cf58c623420bc4b408334a1ab223380bb1aee0e814b265477e5a5ef3ec6d6bf3ad301f903a452c4d9449c0078f32e32d264d7a6
         
     | 
| 
         @@ -57,7 +57,7 @@ module Optimacms 
     | 
|
| 
       57 
57 
     | 
    
         
             
                  return render 'tableview/filter.html.haml', style: :horizontal, filter_object: filter_object
         
     | 
| 
       58 
58 
     | 
    
         
             
                end
         
     | 
| 
       59 
59 
     | 
    
         | 
| 
       60 
     | 
    
         
            -
             
     | 
| 
      
 60 
     | 
    
         
            +
            =begin
         
     | 
| 
       61 
61 
     | 
    
         
             
                def link_to_sortable_column(field_name, title = nil, html_options = nil, &block)
         
     | 
| 
       62 
62 
     | 
    
         
             
                  html_options ||= {}
         
     | 
| 
       63 
63 
     | 
    
         | 
| 
         @@ -69,6 +69,7 @@ module Optimacms 
     | 
|
| 
       69 
69 
     | 
    
         | 
| 
       70 
70 
     | 
    
         
             
                  link_to(title, url, html_options)
         
     | 
| 
       71 
71 
     | 
    
         
             
                end
         
     | 
| 
      
 72 
     | 
    
         
            +
            =end
         
     | 
| 
       72 
73 
     | 
    
         | 
| 
       73 
74 
     | 
    
         
             
              end
         
     | 
| 
       74 
75 
     | 
    
         
             
            end
         
     | 
    
        data/lib/optimacms/version.rb
    CHANGED
    
    
| 
         @@ -1,7 +1,20 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            class Optimacms::Admin::NewsController < Optimacms::Admin::AdminBaseController
         
     | 
| 
      
 2 
     | 
    
         
            +
              #search
         
     | 
| 
      
 3 
     | 
    
         
            +
              search_filter :index, {save_session: true, search_method: :post_and_redirect, url: :admin_news_index_url, search_url: :search_admin_news_index_url, search_action: :search} do
         
     | 
| 
      
 4 
     | 
    
         
            +
                default_order "id", 'desc'
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
                # fields
         
     | 
| 
      
 7 
     | 
    
         
            +
                field :title, :string, :text, {label: 'title', default_value: '', condition: :like_full, input_html: {style: "width: 240px"}}
         
     | 
| 
      
 8 
     | 
    
         
            +
              end
         
     | 
| 
      
 9 
     | 
    
         
            +
             
     | 
| 
       2 
10 
     | 
    
         
             
              def index
         
     | 
| 
       3 
11 
     | 
    
         | 
| 
       4 
     | 
    
         
            -
                 
     | 
| 
      
 12 
     | 
    
         
            +
                @items = News.by_filter(@filter)
         
     | 
| 
       5 
13 
     | 
    
         | 
| 
       6 
14 
     | 
    
         
             
              end
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
              def search2
         
     | 
| 
      
 17 
     | 
    
         
            +
                redirect_to action: :index
         
     | 
| 
      
 18 
     | 
    
         
            +
              end
         
     | 
| 
      
 19 
     | 
    
         
            +
             
     | 
| 
       7 
20 
     | 
    
         
             
            end
         
     | 
| 
         @@ -1 +1,20 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            %h2 News
         
     | 
| 
      
 1 
     | 
    
         
            +
            %h2 News
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            .filter
         
     | 
| 
      
 4 
     | 
    
         
            +
              = inline_filter_form_for(@filter)
         
     | 
| 
      
 5 
     | 
    
         
            +
             
     | 
| 
      
 6 
     | 
    
         
            +
            .center-block
         
     | 
| 
      
 7 
     | 
    
         
            +
              = paginate @items
         
     | 
| 
      
 8 
     | 
    
         
            +
            %br
         
     | 
| 
      
 9 
     | 
    
         
            +
            %table.table.table-striped.table-bordered.table-hover
         
     | 
| 
      
 10 
     | 
    
         
            +
              %tr
         
     | 
| 
      
 11 
     | 
    
         
            +
                %th= link_to_sortable_column :id, '#'
         
     | 
| 
      
 12 
     | 
    
         
            +
                %th Title
         
     | 
| 
      
 13 
     | 
    
         
            +
                %th= link_to_sortable_column :created_at, 'Date'
         
     | 
| 
      
 14 
     | 
    
         
            +
                %th Commands
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
              - @items.each do |item|
         
     | 
| 
      
 17 
     | 
    
         
            +
                %tr
         
     | 
| 
      
 18 
     | 
    
         
            +
                  %td= item.id
         
     | 
| 
      
 19 
     | 
    
         
            +
                  %td= item.title
         
     | 
| 
      
 20 
     | 
    
         
            +
                  %td= item.created_at
         
     | 
    
        data/spec/dummy/config/routes.rb
    CHANGED
    
    
| 
         @@ -17730,3 +17730,2667 @@ Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.j 
     | 
|
| 
       17730 
17730 
     | 
    
         | 
| 
       17731 
17731 
     | 
    
         | 
| 
       17732 
17732 
     | 
    
         
             
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-07-22 17:30:07 +0300
         
     | 
| 
      
 17733 
     | 
    
         
            +
             
     | 
| 
      
 17734 
     | 
    
         
            +
             
     | 
| 
      
 17735 
     | 
    
         
            +
            Started GET "/cmsadmin/pages" for 127.0.0.1 at 2015-12-15 21:50:03 +0200
         
     | 
| 
      
 17736 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (546.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 17737 
     | 
    
         
            +
            Processing by Optimacms::Admin::PagesController#index as HTML
         
     | 
| 
      
 17738 
     | 
    
         
            +
            Completed 401 Unauthorized in 64ms (ActiveRecord: 0.0ms)
         
     | 
| 
      
 17739 
     | 
    
         
            +
             
     | 
| 
      
 17740 
     | 
    
         
            +
             
     | 
| 
      
 17741 
     | 
    
         
            +
            Started GET "/cmsadmin/login" for 127.0.0.1 at 2015-12-15 21:50:20 +0200
         
     | 
| 
      
 17742 
     | 
    
         
            +
            Processing by Optimacms::Devise::SessionsController#new as HTML
         
     | 
| 
      
 17743 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/devise-3.5.1/app/views/devise/shared/_links.html.erb (15.0ms)
         
     | 
| 
      
 17744 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/devise-3.5.1/app/views/devise/sessions/new.html.erb within layouts/optimacms/application_logged_out (500.0ms)
         
     | 
| 
      
 17745 
     | 
    
         
            +
            Completed 200 OK in 2476ms (Views: 1688.1ms | ActiveRecord: 567.0ms)
         
     | 
| 
      
 17746 
     | 
    
         
            +
             
     | 
| 
      
 17747 
     | 
    
         
            +
             
     | 
| 
      
 17748 
     | 
    
         
            +
            Started GET "/stylesheets/optimacms/application.css" for 127.0.0.1 at 2015-12-15 21:50:22 +0200
         
     | 
| 
      
 17749 
     | 
    
         
            +
            Processing by Optimacms::PagesController#show as HTML
         
     | 
| 
      
 17750 
     | 
    
         
            +
              Parameters: {"url"=>"stylesheets/optimacms/application.css"}
         
     | 
| 
      
 17751 
     | 
    
         
            +
              [1m[35mOptimacms::Language Load (52.0ms)[0m  SELECT `cms_languages`.* FROM `cms_languages`
         
     | 
| 
      
 17752 
     | 
    
         
            +
              [1m[36m (50.0ms)[0m  [1mSELECT COUNT(*) FROM `cms_pages` WHERE (is_folder = 0 AND enabled = 1 AND 'stylesheets/optimacms/application.css' REGEXP parsed_url)[0m
         
     | 
| 
      
 17753 
     | 
    
         
            +
            Completed 404 Not Found in 784ms (ActiveRecord: 248.0ms)
         
     | 
| 
      
 17754 
     | 
    
         
            +
             
     | 
| 
      
 17755 
     | 
    
         
            +
            ActionController::RoutingError (Not Found):
         
     | 
| 
      
 17756 
     | 
    
         
            +
              W:/myrails/cms/site/app/controllers/optimacms/application_controller.rb:16:in `not_found'
         
     | 
| 
      
 17757 
     | 
    
         
            +
              W:/myrails/cms/site/app/controllers/optimacms/pages_controller.rb:64:in `show'
         
     | 
| 
      
 17758 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
         
     | 
| 
      
 17759 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
         
     | 
| 
      
 17760 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
         
     | 
| 
      
 17761 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
         
     | 
| 
      
 17762 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
         
     | 
| 
      
 17763 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
         
     | 
| 
      
 17764 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
         
     | 
| 
      
 17765 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
         
     | 
| 
      
 17766 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
         
     | 
| 
      
 17767 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 17768 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 17769 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 17770 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 17771 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 17772 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 17773 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 17774 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 17775 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 17776 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 17777 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 17778 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 17779 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 17780 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 17781 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 17782 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 17783 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 17784 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 17785 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 17786 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 17787 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 17788 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 17789 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 17790 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 17791 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 17792 
     | 
    
         
            +
              railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
         
     | 
| 
      
 17793 
     | 
    
         
            +
              railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
         
     | 
| 
      
 17794 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
         
     | 
| 
      
 17795 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 17796 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 17797 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 17798 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 17799 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 17800 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 17801 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 17802 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 17803 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 17804 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 17805 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 17806 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 17807 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 17808 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 17809 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 17810 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 17811 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 17812 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 17813 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 17814 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 17815 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 17816 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 17817 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 17818 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 17819 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 17820 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 17821 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 17822 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 17823 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 17824 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 17825 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 17826 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 17827 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 17828 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 17829 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 17830 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 17831 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 17832 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 17833 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 17834 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 17835 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 17836 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 17837 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 17838 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 17839 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 17840 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 17841 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 17842 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 17843 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 17844 
     | 
    
         
            +
             
     | 
| 
      
 17845 
     | 
    
         
            +
             
     | 
| 
      
 17846 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (74.0ms)
         
     | 
| 
      
 17847 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (52.0ms)
         
     | 
| 
      
 17848 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (77.0ms)
         
     | 
| 
      
 17849 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (17.0ms)
         
     | 
| 
      
 17850 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.0ms)
         
     | 
| 
      
 17851 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (2706.2ms)
         
     | 
| 
      
 17852 
     | 
    
         
            +
             
     | 
| 
      
 17853 
     | 
    
         
            +
             
     | 
| 
      
 17854 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 21:50:28 +0200
         
     | 
| 
      
 17855 
     | 
    
         
            +
             
     | 
| 
      
 17856 
     | 
    
         
            +
             
     | 
| 
      
 17857 
     | 
    
         
            +
            Started POST "/cmsadmin/login" for 127.0.0.1 at 2015-12-15 21:50:36 +0200
         
     | 
| 
      
 17858 
     | 
    
         
            +
            Processing by Optimacms::Devise::SessionsController#create as HTML
         
     | 
| 
      
 17859 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"EarWgqRIaMAOY8emmmrWOQ/KnimT/AqT4x9WXRLIhb4mHUVOnlPMfv5XfXgUlC2ZqqCn6dZ7vk2C7sCy3Y4buw==", "cms_admin_user"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]", "remember_me"=>"0"}, "commit"=>"Log in"}
         
     | 
| 
      
 17860 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (15.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`email` = 'admin@example.com'  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 17861 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mBEGIN[0m
         
     | 
| 
      
 17862 
     | 
    
         
            +
              [1m[35mSQL (120.0ms)[0m  UPDATE `cms_users` SET `last_sign_in_at` = '2015-07-22 14:03:05', `current_sign_in_at` = '2015-12-15 19:50:37', `sign_in_count` = 4, `updated_at` = '2015-12-15 19:50:37' WHERE `cms_users`.`id` = 4
         
     | 
| 
      
 17863 
     | 
    
         
            +
              [1m[36m (34.0ms)[0m  [1mCOMMIT[0m
         
     | 
| 
      
 17864 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/pages
         
     | 
| 
      
 17865 
     | 
    
         
            +
            Completed 302 Found in 838ms (ActiveRecord: 170.0ms)
         
     | 
| 
      
 17866 
     | 
    
         
            +
             
     | 
| 
      
 17867 
     | 
    
         
            +
             
     | 
| 
      
 17868 
     | 
    
         
            +
            Started GET "/cmsadmin/pages" for 127.0.0.1 at 2015-12-15 21:50:37 +0200
         
     | 
| 
      
 17869 
     | 
    
         
            +
            Processing by Optimacms::Admin::PagesController#index as HTML
         
     | 
| 
      
 17870 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (0.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 17871 
     | 
    
         
            +
              [1m[36mOptimacms::Page Load (1.0ms)[0m  [1mSELECT  `cms_pages`.* FROM `cms_pages` WHERE `cms_pages`.`id` = 0 LIMIT 1[0m
         
     | 
| 
      
 17872 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (54.0ms)
         
     | 
| 
      
 17873 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (128.0ms)
         
     | 
| 
      
 17874 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_hidden.html.haml (43.0ms)
         
     | 
| 
      
 17875 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (60.0ms)
         
     | 
| 
      
 17876 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (239.0ms)
         
     | 
| 
      
 17877 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (11.0ms)
         
     | 
| 
      
 17878 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (89.0ms)
         
     | 
| 
      
 17879 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (402.0ms)
         
     | 
| 
      
 17880 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (432.0ms)
         
     | 
| 
      
 17881 
     | 
    
         
            +
              [1m[35mOptimacms::Page Load (34.0ms)[0m  SELECT  `cms_pages`.* FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )  ORDER BY created_at desc LIMIT 10 OFFSET 0
         
     | 
| 
      
 17882 
     | 
    
         
            +
              [1m[36mOptimacms::Template Load (3.0ms)[0m  [1mSELECT `cms_templates`.* FROM `cms_templates` WHERE `cms_templates`.`id` IN (126, 0, 4)[0m
         
     | 
| 
      
 17883 
     | 
    
         
            +
              [1m[35m (1.0ms)[0m  SELECT COUNT(*) FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )
         
     | 
| 
      
 17884 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/pages/index.html.haml within optimacms/admin/layouts/main (1953.1ms)
         
     | 
| 
      
 17885 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (90.0ms)
         
     | 
| 
      
 17886 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (143.0ms)
         
     | 
| 
      
 17887 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (25.0ms)
         
     | 
| 
      
 17888 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (49.0ms)
         
     | 
| 
      
 17889 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (7.0ms)
         
     | 
| 
      
 17890 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (38.0ms)
         
     | 
| 
      
 17891 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (3118.2ms)
         
     | 
| 
      
 17892 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (3721.2ms)
         
     | 
| 
      
 17893 
     | 
    
         
            +
            Completed 200 OK in 6235ms (Views: 5793.3ms | ActiveRecord: 242.0ms)
         
     | 
| 
      
 17894 
     | 
    
         
            +
             
     | 
| 
      
 17895 
     | 
    
         
            +
             
     | 
| 
      
 17896 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 21:50:44 +0200
         
     | 
| 
      
 17897 
     | 
    
         
            +
             
     | 
| 
      
 17898 
     | 
    
         
            +
             
     | 
| 
      
 17899 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 21:50:44 +0200
         
     | 
| 
      
 17900 
     | 
    
         
            +
             
     | 
| 
      
 17901 
     | 
    
         
            +
             
     | 
| 
      
 17902 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 21:50:44 +0200
         
     | 
| 
      
 17903 
     | 
    
         
            +
             
     | 
| 
      
 17904 
     | 
    
         
            +
             
     | 
| 
      
 17905 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 21:50:45 +0200
         
     | 
| 
      
 17906 
     | 
    
         
            +
             
     | 
| 
      
 17907 
     | 
    
         
            +
             
     | 
| 
      
 17908 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 21:50:45 +0200
         
     | 
| 
      
 17909 
     | 
    
         
            +
             
     | 
| 
      
 17910 
     | 
    
         
            +
             
     | 
| 
      
 17911 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 21:50:45 +0200
         
     | 
| 
      
 17912 
     | 
    
         
            +
             
     | 
| 
      
 17913 
     | 
    
         
            +
             
     | 
| 
      
 17914 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 21:50:45 +0200
         
     | 
| 
      
 17915 
     | 
    
         
            +
             
     | 
| 
      
 17916 
     | 
    
         
            +
             
     | 
| 
      
 17917 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 21:50:45 +0200
         
     | 
| 
      
 17918 
     | 
    
         
            +
             
     | 
| 
      
 17919 
     | 
    
         
            +
             
     | 
| 
      
 17920 
     | 
    
         
            +
            Started GET "/assets/fontawesome-webfont-9e05603dba2fcd6ce30a144015b0f46d.woff2?v=4.3.0" for 127.0.0.1 at 2015-12-15 21:50:46 +0200
         
     | 
| 
      
 17921 
     | 
    
         
            +
             
     | 
| 
      
 17922 
     | 
    
         
            +
             
     | 
| 
      
 17923 
     | 
    
         
            +
            Started POST "/cmsadmin/pages/search?filter_cmd=order&orderby=name&orderdir=asc" for 127.0.0.1 at 2015-12-15 21:51:04 +0200
         
     | 
| 
      
 17924 
     | 
    
         
            +
            Processing by Optimacms::Admin::PagesController#search as HTML
         
     | 
| 
      
 17925 
     | 
    
         
            +
              Parameters: {"authenticity_token"=>"W5YKhVICki7YoTlG05S5RFbhmVQWWT7txfGK784CCRiXA3n6bSd1AfEfWAanbIzMlsYMnwICk6+/DWBP5TwqKw==", "filter_cmd"=>"order", "orderby"=>"name", "orderdir"=>"asc"}
         
     | 
| 
      
 17926 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (0.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 17927 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/pages
         
     | 
| 
      
 17928 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 17929 
     | 
    
         
            +
            Completed 302 Found in 42ms (ActiveRecord: 0.0ms)
         
     | 
| 
      
 17930 
     | 
    
         
            +
             
     | 
| 
      
 17931 
     | 
    
         
            +
             
     | 
| 
      
 17932 
     | 
    
         
            +
            Started GET "/cmsadmin/pages" for 127.0.0.1 at 2015-12-15 21:51:04 +0200
         
     | 
| 
      
 17933 
     | 
    
         
            +
            Processing by Optimacms::Admin::PagesController#index as HTML
         
     | 
| 
      
 17934 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 17935 
     | 
    
         
            +
              [1m[36mOptimacms::Page Load (1.0ms)[0m  [1mSELECT  `cms_pages`.* FROM `cms_pages` WHERE `cms_pages`.`id` = 0 LIMIT 1[0m
         
     | 
| 
      
 17936 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (40.0ms)
         
     | 
| 
      
 17937 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (48.0ms)
         
     | 
| 
      
 17938 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_hidden.html.haml (35.0ms)
         
     | 
| 
      
 17939 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (44.0ms)
         
     | 
| 
      
 17940 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (113.0ms)
         
     | 
| 
      
 17941 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
         
     | 
| 
      
 17942 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (6.0ms)
         
     | 
| 
      
 17943 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (143.0ms)
         
     | 
| 
      
 17944 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (153.0ms)
         
     | 
| 
      
 17945 
     | 
    
         
            +
              [1m[35mOptimacms::Page Load (1.0ms)[0m  SELECT  `cms_pages`.* FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )  ORDER BY name asc LIMIT 10 OFFSET 0
         
     | 
| 
      
 17946 
     | 
    
         
            +
              [1m[36mOptimacms::Template Load (1.0ms)[0m  [1mSELECT `cms_templates`.* FROM `cms_templates` WHERE `cms_templates`.`id` IN (4, 0, 126)[0m
         
     | 
| 
      
 17947 
     | 
    
         
            +
              [1m[35m (1.0ms)[0m  SELECT COUNT(*) FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )
         
     | 
| 
      
 17948 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/pages/index.html.haml within optimacms/admin/layouts/main (358.0ms)
         
     | 
| 
      
 17949 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (7.0ms)
         
     | 
| 
      
 17950 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (29.0ms)
         
     | 
| 
      
 17951 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 17952 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 17953 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 17954 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (16.0ms)
         
     | 
| 
      
 17955 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1224.1ms)
         
     | 
| 
      
 17956 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1380.1ms)
         
     | 
| 
      
 17957 
     | 
    
         
            +
            Completed 200 OK in 1807ms (Views: 1769.1ms | ActiveRecord: 5.0ms)
         
     | 
| 
      
 17958 
     | 
    
         
            +
             
     | 
| 
      
 17959 
     | 
    
         
            +
             
     | 
| 
      
 17960 
     | 
    
         
            +
            Started POST "/cmsadmin/pages/search?filter_cmd=order&orderby=name&orderdir=desc" for 127.0.0.1 at 2015-12-15 21:51:08 +0200
         
     | 
| 
      
 17961 
     | 
    
         
            +
            Processing by Optimacms::Admin::PagesController#search as HTML
         
     | 
| 
      
 17962 
     | 
    
         
            +
              Parameters: {"authenticity_token"=>"lbb+Gho9o3LHnIl2jj8ti5iQpCqIvAbdLmeH3Q/vAH9ZI41lJRhEXe4i6Db6xxgDWLcx4Zznq59Um219JNEjTA==", "filter_cmd"=>"order", "orderby"=>"name", "orderdir"=>"desc"}
         
     | 
| 
      
 17963 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (0.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 17964 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/pages
         
     | 
| 
      
 17965 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 17966 
     | 
    
         
            +
            Completed 302 Found in 34ms (ActiveRecord: 0.0ms)
         
     | 
| 
      
 17967 
     | 
    
         
            +
             
     | 
| 
      
 17968 
     | 
    
         
            +
             
     | 
| 
      
 17969 
     | 
    
         
            +
            Started GET "/cmsadmin/pages" for 127.0.0.1 at 2015-12-15 21:51:08 +0200
         
     | 
| 
      
 17970 
     | 
    
         
            +
            Processing by Optimacms::Admin::PagesController#index as HTML
         
     | 
| 
      
 17971 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 17972 
     | 
    
         
            +
              [1m[36mOptimacms::Page Load (1.0ms)[0m  [1mSELECT  `cms_pages`.* FROM `cms_pages` WHERE `cms_pages`.`id` = 0 LIMIT 1[0m
         
     | 
| 
      
 17973 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (39.0ms)
         
     | 
| 
      
 17974 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (64.0ms)
         
     | 
| 
      
 17975 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_hidden.html.haml (15.0ms)
         
     | 
| 
      
 17976 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (21.0ms)
         
     | 
| 
      
 17977 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (103.0ms)
         
     | 
| 
      
 17978 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 17979 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (15.0ms)
         
     | 
| 
      
 17980 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (154.0ms)
         
     | 
| 
      
 17981 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (162.0ms)
         
     | 
| 
      
 17982 
     | 
    
         
            +
              [1m[35mOptimacms::Page Load (2.0ms)[0m  SELECT  `cms_pages`.* FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )  ORDER BY name desc LIMIT 10 OFFSET 0
         
     | 
| 
      
 17983 
     | 
    
         
            +
              [1m[36mOptimacms::Template Load (1.0ms)[0m  [1mSELECT `cms_templates`.* FROM `cms_templates` WHERE `cms_templates`.`id` IN (0, 4, 126)[0m
         
     | 
| 
      
 17984 
     | 
    
         
            +
              [1m[35m (0.0ms)[0m  SELECT COUNT(*) FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )
         
     | 
| 
      
 17985 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/pages/index.html.haml within optimacms/admin/layouts/main (403.0ms)
         
     | 
| 
      
 17986 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (5.0ms)
         
     | 
| 
      
 17987 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (29.0ms)
         
     | 
| 
      
 17988 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 17989 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 17990 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (2.0ms)
         
     | 
| 
      
 17991 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (13.0ms)
         
     | 
| 
      
 17992 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1181.1ms)
         
     | 
| 
      
 17993 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1312.1ms)
         
     | 
| 
      
 17994 
     | 
    
         
            +
            Completed 200 OK in 1789ms (Views: 1745.1ms | ActiveRecord: 5.0ms)
         
     | 
| 
      
 17995 
     | 
    
         
            +
             
     | 
| 
      
 17996 
     | 
    
         
            +
             
     | 
| 
      
 17997 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 21:51:15 +0200
         
     | 
| 
      
 17998 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 17999 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18000 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (8.0ms)
         
     | 
| 
      
 18001 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (5.0ms)
         
     | 
| 
      
 18002 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (29.0ms)
         
     | 
| 
      
 18003 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (1.0ms)
         
     | 
| 
      
 18004 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 18005 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 18006 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (13.0ms)
         
     | 
| 
      
 18007 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1160.1ms)
         
     | 
| 
      
 18008 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1280.1ms)
         
     | 
| 
      
 18009 
     | 
    
         
            +
            Completed 200 OK in 1346ms (Views: 1326.1ms | ActiveRecord: 1.0ms)
         
     | 
| 
      
 18010 
     | 
    
         
            +
             
     | 
| 
      
 18011 
     | 
    
         
            +
             
     | 
| 
      
 18012 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 21:51:20 +0200
         
     | 
| 
      
 18013 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18014 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (0.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18015 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (1.0ms)
         
     | 
| 
      
 18016 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (7.0ms)
         
     | 
| 
      
 18017 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (51.0ms)
         
     | 
| 
      
 18018 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (1.0ms)
         
     | 
| 
      
 18019 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 18020 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 18021 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (13.0ms)
         
     | 
| 
      
 18022 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1061.1ms)
         
     | 
| 
      
 18023 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1236.1ms)
         
     | 
| 
      
 18024 
     | 
    
         
            +
            Completed 200 OK in 1284ms (Views: 1266.1ms | ActiveRecord: 0.0ms)
         
     | 
| 
      
 18025 
     | 
    
         
            +
             
     | 
| 
      
 18026 
     | 
    
         
            +
             
     | 
| 
      
 18027 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 21:51:25 +0200
         
     | 
| 
      
 18028 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18029 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18030 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (1.0ms)
         
     | 
| 
      
 18031 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (10.0ms)
         
     | 
| 
      
 18032 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (34.0ms)
         
     | 
| 
      
 18033 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 18034 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 18035 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 18036 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (14.0ms)
         
     | 
| 
      
 18037 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1167.1ms)
         
     | 
| 
      
 18038 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1330.1ms)
         
     | 
| 
      
 18039 
     | 
    
         
            +
            Completed 200 OK in 1395ms (Views: 1365.1ms | ActiveRecord: 1.0ms)
         
     | 
| 
      
 18040 
     | 
    
         
            +
             
     | 
| 
      
 18041 
     | 
    
         
            +
             
     | 
| 
      
 18042 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:17:15 +0200
         
     | 
| 
      
 18043 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18044 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18045 
     | 
    
         
            +
            Completed 500 Internal Server Error in 300ms (ActiveRecord: 29.0ms)
         
     | 
| 
      
 18046 
     | 
    
         
            +
             
     | 
| 
      
 18047 
     | 
    
         
            +
            NoMethodError (undefined method `by_filter' for #<Class:0x8e71540>):
         
     | 
| 
      
 18048 
     | 
    
         
            +
              app/controllers/optimacms/admin/news_controller.rb:12:in `index'
         
     | 
| 
      
 18049 
     | 
    
         
            +
             
     | 
| 
      
 18050 
     | 
    
         
            +
             
     | 
| 
      
 18051 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms)
         
     | 
| 
      
 18052 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (115.0ms)
         
     | 
| 
      
 18053 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (28.0ms)
         
     | 
| 
      
 18054 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (497.0ms)
         
     | 
| 
      
 18055 
     | 
    
         
            +
             
     | 
| 
      
 18056 
     | 
    
         
            +
             
     | 
| 
      
 18057 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:18:39 +0200
         
     | 
| 
      
 18058 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18059 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18060 
     | 
    
         
            +
            Completed 500 Internal Server Error in 259ms (ActiveRecord: 41.0ms)
         
     | 
| 
      
 18061 
     | 
    
         
            +
             
     | 
| 
      
 18062 
     | 
    
         
            +
            NameError (undefined local variable or method `search_admin_news_index' for #<Class:0xa26c348>):
         
     | 
| 
      
 18063 
     | 
    
         
            +
              app/models/news.rb:5:in `<class:News>'
         
     | 
| 
      
 18064 
     | 
    
         
            +
              app/models/news.rb:1:in `<top (required)>'
         
     | 
| 
      
 18065 
     | 
    
         
            +
              app/controllers/optimacms/admin/news_controller.rb:12:in `index'
         
     | 
| 
      
 18066 
     | 
    
         
            +
             
     | 
| 
      
 18067 
     | 
    
         
            +
             
     | 
| 
      
 18068 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.0ms)
         
     | 
| 
      
 18069 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (125.0ms)
         
     | 
| 
      
 18070 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.0ms)
         
     | 
| 
      
 18071 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (263.0ms)
         
     | 
| 
      
 18072 
     | 
    
         
            +
             
     | 
| 
      
 18073 
     | 
    
         
            +
             
     | 
| 
      
 18074 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:25:56 +0200
         
     | 
| 
      
 18075 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 18076 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18077 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18078 
     | 
    
         
            +
            Completed 500 Internal Server Error in 724ms (ActiveRecord: 240.0ms)
         
     | 
| 
      
 18079 
     | 
    
         
            +
             
     | 
| 
      
 18080 
     | 
    
         
            +
            NameError (undefined local variable or method `search_admin_news_index' for #<Class:0x9f38d30>):
         
     | 
| 
      
 18081 
     | 
    
         
            +
              app/models/news.rb:5:in `<class:News>'
         
     | 
| 
      
 18082 
     | 
    
         
            +
              app/models/news.rb:1:in `<top (required)>'
         
     | 
| 
      
 18083 
     | 
    
         
            +
              app/controllers/optimacms/admin/news_controller.rb:12:in `index'
         
     | 
| 
      
 18084 
     | 
    
         
            +
             
     | 
| 
      
 18085 
     | 
    
         
            +
             
     | 
| 
      
 18086 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms)
         
     | 
| 
      
 18087 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (81.0ms)
         
     | 
| 
      
 18088 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
         
     | 
| 
      
 18089 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (491.0ms)
         
     | 
| 
      
 18090 
     | 
    
         
            +
             
     | 
| 
      
 18091 
     | 
    
         
            +
             
     | 
| 
      
 18092 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:28:44 +0200
         
     | 
| 
      
 18093 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18094 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18095 
     | 
    
         
            +
            Completed 500 Internal Server Error in 149ms (ActiveRecord: 21.0ms)
         
     | 
| 
      
 18096 
     | 
    
         
            +
             
     | 
| 
      
 18097 
     | 
    
         
            +
            NameError (undefined local variable or method `search_admin_news_index' for #<Class:0xa453c50>):
         
     | 
| 
      
 18098 
     | 
    
         
            +
              app/models/news.rb:5:in `<class:News>'
         
     | 
| 
      
 18099 
     | 
    
         
            +
              app/models/news.rb:1:in `<top (required)>'
         
     | 
| 
      
 18100 
     | 
    
         
            +
              app/controllers/optimacms/admin/news_controller.rb:12:in `index'
         
     | 
| 
      
 18101 
     | 
    
         
            +
             
     | 
| 
      
 18102 
     | 
    
         
            +
             
     | 
| 
      
 18103 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms)
         
     | 
| 
      
 18104 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (173.0ms)
         
     | 
| 
      
 18105 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (16.0ms)
         
     | 
| 
      
 18106 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (285.0ms)
         
     | 
| 
      
 18107 
     | 
    
         
            +
             
     | 
| 
      
 18108 
     | 
    
         
            +
             
     | 
| 
      
 18109 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:29:00 +0200
         
     | 
| 
      
 18110 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18111 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (2.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18112 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (25.0ms)
         
     | 
| 
      
 18113 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (136.0ms)
         
     | 
| 
      
 18114 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (219.0ms)
         
     | 
| 
      
 18115 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (61.0ms)
         
     | 
| 
      
 18116 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (58.0ms)
         
     | 
| 
      
 18117 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (18.0ms)
         
     | 
| 
      
 18118 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (75.0ms)
         
     | 
| 
      
 18119 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (4766.3ms)
         
     | 
| 
      
 18120 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (5769.3ms)
         
     | 
| 
      
 18121 
     | 
    
         
            +
            Completed 200 OK in 6291ms (Views: 5978.3ms | ActiveRecord: 59.0ms)
         
     | 
| 
      
 18122 
     | 
    
         
            +
             
     | 
| 
      
 18123 
     | 
    
         
            +
             
     | 
| 
      
 18124 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 22:29:12 +0200
         
     | 
| 
      
 18125 
     | 
    
         
            +
             
     | 
| 
      
 18126 
     | 
    
         
            +
             
     | 
| 
      
 18127 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 22:29:12 +0200
         
     | 
| 
      
 18128 
     | 
    
         
            +
             
     | 
| 
      
 18129 
     | 
    
         
            +
             
     | 
| 
      
 18130 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 22:29:12 +0200
         
     | 
| 
      
 18131 
     | 
    
         
            +
             
     | 
| 
      
 18132 
     | 
    
         
            +
             
     | 
| 
      
 18133 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 22:29:13 +0200
         
     | 
| 
      
 18134 
     | 
    
         
            +
             
     | 
| 
      
 18135 
     | 
    
         
            +
             
     | 
| 
      
 18136 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 22:29:13 +0200
         
     | 
| 
      
 18137 
     | 
    
         
            +
             
     | 
| 
      
 18138 
     | 
    
         
            +
             
     | 
| 
      
 18139 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 22:29:13 +0200
         
     | 
| 
      
 18140 
     | 
    
         
            +
             
     | 
| 
      
 18141 
     | 
    
         
            +
             
     | 
| 
      
 18142 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 22:29:13 +0200
         
     | 
| 
      
 18143 
     | 
    
         
            +
             
     | 
| 
      
 18144 
     | 
    
         
            +
             
     | 
| 
      
 18145 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 22:29:13 +0200
         
     | 
| 
      
 18146 
     | 
    
         
            +
             
     | 
| 
      
 18147 
     | 
    
         
            +
             
     | 
| 
      
 18148 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 22:29:13 +0200
         
     | 
| 
      
 18149 
     | 
    
         
            +
             
     | 
| 
      
 18150 
     | 
    
         
            +
             
     | 
| 
      
 18151 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:32:25 +0200
         
     | 
| 
      
 18152 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18153 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18154 
     | 
    
         
            +
            Completed 500 Internal Server Error in 303ms (ActiveRecord: 57.0ms)
         
     | 
| 
      
 18155 
     | 
    
         
            +
             
     | 
| 
      
 18156 
     | 
    
         
            +
            NameError (undefined local variable or method `search_admin_news_index' for #<Class:0x880a910>):
         
     | 
| 
      
 18157 
     | 
    
         
            +
              app/models/news.rb:5:in `<class:News>'
         
     | 
| 
      
 18158 
     | 
    
         
            +
              app/models/news.rb:1:in `<top (required)>'
         
     | 
| 
      
 18159 
     | 
    
         
            +
              app/controllers/optimacms/admin/news_controller.rb:12:in `index'
         
     | 
| 
      
 18160 
     | 
    
         
            +
             
     | 
| 
      
 18161 
     | 
    
         
            +
             
     | 
| 
      
 18162 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.0ms)
         
     | 
| 
      
 18163 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (116.0ms)
         
     | 
| 
      
 18164 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.0ms)
         
     | 
| 
      
 18165 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (231.0ms)
         
     | 
| 
      
 18166 
     | 
    
         
            +
             
     | 
| 
      
 18167 
     | 
    
         
            +
             
     | 
| 
      
 18168 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:33:15 +0200
         
     | 
| 
      
 18169 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18170 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18171 
     | 
    
         
            +
            Completed 500 Internal Server Error in 256ms (ActiveRecord: 45.0ms)
         
     | 
| 
      
 18172 
     | 
    
         
            +
             
     | 
| 
      
 18173 
     | 
    
         
            +
            NameError (undefined local variable or method `search_admin_news_index' for #<Class:0x64cc368>):
         
     | 
| 
      
 18174 
     | 
    
         
            +
              app/models/news.rb:5:in `<class:News>'
         
     | 
| 
      
 18175 
     | 
    
         
            +
              app/models/news.rb:1:in `<top (required)>'
         
     | 
| 
      
 18176 
     | 
    
         
            +
              app/controllers/optimacms/admin/news_controller.rb:12:in `index'
         
     | 
| 
      
 18177 
     | 
    
         
            +
             
     | 
| 
      
 18178 
     | 
    
         
            +
             
     | 
| 
      
 18179 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (14.0ms)
         
     | 
| 
      
 18180 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (127.0ms)
         
     | 
| 
      
 18181 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (17.0ms)
         
     | 
| 
      
 18182 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (264.0ms)
         
     | 
| 
      
 18183 
     | 
    
         
            +
             
     | 
| 
      
 18184 
     | 
    
         
            +
             
     | 
| 
      
 18185 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:34:06 +0200
         
     | 
| 
      
 18186 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18187 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18188 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (2.0ms)
         
     | 
| 
      
 18189 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (15.0ms)
         
     | 
| 
      
 18190 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (84.0ms)
         
     | 
| 
      
 18191 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (5.0ms)
         
     | 
| 
      
 18192 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 18193 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 18194 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (27.0ms)
         
     | 
| 
      
 18195 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (2779.2ms)
         
     | 
| 
      
 18196 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (3063.2ms)
         
     | 
| 
      
 18197 
     | 
    
         
            +
            Completed 200 OK in 3383ms (Views: 3116.2ms | ActiveRecord: 28.0ms)
         
     | 
| 
      
 18198 
     | 
    
         
            +
             
     | 
| 
      
 18199 
     | 
    
         
            +
             
     | 
| 
      
 18200 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 22:34:15 +0200
         
     | 
| 
      
 18201 
     | 
    
         
            +
             
     | 
| 
      
 18202 
     | 
    
         
            +
             
     | 
| 
      
 18203 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 22:34:15 +0200
         
     | 
| 
      
 18204 
     | 
    
         
            +
             
     | 
| 
      
 18205 
     | 
    
         
            +
             
     | 
| 
      
 18206 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 22:34:15 +0200
         
     | 
| 
      
 18207 
     | 
    
         
            +
             
     | 
| 
      
 18208 
     | 
    
         
            +
             
     | 
| 
      
 18209 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 22:34:16 +0200
         
     | 
| 
      
 18210 
     | 
    
         
            +
             
     | 
| 
      
 18211 
     | 
    
         
            +
             
     | 
| 
      
 18212 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 22:34:16 +0200
         
     | 
| 
      
 18213 
     | 
    
         
            +
             
     | 
| 
      
 18214 
     | 
    
         
            +
             
     | 
| 
      
 18215 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 22:34:16 +0200
         
     | 
| 
      
 18216 
     | 
    
         
            +
             
     | 
| 
      
 18217 
     | 
    
         
            +
             
     | 
| 
      
 18218 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 22:34:16 +0200
         
     | 
| 
      
 18219 
     | 
    
         
            +
             
     | 
| 
      
 18220 
     | 
    
         
            +
             
     | 
| 
      
 18221 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 22:34:16 +0200
         
     | 
| 
      
 18222 
     | 
    
         
            +
             
     | 
| 
      
 18223 
     | 
    
         
            +
             
     | 
| 
      
 18224 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 22:34:16 +0200
         
     | 
| 
      
 18225 
     | 
    
         
            +
             
     | 
| 
      
 18226 
     | 
    
         
            +
             
     | 
| 
      
 18227 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:35:24 +0200
         
     | 
| 
      
 18228 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18229 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (2.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18230 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (18995.1ms)
         
     | 
| 
      
 18231 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (19054.1ms)
         
     | 
| 
      
 18232 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (19096.1ms)
         
     | 
| 
      
 18233 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (17.0ms)
         
     | 
| 
      
 18234 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (84.0ms)
         
     | 
| 
      
 18235 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (19269.1ms)
         
     | 
| 
      
 18236 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (19325.1ms)
         
     | 
| 
      
 18237 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1 )[0m
         
     | 
| 
      
 18238 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 18239 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (19704.1ms)
         
     | 
| 
      
 18240 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (9.0ms)
         
     | 
| 
      
 18241 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (63.0ms)
         
     | 
| 
      
 18242 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (3.0ms)
         
     | 
| 
      
 18243 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 18244 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (2.0ms)
         
     | 
| 
      
 18245 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (21.0ms)
         
     | 
| 
      
 18246 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (2191.1ms)
         
     | 
| 
      
 18247 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (2464.1ms)
         
     | 
| 
      
 18248 
     | 
    
         
            +
            Completed 200 OK in 22264ms (Views: 22195.3ms | ActiveRecord: 27.0ms)
         
     | 
| 
      
 18249 
     | 
    
         
            +
             
     | 
| 
      
 18250 
     | 
    
         
            +
             
     | 
| 
      
 18251 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 22:35:46 +0200
         
     | 
| 
      
 18252 
     | 
    
         
            +
             
     | 
| 
      
 18253 
     | 
    
         
            +
             
     | 
| 
      
 18254 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 22:35:46 +0200
         
     | 
| 
      
 18255 
     | 
    
         
            +
             
     | 
| 
      
 18256 
     | 
    
         
            +
             
     | 
| 
      
 18257 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 22:35:46 +0200
         
     | 
| 
      
 18258 
     | 
    
         
            +
             
     | 
| 
      
 18259 
     | 
    
         
            +
             
     | 
| 
      
 18260 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 22:35:47 +0200
         
     | 
| 
      
 18261 
     | 
    
         
            +
             
     | 
| 
      
 18262 
     | 
    
         
            +
             
     | 
| 
      
 18263 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 22:35:47 +0200
         
     | 
| 
      
 18264 
     | 
    
         
            +
             
     | 
| 
      
 18265 
     | 
    
         
            +
             
     | 
| 
      
 18266 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 22:35:47 +0200
         
     | 
| 
      
 18267 
     | 
    
         
            +
             
     | 
| 
      
 18268 
     | 
    
         
            +
             
     | 
| 
      
 18269 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 22:35:47 +0200
         
     | 
| 
      
 18270 
     | 
    
         
            +
             
     | 
| 
      
 18271 
     | 
    
         
            +
             
     | 
| 
      
 18272 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 22:35:47 +0200
         
     | 
| 
      
 18273 
     | 
    
         
            +
             
     | 
| 
      
 18274 
     | 
    
         
            +
             
     | 
| 
      
 18275 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 22:35:47 +0200
         
     | 
| 
      
 18276 
     | 
    
         
            +
             
     | 
| 
      
 18277 
     | 
    
         
            +
             
     | 
| 
      
 18278 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:38:33 +0200
         
     | 
| 
      
 18279 
     | 
    
         
            +
             
     | 
| 
      
 18280 
     | 
    
         
            +
            AbstractController::ActionNotFound (The action 'create' could not be found for Optimacms::Admin::NewsController):
         
     | 
| 
      
 18281 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:132:in `process'
         
     | 
| 
      
 18282 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 18283 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 18284 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 18285 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 18286 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 18287 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 18288 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 18289 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 18290 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 18291 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 18292 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 18293 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 18294 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 18295 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 18296 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 18297 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:38:in `call'
         
     | 
| 
      
 18298 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 18299 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 18300 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 18301 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 18302 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 18303 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 18304 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 18305 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 18306 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 18307 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 18308 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 18309 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 18310 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 18311 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18312 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 18313 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 18314 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 18315 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 18316 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 18317 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 18318 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 18319 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 18320 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 18321 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 18322 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 18323 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 18324 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 18325 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 18326 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 18327 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18328 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 18329 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 18330 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 18331 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 18332 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18333 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 18334 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 18335 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 18336 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 18337 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 18338 
     | 
    
         
            +
             
     | 
| 
      
 18339 
     | 
    
         
            +
             
     | 
| 
      
 18340 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (3.0ms)
         
     | 
| 
      
 18341 
     | 
    
         
            +
             
     | 
| 
      
 18342 
     | 
    
         
            +
             
     | 
| 
      
 18343 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:40:28 +0200
         
     | 
| 
      
 18344 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18345 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18346 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (61.0ms)
         
     | 
| 
      
 18347 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (76.0ms)
         
     | 
| 
      
 18348 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (89.0ms)
         
     | 
| 
      
 18349 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 18350 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (10.0ms)
         
     | 
| 
      
 18351 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (140.0ms)
         
     | 
| 
      
 18352 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (155.0ms)
         
     | 
| 
      
 18353 
     | 
    
         
            +
              [1m[35m (1.0ms)[0m  SELECT COUNT(*) FROM `news` WHERE (1=1 )
         
     | 
| 
      
 18354 
     | 
    
         
            +
              [1m[36mNews Load (0.0ms)[0m  [1mSELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0[0m
         
     | 
| 
      
 18355 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (10056.6ms)
         
     | 
| 
      
 18356 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (7.0ms)
         
     | 
| 
      
 18357 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (32.0ms)
         
     | 
| 
      
 18358 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (4.0ms)
         
     | 
| 
      
 18359 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 18360 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 18361 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (74.0ms)
         
     | 
| 
      
 18362 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1782.1ms)
         
     | 
| 
      
 18363 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (2019.1ms)
         
     | 
| 
      
 18364 
     | 
    
         
            +
            Completed 200 OK in 12207ms (Views: 12150.7ms | ActiveRecord: 2.0ms)
         
     | 
| 
      
 18365 
     | 
    
         
            +
             
     | 
| 
      
 18366 
     | 
    
         
            +
             
     | 
| 
      
 18367 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 22:40:40 +0200
         
     | 
| 
      
 18368 
     | 
    
         
            +
             
     | 
| 
      
 18369 
     | 
    
         
            +
             
     | 
| 
      
 18370 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 22:40:40 +0200
         
     | 
| 
      
 18371 
     | 
    
         
            +
             
     | 
| 
      
 18372 
     | 
    
         
            +
             
     | 
| 
      
 18373 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 22:40:41 +0200
         
     | 
| 
      
 18374 
     | 
    
         
            +
             
     | 
| 
      
 18375 
     | 
    
         
            +
             
     | 
| 
      
 18376 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 22:40:41 +0200
         
     | 
| 
      
 18377 
     | 
    
         
            +
             
     | 
| 
      
 18378 
     | 
    
         
            +
             
     | 
| 
      
 18379 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 22:40:41 +0200
         
     | 
| 
      
 18380 
     | 
    
         
            +
             
     | 
| 
      
 18381 
     | 
    
         
            +
             
     | 
| 
      
 18382 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 22:40:41 +0200
         
     | 
| 
      
 18383 
     | 
    
         
            +
             
     | 
| 
      
 18384 
     | 
    
         
            +
             
     | 
| 
      
 18385 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 22:40:41 +0200
         
     | 
| 
      
 18386 
     | 
    
         
            +
             
     | 
| 
      
 18387 
     | 
    
         
            +
             
     | 
| 
      
 18388 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 22:40:41 +0200
         
     | 
| 
      
 18389 
     | 
    
         
            +
             
     | 
| 
      
 18390 
     | 
    
         
            +
             
     | 
| 
      
 18391 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 22:40:41 +0200
         
     | 
| 
      
 18392 
     | 
    
         
            +
             
     | 
| 
      
 18393 
     | 
    
         
            +
             
     | 
| 
      
 18394 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 22:43:32 +0200
         
     | 
| 
      
 18395 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (2.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 18396 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18397 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18398 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (14115.8ms)
         
     | 
| 
      
 18399 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (14141.8ms)
         
     | 
| 
      
 18400 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (14163.8ms)
         
     | 
| 
      
 18401 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (21.0ms)
         
     | 
| 
      
 18402 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (90.0ms)
         
     | 
| 
      
 18403 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (14314.8ms)
         
     | 
| 
      
 18404 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (14349.8ms)
         
     | 
| 
      
 18405 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1 )[0m
         
     | 
| 
      
 18406 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 18407 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (19496.1ms)
         
     | 
| 
      
 18408 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (89.0ms)
         
     | 
| 
      
 18409 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (169.0ms)
         
     | 
| 
      
 18410 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (20.0ms)
         
     | 
| 
      
 18411 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (49.0ms)
         
     | 
| 
      
 18412 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (14.0ms)
         
     | 
| 
      
 18413 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (56.0ms)
         
     | 
| 
      
 18414 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (3359.2ms)
         
     | 
| 
      
 18415 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (3963.2ms)
         
     | 
| 
      
 18416 
     | 
    
         
            +
            Completed 200 OK in 23889ms (Views: 23568.3ms | ActiveRecord: 53.0ms)
         
     | 
| 
      
 18417 
     | 
    
         
            +
             
     | 
| 
      
 18418 
     | 
    
         
            +
             
     | 
| 
      
 18419 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 22:43:56 +0200
         
     | 
| 
      
 18420 
     | 
    
         
            +
             
     | 
| 
      
 18421 
     | 
    
         
            +
             
     | 
| 
      
 18422 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 22:43:57 +0200
         
     | 
| 
      
 18423 
     | 
    
         
            +
             
     | 
| 
      
 18424 
     | 
    
         
            +
             
     | 
| 
      
 18425 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 22:43:57 +0200
         
     | 
| 
      
 18426 
     | 
    
         
            +
             
     | 
| 
      
 18427 
     | 
    
         
            +
             
     | 
| 
      
 18428 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 22:43:57 +0200
         
     | 
| 
      
 18429 
     | 
    
         
            +
             
     | 
| 
      
 18430 
     | 
    
         
            +
             
     | 
| 
      
 18431 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 22:43:57 +0200
         
     | 
| 
      
 18432 
     | 
    
         
            +
             
     | 
| 
      
 18433 
     | 
    
         
            +
             
     | 
| 
      
 18434 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 22:43:57 +0200
         
     | 
| 
      
 18435 
     | 
    
         
            +
             
     | 
| 
      
 18436 
     | 
    
         
            +
             
     | 
| 
      
 18437 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 22:43:58 +0200
         
     | 
| 
      
 18438 
     | 
    
         
            +
             
     | 
| 
      
 18439 
     | 
    
         
            +
             
     | 
| 
      
 18440 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 22:43:58 +0200
         
     | 
| 
      
 18441 
     | 
    
         
            +
             
     | 
| 
      
 18442 
     | 
    
         
            +
             
     | 
| 
      
 18443 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 22:43:58 +0200
         
     | 
| 
      
 18444 
     | 
    
         
            +
             
     | 
| 
      
 18445 
     | 
    
         
            +
             
     | 
| 
      
 18446 
     | 
    
         
            +
            Started GET "/assets/fontawesome-webfont-9e05603dba2fcd6ce30a144015b0f46d.woff2?v=4.3.0" for 127.0.0.1 at 2015-12-15 22:43:58 +0200
         
     | 
| 
      
 18447 
     | 
    
         
            +
             
     | 
| 
      
 18448 
     | 
    
         
            +
             
     | 
| 
      
 18449 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:44:00 +0200
         
     | 
| 
      
 18450 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18451 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 18452 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18453 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 18454 
     | 
    
         
            +
            Completed 500 Internal Server Error in 62ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 18455 
     | 
    
         
            +
             
     | 
| 
      
 18456 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 18457 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 18458 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 18459 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 18460 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 18461 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:156:in `url_for'
         
     | 
| 
      
 18462 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 18463 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 18464 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 18465 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 18466 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18467 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18468 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18469 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 18470 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:61:in `init_search_data'
         
     | 
| 
      
 18471 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:82:in `block in search_filter'
         
     | 
| 
      
 18472 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 18473 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 18474 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 18475 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18476 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 18477 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 18478 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18479 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 18480 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 18481 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18482 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 18483 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 18484 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 18485 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18486 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18487 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18488 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 18489 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 18490 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 18491 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 18492 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 18493 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 18494 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 18495 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 18496 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 18497 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 18498 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 18499 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 18500 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 18501 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 18502 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 18503 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 18504 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 18505 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 18506 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 18507 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 18508 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 18509 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 18510 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 18511 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 18512 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 18513 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 18514 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 18515 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 18516 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 18517 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 18518 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 18519 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 18520 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 18521 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18522 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 18523 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 18524 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 18525 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 18526 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 18527 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 18528 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 18529 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 18530 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 18531 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 18532 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 18533 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 18534 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 18535 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 18536 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 18537 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18538 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 18539 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 18540 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 18541 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 18542 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18543 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 18544 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 18545 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 18546 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 18547 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 18548 
     | 
    
         
            +
             
     | 
| 
      
 18549 
     | 
    
         
            +
             
     | 
| 
      
 18550 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
         
     | 
| 
      
 18551 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (119.0ms)
         
     | 
| 
      
 18552 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.0ms)
         
     | 
| 
      
 18553 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (306.0ms)
         
     | 
| 
      
 18554 
     | 
    
         
            +
             
     | 
| 
      
 18555 
     | 
    
         
            +
             
     | 
| 
      
 18556 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:50:39 +0200
         
     | 
| 
      
 18557 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18558 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 18559 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18560 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 18561 
     | 
    
         
            +
            Completed 500 Internal Server Error in 20ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 18562 
     | 
    
         
            +
             
     | 
| 
      
 18563 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 18564 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 18565 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 18566 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 18567 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 18568 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:156:in `url_for'
         
     | 
| 
      
 18569 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 18570 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 18571 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 18572 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 18573 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18574 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18575 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18576 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 18577 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:61:in `init_search_data'
         
     | 
| 
      
 18578 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:82:in `block in search_filter'
         
     | 
| 
      
 18579 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 18580 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 18581 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 18582 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18583 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 18584 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 18585 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18586 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 18587 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 18588 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18589 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 18590 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 18591 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 18592 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18593 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18594 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18595 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 18596 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 18597 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 18598 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 18599 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 18600 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 18601 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 18602 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 18603 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 18604 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 18605 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 18606 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 18607 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 18608 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 18609 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 18610 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 18611 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 18612 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 18613 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 18614 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 18615 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 18616 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 18617 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 18618 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 18619 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 18620 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 18621 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 18622 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 18623 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 18624 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 18625 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 18626 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 18627 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 18628 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18629 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 18630 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 18631 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 18632 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 18633 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 18634 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 18635 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 18636 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 18637 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 18638 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 18639 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 18640 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 18641 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 18642 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 18643 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 18644 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18645 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 18646 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 18647 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 18648 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 18649 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18650 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 18651 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 18652 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 18653 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 18654 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 18655 
     | 
    
         
            +
             
     | 
| 
      
 18656 
     | 
    
         
            +
             
     | 
| 
      
 18657 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
         
     | 
| 
      
 18658 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (52.0ms)
         
     | 
| 
      
 18659 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms)
         
     | 
| 
      
 18660 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (103.0ms)
         
     | 
| 
      
 18661 
     | 
    
         
            +
             
     | 
| 
      
 18662 
     | 
    
         
            +
             
     | 
| 
      
 18663 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:51:14 +0200
         
     | 
| 
      
 18664 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18665 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 18666 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (2.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18667 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 18668 
     | 
    
         
            +
            Completed 500 Internal Server Error in 158ms (ActiveRecord: 16.0ms)
         
     | 
| 
      
 18669 
     | 
    
         
            +
             
     | 
| 
      
 18670 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 18671 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 18672 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 18673 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 18674 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 18675 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:156:in `url_for'
         
     | 
| 
      
 18676 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 18677 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 18678 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 18679 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 18680 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18681 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18682 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18683 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 18684 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:61:in `init_search_data'
         
     | 
| 
      
 18685 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:82:in `block in search_filter'
         
     | 
| 
      
 18686 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 18687 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 18688 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 18689 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18690 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 18691 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 18692 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18693 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 18694 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 18695 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18696 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 18697 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 18698 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 18699 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18700 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18701 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18702 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 18703 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 18704 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 18705 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 18706 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 18707 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 18708 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 18709 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 18710 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 18711 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 18712 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 18713 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 18714 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 18715 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 18716 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 18717 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 18718 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 18719 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 18720 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 18721 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 18722 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 18723 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 18724 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 18725 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 18726 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 18727 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 18728 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 18729 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 18730 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 18731 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 18732 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 18733 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 18734 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 18735 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18736 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 18737 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 18738 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 18739 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 18740 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 18741 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 18742 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 18743 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 18744 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 18745 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 18746 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 18747 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 18748 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 18749 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 18750 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 18751 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18752 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 18753 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 18754 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 18755 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 18756 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18757 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 18758 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 18759 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 18760 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 18761 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 18762 
     | 
    
         
            +
             
     | 
| 
      
 18763 
     | 
    
         
            +
             
     | 
| 
      
 18764 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms)
         
     | 
| 
      
 18765 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (65.0ms)
         
     | 
| 
      
 18766 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (18.0ms)
         
     | 
| 
      
 18767 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (148.0ms)
         
     | 
| 
      
 18768 
     | 
    
         
            +
             
     | 
| 
      
 18769 
     | 
    
         
            +
             
     | 
| 
      
 18770 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:52:08 +0200
         
     | 
| 
      
 18771 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18772 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 18773 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (2.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18774 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 18775 
     | 
    
         
            +
            Completed 500 Internal Server Error in 24ms (ActiveRecord: 2.0ms)
         
     | 
| 
      
 18776 
     | 
    
         
            +
             
     | 
| 
      
 18777 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 18778 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 18779 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 18780 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 18781 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 18782 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:156:in `url_for'
         
     | 
| 
      
 18783 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 18784 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 18785 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 18786 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 18787 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18788 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18789 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18790 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 18791 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:61:in `init_search_data'
         
     | 
| 
      
 18792 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:82:in `block in search_filter'
         
     | 
| 
      
 18793 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 18794 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 18795 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 18796 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18797 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 18798 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 18799 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18800 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 18801 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 18802 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18803 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 18804 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 18805 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 18806 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18807 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18808 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18809 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 18810 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 18811 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 18812 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 18813 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 18814 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 18815 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 18816 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 18817 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 18818 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 18819 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 18820 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 18821 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 18822 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 18823 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 18824 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 18825 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 18826 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 18827 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 18828 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 18829 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 18830 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 18831 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 18832 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 18833 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 18834 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 18835 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 18836 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 18837 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 18838 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 18839 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 18840 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 18841 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 18842 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18843 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 18844 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 18845 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 18846 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 18847 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 18848 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 18849 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 18850 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 18851 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 18852 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 18853 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 18854 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 18855 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 18856 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 18857 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 18858 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18859 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 18860 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 18861 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 18862 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 18863 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18864 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 18865 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 18866 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 18867 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 18868 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 18869 
     | 
    
         
            +
             
     | 
| 
      
 18870 
     | 
    
         
            +
             
     | 
| 
      
 18871 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
         
     | 
| 
      
 18872 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (79.0ms)
         
     | 
| 
      
 18873 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.0ms)
         
     | 
| 
      
 18874 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (145.0ms)
         
     | 
| 
      
 18875 
     | 
    
         
            +
             
     | 
| 
      
 18876 
     | 
    
         
            +
             
     | 
| 
      
 18877 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:53:03 +0200
         
     | 
| 
      
 18878 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18879 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 18880 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (0.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 18881 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 18882 
     | 
    
         
            +
            Completed 500 Internal Server Error in 9451ms (ActiveRecord: 0.0ms)
         
     | 
| 
      
 18883 
     | 
    
         
            +
             
     | 
| 
      
 18884 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 18885 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 18886 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 18887 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 18888 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 18889 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:156:in `url_for'
         
     | 
| 
      
 18890 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 18891 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 18892 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 18893 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 18894 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18895 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18896 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18897 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 18898 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:61:in `init_search_data'
         
     | 
| 
      
 18899 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:82:in `block in search_filter'
         
     | 
| 
      
 18900 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 18901 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 18902 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 18903 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18904 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 18905 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 18906 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 18907 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 18908 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 18909 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18910 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 18911 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 18912 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 18913 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 18914 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 18915 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 18916 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 18917 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 18918 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 18919 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 18920 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 18921 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 18922 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 18923 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 18924 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 18925 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 18926 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 18927 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 18928 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 18929 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 18930 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 18931 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 18932 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 18933 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 18934 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 18935 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 18936 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 18937 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 18938 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 18939 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 18940 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 18941 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 18942 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 18943 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 18944 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 18945 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 18946 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 18947 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 18948 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 18949 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 18950 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 18951 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 18952 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 18953 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 18954 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 18955 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 18956 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 18957 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 18958 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 18959 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 18960 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 18961 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 18962 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 18963 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 18964 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 18965 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18966 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 18967 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 18968 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 18969 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 18970 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 18971 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 18972 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 18973 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 18974 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 18975 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 18976 
     | 
    
         
            +
             
     | 
| 
      
 18977 
     | 
    
         
            +
             
     | 
| 
      
 18978 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
         
     | 
| 
      
 18979 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (66.0ms)
         
     | 
| 
      
 18980 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.0ms)
         
     | 
| 
      
 18981 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (127.0ms)
         
     | 
| 
      
 18982 
     | 
    
         
            +
             
     | 
| 
      
 18983 
     | 
    
         
            +
             
     | 
| 
      
 18984 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:54:14 +0200
         
     | 
| 
      
 18985 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 18986 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 18987 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 18988 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 18989 
     | 
    
         
            +
            Completed 500 Internal Server Error in 19505ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 18990 
     | 
    
         
            +
             
     | 
| 
      
 18991 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 18992 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 18993 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 18994 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 18995 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 18996 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:156:in `url_for'
         
     | 
| 
      
 18997 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 18998 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 18999 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 19000 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 19001 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 19002 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 19003 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 19004 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 19005 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:61:in `init_search_data'
         
     | 
| 
      
 19006 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:82:in `block in search_filter'
         
     | 
| 
      
 19007 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 19008 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 19009 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 19010 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 19011 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 19012 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 19013 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 19014 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 19015 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 19016 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19017 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 19018 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 19019 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 19020 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 19021 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 19022 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 19023 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 19024 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 19025 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 19026 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 19027 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 19028 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 19029 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 19030 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 19031 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 19032 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 19033 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 19034 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 19035 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 19036 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 19037 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 19038 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 19039 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 19040 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 19041 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 19042 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 19043 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 19044 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 19045 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 19046 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 19047 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 19048 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 19049 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 19050 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 19051 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 19052 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 19053 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 19054 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 19055 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 19056 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19057 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 19058 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 19059 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 19060 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 19061 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 19062 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 19063 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 19064 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 19065 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 19066 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 19067 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 19068 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 19069 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 19070 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 19071 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 19072 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19073 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 19074 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 19075 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 19076 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 19077 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19078 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 19079 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 19080 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 19081 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 19082 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 19083 
     | 
    
         
            +
             
     | 
| 
      
 19084 
     | 
    
         
            +
             
     | 
| 
      
 19085 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.0ms)
         
     | 
| 
      
 19086 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (160.0ms)
         
     | 
| 
      
 19087 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.0ms)
         
     | 
| 
      
 19088 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (254.0ms)
         
     | 
| 
      
 19089 
     | 
    
         
            +
             
     | 
| 
      
 19090 
     | 
    
         
            +
             
     | 
| 
      
 19091 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 22:59:48 +0200
         
     | 
| 
      
 19092 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 19093 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19094 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 19095 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19096 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 19097 
     | 
    
         
            +
            Completed 500 Internal Server Error in 16226ms (ActiveRecord: 22.0ms)
         
     | 
| 
      
 19098 
     | 
    
         
            +
             
     | 
| 
      
 19099 
     | 
    
         
            +
            NoMethodError (undefined method `admin_news_index_url_url' for #<Optimacms::Admin::NewsController:0x98d73e0>):
         
     | 
| 
      
 19100 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/polymorphic_routes.rb:239:in `handle_string_call'
         
     | 
| 
      
 19101 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:161:in `url_for'
         
     | 
| 
      
 19102 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 19103 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 19104 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 19105 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 19106 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 19107 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 19108 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 19109 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 19110 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:63:in `init_search_data'
         
     | 
| 
      
 19111 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:85:in `block in search_filter'
         
     | 
| 
      
 19112 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 19113 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 19114 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 19115 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 19116 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 19117 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 19118 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 19119 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 19120 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 19121 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19122 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 19123 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 19124 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 19125 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 19126 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 19127 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 19128 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 19129 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 19130 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 19131 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 19132 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 19133 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 19134 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 19135 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 19136 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 19137 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 19138 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 19139 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 19140 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 19141 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 19142 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 19143 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 19144 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 19145 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 19146 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 19147 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 19148 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 19149 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 19150 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 19151 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 19152 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 19153 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 19154 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 19155 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 19156 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 19157 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 19158 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 19159 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 19160 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 19161 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19162 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 19163 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 19164 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 19165 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 19166 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 19167 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 19168 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 19169 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 19170 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 19171 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 19172 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 19173 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 19174 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 19175 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 19176 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 19177 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19178 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 19179 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 19180 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 19181 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 19182 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19183 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 19184 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 19185 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 19186 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 19187 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 19188 
     | 
    
         
            +
             
     | 
| 
      
 19189 
     | 
    
         
            +
             
     | 
| 
      
 19190 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.0ms)
         
     | 
| 
      
 19191 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (71.0ms)
         
     | 
| 
      
 19192 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.0ms)
         
     | 
| 
      
 19193 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (222.0ms)
         
     | 
| 
      
 19194 
     | 
    
         
            +
             
     | 
| 
      
 19195 
     | 
    
         
            +
             
     | 
| 
      
 19196 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 23:02:34 +0200
         
     | 
| 
      
 19197 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 19198 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19199 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 19200 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19201 
     | 
    
         
            +
            Completed 500 Internal Server Error in 177ms (ActiveRecord: 16.0ms)
         
     | 
| 
      
 19202 
     | 
    
         
            +
             
     | 
| 
      
 19203 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 19204 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 19205 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 19206 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 19207 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 19208 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:280:in `call'
         
     | 
| 
      
 19209 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:223:in `call'
         
     | 
| 
      
 19210 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:345:in `block (2 levels) in define_url_helper'
         
     | 
| 
      
 19211 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:63:in `init_search_data'
         
     | 
| 
      
 19212 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:85:in `block in search_filter'
         
     | 
| 
      
 19213 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
         
     | 
| 
      
 19214 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `call'
         
     | 
| 
      
 19215 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:145:in `block in halting_and_conditional'
         
     | 
| 
      
 19216 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 19217 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
         
     | 
| 
      
 19218 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
         
     | 
| 
      
 19219 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
         
     | 
| 
      
 19220 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 19221 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 19222 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19223 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 19224 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 19225 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 19226 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 19227 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 19228 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 19229 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 19230 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 19231 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 19232 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 19233 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 19234 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 19235 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 19236 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 19237 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 19238 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 19239 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 19240 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 19241 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 19242 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 19243 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 19244 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 19245 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 19246 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 19247 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 19248 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
         
     | 
| 
      
 19249 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 19250 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 19251 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 19252 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 19253 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 19254 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 19255 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 19256 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 19257 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 19258 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 19259 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 19260 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 19261 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 19262 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19263 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 19264 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 19265 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 19266 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 19267 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 19268 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 19269 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 19270 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 19271 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 19272 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 19273 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 19274 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 19275 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 19276 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 19277 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 19278 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19279 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 19280 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 19281 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 19282 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 19283 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19284 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 19285 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 19286 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 19287 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 19288 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 19289 
     | 
    
         
            +
             
     | 
| 
      
 19290 
     | 
    
         
            +
             
     | 
| 
      
 19291 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms)
         
     | 
| 
      
 19292 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (67.0ms)
         
     | 
| 
      
 19293 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.0ms)
         
     | 
| 
      
 19294 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (153.0ms)
         
     | 
| 
      
 19295 
     | 
    
         
            +
             
     | 
| 
      
 19296 
     | 
    
         
            +
             
     | 
| 
      
 19297 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 23:07:10 +0200
         
     | 
| 
      
 19298 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (0.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 19299 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19300 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 19301 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (0.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19302 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 19303 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 19304 
     | 
    
         
            +
            Completed 302 Found in 137ms (ActiveRecord: 12.0ms)
         
     | 
| 
      
 19305 
     | 
    
         
            +
             
     | 
| 
      
 19306 
     | 
    
         
            +
             
     | 
| 
      
 19307 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:07:11 +0200
         
     | 
| 
      
 19308 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19309 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19310 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (10260.6ms)
         
     | 
| 
      
 19311 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (10282.6ms)
         
     | 
| 
      
 19312 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (10305.6ms)
         
     | 
| 
      
 19313 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (7.0ms)
         
     | 
| 
      
 19314 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (20.0ms)
         
     | 
| 
      
 19315 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (10362.6ms)
         
     | 
| 
      
 19316 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (10381.6ms)
         
     | 
| 
      
 19317 
     | 
    
         
            +
              [1m[35m (1.0ms)[0m  SELECT COUNT(*) FROM `news` WHERE (1=1 )
         
     | 
| 
      
 19318 
     | 
    
         
            +
              [1m[36mNews Load (1.0ms)[0m  [1mSELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id asc LIMIT 25 OFFSET 0[0m
         
     | 
| 
      
 19319 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (10546.6ms)
         
     | 
| 
      
 19320 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (108.0ms)
         
     | 
| 
      
 19321 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (123.0ms)
         
     | 
| 
      
 19322 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (33.0ms)
         
     | 
| 
      
 19323 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (34.0ms)
         
     | 
| 
      
 19324 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (9.0ms)
         
     | 
| 
      
 19325 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (45.0ms)
         
     | 
| 
      
 19326 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1836.1ms)
         
     | 
| 
      
 19327 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (2328.1ms)
         
     | 
| 
      
 19328 
     | 
    
         
            +
            Completed 200 OK in 13012ms (Views: 12943.7ms | ActiveRecord: 21.0ms)
         
     | 
| 
      
 19329 
     | 
    
         
            +
             
     | 
| 
      
 19330 
     | 
    
         
            +
             
     | 
| 
      
 19331 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:07:24 +0200
         
     | 
| 
      
 19332 
     | 
    
         
            +
             
     | 
| 
      
 19333 
     | 
    
         
            +
             
     | 
| 
      
 19334 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:07:24 +0200
         
     | 
| 
      
 19335 
     | 
    
         
            +
             
     | 
| 
      
 19336 
     | 
    
         
            +
             
     | 
| 
      
 19337 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:25 +0200
         
     | 
| 
      
 19338 
     | 
    
         
            +
             
     | 
| 
      
 19339 
     | 
    
         
            +
             
     | 
| 
      
 19340 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:25 +0200
         
     | 
| 
      
 19341 
     | 
    
         
            +
             
     | 
| 
      
 19342 
     | 
    
         
            +
             
     | 
| 
      
 19343 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:25 +0200
         
     | 
| 
      
 19344 
     | 
    
         
            +
             
     | 
| 
      
 19345 
     | 
    
         
            +
             
     | 
| 
      
 19346 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:25 +0200
         
     | 
| 
      
 19347 
     | 
    
         
            +
             
     | 
| 
      
 19348 
     | 
    
         
            +
             
     | 
| 
      
 19349 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:25 +0200
         
     | 
| 
      
 19350 
     | 
    
         
            +
             
     | 
| 
      
 19351 
     | 
    
         
            +
             
     | 
| 
      
 19352 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:25 +0200
         
     | 
| 
      
 19353 
     | 
    
         
            +
             
     | 
| 
      
 19354 
     | 
    
         
            +
             
     | 
| 
      
 19355 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:25 +0200
         
     | 
| 
      
 19356 
     | 
    
         
            +
             
     | 
| 
      
 19357 
     | 
    
         
            +
             
     | 
| 
      
 19358 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=desc" for 127.0.0.1 at 2015-12-15 23:07:32 +0200
         
     | 
| 
      
 19359 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19360 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"desc"}
         
     | 
| 
      
 19361 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19362 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 19363 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 19364 
     | 
    
         
            +
            Completed 302 Found in 19ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 19365 
     | 
    
         
            +
             
     | 
| 
      
 19366 
     | 
    
         
            +
             
     | 
| 
      
 19367 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:07:33 +0200
         
     | 
| 
      
 19368 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19369 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19370 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (31.0ms)
         
     | 
| 
      
 19371 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (38.0ms)
         
     | 
| 
      
 19372 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (44.0ms)
         
     | 
| 
      
 19373 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 19374 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (6.0ms)
         
     | 
| 
      
 19375 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (73.0ms)
         
     | 
| 
      
 19376 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (78.0ms)
         
     | 
| 
      
 19377 
     | 
    
         
            +
              [1m[35m (1.0ms)[0m  SELECT COUNT(*) FROM `news` WHERE (1=1 )
         
     | 
| 
      
 19378 
     | 
    
         
            +
              [1m[36mNews Load (2.0ms)[0m  [1mSELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0[0m
         
     | 
| 
      
 19379 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (110.0ms)
         
     | 
| 
      
 19380 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (5.0ms)
         
     | 
| 
      
 19381 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (36.0ms)
         
     | 
| 
      
 19382 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (1.0ms)
         
     | 
| 
      
 19383 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 19384 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 19385 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (10.0ms)
         
     | 
| 
      
 19386 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (875.1ms)
         
     | 
| 
      
 19387 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1050.1ms)
         
     | 
| 
      
 19388 
     | 
    
         
            +
            Completed 200 OK in 1203ms (Views: 1180.1ms | ActiveRecord: 4.0ms)
         
     | 
| 
      
 19389 
     | 
    
         
            +
             
     | 
| 
      
 19390 
     | 
    
         
            +
             
     | 
| 
      
 19391 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19392 
     | 
    
         
            +
             
     | 
| 
      
 19393 
     | 
    
         
            +
             
     | 
| 
      
 19394 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19395 
     | 
    
         
            +
             
     | 
| 
      
 19396 
     | 
    
         
            +
             
     | 
| 
      
 19397 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19398 
     | 
    
         
            +
             
     | 
| 
      
 19399 
     | 
    
         
            +
             
     | 
| 
      
 19400 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19401 
     | 
    
         
            +
             
     | 
| 
      
 19402 
     | 
    
         
            +
             
     | 
| 
      
 19403 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19404 
     | 
    
         
            +
             
     | 
| 
      
 19405 
     | 
    
         
            +
             
     | 
| 
      
 19406 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19407 
     | 
    
         
            +
             
     | 
| 
      
 19408 
     | 
    
         
            +
             
     | 
| 
      
 19409 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19410 
     | 
    
         
            +
             
     | 
| 
      
 19411 
     | 
    
         
            +
             
     | 
| 
      
 19412 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19413 
     | 
    
         
            +
             
     | 
| 
      
 19414 
     | 
    
         
            +
             
     | 
| 
      
 19415 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:34 +0200
         
     | 
| 
      
 19416 
     | 
    
         
            +
             
     | 
| 
      
 19417 
     | 
    
         
            +
             
     | 
| 
      
 19418 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 23:07:35 +0200
         
     | 
| 
      
 19419 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19420 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 19421 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19422 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 19423 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 19424 
     | 
    
         
            +
            Completed 302 Found in 22ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 19425 
     | 
    
         
            +
             
     | 
| 
      
 19426 
     | 
    
         
            +
             
     | 
| 
      
 19427 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:07:35 +0200
         
     | 
| 
      
 19428 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19429 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (0.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19430 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (32.0ms)
         
     | 
| 
      
 19431 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (40.0ms)
         
     | 
| 
      
 19432 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (46.0ms)
         
     | 
| 
      
 19433 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (0.0ms)
         
     | 
| 
      
 19434 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (11.0ms)
         
     | 
| 
      
 19435 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (78.0ms)
         
     | 
| 
      
 19436 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (86.0ms)
         
     | 
| 
      
 19437 
     | 
    
         
            +
              [1m[35m (1.0ms)[0m  SELECT COUNT(*) FROM `news` WHERE (1=1 )
         
     | 
| 
      
 19438 
     | 
    
         
            +
              [1m[36mNews Load (1.0ms)[0m  [1mSELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id asc LIMIT 25 OFFSET 0[0m
         
     | 
| 
      
 19439 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (128.0ms)
         
     | 
| 
      
 19440 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (6.0ms)
         
     | 
| 
      
 19441 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (34.0ms)
         
     | 
| 
      
 19442 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (1.0ms)
         
     | 
| 
      
 19443 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (6.0ms)
         
     | 
| 
      
 19444 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 19445 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (13.0ms)
         
     | 
| 
      
 19446 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1234.1ms)
         
     | 
| 
      
 19447 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1400.1ms)
         
     | 
| 
      
 19448 
     | 
    
         
            +
            Completed 200 OK in 1576ms (Views: 1552.1ms | ActiveRecord: 2.0ms)
         
     | 
| 
      
 19449 
     | 
    
         
            +
             
     | 
| 
      
 19450 
     | 
    
         
            +
             
     | 
| 
      
 19451 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:07:37 +0200
         
     | 
| 
      
 19452 
     | 
    
         
            +
             
     | 
| 
      
 19453 
     | 
    
         
            +
             
     | 
| 
      
 19454 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:37 +0200
         
     | 
| 
      
 19455 
     | 
    
         
            +
             
     | 
| 
      
 19456 
     | 
    
         
            +
             
     | 
| 
      
 19457 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:37 +0200
         
     | 
| 
      
 19458 
     | 
    
         
            +
             
     | 
| 
      
 19459 
     | 
    
         
            +
             
     | 
| 
      
 19460 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:38 +0200
         
     | 
| 
      
 19461 
     | 
    
         
            +
             
     | 
| 
      
 19462 
     | 
    
         
            +
             
     | 
| 
      
 19463 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:38 +0200
         
     | 
| 
      
 19464 
     | 
    
         
            +
             
     | 
| 
      
 19465 
     | 
    
         
            +
             
     | 
| 
      
 19466 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:07:38 +0200
         
     | 
| 
      
 19467 
     | 
    
         
            +
             
     | 
| 
      
 19468 
     | 
    
         
            +
             
     | 
| 
      
 19469 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:38 +0200
         
     | 
| 
      
 19470 
     | 
    
         
            +
             
     | 
| 
      
 19471 
     | 
    
         
            +
             
     | 
| 
      
 19472 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:38 +0200
         
     | 
| 
      
 19473 
     | 
    
         
            +
             
     | 
| 
      
 19474 
     | 
    
         
            +
             
     | 
| 
      
 19475 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:07:38 +0200
         
     | 
| 
      
 19476 
     | 
    
         
            +
             
     | 
| 
      
 19477 
     | 
    
         
            +
             
     | 
| 
      
 19478 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:07:52 +0200
         
     | 
| 
      
 19479 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 19480 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"3feN2E8DuZSJTv9IjDyU0JT3ZXYb0y6xuoIasH0deZsRYv6ncCZeu6Dwngj4xKFYVNDwvQ+Ig/PAfvAQViNaqA==", "filter_cmd"=>"apply", "filter"=>{"title"=>"h"}}
         
     | 
| 
      
 19481 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19482 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 19483 
     | 
    
         
            +
            Completed 500 Internal Server Error in 5756ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 19484 
     | 
    
         
            +
             
     | 
| 
      
 19485 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 19486 
     | 
    
         
            +
              app/controllers/optimacms/admin/news_controller.rb:17:in `search'
         
     | 
| 
      
 19487 
     | 
    
         
            +
             
     | 
| 
      
 19488 
     | 
    
         
            +
             
     | 
| 
      
 19489 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
         
     | 
| 
      
 19490 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (66.0ms)
         
     | 
| 
      
 19491 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.0ms)
         
     | 
| 
      
 19492 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (133.0ms)
         
     | 
| 
      
 19493 
     | 
    
         
            +
             
     | 
| 
      
 19494 
     | 
    
         
            +
             
     | 
| 
      
 19495 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:08:02 +0200
         
     | 
| 
      
 19496 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 19497 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"3feN2E8DuZSJTv9IjDyU0JT3ZXYb0y6xuoIasH0deZsRYv6ncCZeu6Dwngj4xKFYVNDwvQ+Ig/PAfvAQViNaqA==", "filter_cmd"=>"apply", "filter"=>{"title"=>"h"}}
         
     | 
| 
      
 19498 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19499 
     | 
    
         
            +
            Redirected to 
         
     | 
| 
      
 19500 
     | 
    
         
            +
            Completed 500 Internal Server Error in 151ms (ActiveRecord: 14.0ms)
         
     | 
| 
      
 19501 
     | 
    
         
            +
             
     | 
| 
      
 19502 
     | 
    
         
            +
            ActionController::UrlGenerationError (No route matches {:action=>"index", :controller=>"optimacms/admin/news"}):
         
     | 
| 
      
 19503 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/formatter.rb:46:in `generate'
         
     | 
| 
      
 19504 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:727:in `generate'
         
     | 
| 
      
 19505 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:758:in `generate'
         
     | 
| 
      
 19506 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:801:in `url_for'
         
     | 
| 
      
 19507 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/url_for.rb:156:in `url_for'
         
     | 
| 
      
 19508 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:95:in `_compute_redirect_to_location'
         
     | 
| 
      
 19509 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/redirecting.rb:75:in `redirect_to'
         
     | 
| 
      
 19510 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/flash.rb:57:in `redirect_to'
         
     | 
| 
      
 19511 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:64:in `block in redirect_to'
         
     | 
| 
      
 19512 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 19513 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 19514 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 19515 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:63:in `redirect_to'
         
     | 
| 
      
 19516 
     | 
    
         
            +
              simple_search_filter (0.0.29) lib/simple_search_filter/controller.rb:95:in `block in search_filter'
         
     | 
| 
      
 19517 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
         
     | 
| 
      
 19518 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
         
     | 
| 
      
 19519 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
         
     | 
| 
      
 19520 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
         
     | 
| 
      
 19521 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
         
     | 
| 
      
 19522 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
         
     | 
| 
      
 19523 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
         
     | 
| 
      
 19524 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
         
     | 
| 
      
 19525 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
         
     | 
| 
      
 19526 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
         
     | 
| 
      
 19527 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
         
     | 
| 
      
 19528 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19529 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
         
     | 
| 
      
 19530 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
         
     | 
| 
      
 19531 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
         
     | 
| 
      
 19532 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
         
     | 
| 
      
 19533 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
         
     | 
| 
      
 19534 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
         
     | 
| 
      
 19535 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
         
     | 
| 
      
 19536 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
         
     | 
| 
      
 19537 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
         
     | 
| 
      
 19538 
     | 
    
         
            +
              actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
         
     | 
| 
      
 19539 
     | 
    
         
            +
              actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
         
     | 
| 
      
 19540 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
         
     | 
| 
      
 19541 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
         
     | 
| 
      
 19542 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
         
     | 
| 
      
 19543 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
         
     | 
| 
      
 19544 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
         
     | 
| 
      
 19545 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
         
     | 
| 
      
 19546 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
         
     | 
| 
      
 19547 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
         
     | 
| 
      
 19548 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
         
     | 
| 
      
 19549 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
         
     | 
| 
      
 19550 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
         
     | 
| 
      
 19551 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `catch'
         
     | 
| 
      
 19552 
     | 
    
         
            +
              warden (1.2.3) lib/warden/manager.rb:34:in `call'
         
     | 
| 
      
 19553 
     | 
    
         
            +
              rack (1.6.1) lib/rack/etag.rb:24:in `call'
         
     | 
| 
      
 19554 
     | 
    
         
            +
              rack (1.6.1) lib/rack/conditionalget.rb:38:in `call'
         
     | 
| 
      
 19555 
     | 
    
         
            +
              rack (1.6.1) lib/rack/head.rb:13:in `call'
         
     | 
| 
      
 19556 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
         
     | 
| 
      
 19557 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
         
     | 
| 
      
 19558 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
         
     | 
| 
      
 19559 
     | 
    
         
            +
              rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
         
     | 
| 
      
 19560 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
         
     | 
| 
      
 19561 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
         
     | 
| 
      
 19562 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
         
     | 
| 
      
 19563 
     | 
    
         
            +
              activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
         
     | 
| 
      
 19564 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
         
     | 
| 
      
 19565 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
         
     | 
| 
      
 19566 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
         
     | 
| 
      
 19567 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
         
     | 
| 
      
 19568 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
         
     | 
| 
      
 19569 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
         
     | 
| 
      
 19570 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
         
     | 
| 
      
 19571 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
         
     | 
| 
      
 19572 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
         
     | 
| 
      
 19573 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
         
     | 
| 
      
 19574 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
         
     | 
| 
      
 19575 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
         
     | 
| 
      
 19576 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
         
     | 
| 
      
 19577 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
         
     | 
| 
      
 19578 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
         
     | 
| 
      
 19579 
     | 
    
         
            +
              railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
         
     | 
| 
      
 19580 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
         
     | 
| 
      
 19581 
     | 
    
         
            +
              rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
         
     | 
| 
      
 19582 
     | 
    
         
            +
              rack (1.6.1) lib/rack/runtime.rb:18:in `call'
         
     | 
| 
      
 19583 
     | 
    
         
            +
              activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
         
     | 
| 
      
 19584 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19585 
     | 
    
         
            +
              actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
         
     | 
| 
      
 19586 
     | 
    
         
            +
              rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
         
     | 
| 
      
 19587 
     | 
    
         
            +
              railties (4.2.1) lib/rails/engine.rb:518:in `call'
         
     | 
| 
      
 19588 
     | 
    
         
            +
              railties (4.2.1) lib/rails/application.rb:164:in `call'
         
     | 
| 
      
 19589 
     | 
    
         
            +
              rack (1.6.1) lib/rack/lock.rb:17:in `call'
         
     | 
| 
      
 19590 
     | 
    
         
            +
              rack (1.6.1) lib/rack/content_length.rb:15:in `call'
         
     | 
| 
      
 19591 
     | 
    
         
            +
              rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
         
     | 
| 
      
 19592 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
         
     | 
| 
      
 19593 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
         
     | 
| 
      
 19594 
     | 
    
         
            +
              D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
         
     | 
| 
      
 19595 
     | 
    
         
            +
             
     | 
| 
      
 19596 
     | 
    
         
            +
             
     | 
| 
      
 19597 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms)
         
     | 
| 
      
 19598 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (64.0ms)
         
     | 
| 
      
 19599 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.0ms)
         
     | 
| 
      
 19600 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (125.0ms)
         
     | 
| 
      
 19601 
     | 
    
         
            +
             
     | 
| 
      
 19602 
     | 
    
         
            +
             
     | 
| 
      
 19603 
     | 
    
         
            +
            Started GET "/cmsadmin/pages" for 127.0.0.1 at 2015-12-15 23:09:45 +0200
         
     | 
| 
      
 19604 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 19605 
     | 
    
         
            +
            Processing by Optimacms::Admin::PagesController#index as HTML
         
     | 
| 
      
 19606 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19607 
     | 
    
         
            +
              [1m[36mOptimacms::Language Load (1.0ms)[0m  [1mSELECT `cms_languages`.* FROM `cms_languages`[0m
         
     | 
| 
      
 19608 
     | 
    
         
            +
              [1m[35mOptimacms::Page Load (1.0ms)[0m  SELECT  `cms_pages`.* FROM `cms_pages` WHERE `cms_pages`.`id` = 0 LIMIT 1
         
     | 
| 
      
 19609 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (16565.9ms)
         
     | 
| 
      
 19610 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (16595.9ms)
         
     | 
| 
      
 19611 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_hidden.html.haml (77.0ms)
         
     | 
| 
      
 19612 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (102.0ms)
         
     | 
| 
      
 19613 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (16735.0ms)
         
     | 
| 
      
 19614 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (9.0ms)
         
     | 
| 
      
 19615 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (31.0ms)
         
     | 
| 
      
 19616 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (16843.0ms)
         
     | 
| 
      
 19617 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (16885.0ms)
         
     | 
| 
      
 19618 
     | 
    
         
            +
              [1m[36mOptimacms::Page Load (2.0ms)[0m  [1mSELECT  `cms_pages`.* FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )  ORDER BY name desc LIMIT 10 OFFSET 0[0m
         
     | 
| 
      
 19619 
     | 
    
         
            +
              [1m[35mOptimacms::Template Load (1.0ms)[0m  SELECT `cms_templates`.* FROM `cms_templates` WHERE `cms_templates`.`id` IN (0, 4, 126)
         
     | 
| 
      
 19620 
     | 
    
         
            +
              [1m[36m (2.0ms)[0m  [1mSELECT COUNT(*) FROM `cms_pages` WHERE (1=1  AND parent_id= 0  )[0m
         
     | 
| 
      
 19621 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/pages/index.html.haml within optimacms/admin/layouts/main (18146.0ms)
         
     | 
| 
      
 19622 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (150.0ms)
         
     | 
| 
      
 19623 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (136.0ms)
         
     | 
| 
      
 19624 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (26.0ms)
         
     | 
| 
      
 19625 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (45.0ms)
         
     | 
| 
      
 19626 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (11.0ms)
         
     | 
| 
      
 19627 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (45.0ms)
         
     | 
| 
      
 19628 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (2730.2ms)
         
     | 
| 
      
 19629 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (3365.2ms)
         
     | 
| 
      
 19630 
     | 
    
         
            +
            Completed 200 OK in 22407ms (Views: 21645.2ms | ActiveRecord: 115.0ms)
         
     | 
| 
      
 19631 
     | 
    
         
            +
             
     | 
| 
      
 19632 
     | 
    
         
            +
             
     | 
| 
      
 19633 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:09 +0200
         
     | 
| 
      
 19634 
     | 
    
         
            +
             
     | 
| 
      
 19635 
     | 
    
         
            +
             
     | 
| 
      
 19636 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:09 +0200
         
     | 
| 
      
 19637 
     | 
    
         
            +
             
     | 
| 
      
 19638 
     | 
    
         
            +
             
     | 
| 
      
 19639 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:09 +0200
         
     | 
| 
      
 19640 
     | 
    
         
            +
             
     | 
| 
      
 19641 
     | 
    
         
            +
             
     | 
| 
      
 19642 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:10 +0200
         
     | 
| 
      
 19643 
     | 
    
         
            +
             
     | 
| 
      
 19644 
     | 
    
         
            +
             
     | 
| 
      
 19645 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:10 +0200
         
     | 
| 
      
 19646 
     | 
    
         
            +
             
     | 
| 
      
 19647 
     | 
    
         
            +
             
     | 
| 
      
 19648 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:10 +0200
         
     | 
| 
      
 19649 
     | 
    
         
            +
             
     | 
| 
      
 19650 
     | 
    
         
            +
             
     | 
| 
      
 19651 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:10 +0200
         
     | 
| 
      
 19652 
     | 
    
         
            +
             
     | 
| 
      
 19653 
     | 
    
         
            +
             
     | 
| 
      
 19654 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:11 +0200
         
     | 
| 
      
 19655 
     | 
    
         
            +
             
     | 
| 
      
 19656 
     | 
    
         
            +
             
     | 
| 
      
 19657 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:11 +0200
         
     | 
| 
      
 19658 
     | 
    
         
            +
             
     | 
| 
      
 19659 
     | 
    
         
            +
             
     | 
| 
      
 19660 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:10:14 +0200
         
     | 
| 
      
 19661 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19662 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (5.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19663 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (45.0ms)
         
     | 
| 
      
 19664 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (57.0ms)
         
     | 
| 
      
 19665 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (76.0ms)
         
     | 
| 
      
 19666 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 19667 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (8.0ms)
         
     | 
| 
      
 19668 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (113.0ms)
         
     | 
| 
      
 19669 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (121.0ms)
         
     | 
| 
      
 19670 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1 )[0m
         
     | 
| 
      
 19671 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id asc LIMIT 25 OFFSET 0
         
     | 
| 
      
 19672 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (321.0ms)
         
     | 
| 
      
 19673 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (11.0ms)
         
     | 
| 
      
 19674 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (58.0ms)
         
     | 
| 
      
 19675 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 19676 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 19677 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 19678 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (16.0ms)
         
     | 
| 
      
 19679 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1457.1ms)
         
     | 
| 
      
 19680 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1659.1ms)
         
     | 
| 
      
 19681 
     | 
    
         
            +
            Completed 200 OK in 2101ms (Views: 1993.1ms | ActiveRecord: 35.0ms)
         
     | 
| 
      
 19682 
     | 
    
         
            +
             
     | 
| 
      
 19683 
     | 
    
         
            +
             
     | 
| 
      
 19684 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:16 +0200
         
     | 
| 
      
 19685 
     | 
    
         
            +
             
     | 
| 
      
 19686 
     | 
    
         
            +
             
     | 
| 
      
 19687 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:16 +0200
         
     | 
| 
      
 19688 
     | 
    
         
            +
             
     | 
| 
      
 19689 
     | 
    
         
            +
             
     | 
| 
      
 19690 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:16 +0200
         
     | 
| 
      
 19691 
     | 
    
         
            +
             
     | 
| 
      
 19692 
     | 
    
         
            +
             
     | 
| 
      
 19693 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:16 +0200
         
     | 
| 
      
 19694 
     | 
    
         
            +
             
     | 
| 
      
 19695 
     | 
    
         
            +
             
     | 
| 
      
 19696 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:17 +0200
         
     | 
| 
      
 19697 
     | 
    
         
            +
             
     | 
| 
      
 19698 
     | 
    
         
            +
             
     | 
| 
      
 19699 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:17 +0200
         
     | 
| 
      
 19700 
     | 
    
         
            +
             
     | 
| 
      
 19701 
     | 
    
         
            +
             
     | 
| 
      
 19702 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:17 +0200
         
     | 
| 
      
 19703 
     | 
    
         
            +
             
     | 
| 
      
 19704 
     | 
    
         
            +
             
     | 
| 
      
 19705 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:17 +0200
         
     | 
| 
      
 19706 
     | 
    
         
            +
             
     | 
| 
      
 19707 
     | 
    
         
            +
             
     | 
| 
      
 19708 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:17 +0200
         
     | 
| 
      
 19709 
     | 
    
         
            +
             
     | 
| 
      
 19710 
     | 
    
         
            +
             
     | 
| 
      
 19711 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:10:19 +0200
         
     | 
| 
      
 19712 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 19713 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"pzhWRhu7MRXLdAxLYfs8RYgpjqvy0Cqyb+lPcPMatdBrrSU5JJ7WOuLKbQsVAwnNSA4bYOaLh/AVFaXQ2CSW4w==", "filter_cmd"=>"apply", "filter"=>{"title"=>"h"}}
         
     | 
| 
      
 19714 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19715 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 19716 
     | 
    
         
            +
            Completed 302 Found in 55ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 19717 
     | 
    
         
            +
             
     | 
| 
      
 19718 
     | 
    
         
            +
             
     | 
| 
      
 19719 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:10:20 +0200
         
     | 
| 
      
 19720 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19721 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19722 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (56.0ms)
         
     | 
| 
      
 19723 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (67.0ms)
         
     | 
| 
      
 19724 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (76.0ms)
         
     | 
| 
      
 19725 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 19726 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (12.0ms)
         
     | 
| 
      
 19727 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (118.0ms)
         
     | 
| 
      
 19728 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (128.0ms)
         
     | 
| 
      
 19729 
     | 
    
         
            +
              [1m[36m (29.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1  AND title LIKE '%h%'  )[0m
         
     | 
| 
      
 19730 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1  AND title LIKE '%h%'  )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 19731 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (213.0ms)
         
     | 
| 
      
 19732 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (8.0ms)
         
     | 
| 
      
 19733 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (32.0ms)
         
     | 
| 
      
 19734 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 19735 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 19736 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 19737 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (25.0ms)
         
     | 
| 
      
 19738 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1377.1ms)
         
     | 
| 
      
 19739 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1534.1ms)
         
     | 
| 
      
 19740 
     | 
    
         
            +
            Completed 200 OK in 1814ms (Views: 1751.1ms | ActiveRecord: 31.0ms)
         
     | 
| 
      
 19741 
     | 
    
         
            +
             
     | 
| 
      
 19742 
     | 
    
         
            +
             
     | 
| 
      
 19743 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19744 
     | 
    
         
            +
             
     | 
| 
      
 19745 
     | 
    
         
            +
             
     | 
| 
      
 19746 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19747 
     | 
    
         
            +
             
     | 
| 
      
 19748 
     | 
    
         
            +
             
     | 
| 
      
 19749 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19750 
     | 
    
         
            +
             
     | 
| 
      
 19751 
     | 
    
         
            +
             
     | 
| 
      
 19752 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19753 
     | 
    
         
            +
             
     | 
| 
      
 19754 
     | 
    
         
            +
             
     | 
| 
      
 19755 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19756 
     | 
    
         
            +
             
     | 
| 
      
 19757 
     | 
    
         
            +
             
     | 
| 
      
 19758 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19759 
     | 
    
         
            +
             
     | 
| 
      
 19760 
     | 
    
         
            +
             
     | 
| 
      
 19761 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19762 
     | 
    
         
            +
             
     | 
| 
      
 19763 
     | 
    
         
            +
             
     | 
| 
      
 19764 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19765 
     | 
    
         
            +
             
     | 
| 
      
 19766 
     | 
    
         
            +
             
     | 
| 
      
 19767 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:22 +0200
         
     | 
| 
      
 19768 
     | 
    
         
            +
             
     | 
| 
      
 19769 
     | 
    
         
            +
             
     | 
| 
      
 19770 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:10:45 +0200
         
     | 
| 
      
 19771 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19772 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19773 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (48.0ms)
         
     | 
| 
      
 19774 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (68.0ms)
         
     | 
| 
      
 19775 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (77.0ms)
         
     | 
| 
      
 19776 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (2.0ms)
         
     | 
| 
      
 19777 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (10.0ms)
         
     | 
| 
      
 19778 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (126.0ms)
         
     | 
| 
      
 19779 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (137.0ms)
         
     | 
| 
      
 19780 
     | 
    
         
            +
              [1m[35m (2.0ms)[0m  SELECT COUNT(*) FROM `news` WHERE (1=1  AND title LIKE '%h%'  )
         
     | 
| 
      
 19781 
     | 
    
         
            +
              [1m[36mNews Load (1.0ms)[0m  [1mSELECT  `news`.* FROM `news` WHERE (1=1  AND title LIKE '%h%'  )  ORDER BY id desc LIMIT 25 OFFSET 0[0m
         
     | 
| 
      
 19782 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (207.0ms)
         
     | 
| 
      
 19783 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (6.0ms)
         
     | 
| 
      
 19784 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (36.0ms)
         
     | 
| 
      
 19785 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 19786 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 19787 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 19788 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (16.0ms)
         
     | 
| 
      
 19789 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1329.1ms)
         
     | 
| 
      
 19790 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1482.1ms)
         
     | 
| 
      
 19791 
     | 
    
         
            +
            Completed 200 OK in 1809ms (Views: 1722.1ms | ActiveRecord: 4.0ms)
         
     | 
| 
      
 19792 
     | 
    
         
            +
             
     | 
| 
      
 19793 
     | 
    
         
            +
             
     | 
| 
      
 19794 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19795 
     | 
    
         
            +
             
     | 
| 
      
 19796 
     | 
    
         
            +
             
     | 
| 
      
 19797 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19798 
     | 
    
         
            +
             
     | 
| 
      
 19799 
     | 
    
         
            +
             
     | 
| 
      
 19800 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19801 
     | 
    
         
            +
             
     | 
| 
      
 19802 
     | 
    
         
            +
             
     | 
| 
      
 19803 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19804 
     | 
    
         
            +
             
     | 
| 
      
 19805 
     | 
    
         
            +
             
     | 
| 
      
 19806 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19807 
     | 
    
         
            +
             
     | 
| 
      
 19808 
     | 
    
         
            +
             
     | 
| 
      
 19809 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19810 
     | 
    
         
            +
             
     | 
| 
      
 19811 
     | 
    
         
            +
             
     | 
| 
      
 19812 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19813 
     | 
    
         
            +
             
     | 
| 
      
 19814 
     | 
    
         
            +
             
     | 
| 
      
 19815 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19816 
     | 
    
         
            +
             
     | 
| 
      
 19817 
     | 
    
         
            +
             
     | 
| 
      
 19818 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:47 +0200
         
     | 
| 
      
 19819 
     | 
    
         
            +
             
     | 
| 
      
 19820 
     | 
    
         
            +
             
     | 
| 
      
 19821 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:10:48 +0200
         
     | 
| 
      
 19822 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 19823 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"DIx+qFKjGsjORp0hFk3O2ND5qyeTjvEb8/N2cPizMSjAGQ3XbYb95+f4/GFitftQEN4+7IfVXFmJD5zQ040SGw==", "filter_cmd"=>"clear", "filter"=>{"title"=>"h"}}
         
     | 
| 
      
 19824 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19825 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 19826 
     | 
    
         
            +
            Completed 302 Found in 36ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 19827 
     | 
    
         
            +
             
     | 
| 
      
 19828 
     | 
    
         
            +
             
     | 
| 
      
 19829 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:10:49 +0200
         
     | 
| 
      
 19830 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19831 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (5.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19832 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (54.0ms)
         
     | 
| 
      
 19833 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (66.0ms)
         
     | 
| 
      
 19834 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (82.0ms)
         
     | 
| 
      
 19835 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 19836 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (11.0ms)
         
     | 
| 
      
 19837 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (123.0ms)
         
     | 
| 
      
 19838 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (134.0ms)
         
     | 
| 
      
 19839 
     | 
    
         
            +
              [1m[35m (1.0ms)[0m  SELECT COUNT(*) FROM `news` WHERE (1=1 )
         
     | 
| 
      
 19840 
     | 
    
         
            +
              [1m[36mNews Load (1.0ms)[0m  [1mSELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0[0m
         
     | 
| 
      
 19841 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (196.0ms)
         
     | 
| 
      
 19842 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (11.0ms)
         
     | 
| 
      
 19843 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (32.0ms)
         
     | 
| 
      
 19844 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (5.0ms)
         
     | 
| 
      
 19845 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 19846 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (2.0ms)
         
     | 
| 
      
 19847 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (18.0ms)
         
     | 
| 
      
 19848 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1285.1ms)
         
     | 
| 
      
 19849 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1448.1ms)
         
     | 
| 
      
 19850 
     | 
    
         
            +
            Completed 200 OK in 1740ms (Views: 1679.1ms | ActiveRecord: 7.0ms)
         
     | 
| 
      
 19851 
     | 
    
         
            +
             
     | 
| 
      
 19852 
     | 
    
         
            +
             
     | 
| 
      
 19853 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19854 
     | 
    
         
            +
             
     | 
| 
      
 19855 
     | 
    
         
            +
             
     | 
| 
      
 19856 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19857 
     | 
    
         
            +
             
     | 
| 
      
 19858 
     | 
    
         
            +
             
     | 
| 
      
 19859 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19860 
     | 
    
         
            +
             
     | 
| 
      
 19861 
     | 
    
         
            +
             
     | 
| 
      
 19862 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19863 
     | 
    
         
            +
             
     | 
| 
      
 19864 
     | 
    
         
            +
             
     | 
| 
      
 19865 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19866 
     | 
    
         
            +
             
     | 
| 
      
 19867 
     | 
    
         
            +
             
     | 
| 
      
 19868 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19869 
     | 
    
         
            +
             
     | 
| 
      
 19870 
     | 
    
         
            +
             
     | 
| 
      
 19871 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19872 
     | 
    
         
            +
             
     | 
| 
      
 19873 
     | 
    
         
            +
             
     | 
| 
      
 19874 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19875 
     | 
    
         
            +
             
     | 
| 
      
 19876 
     | 
    
         
            +
             
     | 
| 
      
 19877 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:10:51 +0200
         
     | 
| 
      
 19878 
     | 
    
         
            +
             
     | 
| 
      
 19879 
     | 
    
         
            +
             
     | 
| 
      
 19880 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:11:14 +0200
         
     | 
| 
      
 19881 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19882 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (16.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19883 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (52.0ms)
         
     | 
| 
      
 19884 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (63.0ms)
         
     | 
| 
      
 19885 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (74.0ms)
         
     | 
| 
      
 19886 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (2.0ms)
         
     | 
| 
      
 19887 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (24.0ms)
         
     | 
| 
      
 19888 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (136.0ms)
         
     | 
| 
      
 19889 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (144.0ms)
         
     | 
| 
      
 19890 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1 )[0m
         
     | 
| 
      
 19891 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 19892 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (220.0ms)
         
     | 
| 
      
 19893 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (14.0ms)
         
     | 
| 
      
 19894 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (59.0ms)
         
     | 
| 
      
 19895 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (3.0ms)
         
     | 
| 
      
 19896 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 19897 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 19898 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (16.0ms)
         
     | 
| 
      
 19899 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1271.1ms)
         
     | 
| 
      
 19900 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1472.1ms)
         
     | 
| 
      
 19901 
     | 
    
         
            +
            Completed 200 OK in 1798ms (Views: 1744.1ms | ActiveRecord: 18.0ms)
         
     | 
| 
      
 19902 
     | 
    
         
            +
             
     | 
| 
      
 19903 
     | 
    
         
            +
             
     | 
| 
      
 19904 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:11:16 +0200
         
     | 
| 
      
 19905 
     | 
    
         
            +
             
     | 
| 
      
 19906 
     | 
    
         
            +
             
     | 
| 
      
 19907 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19908 
     | 
    
         
            +
             
     | 
| 
      
 19909 
     | 
    
         
            +
             
     | 
| 
      
 19910 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19911 
     | 
    
         
            +
             
     | 
| 
      
 19912 
     | 
    
         
            +
             
     | 
| 
      
 19913 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19914 
     | 
    
         
            +
             
     | 
| 
      
 19915 
     | 
    
         
            +
             
     | 
| 
      
 19916 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19917 
     | 
    
         
            +
             
     | 
| 
      
 19918 
     | 
    
         
            +
             
     | 
| 
      
 19919 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19920 
     | 
    
         
            +
             
     | 
| 
      
 19921 
     | 
    
         
            +
             
     | 
| 
      
 19922 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19923 
     | 
    
         
            +
             
     | 
| 
      
 19924 
     | 
    
         
            +
             
     | 
| 
      
 19925 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19926 
     | 
    
         
            +
             
     | 
| 
      
 19927 
     | 
    
         
            +
             
     | 
| 
      
 19928 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:17 +0200
         
     | 
| 
      
 19929 
     | 
    
         
            +
             
     | 
| 
      
 19930 
     | 
    
         
            +
             
     | 
| 
      
 19931 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:11:20 +0200
         
     | 
| 
      
 19932 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 19933 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"wJUdPiVx9lr3Y4NKKqhX/BU2wgLAe4xPko/huvPPdT0MAG5BGlQRdd7d4gpeUGJ01RFXydQgIQ3ocwsa2PFWDg==", "filter_cmd"=>"apply", "filter"=>{"title"=>"s"}}
         
     | 
| 
      
 19934 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19935 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 19936 
     | 
    
         
            +
            Completed 302 Found in 74ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 19937 
     | 
    
         
            +
             
     | 
| 
      
 19938 
     | 
    
         
            +
             
     | 
| 
      
 19939 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:11:20 +0200
         
     | 
| 
      
 19940 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 19941 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 19942 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (42.0ms)
         
     | 
| 
      
 19943 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (52.0ms)
         
     | 
| 
      
 19944 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (58.0ms)
         
     | 
| 
      
 19945 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 19946 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (10.0ms)
         
     | 
| 
      
 19947 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (94.0ms)
         
     | 
| 
      
 19948 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (102.0ms)
         
     | 
| 
      
 19949 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1  AND title LIKE '%s%'  )[0m
         
     | 
| 
      
 19950 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1  AND title LIKE '%s%'  )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 19951 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (150.0ms)
         
     | 
| 
      
 19952 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (6.0ms)
         
     | 
| 
      
 19953 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (42.0ms)
         
     | 
| 
      
 19954 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 19955 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 19956 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 19957 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (16.0ms)
         
     | 
| 
      
 19958 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1247.1ms)
         
     | 
| 
      
 19959 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1407.1ms)
         
     | 
| 
      
 19960 
     | 
    
         
            +
            Completed 200 OK in 1616ms (Views: 1585.1ms | ActiveRecord: 3.0ms)
         
     | 
| 
      
 19961 
     | 
    
         
            +
             
     | 
| 
      
 19962 
     | 
    
         
            +
             
     | 
| 
      
 19963 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19964 
     | 
    
         
            +
             
     | 
| 
      
 19965 
     | 
    
         
            +
             
     | 
| 
      
 19966 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19967 
     | 
    
         
            +
             
     | 
| 
      
 19968 
     | 
    
         
            +
             
     | 
| 
      
 19969 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19970 
     | 
    
         
            +
             
     | 
| 
      
 19971 
     | 
    
         
            +
             
     | 
| 
      
 19972 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19973 
     | 
    
         
            +
             
     | 
| 
      
 19974 
     | 
    
         
            +
             
     | 
| 
      
 19975 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19976 
     | 
    
         
            +
             
     | 
| 
      
 19977 
     | 
    
         
            +
             
     | 
| 
      
 19978 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19979 
     | 
    
         
            +
             
     | 
| 
      
 19980 
     | 
    
         
            +
             
     | 
| 
      
 19981 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19982 
     | 
    
         
            +
             
     | 
| 
      
 19983 
     | 
    
         
            +
             
     | 
| 
      
 19984 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19985 
     | 
    
         
            +
             
     | 
| 
      
 19986 
     | 
    
         
            +
             
     | 
| 
      
 19987 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:22 +0200
         
     | 
| 
      
 19988 
     | 
    
         
            +
             
     | 
| 
      
 19989 
     | 
    
         
            +
             
     | 
| 
      
 19990 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:11:24 +0200
         
     | 
| 
      
 19991 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 19992 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"xdUWofQaS9I1k1P9ZxaYPT/mpq5I0yXWlFPpaeAf30UJQGXeyz+s/RwtMr0T7q21/8EzZVyIiJTurwPJyyH8dg==", "filter_cmd"=>"apply", "filter"=>{"title"=>"h"}}
         
     | 
| 
      
 19993 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (6.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 19994 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 19995 
     | 
    
         
            +
            Completed 302 Found in 42ms (ActiveRecord: 6.0ms)
         
     | 
| 
      
 19996 
     | 
    
         
            +
             
     | 
| 
      
 19997 
     | 
    
         
            +
             
     | 
| 
      
 19998 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:11:25 +0200
         
     | 
| 
      
 19999 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20000 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 20001 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/fields_simple_form/_text.html.haml (54.0ms)
         
     | 
| 
      
 20002 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_field_simple_form.html.haml (65.0ms)
         
     | 
| 
      
 20003 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (85.0ms)
         
     | 
| 
      
 20004 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 20005 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (12.0ms)
         
     | 
| 
      
 20006 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form_inline.html.haml (122.0ms)
         
     | 
| 
      
 20007 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (129.0ms)
         
     | 
| 
      
 20008 
     | 
    
         
            +
              [1m[36m (0.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1  AND title LIKE '%h%'  )[0m
         
     | 
| 
      
 20009 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1  AND title LIKE '%h%'  )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 20010 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (185.0ms)
         
     | 
| 
      
 20011 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (12.0ms)
         
     | 
| 
      
 20012 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (48.0ms)
         
     | 
| 
      
 20013 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 20014 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 20015 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (2.0ms)
         
     | 
| 
      
 20016 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (24.0ms)
         
     | 
| 
      
 20017 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1425.1ms)
         
     | 
| 
      
 20018 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1615.1ms)
         
     | 
| 
      
 20019 
     | 
    
         
            +
            Completed 200 OK in 1881ms (Views: 1838.1ms | ActiveRecord: 2.0ms)
         
     | 
| 
      
 20020 
     | 
    
         
            +
             
     | 
| 
      
 20021 
     | 
    
         
            +
             
     | 
| 
      
 20022 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20023 
     | 
    
         
            +
             
     | 
| 
      
 20024 
     | 
    
         
            +
             
     | 
| 
      
 20025 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20026 
     | 
    
         
            +
             
     | 
| 
      
 20027 
     | 
    
         
            +
             
     | 
| 
      
 20028 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20029 
     | 
    
         
            +
             
     | 
| 
      
 20030 
     | 
    
         
            +
             
     | 
| 
      
 20031 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20032 
     | 
    
         
            +
             
     | 
| 
      
 20033 
     | 
    
         
            +
             
     | 
| 
      
 20034 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20035 
     | 
    
         
            +
             
     | 
| 
      
 20036 
     | 
    
         
            +
             
     | 
| 
      
 20037 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20038 
     | 
    
         
            +
             
     | 
| 
      
 20039 
     | 
    
         
            +
             
     | 
| 
      
 20040 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20041 
     | 
    
         
            +
             
     | 
| 
      
 20042 
     | 
    
         
            +
             
     | 
| 
      
 20043 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20044 
     | 
    
         
            +
             
     | 
| 
      
 20045 
     | 
    
         
            +
             
     | 
| 
      
 20046 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:11:27 +0200
         
     | 
| 
      
 20047 
     | 
    
         
            +
             
     | 
| 
      
 20048 
     | 
    
         
            +
             
     | 
| 
      
 20049 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:21:46 +0200
         
     | 
| 
      
 20050 
     | 
    
         
            +
              [1m[36mActiveRecord::SchemaMigration Load (1.0ms)[0m  [1mSELECT `schema_migrations`.* FROM `schema_migrations`[0m
         
     | 
| 
      
 20051 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20052 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 20053 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/fields_simple_form/_text.html.haml (17083.0ms)
         
     | 
| 
      
 20054 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_field_simple_form.html.haml (17135.0ms)
         
     | 
| 
      
 20055 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_fields.html.haml (17226.0ms)
         
     | 
| 
      
 20056 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear.html.haml (9.0ms)
         
     | 
| 
      
 20057 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (27.0ms)
         
     | 
| 
      
 20058 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form_inline.html.haml (17310.0ms)
         
     | 
| 
      
 20059 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form.html.haml (17348.0ms)
         
     | 
| 
      
 20060 
     | 
    
         
            +
              [1m[36m (2.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1  AND title LIKE '%h%'  )[0m
         
     | 
| 
      
 20061 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1  AND title LIKE '%h%'  )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 20062 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (17592.0ms)
         
     | 
| 
      
 20063 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (192.0ms)
         
     | 
| 
      
 20064 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (216.0ms)
         
     | 
| 
      
 20065 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (31.0ms)
         
     | 
| 
      
 20066 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (41.0ms)
         
     | 
| 
      
 20067 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (14.0ms)
         
     | 
| 
      
 20068 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (58.0ms)
         
     | 
| 
      
 20069 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (2891.2ms)
         
     | 
| 
      
 20070 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (3655.2ms)
         
     | 
| 
      
 20071 
     | 
    
         
            +
            Completed 200 OK in 21736ms (Views: 21373.2ms | ActiveRecord: 61.0ms)
         
     | 
| 
      
 20072 
     | 
    
         
            +
             
     | 
| 
      
 20073 
     | 
    
         
            +
             
     | 
| 
      
 20074 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:09 +0200
         
     | 
| 
      
 20075 
     | 
    
         
            +
             
     | 
| 
      
 20076 
     | 
    
         
            +
             
     | 
| 
      
 20077 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:10 +0200
         
     | 
| 
      
 20078 
     | 
    
         
            +
             
     | 
| 
      
 20079 
     | 
    
         
            +
             
     | 
| 
      
 20080 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:10 +0200
         
     | 
| 
      
 20081 
     | 
    
         
            +
             
     | 
| 
      
 20082 
     | 
    
         
            +
             
     | 
| 
      
 20083 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:10 +0200
         
     | 
| 
      
 20084 
     | 
    
         
            +
             
     | 
| 
      
 20085 
     | 
    
         
            +
             
     | 
| 
      
 20086 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:10 +0200
         
     | 
| 
      
 20087 
     | 
    
         
            +
             
     | 
| 
      
 20088 
     | 
    
         
            +
             
     | 
| 
      
 20089 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:11 +0200
         
     | 
| 
      
 20090 
     | 
    
         
            +
             
     | 
| 
      
 20091 
     | 
    
         
            +
             
     | 
| 
      
 20092 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:11 +0200
         
     | 
| 
      
 20093 
     | 
    
         
            +
             
     | 
| 
      
 20094 
     | 
    
         
            +
             
     | 
| 
      
 20095 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:11 +0200
         
     | 
| 
      
 20096 
     | 
    
         
            +
             
     | 
| 
      
 20097 
     | 
    
         
            +
             
     | 
| 
      
 20098 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:11 +0200
         
     | 
| 
      
 20099 
     | 
    
         
            +
             
     | 
| 
      
 20100 
     | 
    
         
            +
             
     | 
| 
      
 20101 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 23:22:18 +0200
         
     | 
| 
      
 20102 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20103 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 20104 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 20105 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 20106 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 20107 
     | 
    
         
            +
            Completed 302 Found in 38ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 20108 
     | 
    
         
            +
             
     | 
| 
      
 20109 
     | 
    
         
            +
             
     | 
| 
      
 20110 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:22:18 +0200
         
     | 
| 
      
 20111 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20112 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 20113 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/fields_simple_form/_text.html.haml (53.0ms)
         
     | 
| 
      
 20114 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_field_simple_form.html.haml (65.0ms)
         
     | 
| 
      
 20115 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_fields.html.haml (78.0ms)
         
     | 
| 
      
 20116 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear.html.haml (2.0ms)
         
     | 
| 
      
 20117 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (30.0ms)
         
     | 
| 
      
 20118 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form_inline.html.haml (146.0ms)
         
     | 
| 
      
 20119 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form.html.haml (157.0ms)
         
     | 
| 
      
 20120 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1  AND title LIKE '%h%'  )[0m
         
     | 
| 
      
 20121 
     | 
    
         
            +
              [1m[35mNews Load (2.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1  AND title LIKE '%h%'  )  ORDER BY id asc LIMIT 25 OFFSET 0
         
     | 
| 
      
 20122 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (271.0ms)
         
     | 
| 
      
 20123 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (10.0ms)
         
     | 
| 
      
 20124 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (84.0ms)
         
     | 
| 
      
 20125 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (3.0ms)
         
     | 
| 
      
 20126 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 20127 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 20128 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (21.0ms)
         
     | 
| 
      
 20129 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1501.1ms)
         
     | 
| 
      
 20130 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1775.1ms)
         
     | 
| 
      
 20131 
     | 
    
         
            +
            Completed 200 OK in 2126ms (Views: 2080.1ms | ActiveRecord: 4.0ms)
         
     | 
| 
      
 20132 
     | 
    
         
            +
             
     | 
| 
      
 20133 
     | 
    
         
            +
             
     | 
| 
      
 20134 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20135 
     | 
    
         
            +
             
     | 
| 
      
 20136 
     | 
    
         
            +
             
     | 
| 
      
 20137 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20138 
     | 
    
         
            +
             
     | 
| 
      
 20139 
     | 
    
         
            +
             
     | 
| 
      
 20140 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20141 
     | 
    
         
            +
             
     | 
| 
      
 20142 
     | 
    
         
            +
             
     | 
| 
      
 20143 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20144 
     | 
    
         
            +
             
     | 
| 
      
 20145 
     | 
    
         
            +
             
     | 
| 
      
 20146 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20147 
     | 
    
         
            +
             
     | 
| 
      
 20148 
     | 
    
         
            +
             
     | 
| 
      
 20149 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20150 
     | 
    
         
            +
             
     | 
| 
      
 20151 
     | 
    
         
            +
             
     | 
| 
      
 20152 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20153 
     | 
    
         
            +
             
     | 
| 
      
 20154 
     | 
    
         
            +
             
     | 
| 
      
 20155 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20156 
     | 
    
         
            +
             
     | 
| 
      
 20157 
     | 
    
         
            +
             
     | 
| 
      
 20158 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:21 +0200
         
     | 
| 
      
 20159 
     | 
    
         
            +
             
     | 
| 
      
 20160 
     | 
    
         
            +
             
     | 
| 
      
 20161 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:22:24 +0200
         
     | 
| 
      
 20162 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 20163 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"FU2meOtCr91ZPURl2F7J1MN+3kFm3VfU3ERDivIZITnZ2NUH1GdI8nCDJSWspvxcA1lLinKG+pamuKkq2ScCCg==", "filter_cmd"=>"clear", "filter"=>{"title"=>"h"}}
         
     | 
| 
      
 20164 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (0.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 20165 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 20166 
     | 
    
         
            +
            Completed 302 Found in 24ms (ActiveRecord: 0.0ms)
         
     | 
| 
      
 20167 
     | 
    
         
            +
             
     | 
| 
      
 20168 
     | 
    
         
            +
             
     | 
| 
      
 20169 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:22:24 +0200
         
     | 
| 
      
 20170 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20171 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (0.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 20172 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/fields_simple_form/_text.html.haml (50.0ms)
         
     | 
| 
      
 20173 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_field_simple_form.html.haml (59.0ms)
         
     | 
| 
      
 20174 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_fields.html.haml (76.0ms)
         
     | 
| 
      
 20175 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 20176 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (8.0ms)
         
     | 
| 
      
 20177 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form_inline.html.haml (108.0ms)
         
     | 
| 
      
 20178 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form.html.haml (116.0ms)
         
     | 
| 
      
 20179 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1 )[0m
         
     | 
| 
      
 20180 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 20181 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (173.0ms)
         
     | 
| 
      
 20182 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (5.0ms)
         
     | 
| 
      
 20183 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (27.0ms)
         
     | 
| 
      
 20184 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (3.0ms)
         
     | 
| 
      
 20185 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 20186 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (7.0ms)
         
     | 
| 
      
 20187 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (22.0ms)
         
     | 
| 
      
 20188 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1271.1ms)
         
     | 
| 
      
 20189 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1405.1ms)
         
     | 
| 
      
 20190 
     | 
    
         
            +
            Completed 200 OK in 1633ms (Views: 1608.1ms | ActiveRecord: 2.0ms)
         
     | 
| 
      
 20191 
     | 
    
         
            +
             
     | 
| 
      
 20192 
     | 
    
         
            +
             
     | 
| 
      
 20193 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20194 
     | 
    
         
            +
             
     | 
| 
      
 20195 
     | 
    
         
            +
             
     | 
| 
      
 20196 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20197 
     | 
    
         
            +
             
     | 
| 
      
 20198 
     | 
    
         
            +
             
     | 
| 
      
 20199 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20200 
     | 
    
         
            +
             
     | 
| 
      
 20201 
     | 
    
         
            +
             
     | 
| 
      
 20202 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20203 
     | 
    
         
            +
             
     | 
| 
      
 20204 
     | 
    
         
            +
             
     | 
| 
      
 20205 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20206 
     | 
    
         
            +
             
     | 
| 
      
 20207 
     | 
    
         
            +
             
     | 
| 
      
 20208 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20209 
     | 
    
         
            +
             
     | 
| 
      
 20210 
     | 
    
         
            +
             
     | 
| 
      
 20211 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20212 
     | 
    
         
            +
             
     | 
| 
      
 20213 
     | 
    
         
            +
             
     | 
| 
      
 20214 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20215 
     | 
    
         
            +
             
     | 
| 
      
 20216 
     | 
    
         
            +
             
     | 
| 
      
 20217 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:26 +0200
         
     | 
| 
      
 20218 
     | 
    
         
            +
             
     | 
| 
      
 20219 
     | 
    
         
            +
             
     | 
| 
      
 20220 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=asc" for 127.0.0.1 at 2015-12-15 23:22:37 +0200
         
     | 
| 
      
 20221 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20222 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"asc"}
         
     | 
| 
      
 20223 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (0.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 20224 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 20225 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 20226 
     | 
    
         
            +
            Completed 302 Found in 26ms (ActiveRecord: 0.0ms)
         
     | 
| 
      
 20227 
     | 
    
         
            +
             
     | 
| 
      
 20228 
     | 
    
         
            +
             
     | 
| 
      
 20229 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:22:37 +0200
         
     | 
| 
      
 20230 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20231 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 20232 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/fields_simple_form/_text.html.haml (51.0ms)
         
     | 
| 
      
 20233 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_field_simple_form.html.haml (66.0ms)
         
     | 
| 
      
 20234 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_fields.html.haml (79.0ms)
         
     | 
| 
      
 20235 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 20236 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (13.0ms)
         
     | 
| 
      
 20237 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form_inline.html.haml (118.0ms)
         
     | 
| 
      
 20238 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form.html.haml (124.0ms)
         
     | 
| 
      
 20239 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1 )[0m
         
     | 
| 
      
 20240 
     | 
    
         
            +
              [1m[35mNews Load (1.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id asc LIMIT 25 OFFSET 0
         
     | 
| 
      
 20241 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (186.0ms)
         
     | 
| 
      
 20242 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (6.0ms)
         
     | 
| 
      
 20243 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (27.0ms)
         
     | 
| 
      
 20244 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (3.0ms)
         
     | 
| 
      
 20245 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (2.0ms)
         
     | 
| 
      
 20246 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (0.0ms)
         
     | 
| 
      
 20247 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (18.0ms)
         
     | 
| 
      
 20248 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1249.1ms)
         
     | 
| 
      
 20249 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1392.1ms)
         
     | 
| 
      
 20250 
     | 
    
         
            +
            Completed 200 OK in 1646ms (Views: 1615.1ms | ActiveRecord: 3.0ms)
         
     | 
| 
      
 20251 
     | 
    
         
            +
             
     | 
| 
      
 20252 
     | 
    
         
            +
             
     | 
| 
      
 20253 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:39 +0200
         
     | 
| 
      
 20254 
     | 
    
         
            +
             
     | 
| 
      
 20255 
     | 
    
         
            +
             
     | 
| 
      
 20256 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:39 +0200
         
     | 
| 
      
 20257 
     | 
    
         
            +
             
     | 
| 
      
 20258 
     | 
    
         
            +
             
     | 
| 
      
 20259 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:39 +0200
         
     | 
| 
      
 20260 
     | 
    
         
            +
             
     | 
| 
      
 20261 
     | 
    
         
            +
             
     | 
| 
      
 20262 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:39 +0200
         
     | 
| 
      
 20263 
     | 
    
         
            +
             
     | 
| 
      
 20264 
     | 
    
         
            +
             
     | 
| 
      
 20265 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:39 +0200
         
     | 
| 
      
 20266 
     | 
    
         
            +
             
     | 
| 
      
 20267 
     | 
    
         
            +
             
     | 
| 
      
 20268 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:40 +0200
         
     | 
| 
      
 20269 
     | 
    
         
            +
             
     | 
| 
      
 20270 
     | 
    
         
            +
             
     | 
| 
      
 20271 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:40 +0200
         
     | 
| 
      
 20272 
     | 
    
         
            +
             
     | 
| 
      
 20273 
     | 
    
         
            +
             
     | 
| 
      
 20274 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:40 +0200
         
     | 
| 
      
 20275 
     | 
    
         
            +
             
     | 
| 
      
 20276 
     | 
    
         
            +
             
     | 
| 
      
 20277 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:40 +0200
         
     | 
| 
      
 20278 
     | 
    
         
            +
             
     | 
| 
      
 20279 
     | 
    
         
            +
             
     | 
| 
      
 20280 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news?filter_cmd=order&orderby=id&orderdir=desc" for 127.0.0.1 at 2015-12-15 23:22:40 +0200
         
     | 
| 
      
 20281 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20282 
     | 
    
         
            +
              Parameters: {"filter_cmd"=>"order", "orderby"=>"id", "orderdir"=>"desc"}
         
     | 
| 
      
 20283 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 20284 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 20285 
     | 
    
         
            +
            Filter chain halted as :init_search_filter_index rendered or redirected
         
     | 
| 
      
 20286 
     | 
    
         
            +
            Completed 302 Found in 30ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 20287 
     | 
    
         
            +
             
     | 
| 
      
 20288 
     | 
    
         
            +
             
     | 
| 
      
 20289 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:22:41 +0200
         
     | 
| 
      
 20290 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20291 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 20292 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/fields_simple_form/_text.html.haml (46.0ms)
         
     | 
| 
      
 20293 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_field_simple_form.html.haml (56.0ms)
         
     | 
| 
      
 20294 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_fields.html.haml (65.0ms)
         
     | 
| 
      
 20295 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 20296 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (20.0ms)
         
     | 
| 
      
 20297 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form_inline.html.haml (121.0ms)
         
     | 
| 
      
 20298 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form.html.haml (129.0ms)
         
     | 
| 
      
 20299 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1 )[0m
         
     | 
| 
      
 20300 
     | 
    
         
            +
              [1m[35mNews Load (0.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1 )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 20301 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (212.0ms)
         
     | 
| 
      
 20302 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (9.0ms)
         
     | 
| 
      
 20303 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (44.0ms)
         
     | 
| 
      
 20304 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 20305 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 20306 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 20307 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (23.0ms)
         
     | 
| 
      
 20308 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1333.1ms)
         
     | 
| 
      
 20309 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1514.1ms)
         
     | 
| 
      
 20310 
     | 
    
         
            +
            Completed 200 OK in 1795ms (Views: 1760.1ms | ActiveRecord: 2.0ms)
         
     | 
| 
      
 20311 
     | 
    
         
            +
             
     | 
| 
      
 20312 
     | 
    
         
            +
             
     | 
| 
      
 20313 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20314 
     | 
    
         
            +
             
     | 
| 
      
 20315 
     | 
    
         
            +
             
     | 
| 
      
 20316 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20317 
     | 
    
         
            +
             
     | 
| 
      
 20318 
     | 
    
         
            +
             
     | 
| 
      
 20319 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20320 
     | 
    
         
            +
             
     | 
| 
      
 20321 
     | 
    
         
            +
             
     | 
| 
      
 20322 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20323 
     | 
    
         
            +
             
     | 
| 
      
 20324 
     | 
    
         
            +
             
     | 
| 
      
 20325 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20326 
     | 
    
         
            +
             
     | 
| 
      
 20327 
     | 
    
         
            +
             
     | 
| 
      
 20328 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20329 
     | 
    
         
            +
             
     | 
| 
      
 20330 
     | 
    
         
            +
             
     | 
| 
      
 20331 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20332 
     | 
    
         
            +
             
     | 
| 
      
 20333 
     | 
    
         
            +
             
     | 
| 
      
 20334 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20335 
     | 
    
         
            +
             
     | 
| 
      
 20336 
     | 
    
         
            +
             
     | 
| 
      
 20337 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:43 +0200
         
     | 
| 
      
 20338 
     | 
    
         
            +
             
     | 
| 
      
 20339 
     | 
    
         
            +
             
     | 
| 
      
 20340 
     | 
    
         
            +
            Started POST "/cmsadmin/admin/news/search" for 127.0.0.1 at 2015-12-15 23:22:48 +0200
         
     | 
| 
      
 20341 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#search as HTML
         
     | 
| 
      
 20342 
     | 
    
         
            +
              Parameters: {"utf8"=>"✓", "authenticity_token"=>"LBHjkpzztDWkL2XWjxHCj7CPq1q3WcH8HRiYPS4xvQzghJDto9ZTGo2RBJb76fcHcKg+kaMCbL5n5HKdBQ+ePw==", "filter_cmd"=>"apply", "filter"=>{"title"=>"h"}}
         
     | 
| 
      
 20343 
     | 
    
         
            +
              [1m[36mOptimacms::CmsAdminUser Load (1.0ms)[0m  [1mSELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1[0m
         
     | 
| 
      
 20344 
     | 
    
         
            +
            Redirected to http://localhost:3001/cmsadmin/admin/news
         
     | 
| 
      
 20345 
     | 
    
         
            +
            Completed 302 Found in 28ms (ActiveRecord: 1.0ms)
         
     | 
| 
      
 20346 
     | 
    
         
            +
             
     | 
| 
      
 20347 
     | 
    
         
            +
             
     | 
| 
      
 20348 
     | 
    
         
            +
            Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-12-15 23:22:48 +0200
         
     | 
| 
      
 20349 
     | 
    
         
            +
            Processing by Optimacms::Admin::NewsController#index as HTML
         
     | 
| 
      
 20350 
     | 
    
         
            +
              [1m[35mOptimacms::CmsAdminUser Load (1.0ms)[0m  SELECT  `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4  ORDER BY `cms_users`.`id` ASC LIMIT 1
         
     | 
| 
      
 20351 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/fields_simple_form/_text.html.haml (39.0ms)
         
     | 
| 
      
 20352 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_field_simple_form.html.haml (53.0ms)
         
     | 
| 
      
 20353 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_fields.html.haml (65.0ms)
         
     | 
| 
      
 20354 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear.html.haml (1.0ms)
         
     | 
| 
      
 20355 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_buttons_apply_clear_inline.html.haml (7.0ms)
         
     | 
| 
      
 20356 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form_inline.html.haml (113.0ms)
         
     | 
| 
      
 20357 
     | 
    
         
            +
              Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.30/app/views/simple_search_filter/_form.html.haml (120.0ms)
         
     | 
| 
      
 20358 
     | 
    
         
            +
              [1m[36m (1.0ms)[0m  [1mSELECT COUNT(*) FROM `news` WHERE (1=1  AND title LIKE '%h%'  )[0m
         
     | 
| 
      
 20359 
     | 
    
         
            +
              [1m[35mNews Load (0.0ms)[0m  SELECT  `news`.* FROM `news` WHERE (1=1  AND title LIKE '%h%'  )  ORDER BY id desc LIMIT 25 OFFSET 0
         
     | 
| 
      
 20360 
     | 
    
         
            +
              Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (173.0ms)
         
     | 
| 
      
 20361 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (14.0ms)
         
     | 
| 
      
 20362 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (38.0ms)
         
     | 
| 
      
 20363 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (2.0ms)
         
     | 
| 
      
 20364 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
         
     | 
| 
      
 20365 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
         
     | 
| 
      
 20366 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (17.0ms)
         
     | 
| 
      
 20367 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1503.1ms)
         
     | 
| 
      
 20368 
     | 
    
         
            +
              Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (1659.1ms)
         
     | 
| 
      
 20369 
     | 
    
         
            +
            Completed 200 OK in 1891ms (Views: 1863.1ms | ActiveRecord: 2.0ms)
         
     | 
| 
      
 20370 
     | 
    
         
            +
             
     | 
| 
      
 20371 
     | 
    
         
            +
             
     | 
| 
      
 20372 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:50 +0200
         
     | 
| 
      
 20373 
     | 
    
         
            +
             
     | 
| 
      
 20374 
     | 
    
         
            +
             
     | 
| 
      
 20375 
     | 
    
         
            +
            Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:50 +0200
         
     | 
| 
      
 20376 
     | 
    
         
            +
             
     | 
| 
      
 20377 
     | 
    
         
            +
             
     | 
| 
      
 20378 
     | 
    
         
            +
            Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:51 +0200
         
     | 
| 
      
 20379 
     | 
    
         
            +
             
     | 
| 
      
 20380 
     | 
    
         
            +
             
     | 
| 
      
 20381 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-12-15 23:22:51 +0200
         
     | 
| 
      
 20382 
     | 
    
         
            +
             
     | 
| 
      
 20383 
     | 
    
         
            +
             
     | 
| 
      
 20384 
     | 
    
         
            +
            Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:51 +0200
         
     | 
| 
      
 20385 
     | 
    
         
            +
             
     | 
| 
      
 20386 
     | 
    
         
            +
             
     | 
| 
      
 20387 
     | 
    
         
            +
            Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:51 +0200
         
     | 
| 
      
 20388 
     | 
    
         
            +
             
     | 
| 
      
 20389 
     | 
    
         
            +
             
     | 
| 
      
 20390 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:51 +0200
         
     | 
| 
      
 20391 
     | 
    
         
            +
             
     | 
| 
      
 20392 
     | 
    
         
            +
             
     | 
| 
      
 20393 
     | 
    
         
            +
            Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:51 +0200
         
     | 
| 
      
 20394 
     | 
    
         
            +
             
     | 
| 
      
 20395 
     | 
    
         
            +
             
     | 
| 
      
 20396 
     | 
    
         
            +
            Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-12-15 23:22:51 +0200
         
     |