optimacms 0.1.45 → 0.1.47

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 65831efe4910af3d1f846aeb87d9fc78c9c4e073
4
- data.tar.gz: 805d5b553eef154a6e6b32f6af58a7b453c59658
3
+ metadata.gz: 98a13abb9d39daef0ee0fdcf82b2122b4f6709ec
4
+ data.tar.gz: b68bb6791d978c9d52727b546b00b80eb437e88f
5
5
  SHA512:
6
- metadata.gz: ccd4c3ed35c121e526675255e1da45ccb5dd7a105c7eb496519d50c20d17fc658ac08ab20bfa4cd8f05796843544499fc69e03bcaa0f3015fcea51531fedfaee
7
- data.tar.gz: c62e758468c99437736795bc037086f0b461ea4dd7a3834fdb5fee828b06db7a40c72c4e7b6910d0a42d203d40bbbb8a2df7bc7d8caff985ff505bb61174c07f
6
+ metadata.gz: 2acac0958ffc5df3492bb24d45552d732d35d9eac0557db0e962fe1d0e803d33ef5837827c777039441efabb7a3e1e25bdeb1cd7d08fda475be900366b42c498
7
+ data.tar.gz: 9ceea88a144d429ae8c1e18ca2b3bacc71157e5731a8a7a62a87dff8cd409db8c784a2a21369928f1c282e93cc28a37ebf70d619753e35009dc43bb8773c4ca9
@@ -1,3 +1,3 @@
1
1
  module Optimacms
2
- VERSION = "0.1.45"
2
+ VERSION = "0.1.47"
3
3
  end
@@ -0,0 +1,5 @@
1
+ class Optimacms::Admin::NewsController < Optimacms::Admin::AdminBaseController
2
+ def index
3
+
4
+ end
5
+ end
@@ -10,6 +10,13 @@ Rails.application.routes.draw do
10
10
  get 'hello.html', to: 'my#hello', as: 'hello'
11
11
 
12
12
 
13
+ # extend admin area
14
+ scope '/cmsadmin', module: "optimacms" do
15
+ namespace :admin do
16
+ resources :news
17
+ end
18
+ end
19
+
13
20
 
14
21
  # the last!!!
15
22
  mount Optimacms::Engine => "/"
@@ -6,7 +6,7 @@ module Optimacms
6
6
  def self.get_menu_custom
7
7
  [
8
8
  {title: 'News', route: nil, submenu: [
9
- {title: 'News', route: :pages},
9
+ {title: 'News', route: :admin_news_index},
10
10
  {title: 'Categories', route: :templates},
11
11
  ]
12
12
  }
@@ -14187,3 +14187,284 @@ Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174
14187
14187
 
14188
14188
 
14189
14189
  Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-07-21 01:53:54 +0300
14190
+
14191
+
14192
+ Started GET "/cmsadmin/pages" for 127.0.0.1 at 2015-07-22 12:50:58 +0300
14193
+ ActiveRecord::SchemaMigration Load (58.0ms) SELECT `schema_migrations`.* FROM `schema_migrations`
14194
+ Processing by Optimacms::Admin::PagesController#index as HTML
14195
+ Optimacms::CmsAdminUser Load (0.0ms) SELECT `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4 ORDER BY `cms_users`.`id` ASC LIMIT 1
14196
+ Optimacms::Language Load (77.0ms) SELECT `cms_languages`.* FROM `cms_languages`
14197
+ Optimacms::Page Load (0.0ms) SELECT `cms_pages`.* FROM `cms_pages` WHERE `cms_pages`.`id` = 0 LIMIT 1
14198
+ 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 (5715.3ms)
14199
+ 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 (5771.3ms)
14200
+ 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 (51.0ms)
14201
+ 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 (74.0ms)
14202
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (5881.3ms)
14203
+ 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 (4.0ms)
14204
+ 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 (16.0ms)
14205
+ 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 (5970.3ms)
14206
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (6016.3ms)
14207
+ Optimacms::Page Load (0.0ms) SELECT `cms_pages`.* FROM `cms_pages` WHERE (1=1 AND parent_id= 0 ) ORDER BY created_at desc LIMIT 10 OFFSET 0
14208
+ Optimacms::Template Load (1.0ms) SELECT `cms_templates`.* FROM `cms_templates` WHERE `cms_templates`.`id` IN (126, 0, 4)
14209
+  (1.0ms) SELECT COUNT(*) FROM `cms_pages` WHERE (1=1 AND parent_id= 0 )
14210
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/pages/index.html.haml within optimacms/admin/layouts/main (6734.4ms)
14211
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (40.0ms)
14212
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (505.0ms)
14213
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (612.0ms)
14214
+ Completed 500 Internal Server Error in 7995ms (ActiveRecord: 247.0ms)
14215
+
14216
+ ActionView::Template::Error (undefined method `news_admin_path' for #<#<Class:0x8d11c88>:0x8cd2f70>):
14217
+ 13: %ul.submenu.collapse{id: "submenu#{ind}"}
14218
+ 14: - if m[:submenu]
14219
+ 15: - m[:submenu].each do |sm|
14220
+ 16: - u = sm[:route] ? send("#{sm[:route]}_path") : '#'
14221
+ 17:
14222
+ 18: %li
14223
+ 19: =link_to sm[:title], u
14224
+ W:/myrails/cms/site/app/helpers/optimacms/application_helper.rb:11:in `rescue in method_missing'
14225
+ W:/myrails/cms/site/app/helpers/optimacms/application_helper.rb:9:in `method_missing'
14226
+ W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml:16:in `block (2 levels) in ____myrails_cms_site_app_views_optimacms_admin_shared__leftmenu_html_haml__999772341_70295592'
14227
+ W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml:15:in `each'
14228
+ W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml:15:in `block in ____myrails_cms_site_app_views_optimacms_admin_shared__leftmenu_html_haml__999772341_70295592'
14229
+ W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml:6:in `each'
14230
+ W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml:6:in `each_with_index'
14231
+ W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml:6:in `____myrails_cms_site_app_views_optimacms_admin_shared__leftmenu_html_haml__999772341_70295592'
14232
+ actionview (4.2.1) lib/action_view/template.rb:145:in `block in render'
14233
+ activesupport (4.2.1) lib/active_support/notifications.rb:166:in `instrument'
14234
+ actionview (4.2.1) lib/action_view/template.rb:333:in `instrument'
14235
+ actionview (4.2.1) lib/action_view/template.rb:143:in `render'
14236
+ actionview (4.2.1) lib/action_view/renderer/partial_renderer.rb:339:in `render_partial'
14237
+ actionview (4.2.1) lib/action_view/renderer/partial_renderer.rb:310:in `block in render'
14238
+ actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
14239
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
14240
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
14241
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
14242
+ actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
14243
+ actionview (4.2.1) lib/action_view/renderer/partial_renderer.rb:309:in `render'
14244
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:47:in `render_partial'
14245
+ actionview (4.2.1) lib/action_view/helpers/rendering_helper.rb:35:in `render'
14246
+ haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml'
14247
+ haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml'
14248
+ haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml'
14249
+ W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml:7:in `block in ____myrails_cms_site_app_views_optimacms_admin_layouts_basic_html_haml___657025509_84741540'
14250
+ haml (4.0.6) lib/haml/helpers.rb:368:in `call'
14251
+ haml (4.0.6) lib/haml/helpers.rb:368:in `block in capture_haml'
14252
+ haml (4.0.6) lib/haml/helpers.rb:608:in `with_haml_buffer'
14253
+ haml (4.0.6) lib/haml/helpers.rb:364:in `capture_haml'
14254
+ haml (4.0.6) lib/haml/helpers/xss_mods.rb:61:in `capture_haml_with_haml_xss'
14255
+ haml (4.0.6) lib/haml/helpers/action_view_mods.rb:45:in `capture_with_haml'
14256
+ actionview (4.2.1) lib/action_view/helpers/capture_helper.rb:152:in `content_for'
14257
+ W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml:1:in `____myrails_cms_site_app_views_optimacms_admin_layouts_basic_html_haml___657025509_84741540'
14258
+ actionview (4.2.1) lib/action_view/template.rb:145:in `block in render'
14259
+ activesupport (4.2.1) lib/active_support/notifications.rb:166:in `instrument'
14260
+ actionview (4.2.1) lib/action_view/template.rb:333:in `instrument'
14261
+ actionview (4.2.1) lib/action_view/template.rb:143:in `render'
14262
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template'
14263
+ actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument'
14264
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
14265
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
14266
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
14267
+ actionview (4.2.1) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument'
14268
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template'
14269
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout'
14270
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
14271
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:14:in `render'
14272
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
14273
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:23:in `render'
14274
+ actionview (4.2.1) lib/action_view/helpers/rendering_helper.rb:32:in `render'
14275
+ haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `block in render_with_haml'
14276
+ haml (4.0.6) lib/haml/helpers.rb:89:in `non_haml'
14277
+ haml (4.0.6) lib/haml/helpers/action_view_mods.rb:10:in `render_with_haml'
14278
+ W:/myrails/cms/site/app/views/optimacms/admin/layouts/main.html.haml:5:in `____myrails_cms_site_app_views_optimacms_admin_layouts_main_html_haml__2836322_87989340'
14279
+ actionview (4.2.1) lib/action_view/template.rb:145:in `block in render'
14280
+ activesupport (4.2.1) lib/active_support/notifications.rb:166:in `instrument'
14281
+ actionview (4.2.1) lib/action_view/template.rb:333:in `instrument'
14282
+ actionview (4.2.1) lib/action_view/template.rb:143:in `render'
14283
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
14284
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
14285
+ actionview (4.2.1) lib/action_view/renderer/template_renderer.rb:14:in `render'
14286
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
14287
+ actionview (4.2.1) lib/action_view/renderer/renderer.rb:23:in `render'
14288
+ actionview (4.2.1) lib/action_view/rendering.rb:100:in `_render_template'
14289
+ actionpack (4.2.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
14290
+ actionview (4.2.1) lib/action_view/rendering.rb:83:in `render_to_body'
14291
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
14292
+ actionpack (4.2.1) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
14293
+ actionpack (4.2.1) lib/abstract_controller/rendering.rb:25:in `render'
14294
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:16:in `render'
14295
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
14296
+ activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
14297
+ D:/Ruby215/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
14298
+ activesupport (4.2.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
14299
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
14300
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
14301
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
14302
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
14303
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
14304
+ W:/myrails/cms/site/lib/optimacms/mycontroller.rb:27:in `default_render'
14305
+ actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
14306
+ actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
14307
+ actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
14308
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
14309
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
14310
+ activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
14311
+ activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
14312
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
14313
+ activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
14314
+ activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
14315
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
14316
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
14317
+ actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
14318
+ actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
14319
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
14320
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
14321
+ activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
14322
+ activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
14323
+ actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
14324
+ actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
14325
+ activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
14326
+ actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
14327
+ actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
14328
+ actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
14329
+ actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
14330
+ actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
14331
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
14332
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
14333
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
14334
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
14335
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
14336
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
14337
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
14338
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
14339
+ railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
14340
+ railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
14341
+ actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
14342
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
14343
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
14344
+ actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
14345
+ actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
14346
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
14347
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
14348
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
14349
+ rack (1.6.1) lib/rack/etag.rb:24:in `call'
14350
+ rack (1.6.1) lib/rack/conditionalget.rb:25:in `call'
14351
+ rack (1.6.1) lib/rack/head.rb:13:in `call'
14352
+ actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
14353
+ actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
14354
+ rack (1.6.1) lib/rack/session/abstract/id.rb:225:in `context'
14355
+ rack (1.6.1) lib/rack/session/abstract/id.rb:220:in `call'
14356
+ actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
14357
+ activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
14358
+ activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
14359
+ activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
14360
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
14361
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
14362
+ activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
14363
+ activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
14364
+ activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
14365
+ actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
14366
+ actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
14367
+ actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
14368
+ actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
14369
+ actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
14370
+ railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
14371
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
14372
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
14373
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
14374
+ activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
14375
+ railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
14376
+ actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
14377
+ rack (1.6.1) lib/rack/methodoverride.rb:22:in `call'
14378
+ rack (1.6.1) lib/rack/runtime.rb:18:in `call'
14379
+ activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
14380
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
14381
+ actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
14382
+ rack (1.6.1) lib/rack/sendfile.rb:113:in `call'
14383
+ railties (4.2.1) lib/rails/engine.rb:518:in `call'
14384
+ railties (4.2.1) lib/rails/application.rb:164:in `call'
14385
+ rack (1.6.1) lib/rack/lock.rb:17:in `call'
14386
+ rack (1.6.1) lib/rack/content_length.rb:15:in `call'
14387
+ rack (1.6.1) lib/rack/handler/webrick.rb:89:in `service'
14388
+ D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
14389
+ D:/Ruby215/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
14390
+ D:/Ruby215/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
14391
+
14392
+
14393
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
14394
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (56.0ms)
14395
+ 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 (4.0ms)
14396
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (128.0ms)
14397
+
14398
+
14399
+ Started GET "/cmsadmin/pages" for 127.0.0.1 at 2015-07-22 12:59:22 +0300
14400
+ Processing by Optimacms::Admin::PagesController#index as HTML
14401
+ Optimacms::CmsAdminUser Load (1.0ms) SELECT `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4 ORDER BY `cms_users`.`id` ASC LIMIT 1
14402
+ Optimacms::Language Load (0.0ms) SELECT `cms_languages`.* FROM `cms_languages`
14403
+ Optimacms::Page Load (1.0ms) SELECT `cms_pages`.* FROM `cms_pages` WHERE `cms_pages`.`id` = 0 LIMIT 1
14404
+ 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 (21.0ms)
14405
+ 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 (25.0ms)
14406
+ 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 (11.0ms)
14407
+ 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 (15.0ms)
14408
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_fields.html.haml (49.0ms)
14409
+ 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)
14410
+ 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 (4.0ms)
14411
+ 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 (66.0ms)
14412
+ Rendered D:/Ruby215/lib/ruby/gems/2.1.0/gems/simple_search_filter-0.0.29/app/views/simple_search_filter/_form.html.haml (70.0ms)
14413
+ Optimacms::Page Load (0.0ms) SELECT `cms_pages`.* FROM `cms_pages` WHERE (1=1 AND parent_id= 0 ) ORDER BY created_at desc LIMIT 10 OFFSET 0
14414
+ Optimacms::Template Load (0.0ms) SELECT `cms_templates`.* FROM `cms_templates` WHERE `cms_templates`.`id` IN (126, 0, 4)
14415
+  (1.0ms) SELECT COUNT(*) FROM `cms_pages` WHERE (1=1 AND parent_id= 0 )
14416
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/pages/index.html.haml within optimacms/admin/layouts/main (322.0ms)
14417
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (4.0ms)
14418
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (33.0ms)
14419
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (12.0ms)
14420
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (32.0ms)
14421
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (4.0ms)
14422
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (21.0ms)
14423
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (1567.1ms)
14424
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (2059.1ms)
14425
+ Completed 200 OK in 2578ms (Views: 2391.1ms | ActiveRecord: 36.0ms)
14426
+
14427
+
14428
+ Started GET "/assets/optimacms/admin-7b9b6e6b201f9e1d1b7b96fb36a35aa7.css?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14429
+
14430
+
14431
+ Started GET "/assets/optimacms/admin_tpl-07408aff24d868a6bcda59a11fbb81cc.css?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14432
+
14433
+
14434
+ Started GET "/assets/optimacms/application-6c1e33ec75ab2c9558a3cda2353b0b8f.js?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14435
+
14436
+
14437
+ Started GET "/assets/jquery2-3168a66918b94ea58383761b3ff6ef0e.js?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14438
+
14439
+
14440
+ Started GET "/assets/bootstrap-a11ff4fe44240856e2eb15b47d7b47a1.js?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14441
+
14442
+
14443
+ Started GET "/assets/jquery_ujs-0c1d9c1df5a197d2f2557ab298f046d7.js?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14444
+
14445
+
14446
+ Started GET "/assets/bootstrap3-typeahead.min-d7ff8b12bfad065ae745058f1616a8e3.js?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14447
+
14448
+
14449
+ Started GET "/assets/bootstrap3-autocomplete-input.min-20d00e6863d9b2bb7775fd174463862d.js?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14450
+
14451
+
14452
+ Started GET "/assets/optimacms/admin-8752222b064c7bb1e8d00024d2e3d046.js?body=1" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14453
+
14454
+
14455
+ Started GET "/assets/fontawesome-webfont-9e05603dba2fcd6ce30a144015b0f46d.woff2?v=4.3.0" for 127.0.0.1 at 2015-07-22 12:59:27 +0300
14456
+
14457
+
14458
+ Started GET "/cmsadmin/admin/news" for 127.0.0.1 at 2015-07-22 12:59:30 +0300
14459
+ Processing by Optimacms::Admin::NewsController#index as HTML
14460
+ Optimacms::CmsAdminUser Load (1.0ms) SELECT `cms_users`.* FROM `cms_users` WHERE `cms_users`.`id` = 4 ORDER BY `cms_users`.`id` ASC LIMIT 1
14461
+ Rendered optimacms/admin/news/index.html.haml within optimacms/admin/layouts/main (12.0ms)
14462
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_top.html.haml (4.0ms)
14463
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_leftmenu.html.haml (18.0ms)
14464
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_breadcrumbs.html.haml (1.0ms)
14465
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_flash.html.haml (1.0ms)
14466
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_version.html.haml (1.0ms)
14467
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/shared/_footer.html.haml (7.0ms)
14468
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/application.html.haml (577.0ms)
14469
+ Rendered W:/myrails/cms/site/app/views/optimacms/admin/layouts/basic.html.haml (648.0ms)
14470
+ Completed 200 OK in 690ms (Views: 677.0ms | ActiveRecord: 1.0ms)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: optimacms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.45
4
+ version: 0.1.47
5
5
  platform: ruby
6
6
  authors:
7
7
  - Max Ivak
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-07-21 00:00:00.000000000 Z
11
+ date: 2015-07-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -443,6 +443,7 @@ files:
443
443
  - spec/dummy/app/controllers/home_controller.rb
444
444
  - spec/dummy/app/controllers/my_controller.rb
445
445
  - spec/dummy/app/controllers/news_controller.rb
446
+ - spec/dummy/app/controllers/optimacms/admin/news_controller.rb
446
447
  - spec/dummy/app/helpers/application_helper.rb
447
448
  - spec/dummy/app/models/news.rb
448
449
  - spec/dummy/app/models/user.rb
@@ -456,6 +457,7 @@ files:
456
457
  - spec/dummy/app/views/my/hello.html.haml
457
458
  - spec/dummy/app/views/news/index.html.haml
458
459
  - spec/dummy/app/views/news/show.html.haml
460
+ - spec/dummy/app/views/optimacms/admin/news/index.html.haml
459
461
  - spec/dummy/app/views/pages/1.html.erb
460
462
  - spec/dummy/app/views/pages/2.html.erb
461
463
  - spec/dummy/app/views/pages/_sub.html.erb
@@ -2160,6 +2162,7 @@ test_files:
2160
2162
  - spec/dummy/app/controllers/home_controller.rb
2161
2163
  - spec/dummy/app/controllers/my_controller.rb
2162
2164
  - spec/dummy/app/controllers/news_controller.rb
2165
+ - spec/dummy/app/controllers/optimacms/admin/news_controller.rb
2163
2166
  - spec/dummy/app/helpers/application_helper.rb
2164
2167
  - spec/dummy/app/models/news.rb
2165
2168
  - spec/dummy/app/models/user.rb
@@ -2173,6 +2176,7 @@ test_files:
2173
2176
  - spec/dummy/app/views/my/hello.html.haml
2174
2177
  - spec/dummy/app/views/news/index.html.haml
2175
2178
  - spec/dummy/app/views/news/show.html.haml
2179
+ - spec/dummy/app/views/optimacms/admin/news/index.html.haml
2176
2180
  - spec/dummy/app/views/pages/1.html.erb
2177
2181
  - spec/dummy/app/views/pages/2.html.erb
2178
2182
  - spec/dummy/app/views/pages/about.html