summaryrefslogtreecommitdiff
path: root/program/js/tiny_mce/plugins/searchreplace/replace.htm
blob: 0629da334e891ac152baf6b296044f3875bf3c90 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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>