Fixed responsiveness for flashing process
[project/luci.git] / modules / admin-mini / luasrc / view / mini / upgrade.htm
1 <%#
2 LuCI - Lua Configuration Interface
3 Copyright 2008 Steven Barth <steven@midlink.org>
4 Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 $Id$
13
14 -%>
15 <%+header%>
16 <h1><%:system%></h1>
17 <h2><%:a_s_flash%></h2>
18 <p><%:a_s_flash_upgrade1%></p>
19 <br />
20 <% if sysupgrade and not ret then %>
21 <form method="post" action="<%=REQUEST_URI%>" enctype="multipart/form-data">
22 <div class="left"><%:a_s_flash_fwimage%>:</div>
23 <div>
24 <input type="file" size="30" name="image" />
25 <br />
26 <br />
27 <% if keep_avail then -%>
28 <input type="checkbox" name="keepcfg" value="1" checked="checked" />
29 <span class="bold"><%:a_s_flash_keepcfg%></span>
30 <% end -%>
31 </div>
32 <div>
33 <input type="submit" value="<%:a_s_flash_fwupgrade%>" />
34 </div>
35 </form>
36 <% elseif ret then %>
37 <p><%:a_s_flash_received%></p>
38 <p><%:a_s_flash_inprogress%></p>
39
40 <!-- <%=string.rep(" ", 2048)%> -->
41 <% %>
42 <% local ret = ret()
43 if ret == 0 then %>
44 <div class="ok"><%:a_s_flash_flashed%></div>
45 <% else %>
46 <div class="error"><%:a_s_flash_flasherr%>! (<%:code%> <%=ret%>)</div>
47 <% end %>
48 <% else %>
49 <div class="error"><%:a_s_flash_notimplemented%></div>
50 <% end %>
51 <%+footer%>