mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-30 17:01:08 +02:00
yWeb: rename Y_NI_NetFS-control.yhtm => Y_Tools_NetFS.yhtm
Origin commit data
------------------
Branch: ni/coolstream
Commit: ef396f48bf
Author: vanhofen <vanhofen@gmx.de>
Date: 2023-03-02 (Thu, 02 Mar 2023)
Origin message was:
------------------
- yWeb: rename Y_NI_NetFS-control.yhtm => Y_Tools_NetFS.yhtm
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
96
data/y-web/Y_Tools_NetFS_edit.yhtm
Normal file
96
data/y-web/Y_Tools_NetFS_edit.yhtm
Normal file
@@ -0,0 +1,96 @@
|
||||
{=include-block:Y_Blocks.txt;head_ni=}
|
||||
<script src="/Y_Baselib.js"></script>
|
||||
<script>
|
||||
function form_init()
|
||||
{
|
||||
if (document.f.type[0].checked == 1)
|
||||
{
|
||||
document.f.username.disabled=true;
|
||||
document.f.password.disabled=true;
|
||||
}
|
||||
else
|
||||
{
|
||||
document.f.username.disabled=false;
|
||||
document.f.password.disabled=false;
|
||||
}
|
||||
}
|
||||
function do_submit()
|
||||
{
|
||||
show_waitbox(true);
|
||||
document.f.submit();
|
||||
}
|
||||
</script>
|
||||
{=include-block:Y_Blocks.txt;head_close=}
|
||||
<body onload="form_init()">
|
||||
{=var-set:wait_text={=L:tools.netfs.title=}<br/>=}{=include-block:Y_Blocks.txt;snip_wait=}
|
||||
<div class="work_box">
|
||||
<div class="work_box_head"><div class="work_box_head_h2">
|
||||
{=var-set:menu={=L:tools.netfs.title=} ({=L:ni.edit=}: {=L:tools.netfs.{=mount_type=}=} - {=nr=})=}{=include-block:Y_Blocks.txt;work_menu=}
|
||||
</div></div>
|
||||
<div class="work_box_body">
|
||||
<form name="f" action="/y/cgi">
|
||||
<input type="hidden" name="mount_type" value="{=mount_type=}"/>
|
||||
<input type="hidden" name="mount_type_s" value="{=mount_type_s=}"/>
|
||||
<input type="hidden" name="nr" value="{=nr=}"/>
|
||||
<table border="0" class="y_form_table">
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.type=}</td>
|
||||
<td>
|
||||
<input onclick="form_init();" type="radio" name="type" value="0" {=if-equal:{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_type_{=nr=}~open=}~0~checked="checked"~=} />NFS
|
||||
<input onclick="form_init();" type="radio" name="type" value="1" {=if-equal:{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_type_{=nr=}~cache=}~1~checked="checked"~=} />CIFS
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.ip=}</td>
|
||||
<td><input type="text" name="ip" size="15" maxlength="15" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_ip_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.dir=}</td>
|
||||
<td><input type="text" name="dir" size="30" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_dir_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.local_dir=}</td>
|
||||
<td><input type="text" name="localdir" size="30" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_local_dir_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.options=} 1</td>
|
||||
<td><input type="text" name="opt1" size="30" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_mount_options1_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.options=} 2</td>
|
||||
<td><input type="text" name="opt2" size="30" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_mount_options2_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.user=}</td>
|
||||
<td><input type="text" name="username" size="30" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_username_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.password=}</td>
|
||||
<td><input type="text" name="password" size="30" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_password_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.dump=}</td>
|
||||
<td><input type="text" name="dump" size="3" maxlength="3" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_dump_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.pass=}</td>
|
||||
<td><input type="text" name="pass" size="3" maxlength="3" value="{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_pass_{=nr=}~cache=}" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>{=L:tools.netfs.active=}</td>
|
||||
<td>
|
||||
<input type="radio" name="active" value="1" {=if-equal:{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_active_{=nr=}~cache=}~1~checked="checked"~=} />{=L:on=}
|
||||
<input type="radio" name="active" value="0" {=if-equal:{=ini-get:%(CONFIGDIR)/neutrino.conf;netfs_{=mount_type_s=}_active_{=nr=}~cache=}~0~checked="checked"~=} />{=L:off=}
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br/>
|
||||
<input type="hidden" name="tmpl" value="Y_Tools_NetFS.yhtm"/>
|
||||
<input type="hidden" name="execute" value="func:netfs_set_values"/>
|
||||
<button type="button" ytype="accept_" title="ok" onClick="do_submit()">OK</button>
|
||||
<button type="button" ytype="cancel_" title="{=L:cancel=}" name="abort" onClick='window.document.location.href="/Y_Tools_NetFS.yhtm?mount_type={=mount_type=}&mount_type_s={=mount_type_s=}"'>{=L:ni.cancel=}</button>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user