Skip to content

Commit

Permalink
Bug 9: Installed Rails 2.0, disabled comments, reviews, and pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
benwbrum committed Feb 18, 2008
1 parent d18ef88 commit 6ac5122
Show file tree
Hide file tree
Showing 42 changed files with 6,273 additions and 2,605 deletions.
239 changes: 126 additions & 113 deletions README
Original file line number Diff line number Diff line change
@@ -1,190 +1,203 @@
== Welcome to Rails

Rails is a web-application and persistance framework that includes everything
Rails is a web-application and persistence framework that includes everything
needed to create database-backed web-applications according to the
Model-View-Control pattern of separation. This pattern splits the view (also
called the presentation) into "dumb" templates that are primarily responsible
for inserting pre-build data in between HTML tags. The model contains the
for inserting pre-built data in between HTML tags. The model contains the
"smart" domain objects (such as Account, Product, Person, Post) that holds all
the business logic and knows how to persist themselves to a database. The
controller handles the incoming requests (such as Save New Account, Update
Product, Show Post) by manipulating the model and directing data to the view.

In Rails, the model is handled by what's called a object-relational mapping
In Rails, the model is handled by what's called an object-relational mapping
layer entitled Active Record. This layer allows you to present the data from
database rows as objects and embellish these data objects with business logic
methods. You can read more about Active Record in
methods. You can read more about Active Record in
link:files/vendor/rails/activerecord/README.html.

The controller and view is handled by the Action Pack, which handles both
The controller and view are handled by the Action Pack, which handles both
layers by its two parts: Action View and Action Controller. These two layers
are bundled in a single package due to their heavy interdependence. This is
unlike the relationship between the Active Record and Action Pack that is much
more separate. Each of these packages can be used independently outside of
Rails. You can read more about Action Pack in
Rails. You can read more about Action Pack in
link:files/vendor/rails/actionpack/README.html.


== Requirements

* Database and driver (MySQL, PostgreSQL, or SQLite)
* Rake[http://rake.rubyforge.org] for running tests and the generating documentation

== Optionals

* Apache 1.3.x or 2.x or lighttpd 1.3.11+ (or any FastCGI-capable webserver with a
mod_rewrite-like module)
* FastCGI (or mod_ruby) for better performance on Apache

== Getting started

1. Run the WEBrick servlet: <tt>ruby script/server</tt>
(run with --help for options)
2. Go to http://localhost:3000/ and get "Congratulations, you've put Ruby on Rails!"
3. Follow the guidelines on the "Congratulations, you've put Ruby on Rails!" screen


== Example for Apache conf

<VirtualHost *:80>
ServerName rails
DocumentRoot /path/application/public/
ErrorLog /path/application/log/server.log

<Directory /path/application/public/>
Options ExecCGI FollowSymLinks
AllowOverride all
Allow from all
Order allow,deny
</Directory>
</VirtualHost>

NOTE: Be sure that CGIs can be executed in that directory as well. So ExecCGI
should be on and ".cgi" should respond. All requests from 127.0.0.1 goes
through CGI, so no Apache restart is necessary for changes. All other requests
goes through FCGI (or mod_ruby) that requires restart to show changes.


== Example for lighttpd conf (with FastCGI)

server.port = 8080
server.bind = "127.0.0.1"
# server.event-handler = "freebsd-kqueue" # needed on OS X

server.modules = ( "mod_rewrite", "mod_fastcgi" )

url.rewrite = ( "^/$" => "index.html", "^([^.]+)$" => "$1.html" )
server.error-handler-404 = "/dispatch.fcgi"

server.document-root = "/path/application/public"
server.errorlog = "/path/application/log/server.log"

fastcgi.server = ( ".fcgi" =>
( "localhost" =>
(
"min-procs" => 1,
"max-procs" => 5,
"socket" => "/tmp/application.fcgi.socket",
"bin-path" => "/path/application/public/dispatch.fcgi",
"bin-environment" => ( "RAILS_ENV" => "development" )
)
)
)

== Getting Started

1. At the command prompt, start a new Rails application using the <tt>rails</tt> command
and your application name. Ex: rails myapp
(If you've downloaded Rails in a complete tgz or zip, this step is already done)
2. Change directory into myapp and start the web server: <tt>script/server</tt> (run with --help for options)
3. Go to http://localhost:3000/ and get "Welcome aboard: You’re riding the Rails!"
4. Follow the guidelines to start developing your application


== Web Servers

By default, Rails will try to use Mongrel and lighttpd if they are installed, otherwise
Rails will use WEBrick, the webserver that ships with Ruby. When you run script/server,
Rails will check if Mongrel exists, then lighttpd and finally fall back to WEBrick. This ensures
that you can always get up and running quickly.

Mongrel is a Ruby-based webserver with a C component (which requires compilation) that is
suitable for development and deployment of Rails applications. If you have Ruby Gems installed,
getting up and running with mongrel is as easy as: <tt>gem install mongrel</tt>.
More info at: http://mongrel.rubyforge.org

If Mongrel is not installed, Rails will look for lighttpd. It's considerably faster than
Mongrel and WEBrick and also suited for production use, but requires additional
installation and currently only works well on OS X/Unix (Windows users are encouraged
to start with Mongrel). We recommend version 1.4.11 and higher. You can download it from
http://www.lighttpd.net.

And finally, if neither Mongrel or lighttpd are installed, Rails will use the built-in Ruby
web server, WEBrick. WEBrick is a small Ruby web server suitable for development, but not
for production.

But of course its also possible to run Rails on any platform that supports FCGI.
Apache, LiteSpeed, IIS are just a few. For more information on FCGI,
please visit: http://wiki.rubyonrails.com/rails/pages/FastCGI


== Debugging Rails

Have "tail -f" commands running on both the server.log, production.log, and
test.log files. Rails will automatically display debugging and runtime
information to these files. Debugging info will also be shown in the browser
on requests from 127.0.0.1.
Sometimes your application goes wrong. Fortunately there are a lot of tools that
will help you debug it and get it back on the rails.

First area to check is the application log files. Have "tail -f" commands running
on the server.log and development.log. Rails will automatically display debugging
and runtime information to these files. Debugging info will also be shown in the
browser on requests from 127.0.0.1.

You can also log your own messages directly into the log file from your code using
the Ruby logger class from inside your controllers. Example:

class WeblogController < ActionController::Base
def destroy
@weblog = Weblog.find(params[:id])
@weblog.destroy
logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
end
end

The result will be a message in your log file along the lines of:

== Breakpoints
Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1

Breakpoint support is available through the script/breakpointer client. This
means that you can break out of execution at any point in the code, investigate
and change the model, AND then resume execution! Example:
More information on how to use the logger is at http://www.ruby-doc.org/core/

Also, Ruby documentation can be found at http://www.ruby-lang.org/ including:

* The Learning Ruby (Pickaxe) Book: http://www.ruby-doc.org/docs/ProgrammingRuby/
* Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)

These two online (and free) books will bring you up to speed on the Ruby language
and also on programming in general.


== Debugger

Debugger support is available through the debugger command when you start your Mongrel or
Webrick server with --debugger. This means that you can break out of execution at any point
in the code, investigate and change the model, AND then resume execution! Example:

class WeblogController < ActionController::Base
def index
@posts = Post.find_all
breakpoint "Breaking out from the list"
@posts = Post.find(:all)
debugger
end
end

So the controller will accept the action, run the first line, then present you
with a IRB prompt in the breakpointer window. Here you can do things like:

Executing breakpoint "Breaking out from the list" at .../webrick_server.rb:16 in 'breakpoint'
So the controller will accept the action, run the first line, then present you
with a IRB prompt in the server window. Here you can do things like:

>> @posts.inspect
=> "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
=> "[#<Post:0x14a6be8 @attributes={\"title\"=>nil, \"body\"=>nil, \"id\"=>\"1\"}>,
#<Post:0x14a6620 @attributes={\"title\"=>\"Rails you know!\", \"body\"=>\"Only ten..\", \"id\"=>\"2\"}>]"
>> @posts.first.title = "hello from a breakpoint"
=> "hello from a breakpoint"
>> @posts.first.title = "hello from a debugger"
=> "hello from a debugger"

...and even better is that you can examine how your runtime objects actually work:

>> f = @posts.first
>> f = @posts.first
=> #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
>> f.
Display all 152 possibilities? (y or n)

Finally, when you're ready to resume execution, you press CTRL-D
Finally, when you're ready to resume execution, you enter "cont"


== Console

You can interact with the domain model by starting the console through script/console.
You can interact with the domain model by starting the console through <tt>script/console</tt>.
Here you'll have all parts of the application configured, just like it is when the
application is running. You can inspect domain models, change values, and save to the
database. Start the script without arguments will launch it in the development environment.
Passing an argument will specify a different environment, like <tt>console production</tt>.
database. Starting the script without arguments will launch it in the development environment.
Passing an argument will specify a different environment, like <tt>script/console production</tt>.

To reload your controllers and models after launching the console run <tt>reload!</tt>


== Description of contents
== Description of Contents

app
Holds all the code that's specific to this particular application.

app/controllers
Holds controllers that should be named like weblog_controller.rb for
automated URL mapping. All controllers should descend from
ActionController::Base.
Holds controllers that should be named like weblogs_controller.rb for
automated URL mapping. All controllers should descend from ApplicationController
which itself descends from ActionController::Base.

app/models
Holds models that should be named like post.rb.
Most models will descent from ActiveRecord::Base.
Most models will descend from ActiveRecord::Base.

app/views
Holds the template files for the view that should be named like
weblog/index.rhtml for the WeblogController#index action. All views uses eRuby
syntax. This directory can also be used to keep stylesheets, images, and so on
that can be symlinked to public.

weblogs/index.erb for the WeblogsController#index action. All views use eRuby
syntax.

app/views/layouts
Holds the template files for layouts to be used with views. This models the common
header/footer method of wrapping views. In your views, define a layout using the
<tt>layout :default</tt> and create a file named default.erb. Inside default.erb,
call <% yield %> to render the view using this layout.

app/helpers
Holds view helpers that should be named like weblog_helper.rb.
Holds view helpers that should be named like weblogs_helper.rb. These are generated
for you automatically when using script/generate for controllers. Helpers can be used to
wrap functionality for your views into methods.

config
Configuration files for the Rails environment, the routing map, the database, and other dependencies.

components
Self-contained mini-applications that can bundle controllers, models, and views together.
db
Contains the database schema in schema.rb. db/migrate contains all
the sequence of Migrations for your schema.

doc
This directory is where your application documentation will be stored when generated
using <tt>rake doc:app</tt>

lib
Application specific libraries. Basically, any kind of custom code that doesn't
belong controllers, models, or helpers. This directory is in the load path.
belong under controllers, models, or helpers. This directory is in the load path.

public
The directory available for the web server. Contains sub-directories for images, stylesheets,
and javascripts. Also contains the dispatchers and the default HTML files.
The directory available for the web server. Contains subdirectories for images, stylesheets,
and javascripts. Also contains the dispatchers and the default HTML files. This should be
set as the DOCUMENT_ROOT of your web server.

script
Helper scripts for automation and generation.

test
Unit and functional tests along with fixtures.
Unit and functional tests along with fixtures. When using the script/generate scripts, template
test files will be generated for you and placed in this directory.

vendor
External libraries that the application depend on. This directory is in the load path.
External libraries that the application depends on. Also includes the plugins subdirectory.
This directory is in the load path.
4 changes: 2 additions & 2 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Add your own tasks in files placed in lib/tasks ending in .rake,
# for example lib/tasks/switchtower.rake, and they will automatically be available to 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'
require 'tasks/rails'
7 changes: 6 additions & 1 deletion app/controllers/application.rb
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# Filters added to this controller will be run for all controllers in the application.
# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.
require_dependency "login_system"

class ApplicationController < ActionController::Base
helper :all # include all helpers, all the time
include AuthenticatedSystem
before_filter :load_objects_from_params
before_filter :set_current_user_in_model

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


def load_objects_from_params

Expand Down
14 changes: 10 additions & 4 deletions app/controllers/display_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@ class DisplayController < ApplicationController
public :render_to_string

def read_work
@page_pages, @pages = paginate(:pages,
{ :per_page => 5,
:conditions => "work_id = #{@work.id}",
:order => 'position' })
# disabling for v2.0 upgrade
# @page_pages, @pages = paginate(:pages,
# { :per_page => 5,
# :conditions => "work_id = #{@work.id}",
# :order => 'position' })
@pages = @work.pages;




# articles = []
# @pages.each { |page| articles += page.articles }
# articles.uniq!
Expand Down
6 changes: 0 additions & 6 deletions app/views/display/display_page.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,12 @@
<% end %>
</div>

<div class="inside-column">
<%= restful_annotations_for @page %>
</div>
</div>
</div>


<div class="right-column">
<%= render :partial => '/shared/zoom_div' %>
<div class="inside-column">
<%= restful_reviews_for @page %>
</div>
</div>

</div>
Loading

0 comments on commit 6ac5122

Please sign in to comment.