Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
adding episode 134
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanb committed Nov 2, 2008
1 parent 9010d9e commit fa71c4a
Show file tree
Hide file tree
Showing 107 changed files with 11,376 additions and 0 deletions.
10 changes: 10 additions & 0 deletions episode-134/README
@@ -0,0 +1,10 @@
Railscasts Episode #134: Paperclip

http://railscasts.com/episodes/134


Commands

script/plugin install git://github.com/thoughtbot/paperclip.git
script/generate paperclip product photo
rake db:migrate
3 changes: 3 additions & 0 deletions episode-134/store/.gitignore
@@ -0,0 +1,3 @@
tmp/*
log/*
*.sqlite3
4 changes: 4 additions & 0 deletions episode-134/store/README
@@ -0,0 +1,4 @@
Railscasts Example Store App
--

To setup the app, just run `rake setup`.
10 changes: 10 additions & 0 deletions episode-134/store/Rakefile
@@ -0,0 +1,10 @@
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.

require(File.join(File.dirname(__FILE__), 'config', 'boot'))

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

require 'tasks/rails'
15 changes: 15 additions & 0 deletions episode-134/store/app/controllers/application.rb
@@ -0,0 +1,15 @@
# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.

class ApplicationController < ActionController::Base
helper :all # include all helpers, all the time

# See ActionController::RequestForgeryProtection for details
# Uncomment the :secret if you're not using the cookie session store
protect_from_forgery # :secret => '526292d4095d0fd8135a9aa118f5956e'

# See ActionController::Base for details
# Uncomment this to filter the contents of submitted sensitive data parameters
# from your application log (in this case, all fields with names like "password").
# filter_parameter_logging :password
end
44 changes: 44 additions & 0 deletions episode-134/store/app/controllers/categories_controller.rb
@@ -0,0 +1,44 @@
class CategoriesController < ApplicationController
def index
@categories = Category.find(:all)
end

def show
@category = Category.find(params[:id])
end

def new
@category = Category.new
end

def create
@category = Category.new(params[:category])
if @category.save
flash[:notice] = "Successfully created category."
redirect_to @category
else
render :action => 'new'
end
end

def edit
@category = Category.find(params[:id])
end

def update
@category = Category.find(params[:id])
if @category.update_attributes(params[:category])
flash[:notice] = "Successfully updated category."
redirect_to @category
else
render :action => 'edit'
end
end

def destroy
@category = Category.find(params[:id])
@category.destroy
flash[:notice] = "Successfully destroyed category."
redirect_to categories_url
end
end
44 changes: 44 additions & 0 deletions episode-134/store/app/controllers/products_controller.rb
@@ -0,0 +1,44 @@
class ProductsController < ApplicationController
def index
@products = Product.all(:limit => 10)
end

def show
@product = Product.find(params[:id])
end

def new
@product = Product.new
end

def create
@product = Product.new(params[:product])
if @product.save
flash[:notice] = "Successfully created product."
redirect_to @product
else
render :action => 'new'
end
end

def edit
@product = Product.find(params[:id])
end

def update
@product = Product.find(params[:id])
if @product.update_attributes(params[:product])
flash[:notice] = "Successfully updated product."
redirect_to @product
else
render :action => 'edit'
end
end

def destroy
@product = Product.find(params[:id])
@product.destroy
flash[:notice] = "Successfully destroyed product."
redirect_to products_url
end
end
3 changes: 3 additions & 0 deletions episode-134/store/app/helpers/application_helper.rb
@@ -0,0 +1,3 @@
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
end
2 changes: 2 additions & 0 deletions episode-134/store/app/helpers/categories_helper.rb
@@ -0,0 +1,2 @@
module CategoriesHelper
end
23 changes: 23 additions & 0 deletions episode-134/store/app/helpers/layout_helper.rb
@@ -0,0 +1,23 @@
# These helper methods can be called in your template to set variables to be used in the layout
# This module should be included in all views globally,
# to do so you may need to add this line to your ApplicationController
# helper :layout
module LayoutHelper
def title(page_title, show_title = true)
@content_for_title = page_title.to_s
@show_title = show_title
end

def show_title?
@show_title
end

def stylesheet(*args)
content_for(:head) { stylesheet_link_tag(*args.map(&:to_s)) }
end

def javascript(*args)
args = args.map { |arg| arg == :defaults ? arg : arg.to_s }
content_for(:head) { javascript_include_tag(*args) }
end
end
2 changes: 2 additions & 0 deletions episode-134/store/app/helpers/products_helper.rb
@@ -0,0 +1,2 @@
module ProductsHelper
end
3 changes: 3 additions & 0 deletions episode-134/store/app/models/category.rb
@@ -0,0 +1,3 @@
class Category < ActiveRecord::Base
has_many :products
end
7 changes: 7 additions & 0 deletions episode-134/store/app/models/product.rb
@@ -0,0 +1,7 @@
class Product < ActiveRecord::Base
belongs_to :category

has_attached_file :photo, :styles => { :small => "150x150>" },
:url => "/assets/products/:id/:style/:basename.:extension",
:path => ":rails_root/public/assets/products/:id/:style/:basename.:extension"
end
7 changes: 7 additions & 0 deletions episode-134/store/app/views/categories/_form.html.erb
@@ -0,0 +1,7 @@
<% form_for @category do |f| %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
8 changes: 8 additions & 0 deletions episode-134/store/app/views/categories/edit.html.erb
@@ -0,0 +1,8 @@
<% title "Edit Category" %>
<%= render :partial => 'form' %>

<p>
<%= link_to "Show", @category %> |
<%= link_to "View All", categories_path %>
</p>
13 changes: 13 additions & 0 deletions episode-134/store/app/views/categories/index.html.erb
@@ -0,0 +1,13 @@
<% title "Categories" %>
<% for category in @categories %>
<div class="category">
<h3><%= link_to h(category.name), category %></h3>
<div class="actions">
<%= link_to "Edit", edit_category_path(category) %> |
<%= link_to "Destroy", category, :confirm => 'Are you sure?', :method => :delete %>
</div>
</div>
<% end %>

<p><%= link_to "New Category", new_category_path %></p>
5 changes: 5 additions & 0 deletions episode-134/store/app/views/categories/new.html.erb
@@ -0,0 +1,5 @@
<% title "New Category" %>
<%= render :partial => 'form' %>

<p><%= link_to "Back to List", categories_path %></p>
13 changes: 13 additions & 0 deletions episode-134/store/app/views/categories/show.html.erb
@@ -0,0 +1,13 @@
<% title @category.name %>

<ul>
<% for product in @category.products %>
<li><%= link_to h(product.name), product %></li>
<% end %>
</ul>

<p>
<%= link_to "Edit", edit_category_path(@category) %> |
<%= link_to "Destroy", @category, :confirm => 'Are you sure?', :method => :delete %> |
<%= link_to "View All", categories_path %>
</p>
22 changes: 22 additions & 0 deletions episode-134/store/app/views/layouts/application.html.erb
@@ -0,0 +1,22 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title><%= h(yield(:title) || "Untitled") %></title>
<%= stylesheet_link_tag 'application' %>
<%= yield(:head) %>
</head>
<body>
<div id="container">
<%- flash.each do |name, msg| -%>
<%= content_tag :div, msg, :id => "flash_#{name}" %>
<%- end -%>
<%- if show_title? -%>
<h1><%=h yield(:title) %></h1>
<%- end -%>
<%= yield %>
</div>
</body>
</html>
22 changes: 22 additions & 0 deletions episode-134/store/app/views/products/_form.html.erb
@@ -0,0 +1,22 @@
<% form_for @product, :html => { :multipart => true } do |f| %>
<p>
<%= f.label :category_id %><br />
<%= f.collection_select :category_id, Category.all, :id, :name %>
</p>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :price %><br />
<%= f.text_field :price %>
</p>
<p>
<%= f.label :description %><br />
<%= f.text_area :description, :rows => 10 %>
</p>
<p>
<%= f.file_field :photo %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
8 changes: 8 additions & 0 deletions episode-134/store/app/views/products/edit.html.erb
@@ -0,0 +1,8 @@
<% title "Edit Product" %>
<%= render :partial => 'form' %>

<p>
<%= link_to "Show", @product %> |
<%= link_to "View All", products_path %>
</p>
16 changes: 16 additions & 0 deletions episode-134/store/app/views/products/index.html.erb
@@ -0,0 +1,16 @@
<% title "Products" %>
<% for product in @products %>
<div class="product">
<h3>
<%= link_to h(product.name), product %>
<%= number_to_currency(product.price) %>
</h3>
<div class="actions">
<%= link_to "Edit", edit_product_path(product) %> |
<%= link_to "Destroy", product, :confirm => 'Are you sure?', :method => :delete %>
</div>
</div>
<% end %>

<p><%= link_to "New Product", new_product_path %></p>
5 changes: 5 additions & 0 deletions episode-134/store/app/views/products/new.html.erb
@@ -0,0 +1,5 @@
<% title "New Product" %>
<%= render :partial => 'form' %>

<p><%= link_to "Back to List", products_path %></p>
23 changes: 23 additions & 0 deletions episode-134/store/app/views/products/show.html.erb
@@ -0,0 +1,23 @@
<% title @product.name %>
<%= image_tag @product.photo.url(:small) %>
<%= simple_format h(@product.description) %>

<p>
<strong>Price:</strong>
<%= number_to_currency @product.price %>
</p>

<% unless @product.category.nil? %>
<p>
<strong>Category:</strong>
<%= link_to h(@product.category.name), @product.category %>
</p>
<% end %>

<p>
<%= link_to "Edit", edit_product_path(@product) %> |
<%= link_to "Destroy", @product, :confirm => 'Are you sure?', :method => :delete %> |
<%= link_to "View All", products_path %>
</p>

0 comments on commit fa71c4a

Please sign in to comment.