Skip to content

Commit d5e2092

Browse files
committed
Initial commit
0 parents  commit d5e2092

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

89 files changed

+8494
-0
lines changed

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
db/*.sqlite3
2+
log/*.log
3+
tmp/**/*
4+
vendor/**/*

Gemfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Edit this Gemfile to bundle your application's dependencies.
2+
3+
## Bundle edge rails:
4+
directory "vendor/rails", :glob => "{*/,}*.gemspec"
5+
gem "rails", "3.0.pre"
6+
git "git://github.com/rails/arel.git"
7+
git "git://github.com/rails/rack.git"
8+
9+
## Bundle the gems you use:
10+
# gem "bj"
11+
# gem "hpricot", "0.6"
12+
# gem "sqlite3-ruby", :require_as => "sqlite3"
13+
# gem "aws-s3", :require_as => "aws/s3"
14+
15+
## Bundle gems used only in certain environments:
16+
# gem "rspec", :only => :test
17+
# only :test do
18+
# gem "webrat"
19+
# end

Rakefile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Add your own tasks in files placed in lib/tasks ending in .rake,
2+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
3+
4+
require File.expand_path('../config/application', __FILE__)
5+
6+
require 'rake'
7+
require 'rake/testtask'
8+
require 'rake/rdoctask'
9+
10+
Blog::Application.load_tasks
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class ApplicationController < ActionController::Base
2+
protect_from_forgery
3+
filter_parameter_logging :password
4+
end
+49
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
class CommentsController < ApplicationController
2+
before_filter :find_post
3+
4+
def index
5+
@comments = @post.comments
6+
end
7+
8+
def show
9+
@comment = @post.comments.find(params[:id])
10+
end
11+
12+
def new
13+
@comment = @post.comments.build
14+
end
15+
16+
def create
17+
@comment = @post.comments.build(params[:comment])
18+
if @comment.save
19+
redirect_to post_comment_url(@post, @comment)
20+
else
21+
render :action => "new"
22+
end
23+
end
24+
25+
def edit
26+
@comment = @post.comments.find(params[:id])
27+
end
28+
29+
def update
30+
@comment = Comment.find(params[:id])
31+
if @comment.update_attributes(params[:comment])
32+
redirect_to post_comment_url(@post, @comment)
33+
else
34+
render :action => "edit"
35+
end
36+
end
37+
38+
def destroy
39+
@comment = Comment.find(params[:id])
40+
@comment.destroy
41+
redirect_to post_comments_path(@post)
42+
end
43+
44+
private
45+
def find_post
46+
@post = Post.find(params[:post_id])
47+
end
48+
49+
end

app/controllers/home_controller.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class HomeController < ApplicationController
2+
def index
3+
end
4+
5+
end

app/controllers/posts_controller.rb

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
class PostsController < ApplicationController
2+
before_filter :find_post,
3+
:only => [:show, :edit, :update, :destroy]
4+
# GET /posts
5+
# GET /posts.xml
6+
def index
7+
@posts = Post.all
8+
9+
respond_to do |format|
10+
format.html # index.html.erb
11+
format.xml { render :xml => @posts }
12+
end
13+
end
14+
15+
# GET /posts/1
16+
# GET /posts/1.xml
17+
def show
18+
19+
respond_to do |format|
20+
format.html # show.html.erb
21+
format.xml { render :xml => @post }
22+
end
23+
end
24+
25+
# GET /posts/new
26+
# GET /posts/new.xml
27+
def new
28+
@post = Post.new
29+
30+
respond_to do |format|
31+
format.html # new.html.erb
32+
format.xml { render :xml => @post }
33+
end
34+
end
35+
36+
# GET /posts/1/edit
37+
def edit
38+
end
39+
40+
# POST /posts
41+
# POST /posts.xml
42+
def create
43+
@post = Post.new(params[:post])
44+
45+
respond_to do |format|
46+
if @post.save
47+
format.html { redirect_to(@post, :notice => 'Post was successfully created.') }
48+
format.xml { render :xml => @post, :status => :created, :location => @post }
49+
else
50+
format.html { render :action => "new" }
51+
format.xml { render :xml => @post.errors, :status => :unprocessable_entity }
52+
end
53+
end
54+
end
55+
56+
# PUT /posts/1
57+
# PUT /posts/1.xml
58+
def update
59+
respond_to do |format|
60+
if @post.update_attributes(params[:post])
61+
format.html { redirect_to(@post, :notice => 'Post was successfully updated.') }
62+
format.xml { head :ok }
63+
else
64+
format.html { render :action => "edit" }
65+
format.xml { render :xml => @post.errors, :status => :unprocessable_entity }
66+
end
67+
end
68+
end
69+
70+
# DELETE /posts/1
71+
# DELETE /posts/1.xml
72+
def destroy
73+
@post.destroy
74+
75+
respond_to do |format|
76+
format.html { redirect_to(posts_url) }
77+
format.xml { head :ok }
78+
end
79+
end
80+
81+
private
82+
def find_post
83+
@post = Post.find(params[:id])
84+
end
85+
end

app/helpers/application_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module ApplicationHelper
2+
end

app/helpers/comments_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module CommentsHelper
2+
end

app/helpers/home_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module HomeHelper
2+
end

app/helpers/posts_helper.rb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
module PostsHelper
2+
end

app/models/comment.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class Comment < ActiveRecord::Base
2+
belongs_to :post
3+
end

app/models/post.rb

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
class Post < ActiveRecord::Base
2+
validates :name, :presence => true
3+
validates :title, :presence => true,
4+
:length => { :minimum => 5 }
5+
has_many :comments
6+
has_many :tags
7+
8+
accepts_nested_attributes_for :tags, :allow_destroy => :true,
9+
:reject_if => proc { |attrs| attrs.all? { |k, v| v.blank? } }
10+
end

app/models/tag.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
class Tag < ActiveRecord::Base
2+
belongs_to :post
3+
end

app/views/comments/_form.html.erb

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<% form_for([@post, @comment]) do |f| %>
2+
<%= f.error_messages %>
3+
4+
<div class="field">
5+
<%= f.label :commenter %><br />
6+
<%= f.text_field :commenter %>
7+
</div>
8+
<div class="field">
9+
<%= f.label :body %><br />
10+
<%= f.text_area :body %>
11+
</div>
12+
<div class="actions">
13+
<%= f.submit %>
14+
</div>
15+
<% end %>

app/views/comments/edit.html.erb

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<h1>Editing comment</h1>
2+
3+
<%= render 'form' %>
4+
5+
<%= link_to 'Show', post_comment_path(@post, @comment) %> |
6+
<%= link_to 'Back', post_comments_path(@post) %>

app/views/comments/index.html.erb

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<h1>Comments for <%= @post.title %></h1>
2+
3+
<table>
4+
<tr>
5+
<th>Commenter</th>
6+
<th>Body</th>
7+
<th></th>
8+
<th></th>
9+
<th></th>
10+
</tr>
11+
12+
<% @comments.each do |comment| %>
13+
<tr>
14+
<td><%= comment.commenter %></td>
15+
<td><%= comment.body %></td>
16+
<td><%= link_to 'Show', post_comment_path(@post, comment) %></td>
17+
<td><%= link_to 'Edit', edit_post_comment_path(@post, comment) %></td>
18+
<td><%= link_to 'Destroy', post_comment_path(@post, comment),
19+
:confirm => 'Are you sure?', :method => :delete %></td>
20+
</tr>
21+
<% end %>
22+
</table>
23+
24+
<br />
25+
26+
<%= link_to 'New comment', new_post_comment_path(@post) %>
27+
<%= link_to 'Back to Post', @post %>

app/views/comments/new.html.erb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<h1>New comment</h1>
2+
3+
<%= render 'form' %>
4+
5+
<%= link_to 'Back', post_comments_path(@post) %>

app/views/comments/show.html.erb

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<h1>Comment on <%= @post.title %></h1>
2+
3+
<p>
4+
<b>Commenter:</b>
5+
<%= @comment.commenter %>
6+
</p>
7+
8+
<p>
9+
<b>Comment:</b>
10+
<%= @comment.body %>
11+
</p>
12+
13+
<%= link_to 'Edit', edit_post_comment_path(@post, @comment) %> |
14+
<%= link_to 'Back', post_comments_path(@post) %>

app/views/home/index.html.erb

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<h1>Hello, Rails!</h1>
2+
<%= link_to "My Blog", posts_path %>

app/views/layouts/posts.html.erb

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Posts: <%= controller.action_name %></title>
5+
<%= stylesheet_link_tag 'scaffold' %>
6+
</head>
7+
<body style="background: #EEEEEE;">
8+
9+
<p class="notice"><%= notice %></p>
10+
11+
<%= yield %>
12+
13+
</body>
14+
</html>

app/views/posts/_form.html.erb

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<% @post.tags.build if @post.tags.empty? %>
2+
<% form_for(@post) do |post_form| %>
3+
<%= post_form.error_messages %>
4+
5+
<div class="field">
6+
<%= post_form.label :name %><br />
7+
<%= post_form.text_field :name %>
8+
</div>
9+
<div class="field">
10+
<%= post_form.label :title %><br />
11+
<%= post_form.text_field :title %>
12+
</div>
13+
<div class="field">
14+
<%= post_form.label :content %><br />
15+
<%= post_form.text_area :content %>
16+
</div>
17+
<h2>Tags</h2>
18+
<% post_form.fields_for :tags do |tag_form| %>
19+
<div class="field">
20+
<%= tag_form.label :name, 'Tag:' %>
21+
<%= tag_form.text_field :name %>
22+
</div>
23+
<% unless tag_form.object.nil? || tag_form.object.new_record? %>
24+
<div class="field">
25+
<%= tag_form.label :_delete, 'Remove:' %>
26+
<%= tag_form.check_box :_delete %>
27+
</div>
28+
<% end %>
29+
<% end %>
30+
31+
<div class="actions">
32+
<%= post_form.submit %>
33+
</div>
34+
<% end %>

app/views/posts/edit.html.erb

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<h1>Editing post</h1>
2+
3+
<%= render 'form' %>
4+
5+
<%= link_to 'Show', @post %> |
6+
<%= link_to 'Back', posts_path %>

app/views/posts/index.html.erb

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<h1>Listing posts</h1>
2+
3+
<table>
4+
<tr>
5+
<th>Name</th>
6+
<th>Title</th>
7+
<th>Content</th>
8+
<th></th>
9+
<th></th>
10+
<th></th>
11+
</tr>
12+
13+
<% @posts.each do |post| %>
14+
<tr>
15+
<td><%= post.name %></td>
16+
<td><%= post.title %></td>
17+
<td><%= post.content %></td>
18+
<td><%= link_to 'Show', post %></td>
19+
<td><%= link_to 'Edit', edit_post_path(post) %></td>
20+
<td><%= link_to 'Destroy', post, :confirm => 'Are you sure?', :method => :delete %></td>
21+
</tr>
22+
<% end %>
23+
</table>
24+
25+
<br />
26+
27+
<%= link_to 'New post', new_post_path %>

app/views/posts/new.html.erb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<h1>New post</h1>
2+
3+
<%= render 'form' %>
4+
5+
<%= link_to 'Back', posts_path %>

0 commit comments

Comments
 (0)