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

Changeset 799

Show
Ignore:
Timestamp:
02/25/05 22:07:50 (3 years ago)
Author:
david
Message:

Tagged the 0.10.0 release

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • tags/rel_0-10-0/actionpack/lib/action_view/helpers/date_helper.rb

    r695 r799  
    222222        date     = options[:include_blank] ? (value || 0) : (value || Date.today) 
    223223 
    224         date_select = "" 
    225          
    226         if options[:month_before_year] # For backwards compatibility 
    227           options[:order] = [:month, :year, :day] 
    228         end 
    229  
     224        date_select = ""         
     225        options[:order]   = [:month, :year, :day] if options[:month_before_year] # For backwards compatibility 
    230226        options[:order] ||= [:year, :month, :day] 
    231227 
  • tags/rel_0-10-0/actionwebservice/Rakefile

    r795 r799  
    8686desc "Publish the API documentation" 
    8787task :pdoc => [:rdoc] do  
    88   Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/as", "doc").upload 
     88  Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/aws", "doc").upload 
    8989end 
    9090 
  • tags/rel_0-10-0/activesupport/Rakefile

    r795 r799  
    5757  `ssh davidhh@comox.textdrive.com './gemupdate.sh'` 
    5858end 
     59 
     60# Publish documentation 
     61desc "Publish the API documentation" 
     62task :pdoc => [:rdoc] do  
     63  Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/as", "doc").upload 
     64end 
  • trunk/actionpack/lib/action_view/helpers/date_helper.rb

    r695 r799  
    222222        date     = options[:include_blank] ? (value || 0) : (value || Date.today) 
    223223 
    224         date_select = "" 
    225          
    226         if options[:month_before_year] # For backwards compatibility 
    227           options[:order] = [:month, :year, :day] 
    228         end 
    229  
     224        date_select = ""         
     225        options[:order]   = [:month, :year, :day] if options[:month_before_year] # For backwards compatibility 
    230226        options[:order] ||= [:year, :month, :day] 
    231227 
  • trunk/actionwebservice/Rakefile

    r795 r799  
    8686desc "Publish the API documentation" 
    8787task :pdoc => [:rdoc] do  
    88   Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/as", "doc").upload 
     88  Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/aws", "doc").upload 
    8989end 
    9090 
  • trunk/activesupport/Rakefile

    r795 r799  
    5757  `ssh davidhh@comox.textdrive.com './gemupdate.sh'` 
    5858end 
     59 
     60# Publish documentation 
     61desc "Publish the API documentation" 
     62task :pdoc => [:rdoc] do  
     63  Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/as", "doc").upload 
     64end