website_builder_engine 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. data/.gitignore +1 -0
  2. data/CHANGELOG.textile +7 -0
  3. data/Gemfile.lock +1 -1
  4. data/app/assets/stylesheets/website_builder_engine/welcome.css.scss +87 -0
  5. data/app/controllers/website_builder_engine/articles_controller.rb +1 -0
  6. data/app/models/article.rb +1 -0
  7. data/app/models/offerpage.rb +1 -0
  8. data/app/models/setting.rb +5 -1
  9. data/app/views/shared/_google_analytics.html.haml +11 -0
  10. data/app/views/website_builder_engine/articles/_form.html.haml +3 -0
  11. data/app/views/website_builder_engine/articles/template.html.haml +11 -4
  12. data/app/views/website_builder_engine/offerpages/_form.html.haml +3 -0
  13. data/app/views/website_builder_engine/offerpages/template.html.haml +11 -4
  14. data/app/views/website_builder_engine/settings/_form.html.haml +14 -2
  15. data/app/views/website_builder_engine/welcome/template.html.haml +21 -16
  16. data/spec/dummy/app/assets/stylesheets/application.css +28 -2
  17. data/spec/dummy/app/assets/stylesheets/articles.css.scss +87 -0
  18. data/spec/dummy/app/assets/stylesheets/base.css.scss +336 -0
  19. data/spec/dummy/app/assets/stylesheets/home.css.scss +7 -0
  20. data/spec/dummy/app/assets/stylesheets/layout.css.scss +64 -0
  21. data/spec/dummy/app/assets/stylesheets/normalize.css.scss +413 -0
  22. data/spec/dummy/app/assets/stylesheets/offerpages.css.scss +232 -0
  23. data/spec/dummy/app/assets/stylesheets/scaffolds.css.scss +56 -0
  24. data/spec/dummy/app/assets/stylesheets/settings.css.scss +7 -0
  25. data/spec/dummy/app/assets/stylesheets/skeleton.css.scss +237 -0
  26. data/spec/dummy/app/assets/stylesheets/welcome.css.scss +88 -0
  27. data/spec/dummy/log/development.log +752 -0
  28. data/spec/dummy/public/howto/using-rails-3-1.html +105 -0
  29. data/spec/dummy/public/index.html +94 -0
  30. data/spec/dummy/tmp/cache/assets/C62/1D0/sprockets%2F1638f87db345b13872695759502b54fe +0 -0
  31. data/spec/dummy/tmp/cache/assets/C73/800/sprockets%2Fe26c7a52215e3d8315b952630b7d6230 +0 -0
  32. data/spec/dummy/tmp/cache/assets/CD7/6F0/sprockets%2Fbd3936370d0f952ada5774e2230046ed +0 -0
  33. data/spec/dummy/tmp/cache/assets/CFA/F70/sprockets%2F3d96de8209591d59d678790b059ed4cb +0 -0
  34. data/spec/dummy/tmp/cache/assets/D17/4C0/sprockets%2Fb8f748b53e6b83e646f2114a34ca8a86 +0 -0
  35. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  36. data/spec/dummy/tmp/cache/assets/D3E/660/sprockets%2Ff27703f6505840cfcd80bce4f380c7a5 +0 -0
  37. data/spec/dummy/tmp/cache/assets/D44/5E0/sprockets%2F9e993bc311cd8ad60bc66560b6629bd6 +0 -0
  38. data/spec/dummy/tmp/cache/assets/D46/0F0/sprockets%2Fa788672c315b82d19c5db34f9bcf3a19 +0 -0
  39. data/spec/dummy/tmp/cache/assets/D54/ED0/sprockets%2F71c9fa01091d432b131da3bb73faf3d4 +0 -0
  40. data/spec/dummy/tmp/cache/assets/D5E/170/sprockets%2F2f2229c70dcf195564d4d0fd6a12ac1a +0 -0
  41. data/spec/dummy/tmp/cache/assets/D79/9D0/sprockets%2F6ea17d7230964f04e6dd9cc9a724bf7d +0 -0
  42. data/spec/dummy/tmp/cache/assets/D9B/890/sprockets%2F350c8c72b1dbd7a84f85424b5cd4def1 +0 -0
  43. data/spec/dummy/tmp/cache/assets/DA7/4C0/sprockets%2F834c8b5df453ca373b66bca70d74fe8f +0 -0
  44. data/spec/dummy/tmp/cache/assets/DC8/280/sprockets%2Fa32ab71649e3db15eca95bcc3a7588da +0 -0
  45. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  46. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/articles.css.scssc +0 -0
  47. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/base.css.scssc +0 -0
  48. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/home.css.scssc +0 -0
  49. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/layout.css.scssc +0 -0
  50. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/normalize.css.scssc +0 -0
  51. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/offerpages.css.scssc +0 -0
  52. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/scaffolds.css.scssc +0 -0
  53. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/settings.css.scssc +0 -0
  54. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/skeleton.css.scssc +0 -0
  55. data/spec/dummy/tmp/cache/sass/0ab7c234fc1a58954e94a39dac695c435cc5d635/welcome.css.scssc +0 -0
  56. data/spec/dummy/tmp/cache/sass/a4c85d529bdb9cb90c9baac1d898e753aa526545/welcome.css.scssc +0 -0
  57. data/version.rb +1 -1
  58. metadata +96 -20
@@ -396,3 +396,755 @@ Served asset /website_builder_engine/application.css - 304 Not Modified (2ms)
396
396
 
397
397
  Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-24 16:37:31 -0700
398
398
  Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
399
+ MongoDB logging. Please note that logging negatively impacts performance and should be disabled for high-performance production apps.
400
+ MONGODB admin['$cmd'].find({:ismaster=>1})
401
+ MONGODB admin['$cmd'].find({:ismaster=>1})
402
+
403
+
404
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:07:32 -0700
405
+ Compiled application.css (29ms) (pid 21824)
406
+ Served asset /application.css - 200 OK (39ms)
407
+
408
+
409
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:07:32 -0700
410
+ Compiled application.js (88ms) (pid 21824)
411
+ Served asset /application.js - 304 Not Modified (118ms)
412
+
413
+
414
+ Started GET "/" for 127.0.0.1 at 2011-09-25 12:07:51 -0700
415
+
416
+ ActionController::RoutingError (No route matches [GET] "/"):
417
+
418
+
419
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms)
420
+
421
+
422
+ Started GET "/" for 127.0.0.1 at 2011-09-25 12:07:53 -0700
423
+
424
+ ActionController::RoutingError (No route matches [GET] "/"):
425
+
426
+
427
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
428
+
429
+
430
+ Started GET "/" for 127.0.0.1 at 2011-09-25 12:07:54 -0700
431
+
432
+ ActionController::RoutingError (No route matches [GET] "/"):
433
+
434
+
435
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
436
+
437
+
438
+ Started GET "/" for 127.0.0.1 at 2011-09-25 12:07:55 -0700
439
+
440
+ ActionController::RoutingError (No route matches [GET] "/"):
441
+
442
+
443
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.6ms)
444
+
445
+
446
+ Started GET "/builder" for 127.0.0.1 at 2011-09-25 12:08:12 -0700
447
+ Processing by WebsiteBuilderEngine::HomeController#index as HTML
448
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/home/index.html.haml within layouts/website_builder_engine/home (15.1ms)
449
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (2.1ms)
450
+ Completed 200 OK in 54ms (Views: 54.2ms)
451
+
452
+
453
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:08:13 -0700
454
+ Served asset /website_builder_engine/application.js - 304 Not Modified (38ms)
455
+
456
+
457
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 12:08:13 -0700
458
+ Compiled website_builder_engine/application.css (10ms) (pid 21824)
459
+ Compiled website_builder_engine/welcome.css (19ms) (pid 21824)
460
+ Served asset /website_builder_engine/application.css - 200 OK (96ms)
461
+
462
+
463
+ Started GET "/builder/settings" for 127.0.0.1 at 2011-09-25 12:08:15 -0700
464
+ Processing by WebsiteBuilderEngine::SettingsController#index as HTML
465
+ MONGODB dummy_development['system.namespaces'].find({})
466
+ MONGODB dummy_development['settings'].find({})
467
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/index.html.haml within layouts/website_builder_engine/application (7.1ms)
468
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.9ms)
469
+ Completed 200 OK in 58ms (Views: 57.2ms)
470
+
471
+
472
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:08:15 -0700
473
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
474
+
475
+
476
+ Started GET "/builder/settings/4e3886c29b8a306614000001/edit" for 127.0.0.1 at 2011-09-25 12:08:17 -0700
477
+ Processing by WebsiteBuilderEngine::SettingsController#edit as HTML
478
+ Parameters: {"id"=>"4e3886c29b8a306614000001"}
479
+ MONGODB dummy_development['system.namespaces'].find({})
480
+ MONGODB dummy_development['settings'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000001')}).sort([[:_id, :asc]])
481
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/_form.html.haml (83.5ms)
482
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/edit.html.haml within layouts/website_builder_engine/application (87.5ms)
483
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
484
+ Completed 200 OK in 99ms (Views: 97.4ms)
485
+
486
+
487
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:08:17 -0700
488
+ Served asset /website_builder_engine/application.js - 304 Not Modified (1ms)
489
+
490
+
491
+ Started PUT "/builder/settings/4e3886c29b8a306614000001" for 127.0.0.1 at 2011-09-25 12:09:23 -0700
492
+ Processing by WebsiteBuilderEngine::SettingsController#update as HTML
493
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JIYOsOhjCECZun5Bi2adUSCadtiUetinIHL/zJ63syk=", "setting"=>{"site_name"=>"Rails Apps", "site_title"=>"Rails 3.1 Example Apps and Tutorials", "site_tagline"=>"Starter Apps for Rails 3.1", "site_description"=>"Examples of complete working Rails 3.1 web applications", "site_keywords"=>"rails, ruby, apps, application, example, tutorial", "twitter_account"=>"rails_apps", "domain"=>"railsapps.github.com", "articles_directory"=>"howto", "offerpages_directory"=>"products", "sidebar"=>"h6. Colophon\r\n\r\nCreated with html5-website-builder", "introduction"=>"The Ruby on Rails platform is a living ecosystem: a community of developers, their projects, and complex dependencies among their projects. At times (often before and after the release of a major new version of Rails) the ecosystem enters a state of disequilibrium and important pieces no longer work together easily. These times of disequilibrium are valuable for the ecosystem because, as a whole, developers innovate and Rails improves during these times."}, "commit"=>"Save", "id"=>"4e3886c29b8a306614000001"}
494
+ MONGODB dummy_development['system.namespaces'].find({})
495
+ MONGODB dummy_development['settings'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000001')}).sort([[:_id, :asc]])
496
+ MONGODB dummy_development['settings'].update({"_id"=>BSON::ObjectId('4e3886c29b8a306614000001')}, {"$set"=>{"sidebar"=>"h6. Colophon\r\n\r\nCreated with html5-website-builder", "introduction"=>"The Ruby on Rails platform is a living ecosystem: a community of developers, their projects, and complex dependencies among their projects. At times (often before and after the release of a major new version of Rails) the ecosystem enters a state of disequilibrium and important pieces no longer work together easily. These times of disequilibrium are valuable for the ecosystem because, as a whole, developers innovate and Rails improves during these times."}})
497
+ Redirected to http://lvh.me:3000/builder/settings/4e3886c29b8a306614000001
498
+ Completed 302 Found in 4ms
499
+
500
+
501
+ Started GET "/builder/settings/4e3886c29b8a306614000001" for 127.0.0.1 at 2011-09-25 12:09:23 -0700
502
+ Processing by WebsiteBuilderEngine::SettingsController#show as HTML
503
+ Parameters: {"id"=>"4e3886c29b8a306614000001"}
504
+ MONGODB dummy_development['system.namespaces'].find({})
505
+ MONGODB dummy_development['settings'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000001')}).sort([[:_id, :asc]])
506
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/show.html.haml within layouts/website_builder_engine/application (6.0ms)
507
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
508
+ Completed 200 OK in 19ms (Views: 17.1ms)
509
+
510
+
511
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:09:23 -0700
512
+ Served asset /website_builder_engine/application.js - 304 Not Modified (1ms)
513
+
514
+
515
+ Started GET "/builder/settings" for 127.0.0.1 at 2011-09-25 12:09:25 -0700
516
+ Processing by WebsiteBuilderEngine::SettingsController#index as HTML
517
+ MONGODB dummy_development['system.namespaces'].find({})
518
+ MONGODB dummy_development['settings'].find({})
519
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/index.html.haml within layouts/website_builder_engine/application (4.1ms)
520
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
521
+ Completed 200 OK in 52ms (Views: 51.7ms)
522
+
523
+
524
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:09:25 -0700
525
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
526
+
527
+
528
+ Started GET "/builder/" for 127.0.0.1 at 2011-09-25 12:09:27 -0700
529
+ Processing by WebsiteBuilderEngine::HomeController#index as HTML
530
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/home/index.html.haml within layouts/website_builder_engine/home (1.2ms)
531
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.5ms)
532
+ Completed 200 OK in 9ms (Views: 8.5ms)
533
+
534
+
535
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:09:27 -0700
536
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
537
+
538
+
539
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 12:09:30 -0700
540
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
541
+ MONGODB dummy_development['system.namespaces'].find({})
542
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
543
+ MONGODB dummy_development['system.namespaces'].find({})
544
+ MONGODB dummy_development['articles'].find({})
545
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (9.6ms)
546
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
547
+ Completed 200 OK in 112ms (Views: 34.3ms)
548
+
549
+
550
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:09:30 -0700
551
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
552
+
553
+
554
+ Started GET "/builder/articles/4e3886c29b8a306614000004/publish" for 127.0.0.1 at 2011-09-25 12:09:33 -0700
555
+ Processing by WebsiteBuilderEngine::ArticlesController#publish as HTML
556
+ Parameters: {"id"=>"4e3886c29b8a306614000004"}
557
+ MONGODB dummy_development['system.namespaces'].find({})
558
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
559
+ MONGODB dummy_development['system.namespaces'].find({})
560
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000004')}).sort([[:_id, :asc]])
561
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000003')}).sort([[:_id, :asc]])
562
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/template.html.haml (16.6ms)
563
+ MONGODB dummy_development['articles'].update({"_id"=>BSON::ObjectId('4e3886c29b8a306614000004')}, {"$set"=>{"published"=>true}})
564
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/welcome/template.html.haml (15.2ms)
565
+ Completed 500 Internal Server Error in 132ms
566
+
567
+ ActionView::Template::Error (undefined method `introduction' for #<ActiveSupport::SafeBuffer:0x00000102f366e8>):
568
+ 31: %fb:like{:action => "recommend", :send => "true", :show_faces => "false", :width => "450"}
569
+ 32: - unless @welcome_intro.blank?
570
+ 33: %h2 Introduction
571
+ 34: = @welcome_intro.introduction
572
+ 35: - unless @articles.empty?
573
+ 36: %h2 Articles
574
+ 37: %ul
575
+
576
+
577
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.6ms)
578
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.8ms)
579
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.9ms)
580
+
581
+
582
+ Started GET "/builder/articles/4e3886c29b8a306614000004/publish" for 127.0.0.1 at 2011-09-25 12:09:52 -0700
583
+ Processing by WebsiteBuilderEngine::ArticlesController#publish as HTML
584
+ Parameters: {"id"=>"4e3886c29b8a306614000004"}
585
+ MONGODB dummy_development['system.namespaces'].find({})
586
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
587
+ MONGODB dummy_development['system.namespaces'].find({})
588
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000004')}).sort([[:_id, :asc]])
589
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000003')}).sort([[:_id, :asc]])
590
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/template.html.haml (2.3ms)
591
+ MONGODB dummy_development['articles'].find({:published=>true}, {:_id=>1})
592
+ MONGODB dummy_development['articles'].find({:published=>true})
593
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/welcome/template.html.haml (15.8ms)
594
+ Redirected to http://lvh.me:3000/builder/articles
595
+ Completed 302 Found in 106ms
596
+
597
+
598
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 12:09:53 -0700
599
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
600
+ MONGODB dummy_development['system.namespaces'].find({})
601
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
602
+ MONGODB dummy_development['system.namespaces'].find({})
603
+ MONGODB dummy_development['articles'].find({})
604
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (43.0ms)
605
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.8ms)
606
+ Completed 200 OK in 94ms (Views: 52.8ms)
607
+
608
+
609
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 12:09:53 -0700
610
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
611
+
612
+
613
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:09:55 -0700
614
+ Served asset /application.js - 304 Not Modified (0ms)
615
+
616
+
617
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:11:07 -0700
618
+ Served asset /application.js - 304 Not Modified (0ms)
619
+
620
+
621
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:11:10 -0700
622
+ Served asset /application.js - 304 Not Modified (0ms)
623
+
624
+
625
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:11:10 -0700
626
+ Served asset /application.css - 304 Not Modified (0ms)
627
+
628
+
629
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:12:36 -0700
630
+ Served asset /application.css - 304 Not Modified (0ms)
631
+
632
+
633
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:13:55 -0700
634
+ Served asset /application.js - 304 Not Modified (0ms)
635
+
636
+
637
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:13:55 -0700
638
+ Compiled application.css (17ms) (pid 21824)
639
+ Compiled articles.css (32ms) (pid 21824)
640
+ Compiled base.css (225ms) (pid 21824)
641
+ Compiled home.css (2ms) (pid 21824)
642
+ Compiled layout.css (37ms) (pid 21824)
643
+ Compiled normalize.css (49ms) (pid 21824)
644
+ Compiled offerpages.css (198ms) (pid 21824)
645
+ Compiled scaffolds.css (10ms) (pid 21824)
646
+ Compiled settings.css (1ms) (pid 21824)
647
+ Compiled skeleton.css (46ms) (pid 21824)
648
+ Compiled welcome.css (14ms) (pid 21824)
649
+ Served asset /application.css - 200 OK (760ms)
650
+
651
+
652
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:19:40 -0700
653
+ Served asset /application.js - 304 Not Modified (0ms)
654
+
655
+
656
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:19:40 -0700
657
+ Compiled welcome.css (23ms) (pid 21824)
658
+ Compiled application.css (15ms) (pid 21824)
659
+ Served asset /application.css - 200 OK (73ms)
660
+
661
+
662
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:20:40 -0700
663
+ Served asset /application.js - 304 Not Modified (0ms)
664
+
665
+
666
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:20:40 -0700
667
+ Compiled welcome.css (16ms) (pid 21824)
668
+ Compiled application.css (10ms) (pid 21824)
669
+ Served asset /application.css - 200 OK (55ms)
670
+
671
+
672
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:21:54 -0700
673
+ Compiled welcome.css (64ms) (pid 21824)
674
+ Compiled application.css (11ms) (pid 21824)
675
+ Served asset /application.css - 200 OK (118ms)
676
+
677
+
678
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:21:54 -0700
679
+ Served asset /application.js - 304 Not Modified (0ms)
680
+
681
+
682
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:23:01 -0700
683
+ Compiled welcome.css (35ms) (pid 21824)
684
+ Compiled application.css (11ms) (pid 21824)
685
+ Served asset /application.css - 200 OK (73ms)
686
+
687
+
688
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:23:02 -0700
689
+ Served asset /application.js - 304 Not Modified (0ms)
690
+
691
+
692
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:23:08 -0700
693
+ Served asset /application.css - 304 Not Modified (2ms)
694
+
695
+
696
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:23:08 -0700
697
+ Served asset /application.js - 304 Not Modified (0ms)
698
+
699
+
700
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 12:23:47 -0700
701
+ Compiled welcome.css (19ms) (pid 21824)
702
+ Compiled application.css (13ms) (pid 21824)
703
+ Served asset /application.css - 200 OK (149ms)
704
+
705
+
706
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 12:23:47 -0700
707
+ Served asset /application.js - 304 Not Modified (0ms)
708
+ MongoDB logging. Please note that logging negatively impacts performance and should be disabled for high-performance production apps.
709
+ MONGODB admin['$cmd'].find({:ismaster=>1})
710
+ MONGODB admin['$cmd'].find({:ismaster=>1})
711
+
712
+
713
+ Started GET "/builder" for 127.0.0.1 at 2011-09-25 13:02:25 -0700
714
+ Processing by WebsiteBuilderEngine::HomeController#index as HTML
715
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/home/index.html.haml within layouts/website_builder_engine/home (17.1ms)
716
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (2.3ms)
717
+ Completed 200 OK in 103ms (Views: 103.2ms)
718
+
719
+
720
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:02:25 -0700
721
+ Served asset /website_builder_engine/application.css - 304 Not Modified (120ms)
722
+
723
+
724
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:02:26 -0700
725
+ Served asset /website_builder_engine/application.js - 304 Not Modified (47ms)
726
+
727
+
728
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 13:02:28 -0700
729
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
730
+ MONGODB dummy_development['system.namespaces'].find({})
731
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
732
+ MONGODB dummy_development['system.namespaces'].find({})
733
+ MONGODB dummy_development['articles'].find({})
734
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (8.7ms)
735
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
736
+ Completed 200 OK in 107ms (Views: 23.2ms)
737
+
738
+
739
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:02:28 -0700
740
+ Served asset /website_builder_engine/application.js - 304 Not Modified (1ms)
741
+
742
+
743
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:02:28 -0700
744
+ Served asset /website_builder_engine/application.css - 304 Not Modified (5ms)
745
+
746
+
747
+ Started GET "/builder/articles/4e3886c29b8a306614000004/publish" for 127.0.0.1 at 2011-09-25 13:02:31 -0700
748
+ Processing by WebsiteBuilderEngine::ArticlesController#publish as HTML
749
+ Parameters: {"id"=>"4e3886c29b8a306614000004"}
750
+ MONGODB dummy_development['system.namespaces'].find({})
751
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
752
+ MONGODB dummy_development['system.namespaces'].find({})
753
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000004')}).sort([[:_id, :asc]])
754
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000003')}).sort([[:_id, :asc]])
755
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/template.html.haml (16.4ms)
756
+ Completed 500 Internal Server Error in 104ms
757
+
758
+ ActionView::Template::Error (Missing partial shared/google_analytics with {:handlers=>[:erb, :builder, :coffee, :haml], :formats=>[:html], :locale=>[:en, :en]}. Searched in:
759
+ * "/Users/danielkehoe/repos/website_builder_engine/spec/dummy/app/views"
760
+ * "/Users/danielkehoe/repos/website_builder_engine/app/views"
761
+ * "/Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/frontend-helpers-0.0.9.1/app/views"
762
+ ):
763
+ 17: = csrf_meta_tags
764
+ 18: %title
765
+ 19: = @article.title
766
+ 20: = render 'shared/google_analytics'
767
+ 21: %body.articles
768
+ 22: .container
769
+ 23: .logo.sixteen.columns
770
+
771
+
772
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
773
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
774
+ Rendered /Users/danielkehoe/.rvm/gems/ruby-1.9.2-p290@rails311rc1/gems/actionpack-3.1.1.rc1/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (4.6ms)
775
+ MongoDB logging. Please note that logging negatively impacts performance and should be disabled for high-performance production apps.
776
+ MONGODB admin['$cmd'].find({:ismaster=>1})
777
+ MONGODB admin['$cmd'].find({:ismaster=>1})
778
+
779
+
780
+ Started GET "/builder/articles/4e3886c29b8a306614000004/publish" for 127.0.0.1 at 2011-09-25 13:05:21 -0700
781
+ Processing by WebsiteBuilderEngine::ArticlesController#publish as HTML
782
+ Parameters: {"id"=>"4e3886c29b8a306614000004"}
783
+ MONGODB dummy_development['system.namespaces'].find({})
784
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
785
+ MONGODB dummy_development['system.namespaces'].find({})
786
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000004')}).sort([[:_id, :asc]])
787
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000003')}).sort([[:_id, :asc]])
788
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (1.9ms)
789
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/template.html.haml (30.1ms)
790
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (0.1ms)
791
+ MONGODB dummy_development['articles'].find({:published=>true}, {:_id=>1})
792
+ MONGODB dummy_development['articles'].find({:published=>true})
793
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/welcome/template.html.haml (16.0ms)
794
+ Redirected to http://lvh.me:3000/builder/articles
795
+ Completed 302 Found in 183ms
796
+
797
+
798
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 13:05:22 -0700
799
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
800
+ MONGODB dummy_development['system.namespaces'].find({})
801
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
802
+ MONGODB dummy_development['system.namespaces'].find({})
803
+ MONGODB dummy_development['articles'].find({})
804
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (9.2ms)
805
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (2.3ms)
806
+ Completed 200 OK in 107ms (Views: 25.5ms)
807
+
808
+
809
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:05:22 -0700
810
+ Served asset /website_builder_engine/application.css - 304 Not Modified (80ms)
811
+
812
+
813
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:05:22 -0700
814
+ Served asset /website_builder_engine/application.js - 304 Not Modified (18ms)
815
+
816
+
817
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 13:05:23 -0700
818
+ Served asset /application.css - 304 Not Modified (68ms)
819
+
820
+
821
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 13:05:23 -0700
822
+ Served asset /application.js - 304 Not Modified (2ms)
823
+
824
+
825
+ Started GET "/builder" for 127.0.0.1 at 2011-09-25 13:05:43 -0700
826
+ Processing by WebsiteBuilderEngine::HomeController#index as HTML
827
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/home/index.html.haml within layouts/website_builder_engine/home (14.8ms)
828
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
829
+ Completed 200 OK in 28ms (Views: 27.8ms)
830
+
831
+
832
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:05:43 -0700
833
+ Served asset /website_builder_engine/application.css - 304 Not Modified (2ms)
834
+
835
+
836
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:05:43 -0700
837
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
838
+
839
+
840
+ Started GET "/builder/settings" for 127.0.0.1 at 2011-09-25 13:05:45 -0700
841
+ Processing by WebsiteBuilderEngine::SettingsController#index as HTML
842
+ MONGODB dummy_development['system.namespaces'].find({})
843
+ MONGODB dummy_development['settings'].find({})
844
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/index.html.haml within layouts/website_builder_engine/application (7.1ms)
845
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
846
+ Completed 200 OK in 18ms (Views: 17.1ms)
847
+
848
+
849
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:05:45 -0700
850
+ Served asset /website_builder_engine/application.css - 304 Not Modified (2ms)
851
+
852
+
853
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:05:45 -0700
854
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
855
+
856
+
857
+ Started GET "/builder/settings/4e3886c29b8a306614000001/edit" for 127.0.0.1 at 2011-09-25 13:05:47 -0700
858
+ Processing by WebsiteBuilderEngine::SettingsController#edit as HTML
859
+ Parameters: {"id"=>"4e3886c29b8a306614000001"}
860
+ MONGODB dummy_development['system.namespaces'].find({})
861
+ MONGODB dummy_development['settings'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000001')}).sort([[:_id, :asc]])
862
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/_form.html.haml (83.7ms)
863
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/edit.html.haml within layouts/website_builder_engine/application (87.8ms)
864
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
865
+ Completed 200 OK in 119ms (Views: 116.9ms)
866
+
867
+
868
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:05:48 -0700
869
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
870
+
871
+
872
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:05:48 -0700
873
+ Served asset /website_builder_engine/application.css - 304 Not Modified (2ms)
874
+
875
+
876
+ Started GET "/builder/settings/4e3886c29b8a306614000001/edit" for 127.0.0.1 at 2011-09-25 13:06:15 -0700
877
+ Processing by WebsiteBuilderEngine::SettingsController#edit as HTML
878
+ Parameters: {"id"=>"4e3886c29b8a306614000001"}
879
+ MONGODB dummy_development['system.namespaces'].find({})
880
+ MONGODB dummy_development['settings'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000001')}).sort([[:_id, :asc]])
881
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/_form.html.haml (14.6ms)
882
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/edit.html.haml within layouts/website_builder_engine/application (16.7ms)
883
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
884
+ Completed 200 OK in 28ms (Views: 26.5ms)
885
+
886
+
887
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:06:15 -0700
888
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
889
+
890
+
891
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:06:15 -0700
892
+ Served asset /website_builder_engine/application.css - 304 Not Modified (2ms)
893
+
894
+
895
+ Started PUT "/builder/settings/4e3886c29b8a306614000001" for 127.0.0.1 at 2011-09-25 13:07:05 -0700
896
+ Processing by WebsiteBuilderEngine::SettingsController#update as HTML
897
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"JIYOsOhjCECZun5Bi2adUSCadtiUetinIHL/zJ63syk=", "setting"=>{"site_name"=>"Rails Apps", "site_title"=>"Rails 3.1 Example Apps and Tutorials", "site_tagline"=>"Starter Apps for Rails 3.1", "site_description"=>"Examples of complete working Rails 3.1 web applications", "site_keywords"=>"rails, ruby, apps, application, example, tutorial", "twitter_account"=>"rails_apps", "domain"=>"railsapps.github.com", "articles_directory"=>"howto", "offerpages_directory"=>"products", "sidebar"=>"h6. Colophon\r\n\r\nCreated with html5-website-builder", "introduction"=>"The Ruby on Rails platform is a living ecosystem: a community of developers, their projects, and complex dependencies among their projects. At times (often before and after the release of a major new version of Rails) the ecosystem enters a state of disequilibrium and important pieces no longer work together easily. These times of disequilibrium are valuable for the ecosystem because, as a whole, developers innovate and Rails improves during these times.", "google_analytics_id"=>"UA-123456-7"}, "commit"=>"Save", "id"=>"4e3886c29b8a306614000001"}
898
+ MONGODB dummy_development['system.namespaces'].find({})
899
+ MONGODB dummy_development['settings'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000001')}).sort([[:_id, :asc]])
900
+ MONGODB dummy_development['settings'].update({"_id"=>BSON::ObjectId('4e3886c29b8a306614000001')}, {"$set"=>{"google_analytics_id"=>"UA-123456-7"}})
901
+ Redirected to http://lvh.me:3000/builder/settings/4e3886c29b8a306614000001
902
+ Completed 302 Found in 4ms
903
+
904
+
905
+ Started GET "/builder/settings/4e3886c29b8a306614000001" for 127.0.0.1 at 2011-09-25 13:07:05 -0700
906
+ Processing by WebsiteBuilderEngine::SettingsController#show as HTML
907
+ Parameters: {"id"=>"4e3886c29b8a306614000001"}
908
+ MONGODB dummy_development['system.namespaces'].find({})
909
+ MONGODB dummy_development['settings'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000001')}).sort([[:_id, :asc]])
910
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/settings/show.html.haml within layouts/website_builder_engine/application (6.1ms)
911
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.8ms)
912
+ Completed 200 OK in 19ms (Views: 17.0ms)
913
+
914
+
915
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:07:05 -0700
916
+ Served asset /website_builder_engine/application.css - 304 Not Modified (2ms)
917
+
918
+
919
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:07:05 -0700
920
+ Served asset /website_builder_engine/application.js - 304 Not Modified (12ms)
921
+
922
+
923
+ Started GET "/builder/" for 127.0.0.1 at 2011-09-25 13:07:09 -0700
924
+ Processing by WebsiteBuilderEngine::HomeController#index as HTML
925
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/home/index.html.haml within layouts/website_builder_engine/home (1.2ms)
926
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.5ms)
927
+ Completed 200 OK in 9ms (Views: 8.5ms)
928
+
929
+
930
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:07:09 -0700
931
+ Served asset /website_builder_engine/application.js - 304 Not Modified (1ms)
932
+
933
+
934
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:07:09 -0700
935
+ Served asset /website_builder_engine/application.css - 304 Not Modified (8ms)
936
+
937
+
938
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 13:07:11 -0700
939
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
940
+ MONGODB dummy_development['system.namespaces'].find({})
941
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
942
+ MONGODB dummy_development['system.namespaces'].find({})
943
+ MONGODB dummy_development['articles'].find({})
944
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (43.2ms)
945
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
946
+ Completed 200 OK in 98ms (Views: 53.3ms)
947
+
948
+
949
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:07:11 -0700
950
+ Served asset /website_builder_engine/application.css - 304 Not Modified (3ms)
951
+
952
+
953
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:07:11 -0700
954
+ Served asset /website_builder_engine/application.js - 304 Not Modified (1ms)
955
+
956
+
957
+ Started GET "/builder/articles/4e3886c29b8a306614000004/publish" for 127.0.0.1 at 2011-09-25 13:07:13 -0700
958
+ Processing by WebsiteBuilderEngine::ArticlesController#publish as HTML
959
+ Parameters: {"id"=>"4e3886c29b8a306614000004"}
960
+ MONGODB dummy_development['system.namespaces'].find({})
961
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
962
+ MONGODB dummy_development['system.namespaces'].find({})
963
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000004')}).sort([[:_id, :asc]])
964
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000003')}).sort([[:_id, :asc]])
965
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (0.2ms)
966
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/template.html.haml (3.6ms)
967
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (0.2ms)
968
+ MONGODB dummy_development['articles'].find({:published=>true}, {:_id=>1})
969
+ MONGODB dummy_development['articles'].find({:published=>true})
970
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/welcome/template.html.haml (4.3ms)
971
+ Redirected to http://lvh.me:3000/builder/articles
972
+ Completed 302 Found in 62ms
973
+
974
+
975
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 13:07:13 -0700
976
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
977
+ MONGODB dummy_development['system.namespaces'].find({})
978
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
979
+ MONGODB dummy_development['system.namespaces'].find({})
980
+ MONGODB dummy_development['articles'].find({})
981
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (6.2ms)
982
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.8ms)
983
+ Completed 200 OK in 102ms (Views: 15.9ms)
984
+
985
+
986
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:07:13 -0700
987
+ Served asset /website_builder_engine/application.js - 304 Not Modified (3ms)
988
+
989
+
990
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:07:13 -0700
991
+ Served asset /website_builder_engine/application.css - 304 Not Modified (1ms)
992
+
993
+
994
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 13:07:14 -0700
995
+ Served asset /application.css - 304 Not Modified (4ms)
996
+
997
+
998
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 13:07:14 -0700
999
+ Served asset /application.js - 304 Not Modified (0ms)
1000
+
1001
+
1002
+ Started GET "/builder/articles/4e3886c29b8a306614000004/publish" for 127.0.0.1 at 2011-09-25 13:08:41 -0700
1003
+ Processing by WebsiteBuilderEngine::ArticlesController#publish as HTML
1004
+ Parameters: {"id"=>"4e3886c29b8a306614000004"}
1005
+ MONGODB dummy_development['system.namespaces'].find({})
1006
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
1007
+ MONGODB dummy_development['system.namespaces'].find({})
1008
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000004')}).sort([[:_id, :asc]])
1009
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000003')}).sort([[:_id, :asc]])
1010
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (2.2ms)
1011
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/template.html.haml (5.8ms)
1012
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (0.2ms)
1013
+ MONGODB dummy_development['articles'].find({:published=>true}, {:_id=>1})
1014
+ MONGODB dummy_development['articles'].find({:published=>true})
1015
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/welcome/template.html.haml (6.6ms)
1016
+ Redirected to http://lvh.me:3000/builder/articles
1017
+ Completed 302 Found in 109ms
1018
+
1019
+
1020
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 13:08:41 -0700
1021
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
1022
+ MONGODB dummy_development['system.namespaces'].find({})
1023
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
1024
+ MONGODB dummy_development['system.namespaces'].find({})
1025
+ MONGODB dummy_development['articles'].find({})
1026
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (6.3ms)
1027
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.7ms)
1028
+ Completed 200 OK in 105ms (Views: 15.8ms)
1029
+
1030
+
1031
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:08:41 -0700
1032
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
1033
+
1034
+
1035
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:08:41 -0700
1036
+ Served asset /website_builder_engine/application.css - 304 Not Modified (2ms)
1037
+
1038
+
1039
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 13:08:42 -0700
1040
+ Served asset /application.css - 304 Not Modified (7ms)
1041
+
1042
+
1043
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 13:08:42 -0700
1044
+ Served asset /application.js - 304 Not Modified (63ms)
1045
+
1046
+
1047
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 13:11:03 -0700
1048
+ Served asset /application.css - 304 Not Modified (2ms)
1049
+
1050
+
1051
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 13:11:03 -0700
1052
+ Served asset /application.js - 304 Not Modified (0ms)
1053
+ MongoDB logging. Please note that logging negatively impacts performance and should be disabled for high-performance production apps.
1054
+ MONGODB admin['$cmd'].find({:ismaster=>1})
1055
+ MONGODB admin['$cmd'].find({:ismaster=>1})
1056
+
1057
+
1058
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 13:51:53 -0700
1059
+ Served asset /application.js - 304 Not Modified (5ms)
1060
+
1061
+
1062
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 13:51:54 -0700
1063
+ Served asset /application.css - 304 Not Modified (68ms)
1064
+
1065
+
1066
+ Started GET "/builder" for 127.0.0.1 at 2011-09-25 13:52:02 -0700
1067
+ Processing by WebsiteBuilderEngine::HomeController#index as HTML
1068
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/home/index.html.haml within layouts/website_builder_engine/home (15.0ms)
1069
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (2.3ms)
1070
+ Completed 200 OK in 139ms (Views: 138.5ms)
1071
+
1072
+
1073
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:52:02 -0700
1074
+ Served asset /website_builder_engine/application.js - 304 Not Modified (39ms)
1075
+
1076
+
1077
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:52:02 -0700
1078
+ Served asset /website_builder_engine/application.css - 304 Not Modified (22ms)
1079
+
1080
+
1081
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 13:52:05 -0700
1082
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
1083
+ MONGODB dummy_development['system.namespaces'].find({})
1084
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
1085
+ MONGODB dummy_development['system.namespaces'].find({})
1086
+ MONGODB dummy_development['articles'].find({})
1087
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (8.7ms)
1088
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (39.1ms)
1089
+ Completed 200 OK in 155ms (Views: 62.5ms)
1090
+
1091
+
1092
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:52:05 -0700
1093
+ Served asset /website_builder_engine/application.css - 304 Not Modified (3ms)
1094
+
1095
+
1096
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:52:05 -0700
1097
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
1098
+
1099
+
1100
+ Started GET "/builder/articles/4e3886c29b8a306614000004/publish" for 127.0.0.1 at 2011-09-25 13:52:06 -0700
1101
+ Processing by WebsiteBuilderEngine::ArticlesController#publish as HTML
1102
+ Parameters: {"id"=>"4e3886c29b8a306614000004"}
1103
+ MONGODB dummy_development['system.namespaces'].find({})
1104
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
1105
+ MONGODB dummy_development['system.namespaces'].find({})
1106
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000004')}).sort([[:_id, :asc]])
1107
+ MONGODB dummy_development['articles'].find({:_id=>BSON::ObjectId('4e3886c29b8a306614000003')}).sort([[:_id, :asc]])
1108
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (2.2ms)
1109
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/template.html.haml (19.4ms)
1110
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_google_analytics.html.haml (0.2ms)
1111
+ MONGODB dummy_development['articles'].find({:published=>true}, {:_id=>1})
1112
+ MONGODB dummy_development['articles'].find({:published=>true})
1113
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/welcome/template.html.haml (17.7ms)
1114
+ Redirected to http://lvh.me:3000/builder/articles
1115
+ Completed 302 Found in 141ms
1116
+
1117
+
1118
+ Started GET "/builder/articles" for 127.0.0.1 at 2011-09-25 13:52:07 -0700
1119
+ Processing by WebsiteBuilderEngine::ArticlesController#index as HTML
1120
+ MONGODB dummy_development['system.namespaces'].find({})
1121
+ MONGODB dummy_development['settings'].find({}).sort([[:_id, :asc]])
1122
+ MONGODB dummy_development['system.namespaces'].find({})
1123
+ MONGODB dummy_development['articles'].find({})
1124
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/website_builder_engine/articles/index.html.haml within layouts/website_builder_engine/application (5.9ms)
1125
+ Rendered /Users/danielkehoe/repos/website_builder_engine/app/views/shared/_navigation.html.haml (0.9ms)
1126
+ Completed 200 OK in 109ms (Views: 15.8ms)
1127
+
1128
+
1129
+ Started GET "/assets/website_builder_engine/application.js" for 127.0.0.1 at 2011-09-25 13:52:07 -0700
1130
+ Served asset /website_builder_engine/application.js - 304 Not Modified (0ms)
1131
+
1132
+
1133
+ Started GET "/assets/website_builder_engine/application.css" for 127.0.0.1 at 2011-09-25 13:52:07 -0700
1134
+ Served asset /website_builder_engine/application.css - 304 Not Modified (6ms)
1135
+
1136
+
1137
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 13:52:09 -0700
1138
+ Served asset /application.css - 304 Not Modified (3ms)
1139
+
1140
+
1141
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 13:52:09 -0700
1142
+ Served asset /application.js - 304 Not Modified (0ms)
1143
+
1144
+
1145
+ Started GET "/assets/application.css" for 127.0.0.1 at 2011-09-25 13:52:54 -0700
1146
+ Served asset /application.css - 304 Not Modified (2ms)
1147
+
1148
+
1149
+ Started GET "/assets/application.js" for 127.0.0.1 at 2011-09-25 13:52:54 -0700
1150
+ Served asset /application.js - 304 Not Modified (0ms)