Skip to content

Commit

Permalink
automatic import from ryanb/railscasts-episodes
Browse files Browse the repository at this point in the history
  • Loading branch information
gilesbowkett committed Jul 29, 2011
0 parents commit 921c27f
Show file tree
Hide file tree
Showing 74 changed files with 8,560 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README
@@ -0,0 +1,3 @@
Railscasts Episode #207: Syntax Highlighting

http://railscasts.com/episodes/207
3 changes: 3 additions & 0 deletions blog/.gitignore
@@ -0,0 +1,3 @@
tmp/*
log/*
*.sqlite3
4 changes: 4 additions & 0 deletions blog/README
@@ -0,0 +1,4 @@
Railscasts Example Blog App
--

To setup the app, just run `rake setup`.
10 changes: 10 additions & 0 deletions blog/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 blog/app/controllers/application_controller.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 => '9346baedc099926e71cc3a3f39613aa6'

# 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
45 changes: 45 additions & 0 deletions blog/app/controllers/articles_controller.rb
@@ -0,0 +1,45 @@
class ArticlesController < ApplicationController
def index
@articles = Article.find(:all)
end

def show
@article = Article.find(params[:id])
@comment = Comment.new(:article => @article)
end

def new
@article = Article.new
end

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

def edit
@article = Article.find(params[:id])
end

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

def destroy
@article = Article.find(params[:id])
@article.destroy
flash[:notice] = "Successfully destroyed article."
redirect_to articles_url
end
end
36 changes: 36 additions & 0 deletions blog/app/controllers/comments_controller.rb
@@ -0,0 +1,36 @@
class CommentsController < ApplicationController
def new
@comment = Comment.new
end

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

def edit
@comment = Comment.find(params[:id])
end

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

def destroy
@comment = Comment.find(params[:id])
@comment.destroy
flash[:notice] = "Successfully destroyed comment."
redirect_to article_url(@comment.article_id)
end
end
8 changes: 8 additions & 0 deletions blog/app/helpers/application_helper.rb
@@ -0,0 +1,8 @@
# Methods added to this helper will be available to all templates in the application.
module ApplicationHelper
def coderay(text)
text.gsub(/\<code( lang="(.+?)")?\>(.+?)\<\/code\>/m) do
content_tag("notextile", CodeRay.scan($3, $2).div(:css => :class))
end
end
end
2 changes: 2 additions & 0 deletions blog/app/helpers/articles_helper.rb
@@ -0,0 +1,2 @@
module ArticlesHelper
end
2 changes: 2 additions & 0 deletions blog/app/helpers/comments_helper.rb
@@ -0,0 +1,2 @@
module CommentsHelper
end
23 changes: 23 additions & 0 deletions blog/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
4 changes: 4 additions & 0 deletions blog/app/models/article.rb
@@ -0,0 +1,4 @@
class Article < ActiveRecord::Base
has_many :comments, :dependent => :destroy
validates_presence_of :name, :content
end
4 changes: 4 additions & 0 deletions blog/app/models/comment.rb
@@ -0,0 +1,4 @@
class Comment < ActiveRecord::Base
belongs_to :article
validates_presence_of :author_name, :content
end
16 changes: 16 additions & 0 deletions blog/app/views/articles/_form.html.erb
@@ -0,0 +1,16 @@
<%= error_messages_for :article %>
<% form_for @article do |f| %>
<p>
<%= f.label :name %><br />
<%= f.text_field :name %>
</p>
<p>
<%= f.label :content %><br />
<%= f.text_area :content %>
</p>
<p>
<%= f.label :author_name %><br />
<%= f.text_field :author_name %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
8 changes: 8 additions & 0 deletions blog/app/views/articles/edit.html.erb
@@ -0,0 +1,8 @@
<% title "Edit Article" %>
<%= render :partial => 'form' %>

<p>
<%= link_to "Show", @article %> |
<%= link_to "View All", articles_path %>
</p>
12 changes: 12 additions & 0 deletions blog/app/views/articles/index.html.erb
@@ -0,0 +1,12 @@
<% title "Articles" %>

<div id="articles">
<% for article in @articles %>
<h2>
<%= link_to h(article.name), article %>
<span class="comments">(<%= pluralize(article.comments.size, 'comment') %>)</span>
</h2>
<div class="author">from <%=h article.author_name %> on <%= article.created_at.strftime('%b %d, %Y') %></div>
<div class="content"><%= article.content %></div>
<% end %>
</div>
5 changes: 5 additions & 0 deletions blog/app/views/articles/new.html.erb
@@ -0,0 +1,5 @@
<% title "New Article" %>
<%= render :partial => 'form' %>

<p><%= link_to "Back to List", articles_path %></p>
27 changes: 27 additions & 0 deletions blog/app/views/articles/show.html.erb
@@ -0,0 +1,27 @@
<% title @article.name %>

<p class="author"><em>from <%=h @article.author_name %></em></p>

<%= textilize(coderay(@article.content)) %>

<p>
<%= link_to "Edit", edit_article_path(@article) %> |
<%= link_to "Back to Articles", articles_path %>
</p>

<% unless @article.comments.empty? %>
<h2><%= pluralize(@article.comments.size, 'comment') %></h2>

<div id="comments">
<% for comment in @article.comments %>
<div class="comment">
<strong><%= link_to_unless comment.site_url.blank?, h(comment.author_name), h(comment.site_url) %></strong>
<em>on <%= comment.created_at.strftime('%b %d, %Y at %H:%M') %></em>
<%=simple_format comment.content %>
</div>
<% end %>
</div>
<% end %>

<h3>Add your comment:</h3>
<%= render :partial => 'comments/form' %>
17 changes: 17 additions & 0 deletions blog/app/views/comments/_form.html.erb
@@ -0,0 +1,17 @@
<%= error_messages_for :comment %>
<% form_for @comment do |f| %>
<%= f.hidden_field :article_id %>
<p>
<%= f.label :author_name, 'Name' %><br />
<%= f.text_field :author_name %>
</p>
<p>
<%= f.label :site_url, 'Website URL' %><br />
<%= f.text_field :site_url %>
</p>
<p>
<%= f.label :content, 'Comment' %><br />
<%= f.text_area :content, :rows => '12', :cols => 35 %>
</p>
<p><%= f.submit "Submit" %></p>
<% end %>
4 changes: 4 additions & 0 deletions blog/app/views/comments/edit.html.erb
@@ -0,0 +1,4 @@
<% title "Edit Comment" %>
<%= render :partial => 'form' %>

4 changes: 4 additions & 0 deletions blog/app/views/comments/new.html.erb
@@ -0,0 +1,4 @@
<% title "New Comment" %>
<%= render :partial => 'form' %>

22 changes: 22 additions & 0 deletions blog/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", "coderay" %>
<%= 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>

0 comments on commit 921c27f

Please sign in to comment.