aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-04-07 06:20:54 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-04-07 06:20:54 +0000
commitbd9a81ca2d34562a140dfe9a6cfecf969a01042c (patch)
tree966266871e2714aef19a4ebab8f639f5f6421a01 /actionpack
parent38a0b5b427371b53c0d0f159cf5b3806f16aab30 (diff)
downloadrails-bd9a81ca2d34562a140dfe9a6cfecf969a01042c.tar.gz
rails-bd9a81ca2d34562a140dfe9a6cfecf969a01042c.tar.bz2
rails-bd9a81ca2d34562a140dfe9a6cfecf969a01042c.zip
Moved to new server
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1102 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack')
-rw-r--r--actionpack/CHANGELOG4
-rwxr-xr-xactionpack/Rakefile6
2 files changed, 7 insertions, 3 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 2ee52cf9ca..a091498904 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,9 @@
*SVN*
+* Fixed autolinking to work better in more cases #1013 [Jamis Buck]
+
+* 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"'
+
* Fixed javascript_include_tag to output type instead of language and conform to XHTML #1018 [Rick Olson]
* Added NumberHelper for common string representations like phone number, currency, and percentage #1015 [DeLynn]
diff --git a/actionpack/Rakefile b/actionpack/Rakefile
index 37199168b5..dbfaca4ded 100755
--- a/actionpack/Rakefile
+++ b/actionpack/Rakefile
@@ -85,13 +85,13 @@ end
desc "Publish the API documentation"
task :pgem => [:package] do
- Rake::SshFilePublisher.new("davidhh@comox.textdrive.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
- `ssh davidhh@comox.textdrive.com './gemupdate.sh'`
+ Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.com", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
+ `ssh davidhh@wrath.rubyonrails.com './gemupdate.sh'`
end
desc "Publish the API documentation"
task :pdoc => [:rdoc] do
- Rake::SshDirPublisher.new("davidhh@comox.textdrive.com", "public_html/ap", "doc").upload
+ Rake::SshDirPublisher.new("davidhh@wrath.rubyonrails.com", "public_html/ap", "doc").upload
end
desc "Publish the release files to RubyForge."