Cosmetics admin-access page
[tomato.git] / release / src / router / www / nas-usb.asp
blobe5f6d5ce24306007ceeb61fc5b9930ff2eebb0c4
1 <!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.0//EN'>
2 <!--
3 Tomato GUI
4 USB Support - !!TB
6 For use with Tomato Firmware only.
7 No part of this file may be used without permission.
8 -->
9 <html>
10 <head>
11 <meta http-equiv='content-type' content='text/html;charset=utf-8'>
12 <meta name='robots' content='noindex,nofollow'>
13 <title>[<% ident(); %>] NAS: USB Support</title>
14 <link rel='stylesheet' type='text/css' href='tomato.css'>
15 <link rel='stylesheet' type='text/css' href='color.css'>
16 <script type='text/javascript' src='tomato.js'></script>
18 <!-- / / / -->
20 <style type='text/css'>
21 textarea {
22 width: 98%;
23 height: 5em;
25 </style>
27 <style type='text/css'>
28 #dev-grid .co1 {
29 width: 10%;
31 #dev-grid .co2 {
32 width: 9%;
34 #dev-grid .co3 {
35 width: 65%;
37 #dev-grid .co4 {
38 width: 16%;
39 text-align: center;
41 #dev-grid .header {
42 text-align: left;
44 </style>
46 <script type='text/javascript' src='debug.js'></script>
48 <script type='text/javascript'>
50 // <% nvram("usb_enable,usb_uhci,usb_ohci,usb_usb2,usb_storage,usb_printer,usb_printer_bidirect,usb_automount,usb_fs_ext3,usb_fs_fat,usb_fs_ntfs,usb_fs_hfs,script_usbmount,script_usbumount,script_usbhotplug,idle_enable,usb_3g"); %>
51 // <% usbdevices(); %>
53 list = [];
55 var xob = null;
57 function _umountHost(host)
59 form.submitHidden('usbcmd.cgi', { remove: host });
62 function _mountHost(host)
64 form.submitHidden('usbcmd.cgi', { mount: host });
67 function _forceRefresh()
69 if (!ref.running) ref.once = 1;
70 ref.start();
73 function umountHost(a, host)
75 if (xob) return;
77 if ((xob = new XmlHttp()) == null) {
78 _umountHost(host);
79 return;
82 a = E(a);
83 a.innerHTML = 'Please wait...';
85 xob.onCompleted = function(text, xml) {
86 eval(text);
87 if (usb.length == 1) {
88 if (usb[0] != 0)
89 ferror.set(a, 'The device is busy. Please make sure no applications are using it, and try again.', 0);
91 xob = null;
92 _forceRefresh();
95 xob.onError = function() {
96 xob = null;
97 _forceRefresh();
100 xob.post('usbcmd.cgi', 'remove=' + host);
103 function mountHost(a, host)
105 if (xob) return;
107 if ((xob = new XmlHttp()) == null) {
108 _mountHost(host);
109 return;
112 a = E(a);
113 a.innerHTML = 'Please wait...';
115 xob.onCompleted = function(text, xml) {
116 eval(text);
117 if (usb.length == 1) {
118 if (usb[0] == 0)
119 ferror.set(a, 'Failed to mount. Verify the device is plugged in, and try again.', 0);
121 xob = null;
122 _forceRefresh();
125 xob.onError = function() {
126 xob = null;
127 _forceRefresh();
130 xob.post('usbcmd.cgi', 'mount=' + host);
133 var ref = new TomatoRefresh('update.cgi', 'exec=usbdevices', 0, 'nas_usb_refresh');
135 ref.refresh = function(text)
137 try {
138 eval(text);
140 catch (ex) {
141 return;
143 dg.removeAllData();
144 dg.populate();
145 dg.resort();
148 var dg = new TomatoGrid();
150 dg.sortCompare = function(a, b) {
151 var col = this.sortColumn;
152 var ra = a.getRowData();
153 var rb = b.getRowData();
154 var r;
156 switch (col) {
157 case 1:
158 if (ra.type == 'Storage' && ra.type == rb.type)
159 r = cmpInt(ra.host, rb.host);
160 else
161 r = cmpText(ra.host, rb.host);
162 break;
163 default:
164 r = cmpText(a.cells[col].innerHTML, b.cells[col].innerHTML);
166 return this.sortAscending ? r : -r;
169 dg.populate = function()
171 var i, j, k, a, b, c, e, s, desc, d, parts, p;
173 list = [];
175 for (i = 0; i < list.length; ++i) {
176 list[i].type = '';
177 list[i].host = '';
178 list[i].vendor = '';
179 list[i].product = '';
180 list[i].serial = '';
181 list[i].discs = [];
182 list[i].is_mounted = 0;
185 for (i = usbdev.length - 1; i >= 0; --i) {
186 a = usbdev[i];
187 e = {
188 type: a[0],
189 host: a[1],
190 vendor: a[2],
191 product: a[3],
192 serial: a[4],
193 discs: a[5],
194 is_mounted: a[6]
196 list.push(e);
199 for (i = list.length - 1; i >= 0; --i) {
200 e = list[i];
202 if (e.type != 'Storage')
203 s = '&nbsp<br><small>&nbsp</small>';
204 else {
205 if (xob)
206 s = ((e.is_mounted == 0) ? 'No' : 'Yes') + '<br><small>Please wait...</small>';
207 else if (e.is_mounted == 0)
208 s = 'No<br><small><a href="javascript:mountHost(\'L' + i + '\',\'' + e.host + '\')" title="Mount all Partitions of Storage Device" id="L' + i + '">[ Mount ]</a></small>';
209 else
210 s = 'Yes<br><small><a href="javascript:umountHost(\'L' + i + '\',\'' + e.host + '\')" title="Safely Remove Storage Device" id="L' + i + '">[ Unmount ]</a></small>';
212 desc = (e.vendor + ' ' + e.product).trim() + '<small>'; // + (e.serial == '' ? '' : '<br>Serial No: ' + e.serial);
213 if (e.discs) {
214 for (j = 0; j <= e.discs.length - 1; ++j) {
215 d = e.discs[j];
216 parts = d[1];
217 for (k = 0; k <= parts.length - 1; ++k) {
218 p = parts[k];
219 if (p) {
220 desc = desc + '<br>Partition \'' + p[0] + '\'' + (p[3] != '' ? ' ' + p[3] : '') +
221 ((p[5] != 0) ? ' (' + doScaleSize(p[5], 0) +
222 ((p[1] == 1) ? ' / ' + doScaleSize(p[6], 0) + ' free' : '') +
223 ')' : '') + ' is ' +
224 ((p[1] != 0) ? '' : 'not ') + ((p[3] == 'swap') ? 'active' : 'mounted') +
225 ((p[2] != '') ? ' on ' + p[2] : '');
230 desc = desc + '</small>';
231 this.insert(-1, e, [e.type, e.host, desc, s], false);
234 list = [];
237 dg.setup = function()
239 this.init('dev-grid', 'sort');
240 this.headerSet(['Type', 'Host', 'Description', 'Mounted?']);
241 this.populate();
242 this.sort(1);
245 function earlyInit()
247 dg.setup();
250 function init()
252 dg.recolor();
253 ref.initPage();
256 function verifyFields(focused, quiet)
258 var b = !E('_f_usb').checked;
259 var a = !E('_f_storage').checked;
261 E('_f_uhci').disabled = b || nvram.usb_uhci == -1;
262 E('_f_ohci').disabled = b || nvram.usb_ohci == -1;
263 E('_f_usb2').disabled = b;
264 E('_f_print').disabled = b;
265 E('_f_storage').disabled = b;
267 E('_f_ext3').disabled = b || a;
268 E('_f_fat').disabled = b || a;
269 /* LINUX26-BEGIN */
270 E('_f_idle_enable').disabled = b || a;
271 E('_f_usb_3g').disabled = b;
272 /* LINUX26-END */
273 /* NTFS-BEGIN */
274 E('_f_ntfs').disabled = b || a;
275 /* NTFS-END */
276 /* HFS-BEGIN */
277 E('_f_hfs').disabled = b || a; //!Victek
278 /* HFS-END */
279 E('_f_automount').disabled = b || a;
280 E('_f_bprint').disabled = b || !E('_f_print').checked;
282 elem.display(PR('_f_automount'), !b && !a);
283 elem.display(PR('_script_usbmount'), PR('_script_usbumount'), !b && !a && E('_f_automount').checked);
284 elem.display(PR('_script_usbhotplug'), !b && (!a || E('_f_print').checked));
286 if (!v_length('_script_usbmount', quiet, 0, 2048)) return 0;
287 if (!v_length('_script_usbumount', quiet, 0, 2048)) return 0;
288 if (!v_length('_script_usbhotplug', quiet, 0, 2048)) return 0;
290 return 1;
293 function save()
295 var fom;
297 if (!verifyFields(null, 0)) return;
299 fom = E('_fom');
300 fom.usb_enable.value = E('_f_usb').checked ? 1 : 0;
301 fom.usb_uhci.value = nvram.usb_uhci == -1 ? -1 : (E('_f_uhci').checked ? 1 : 0);
302 fom.usb_ohci.value = nvram.usb_ohci == -1 ? -1 : (E('_f_ohci').checked ? 1 : 0);
303 fom.usb_usb2.value = E('_f_usb2').checked ? 1 : 0;
304 fom.usb_storage.value = E('_f_storage').checked ? 1 : 0;
305 fom.usb_printer.value = E('_f_print').checked ? 1 : 0;
306 fom.usb_printer_bidirect.value = E('_f_bprint').checked ? 1 : 0;
307 fom.usb_fs_ext3.value = E('_f_ext3').checked ? 1 : 0;
308 fom.usb_fs_fat.value = E('_f_fat').checked ? 1 : 0;
309 /* NTFS-BEGIN */
310 fom.usb_fs_ntfs.value = E('_f_ntfs').checked ? 1 : 0;
311 /* NTFS-END */
312 /* HFS-BEGIN */
313 fom.usb_fs_hfs.value = E('_f_hfs').checked ? 1 : 0; //!Victek
314 /* HFS-END */
315 fom.usb_automount.value = E('_f_automount').checked ? 1 : 0;
316 /* LINUX26-BEGIN */
317 fom.idle_enable.value = E('_f_idle_enable').checked ? 1 : 0;
318 fom.usb_3g.value = E('_f_usb_3g').checked ? 1 : 0;
319 /* LINUX26-END */
321 form.submit(fom, 1);
324 function submit_complete()
326 reloadPage();
328 </script>
330 </head>
331 <body onload='init()'>
332 <form id='_fom' method='post' action='tomato.cgi'>
333 <table id='container' cellspacing=0>
334 <tr><td colspan=2 id='header'>
335 <div class='title'>Tomato</div>
336 <div class='version'>Version <% version(); %></div>
337 </td></tr>
338 <tr id='body'><td id='navi'><script type='text/javascript'>navi()</script></td>
339 <td id='content'>
340 <div id='ident'><% ident(); %></div>
342 <!-- / / / -->
344 <input type='hidden' name='_nextpage' value='nas-usb.asp'>
345 <input type='hidden' name='_service' value='usb-restart'>
347 <input type='hidden' name='usb_enable'>
348 <input type='hidden' name='usb_uhci'>
349 <input type='hidden' name='usb_ohci'>
350 <input type='hidden' name='usb_usb2'>
351 <input type='hidden' name='usb_storage'>
352 <input type='hidden' name='usb_printer'>
353 <input type='hidden' name='usb_printer_bidirect'>
354 <input type='hidden' name='usb_fs_ext3'>
355 <input type='hidden' name='usb_fs_fat'>
356 <!-- NTFS-BEGIN
357 <input type='hidden' name='usb_fs_ntfs'>
358 NTFS-END -->
359 <!-- HFS-BEGIN
360 <input type='hidden' name='usb_fs_hfs'>
361 HFS-END -->
362 <input type='hidden' name='usb_automount'>
363 /* LINUX26-BEGIN */
364 <input type='hidden' name='idle_enable'>
365 <input type='hidden' name='usb_3g'>
366 /* LINUX26-END */
368 <div class='section-title'>USB Support</div>
369 <div class='section'>
370 <script type='text/javascript'>
372 createFieldTable('', [
373 { title: 'Core USB Support', name: 'f_usb', type: 'checkbox', value: nvram.usb_enable == 1 },
374 { title: 'USB 2.0 Support', indent: 2, name: 'f_usb2', type: 'checkbox', value: nvram.usb_usb2 == 1 },
375 { title: 'USB 1.1 Support', indent: 2, multi: [
376 { suffix: '&nbsp; OHCI &nbsp;&nbsp;&nbsp;', name: 'f_ohci', type: 'checkbox', value: nvram.usb_ohci == 1 },
377 { suffix: '&nbsp; UHCI &nbsp;', name: 'f_uhci', type: 'checkbox', value: nvram.usb_uhci == 1 }
378 ] },
379 null,
380 { title: 'USB Printer Support', name: 'f_print', type: 'checkbox', value: nvram.usb_printer == 1 },
381 { title: 'Bidirectional copying', indent: 2, name: 'f_bprint', type: 'checkbox', value: nvram.usb_printer_bidirect == 1 },
382 null,
383 { title: 'USB Storage Support', name: 'f_storage', type: 'checkbox', value: nvram.usb_storage == 1 },
384 { title: 'File Systems Support', indent: 2, multi: [
385 { suffix: '&nbsp; Ext2 / Ext3 &nbsp;&nbsp;&nbsp;', name: 'f_ext3', type: 'checkbox', value: nvram.usb_fs_ext3 == 1 },
386 /* NTFS-BEGIN */
387 { suffix: '&nbsp; NTFS &nbsp;&nbsp;&nbsp;', name: 'f_ntfs', type: 'checkbox', value: nvram.usb_fs_ntfs == 1 },
388 /* NTFS-END */
389 { suffix: '&nbsp; FAT &nbsp;', name: 'f_fat', type: 'checkbox', value: nvram.usb_fs_fat == 1 }
390 /* HFS-BEGIN */
391 ,{ suffix: '&nbsp; HFS / HFS+ &nbsp;', name: 'f_hfs', type: 'checkbox', value: nvram.usb_fs_hfs == 1 }
392 /* HFS-END */
393 ] },
394 { title: 'Automount', indent: 2, name: 'f_automount', type: 'checkbox',
395 suffix: ' <small>Automatically mount all partitions to sub-directories in <i>/mnt</i>.</small>', value: nvram.usb_automount == 1 },
396 { title: 'Run after mounting', indent: 2, name: 'script_usbmount', type: 'textarea', value: nvram.script_usbmount },
397 { title: 'Run before unmounting', indent: 2, name: 'script_usbumount', type: 'textarea', value: nvram.script_usbumount },
398 null,
399 /* LINUX26-BEGIN */
400 { title: 'HDD Spindown', name: 'f_idle_enable', type: 'checkbox',
401 suffix: ' <small>Spin down each HDD when idle. No need to use with flashdrive.</small>', value: nvram.idle_enable == 1 },
402 null,
403 { title: 'USB 3G Modem support', name: 'f_usb_3g', type: 'checkbox',
404 suffix: ' <small>Before disconnecting 3G Modem from USB port, remember to uncheck box. If modem used usbserial module, you have to reboot router before unplug modem.</small>', value: nvram.usb_3g == 1 },
405 null,
406 /* LINUX26-END */
407 { title: 'Hotplug script<br><small>(called when any USB device is attached or removed)</small>', name: 'script_usbhotplug', type: 'textarea', value: nvram.script_usbhotplug },
408 null,
409 { text: '<small>Some of the changes will take effect only after a restart.</small>' }
411 </script>
412 </div>
414 <!-- / / / -->
416 <div class='section-title'>Attached Devices</div>
417 <div class='section'>
418 <table id='dev-grid' class='tomato-grid' cellspacing=0></table>
419 <div id='usb-controls'>
420 <script type='text/javascript'>genStdRefresh(1,0,'ref.toggle()');</script>
421 </div>
422 <script type='text/javascript'></script>
423 </div>
425 <!-- / / / -->
427 </td></tr>
428 <tr><td id='footer' colspan=2>
429 <span id='footer-msg'></span>
430 <input type='button' value='Save' id='save-button' onclick='save()'>
431 <input type='button' value='Cancel' id='cancel-button' onclick='javascript:reloadPage();'>
432 </td></tr>
433 </table>
434 </form>
435 <script type='text/javascript'>earlyInit();verifyFields(null, 1);</script>
436 </body>
437 </html>