Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 4919

Show
Ignore:
Timestamp:
09/03/06 18:34:28 (2 years ago)
Author:
david
Message:

Nitpick updates

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionpack/lib/action_pack/version.rb

    r4183 r4919  
    33    MAJOR = 1 
    44    MINOR = 12 
    5     TINY  = 1 
     5    TINY  = 5 
    66     
    77    STRING = [MAJOR, MINOR, TINY].join('.') 
  • trunk/actionpack/MIT-LICENSE

    r4 r4919  
    1 Copyright (c) 2004 David Heinemeier Hansson 
     1Copyright (c) 2004-2006 David Heinemeier Hansson 
    22 
    33Permission is hereby granted, free of charge, to any person obtaining 
  • trunk/actionpack/README

    r4906 r4919  
    3535 
    3636    BlogController < ActionController::Base 
    37       def display 
     37      def show 
    3838        @customer = find_customer 
    3939      end 
     
    101101      after_filter LocalizeFilter 
    102102       
    103       def list 
     103      def index 
    104104        # Before this action is run, the user will be authenticated, the cache 
    105105        # will be examined to see if a valid copy of the results already 
     
    299299* Scaffolding for Active Record model objects 
    300300 
    301     require 'account' # must be an Active Record class 
    302301    class AccountController < ActionController::Base 
    303302      scaffold :account 
     
    342341     
    343342    class WeblogController < ActionController::Base 
    344       def sav
     343      def creat
    345344        post = Post.create(params[:post]) 
    346345        redirect_to :action => "display", :id => post.id 
     
    351350 
    352351 
    353 * Runs on top of WEBrick, CGI, FCGI, and mod_ruby 
    354  
    355  
    356 == Simple example 
     352* Runs on top of WEBrick, Mongrel, CGI, FCGI, and mod_ruby 
     353 
     354 
     355== Simple example (from outside of Rails) 
    357356 
    358357This example will implement a simple weblog system using inline templates and 
     
    432431#!/usr/local/env ruby, if your Ruby is not placed in /usr/local/bin/ruby 
    433432 
     433Also note that these examples are all for demonstrating using Action Pack on 
     434its own. Not for when it's used inside of Rails. 
    434435 
    435436== Download 
     
    460461== Support 
    461462 
    462 The Action Pack homepage is http://www.rubyonrails.com. You can find 
     463The Action Pack homepage is http://www.rubyonrails.org. You can find 
    463464the Action Pack RubyForge page at http://rubyforge.org/projects/actionpack. 
    464465And as Jim from Rake says: 
     
    467468   remember to update the corresponding unit tests.  If fact, I prefer 
    468469   new feature to be submitted in the form of new unit tests. 
    469  
    470 For other information, feel free to ask on the ruby-talk mailing list (which 
    471 is mirrored to comp.lang.ruby) or contact mailto:david@loudthinking.com.