control_center 1.0.1

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.
Files changed (80) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.markdown +188 -0
  3. data/generators/control_center/control_center_generator.rb +26 -0
  4. data/generators/control_center/templates/control_center.rb +14 -0
  5. data/lib/control_center.rb +20 -0
  6. data/lib/control_center/engine.rb +18 -0
  7. data/lib/control_center/helpers/layout_helper.rb +65 -0
  8. data/lib/control_center/helpers/tab_builder.rb +14 -0
  9. data/lib/tasks/control_center_tasks.rake +4 -0
  10. data/rails/init.rb +7 -0
  11. data/test/rails/README +2 -0
  12. data/test/rails/Rakefile +10 -0
  13. data/test/rails/app/controllers/application.rb +15 -0
  14. data/test/rails/app/controllers/application_controller.rb +15 -0
  15. data/test/rails/app/controllers/test_controller.rb +3 -0
  16. data/test/rails/app/helpers/application_helper.rb +3 -0
  17. data/test/rails/app/helpers/test_helper.rb +2 -0
  18. data/test/rails/app/views/layouts/_header_links.html.erb +2 -0
  19. data/test/rails/app/views/layouts/_tabs.html.erb +3 -0
  20. data/test/rails/app/views/layouts/control_center.html.erb +64 -0
  21. data/test/rails/app/views/test/forms.html.erb +106 -0
  22. data/test/rails/app/views/test/index.html.erb +28 -0
  23. data/test/rails/app/views/test/no_sidebar.html.erb +17 -0
  24. data/test/rails/app/views/test/pagination.html.erb +4 -0
  25. data/test/rails/app/views/test/tab_override.html.erb +12 -0
  26. data/test/rails/app/views/test/table.html.erb +27 -0
  27. data/test/rails/config/boot.rb +110 -0
  28. data/test/rails/config/database.yml +22 -0
  29. data/test/rails/config/environment.rb +76 -0
  30. data/test/rails/config/environments/development.rb +17 -0
  31. data/test/rails/config/environments/production.rb +24 -0
  32. data/test/rails/config/environments/test.rb +22 -0
  33. data/test/rails/config/initializers/control_center.rb +14 -0
  34. data/test/rails/config/initializers/inflections.rb +10 -0
  35. data/test/rails/config/initializers/mime_types.rb +5 -0
  36. data/test/rails/config/initializers/new_rails_defaults.rb +17 -0
  37. data/test/rails/config/locales/en.yml +5 -0
  38. data/test/rails/config/routes.rb +43 -0
  39. data/test/rails/db/development.sqlite3 +0 -0
  40. data/test/rails/db/test.sqlite3 +0 -0
  41. data/test/rails/doc/README_FOR_APP +5 -0
  42. data/test/rails/lib/tasks/databaseless.rake +3 -0
  43. data/test/rails/log/development.log +251 -0
  44. data/test/rails/log/test.log +280 -0
  45. data/test/rails/public/404.html +30 -0
  46. data/test/rails/public/422.html +30 -0
  47. data/test/rails/public/500.html +33 -0
  48. data/test/rails/public/dispatch.cgi +10 -0
  49. data/test/rails/public/dispatch.fcgi +24 -0
  50. data/test/rails/public/dispatch.rb +10 -0
  51. data/test/rails/public/favicon.ico +0 -0
  52. data/test/rails/public/images/rails.png +0 -0
  53. data/test/rails/public/javascripts/application.js +2 -0
  54. data/test/rails/public/javascripts/controls.js +963 -0
  55. data/test/rails/public/javascripts/dragdrop.js +973 -0
  56. data/test/rails/public/javascripts/effects.js +1128 -0
  57. data/test/rails/public/javascripts/prototype.js +4320 -0
  58. data/test/rails/public/robots.txt +5 -0
  59. data/test/rails/public/stylesheets/control_center.css +289 -0
  60. data/test/rails/public/stylesheets/custom_css_1.css +0 -0
  61. data/test/rails/public/stylesheets/custom_css_2.css +0 -0
  62. data/test/rails/script/about +4 -0
  63. data/test/rails/script/console +3 -0
  64. data/test/rails/script/dbconsole +3 -0
  65. data/test/rails/script/destroy +3 -0
  66. data/test/rails/script/generate +3 -0
  67. data/test/rails/script/performance/benchmarker +3 -0
  68. data/test/rails/script/performance/profiler +3 -0
  69. data/test/rails/script/performance/request +3 -0
  70. data/test/rails/script/plugin +3 -0
  71. data/test/rails/script/process/inspector +3 -0
  72. data/test/rails/script/process/reaper +3 -0
  73. data/test/rails/script/process/spawner +3 -0
  74. data/test/rails/script/runner +3 -0
  75. data/test/rails/script/server +3 -0
  76. data/test/rails/test/functional/test_controller_test.rb +49 -0
  77. data/test/rails/test/performance/browsing_test.rb +9 -0
  78. data/test/rails/test/test_helper.rb +13 -0
  79. data/test/rails/update +6 -0
  80. metadata +145 -0
@@ -0,0 +1,17 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # In the development environment your application's code is reloaded on
4
+ # every request. This slows down response time but is perfect for development
5
+ # since you don't have to restart the webserver when you make code changes.
6
+ config.cache_classes = false
7
+
8
+ # Log error messages when you accidentally call methods on nil.
9
+ config.whiny_nils = true
10
+
11
+ # Show full error reports and disable caching
12
+ config.action_controller.consider_all_requests_local = true
13
+ config.action_view.debug_rjs = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,24 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The production environment is meant for finished, "live" apps.
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Enable threaded mode
8
+ # config.threadsafe!
9
+
10
+ # Use a different logger for distributed setups
11
+ # config.logger = SyslogLogger.new
12
+
13
+ # Full error reports are disabled and caching is turned on
14
+ config.action_controller.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Use a different cache store in production
18
+ # config.cache_store = :mem_cache_store
19
+
20
+ # Enable serving of images, stylesheets, and javascripts from an asset server
21
+ # config.action_controller.asset_host = "http://assets.example.com"
22
+
23
+ # Disable delivery errors, bad email addresses will be ignored
24
+ # config.action_mailer.raise_delivery_errors = false
@@ -0,0 +1,22 @@
1
+ # Settings specified here will take precedence over those in config/environment.rb
2
+
3
+ # The test environment is used exclusively to run your application's
4
+ # test suite. You never need to work with it otherwise. Remember that
5
+ # your test database is "scratch space" for the test suite and is wiped
6
+ # and recreated between test runs. Don't rely on the data there!
7
+ config.cache_classes = true
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.action_controller.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Disable request forgery protection in test environment
17
+ config.action_controller.allow_forgery_protection = false
18
+
19
+ # Tell Action Mailer not to deliver emails to the real world.
20
+ # The :test delivery method accumulates sent emails in the
21
+ # ActionMailer::Base.deliveries array.
22
+ config.action_mailer.delivery_method = :test
@@ -0,0 +1,14 @@
1
+ # This is an initializer script for Control Center. Customize it to your
2
+ # preferences
3
+
4
+ ControlCenter::Config.app_title = "Control Center"
5
+ ControlCenter::Config.theme_color = "#0033CC"
6
+
7
+ # Custom Stylesheets
8
+ # ControlCenter::Config.custom_css = {
9
+ # "custom_css_1" => { :media => :all },
10
+ # "custom_css_2" => { :media => :print }
11
+ # }
12
+
13
+ # Custom JavaScript Includes
14
+ #ControlCenter::Config.include_javascript = [:defaults]
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,17 @@
1
+ # These settings change the behavior of Rails 2 apps and will be defaults
2
+ # for Rails 3. You can remove this initializer when Rails 3 is released.
3
+
4
+ if defined?(ActiveRecord)
5
+ # Include Active Record class name as root for JSON serialized output.
6
+ ActiveRecord::Base.include_root_in_json = true
7
+
8
+ # Store the full class name (including module namespace) in STI type column.
9
+ ActiveRecord::Base.store_full_sti_class = true
10
+ end
11
+
12
+ # Use ISO 8601 format for JSON serialized times and dates.
13
+ ActiveSupport.use_standard_json_time_format = true
14
+
15
+ # Don't escape HTML entities in JSON, leave that for the #json_escape helper.
16
+ # if you're including raw json in an HTML page.
17
+ ActiveSupport.escape_html_entities_in_json = false
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,43 @@
1
+ ActionController::Routing::Routes.draw do |map|
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+
4
+ # Sample of regular route:
5
+ # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
6
+ # Keep in mind you can assign values other than :controller and :action
7
+
8
+ # Sample of named route:
9
+ # map.purchase 'products/:id/purchase', :controller => 'catalog', :action => 'purchase'
10
+ # This route can be invoked with purchase_url(:id => product.id)
11
+
12
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
13
+ # map.resources :products
14
+
15
+ # Sample resource route with options:
16
+ # map.resources :products, :member => { :short => :get, :toggle => :post }, :collection => { :sold => :get }
17
+
18
+ # Sample resource route with sub-resources:
19
+ # map.resources :products, :has_many => [ :comments, :sales ], :has_one => :seller
20
+
21
+ # Sample resource route with more complex sub-resources
22
+ # map.resources :products do |products|
23
+ # products.resources :comments
24
+ # products.resources :sales, :collection => { :recent => :get }
25
+ # end
26
+
27
+ # Sample resource route within a namespace:
28
+ # map.namespace :admin do |admin|
29
+ # # Directs /admin/products/* to Admin::ProductsController (app/controllers/admin/products_controller.rb)
30
+ # admin.resources :products
31
+ # end
32
+
33
+ # You can have the root of your site routed with map.root -- just remember to delete public/index.html.
34
+ map.root :controller => "test"
35
+
36
+ # See how all your routes lay out with "rake routes"
37
+
38
+ # Install the default routes as the lowest priority.
39
+ # Note: These default routes make all actions in every controller accessible via GET requests. You should
40
+ # consider removing the them or commenting them out if you're using named routes and resources.
41
+ map.connect ':controller/:action/:id'
42
+ map.connect ':controller/:action/:id.:format'
43
+ end
Binary file
File without changes
@@ -0,0 +1,5 @@
1
+ To build the guides:
2
+
3
+ * Install source-highlighter (http://www.gnu.org/software/src-highlite/source-highlight.html)
4
+ * Install the mizuho gem (http://github.com/FooBarWidget/mizuho/tree/master)
5
+ * Run `rake guides` from the railties directory
@@ -0,0 +1,3 @@
1
+ ["test:units", "test:functionals", "test:integration"].each do |name|
2
+ Rake::Task[name].prerequisites.clear
3
+ end
@@ -0,0 +1,251 @@
1
+ # Logfile created on Sat May 16 14:40:27 -0400 2009
2
+
3
+ Processing TestController#forms (for 127.0.0.1 at 2009-05-16 14:51:48) [GET]
4
+ Rendering template within layouts/control_center
5
+ Rendering test/forms
6
+ Rendered layouts/_header_links (0.3ms)
7
+ Rendered layouts/_tabs (0.6ms)
8
+ Completed in 32ms (View: 10, DB: 0) | 200 OK [http://localhost/test/forms]
9
+
10
+
11
+ Processing TestController#pagination (for 127.0.0.1 at 2009-05-16 14:51:52) [GET]
12
+ Rendering template within layouts/control_center
13
+ Rendering test/pagination
14
+ Rendered layouts/_header_links (0.2ms)
15
+ Rendered layouts/_tabs (0.4ms)
16
+ Completed in 9ms (View: 6, DB: 0) | 200 OK [http://localhost/test/pagination]
17
+
18
+
19
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-05-16 14:52:03) [GET]
20
+ Parameters: {"page"=>"2"}
21
+
22
+
23
+ ActionController::RoutingError (No route matches "/realms/2/orders" with {:method=>:get}):
24
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/routing/recognition_optimisation.rb:66:in `recognize_path'
25
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/routing/route_set.rb:386:in `recognize'
26
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:182:in `handle_request'
27
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:110:in `dispatch_unlocked'
28
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:123:in `dispatch'
29
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `synchronize'
30
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `dispatch'
31
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:132:in `dispatch_cgi'
32
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:39:in `dispatch'
33
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process'
34
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize'
35
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process'
36
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client'
37
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each'
38
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client'
39
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run'
40
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize'
41
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new'
42
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run'
43
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize'
44
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new'
45
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run'
46
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run'
47
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each'
48
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run'
49
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run'
50
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run'
51
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281
52
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load_without_new_constant_marking'
53
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
54
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
55
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
56
+ /Library/Ruby/Gems/1.8/gems/rails-2.2.2/lib/commands/servers/mongrel.rb:64
57
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
58
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
59
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
60
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
61
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
62
+ /Library/Ruby/Gems/1.8/gems/rails-2.2.2/lib/commands/server.rb:49
63
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
64
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
65
+ script/server:3
66
+
67
+ Rendering /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/templates/rescues/layout.erb (not_found)
68
+
69
+
70
+ Processing ApplicationController#index (for 127.0.0.1 at 2009-05-16 14:52:09) [GET]
71
+ Parameters: {"page"=>"9"}
72
+
73
+
74
+ ActionController::RoutingError (No route matches "/realms/2/orders" with {:method=>:get}):
75
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/routing/recognition_optimisation.rb:66:in `recognize_path'
76
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/routing/route_set.rb:386:in `recognize'
77
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:182:in `handle_request'
78
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:110:in `dispatch_unlocked'
79
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:123:in `dispatch'
80
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `synchronize'
81
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:122:in `dispatch'
82
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:132:in `dispatch_cgi'
83
+ /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/dispatcher.rb:39:in `dispatch'
84
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:76:in `process'
85
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `synchronize'
86
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/../lib/mongrel/rails.rb:74:in `process'
87
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:159:in `process_client'
88
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `each'
89
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:158:in `process_client'
90
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run'
91
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `initialize'
92
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `new'
93
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:285:in `run'
94
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `initialize'
95
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `new'
96
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel.rb:268:in `run'
97
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:282:in `run'
98
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `each'
99
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/configurator.rb:281:in `run'
100
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:128:in `run'
101
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/lib/mongrel/command.rb:212:in `run'
102
+ /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/gems/1.8/gems/mongrel-1.1.4/bin/mongrel_rails:281
103
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load_without_new_constant_marking'
104
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
105
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
106
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:142:in `load'
107
+ /Library/Ruby/Gems/1.8/gems/rails-2.2.2/lib/commands/servers/mongrel.rb:64
108
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
109
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
110
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
111
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:521:in `new_constants_in'
112
+ /Library/Ruby/Gems/1.8/gems/activesupport-2.2.2/lib/active_support/dependencies.rb:153:in `require'
113
+ /Library/Ruby/Gems/1.8/gems/rails-2.2.2/lib/commands/server.rb:49
114
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `gem_original_require'
115
+ /Library/Ruby/Site/1.8/rubygems/custom_require.rb:31:in `require'
116
+ script/server:3
117
+
118
+ Rendering /Library/Ruby/Gems/1.8/gems/actionpack-2.2.2/lib/action_controller/templates/rescues/layout.erb (not_found)
119
+
120
+
121
+ Processing TestController#index (for 127.0.0.1 at 2010-08-09 22:59:31) [GET]
122
+ Rendering template within layouts/control_center
123
+ Rendering test/index
124
+ Rendered layouts/_header_links (0.6ms)
125
+ Rendered layouts/_tabs (1.1ms)
126
+ Completed in 152ms (View: 149, DB: 0) | 200 OK [http://localhost/]
127
+
128
+
129
+ Processing ApplicationController#index (for 127.0.0.1 at 2010-08-09 22:59:34) [GET]
130
+
131
+ ActionController::RoutingError (No route matches "/2" with {:method=>:get}):
132
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
133
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
134
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
135
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start'
136
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
137
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:95:in `start'
138
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `each'
139
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `start'
140
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:23:in `start'
141
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:82:in `start'
142
+
143
+ Rendering rescues/layout (not_found)
144
+
145
+
146
+ Processing TestController#index (for 127.0.0.1 at 2010-08-09 22:59:36) [GET]
147
+ Rendering template within layouts/control_center
148
+ Rendering test/index
149
+ Rendered layouts/_header_links (0.2ms)
150
+ Rendered layouts/_tabs (0.4ms)
151
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://localhost/]
152
+
153
+
154
+ Processing ApplicationController#index (for 127.0.0.1 at 2010-08-09 22:59:45) [GET]
155
+
156
+ ActionController::RoutingError (No route matches "/tab2" with {:method=>:get}):
157
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
158
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
159
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
160
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start'
161
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
162
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:95:in `start'
163
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `each'
164
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `start'
165
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:23:in `start'
166
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:82:in `start'
167
+
168
+ Rendering rescues/layout (not_found)
169
+
170
+
171
+ Processing TestController#index (for 127.0.0.1 at 2010-08-09 22:59:47) [GET]
172
+ Rendering template within layouts/control_center
173
+ Rendering test/index
174
+ Rendered layouts/_header_links (0.2ms)
175
+ Rendered layouts/_tabs (0.5ms)
176
+ Completed in 5ms (View: 4, DB: 0) | 200 OK [http://localhost/]
177
+
178
+
179
+ Processing ApplicationController#index (for 127.0.0.1 at 2010-08-09 22:59:50) [GET]
180
+
181
+ ActionController::RoutingError (No route matches "/tab3" with {:method=>:get}):
182
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
183
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
184
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
185
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start'
186
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
187
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:95:in `start'
188
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `each'
189
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `start'
190
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:23:in `start'
191
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:82:in `start'
192
+
193
+ Rendering rescues/layout (not_found)
194
+
195
+
196
+ Processing TestController#index (for 127.0.0.1 at 2010-08-09 22:59:52) [GET]
197
+ Rendering template within layouts/control_center
198
+ Rendering test/index
199
+ Rendered layouts/_header_links (0.2ms)
200
+ Rendered layouts/_tabs (0.5ms)
201
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://localhost/]
202
+
203
+
204
+ Processing ApplicationController#index (for 127.0.0.1 at 2010-08-09 22:59:59) [GET]
205
+
206
+ ActionController::RoutingError (No route matches "/some" with {:method=>:get}):
207
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
208
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
209
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
210
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start'
211
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
212
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:95:in `start'
213
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `each'
214
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `start'
215
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:23:in `start'
216
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:82:in `start'
217
+
218
+ Rendering rescues/layout (not_found)
219
+
220
+
221
+ Processing TestController#index (for 127.0.0.1 at 2010-08-09 23:00:01) [GET]
222
+ Rendering template within layouts/control_center
223
+ Rendering test/index
224
+ Rendered layouts/_header_links (0.2ms)
225
+ Rendered layouts/_tabs (0.5ms)
226
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://localhost/]
227
+
228
+
229
+ Processing ApplicationController#index (for 127.0.0.1 at 2010-08-09 23:00:03) [GET]
230
+
231
+ ActionController::RoutingError (No route matches "/link" with {:method=>:get}):
232
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:104:in `service'
233
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/httpserver.rb:65:in `run'
234
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:173:in `start_thread'
235
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start'
236
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:162:in `start_thread'
237
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:95:in `start'
238
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `each'
239
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:92:in `start'
240
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:23:in `start'
241
+ /Users/alan/.rvm/rubies/ruby-1.8.7-p299/lib/ruby/1.8/webrick/server.rb:82:in `start'
242
+
243
+ Rendering rescues/layout (not_found)
244
+
245
+
246
+ Processing TestController#index (for 127.0.0.1 at 2010-08-09 23:00:04) [GET]
247
+ Rendering template within layouts/control_center
248
+ Rendering test/index
249
+ Rendered layouts/_header_links (0.2ms)
250
+ Rendered layouts/_tabs (0.8ms)
251
+ Completed in 85ms (View: 83, DB: 0) | 200 OK [http://localhost/]
@@ -0,0 +1,280 @@
1
+ # Logfile created on Sat May 16 14:58:42 -0400 2009
2
+
3
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 14:58:44) [GET]
4
+ Rendering template within layouts/control_center
5
+ Rendering test/index
6
+ Rendered layouts/_header_links (0.2ms)
7
+ Rendered layouts/_tabs (0.5ms)
8
+ Completed in 7ms (View: 5, DB: 0) | 200 OK [http://test.host/]
9
+
10
+
11
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 14:58:44) [GET]
12
+ Rendering template within layouts/control_center
13
+ Rendering test/index
14
+ Rendered layouts/_header_links (0.1ms)
15
+ Rendered layouts/_tabs (0.4ms)
16
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
17
+
18
+
19
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 14:58:44) [GET]
20
+ Rendering template within layouts/control_center
21
+ Rendering test/index
22
+ Rendered layouts/_header_links (0.1ms)
23
+ Rendered layouts/_tabs (0.4ms)
24
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
25
+
26
+
27
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 14:59:36) [GET]
28
+ Rendering template within layouts/control_center
29
+ Rendering test/index
30
+ Rendered layouts/_header_links (0.2ms)
31
+ Rendered layouts/_tabs (0.5ms)
32
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/]
33
+
34
+
35
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 14:59:36) [GET]
36
+ Rendering template within layouts/control_center
37
+ Rendering test/index
38
+ Rendered layouts/_header_links (0.1ms)
39
+ Rendered layouts/_tabs (0.4ms)
40
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
41
+
42
+
43
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 14:59:36) [GET]
44
+ Rendering template within layouts/control_center
45
+ Rendering test/index
46
+ Rendered layouts/_header_links (0.1ms)
47
+ Rendered layouts/_tabs (0.4ms)
48
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
49
+
50
+
51
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 14:59:36) [GET]
52
+ Rendering template within layouts/control_center
53
+ Rendering test/index
54
+ Rendered layouts/_header_links (0.1ms)
55
+ Rendered layouts/_tabs (0.4ms)
56
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
57
+
58
+
59
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:03:57) [GET]
60
+ Rendering template within layouts/control_center
61
+ Rendering test/index
62
+ Rendered layouts/_header_links (0.2ms)
63
+ Rendered layouts/_tabs (0.5ms)
64
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/]
65
+
66
+
67
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:03:57) [GET]
68
+ Rendering template within layouts/control_center
69
+ Rendering test/index
70
+ Rendered layouts/_header_links (0.1ms)
71
+ Rendered layouts/_tabs (0.4ms)
72
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
73
+
74
+
75
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:03:57) [GET]
76
+ Rendering template within layouts/control_center
77
+ Rendering test/index
78
+ Rendered layouts/_header_links (0.1ms)
79
+ Rendered layouts/_tabs (0.4ms)
80
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
81
+
82
+
83
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:03:57) [GET]
84
+ Rendering template within layouts/control_center
85
+ Rendering test/index
86
+ Rendered layouts/_header_links (0.2ms)
87
+ Rendered layouts/_tabs (0.4ms)
88
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
89
+
90
+
91
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:04:41) [GET]
92
+ Rendering template within layouts/control_center
93
+ Rendering test/index
94
+ Rendered layouts/_header_links (0.2ms)
95
+ Rendered layouts/_tabs (0.5ms)
96
+ Completed in 7ms (View: 4, DB: 0) | 200 OK [http://test.host/]
97
+
98
+
99
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:04:41) [GET]
100
+ Rendering template within layouts/control_center
101
+ Rendering test/index
102
+ Rendered layouts/_header_links (0.1ms)
103
+ Rendered layouts/_tabs (0.4ms)
104
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/]
105
+
106
+
107
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:04:41) [GET]
108
+ Rendering template within layouts/control_center
109
+ Rendering test/index
110
+ Rendered layouts/_header_links (0.1ms)
111
+ Rendered layouts/_tabs (0.4ms)
112
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
113
+
114
+
115
+ Processing TestController#index (for 0.0.0.0 at 2009-05-16 15:04:41) [GET]
116
+ Rendering template within layouts/control_center
117
+ Rendering test/index
118
+ Rendered layouts/_header_links (0.1ms)
119
+ Rendered layouts/_tabs (0.4ms)
120
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
121
+
122
+
123
+ Processing TestController#index (for 0.0.0.0 at 2009-12-03 23:59:37) [GET]
124
+ Rendering template within layouts/control_center
125
+ Rendering test/index
126
+ Rendered layouts/_header_links (0.2ms)
127
+ Rendered layouts/_tabs (0.4ms)
128
+ Completed in 7ms (View: 4, DB: 0) | 200 OK [http://test.host/]
129
+
130
+
131
+ Processing TestController#index (for 0.0.0.0 at 2009-12-03 23:59:37) [GET]
132
+ Rendering template within layouts/control_center
133
+ Rendering test/index
134
+ Rendered layouts/_header_links (0.1ms)
135
+ Rendered layouts/_tabs (0.3ms)
136
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
137
+
138
+
139
+ Processing TestController#index (for 0.0.0.0 at 2009-12-03 23:59:37) [GET]
140
+ Rendering template within layouts/control_center
141
+ Rendering test/index
142
+ Rendered layouts/_header_links (0.1ms)
143
+ Rendered layouts/_tabs (0.3ms)
144
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
145
+
146
+
147
+ Processing TestController#index (for 0.0.0.0 at 2009-12-03 23:59:37) [GET]
148
+ Rendering template within layouts/control_center
149
+ Rendering test/index
150
+ Rendered layouts/_header_links (0.1ms)
151
+ Rendered layouts/_tabs (0.3ms)
152
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
153
+
154
+
155
+ Processing TestController#index (for 0.0.0.0 at 2009-12-04 00:05:09) [GET]
156
+ Rendering template within layouts/control_center
157
+ Rendering test/index
158
+ Rendered layouts/_header_links (0.2ms)
159
+ Rendered layouts/_tabs (0.4ms)
160
+ Completed in 6ms (View: 4, DB: 0) | 200 OK [http://test.host/]
161
+
162
+
163
+ Processing TestController#index (for 0.0.0.0 at 2009-12-04 00:05:09) [GET]
164
+ Rendering template within layouts/control_center
165
+ Rendering test/index
166
+ Rendered layouts/_header_links (0.1ms)
167
+ Rendered layouts/_tabs (0.3ms)
168
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
169
+
170
+
171
+ Processing TestController#index (for 0.0.0.0 at 2009-12-04 00:05:09) [GET]
172
+ Rendering template within layouts/control_center
173
+ Rendering test/index
174
+ Rendered layouts/_header_links (0.1ms)
175
+ Rendered layouts/_tabs (0.3ms)
176
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
177
+
178
+
179
+ Processing TestController#index (for 0.0.0.0 at 2009-12-04 00:05:09) [GET]
180
+ Rendering template within layouts/control_center
181
+ Rendering test/index
182
+ Rendered layouts/_header_links (0.1ms)
183
+ Rendered layouts/_tabs (0.4ms)
184
+ Completed in 3ms (View: 2, DB: 0) | 200 OK [http://test.host/]
185
+
186
+
187
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:56:39) [GET]
188
+ Rendering template within layouts/control_center
189
+ Rendering test/index
190
+ Rendered layouts/_header_links (0.5ms)
191
+ Rendered layouts/_tabs (0.7ms)
192
+ Completed in 48ms (View: 46, DB: 0) | 200 OK [http://test.host/]
193
+
194
+
195
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:56:39) [GET]
196
+ Rendering template within layouts/control_center
197
+ Rendering test/index
198
+ Rendered layouts/_header_links (0.2ms)
199
+ Rendered layouts/_tabs (0.6ms)
200
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/]
201
+
202
+
203
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:56:39) [GET]
204
+ Rendering template within layouts/control_center
205
+ Rendering test/index
206
+ Rendered layouts/_header_links (0.2ms)
207
+ Rendered layouts/_tabs (0.8ms)
208
+ Completed in 5ms (View: 4, DB: 0) | 200 OK [http://test.host/]
209
+
210
+
211
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:56:39) [GET]
212
+ Rendering template within layouts/control_center
213
+ Rendering test/index
214
+ Rendered layouts/_header_links (0.2ms)
215
+ Rendered layouts/_tabs (0.7ms)
216
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/]
217
+
218
+
219
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:57:29) [GET]
220
+ Rendering template within layouts/control_center
221
+ Rendering test/index
222
+ Rendered layouts/_header_links (0.4ms)
223
+ Rendered layouts/_tabs (0.7ms)
224
+ Completed in 15ms (View: 13, DB: 0) | 200 OK [http://test.host/]
225
+
226
+
227
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:57:29) [GET]
228
+ Rendering template within layouts/control_center
229
+ Rendering test/index
230
+ Rendered layouts/_header_links (0.2ms)
231
+ Rendered layouts/_tabs (0.4ms)
232
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
233
+
234
+
235
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:57:29) [GET]
236
+ Rendering template within layouts/control_center
237
+ Rendering test/index
238
+ Rendered layouts/_header_links (0.2ms)
239
+ Rendered layouts/_tabs (0.4ms)
240
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
241
+
242
+
243
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:57:29) [GET]
244
+ Rendering template within layouts/control_center
245
+ Rendering test/index
246
+ Rendered layouts/_header_links (0.2ms)
247
+ Rendered layouts/_tabs (0.5ms)
248
+ Completed in 3ms (View: 3, DB: 0) | 200 OK [http://test.host/]
249
+
250
+
251
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:59:09) [GET]
252
+ Rendering template within layouts/control_center
253
+ Rendering test/index
254
+ Rendered layouts/_header_links (0.4ms)
255
+ Rendered layouts/_tabs (0.9ms)
256
+ Completed in 17ms (View: 15, DB: 0) | 200 OK [http://test.host/]
257
+
258
+
259
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:59:09) [GET]
260
+ Rendering template within layouts/control_center
261
+ Rendering test/index
262
+ Rendered layouts/_header_links (0.2ms)
263
+ Rendered layouts/_tabs (0.4ms)
264
+ Completed in 4ms (View: 4, DB: 0) | 200 OK [http://test.host/]
265
+
266
+
267
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:59:09) [GET]
268
+ Rendering template within layouts/control_center
269
+ Rendering test/index
270
+ Rendered layouts/_header_links (0.2ms)
271
+ Rendered layouts/_tabs (0.4ms)
272
+ Completed in 4ms (View: 3, DB: 0) | 200 OK [http://test.host/]
273
+
274
+
275
+ Processing TestController#index (for 0.0.0.0 at 2010-08-09 22:59:09) [GET]
276
+ Rendering template within layouts/control_center
277
+ Rendering test/index
278
+ Rendered layouts/_header_links (0.2ms)
279
+ Rendered layouts/_tabs (0.5ms)
280
+ Completed in 5ms (View: 5, DB: 0) | 200 OK [http://test.host/]