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
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
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
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
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
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
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
<base target="_self" />
+ − 11
</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
diff
changeset
+ − 12
<body style="display:none;">
543
+ − 13
<form onsubmit="SearchReplaceDialog.searchNext('none');return false;" action="#">
1
+ − 14
<div class="tabs">
+ − 15
<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
diff
changeset
+ − 16
<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
diff
changeset
+ − 17
<li id="replace_tab"><span><a href="javascript:SearchReplaceDialog.switchMode('replace');" onmousedown="return false;">{#searchreplace_dlg.replace}</a></span></li>
1
+ − 18
</ul>
+ − 19
</div>
+ − 20
+ − 21
<div class="panel_wrapper">
+ − 22
<div id="search_panel" class="panel">
+ − 23
<table border="0" cellspacing="0" cellpadding="2">
+ − 24
<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
diff
changeset
+ − 25
<td><label for="search_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td>
1
+ − 26
<td><input type="text" id="search_panel_searchstring" name="search_panel_searchstring" style="width: 200px" /></td>
+ − 27
</tr>
+ − 28
<tr>
+ − 29
<td colspan="2">
+ − 30
<table border="0" cellspacing="0" cellpadding="0" class="direction">
+ − 31
<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
diff
changeset
+ − 32
<td><label>{#searchreplace_dlg.direction}</label></td>
1
+ − 33
<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
diff
changeset
+ − 34
<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
diff
changeset
+ − 35
<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
diff
changeset
+ − 36
<td><label for="search_panel_backwardsd">{#searchreplace_dlg.down}</label></td>
1
+ − 37
</tr>
+ − 38
</table>
+ − 39
</td>
+ − 40
</tr>
+ − 41
<tr>
+ − 42
<td colspan="2">
+ − 43
<table border="0" cellspacing="0" cellpadding="0">
+ − 44
<tr>
+ − 45
<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
diff
changeset
+ − 46
<td><label for="search_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td>
1
+ − 47
</tr>
+ − 48
</table>
+ − 49
</td>
+ − 50
</tr>
+ − 51
</table>
+ − 52
</div>
+ − 53
+ − 54
<div id="replace_panel" class="panel">
+ − 55
<table border="0" cellspacing="0" cellpadding="2">
+ − 56
<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
diff
changeset
+ − 57
<td><label for="replace_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td>
1
+ − 58
<td><input type="text" id="replace_panel_searchstring" name="replace_panel_searchstring" style="width: 200px" /></td>
+ − 59
</tr>
+ − 60
<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
diff
changeset
+ − 61
<td><label for="replace_panel_replacestring">{#searchreplace_dlg.replacewith}</label></td>
1
+ − 62
<td><input type="text" id="replace_panel_replacestring" name="replace_panel_replacestring" style="width: 200px" /></td>
+ − 63
</tr>
+ − 64
<tr>
+ − 65
<td colspan="2">
+ − 66
<table border="0" cellspacing="0" cellpadding="0" class="direction">
+ − 67
<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
diff
changeset
+ − 68
<td><label>{#searchreplace_dlg.direction}</label></td>
1
+ − 69
<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
diff
changeset
+ − 70
<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
diff
changeset
+ − 71
<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
diff
changeset
+ − 72
<td><label for="replace_panel_backwardsd">{#searchreplace_dlg.down}</label></td>
1
+ − 73
</tr>
+ − 74
</table>
+ − 75
</td>
+ − 76
</tr>
+ − 77
<tr>
+ − 78
<td colspan="2">
+ − 79
<table border="0" cellspacing="0" cellpadding="0">
+ − 80
<tr>
+ − 81
<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
diff
changeset
+ − 82
<td><label for="replace_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td>
1
+ − 83
</tr>
+ − 84
</table>
+ − 85
</td>
+ − 86
</tr>
+ − 87
</table>
+ − 88
</div>
+ − 89
+ − 90
</div>
+ − 91
+ − 92
<div class="mceActionPanel">
+ − 93
<div style="float: left">
543
+ − 94
<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
diff
changeset
+ − 95
<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
diff
changeset
+ − 96
<input type="button" class="button" id="replaceAllBtn" name="replaceAllBtn" value="{#searchreplace_dlg.replaceall}" onclick="SearchReplaceDialog.searchNext('all');" />
1
+ − 97
</div>
+ − 98
+ − 99
<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
diff
changeset
+ − 100
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
1
+ − 101
</div>
+ − 102
</div>
+ − 103
</form>
+ − 104
</body>
+ − 105
</html>