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

Changeset 1102

Show
Ignore:
Timestamp:
04/07/05 06:20:54 (4 years ago)
Author:
david
Message:

Moved to new server

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/actionmailer/Rakefile

    r1023 r1102  
    7474desc "Publish the API documentation" 
    7575task :pgem => [:package] do  
    76   Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
     76  Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
    7777end 
    7878 
    7979desc "Publish the API documentation" 
    8080task :pdoc => [:rdoc] do  
    81   Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/am", "doc").upload 
     81  Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/am", "doc").upload 
    8282end 
    8383 
  • trunk/actionpack/CHANGELOG

    r1081 r1102  
    11*SVN* 
     2 
     3* Fixed autolinking to work better in more cases #1013 [Jamis Buck] 
     4 
     5* Added the possible of using symbols in form helpers that relate to instance variables like text_field :account, :name in addition to text_field "account", "name"' 
    26 
    37* Fixed javascript_include_tag to output type instead of language and conform to XHTML #1018 [Rick Olson] 
  • trunk/actionpack/Rakefile

    r1023 r1102  
    8686desc "Publish the API documentation" 
    8787task :pgem => [:package] do  
    88   Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
    89   `ssh davidhh@comox.textdrive.com './gemupdate.sh'` 
     88  Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
     89  `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'` 
    9090end 
    9191 
    9292desc "Publish the API documentation" 
    9393task :pdoc => [:rdoc] do  
    94   Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/ap", "doc").upload 
     94  Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/ap", "doc").upload 
    9595end 
    9696 
  • trunk/actionwebservice/Rakefile

    r1090 r1102  
    8787desc "Publish the API documentation" 
    8888task :pgem => [:package] do  
    89   Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
    90   `ssh davidhh@comox.textdrive.com './gemupdate.sh'` 
     89  Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
     90  `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'` 
    9191end 
    9292 
     
    9494desc "Publish the API documentation" 
    9595task :pdoc => [:rdoc] do  
    96   Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/aws", "doc").upload 
     96  Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/aws", "doc").upload 
    9797end 
    9898 
  • trunk/activerecord/test/fixtures/db_definitions/mysql.drop.sql

    r719 r1102  
    1616DROP TABLE binaries; 
    1717DROP TABLE computers; 
     18DROP TABLE posts; 
     19DROP TABLE comments; 
     20DROP TABLE authors; 
    1821 
  • trunk/activerecord/test/fixtures/db_definitions/mysql.sql

    r1054 r1102  
    130130) TYPE=InnoDB; 
    131131 
     132CREATE TABLE `posts` ( 
     133  `id` INTEGER NOT NULL PRIMARY KEY, 
     134  `author_id` INTEGER NOT NULL, 
     135  `title` VARCHAR(255) NOT NULL, 
     136  `body` TEXT NOT NULL 
     137) TYPE=InnoDB; 
     138 
     139CREATE TABLE `comments` ( 
     140  `id` INTEGER NOT NULL PRIMARY KEY, 
     141  `post_id` INTEGER NOT NULL, 
     142  `body` TEXT NOT NULL 
     143) TYPE=InnoDB; 
     144 
     145CREATE TABLE `authors` ( 
     146  `id` INTEGER NOT NULL PRIMARY KEY, 
     147  `name` VARCHAR(255) NOT NULL 
     148) TYPE=InnoDB; 
     149 
  • trunk/railties/Rakefile

    r1024 r1102  
    269269desc "Publish the API documentation" 
    270270task :pgem => [:gem] do  
    271   Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
    272   `ssh davidhh@comox.textdrive.com './gemupdate.sh'` 
     271  Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload 
     272  `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'` 
    273273end 
    274274