rhymix/modules/editor/components/code_highlighter/tpl/popup.html
2007-11-28 17:02:07 +00:00

65 lines
2.7 KiB
HTML
Executable file

<!--%import("popup.js")-->
<!--%import("popup.css")-->
<!--%import("../lang")-->
<div id="popHeadder">
<h3>{$component_info->title} ver. {$component_info->version}</h3>
</div>
<form action="./" method="get" onSubmit="return false" id="fo">
<div id="popBody">
<table cellspacing="0" class="adminTable">
<col width="120" />
<col />
<tr>
<th scope="row">{$lang->code_type}</th>
<td>
<ul class="buttonLeft nospace">
<li>
<select id="code_type" name="code_type">
<option value="Php">PHP</option>
<option value="Css">CSS</option>
<option value="JScript">Javascript</option>
<option value="Xml">XML</option>
<option value="Cpp">C++</option>
<option value="CSharp">C#</option>
<option value="Vb">VB</option>
<option value="Java">Java</option>
<option value="Delphi">Delphi</option>
<option value="Python">Python</option>
<option value="Ruby">Ruby</option>
<option value="Sql">SQL</option>
<option value="Abap">Abap</option>
</select>
</li>
</ul>
</td>
</tr>
<tr>
<th scope="row">{$lang->used_collapse}</th>
<td>
<input type="checkbox" id="collapse" name="collapse" value="Y" />
</td>
</tr>
<tr>
<th scope="row">{$lang->hidden_linenumber}</th>
<td>
<input type="checkbox" id="nogutter" name="nogutter" value="Y" />
</td>
</tr>
<tr>
<th scope="row">{$lang->hidden_controls}</th>
<td>
<input type="checkbox" id="nocontrols" name="nocontrols" value="Y" />
</td>
</tr>
</table>
</div>
<div id="popFooter" class="tCenter">
<a href="#" onclick="insertCode()" class="button"><span>{$lang->cmd_insert}</span></a>
<a href="#" onclick="window.close(); return false;" class="button"><span>{$lang->cmd_close}</span></a>
<a href="#" onclick="winopen('./?module=editor&amp;act=dispEditorComponentInfo&amp;component_name={$component_info->component_name}','ComponentInfo','left=10,top=10,width=10,height=10,resizable=no,scrollbars=no,toolbars=no');return false;" class="button"><span>{$lang->about_component}</span></a>
</div>
</form>