Rakefile: kill raa_update task
[upr.git] / examples / rails_app-2.3.4 / app / views / files / index.html.erb
blob01d2a255ae4754c17c6ee06a3bc33a5bf311b5ac
1 <html>
2   <head>
3     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
4     <title>upr test, http://upr.bogomips.org/</title>
5     <%= javascript_include_tag :defaults %>
6     <%= javascript_include_tag 'upr' %>
7 <style type="text/css">
8 #progress-bar {
9   width:500px;
10   height:25px;
11   margin:15px;
12   border:solid 1px #000;
13   position:relative;
16 #progress-bar #status-bar {
17   display:block;
18   height:25px;
19   width:0;
20   background-color:#00f;
21   border-right:solid 1px #000;
22   position:absolute;
23   top:0; left:0;
26 #progress-bar #status-text {
27   display:block;
28   padding: 0 15px;
29   line-height:25px;
30   position:absolute;
31   top:0; left:0;
33 </style>
34   </head>
35   <body>
37 upid = "#{Time.now.to_i}.#{rand}"
38 act = { :action => 'upload', :upload_id => upid }
39 opt = {
40   :multipart => true,
41   :target => 'upload',
42   :onsubmit => "UploadProgress.monitor('#{escape_javascript(upid)}')"
44 -%>
45 <p>
46   This is a demo of <a href="http://upr.bogomips.org/">upr</a> in action.
47   Much of this (including all JS) was stolen from the mongrel_upload_progress
48   examples.
49 </p>
50 <p>
51   Also, see the <a href="/files/new">jQuery-compatible interface</a>
52   that's also compatible with upload progress modules for nginx and lighttpd.
53 </p>
54 <p>
55   Last but not least, check out the <a href="/files/pull">Ajax.Pull</a>
56   example that uses a single, streaming HTTP response to interatively
57   send progress updates.
58 </p>
59 <p><%= link_to upid, :action => 'status', :upload_id => upid %></p>
60 <% form_tag(act, opt) do %>
61   <div id="file-fields">
62     <p><%= file_field_tag :data %></p>
63   </div>
64   <p><%= link_to_function 'Add File Field', 'UploadProgress.FileField.add()' %>
65   </p>
66   <p><%= submit_tag :Upload %></p>
67 <% end %>
69 <div id="results"></div>
70 <div id="progress-bar"></div>
72 <p>The size and SHA1 of the file you uploaded should appear here</p>
73 <iframe id="upload" name="upload" src="about:blank"></iframe>
75   </body>
76 </html>