[前][次][番号順一覧][スレッド一覧]

rails:1982

From: Kyoko Sato <k.sato@a...>
Date: Thu, 25 Jan 2007 18:11:16 +0900
Subject: [rails:1982] form_tag_with_upload_progress メソッドを使いたいのですが・・・

お世話になっております。佐藤です。

ファイルアップロードをしたいと思い(下記rhtml)実行してみたのですが、
form_tag_with_upload_progress が無いと言ってエラーが出たので、
検索エンジンでいろいろ探してみると、trunkをインストールすることによって
vender/trunk/以下にインストールされることがわかったので、以下を実行しま
した。

linuxで、以下をインストールし、
svnインストール
  yum install subversion
trunkインストール
  rake rails:freeze:edge

しかし、ruby script/serverするとエラーが起きてしまいます。
どう回避したらよいかご存知の方いらっしゃいましたら、宜しくお願い致します。
(http://dev.rubyonrails.org/ticket/7094 ここでも問題提起されてましたが、
よくわかりませんでした)

--
エラー
/usr/local/lib/ruby/1.8/date/format.rb:593: superclass mismatch for
class DateTime (TypeError)
        from /usr/local/lib/ruby/1.8/date.rb:197:in `require'
        from /usr/local/lib/ruby/1.8/date.rb:197
        from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext/date.rb:1:in `require'
        from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext/date.rb:1
        from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext.rb:1:in `require'
        from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext.rb:1
        from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext.rb:1:in `each'
        from ./script/../config/../vendor/rails/activesupport/lib/active_support/core_ext.rb:1
        from ./script/../config/../vendor/rails/activesupport/lib/active_support.rb:31:in `require'
        from ./script/../config/../vendor/rails/activesupport/lib/active_support.rb:31
        from ./script/../config/../vendor/rails/railties/lib/commands/server.rb:1:in `require'
        from ./script/../config/../vendor/rails/railties/lib/commands/server.rb:1
        from script/server:3:in `require'
        from script/server:3

--
使いたいソース
<html>
  <head>
    <title>Step 4</title>
    <%= javascript_include_tag "prototype" %>
    <style type="text/css">
    .progressBar .border { background-color: white; border: 1px solid grey; width: 100%; }
    .progressBar .background { background-color: #333; height: 18px; width: 0%; }
    </style>
  </head>
  <body>
  
  <h1>Effects</h1>
  <p>Create an effect on beginning of the upload, send a custom message when simulating
     some extra processing and redirect to a different page at the end of the upload.</p>

  <%= form_tag_with_upload_progress({:action => 'upload'}, {
     :begin => "new Effect.Appear('status')",
     :finish => "$('message').innerHTML = arguments[0]" })%>  
     
  <%= file_field 'document', 'file' %>     
  <%= submit_tag 'Upload' %>
  
  <div id="status" style="display: none">
    <%= upload_status_tag %>
  </div>
  
  <%= end_form_tag %>

  <div id="message"><%= @message %></div>

  </body>
</html>


--
ML: rails@r...
使い方: http://QuickML.com/

[前][次][番号順一覧][スレッド一覧]

      1970 2007-01-19 10:02 [y-yamasaki@s...     ] コンソールからActionViewのメソッドを使う方法
      1971 2007-01-19 11:11 ┗[yu1@t...            ]                                       
      1972 2007-01-19 15:32  ┗[y-yamasaki@s...     ]                                     
      1973 2007-01-20 12:45   ┗[someeda@g...        ]                                   
      1974 2007-01-20 15:43    ┗[y-yamasaki@s...     ]                                 
      1977 2007-01-22 11:32     ┗[someeda@g...        ]                               
      1979 2007-01-23 14:54      ┗[y-yamasaki@s...     ]                             
->    1982 2007-01-25 10:11       ┗[k.sato@a...         ] form_tag_with_upload_progress メソッドを使いたいのですが・・・
      1983 2007-01-25 15:58        ┗[someeda@g...        ]                         
      1984 2007-01-25 16:54         ┣[yamajaki@g...       ]                       
      1986 2007-01-26 05:50         ┗[k.sato@a...         ]