more tinymce stuff
This commit is contained in:
parent
5a60010a6f
commit
b19f4cf952
468 changed files with 11635 additions and 0 deletions
49
www/extras/tinymce2/jscripts/tiny_mce/plugins/searchreplace/replace.htm
vendored
Normal file
49
www/extras/tinymce2/jscripts/tiny_mce/plugins/searchreplace/replace.htm
vendored
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>{$lang_searchreplace_replace_title}</title>
|
||||
<script language="javascript" type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
||||
<script language="javascript" type="text/javascript" src="jscripts/replace.js"></script>
|
||||
<base target="_self" />
|
||||
</head>
|
||||
<body onload="tinyMCEPopup.executeOnLoad('init();');" style="display: none; margin: 4px;">
|
||||
<form onsubmit="searchNext('none');return false;" action="#">
|
||||
<table border="0" cellspacing="0" cellpadding="2">
|
||||
<tr>
|
||||
<td><label for="searchstring">{$lang_searchreplace_findwhat}</label></td>
|
||||
<td><input type="text" id="searchstring" name="searchstring" style="width: 200px" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><label for="replacestring">{$lang_searchreplace_replacewith}</label></td>
|
||||
<td><input type="text" id="replacestring" name="replacestring" style="width: 200px" /></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><label>{$lang_searchreplace_direction}</label></td>
|
||||
<td><input id="backwardsu" name="backwards" class="radio" type="radio" value="true" /></td>
|
||||
<td><label for="backwardsu">{$lang_searchreplace_up}</label></td>
|
||||
<td><input id="backwardsd" name="backwards" class="radio" type="radio" value="false" /></td>
|
||||
<td><label for="backwardsd">{$lang_searchreplace_down}</label></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2"><table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><input id="casesensitivebox" name="casesensitivebox" class="checkbox" type="checkbox" value="true" /></td>
|
||||
<td><label for="casesensitivebox">{$lang_searchreplace_case}</label></td>
|
||||
</tr>
|
||||
</table></td>
|
||||
</tr>
|
||||
</table>
|
||||
<table border="0" width="300" cellspacing="0" cellpadding="4">
|
||||
<tr>
|
||||
<td><input id="insertBtn" name="insertBtn" type="button" value="{$lang_searchreplace_findnext}" onclick="searchNext('none');" /></td>
|
||||
<td><input name="replaceBtn" type="button" id="replaceBtn" value="{$lang_searchreplace_replace}" onclick="searchNext('current');" /></td>
|
||||
<td><input name="replaceBtn" type="button" id="replaceAllBtn" value="{$lang_searchreplace_replaceall}" onclick="searchNext('all');" /></td>
|
||||
<td align="right"><input name="cancelBtn" type="button" id="cancelBtn" value="{$lang_searchreplace_cancel}" onclick="cancelAction();" /></td>
|
||||
</tr>
|
||||
</table>
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue