<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -16,7 +16,11 @@ Install the Amazon gem first
 
 Then you can install the plugin itself:
 
-  ruby ./script/install plugin git://github.com/standout/s3storage.git
+  ruby ./script/plugin install git://github.com/standout/s3storage.git
+
+If you get a 'Not found' message, you probably don't have the latest version of 
+rails. You could grab the plugin manually from http://github.com/standout/s3storage/tarball/master
+and extract it into your vendor/plugins folder. 
 
 Your model needs to have the following fields for this to work.
 
@@ -46,14 +50,14 @@ end
 
 New document (app/views/document/new.html.erb):
 In your view, you'll need to have a form for uploading.
-&lt;% form_tag ({:controller =&gt; 'documents', :action =&gt; 'create'}, {:multipart =&gt; true}) do %&gt;
+&lt;% form_for(@document, :html =&gt; {:multipart =&gt; true}) do |f| %&gt;
   &lt;p&gt;
     &lt;label for=&quot;document_title&quot;&gt;Title&lt;/label&gt;&lt;br /&gt;
-    &lt;%= text_field :document, :title %&gt;
+    &lt;%= f.text_field :title %&gt;
   &lt;/p&gt;
   &lt;p&gt;
-    &lt;label for=&quot;document_file&quot;&gt;Pick a file to upload&lt;/label&gt;&lt;br /&gt;
-    &lt;%= file_field :document, :file %&gt; &lt;!-- this is the important part --&gt;
+    &lt;label for=&quot;document_file&quot;&gt;Select a file to upload&lt;/label&gt;&lt;br /&gt;
+    &lt;%= f.file_field :file %&gt;
   &lt;/p&gt;
   &lt;%= submit_tag &quot;Upload file&quot; %&gt;
 &lt;% end %&gt;</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -56,7 +56,7 @@ module Standout
 
         def save_the_file_to_s3
           if @file.nil?
-            logger.warning &quot;Error: File not attached?&quot;
+            logger.info &quot;Error: File not attached?&quot;
             self.destroy
           else
             logger.info &quot;Uploading to S3: #{@file.original_filename}&quot;</diff>
      <filename>lib/s3_storage.rb</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>808bd158b6ac3d06db051eec7e0a6f13cb39f848</id>
    </parent>
  </parents>
  <author>
    <name>David Svensson</name>
    <email>david@standout.se</email>
  </author>
  <url>http://github.com/standout/s3storage/commit/dbc3bbc4d2b3deb6f7d81bed93b5761c2a42941e</url>
  <id>dbc3bbc4d2b3deb6f7d81bed93b5761c2a42941e</id>
  <committed-date>2008-04-23T13:48:26-07:00</committed-date>
  <authored-date>2008-04-23T13:48:26-07:00</authored-date>
  <message>Fixed documentation and removed logger.warning</message>
  <tree>fcced0c029a2f81cae2f5b1e3d0451cbf51c6676</tree>
  <committer>
    <name>David Svensson</name>
    <email>david@standout.se</email>
  </committer>
</commit>
