JSON: set no-transform in headers
[upr.git] / examples / rails_app-2.3.4 / app / views / files / index.html.erb
blob49820761dc914d152e3114734785c7e056d0eeaf
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><%= link_to upid, :action => 'status', :upload_id => upid %></p>
51 <% form_tag(act, opt) do %>
52   <div id="file-fields">
53     <p><%= file_field_tag :data %></p>
54   </div>
55   <p><%= link_to_function 'Add File Field', 'UploadProgress.FileField.add()' %>
56   </p>
57   <p><%= submit_tag :Upload %></p>
58 <% end %>
60 <div id="results"></div>
61 <div id="progress-bar"></div>
63 <p>The size and SHA1 of the file you uploaded should appear here</p>
64 <iframe id="upload" name="upload" src="about:blank"></iframe>
66   </body>
67 </html>