diff --git a/Gemfile b/Gemfile index 589a17f..cd641bf 100644 --- a/Gemfile +++ b/Gemfile @@ -31,4 +31,5 @@ gem 'sqlite3-ruby', :require => 'sqlite3' gem 'typus', :git => 'git://github.com/fesplugas/typus.git' gem 'mini_exiftool' -gem "will_paginate", "3.0.pre" \ No newline at end of file +gem "will_paginate", "3.0.pre" +gem 'rdiscount' \ No newline at end of file diff --git a/Gemfile.lock b/Gemfile.lock index bbd8093..eaf82d4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -66,6 +66,7 @@ GEM rake (>= 0.8.4) thor (~> 0.14.0) rake (0.8.7) + rdiscount (1.6.5) sqlite3-ruby (1.3.1) thor (0.14.3) treetop (1.4.8) @@ -79,6 +80,7 @@ PLATFORMS DEPENDENCIES mini_exiftool rails (= 3.0.0) + rdiscount sqlite3-ruby typus! will_paginate (= 3.0.pre) diff --git a/app/controllers/admin/admin_users_controller.rb b/app/controllers/admin/admin_users_controller.rb new file mode 100644 index 0000000..6428fe3 --- /dev/null +++ b/app/controllers/admin/admin_users_controller.rb @@ -0,0 +1,2 @@ +class Admin::AdminUsersController < Admin::ResourcesController +end diff --git a/app/controllers/admin/pages_controller.rb b/app/controllers/admin/pages_controller.rb new file mode 100644 index 0000000..df12653 --- /dev/null +++ b/app/controllers/admin/pages_controller.rb @@ -0,0 +1,2 @@ +class Admin::PagesController < Admin::ResourcesController +end diff --git a/app/controllers/contacts_controller.rb b/app/controllers/contacts_controller.rb new file mode 100644 index 0000000..c6a30cd --- /dev/null +++ b/app/controllers/contacts_controller.rb @@ -0,0 +1,17 @@ +class ContactsController < ApplicationController + layout "photos" + + def new + @contact = Contact.new(:id => 1) + end + + def create + @contact = Contact.new(params[:contact]) + if @contact.save + redirect_to(:new_contact, :notice => "Thanks for your email, I'll be in touch as soon as possible.") + else + flash[:alert] = "Please fill in fields marked in red." + render :new + end + end +end diff --git a/app/controllers/pages_controller.rb b/app/controllers/pages_controller.rb index 7ce5503..27206b1 100644 --- a/app/controllers/pages_controller.rb +++ b/app/controllers/pages_controller.rb @@ -4,4 +4,8 @@ class PagesController < ApplicationController def index @photo = Photo.first(:order => 'RANDOM()') end + + def about + @content = Page.find_by_name('about') + end end diff --git a/app/helpers/contacts_helper.rb b/app/helpers/contacts_helper.rb new file mode 100644 index 0000000..593025b --- /dev/null +++ b/app/helpers/contacts_helper.rb @@ -0,0 +1,2 @@ +module ContactsHelper +end diff --git a/app/mailers/notifier.rb b/app/mailers/notifier.rb new file mode 100644 index 0000000..49f8a9d --- /dev/null +++ b/app/mailers/notifier.rb @@ -0,0 +1,10 @@ +class Notifier < ActionMailer::Base + default :from => "enquiries@danbarberphoto.com" + + def contact_notification(sender) + @sender = sender + mail( :to => 'danbee@gmail.com', + :from => sender.email, + :subject => sender.subject) + end +end diff --git a/app/models/admin_user.rb b/app/models/admin_user.rb new file mode 100644 index 0000000..dff5393 --- /dev/null +++ b/app/models/admin_user.rb @@ -0,0 +1,8 @@ +class AdminUser < ActiveRecord::Base + + ROLE = Typus::Configuration.roles.keys.sort + LANGUAGE = Typus.locales + + enable_as_typus_user + +end diff --git a/app/models/contact.rb b/app/models/contact.rb new file mode 100644 index 0000000..876cb5c --- /dev/null +++ b/app/models/contact.rb @@ -0,0 +1,26 @@ +class Contact + include ActiveModel::Validations + + validates_presence_of :email, :name, :message + + attr_accessor :id, :email, :subject, :name, :message + + def initialize(attributes = {}) + attributes.each do |key, value| + self.send("#{key}=", value) + end + @attributes = attributes + end + + def read_attribute_for_validation(key) + @attributes[key] + end + + def save + if self.valid? + Notifier.contact_notification(self).deliver + return true + end + return false + end +end diff --git a/app/models/page.rb b/app/models/page.rb new file mode 100644 index 0000000..191f5cc --- /dev/null +++ b/app/models/page.rb @@ -0,0 +1,8 @@ +require 'rdiscount' + +class Page < ActiveRecord::Base + def html + markdown = Markdown.new(self.content, :smart) + markdown.to_html + end +end diff --git a/app/views/contacts/index.html.erb b/app/views/contacts/index.html.erb new file mode 100644 index 0000000..9f7d70b --- /dev/null +++ b/app/views/contacts/index.html.erb @@ -0,0 +1,14 @@ +
+ <%= link_to raw('about'), about_url %> +
+
+ <%= link_to raw('portfolio'), :controller => 'categories' %> +
+ + +
+ <% if flash[:notice] -%> +
<%= flash[:notice] %>
+ <% end -%> +

Tel: 01752 546981

+
\ No newline at end of file diff --git a/app/views/contacts/new.html.erb b/app/views/contacts/new.html.erb new file mode 100644 index 0000000..0b4f4b7 --- /dev/null +++ b/app/views/contacts/new.html.erb @@ -0,0 +1,46 @@ +
+ <%= link_to raw('about'), about_url %> +
+
+ <%= link_to raw('portfolio'), :controller => 'categories' %> +
+ + +
+ <%= form_for :contact, :url => { :action => 'create' } do |f| %> + <% if flash[:notice] -%> +
<%= flash[:notice] %>
+ <% end -%> + <% if flash[:alert] -%> +
<%= flash[:alert] %>
+ <% end -%> +

Please use the form below to contact me.

+

+ <%= f.label :name %> + <%= f.text_field :name %> +

+

+ <%= f.label :email %> + <%= f.text_field :email %> +

+

+ <%= f.label :subject %> + <%= f.text_field :subject %> +

+

+ <%= f.label :message %> + <%= f.text_area :message %> +

+

+ <%= f.label raw(' ') %> + <%= f.submit 'Send Message' %> +

+ <% end %> +
+ +
+
+
+
+
+
diff --git a/app/views/layouts/photos.html.erb b/app/views/layouts/photos.html.erb index cb84252..b32e372 100644 --- a/app/views/layouts/photos.html.erb +++ b/app/views/layouts/photos.html.erb @@ -19,7 +19,7 @@
<%= yield %> diff --git a/app/views/notifier/contact_notification.text.erb b/app/views/notifier/contact_notification.text.erb new file mode 100644 index 0000000..b6bdc83 --- /dev/null +++ b/app/views/notifier/contact_notification.text.erb @@ -0,0 +1 @@ +<%=h @sender.message %> \ No newline at end of file diff --git a/app/views/pages/about.html.erb b/app/views/pages/about.html.erb index 683b8a0..d498da8 100644 --- a/app/views/pages/about.html.erb +++ b/app/views/pages/about.html.erb @@ -7,10 +7,13 @@
-
+
+
+ <%= raw(@content.html) %> +
-
+
@@ -20,7 +23,7 @@
- <%= link_to raw('contact'), :action => 'contact' %> + <%= link_to raw('contact'), new_contact_url %>
\ No newline at end of file diff --git a/app/views/pages/index.html.erb b/app/views/pages/index.html.erb index 7919d2f..e1a5a97 100644 --- a/app/views/pages/index.html.erb +++ b/app/views/pages/index.html.erb @@ -17,5 +17,5 @@
- <%= link_to raw('contact'), contact_url %> + <%= link_to raw('contact'), new_contact_url %>
diff --git a/config/application.rb b/config/application.rb index 0449d07..d03f8f4 100644 --- a/config/application.rb +++ b/config/application.rb @@ -40,3 +40,5 @@ module Photos config.filter_parameters += [:password] end end + +ActionMailer::Base.delivery_method = :sendmail \ No newline at end of file diff --git a/config/initializers/typus_authentication.rb b/config/initializers/typus_authentication.rb new file mode 100644 index 0000000..9329423 --- /dev/null +++ b/config/initializers/typus_authentication.rb @@ -0,0 +1,18 @@ +Typus.setup do |config| + + # Define authentication: +:none+, +:http_basic+, +:session+ + config.authentication = :session + + # Define master_role. + # config.master_role = "admin" + + # Define relationship. + # config.relationship = "typus_users" + + # Define user_class_name. + config.user_class_name = "AdminUser" + + # Define user_fk. + config.user_fk = "admin_user_id" + +end diff --git a/config/routes.rb b/config/routes.rb index fe65211..8278e9d 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -1,4 +1,6 @@ Photos::Application.routes.draw do + resources :contacts + # The priority is based upon order of creation: # first created -> highest priority. @@ -61,7 +63,8 @@ Photos::Application.routes.draw do root :to => 'pages#index' match 'about' => 'pages#about', :as => :about - match 'contact' => 'pages#contact', :as => :contact + #match 'contact' => 'pages#contact', :as => :contact + resources :contacts, :only => [:new, :create] # This is a legacy wild controller route that's not recommended for RESTful applications. # Note: This route will make all actions in every controller accessible via GET requests. diff --git a/config/typus/application.yml b/config/typus/application.yml index 4b032df..9664875 100644 --- a/config/typus/application.yml +++ b/config/typus/application.yml @@ -22,3 +22,12 @@ Photo: search: title application: Photos +Page: + fields: + default: name, title + form: name, title, content + order_by: + relationships: + filters: + search: title + application: Photos \ No newline at end of file diff --git a/config/typus/application_roles.yml b/config/typus/application_roles.yml index 473d606..3ff9f28 100644 --- a/config/typus/application_roles.yml +++ b/config/typus/application_roles.yml @@ -5,3 +5,4 @@ admin: Category: create, read, update, delete Photo: create, read, update, delete + Page: create, read, update, delete diff --git a/config/typus/typus.yml b/config/typus/typus.yml new file mode 100644 index 0000000..82c4cc9 --- /dev/null +++ b/config/typus/typus.yml @@ -0,0 +1,17 @@ +# Typus Models Configuration File +# +# Use the README file as a reference to customize settings. + +AdminUser: + fields: + default: first_name, last_name, role, email, language + list: email, role, status + form: first_name, last_name, role, email, password, password_confirmation, language + options: + selectors: role, language + booleans: + status: Active, Inactive + filters: status, role + search: first_name, last_name, email, role + application: Admin Panel + description: Users Administration diff --git a/config/typus/typus_roles.yml b/config/typus/typus_roles.yml new file mode 100644 index 0000000..6c2facf --- /dev/null +++ b/config/typus/typus_roles.yml @@ -0,0 +1,6 @@ +# Typus Roles Configuration File +# +# Use the README file as a reference to customize settings. + +admin: + AdminUser: all diff --git a/db/development.sqlite3 b/db/development.sqlite3 deleted file mode 100644 index 479b377..0000000 Binary files a/db/development.sqlite3 and /dev/null differ diff --git a/db/migrate/20101011133558_create_admin_users.rb b/db/migrate/20101011133558_create_admin_users.rb new file mode 100644 index 0000000..d269e1a --- /dev/null +++ b/db/migrate/20101011133558_create_admin_users.rb @@ -0,0 +1,22 @@ +class CreateAdminUsers < ActiveRecord::Migration + + def self.up + create_table :admin_users do |t| + t.string :first_name, :default => "", :null => false + t.string :last_name, :default => "", :null => false + t.string :role, :null => false + t.string :email, :null => false + t.boolean :status, :default => false + t.string :token, :null => false + t.string :salt, :null => false + t.string :crypted_password, :null => false + t.string :preferences + t.timestamps + end + end + + def self.down + drop_table :admin_users + end + +end diff --git a/db/migrate/20101012132954_create_pages.rb b/db/migrate/20101012132954_create_pages.rb new file mode 100644 index 0000000..d4d887c --- /dev/null +++ b/db/migrate/20101012132954_create_pages.rb @@ -0,0 +1,15 @@ +class CreatePages < ActiveRecord::Migration + def self.up + create_table :pages do |t| + t.string :name + t.string :title + t.text :content + + t.timestamps + end + end + + def self.down + drop_table :pages + end +end diff --git a/db/schema.rb b/db/schema.rb index b6dc49d..47a2dfd 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,21 @@ # # It's strongly recommended to check this file into your version control system. -ActiveRecord::Schema.define(:version => 20101008172319) do +ActiveRecord::Schema.define(:version => 20101012132954) do + + create_table "admin_users", :force => true do |t| + t.string "first_name", :default => "", :null => false + t.string "last_name", :default => "", :null => false + t.string "role", :null => false + t.string "email", :null => false + t.boolean "status", :default => false + t.string "token", :null => false + t.string "salt", :null => false + t.string "crypted_password", :null => false + t.string "preferences" + t.datetime "created_at" + t.datetime "updated_at" + end create_table "categories", :force => true do |t| t.string "name" @@ -27,6 +41,14 @@ ActiveRecord::Schema.define(:version => 20101008172319) do t.integer "photo_id" end + create_table "pages", :force => true do |t| + t.string "name" + t.string "title" + t.text "content" + t.datetime "created_at" + t.datetime "updated_at" + end + create_table "photos", :force => true do |t| t.string "flickr_url" t.string "photo_file_name" diff --git a/log/development.log b/log/development.log index 2282ca6..17b4e95 100644 --- a/log/development.log +++ b/log/development.log @@ -2658,3 +2658,4875 @@ Started GET "/" for 127.0.0.1 at 2010-10-11 08:03:29 -0400 Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 Rendered pages/index.html.erb within layouts/photos (17.2ms) Completed 200 OK in 33ms (Views: 19.2ms | ActiveRecord: 0.4ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 08:33:47 -0400 + Processing by PagesController#index as HTML + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (6.9ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (18.8ms) +Completed 200 OK in 100ms (Views: 28.7ms | ActiveRecord: 7.1ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-11 08:33:52 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.3ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 87.232.40.248 at 2010-10-11 08:34:30 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (42.4ms) +Completed 200 OK in 57ms (Views: 44.4ms | ActiveRecord: 0.4ms) + + +Started GET "/images/sg_grid_sub.png" for 87.232.40.248 at 2010-10-11 08:34:41 -0400 + +ActionController::RoutingError (No route matches "/images/sg_grid_sub.png"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.9ms) + + +Started GET "/categories" for 87.232.40.248 at 2010-10-11 08:35:21 -0400 + Processing by CategoriesController#index as HTML + Category Load (16.4ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (49.7ms) +Completed 200 OK in 116ms (Views: 51.9ms | ActiveRecord: 17.0ms) + + +Started GET "/images/sg_grid_sub.png" for 87.232.40.248 at 2010-10-11 08:35:22 -0400 + +ActionController::RoutingError (No route matches "/images/sg_grid_sub.png"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) + + +Started GET "/categories/1/photos" for 87.232.40.248 at 2010-10-11 08:35:41 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (0.5ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (19.9ms) +Completed 200 OK in 129ms (Views: 22.5ms | ActiveRecord: 0.9ms) + + +Started GET "/images/sg_grid_sub.png" for 87.232.40.248 at 2010-10-11 08:35:42 -0400 + +ActionController::RoutingError (No route matches "/images/sg_grid_sub.png"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) + + +Started GET "/categories" for 87.232.40.248 at 2010-10-11 08:35:55 -0400 + Processing by CategoriesController#index as HTML + Category Load (0.9ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (50.8ms) +Completed 200 OK in 112ms (Views: 53.0ms | ActiveRecord: 1.7ms) + + +Started GET "/images/sg_grid_sub.png" for 87.232.40.248 at 2010-10-11 08:35:56 -0400 + +ActionController::RoutingError (No route matches "/images/sg_grid_sub.png"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) + + +Started GET "/categories/1/photos" for 87.232.40.248 at 2010-10-11 08:36:04 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (0.6ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (45.1ms) +Completed 200 OK in 84ms (Views: 47.6ms | ActiveRecord: 1.0ms) + + +Started GET "/images/sg_grid_sub.png" for 87.232.40.248 at 2010-10-11 08:36:06 -0400 + +ActionController::RoutingError (No route matches "/images/sg_grid_sub.png"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) + + +Started GET "/categories" for 87.232.40.248 at 2010-10-11 08:37:08 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (49.6ms) +Completed 200 OK in 78ms (Views: 51.7ms | ActiveRecord: 1.6ms) + + +Started GET "/images/sg_grid_sub.png" for 87.232.40.248 at 2010-10-11 08:37:11 -0400 + +ActionController::RoutingError (No route matches "/images/sg_grid_sub.png"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) + + +Started GET "/categories/4/photos" for 87.232.40.248 at 2010-10-11 08:37:13 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"4"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 4) LIMIT 1 + Photo Load (0.2ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 4 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (2.7ms) +Completed 200 OK in 40ms (Views: 5.1ms | ActiveRecord: 0.6ms) + + +Started GET "/images/sg_grid_sub.png" for 87.232.40.248 at 2010-10-11 08:37:15 -0400 + +ActionController::RoutingError (No route matches "/images/sg_grid_sub.png"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) + + +Started GET "/admin" for 127.0.0.1 at 2010-10-11 08:38:25 -0400 + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-11 08:38:25 -0400 + Processing by Admin::DashboardController#show as HTML +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (20.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (99.0ms) +Completed 200 OK in 114ms (Views: 109.8ms | ActiveRecord: 0.0ms) + + +Started GET "/admin/photos" for 127.0.0.1 at 2010-10-11 08:38:26 -0400 + Processing by Admin::PhotosController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.1ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (1.1ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (11.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (113.4ms) +Completed 200 OK in 153ms (Views: 124.3ms | ActiveRecord: 1.3ms) + + +Started GET "/admin/photos/new" for 127.0.0.1 at 2010-10-11 08:38:28 -0400 + Processing by Admin::PhotosController#new as HTML +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_new.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (29.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/new.html.erb within layouts/admin/base (91.7ms) +Completed 200 OK in 122ms (Views: 103.4ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 87.232.40.248 at 2010-10-11 08:38:32 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.3ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (22.4ms) +Completed 200 OK in 81ms (Views: 24.5ms | ActiveRecord: 2.0ms) + + +Started GET "/categories/3/photos" for 87.232.40.248 at 2010-10-11 08:38:38 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"3"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 3) LIMIT 1 + Photo Load (0.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 3 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (16.6ms) +Completed 200 OK in 82ms (Views: 19.3ms | ActiveRecord: 0.9ms) + + +Started POST "/admin/photos/create" for 127.0.0.1 at 2010-10-11 08:38:52 -0400 + Processing by Admin::PhotosController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "photo"=>{"photo"=>#, "title"=>"", "description"=>"", "flickr_url"=>"", "sort"=>""}, "commit"=>"Create Photo"} +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht.jpg[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht.jpg[0]' -resize "1024x1024>" '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' -resize "x476" -crop "476x476+155+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy0820101011-59719-bvjwto' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' -resize "x308" -crop "308x308+100+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy0820101011-59719-1lzz3zq' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' -resize "x224" -crop "224x224+72+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy0820101011-59719-1nqc2t7' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' -resize "x140" -crop "140x140+45+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy0820101011-59719-zn8ru1' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' -resize "x84" -crop "84x84+27+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy0820101011-59719-1wx43i1' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy08[0]' -resize "x56" -crop "56x56+18+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-1uwbzht20101011-59719-1mmpy0820101011-59719-47e3n2' 2>/dev/null + SQL (0.4ms) INSERT INTO "photos" ("created_at", "description", "flickr_url", "photo_content_type", "photo_file_name", "photo_file_size", "photo_updated_at", "sort", "title", "updated_at") VALUES ('2010-10-11 12:38:55.439055', '', '', 'image/jpeg', 'Cross.jpg', 212862, '2010-10-11 12:38:53.088872', NULL, '', '2010-10-11 12:38:55.439055') + SQL (0.3ms) UPDATE "photos" SET "created_at" = '2010-10-11 12:38:55.439055', "description" = 'The Famine Memorial at Lough Doolough..."How can men feel themselves honoured by the humiliation of their fellow beings?"', "flickr_url" = '', "photo_content_type" = 'image/jpeg', "photo_file_name" = 'Cross.jpg', "photo_file_size" = 212862, "photo_updated_at" = '2010-10-11 12:38:53.088872', "title" = 'Cross', "updated_at" = '2010-10-11 12:38:55.439055' WHERE ("photos"."id" = 35) +[paperclip] Saving attachments. +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/35/original/Cross.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/35/size17/Cross.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/35/size11/Cross.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/35/size8/Cross.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/35/size5/Cross.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/35/size3/Cross.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/35/size2/Cross.jpg +[paperclip] Saving attachments. +Redirected to http://localhost:3000/admin/photos/edit/35 +Completed 302 Found in 3106ms + + +Started GET "/admin" for 87.232.40.248 at 2010-10-11 08:38:56 -0400 + + +Started GET "/admin/photos/edit/35" for 127.0.0.1 at 2010-10-11 08:38:56 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"35"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (10.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (32.7ms) + Category Load (1.9ms) SELECT "categories".* FROM "categories" + Category Load (0.2ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.9ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + Category Load (0.2ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (7.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (148.8ms) +Completed 200 OK in 221ms (Views: 158.3ms | ActiveRecord: 2.9ms) + + +Started GET "/admin/dashboard" for 87.232.40.248 at 2010-10-11 08:38:57 -0400 + Processing by Admin::DashboardController#show as HTML +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (21.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (39.6ms) +Completed 200 OK in 53ms (Views: 48.4ms | ActiveRecord: 0.0ms) + + +Started POST "/admin/photos/relate/35" for 127.0.0.1 at 2010-10-11 08:39:12 -0400 + Processing by Admin::PhotosController#relate as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "related"=>{"model"=>"Category", "id"=>"4"}, "commit"=>"Add", "id"=>"35"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 4) LIMIT 1 + SQL (0.3ms) INSERT INTO "categories_photos" ("category_id", "photo_id") VALUES (4, 35) +Redirected to http://localhost:3000/admin/photos/edit/35 +Completed 302 Found in 90ms + + +Started GET "/admin/photos/edit/35" for 127.0.0.1 at 2010-10-11 08:39:12 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"35"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (11.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (31.2ms) + Category Load (1.8ms) SELECT "categories".* FROM "categories" + Category Load (0.5ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.8ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + Category Load (0.5ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (3.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (139.8ms) +Completed 200 OK in 176ms (Views: 147.6ms | ActiveRecord: 3.3ms) + + +Started GET "/admin/categories" for 127.0.0.1 at 2010-10-11 08:39:15 -0400 + Processing by Admin::CategoriesController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" + Category Load (1.8ms) SELECT "categories".* FROM "categories" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (40.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (87.3ms) +Completed 200 OK in 138ms (Views: 102.6ms | ActiveRecord: 3.8ms) + + +Started GET "/admin/photos" for 127.0.0.1 at 2010-10-11 08:39:18 -0400 + Processing by Admin::PhotosController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (1.0ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (10.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (83.6ms) +Completed 200 OK in 116ms (Views: 93.8ms | ActiveRecord: 1.1ms) + + +Started GET "/admin/photos/edit/32" for 127.0.0.1 at 2010-10-11 08:39:20 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"32"} + Photo Load (0.5ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 32) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (9.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (28.5ms) + Category Load (3.7ms) SELECT "categories".* FROM "categories" + Category Load (0.2ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 32 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.7ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 32) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 32 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 32) LIMIT 1 + Category Load (0.2ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 32 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (1.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (145.0ms) +Completed 200 OK in 214ms (Views: 152.6ms | ActiveRecord: 4.8ms) + + +Started POST "/admin/photos/relate/32" for 127.0.0.1 at 2010-10-11 08:39:23 -0400 + Processing by Admin::PhotosController#relate as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "related"=>{"model"=>"Category", "id"=>"1"}, "commit"=>"Add", "id"=>"32"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 32) LIMIT 1 + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + SQL (0.4ms) INSERT INTO "categories_photos" ("category_id", "photo_id") VALUES (1, 32) +Redirected to http://localhost:3000/admin/photos/edit/32 +Completed 302 Found in 95ms + + +Started GET "/admin/photos/edit/32" for 127.0.0.1 at 2010-10-11 08:39:23 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"32"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 32) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (9.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (62.7ms) + Category Load (1.8ms) SELECT "categories".* FROM "categories" + Category Load (0.5ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 32 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (2.1ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 32) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 32 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 32) LIMIT 1 + Category Load (0.6ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 32 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (4.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (142.2ms) +Completed 200 OK in 212ms (Views: 150.2ms | ActiveRecord: 3.5ms) + + +Started GET "/admin/photos" for 127.0.0.1 at 2010-10-11 08:39:27 -0400 + Processing by Admin::PhotosController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (1.0ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (12.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (54.7ms) +Completed 200 OK in 116ms (Views: 64.8ms | ActiveRecord: 2.4ms) + + +Started GET "/admin/photos/edit/34" for 127.0.0.1 at 2010-10-11 08:39:29 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"34"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (9.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (61.3ms) + Category Load (2.4ms) SELECT "categories".* FROM "categories" + Category Load (0.2ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.9ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + Category Load (0.2ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (137.3ms) +Completed 200 OK in 174ms (Views: 145.4ms | ActiveRecord: 3.3ms) + + +Started POST "/admin/photos/relate/34" for 127.0.0.1 at 2010-10-11 08:39:32 -0400 + Processing by Admin::PhotosController#relate as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "related"=>{"model"=>"Category", "id"=>"2"}, "commit"=>"Add", "id"=>"34"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 2) LIMIT 1 + SQL (0.4ms) INSERT INTO "categories_photos" ("category_id", "photo_id") VALUES (2, 34) +Redirected to http://localhost:3000/admin/photos/edit/34 +Completed 302 Found in 95ms + + +Started GET "/admin/photos/edit/34" for 127.0.0.1 at 2010-10-11 08:39:32 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"34"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (8.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (28.1ms) + Category Load (2.0ms) SELECT "categories".* FROM "categories" + Category Load (0.5ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.7ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + Category Load (0.5ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (3.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (30.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (162.9ms) +Completed 200 OK in 199ms (Views: 171.7ms | ActiveRecord: 3.6ms) + + +Started POST "/admin/photos/relate/34" for 127.0.0.1 at 2010-10-11 08:39:35 -0400 + Processing by Admin::PhotosController#relate as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "related"=>{"model"=>"Category", "id"=>"5"}, "commit"=>"Add", "id"=>"34"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 5) LIMIT 1 + SQL (0.3ms) INSERT INTO "categories_photos" ("category_id", "photo_id") VALUES (5, 34) +Redirected to http://localhost:3000/admin/photos/edit/34 +Completed 302 Found in 94ms + + +Started GET "/admin/photos/edit/34" for 127.0.0.1 at 2010-10-11 08:39:35 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"34"} + Photo Load (0.4ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (8.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (27.5ms) + Category Load (1.6ms) SELECT "categories".* FROM "categories" + Category Load (0.8ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.7ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 34) LIMIT 1 + Category Load (0.9ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 34 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (34.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (165.9ms) +Completed 200 OK in 204ms (Views: 173.5ms | ActiveRecord: 3.9ms) + + +Started GET "/admin/photos" for 127.0.0.1 at 2010-10-11 08:39:37 -0400 + Processing by Admin::PhotosController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (32.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.3ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (1.0ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (10.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (84.4ms) +Completed 200 OK in 117ms (Views: 95.5ms | ActiveRecord: 3.6ms) + + +Started GET "/admin/photos/edit/29" for 127.0.0.1 at 2010-10-11 08:39:39 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"29"} + Photo Load (29.7ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 29) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (9.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (31.5ms) + Category Load (1.9ms) SELECT "categories".* FROM "categories" + Category Load (0.7ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 29 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.6ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 29) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 29 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 29) LIMIT 1 + Category Load (0.9ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 29 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (5.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (142.2ms) +Completed 200 OK in 208ms (Views: 149.5ms | ActiveRecord: 33.5ms) + + +Started GET "/admin/photos" for 127.0.0.1 at 2010-10-11 08:39:44 -0400 + Processing by Admin::PhotosController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (0.9ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (10.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (53.3ms) +Completed 200 OK in 115ms (Views: 63.4ms | ActiveRecord: 1.1ms) + + +Started GET "/admin/categories" for 87.232.40.248 at 2010-10-11 08:39:47 -0400 + Processing by Admin::CategoriesController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" + Category Load (1.8ms) SELECT "categories".* FROM "categories" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (10.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (55.4ms) +Completed 200 OK in 113ms (Views: 64.6ms | ActiveRecord: 1.9ms) + + +Started GET "/categories/1/photos" for 127.0.0.1 at 2010-10-11 08:39:50 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (0.7ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (47.7ms) +Completed 200 OK in 87ms (Views: 50.3ms | ActiveRecord: 1.1ms) + + +Started GET "/admin/photos/edit/35" for 127.0.0.1 at 2010-10-11 08:39:54 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"35"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (2.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (9.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (30.7ms) + Category Load (2.2ms) SELECT "categories".* FROM "categories" + Category Load (0.5ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.7ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + Category Load (0.6ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (3.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (138.7ms) +Completed 200 OK in 206ms (Views: 147.1ms | ActiveRecord: 3.8ms) + + +Started POST "/admin/photos/relate/35" for 127.0.0.1 at 2010-10-11 08:39:58 -0400 + Processing by Admin::PhotosController#relate as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "related"=>{"model"=>"Category", "id"=>"1"}, "commit"=>"Add", "id"=>"35"} + Photo Load (0.3ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + SQL (0.3ms) INSERT INTO "categories_photos" ("category_id", "photo_id") VALUES (1, 35) +Redirected to http://localhost:3000/admin/photos/edit/35 +Completed 302 Found in 97ms + + +Started GET "/admin/photos/edit/35" for 127.0.0.1 at 2010-10-11 08:39:58 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"35"} + Photo Load (0.4ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (9.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (29.6ms) + Category Load (1.8ms) SELECT "categories".* FROM "categories" + Category Load (0.8ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (1.7ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 35) LIMIT 1 + Category Load (0.8ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 35 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (5.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (138.8ms) +Completed 200 OK in 207ms (Views: 146.9ms | ActiveRecord: 4.1ms) + + +Started GET "/categories/1/photos" for 127.0.0.1 at 2010-10-11 08:40:02 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (0.7ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (54.0ms) +Completed 200 OK in 94ms (Views: 56.6ms | ActiveRecord: 2.2ms) + + +Started GET "/admin/dashboard" for 87.232.40.248 at 2010-10-11 08:40:02 -0400 + Processing by Admin::DashboardController#show as HTML +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (50.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (69.0ms) +Completed 200 OK in 82ms (Views: 78.1ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 08:40:03 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (23.5ms) +Completed 200 OK in 83ms (Views: 25.8ms | ActiveRecord: 1.7ms) + + +Started GET "/categories/4/photos" for 127.0.0.1 at 2010-10-11 08:40:05 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"4"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 4) LIMIT 1 + Photo Load (0.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 4 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (48.3ms) +Completed 200 OK in 123ms (Views: 52.0ms | ActiveRecord: 0.8ms) + + +Started GET "/admin/photos" for 87.232.40.248 at 2010-10-11 08:40:08 -0400 + Processing by Admin::PhotosController#index as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (1.0ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (11.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (83.4ms) +Completed 200 OK in 115ms (Views: 93.9ms | ActiveRecord: 1.1ms) + + +Started GET "/admin/dashboard" for 87.232.40.248 at 2010-10-11 08:40:11 -0400 + Processing by Admin::DashboardController#show as HTML +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (20.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (68.2ms) +Completed 200 OK in 81ms (Views: 77.3ms | ActiveRecord: 0.0ms) + + +Started GET "/admin/photos/new" for 87.232.40.248 at 2010-10-11 08:40:17 -0400 + Processing by Admin::PhotosController#new as HTML +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_new.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (27.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (31.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/new.html.erb within layouts/admin/base (85.9ms) +Completed 200 OK in 117ms (Views: 96.9ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 08:41:09 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (55.1ms) +Completed 200 OK in 85ms (Views: 57.8ms | ActiveRecord: 1.6ms) + + +Started GET "/photos" for 127.0.0.1 at 2010-10-11 08:41:15 -0400 + Processing by PhotosController#index as HTML + Photo Load (0.8ms) SELECT "photos".* FROM "photos" LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (56.2ms) +Completed 200 OK in 78ms (Views: 65.0ms | ActiveRecord: 0.8ms) + + +Started GET "/" for 87.232.40.248 at 2010-10-11 08:42:17 -0400 + Processing by PagesController#index as HTML + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (20.3ms) +Completed 200 OK in 81ms (Views: 32.8ms | ActiveRecord: 0.6ms) + + +Started GET "/categories" for 87.232.40.248 at 2010-10-11 08:42:20 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.1ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (24.2ms) +Completed 200 OK in 88ms (Views: 26.2ms | ActiveRecord: 1.9ms) + + +Started GET "/categories/4/photos" for 87.232.40.248 at 2010-10-11 08:42:22 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"4"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 4) LIMIT 1 + Photo Load (0.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 4 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (48.4ms) +Completed 200 OK in 126ms (Views: 51.4ms | ActiveRecord: 0.8ms) + + +Started GET "/photos" for 127.0.0.1 at 2010-10-11 08:42:23 -0400 + Processing by PhotosController#index as HTML + Photo Load (0.9ms) SELECT "photos".* FROM "photos" LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (65.4ms) +Completed 200 OK in 85ms (Views: 68.3ms | ActiveRecord: 0.9ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 08:42:32 -0400 + Processing by PagesController#index as HTML + Photo Load (0.7ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (55.7ms) +Completed 200 OK in 77ms (Views: 58.8ms | ActiveRecord: 0.7ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 08:42:33 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.2ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (36.2ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (27.4ms) +Completed 200 OK in 98ms (Views: 30.3ms | ActiveRecord: 37.7ms) + + +Started GET "/categories/4/photos" for 127.0.0.1 at 2010-10-11 08:42:36 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"4"} + Category Load (1.0ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 4) LIMIT 1 + Photo Load (0.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 4 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (19.6ms) +Completed 200 OK in 121ms (Views: 22.6ms | ActiveRecord: 1.4ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 08:43:33 -0400 + Processing by PagesController#index as HTML + Photo Load (13.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (18.1ms) +Completed 200 OK in 47ms (Views: 20.3ms | ActiveRecord: 13.4ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 08:48:33 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.1ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.7ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (25.6ms) +Completed 200 OK in 104ms (Views: 41.8ms | ActiveRecord: 2.0ms) + + +Started GET "/photos" for 127.0.0.1 at 2010-10-11 08:48:38 -0400 + Processing by PhotosController#index as HTML + Photo Load (1.0ms) SELECT "photos".* FROM "photos" LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (52.4ms) +Completed 200 OK in 89ms (Views: 74.6ms | ActiveRecord: 1.0ms) + + +Started GET "/photos" for 127.0.0.1 at 2010-10-11 09:28:25 -0400 + Processing by PhotosController#index as HTML + Photo Load (21.6ms) SELECT "photos".* FROM "photos" LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (150.5ms) +Completed 200 OK in 270ms (Views: 196.6ms | ActiveRecord: 21.6ms) + + +Started GET "/admin/photos/new" for 127.0.0.1 at 2010-10-11 09:28:42 -0400 + Processing by Admin::PhotosController#new as HTML +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_new.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (46.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/new.html.erb within layouts/admin/base (201.8ms) +Completed 200 OK in 332ms (Views: 241.6ms | ActiveRecord: 0.0ms) + + +Started POST "/admin/photos/create" for 127.0.0.1 at 2010-10-11 09:28:46 -0400 + Processing by Admin::PhotosController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "photo"=>{"photo"=>#, "title"=>"", "description"=>"", "flickr_url"=>"", "sort"=>""}, "commit"=>"Create Photo"} +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs.jpg[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs.jpg[0]' -resize "1024x1024>" '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' -resize "x476" -crop "476x476+93+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h20101011-59719-1y19wpl' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' -resize "x308" -crop "308x308+60+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h20101011-59719-1shere8' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' -resize "x224" -crop "224x224+43+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h20101011-59719-wjkhnu' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' -resize "x140" -crop "140x140+27+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h20101011-59719-phj97u' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' -resize "x84" -crop "84x84+16+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h20101011-59719-1vjuyct' 2>/dev/null +[paperclip] identify -format %wx%h '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' 2>/dev/null +[paperclip] convert '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h[0]' -resize "x56" -crop "56x56+10+0" +repage '/var/folders/B2/B2qStFgNHj4CjwOiJRPQ+++++TI/-Tmp-/stream20101011-59719-104vfjs20101011-59719-1wc3o3h20101011-59719-16tdzc4' 2>/dev/null + SQL (28.6ms) INSERT INTO "photos" ("created_at", "description", "flickr_url", "photo_content_type", "photo_file_name", "photo_file_size", "photo_updated_at", "sort", "title", "updated_at") VALUES ('2010-10-11 13:28:50.367835', '', '', 'image/jpeg', 'Bell Tower.jpg', 362111, '2010-10-11 13:28:46.617917', NULL, '', '2010-10-11 13:28:50.367835') + SQL (0.3ms) UPDATE "photos" SET "created_at" = '2010-10-11 13:28:50.367835', "description" = 'Church of Ireland bell tower, Tourmakeady, Co. Mayo.', "flickr_url" = '', "photo_content_type" = 'image/jpeg', "photo_file_name" = 'Bell Tower.jpg', "photo_file_size" = 362111, "photo_updated_at" = '2010-10-11 13:28:46.617917', "title" = 'Bell Tower', "updated_at" = '2010-10-11 13:28:50.367835' WHERE ("photos"."id" = 36) +[paperclip] Saving attachments. +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/36/original/Bell Tower.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/36/size17/Bell Tower.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/36/size11/Bell Tower.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/36/size8/Bell Tower.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/36/size5/Bell Tower.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/36/size3/Bell Tower.jpg +[paperclip] saving /Users/danbee/Sites/rails/photos/public/system/photos/36/size2/Bell Tower.jpg +[paperclip] Saving attachments. +Redirected to http://localhost:3000/admin/photos/edit/36 +Completed 302 Found in 5179ms + + +Started GET "/admin/photos/edit/36" for 127.0.0.1 at 2010-10-11 09:28:51 -0400 + Processing by Admin::PhotosController#edit as HTML + Parameters: {"id"=>"36"} + Photo Load (0.6ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 36) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (4.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_preview.html.erb (4.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_file.html.erb (75.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (111.3ms) + Category Load (3.3ms) SELECT "categories".* FROM "categories" + Category Load (5.9ms) SELECT * FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 36 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (3.1ms) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 36) LIMIT 1 + SQL (1.2ms) SELECT COUNT(*) AS count_id FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 36 ) + CACHE (0.0ms) SELECT "photos".* FROM "photos" WHERE ("photos"."id" = 36) LIMIT 1 + Category Load (0.3ms) SELECT "categories".* FROM "categories" INNER JOIN "categories_photos" ON "categories".id = "categories_photos".category_id WHERE ("categories_photos".photo_id = 36 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (4.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (3.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (248.9ms) +Completed 200 OK in 306ms (Views: 253.3ms | ActiveRecord: 11.3ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + SQL (1.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.3ms) SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + SQL (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +Migrating to CreateCategories (20101006095323) +Migrating to CreatePhotos (20101006095457) +Migrating to AddPhotoToCategory (20101008101157) +Migrating to AddDetailsToPhoto (20101008103053) +Migrating to AddColourToCategory (20101008105348) +Migrating to AddSortOrders (20101008122736) +Migrating to MoveToManyToMany (20101008172319) +Migrating to CreateAdminUsers (20101011133558) + SQL (0.1ms) select sqlite_version(*) + SQL (14.2ms) CREATE TABLE "admin_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "first_name" varchar(255) DEFAULT '' NOT NULL, "last_name" varchar(255) DEFAULT '' NOT NULL, "role" varchar(255) NOT NULL, "email" varchar(255) NOT NULL, "status" boolean DEFAULT 'f', "token" varchar(255) NOT NULL, "salt" varchar(255) NOT NULL, "crypted_password" varchar(255) NOT NULL, "preferences" varchar(255), "created_at" datetime, "updated_at" datetime)  + SQL (4.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101011133558') + SQL (0.4ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.3ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) PRAGMA index_list("admin_users") + SQL (0.1ms) PRAGMA index_list("categories") + SQL (0.0ms) PRAGMA index_list("categories_photos") + SQL (0.1ms) PRAGMA index_list("photos") +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/admin" for 127.0.0.1 at 2010-10-11 09:36:44 -0400 + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-11 09:36:44 -0400 + Processing by Admin::DashboardController#show as HTML +Redirected to http://localhost:3000/admin/session/new +Completed 302 Found in 3ms + + +Started GET "/admin/session/new" for 127.0.0.1 at 2010-10-11 09:36:45 -0400 + Processing by Admin::SessionController#new as HTML + SQL (3.6ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Redirected to http://localhost:3000/admin/account/new +Completed 302 Found in 34ms + + +Started GET "/admin/account/new" for 127.0.0.1 at 2010-10-11 09:36:45 -0400 + Processing by Admin::AccountController#new as HTML + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/account/new.html.erb within layouts/admin/session (15.0ms) +Completed 200 OK in 44ms (Views: 25.1ms | ActiveRecord: 4.1ms) + + +Started POST "/admin/account" for 127.0.0.1 at 2010-10-11 09:36:49 -0400 + Processing by Admin::AccountController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "typus_user"=>{"email"=>"danbee@gmail.com"}, "commit"=>"Sign up"} + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "admin_users" + AdminUser Load (0.2ms) SELECT "admin_users"."id" FROM "admin_users" WHERE ("admin_users"."email" = 'danbee@gmail.com') LIMIT 1 + SQL (0.6ms) INSERT INTO "admin_users" ("created_at", "crypted_password", "email", "first_name", "last_name", "preferences", "role", "salt", "status", "token", "updated_at") VALUES ('2010-10-11 13:36:50.247045', '5af68ce083d8b1ea23b8664ddd46cbd3c925f93a', 'danbee@gmail.com', '', '', '--- +:locale: en +', 'admin', 'bdccee3ae6ea5e86e3e10ad118be956e2aadc766', 't', '4180342d4eee', '2010-10-11 13:36:50.247045') +Redirected to http://localhost:3000/admin/account/4180342d4eee +Completed 302 Found in 274ms + + +Started GET "/admin/account/4180342d4eee" for 127.0.0.1 at 2010-10-11 09:36:50 -0400 + Processing by Admin::AccountController#show as HTML + Parameters: {"id"=>"4180342d4eee"} + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."token" = '4180342d4eee') LIMIT 1 +Redirected to http://localhost:3000/admin/admin_users/edit/1 +Completed 302 Found in 107ms + + +Started GET "/admin/admin_users/edit/1" for 127.0.0.1 at 2010-10-11 09:36:50 -0400 + Processing by Admin::AdminUsersController#edit as HTML + Parameters: {"id"=>"1"} + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + CACHE (0.0ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_selector.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_password.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_password.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_selector.html.erb (2.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (71.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (57.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (187.0ms) +Completed 200 OK in 305ms (Views: 207.6ms | ActiveRecord: 1.7ms) + + +Started POST "/admin/admin_users/update/1" for 127.0.0.1 at 2010-10-11 09:37:03 -0400 + Processing by Admin::AdminUsersController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "admin_user"=>{"first_name"=>"Dan", "last_name"=>"Barber", "role"=>"admin", "email"=>"danbee@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "language"=>"en"}, "commit"=>"Save Admin user", "id"=>"1"} + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + CACHE (0.0ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + AdminUser Load (0.2ms) SELECT "admin_users"."id" FROM "admin_users" WHERE ("admin_users"."email" = 'danbee@gmail.com') AND ("admin_users".id <> 1) LIMIT 1 + SQL (0.3ms) UPDATE "admin_users" SET "crypted_password" = '01f04eb9f71828e3ec2b569b55cff1fee2bb4c3e', "first_name" = 'Dan', "last_name" = 'Barber', "preferences" = '--- +:locale: en +', "updated_at" = '2010-10-11 13:37:03.329977' WHERE ("admin_users"."id" = 1) + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Redirected to http://localhost:3000/admin/admin_users/edit/1 +Completed 302 Found in 60ms + + +Started GET "/admin/admin_users/edit/1" for 127.0.0.1 at 2010-10-11 09:37:03 -0400 + Processing by Admin::AdminUsersController#edit as HTML + Parameters: {"id"=>"1"} + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + CACHE (0.0ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_selector.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (3.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_password.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_password.html.erb (2.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_selector.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (57.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (87.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (194.2ms) +Completed 200 OK in 335ms (Views: 219.7ms | ActiveRecord: 0.3ms) + + +Started POST "/admin/session" for 127.0.0.1 at 2010-10-11 09:37:07 -0400 + Processing by Admin::SessionController#destroy as HTML + Parameters: {"authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs="} +Redirected to http://localhost:3000/admin/session/new +Completed 302 Found in 1ms + + +Started GET "/admin/session/new" for 127.0.0.1 at 2010-10-11 09:37:07 -0400 + Processing by Admin::SessionController#new as HTML + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/session/new.html.erb within layouts/admin/session (4.2ms) +Completed 200 OK in 46ms (Views: 30.4ms | ActiveRecord: 0.1ms) + + +Started POST "/admin/session" for 127.0.0.1 at 2010-10-11 09:40:54 -0400 + Processing by Admin::SessionController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "typus_user"=>{"email"=>"danbee@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"} + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "admin_users" + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."email" = 'danbee@gmail.com') AND ("admin_users"."status" = 't') LIMIT 1 +Redirected to http://localhost:3000/admin/dashboard +Completed 302 Found in 140ms + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-11 09:40:55 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (92.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (2.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (4.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (141.8ms) +Completed 200 OK in 233ms (Views: 160.6ms | ActiveRecord: 0.9ms) + + +Started GET "/admin/photos" for 127.0.0.1 at 2010-10-11 09:41:02 -0400 + Processing by Admin::PhotosController#index as HTML + AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (2.6ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (2.2ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (2.1ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (19.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (4.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (256.1ms) +Completed 200 OK in 513ms (Views: 280.4ms | ActiveRecord: 2.8ms) + + +Started GET "/admin/photos" for 127.0.0.1 at 2010-10-11 09:45:29 -0400 + Processing by Admin::PhotosController#index as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (1.2ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (2.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (2.3ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "photos" + Photo Load (3.2ms) SELECT "photos".* FROM "photos" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (20.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (115.8ms) +Completed 200 OK in 271ms (Views: 130.8ms | ActiveRecord: 4.6ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-11 09:45:31 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (42.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (1.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (4.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (142.2ms) +Completed 200 OK in 206ms (Views: 159.3ms | ActiveRecord: 0.4ms) + + +Started GET "/admin/admin_users" for 127.0.0.1 at 2010-10-11 09:45:34 -0400 + Processing by Admin::AdminUsersController#index as HTML + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (3.1ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.6ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" + AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (7.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (2.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (35.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (161.0ms) +Completed 200 OK in 298ms (Views: 195.0ms | ActiveRecord: 1.0ms) + + +Started GET "/admin/categories" for 127.0.0.1 at 2010-10-11 09:45:36 -0400 + Processing by Admin::CategoriesController#index as HTML + AdminUser Load (0.4ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (2.2ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (2.7ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (2.1ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" + Category Load (3.5ms) SELECT "categories".* FROM "categories" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (21.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (13.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (196.7ms) +Completed 200 OK in 287ms (Views: 213.0ms | ActiveRecord: 6.1ms) + + +Started GET "/admin/categories/edit/1" for 127.0.0.1 at 2010-10-11 09:46:30 -0400 + Processing by Admin::CategoriesController#edit as HTML + Parameters: {"id"=>"1"} + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + Category Load (0.9ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (1.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (4.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (37.5ms) + Photo Load (1.7ms) SELECT "photos".* FROM "photos" + Photo Load (1.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_relate_form.html.erb (8.8ms) + CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) + CACHE (0.0ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (2.2ms) SELECT "photos".* FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (71.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_has_n.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (3.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (430.9ms) +Completed 200 OK in 606ms (Views: 445.3ms | ActiveRecord: 6.8ms) + + +Started GET "/" for 195.137.60.248 at 2010-10-11 09:48:44 -0400 + Processing by PagesController#index as HTML + Photo Load (0.9ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (82.5ms) +Completed 200 OK in 283ms (Views: 129.9ms | ActiveRecord: 0.9ms) + + +Started GET "/about" for 195.137.60.248 at 2010-10-11 09:49:01 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.7ms) +Completed 200 OK in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 195.137.60.248 at 2010-10-11 09:49:07 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.7ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (1.2ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (124.2ms) +Completed 200 OK in 230ms (Views: 152.4ms | ActiveRecord: 3.1ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 09:49:31 -0400 + Processing by PagesController#index as HTML + Photo Load (0.7ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (30.4ms) +Completed 200 OK in 58ms (Views: 34.2ms | ActiveRecord: 0.7ms) + + +Started GET "/categories/2/photos" for 195.137.60.248 at 2010-10-11 09:50:17 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"2"} + Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 2) LIMIT 1 + Photo Load (0.7ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 2 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (89.1ms) +Completed 200 OK in 249ms (Views: 102.6ms | ActiveRecord: 1.1ms) + + +Started GET "/categories" for 195.137.60.248 at 2010-10-11 09:50:23 -0400 + Processing by CategoriesController#index as HTML + Category Load (2.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.8ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (98.0ms) +Completed 200 OK in 200ms (Views: 104.1ms | ActiveRecord: 3.1ms) + + +Started GET "/categories/3/photos" for 195.137.60.248 at 2010-10-11 09:50:25 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"3"} + Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 3) LIMIT 1 + Photo Load (3.0ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 3 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (36.6ms) +Completed 200 OK in 195ms (Views: 40.8ms | ActiveRecord: 3.6ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 12:07:27 -0400 + Processing by PagesController#index as HTML + Photo Load (1.0ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (27.8ms) +Completed 200 OK in 74ms (Views: 32.8ms | ActiveRecord: 1.0ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 12:31:06 -0400 + Processing by PagesController#index as HTML + Photo Load (21.8ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (35.2ms) +Completed 200 OK in 277ms (Views: 75.8ms | ActiveRecord: 21.8ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-11 12:31:15 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (3.8ms) +Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contact" for 127.0.0.1 at 2010-10-11 12:31:17 -0400 + +AbstractController::ActionNotFound (The action 'contact' could not be found for PagesController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 12:31:25 -0400 + Processing by PagesController#index as HTML + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (79.5ms) +Completed 200 OK in 96ms (Views: 82.2ms | ActiveRecord: 0.5ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 12:31:31 -0400 + Processing by CategoriesController#index as HTML + Category Load (22.8ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.8ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (80.0ms) +Completed 200 OK in 210ms (Views: 120.7ms | ActiveRecord: 23.8ms) + + +Started GET "/categories/1/photos" for 127.0.0.1 at 2010-10-11 12:31:33 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.7ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (1.1ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (83.5ms) +Completed 200 OK in 290ms (Views: 176.9ms | ActiveRecord: 1.9ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 12:32:00 -0400 + Processing by PagesController#index as HTML + Photo Load (11.9ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (62.5ms) +Completed 200 OK in 121ms (Views: 65.4ms | ActiveRecord: 11.9ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 12:32:02 -0400 + Processing by CategoriesController#index as HTML + Category Load (19.6ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (1.0ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (84.1ms) +Completed 200 OK in 169ms (Views: 113.7ms | ActiveRecord: 20.8ms) + + +Started GET "/categories/1/photos" for 127.0.0.1 at 2010-10-11 12:32:10 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.8ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (1.2ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (88.4ms) +Completed 200 OK in 226ms (Views: 107.7ms | ActiveRecord: 2.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 12:32:15 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.9ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (1.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (90.0ms) +Completed 200 OK in 167ms (Views: 93.4ms | ActiveRecord: 3.5ms) + + +Started GET "/categories?page=2" for 127.0.0.1 at 2010-10-11 12:32:16 -0400 + Processing by CategoriesController#index as HTML + Parameters: {"page"=>"2"} + Category Load (0.8ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 4 + Photo Load (0.7ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (92.6ms) +Completed 200 OK in 126ms (Views: 95.1ms | ActiveRecord: 1.4ms) + + +Started GET "/categories/5/photos" for 127.0.0.1 at 2010-10-11 12:32:17 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"5"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 5) LIMIT 1 + Photo Load (0.5ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 5 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (21.1ms) +Completed 200 OK in 113ms (Views: 23.7ms | ActiveRecord: 1.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 12:32:19 -0400 + Processing by CategoriesController#index as HTML + Category Load (2.2ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.9ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (33.9ms) +Completed 200 OK in 145ms (Views: 38.2ms | ActiveRecord: 3.3ms) + + +Started GET "/categories?page=2" for 127.0.0.1 at 2010-10-11 12:32:20 -0400 + Processing by CategoriesController#index as HTML + Parameters: {"page"=>"2"} + Category Load (1.2ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 4 + Photo Load (1.0ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (94.2ms) +Completed 200 OK in 151ms (Views: 97.7ms | ActiveRecord: 2.2ms) + + +Started GET "/categories/6/photos" for 127.0.0.1 at 2010-10-11 12:32:20 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"6"} + Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 6) LIMIT 1 + Photo Load (0.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 6 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (3.0ms) +Completed 200 OK in 124ms (Views: 6.4ms | ActiveRecord: 1.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 12:32:21 -0400 + Processing by CategoriesController#index as HTML + Category Load (2.1ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.3ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.9ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (76.7ms) +Completed 200 OK in 139ms (Views: 81.8ms | ActiveRecord: 3.3ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 12:32:22 -0400 + Processing by PagesController#index as HTML + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (73.5ms) +Completed 200 OK in 95ms (Views: 76.5ms | ActiveRecord: 0.6ms) + + +Started GET "/categories/1/photos" for 127.0.0.1 at 2010-10-11 12:34:27 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.6ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (51.5ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (49.1ms) +Completed 200 OK in 194ms (Views: 67.9ms | ActiveRecord: 52.1ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 12:59:54 -0400 + Processing by PagesController#index as HTML + Photo Load (19.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (26.2ms) +Completed 200 OK in 87ms (Views: 50.4ms | ActiveRecord: 19.5ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 14:02:44 -0400 + Processing by PagesController#index as HTML + Photo Load (52.9ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (297.6ms) +Completed 200 OK in 797ms (Views: 500.5ms | ActiveRecord: 52.9ms) + + +Started GET "/contact" for 127.0.0.1 at 2010-10-11 14:13:19 -0400 + +AbstractController::ActionNotFound (The action 'contact' could not be found for PagesController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms) + + +Started GET "/contact" for 127.0.0.1 at 2010-10-11 14:21:54 -0400 + +ActionController::RoutingError (No route matches "/contact"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.8ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-11 14:22:04 -0400 + +AbstractController::ActionNotFound (The action 'index' could not be found for ContactsController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-11 14:22:24 -0400 + +AbstractController::ActionNotFound (The action 'new' could not be found for ContactsController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms) + + +Started GET "/contacts/" for 127.0.0.1 at 2010-10-11 14:22:27 -0400 + +AbstractController::ActionNotFound (The action 'index' could not be found for ContactsController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms) + + +Started GET "/contacts/" for 127.0.0.1 at 2010-10-11 14:25:59 -0400 + +AbstractController::ActionNotFound (The action 'index' could not be found for ContactsController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) +Rendered notifier/contact_notification.html.erb (0.5ms) + +Sent mail to enquiries@pixelhum.com (10132ms) +Date: Mon, 11 Oct 2010 14:40:59 -0400 +From: danbee@gmail.com +To: enquiries@pixelhum.com +Message-ID: <4cb35a3b1778c_106ff80443b3c497b6@junpei.lan.mail> +Subject: Test email +Mime-Version: 1.0 +Content-Type: text/html; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +This is a test email from the IRB Rails console +Rendered notifier/contact_notification.html.erb (0.4ms) + +Sent mail to enquiries@pixelhum.com (6429ms) +Date: Mon, 11 Oct 2010 15:09:54 -0400 +From: danbee@gmail.com +To: enquiries@pixelhum.com +Message-ID: <4cb36102a5485_106ff80443b3c49818@junpei.lan.mail> +Subject: Test email +Mime-Version: 1.0 +Content-Type: text/html; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +This is a test email from the IRB Rails console +Rendered notifier/contact_notification.text.erb (0.5ms) + +Sent mail to enquiries@pixelhum.com (4316ms) +Date: Mon, 11 Oct 2010 15:10:21 -0400 +From: danbee@gmail.com +To: enquiries@pixelhum.com +Message-ID: <4cb3611dcbe73_106ff80443b3c49982@junpei.lan.mail> +Subject: Test email +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +This is a test email from the IRB Rails console + + +Started GET "/contacts/" for 127.0.0.1 at 2010-10-11 15:17:32 -0400 + +AbstractController::ActionNotFound (The action 'index' could not be found for ContactsController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-11 15:20:43 -0400 + Processing by ContactsController#new as HTML +Completed in 29ms + +ActionView::MissingTemplate (Missing template contacts/new with {:handlers=>[:erb, :rjs, :builder, :rhtml, :rxml], :formats=>[:html], :locale=>[:en, :en]} in view paths "/Users/danbee/Sites/rails/photos/app/views", "/Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/app/views", "/Users/danbee/Sites/rails/photos/vendor/plugins/jrails/app/views", "/usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/missing_template.erb within rescues/layout (0.7ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-11 15:22:23 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (1.8ms) +Completed 200 OK in 29ms (Views: 22.0ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-11 15:22:44 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 11ms (Views: 4.1ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-11 15:23:00 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (1.4ms) +Completed in 5ms + +ActionView::Template::Error (No route matches {:action=>"contact", :controller=>"pages"}): + 20:
+ 21:
+ 22:
+ 23: <%= link_to raw('contact'), :action => 'contact' %> + 24:
+ 25: + 26:
+ app/views/pages/about.html.erb:23:in `_app_views_pages_about_html_erb__1814166118996358270_2170714300__4489794163939322959' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (27.3ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (32.9ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-11 15:23:23 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (1.0ms) +Completed in 3ms + +ActionView::Template::Error (No route matches {:action=>"contact", :controller=>"pages"}): + 20:
+ 21:
+ 22:
+ 23: <%= link_to raw('contact'), :action => 'contact' %> + 24:
+ 25: + 26:
+ app/views/pages/about.html.erb:23:in `_app_views_pages_about_html_erb__1814166118996358270_2152966460__4489794163939322959' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (35.5ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (39.6ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 15:25:19 -0400 + Processing by PagesController#index as HTML + Photo Load (11.1ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (52.9ms) +Completed in 84ms + +ActionView::Template::Error (No route matches {:action=>"destroy", :controller=>"contacts"}): + 17:
+ 18:
+ 19:
+ 20: <%= link_to raw('contact'), contact_url %> + 21:
+ app/views/pages/index.html.erb:20:in `_app_views_pages_index_html_erb___3130985558352116876_2157649920__4489794163939322959' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (23.4ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (27.7ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 15:25:27 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (43.7ms) +Completed 200 OK in 58ms (Views: 45.7ms | ActiveRecord: 0.3ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-11 15:25:29 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 9ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-11 15:26:12 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (1.9ms) +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 15:26:23 -0400 + Processing by CategoriesController#index as HTML + Category Load (16.6ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (53.9ms) +Completed 200 OK in 128ms (Views: 69.5ms | ActiveRecord: 17.2ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 15:26:25 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (45.4ms) +Completed 200 OK in 59ms (Views: 47.4ms | ActiveRecord: 0.4ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-11 15:26:35 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 15:26:42 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (44.5ms) +Completed 200 OK in 58ms (Views: 46.3ms | ActiveRecord: 0.3ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-11 15:26:44 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.1ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (21.7ms) +Completed 200 OK in 80ms (Views: 23.7ms | ActiveRecord: 1.7ms) + + +Started GET "/categories/1/photos" for 127.0.0.1 at 2010-10-11 15:26:45 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (0.8ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (58.1ms) +Completed 200 OK in 113ms (Views: 70.8ms | ActiveRecord: 1.3ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-11 15:26:51 -0400 + Processing by PagesController#index as HTML + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (20.2ms) +Completed 200 OK in 39ms (Views: 22.8ms | ActiveRecord: 0.5ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 03:43:15 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (16.3ms) +Completed 200 OK in 38ms (Views: 25.4ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 03:43:33 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (16.4ms) +Completed 200 OK in 30ms (Views: 18.3ms | ActiveRecord: 0.3ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 03:43:54 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (15.6ms) +Completed 200 OK in 59ms (Views: 17.8ms | ActiveRecord: 0.3ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 03:46:21 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:19:14 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 9ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:19:17 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 9ms (Views: 4.0ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 04:19:29 -0400 + Processing by CategoriesController#index as HTML + Category Load (0.9ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (50.5ms) +Completed 200 OK in 78ms (Views: 52.4ms | ActiveRecord: 1.5ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 04:19:32 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 04:19:33 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (44.7ms) +Completed 200 OK in 75ms (Views: 63.4ms | ActiveRecord: 0.3ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 04:19:37 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:19:38 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (1.9ms) +Completed 200 OK in 9ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:21:59 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 9ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:22:11 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 9ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:22:15 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 40ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:23:00 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.4ms) +Completed 200 OK in 9ms (Views: 4.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:23:48 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (3.0ms) +Completed 200 OK in 10ms (Views: 5.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:25:08 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (2.1ms) +Completed in 10ms + +ActionView::Template::Error (Model Contact does not respond to name): + 10: <%= form_for :contact do |f| %> + 11:

+ 12: <%= f.label :name %> + 13: <%= f.text_field :name %> + 14:

+ 15:

+ 16: <%= f.label :email %> + app/views/contacts/new.html.erb:13:in `block in _app_views_contacts_new_html_erb__1999566295642407253_2170518980__4489794163939322959' + app/views/contacts/new.html.erb:10:in `_app_views_contacts_new_html_erb__1999566295642407253_2170518980__4489794163939322959' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.3ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.5ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:25:37 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:31:00 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (35.6ms) +Completed 200 OK in 44ms (Views: 37.6ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:31:27 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts/new" for 127.0.0.1 at 2010-10-12 04:31:29 -0400 + +ActionController::RoutingError (No route matches "/contacts/new"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.9ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:32:24 -0400 + Processing by ContactsController#new as HTML +DEPRECATION WARNING: Using form_for(:name, @resource) is deprecated. Please use form_for(@resource, :as => :name) instead. (called from _app_views_contacts_new_html_erb__1999566295642407253_2158525540__4489794163939322959 at /Users/danbee/Sites/rails/photos/app/views/contacts/new.html.erb:10) +Rendered contacts/new.html.erb within layouts/photos (2.0ms) +Completed in 9ms + +ActionView::Template::Error (Model String does not respond to name): + 10: <%= form_for :contact, contacts_url do |f| %> + 11:

+ 12: <%= f.label :name %> + 13: <%= f.text_field :name %> + 14:

+ 15:

+ 16: <%= f.label :email %> + app/views/contacts/new.html.erb:13:in `block in _app_views_contacts_new_html_erb__1999566295642407253_2158525540__4489794163939322959' + app/views/contacts/new.html.erb:10:in `_app_views_contacts_new_html_erb__1999566295642407253_2158525540__4489794163939322959' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.4ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (6.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:32:35 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 11ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:38:34 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 13ms (Views: 7.0ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts/new" for 127.0.0.1 at 2010-10-12 04:38:46 -0400 + +ActionController::RoutingError (No route matches "/contacts/new"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.6ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:38:47 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.3ms) +Completed 200 OK in 43ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:39:04 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:39:50 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.7ms) +Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 04:39:54 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Completed in 3ms + +NameError (uninitialized constant ContactsController::Support): + app/controllers/contacts_controller.rb:9:in `create' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.1ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.9ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 04:40:24 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Completed in 4ms + +NameError (uninitialized constant ContactsController::Support): + app/controllers/contacts_controller.rb:9:in `create' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (4.1ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 04:41:05 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Completed in 6ms + +NoMethodError (You have a nil object when you didn't expect it! +You might have expected an instance of Array. +The error occurred while evaluating nil.each): + app/models/contact.rb:9:in `initialize' + app/controllers/contacts_controller.rb:9:in `new' + app/controllers/contacts_controller.rb:9:in `create' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.7ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (39.5ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-12 04:41:14 -0400 + +AbstractController::ActionNotFound (The action 'index' could not be found for ContactsController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:41:18 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.3ms) +Completed 200 OK in 13ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 04:41:19 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Completed in 5ms + +NoMethodError (You have a nil object when you didn't expect it! +You might have expected an instance of Array. +The error occurred while evaluating nil.each): + app/models/contact.rb:9:in `initialize' + app/controllers/contacts_controller.rb:9:in `new' + app/controllers/contacts_controller.rb:9:in `create' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.1ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.7ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 04:41:44 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 22ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 04:57:58 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 04:57:59 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (36.0ms) +Completed 200 OK in 44ms (Views: 38.1ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 04:58:25 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan Barber", "email"=>"danbee@gmai.com", "subject"=>"Wedding", "message"=>"Hi, we'd like you to photograph our wedding please.\r\n\r\nThanks!\r\n\r\n- Dan"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to enquiries@pixelhum.com (62ms) +Date: Tue, 12 Oct 2010 04:58:26 -0400 +From: danbee@gmai.com +To: enquiries@pixelhum.com +Message-ID: <4cb42332373a2_eef5811ade94563c1@junpei.lan.mail> +Subject: Wedding +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Hi, we'd like you to photograph our wedding please. + +Thanks! + +- Dan +Redirected to http://localhost:3000/ +Completed 302 Found in 1238ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 04:58:26 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (50.0ms) +Completed 200 OK in 64ms (Views: 52.0ms | ActiveRecord: 0.3ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 05:00:43 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started GET "/admin" for 127.0.0.1 at 2010-10-12 05:04:47 -0400 + +AbstractController::ActionNotFound (The action 'admin' could not be found for PagesController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.7ms) + + +Started GET "/admin" for 127.0.0.1 at 2010-10-12 05:05:06 -0400 + +NoMethodError (undefined method `include?' for #): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.8ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:05:13 -0400 + +RuntimeError (route set not finalized): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.8ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:05:28 -0400 + +NoMethodError (undefined method `include?' for #): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.8ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (4.7ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:05:34 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/admin" for 127.0.0.1 at 2010-10-12 05:05:40 -0400 + +AbstractController::ActionNotFound (The action 'admin' could not be found for PagesController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:07:32 -0400 + +TypeError (can't convert TrueClass to String): + config/routes.rb:69:in `block in ' + config/routes.rb:1:in `' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (5.3ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:07:43 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.4ms) +Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms) + + +Started GET "/admin" for 127.0.0.1 at 2010-10-12 05:07:46 -0400 + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 05:07:46 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (20.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (83.3ms) +Completed 200 OK in 132ms (Views: 93.3ms | ActiveRecord: 0.2ms) + + +Started GET "/admin/admin_users" for 127.0.0.1 at 2010-10-12 05:07:49 -0400 + Processing by Admin::AdminUsersController#index as HTML + AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (1.1ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (19.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (99.8ms) +Completed 200 OK in 173ms (Views: 111.3ms | ActiveRecord: 0.6ms) + + +Started GET "/admin/categories" for 127.0.0.1 at 2010-10-12 05:07:50 -0400 + Processing by Admin::CategoriesController#index as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.7ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "categories" + Category Load (38.1ms) SELECT "categories".* FROM "categories" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (10.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (105.8ms) +Completed 200 OK in 190ms (Views: 80.5ms | ActiveRecord: 38.5ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:07:53 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:07:59 -0400 + +ActionController::RoutingError (No route matches "/about"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.3ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:09:02 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:09:05 -0400 + +ActionController::RoutingError (No route matches "/about"): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms) + + +Started GET "/!admin" for 127.0.0.1 at 2010-10-12 05:09:12 -0400 + +AbstractController::ActionNotFound (The action '!admin' could not be found for PagesController): + + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.erb within rescues/layout (0.6ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:17:16 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 05:17:19 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 05:56:26 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dave Smith", "email"=>"dave@pixelhum.com", "subject"=>"Wedding", "message"=>"Please would you photograph our wedding? Please!!\r\n\r\n- Dave"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.5ms) + +Sent mail to enquiries@danbarberphoto.com (6ms) +Date: Tue, 12 Oct 2010 05:56:27 -0400 +From: dave@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb430cb214e_eef58099b7b0564d8@junpei.lan.mail> +Subject: Wedding +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Please would you photograph our wedding? Please!! + +- Dave +Redirected to http://localhost:3000/ +Completed 302 Found in 265ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 05:56:27 -0400 + Processing by PagesController#index as HTML + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (14.8ms) +Completed 200 OK in 30ms (Views: 16.8ms | ActiveRecord: 0.5ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 05:58:37 -0400 + Processing by PagesController#index as HTML + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (51.3ms) +Completed 200 OK in 108ms (Views: 54.4ms | ActiveRecord: 0.7ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 05:58:39 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (44.9ms) +Completed 200 OK in 52ms (Views: 47.0ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 05:59:05 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"John", "email"=>"john@pixelhum.com", "subject"=>"Photos", "message"=>"Hi Dan, need you to take some photos of my car.\r\n\r\nCheers,\r\n\r\nJohn"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.5ms) + +Sent mail to enquiries@danbarberphoto.com (159ms) +Date: Tue, 12 Oct 2010 05:59:05 -0400 +From: john@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb43169b52bb_11a758230462034467@junpei.lan.mail> +Subject: Photos +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Hi Dan, need you to take some photos of my car. + +Cheers, + +John +Redirected to http://localhost:3000/ +Completed 302 Found in 298ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 05:59:05 -0400 + Processing by PagesController#index as HTML + Photo Load (0.7ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (17.5ms) +Completed 200 OK in 39ms (Views: 20.1ms | ActiveRecord: 0.7ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:21:56 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (7.2ms) +Completed 200 OK in 19ms (Views: 9.8ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:22:37 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Gerald", "email"=>"gerald@pixelhum.com", "subject"=>"Photos", "message"=>"Please would you come and photograph my 100 room mansion.\r\n\r\nThanks,\r\n\r\nGerald"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to enquiries@danbarberphoto.com (116ms) +Date: Tue, 12 Oct 2010 06:22:37 -0400 +From: gerald@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb436ed537bf_11c66822c614075622@junpei.lan.mail> +Subject: Photos +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Please would you come and photograph my 100 room mansion. + +Thanks, + +Gerald +Redirected to http://localhost:3000/ +Completed 302 Found in 251ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 06:22:37 -0400 + Processing by PagesController#index as HTML + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (48.7ms) +Completed 200 OK in 74ms (Views: 50.8ms | ActiveRecord: 0.7ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:24:54 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (6.0ms) +Completed 200 OK in 14ms (Views: 7.9ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:25:20 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Fred", "email"=>"fred@pixelhum.com", "subject"=>"Horses", "message"=>"I need somebody to come and photograph my horses.\r\n\r\nThanks,\r\n\r\nFred"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to enquiries@danbarberphoto.com (60121ms) +Date: Tue, 12 Oct 2010 06:25:20 -0400 +From: fred@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb4379071c86_11cae8242aaf4195a7@junpei.lan.mail> +Subject: Horses +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +I need somebody to come and photograph my horses. + +Thanks, + +Fred +Redirected to http://localhost:3000/ +Completed 302 Found in 60225ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 06:26:20 -0400 + Processing by PagesController#index as HTML + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (47.0ms) +Completed 200 OK in 69ms (Views: 48.9ms | ActiveRecord: 0.6ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:26:44 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:27:11 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Tom", "email"=>"tom@pixelhum.com", "subject"=>"Guitars and stuff", "message"=>"I need somebody to photograph me playing my guitars. All of them.\r\n\r\nThanks,\r\n\r\nTom"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to enquiries@danbarberphoto.com (25917ms) +Date: Tue, 12 Oct 2010 06:27:11 -0400 +From: tom@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb437ffec582_11cae8242aaf419665@junpei.lan.mail> +Subject: Guitars and stuff +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +I need somebody to photograph me playing my guitars. All of them. + +Thanks, + +Tom +Completed in 25976ms +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:27:46 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Tom", "email"=>"tom@pixelhum.com", "subject"=>"Guitars and stuff", "message"=>"I need somebody to photograph me playing my guitars. All of them.\r\n\r\nThanks,\r\n\r\nTom"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to enquiries@danbarberphoto.com (881ms) +Date: Tue, 12 Oct 2010 06:27:47 -0400 +From: tom@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb43823229cd_11cff82102ebc5566@junpei.lan.mail> +Subject: Guitars and stuff +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +I need somebody to photograph me playing my guitars. All of them. + +Thanks, + +Tom +Redirected to http://localhost:3000/ +Completed 302 Found in 949ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 06:27:47 -0400 + Processing by PagesController#index as HTML + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (47.5ms) +Completed 200 OK in 69ms (Views: 49.5ms | ActiveRecord: 0.6ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:29:19 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.8ms) +Completed 200 OK in 13ms (Views: 7.6ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:29:41 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Eric", "email"=>"eric@pixelhum.com", "subject"=>"Eric", "message"=>"I need photos of my Eric, me that is.\r\n\r\n- Eric"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.3ms) + +Sent mail to enquiries@danbarberphoto.com (727ms) +Date: Tue, 12 Oct 2010 06:29:41 -0400 +From: eric@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb438959c529_11d21821315148280@junpei.lan.mail> +Subject: Eric +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +I need photos of my Eric, me that is. + +- Eric +Redirected to http://localhost:3000/ +Completed 302 Found in 843ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 06:29:42 -0400 + Processing by PagesController#index as HTML + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (49.5ms) +Completed 200 OK in 75ms (Views: 51.4ms | ActiveRecord: 0.6ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:39:43 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (9.0ms) +Completed 200 OK in 39ms (Views: 29.9ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:40:04 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@pixelhum.com", "subject"=>"Photos and shiznit", "message"=>"Can you take me some photos innit?\r\n\r\n- Dan"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to enquiries@danbarberphoto.com (236ms) +Date: Tue, 12 Oct 2010 06:40:04 -0400 +From: danbee@pixelhum.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb43b0491576_11e2e80ba68fc928d7@junpei.lan.mail> +Subject: Photos and shiznit +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Can you take me some photos innit? + +- Dan +Redirected to http://localhost:3000/ +Completed 302 Found in 362ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 06:40:04 -0400 + Processing by PagesController#index as HTML + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (47.1ms) +Completed 200 OK in 92ms (Views: 70.7ms | ActiveRecord: 0.7ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:41:38 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.9ms) +Completed 200 OK in 13ms (Views: 7.8ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:41:58 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Test bastard", "message"=>"This is a bastard test thingy."}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.5ms) + +Sent mail to enquiries@danbarberphoto.com (5262ms) +Date: Tue, 12 Oct 2010 06:41:58 -0400 +From: danbee@gmail.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb43b765b83d_11e64820ff5dc4238a@junpei.lan.mail> +Subject: Test bastard +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +This is a bastard test thingy. +Redirected to http://localhost:3000/ +Completed 302 Found in 5387ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 06:42:03 -0400 + Processing by PagesController#index as HTML + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (49.1ms) +Completed 200 OK in 74ms (Views: 51.1ms | ActiveRecord: 0.9ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:44:50 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (6.1ms) +Completed 200 OK in 16ms (Views: 8.9ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:45:19 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Test email", "message"=>"This is a test from the contact form to see if the bloody thing works.\r\n\r\n- Dan"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.3ms) + +Sent mail to enquiries@danbarberphoto.com (2169ms) +Date: Tue, 12 Oct 2010 06:45:19 -0400 +From: danbee@gmail.com +To: enquiries@danbarberphoto.com +Message-ID: <4cb43c3fc9a64_11e648098b6f8424ef@junpei.lan.mail> +Subject: Test email +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +This is a test from the contact form to see if the bloody thing works. + +- Dan +Redirected to http://localhost:3000/ +Completed 302 Found in 2193ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 06:45:22 -0400 + Processing by PagesController#index as HTML + Photo Load (0.7ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (54.2ms) +Completed 200 OK in 71ms (Views: 58.0ms | ActiveRecord: 0.7ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 06:59:37 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.9ms) +Completed 200 OK in 13ms (Views: 8.0ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 06:59:57 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@pixelhum.com", "subject"=>"Test", "message"=>"Test email. This should go to gmail this time."}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.3ms) + +Sent mail to danbee@gmail.com (6335ms) +Date: Tue, 12 Oct 2010 06:59:57 -0400 +From: danbee@pixelhum.com +To: danbee@gmail.com +Message-ID: <4cb43fad63d0a_11fd7814e9f54223df@junpei.lan.mail> +Subject: Test +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test email. This should go to gmail this time. +Redirected to http://localhost:3000/ +Completed 302 Found in 6415ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 07:00:03 -0400 + Processing by PagesController#index as HTML + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (50.4ms) +Completed 200 OK in 73ms (Views: 52.4ms | ActiveRecord: 0.7ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:23:09 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (6.5ms) +Completed 200 OK in 14ms (Views: 8.5ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:23:22 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Test", "message"=>"Test email. Probably won't work from here."}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.5ms) + +Sent mail to danbee@gmail.com (237ms) +Date: Tue, 12 Oct 2010 07:23:22 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb4452aa6eb0_121d9822fef544357b@junpei.lan.mail> +Subject: Test +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test email. Probably won't work from here. +Redirected to http://localhost:3000/ +Completed 302 Found in 379ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 07:23:22 -0400 + Processing by PagesController#index as HTML + SQL (0.3ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (59.8ms) +Completed 200 OK in 125ms (Views: 62.3ms | ActiveRecord: 0.9ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:31:28 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 11ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:31:36 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (36.4ms) +Completed 200 OK in 48ms (Views: 38.4ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:34:21 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (6.0ms) +Completed 200 OK in 21ms (Views: 8.8ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:34:49 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.7ms) +Completed 200 OK in 19ms (Views: 8.0ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:35:21 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.1ms) +Completed 200 OK in 21ms (Views: 7.2ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 07:35:22 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:35:23 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:36:02 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.1ms) +Completed 200 OK in 12ms (Views: 6.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:36:10 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.3ms) +Completed 200 OK in 11ms (Views: 6.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:36:50 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 12ms (Views: 6.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:37:05 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.1ms) +Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:37:22 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.1ms) +Completed 200 OK in 11ms (Views: 5.8ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:37:40 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 12ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:37:49 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (38.8ms) +Completed 200 OK in 47ms (Views: 40.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:38:04 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 13ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:38:07 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:38:14 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:38:21 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 12ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:38:47 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (37.4ms) +Completed 200 OK in 45ms (Views: 39.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:39:00 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.3ms) +Completed 200 OK in 12ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:39:41 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 12ms (Views: 6.0ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:39:59 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.1ms) +Completed 200 OK in 11ms (Views: 5.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:40:24 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.3ms) +Completed 200 OK in 12ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:40:33 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (37.2ms) +Completed 200 OK in 44ms (Views: 39.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:40:38 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.1ms) +Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:40:54 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.3ms) +Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 07:41:18 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:41:19 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:41:31 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.2ms) +Completed 200 OK in 12ms (Views: 6.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:41:42 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.1ms) +Completed 200 OK in 11ms (Views: 5.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:41:53 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 13ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:42:05 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (32.9ms) +Completed in 74ms + +ActionView::Template::Error (wrong number of arguments (0 for 1)): + 25: <%= f.text_area :message %> + 26:

+ 27:

+ 28: <%= f.label %> + 29: <%= f.submit 'Send Message' %> + 30:

+ 31: <% end %> + app/views/contacts/new.html.erb:28:in `block in _app_views_contacts_new_html_erb___3389290393241413412_2185050200_1322559874007585062' + app/views/contacts/new.html.erb:10:in `_app_views_contacts_new_html_erb___3389290393241413412_2185050200_1322559874007585062' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (0.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.5ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.9ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:42:15 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 12ms (Views: 6.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:42:21 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.7ms) +Completed 200 OK in 12ms (Views: 6.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:42:29 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.7ms) +Completed 200 OK in 13ms (Views: 6.8ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:42:49 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 12ms (Views: 6.8ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:42:53 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:43:17 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 13ms (Views: 7.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:43:25 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (38.7ms) +Completed 200 OK in 46ms (Views: 40.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:43:36 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 11ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:43:49 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.5ms) +Completed 200 OK in 13ms (Views: 7.6ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:43:56 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:44:46 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.0ms) +Completed 200 OK in 13ms (Views: 7.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:45:04 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.6ms) +Completed 200 OK in 46ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 07:45:19 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (7.0ms) +Completed 200 OK in 18ms (Views: 9.6ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:45:42 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (38.2ms) +Completed 200 OK in 48ms (Views: 40.1ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:58:35 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.2ms) +Completed 200 OK in 36ms (Views: 29.7ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:59:29 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (6.6ms) +Completed 200 OK in 19ms (Views: 9.5ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 07:59:41 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:00:05 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (7.9ms) +Completed 200 OK in 17ms (Views: 10.1ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:00:29 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.1ms) +Completed 200 OK in 16ms (Views: 7.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:00:35 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 12ms (Views: 6.1ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:00:48 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.0ms) +Completed 200 OK in 54ms (Views: 7.0ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:00:57 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dadsd", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (7.2ms) +Completed 200 OK in 19ms (Views: 10.2ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:01:03 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"safF", "message"=>"FAasf"}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.5ms) +Completed 200 OK in 15ms (Views: 7.6ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:01:06 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"safF", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.4ms) +Completed 200 OK in 15ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:01:06 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"safF", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (6.6ms) +Completed 200 OK in 20ms (Views: 8.9ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:01:09 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.6ms) +Completed 200 OK in 15ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 08:01:33 -0400 + Processing by PagesController#index as HTML + Photo Load (14.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (51.9ms) +Completed 200 OK in 103ms (Views: 76.2ms | ActiveRecord: 14.6ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:01:34 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 12ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:01:35 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.6ms) +Completed 200 OK in 48ms (Views: 6.7ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:01:52 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 14ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:02:17 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 54ms (Views: 43.2ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:16:46 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (6.1ms) +Completed 200 OK in 21ms (Views: 8.4ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:31:02 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +DEPRECATION WARNING: f.error_messages was removed from Rails and is now available as a plugin. Please install it with `rails plugin install git://github.com/rails/dynamic_form.git`. (called from block in _app_views_contacts_new_html_erb___3389290393241413412_2183675160_1322559874007585062 at /Users/danbee/Sites/rails/photos/app/views/contacts/new.html.erb:11) +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 47ms (Views: 6.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-12 08:33:36 -0400 + Processing by ContactsController#index as HTML +Rendered contacts/index.html.erb within layouts/photos (2.4ms) +Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-12 08:34:40 -0400 + Processing by ContactsController#index as HTML +Rendered contacts/index.html.erb within layouts/photos (2.8ms) +Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-12 08:35:07 -0400 + Processing by ContactsController#index as HTML +Rendered contacts/index.html.erb within layouts/photos (2.5ms) +Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-12 08:35:28 -0400 + Processing by ContactsController#index as HTML +Rendered contacts/index.html.erb within layouts/photos (2.4ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-12 08:36:08 -0400 + Processing by ContactsController#index as HTML +Rendered contacts/index.html.erb within layouts/photos (2.5ms) +Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 08:36:10 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (47.1ms) +Completed 200 OK in 50ms (Views: 49.3ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:36:12 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.6ms) +Completed 200 OK in 12ms (Views: 6.5ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:36:14 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.6ms) +Completed 200 OK in 15ms (Views: 6.5ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:36:25 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 13ms (Views: 6.2ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:36:45 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.9ms) +Completed 200 OK in 17ms (Views: 8.2ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:36:53 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 14ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:37:14 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (8.4ms) +Completed 200 OK in 20ms (Views: 11.1ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:37:26 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.3ms) +Completed 200 OK in 15ms (Views: 7.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:37:35 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (7.2ms) +Completed 200 OK in 21ms (Views: 10.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:38:01 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.2ms) +Completed 200 OK in 54ms (Views: 7.1ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:38:15 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.6ms) +Completed 200 OK in 20ms (Views: 8.8ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:38:29 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.7ms) +Completed 200 OK in 52ms (Views: 6.7ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:39:04 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.7ms) +Completed 200 OK in 13ms (Views: 6.5ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:39:13 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Subject line", "message"=>"THis is a test"}, "commit"=>"Send Message"} +Completed in 30ms + +SyntaxError (/Users/danbee/Sites/rails/photos/app/mailers/notifier.rb:8: syntax error, unexpected keyword_or, expecting ')' + :subject => sender.subject or '(no subject)') + ^ +/Users/danbee/Sites/rails/photos/app/mailers/notifier.rb:8: syntax error, unexpected ')', expecting keyword_end): + app/models/contact.rb:21:in `save' + app/controllers/contacts_controller.rb:10:in `create' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (37.6ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (44.6ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:40:11 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Subject line", "message"=>"THis is a test"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to danbee@gmail.com (276ms) +Date: Tue, 12 Oct 2010 08:40:11 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb4572b2f202_121d9823a33244368e@junpei.lan.mail> +Subject: Subject line +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +THis is a test +Redirected to http://localhost:3000/ +Completed 302 Found in 362ms + + +Started GET "/" for 127.0.0.1 at 2010-10-12 08:40:11 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (67.5ms) +Completed 200 OK in 87ms (Views: 70.2ms | ActiveRecord: 0.4ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:40:34 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.1ms) +Completed 200 OK in 12ms (Views: 6.9ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:40:44 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Guitars and stuff", "message"=>"Test"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to danbee@gmail.com (23ms) +Date: Tue, 12 Oct 2010 08:40:44 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb4574ca56b0_121d9823a5c78437f5@junpei.lan.mail> +Subject: Guitars and stuff +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test +Redirected to +Completed in 81ms + +NoMethodError (undefined method `new_url' for #): + app/controllers/contacts_controller.rb:11:in `create' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (3.8ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.4ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:41:02 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Guitars and stuff", "message"=>"Test"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to danbee@gmail.com (24ms) +Date: Tue, 12 Oct 2010 08:41:02 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb4575e64941_121d9822c409843882@junpei.lan.mail> +Subject: Guitars and stuff +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test +Redirected to http://localhost:3000/contacts/new +Completed 302 Found in 57ms + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:41:02 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (7.3ms) +Completed 200 OK in 18ms (Views: 10.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:41:23 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 12ms (Views: 6.9ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:41:28 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Guitars and stuff", "message"=>"Test"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to danbee@gmail.com (22ms) +Date: Tue, 12 Oct 2010 08:41:28 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb45778f983_121d9823a33244398f@junpei.lan.mail> +Subject: Guitars and stuff +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test +Redirected to http://localhost:3000/contacts/new +Completed 302 Found in 47ms + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:41:28 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (58.2ms) +Completed 200 OK in 70ms (Views: 61.0ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 08:41:45 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.4ms) +Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:41:46 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.4ms) +Completed 200 OK in 13ms (Views: 7.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:42:02 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Test email", "message"=>"Test"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.4ms) + +Sent mail to danbee@gmail.com (23ms) +Date: Tue, 12 Oct 2010 08:42:02 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb4579aadd30_121d9823a5c78440dd@junpei.lan.mail> +Subject: Test email +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test +Redirected to http://localhost:3000/contacts/new +Completed 302 Found in 49ms + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:42:02 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (6.6ms) +Completed 200 OK in 17ms (Views: 9.0ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 08:42:59 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.5ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:43:00 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (6.6ms) +Completed 200 OK in 15ms (Views: 9.1ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:43:08 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan", "email"=>"danbee@gmail.com", "subject"=>"Test", "message"=>"Test"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.5ms) + +Sent mail to danbee@gmail.com (22ms) +Date: Tue, 12 Oct 2010 08:43:08 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb457dc926ec_121d980be42c4441c5@junpei.lan.mail> +Subject: Test +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test +Redirected to http://localhost:3000/contacts/new +Completed 302 Found in 51ms + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:43:08 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (9.0ms) +Completed 200 OK in 25ms (Views: 13.0ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:43:39 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (5.3ms) +Completed 200 OK in 15ms (Views: 7.2ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:44:18 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 14ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:45:07 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan Barber", "email"=>"danbee@gmail.com", "subject"=>"Test", "message"=>"Test message"}, "commit"=>"Send Message"} +Rendered notifier/contact_notification.text.erb (0.5ms) + +Sent mail to danbee@gmail.com (23ms) +Date: Tue, 12 Oct 2010 08:45:07 -0400 +From: danbee@gmail.com +To: danbee@gmail.com +Message-ID: <4cb4585368bec_121d980bde5b8442cd@junpei.lan.mail> +Subject: Test +Mime-Version: 1.0 +Content-Type: text/plain; + charset=UTF-8 +Content-Transfer-Encoding: 7bit + +Test message +Redirected to http://localhost:3000/contacts/new +Completed 302 Found in 50ms + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:45:07 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (11.2ms) +Completed 200 OK in 26ms (Views: 15.0ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 08:46:26 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.6ms) +Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 08:46:27 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (15.6ms) +Completed 200 OK in 381ms (Views: 17.8ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 08:46:28 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (17.6ms) +Completed 200 OK in 31ms (Views: 19.5ms | ActiveRecord: 0.3ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:46:29 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.6ms) +Completed 200 OK in 44ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 08:46:30 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:46:35 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (5.0ms) +Completed 200 OK in 13ms (Views: 7.1ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 08:46:37 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 08:46:39 -0400 + Processing by CategoriesController#index as HTML + Category Load (25.6ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (53.8ms) +Completed 200 OK in 155ms (Views: 55.9ms | ActiveRecord: 26.3ms) + + +Started GET "/categories/1/photos" for 127.0.0.1 at 2010-10-12 08:46:41 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"1"} + Category Load (0.5ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 1) LIMIT 1 + Photo Load (0.7ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 1 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (53.3ms) +Completed 200 OK in 231ms (Views: 75.4ms | ActiveRecord: 1.2ms) + + +Started GET "/categories/2/photos" for 127.0.0.1 at 2010-10-12 08:46:47 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"2"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 2) LIMIT 1 + Photo Load (0.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 2 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (47.0ms) +Completed 200 OK in 85ms (Views: 49.5ms | ActiveRecord: 0.8ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 08:46:52 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.1ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (20.9ms) +Completed 200 OK in 81ms (Views: 22.8ms | ActiveRecord: 1.7ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 08:49:10 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (52.5ms) +Completed 200 OK in 80ms (Views: 54.4ms | ActiveRecord: 1.6ms) + + +Started GET "/contacts" for 127.0.0.1 at 2010-10-12 08:49:13 -0400 + Processing by ContactsController#index as HTML +Rendered contacts/index.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 08:49:32 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 08:49:33 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:49:36 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 14ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:49:45 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.6ms) +Completed 200 OK in 14ms (Views: 6.4ms | ActiveRecord: 0.0ms) + + +Started POST "/contacts" for 127.0.0.1 at 2010-10-12 08:49:50 -0400 + Processing by ContactsController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "contact"=>{"name"=>"Dan Barber", "email"=>"", "subject"=>"", "message"=>""}, "commit"=>"Send Message"} +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 13ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:00:58 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:00:58 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:01:53 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (7.0ms) +Completed 200 OK in 18ms (Views: 9.2ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:02:36 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:02:55 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:03:41 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:04:07 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:04:09 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:04:36 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:04:52 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:05:07 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:05:18 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:06:06 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:06:27 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:06:36 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:06:42 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:06:48 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:06:53 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:06:58 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:07:03 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:07:23 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.0ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:07:56 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (6.8ms) +Completed in 9ms + +ActionView::Template::Error (undefined local variable or method `new_contact' for #<#:0x000001044bdcc8>): + 10:
+ 11:
+ 12:

I’m a photographer in Plymouth, UK. I love taking pictures of almost anything, particularly landscapes and anything that creates a strong graphic image.

+ 13:

I always appreciate constructive criticism of my work, so please have a look around and feel free to <%= link_to 'drop me a line', new_contact %>.

+ 14:
+ 15:
+ 16: + app/views/pages/about.html.erb:13:in `_app_views_pages_about_html_erb___4484734401031152770_2183521500_1322559874007585062' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.7ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (8.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:08:03 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:08:04 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.5ms) +Completed 200 OK in 12ms (Views: 6.3ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 09:08:12 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.4ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (21.4ms) +Completed 200 OK in 84ms (Views: 23.5ms | ActiveRecord: 1.9ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:08:15 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (14.7ms) +Completed 200 OK in 29ms (Views: 16.9ms | ActiveRecord: 0.4ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:08:16 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 12ms (Views: 6.9ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:08:17 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:08:38 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:08:47 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:08:57 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:09:14 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:09:22 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:09:27 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:09:30 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.7ms) +Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:09:32 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:10:08 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:16:41 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (47.8ms) +Completed 200 OK in 62ms (Views: 49.8ms | ActiveRecord: 0.4ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:16:42 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 09:26:12 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.1ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (51.5ms) +Completed 200 OK in 80ms (Views: 53.5ms | ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:26:19 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (14.3ms) +Completed 200 OK in 28ms (Views: 16.2ms | ActiveRecord: 0.4ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:26:20 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:26:34 -0400 + Processing by PagesController#index as HTML + Photo Load (15.0ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (14.6ms) +Completed 200 OK in 43ms (Views: 16.6ms | ActiveRecord: 15.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 09:26:35 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (52.7ms) +Completed 200 OK in 80ms (Views: 54.6ms | ActiveRecord: 1.5ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:26:44 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (48.7ms) +Completed 200 OK in 63ms (Views: 50.6ms | ActiveRecord: 0.3ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:26:45 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.1ms) +Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 09:27:35 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (20.8ms) +Completed 200 OK in 81ms (Views: 22.7ms | ActiveRecord: 1.6ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 09:27:40 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.5ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (52.3ms) +Completed 200 OK in 82ms (Views: 54.2ms | ActiveRecord: 1.6ms) + + +Started GET "/categories/4/photos" for 127.0.0.1 at 2010-10-12 09:27:55 -0400 + Processing by PhotosController#index as HTML + Parameters: {"category_id"=>"4"} + Category Load (0.4ms) SELECT "categories".* FROM "categories" WHERE ("categories"."id" = 4) LIMIT 1 + Photo Load (0.4ms) SELECT * FROM "photos" INNER JOIN "categories_photos" ON "photos".id = "categories_photos".photo_id WHERE ("categories_photos".category_id = 4 ) LIMIT 11 OFFSET 0 +Rendered photos/index.html.erb within layouts/photos (15.1ms) +Completed 200 OK in 97ms (Views: 32.1ms | ActiveRecord: 0.8ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 09:28:00 -0400 + Processing by CategoriesController#index as HTML + Category Load (1.0ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (54.4ms) +Completed 200 OK in 83ms (Views: 56.4ms | ActiveRecord: 1.7ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:28:00 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (14.2ms) +Completed 200 OK in 28ms (Views: 16.1ms | ActiveRecord: 0.3ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:28:01 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:28:58 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.3ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:29:03 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (7.3ms) +Completed 200 OK in 75ms (Views: 37.6ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:29:20 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:29:21 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (51.0ms) +Completed 200 OK in 64ms (Views: 52.9ms | ActiveRecord: 0.3ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.2ms) SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" +Migrating to CreateCategories (20101006095323) +Migrating to CreatePhotos (20101006095457) +Migrating to AddPhotoToCategory (20101008101157) +Migrating to AddDetailsToPhoto (20101008103053) +Migrating to AddColourToCategory (20101008105348) +Migrating to AddSortOrders (20101008122736) +Migrating to MoveToManyToMany (20101008172319) +Migrating to CreateAdminUsers (20101011133558) +Migrating to CreatePages (20101012132954) + SQL (0.0ms) select sqlite_version(*) + SQL (15.9ms) CREATE TABLE "pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "title" varchar(255), "content" text, "created_at" datetime, "updated_at" datetime)  + SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20101012132954') + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" + SQL (0.1ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + SQL (0.0ms) PRAGMA index_list("admin_users") + SQL (0.0ms) PRAGMA index_list("categories") + SQL (0.0ms) PRAGMA index_list("categories_photos") + SQL (0.0ms) PRAGMA index_list("pages") + SQL (0.0ms) PRAGMA index_list("photos") + + +Started GET "/admin" for 127.0.0.1 at 2010-10-12 09:32:47 -0400 + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:32:47 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (18.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (50.3ms) +Completed 200 OK in 114ms (Views: 61.5ms | ActiveRecord: 0.1ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:32:51 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (20.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (47.9ms) +Completed 200 OK in 122ms (Views: 56.5ms | ActiveRecord: 0.2ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:33:03 -0400 + Processing by Admin::DashboardController#show as HTML + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (40.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (7.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (71.8ms) +Completed 200 OK in 147ms (Views: 80.7ms | ActiveRecord: 0.8ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:33:36 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (18.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (7.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (48.5ms) +Completed 200 OK in 107ms (Views: 57.1ms | ActiveRecord: 0.2ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:33:46 -0400 + Processing by Admin::DashboardController#show as HTML + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (23.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (53.0ms) +Completed 200 OK in 123ms (Views: 61.6ms | ActiveRecord: 0.8ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:34:30 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (18.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (46.8ms) +Completed 200 OK in 107ms (Views: 55.5ms | ActiveRecord: 0.2ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:35:42 -0400 + Processing by Admin::DashboardController#show as HTML + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (23.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (54.1ms) +Completed 200 OK in 126ms (Views: 62.7ms | ActiveRecord: 0.8ms) + + +Started GET "/admin/admin_users" for 127.0.0.1 at 2010-10-12 09:35:47 -0400 + Processing by Admin::AdminUsersController#index as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.8ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (2.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (23.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (83.8ms) +Completed 200 OK in 160ms (Views: 94.9ms | ActiveRecord: 0.5ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:35:49 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (19.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (80.6ms) +Completed 200 OK in 112ms (Views: 89.4ms | ActiveRecord: 0.3ms) + + +Started GET "/admin/admin_users" for 127.0.0.1 at 2010-10-12 09:36:36 -0400 + Processing by Admin::AdminUsersController#index as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/filters/_filters.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "admin_users" + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (57.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (101.7ms) +Completed 200 OK in 171ms (Views: 112.2ms | ActiveRecord: 0.6ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:36:37 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (52.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (79.6ms) +Completed 200 OK in 109ms (Views: 88.1ms | ActiveRecord: 0.1ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:38:05 -0400 + Processing by PagesController#index as HTML + SQL (0.2ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (44.4ms) +Completed 200 OK in 63ms (Views: 46.6ms | ActiveRecord: 0.5ms) + + +Started GET "/admin" for 127.0.0.1 at 2010-10-12 09:38:08 -0400 + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:38:08 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (20.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (6.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (50.8ms) +Completed 200 OK in 125ms (Views: 59.7ms | ActiveRecord: 0.2ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:38:24 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (24.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (49.8ms) +Completed 200 OK in 115ms (Views: 61.6ms | ActiveRecord: 0.1ms) + + +Started GET "/admin/pages" for 127.0.0.1 at 2010-10-12 09:38:25 -0400 + Processing by Admin::PagesController#index as HTML + AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" + Page Load (0.2ms) SELECT "pages".* FROM "pages" LIMIT 15 OFFSET 0 + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (88.4ms) +Completed 200 OK in 169ms (Views: 99.2ms | ActiveRecord: 0.5ms) + + +Started GET "/admin/pages/new" for 127.0.0.1 at 2010-10-12 09:38:27 -0400 + Processing by Admin::PagesController#new as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (33.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_new.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (1.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (16.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/new.html.erb within layouts/admin/base (97.5ms) +Completed 200 OK in 150ms (Views: 120.8ms | ActiveRecord: 0.2ms) + + +Started POST "/admin/pages/create" for 127.0.0.1 at 2010-10-12 09:39:37 -0400 + Processing by Admin::PagesController#create as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "page"=>{"name"=>"about", "title"=>"About", "content"=>"I'm a photographer in Plymouth, UK. I love taking pictures of almost anything, particularly landscapes and anything that creates a strong graphic image.

\r\n\r\nI always appreciate constructive criticism of my work, so please have a look around and feel free to [drop me a line](/contacts/new)."}, "commit"=>"Create Page"} + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.4ms) INSERT INTO "pages" ("content", "created_at", "name", "title", "updated_at") VALUES ('I''m a photographer in Plymouth, UK. I love taking pictures of almost anything, particularly landscapes and anything that creates a strong graphic image.

+ +I always appreciate constructive criticism of my work, so please have a look around and feel free to [drop me a line](/contacts/new).', '2010-10-12 13:39:37.834305', 'about', 'About', '2010-10-12 13:39:37.834305') +Redirected to http://localhost:3000/admin/pages/edit/1 +Completed 302 Found in 80ms + + +Started GET "/admin/pages/edit/1" for 127.0.0.1 at 2010-10-12 09:39:37 -0400 + Processing by Admin::PagesController#edit as HTML + Parameters: {"id"=>"1"} + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (11.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (98.1ms) +Completed 200 OK in 214ms (Views: 181.3ms | ActiveRecord: 1.0ms) + + +Started GET "/admin/pages" for 127.0.0.1 at 2010-10-12 09:39:40 -0400 + Processing by Admin::PagesController#index as HTML + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.8ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" + Page Load (0.2ms) SELECT "pages".* FROM "pages" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (5.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (111.8ms) +Completed 200 OK in 161ms (Views: 124.9ms | ActiveRecord: 0.6ms) + + +Started GET "/admin/pages" for 127.0.0.1 at 2010-10-12 09:40:20 -0400 + Processing by Admin::PagesController#index as HTML + AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.9ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (0.8ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" + Page Load (0.2ms) SELECT "pages".* FROM "pages" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (4.8ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (60.3ms) +Completed 200 OK in 135ms (Views: 70.4ms | ActiveRecord: 0.5ms) + + +Started GET "/admin/pages/edit/1" for 127.0.0.1 at 2010-10-12 09:40:23 -0400 + Processing by Admin::PagesController#edit as HTML + Parameters: {"id"=>"1"} + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (12.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (96.7ms) +Completed 200 OK in 177ms (Views: 107.1ms | ActiveRecord: 0.4ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:44:52 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (14.5ms) +Completed 200 OK in 47ms (Views: 34.3ms | ActiveRecord: 0.4ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:44:53 -0400 + Processing by PagesController#about as HTML +Rendered pages/about.html.erb within layouts/photos (2.2ms) +Completed 200 OK in 4ms (Views: 3.9ms | ActiveRecord: 0.0ms) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:45:00 -0400 + Processing by Admin::DashboardController#show as HTML + AdminUser Load (0.1ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (67.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (73.2ms) +Completed in 142ms + +ActionView::Template::Error (no such file to load -- rdiscount): + 11: <% @current_user.application(app).each do |model| %> + 12: + 13: <% + 14: klass = model.constantize + 15: klass_human_name = klass.model_name.human.gsub("/", " ").pluralize + 16: admin_items_path = { :controller => "admin/#{klass.to_resource}" } + 17: %> + app/models/page.rb:1:in `' + +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.0ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (2.9ms) +Rendered /usr/local/Cellar/ruby/1.9.2-p0/lib/ruby/gems/1.9.1/gems/actionpack-3.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.erb within rescues/layout (7.5ms) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: reset_javascript_include_default is deprecated. Please manipulate config.action_view.javascript_expansions[:defaults] directly. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:14) +DEPRECATION WARNING: RAILS_ENV is deprecated. Please use ::Rails.env. (called from block in at /Users/danbee/Sites/rails/photos/vendor/plugins/jrails/rails/init.rb:16) +DEPRECATION WARNING: Use toplevel init.rb; rails/init.rb is deprecated: /Users/danbee/Sites/rails/photos/vendor/plugins/paperclip/rails/init.rb. (called from at /Users/danbee/Sites/rails/photos/config/environment.rb:5) +DEPRECATION WARNING: ActionController::Base.cookie_verifier_secret= is deprecated. Please configure it on your application with config.secret_token=. (called from at /Users/danbee/Sites/rails/photos/config/initializers/cookie_verification_secret.rb:7) + + +Started GET "/admin/dashboard" for 127.0.0.1 at 2010-10-12 09:45:25 -0400 + Processing by Admin::DashboardController#show as HTML + SQL (0.5ms)  SELECT name + FROM sqlite_master + WHERE type = 'table' AND NOT name = 'sqlite_sequence' + + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/_sidebar.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_applications.html.erb (28.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/dashboard/_resources.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/dashboard/show.html.erb within layouts/admin/base (55.4ms) +Completed 200 OK in 128ms (Views: 64.1ms | ActiveRecord: 0.8ms) + + +Started GET "/admin/pages" for 127.0.0.1 at 2010-10-12 09:45:27 -0400 + Processing by Admin::PagesController#index as HTML + AdminUser Load (0.3ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + SQL (0.2ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_index.html.erb (0.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.4ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/search/_search.html.erb (1.0ms) + CACHE (0.0ms) SELECT COUNT(*) AS count_id FROM "pages" + Page Load (0.2ms) SELECT "pages".* FROM "pages" LIMIT 15 OFFSET 0 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/table/_table.html.erb (5.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (1.1ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/index.html.erb within layouts/admin/base (421.9ms) +Completed 200 OK in 724ms (Views: 466.7ms | ActiveRecord: 0.6ms) + + +Started GET "/admin/pages/edit/1" for 127.0.0.1 at 2010-10-12 09:45:32 -0400 + Processing by Admin::PagesController#edit as HTML + Parameters: {"id"=>"1"} + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.7ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (11.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (91.0ms) +Completed 200 OK in 169ms (Views: 101.4ms | ActiveRecord: 0.4ms) + + +Started POST "/admin/pages/update/1" for 127.0.0.1 at 2010-10-12 09:46:27 -0400 + Processing by Admin::PagesController#update as HTML + Parameters: {"utf8"=>"✓", "authenticity_token"=>"qXI/EVGrai3ZKvzFWeagi05czgp8I0TF8vdeWdEkaMs=", "page"=>{"name"=>"about", "title"=>"About", "content"=>"I'm a photographer in Plymouth, UK. I love taking pictures of almost anything, particularly landscapes and anything that creates a strong graphic image.\r\n\r\nMuch of the beauty of photography comes after the shutter has been pressed, and I've got no problem with manipulating my images to either get closer to what my eye saw at that moment, or to create something quite different.\r\n\r\nI always appreciate constructive criticism of my work, so please have a look around and feel free to [drop me a line](/contacts/new)."}, "commit"=>"Save Page", "id"=>"1"} + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."id" = 1) LIMIT 1 + SQL (0.4ms) UPDATE "pages" SET "content" = 'I''m a photographer in Plymouth, UK. I love taking pictures of almost anything, particularly landscapes and anything that creates a strong graphic image. + +Much of the beauty of photography comes after the shutter has been pressed, and I''ve got no problem with manipulating my images to either get closer to what my eye saw at that moment, or to create something quite different. + +I always appreciate constructive criticism of my work, so please have a look around and feel free to [drop me a line](/contacts/new).', "updated_at" = '2010-10-12 13:46:27.644636' WHERE ("pages"."id" = 1) +Redirected to http://localhost:3000/admin/pages/edit/1 +Completed 302 Found in 80ms + + +Started GET "/admin/pages/edit/1" for 127.0.0.1 at 2010-10-12 09:46:27 -0400 + Processing by Admin::PagesController#edit as HTML + Parameters: {"id"=>"1"} + AdminUser Load (0.2ms) SELECT "admin_users".* FROM "admin_users" WHERE ("admin_users"."id" = 1) LIMIT 1 + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."id" = 1) LIMIT 1 +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/sidebar/_sidebar.html.erb (1.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_flash_message.html.erb (0.3ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_edit.html.erb (0.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (1.0ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_string.html.erb (0.9ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/templates/_text.html.erb (0.5ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/_form.html.erb (11.4ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_header.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_apps.html.erb (2.2ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/helpers/_login_info.html.erb (0.6ms) +Rendered /usr/local/lib/ruby/gems/1.9.1/bundler/gems/typus-e0ce90d39989/app/views/admin/resources/edit.html.erb within layouts/admin/base (98.3ms) +Completed 200 OK in 183ms (Views: 109.4ms | ActiveRecord: 1.1ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:46:59 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (2.3ms) +Completed 200 OK in 47ms (Views: 4.3ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:47:18 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.7ms) +Completed 200 OK in 20ms (Views: 7.6ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:47:32 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (6.2ms) +Completed 200 OK in 54ms (Views: 8.2ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:47:41 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.8ms) +Completed 200 OK in 21ms (Views: 8.4ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:47:42 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.2ms) +Completed 200 OK in 20ms (Views: 7.2ms | ActiveRecord: 0.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:47:53 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (6.3ms) +Completed 200 OK in 67ms (Views: 30.4ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:47:57 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 16ms (Views: 9.3ms | ActiveRecord: 0.0ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:47:57 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 13ms (Views: 7.1ms | ActiveRecord: 0.0ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:48:19 -0400 + Processing by PagesController#index as HTML + Photo Load (0.4ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (15.3ms) +Completed 200 OK in 29ms (Views: 17.2ms | ActiveRecord: 0.4ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:48:21 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.4ms) +Completed 200 OK in 20ms (Views: 7.4ms | ActiveRecord: 0.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:48:22 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 12ms (Views: 6.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:48:23 -0400 + Processing by PagesController#about as HTML + Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (6.0ms) +Completed 200 OK in 21ms (Views: 8.2ms | ActiveRecord: 0.1ms) + + +Started GET "/" for 127.0.0.1 at 2010-10-12 09:48:24 -0400 + Processing by PagesController#index as HTML + Photo Load (0.3ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 1 +Rendered pages/index.html.erb within layouts/photos (47.7ms) +Completed 200 OK in 61ms (Views: 49.6ms | ActiveRecord: 0.3ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:48:30 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.2ms) +Completed 200 OK in 21ms (Views: 7.1ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:51:25 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.4ms) +Completed 200 OK in 20ms (Views: 7.3ms | ActiveRecord: 0.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:53:29 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (38.7ms) +Completed 200 OK in 59ms (Views: 53.7ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:53:31 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.5ms) +Completed 200 OK in 21ms (Views: 7.6ms | ActiveRecord: 0.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:53:32 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 46ms (Views: 40.1ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:53:33 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.3ms) +Completed 200 OK in 20ms (Views: 7.2ms | ActiveRecord: 0.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:53:35 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.9ms) +Completed 200 OK in 45ms (Views: 7.0ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:53:37 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.2ms) +Completed 200 OK in 20ms (Views: 7.1ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:53:56 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (7.5ms) +Completed 200 OK in 55ms (Views: 9.6ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:54:36 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (38.1ms) +Completed 200 OK in 52ms (Views: 40.1ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:54:58 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.4ms) +Completed 200 OK in 20ms (Views: 7.3ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:55:05 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (6.8ms) +Completed 200 OK in 21ms (Views: 8.7ms | ActiveRecord: 0.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:55:09 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.7ms) +Completed 200 OK in 12ms (Views: 6.5ms | ActiveRecord: 0.0ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:55:11 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (6.7ms) +Completed 200 OK in 22ms (Views: 8.7ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:55:29 -0400 + Processing by PagesController#about as HTML + Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (38.0ms) +Completed 200 OK in 52ms (Views: 40.0ms | ActiveRecord: 0.1ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:55:38 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.2ms) +Completed 200 OK in 19ms (Views: 7.1ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:55:43 -0400 + Processing by PagesController#about as HTML + Page Load (0.1ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.2ms) +Completed 200 OK in 19ms (Views: 7.1ms | ActiveRecord: 0.1ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:55:49 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.7ms) +Completed 200 OK in 53ms (Views: 40.1ms | ActiveRecord: 0.2ms) + + +Started GET "/about" for 127.0.0.1 at 2010-10-12 09:56:08 -0400 + Processing by PagesController#about as HTML + Page Load (0.2ms) SELECT "pages".* FROM "pages" WHERE ("pages"."name" = 'about') LIMIT 1 +Rendered pages/about.html.erb within layouts/photos (5.6ms) +Completed 200 OK in 20ms (Views: 7.6ms | ActiveRecord: 0.2ms) + + +Started GET "/contacts/new" for 127.0.0.1 at 2010-10-12 09:56:24 -0400 + Processing by ContactsController#new as HTML +Rendered contacts/new.html.erb within layouts/photos (4.8ms) +Completed 200 OK in 12ms (Views: 6.6ms | ActiveRecord: 0.0ms) + + +Started GET "/categories" for 127.0.0.1 at 2010-10-12 09:56:33 -0400 + Processing by CategoriesController#index as HTML + Category Load (0.9ms) SELECT "categories".* FROM "categories" LIMIT 4 OFFSET 0 + SQL (0.1ms) SELECT COUNT(*) AS count_id FROM "categories" + Photo Load (0.6ms) SELECT "photos".* FROM "photos" ORDER BY RANDOM() LIMIT 2 +Rendered categories/index.html.erb within layouts/photos (24.0ms) +Completed 200 OK in 131ms (Views: 38.2ms | ActiveRecord: 1.6ms) diff --git a/public/.DS_Store b/public/.DS_Store index b9aa4cc..f818118 100644 Binary files a/public/.DS_Store and b/public/.DS_Store differ diff --git a/public/stylesheets/photos.css b/public/stylesheets/photos.css index bc4989c..109cc69 100644 --- a/public/stylesheets/photos.css +++ b/public/stylesheets/photos.css @@ -8,6 +8,13 @@ body { a { text-decoration: none; } +p a { + display: inline !important; + color: #acf; +} +p a:hover { + color: #fff; +} #page { position: absolute; top: 40%; @@ -37,7 +44,7 @@ a { padding: 0; margin: 0; position: absolute; - bottom: 15px; + bottom: 18px; right: 20px; } #footer { @@ -172,4 +179,84 @@ img { } .prev-link:hover, .next-link:hover { background: rgba(255,255,255,0.2); +} +.about-content { + background: #444; + color: #ccc; +} +.about-content div { + padding: 15px 20px; +} +.about-content div p { + margin-bottom: 0.6em; + line-height: 1.4em; +} +/* FORM */ +.contact-form { + background: #ddd; +} +.field_with_errors { + display: inline; +} +form { + padding: 10px 20px; +} +form p { + margin: 10px 0; +} +form p { + color: #555; +} +form label { + color: #666; + display: block; + width: 100px; + float: left; +} +form textarea { + height: 150px; + width: 315px; +} +form textarea, form input[type='text'] { + font-family:"Helvetica Neue","Arial","Helvatica",sans-serif; + font-size:14px; + padding: 3px; + color: #333; + border: 2px solid #999; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} +#alert { + background: #fffeef; + color: #664400; + border-width: 2px 0; + border-style: solid; + border-color: #996600; + padding: 0 10px 2px; + margin-top: 15px; +} +#notice { + background: #efffef; + color: #446600; + border-width: 2px 0; + border-style: solid; + border-color: #669900; + padding: 0 10px 2px; + margin-top: 15px; +} +.field_with_errors input, .field_with_errors textarea { + background: #ffefef; + border-color: #cc3333 !important; +} +form input[type='submit'] { + background: #666; + font-family:"Helvetica Neue","Arial","Helvatica",sans-serif; + font-size:14px; + padding: 3px; + color: white; + border: 2px solid #333; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; } \ No newline at end of file diff --git a/public/stylesheets/squaregrid.css b/public/stylesheets/squaregrid.css index bb423ca..dd07559 100644 --- a/public/stylesheets/squaregrid.css +++ b/public/stylesheets/squaregrid.css @@ -14,7 +14,7 @@ table {border-collapse:collapse; border-spacing:0;} /* tables still need 'cellsp body {background-color:#f4f4f4; font-size:62.5%; line-height:28px; /* for RTL add: 'direction: rtl;' */ } /* your main wrapping div */ -#wrapper{ margin: 0 auto; position:relative; overflow: hidden; width: 994px;background:#fff url(../images/sg_grid_sub.png) center top repeat; } +#wrapper{ margin: 0 auto; position:relative; overflow: hidden; width: 994px;background:#fff; } #container{width:1008px; /* essential */ margin-left:-7px;} /* global styling to apply to all columns */ diff --git a/test/fixtures/contacts.yml b/test/fixtures/contacts.yml new file mode 100644 index 0000000..2893341 --- /dev/null +++ b/test/fixtures/contacts.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html + +# This model initially had no columns defined. If you add columns to the +# model remove the '{}' from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/test/fixtures/pages.yml b/test/fixtures/pages.yml new file mode 100644 index 0000000..2893341 --- /dev/null +++ b/test/fixtures/pages.yml @@ -0,0 +1,11 @@ +# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html + +# This model initially had no columns defined. If you add columns to the +# model remove the '{}' from the fixture names and add the columns immediately +# below each fixture, per the syntax in the comments below +# +one: {} +# column: value +# +two: {} +# column: value diff --git a/test/functional/admin/admin_users_controller_test.rb b/test/functional/admin/admin_users_controller_test.rb new file mode 100644 index 0000000..3eca844 --- /dev/null +++ b/test/functional/admin/admin_users_controller_test.rb @@ -0,0 +1,10 @@ +require 'test_helper' + +class Admin::AdminUsersControllerTest < ActionController::TestCase + + # Replace this with your real tests. + test "the truth" do + assert true + end + +end diff --git a/test/functional/admin/pages_controller_test.rb b/test/functional/admin/pages_controller_test.rb new file mode 100644 index 0000000..f4f6598 --- /dev/null +++ b/test/functional/admin/pages_controller_test.rb @@ -0,0 +1,10 @@ +require 'test_helper' + +class Admin::PagesControllerTest < ActionController::TestCase + + # Replace this with your real tests. + test "the truth" do + assert true + end + +end diff --git a/test/functional/contacts_controller_test.rb b/test/functional/contacts_controller_test.rb new file mode 100644 index 0000000..2422ab7 --- /dev/null +++ b/test/functional/contacts_controller_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class ContactsControllerTest < ActionController::TestCase + # Replace this with your real tests. + test "the truth" do + assert true + end +end diff --git a/test/functional/notifier_test.rb b/test/functional/notifier_test.rb new file mode 100644 index 0000000..368b7aa --- /dev/null +++ b/test/functional/notifier_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class NotifierTest < ActionMailer::TestCase + # replace this with your real tests + test "the truth" do + assert true + end +end diff --git a/test/unit/contact_test.rb b/test/unit/contact_test.rb new file mode 100644 index 0000000..ee7d2ca --- /dev/null +++ b/test/unit/contact_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class ContactTest < ActiveSupport::TestCase + # Replace this with your real tests. + test "the truth" do + assert true + end +end diff --git a/test/unit/helpers/contacts_helper_test.rb b/test/unit/helpers/contacts_helper_test.rb new file mode 100644 index 0000000..c41d1ac --- /dev/null +++ b/test/unit/helpers/contacts_helper_test.rb @@ -0,0 +1,4 @@ +require 'test_helper' + +class ContactsHelperTest < ActionView::TestCase +end diff --git a/test/unit/page_test.rb b/test/unit/page_test.rb new file mode 100644 index 0000000..b12dd9a --- /dev/null +++ b/test/unit/page_test.rb @@ -0,0 +1,8 @@ +require 'test_helper' + +class PageTest < ActiveSupport::TestCase + # Replace this with your real tests. + test "the truth" do + assert true + end +end