author | Dan |
Tue, 22 Dec 2009 13:09:59 -0500 | |
changeset 1193 | e3b94bd055dc |
parent 543 | dffcbfbc4e59 |
permissions | -rw-r--r-- |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> |
1 | 2 |
<html xmlns="http://www.w3.org/1999/xhtml"> |
3 |
<head> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
4 |
<title>{#searchreplace_dlg.replace_title}</title> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
5 |
<script type="text/javascript" src="../../tiny_mce_popup.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
6 |
<script type="text/javascript" src="../../utils/mctabs.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
7 |
<script type="text/javascript" src="../../utils/form_utils.js"></script> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
8 |
<script type="text/javascript" src="js/searchreplace.js"></script> |
1 | 9 |
<link rel="stylesheet" type="text/css" href="css/searchreplace.css" /> |
10 |
</head> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
11 |
<body style="display:none;"> |
543 | 12 |
<form onsubmit="SearchReplaceDialog.searchNext('none');return false;" action="#"> |
1 | 13 |
<div class="tabs"> |
14 |
<ul> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
15 |
<li id="search_tab"><span><a href="javascript:SearchReplaceDialog.switchMode('search');" onmousedown="return false;">{#searchreplace.search_desc}</a></span></li> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
16 |
<li id="replace_tab"><span><a href="javascript:SearchReplaceDialog.switchMode('replace');" onmousedown="return false;">{#searchreplace_dlg.replace}</a></span></li> |
1 | 17 |
</ul> |
18 |
</div> |
|
19 |
||
20 |
<div class="panel_wrapper"> |
|
21 |
<div id="search_panel" class="panel"> |
|
22 |
<table border="0" cellspacing="0" cellpadding="2"> |
|
23 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
24 |
<td><label for="search_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td> |
1 | 25 |
<td><input type="text" id="search_panel_searchstring" name="search_panel_searchstring" style="width: 200px" /></td> |
26 |
</tr> |
|
27 |
<tr> |
|
28 |
<td colspan="2"> |
|
29 |
<table border="0" cellspacing="0" cellpadding="0" class="direction"> |
|
30 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
31 |
<td><label>{#searchreplace_dlg.direction}</label></td> |
1 | 32 |
<td><input id="search_panel_backwardsu" name="search_panel_backwards" class="radio" type="radio" /></td> |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
33 |
<td><label for="search_panel_backwardsu">{#searchreplace_dlg.up}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
34 |
<td><input id="search_panel_backwardsd" name="search_panel_backwards" class="radio" type="radio" checked="checked" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
35 |
<td><label for="search_panel_backwardsd">{#searchreplace_dlg.down}</label></td> |
1 | 36 |
</tr> |
37 |
</table> |
|
38 |
</td> |
|
39 |
</tr> |
|
40 |
<tr> |
|
41 |
<td colspan="2"> |
|
42 |
<table border="0" cellspacing="0" cellpadding="0"> |
|
43 |
<tr> |
|
44 |
<td><input id="search_panel_casesensitivebox" name="search_panel_casesensitivebox" class="checkbox" type="checkbox" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
45 |
<td><label for="search_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td> |
1 | 46 |
</tr> |
47 |
</table> |
|
48 |
</td> |
|
49 |
</tr> |
|
50 |
</table> |
|
51 |
</div> |
|
52 |
||
53 |
<div id="replace_panel" class="panel"> |
|
54 |
<table border="0" cellspacing="0" cellpadding="2"> |
|
55 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
56 |
<td><label for="replace_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td> |
1 | 57 |
<td><input type="text" id="replace_panel_searchstring" name="replace_panel_searchstring" style="width: 200px" /></td> |
58 |
</tr> |
|
59 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
60 |
<td><label for="replace_panel_replacestring">{#searchreplace_dlg.replacewith}</label></td> |
1 | 61 |
<td><input type="text" id="replace_panel_replacestring" name="replace_panel_replacestring" style="width: 200px" /></td> |
62 |
</tr> |
|
63 |
<tr> |
|
64 |
<td colspan="2"> |
|
65 |
<table border="0" cellspacing="0" cellpadding="0" class="direction"> |
|
66 |
<tr> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
67 |
<td><label>{#searchreplace_dlg.direction}</label></td> |
1 | 68 |
<td><input id="replace_panel_backwardsu" name="replace_panel_backwards" class="radio" type="radio" /></td> |
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
69 |
<td><label for="replace_panel_backwardsu">{#searchreplace_dlg.up}</label></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
70 |
<td><input id="replace_panel_backwardsd" name="replace_panel_backwards" class="radio" type="radio" checked="checked" /></td> |
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
71 |
<td><label for="replace_panel_backwardsd">{#searchreplace_dlg.down}</label></td> |
1 | 72 |
</tr> |
73 |
</table> |
|
74 |
</td> |
|
75 |
</tr> |
|
76 |
<tr> |
|
77 |
<td colspan="2"> |
|
78 |
<table border="0" cellspacing="0" cellpadding="0"> |
|
79 |
<tr> |
|
80 |
<td><input id="replace_panel_casesensitivebox" name="replace_panel_casesensitivebox" class="checkbox" type="checkbox" /></td> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
81 |
<td><label for="replace_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td> |
1 | 82 |
</tr> |
83 |
</table> |
|
84 |
</td> |
|
85 |
</tr> |
|
86 |
</table> |
|
87 |
</div> |
|
88 |
||
89 |
</div> |
|
90 |
||
91 |
<div class="mceActionPanel"> |
|
92 |
<div style="float: left"> |
|
543 | 93 |
<input type="submit" id="insert" name="insert" value="{#searchreplace_dlg.findnext}" /> |
459
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
parents:
335
diff
changeset
|
94 |
<input type="button" class="button" id="replaceBtn" name="replaceBtn" value="{#searchreplace_dlg.replace}" onclick="SearchReplaceDialog.searchNext('current');" /> |
31c23016ab62
Upgraded tinyMCE to 3.0.1 in hopes of fixing IE race conditions. Fixed a couple minor syntax errors in Javascript objects declared in various places.
Dan
parents:
335
diff
changeset
|
95 |
<input type="button" class="button" id="replaceAllBtn" name="replaceAllBtn" value="{#searchreplace_dlg.replaceall}" onclick="SearchReplaceDialog.searchNext('all');" /> |
1 | 96 |
</div> |
97 |
||
98 |
<div style="float: right"> |
|
335
67bd3121a12e
Replaced TinyMCE 2.x with 3.0 beta 3. Supports everything but IE. Also rewrote the editor interface completely from the ground up.
Dan
parents:
1
diff
changeset
|
99 |
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" /> |
1 | 100 |
</div> |
101 |
</div> |
|
102 |
</form> |
|
103 |
</body> |
|
104 |
</html> |