JSON: set no-transform in headers
[upr.git] / examples / rails_app-2.3.4 / app / views / files / pull.html.erb
blob275704d7351257a481eb680081aacf1c8997e0ce
1 <html>
2   <head>
3 <!-- http://rubyforge.org/pipermail/mongrel-users/2007-July/003747.html -->
4     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
5     <title>streaming upload progress test</title>
6     <%= javascript_include_tag 'ajax_pull/prototype-1_5_1.js' %>
7     <%= javascript_include_tag 'ajax_pull/ajax_pull.js' %>
8     <%= javascript_include_tag 'ajax_pull/upload_progress.js' %>
9   </head>
10   <body>
12 upid = "#{Time.now.to_i}.#{rand}"
13 act = { :action => 'pull', :upload_id => upid }
14 opt = {
15   :multipart => true,
16   :target => 'upload-target',
17   :onsubmit => "UploadProgress.begin('#{upid}')"
19 -%>
21     <% if flash[:notice] %>
22       <div class="notice"><%= flash[:notice] %></div>
23     <% end %>
24     <p><%= link_to "#{upid} (single)",
25           :action => 'status', :upload_id => upid %></p>
26     <p><%= link_to "#{upid} (stream)",
27            "/progress?long&upload_id=#{upid}" %></p>
29     <% form_tag(act, opt) do %>
30       <div><p><%= file_field_tag :data %></p></div>
31       <p><%= submit_tag :Upload %></p>
32     <% end %>
34     <p>Below is the results <code>div</code></p>
35     <div id="results">(nothing)</div>
37     <p>Below is the progress bar <code>div</code></p>
38     <div id="progress-bar"></div>
40     <p>Below is the debug list</p>
41     <ol id="debug"></ol>
43     <iframe id="upload-target" name="upload-target" src="about:blank"></iframe>
45   </body>
46 </html>