Files
neutrino/data/y-web/Y_Filemgr_Edit.yhtm
Thilo Graf ccf604cc8e yWeb: rework for basic functionality
Based on the last changes by svenhoefer
2022-11-07 21:22:45 +01:00

69 lines
2.3 KiB
Plaintext

{=include-block:Y_Blocks.txt;head=}
<script type="text/javascript" src="/Y_Baselib.js"></script>
<script type="text/javascript" src="/prototype.js"></script>
<script type="text/javascript">
//<![CDATA[
/* yWeb Extension: Filemgr (by yjogol)
* yCVS: $Date: 2008-01-08 09:50:32 $
* yCVS: $Revision: 1.2 $
*/
var Window_delta_w=0;;
var Window_delta_h=0;
function init(){
/*
var t=document.getElementsByName("editfile");
// var dim= $('txt').dimensions();
Window_delta_w=yClientWidth()- t.clientWidth;
Window_delta_h=yClientHeight()- t.clientHeight;
alert("WH"+t.clientWidth+"-"+Window_delta_h);
window.onresize=do_onresize;
*/
}
function do_onresize(){
window.onresize=null;
var t=document.getElementsByName("editfile");
// do_resize();
window.onresize=do_onresize;
}
function do_submit(){
show_waitbox(true);
document.f.submit();
}
function do_reload(){
location.reload();
}
function ni(){
alert("not implemented");
}
//]]>
</script>
</head>
<body onload="init()">
{=var-set:wait_text=Speichern (Save).=}{=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=File Manager: Editor=}{=include-block:Y_Blocks.txt;work_menu=}</div></div>
<div class="work_box_body">
<table id="prop_toolbar" class="toolbar" cellspacing="1" cellpadding="1">
<tr>
<td title="save"><a href="javascript:do_submit()"><img src="/images/save.png"/></a></td>
<!-- <td title="copy text"><a href="javascript:ni()"><img src="/images/copy.gif"/></a></td>
<td title="cut text"><a href="javascript:ni()"><img src="/images/cut.gif"/></a></td>
<td title="paste item"><a href="javascript:ni()"><img src="/images/paste.gif"/></a></td>
-->
<td title="reload"><a href='javascript:do_reload()'><img src="/images/reload.png"/></a></td>
<td title="close without save"><a href='javascript:window.close()'><img src="/images/cross.png"/></a></td>
</tr>
</table>
<form name="f" accept-charset="UTF-8" action="/y/cgi?execute=include-block:Y_Blocks_Filemgr.txt;edit_save_settings;nix" method="POST">
<textarea id="txt" name="editfile" cols="100" rows="31" wrap="off" title="Editor" style="width: 100%;">{=include:{=file=}=}</textarea>
<input type="hidden" name="tmpl" value="Y_Filemgr_Edit.yhtm"/>
<input type="hidden" name="file" value="{=file=}"/>
</form>
</div>
</div>
</script>
</body>
</html>