thomascube
2011-04-20 a9251be2f09fb5f18a85d201c67668c70980efe3
commit | author | age
d9344f 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
f0ea59 2 <html xmlns="http://www.w3.org/1999/xhtml">
S 3 <head>
d9344f 4     <title>{#searchreplace_dlg.replace_title}</title>
S 5     <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
6     <script type="text/javascript" src="../../utils/mctabs.js"></script>
7     <script type="text/javascript" src="../../utils/form_utils.js"></script>
8     <script type="text/javascript" src="js/searchreplace.js"></script>
f0ea59 9     <link rel="stylesheet" type="text/css" href="css/searchreplace.css" />
S 10 </head>
a9251b 11 <body style="display:none;" role="application" aria-labelledby="app_title">
T 12 <span id="app_title" style="display:none">{#searchreplace_dlg.replace_title}</span>
d9344f 13 <form onsubmit="SearchReplaceDialog.searchNext('none');return false;" action="#">
f0ea59 14     <div class="tabs">
S 15         <ul>
a9251b 16             <li id="search_tab" aria-controls="search_panel"><span><a href="javascript:SearchReplaceDialog.switchMode('search');" onmousedown="return false;">{#searchreplace.search_desc}</a></span></li>
T 17             <li id="replace_tab" aria-controls="replace_panel"><span><a href="javascript:SearchReplaceDialog.switchMode('replace');" onmousedown="return false;">{#searchreplace_dlg.replace}</a></span></li>
f0ea59 18         </ul>
S 19     </div>
20
21     <div class="panel_wrapper">
22         <div id="search_panel" class="panel">
a9251b 23             <table role="presentation" border="0" cellspacing="0" cellpadding="2">
f0ea59 24                 <tr>
d9344f 25                     <td><label for="search_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td>
a9251b 26                     <td><input type="text" id="search_panel_searchstring" name="search_panel_searchstring" style="width: 200px" aria-required="true" /></td>
f0ea59 27                 </tr>
S 28                 <tr>
29                     <td colspan="2">
a9251b 30                         <table role="presentation" border="0" cellspacing="0" cellpadding="0" class="direction">
T 31                             <tr role="group" aria-labelledby="search_panel_backwards_label">
32                                 <td><label id="search_panel_backwards_label">{#searchreplace_dlg.direction}</label></td>
f0ea59 33                                 <td><input id="search_panel_backwardsu" name="search_panel_backwards" class="radio" type="radio" /></td>
d9344f 34                                 <td><label for="search_panel_backwardsu">{#searchreplace_dlg.up}</label></td>
S 35                                 <td><input id="search_panel_backwardsd" name="search_panel_backwards" class="radio" type="radio" checked="checked" /></td>
36                                 <td><label for="search_panel_backwardsd">{#searchreplace_dlg.down}</label></td>
f0ea59 37                             </tr>
S 38                         </table>
39                     </td>
40                 </tr>
41                 <tr>
42                     <td colspan="2">
a9251b 43                         <table role="presentation" border="0" cellspacing="0" cellpadding="0">
f0ea59 44                             <tr>
S 45                                 <td><input id="search_panel_casesensitivebox" name="search_panel_casesensitivebox" class="checkbox" type="checkbox" /></td>
d9344f 46                                 <td><label for="search_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td>
f0ea59 47                             </tr>
S 48                         </table>
49                     </td>
50                 </tr>
51             </table>
52         </div>
53
54         <div id="replace_panel" class="panel">
a9251b 55             <table role="presentation" border="0" cellspacing="0" cellpadding="2">
f0ea59 56                 <tr>
d9344f 57                     <td><label for="replace_panel_searchstring">{#searchreplace_dlg.findwhat}</label></td>
a9251b 58                     <td><input type="text" id="replace_panel_searchstring" name="replace_panel_searchstring" style="width: 200px" aria-required="true" /></td>
f0ea59 59                 </tr>
S 60                 <tr>
d9344f 61                     <td><label for="replace_panel_replacestring">{#searchreplace_dlg.replacewith}</label></td>
a9251b 62                     <td><input type="text" id="replace_panel_replacestring" name="replace_panel_replacestring" style="width: 200px" aria-required="true" /></td>
f0ea59 63                 </tr>
S 64                 <tr>
65                     <td colspan="2">
a9251b 66                         <table role="presentation" border="0" cellspacing="0" cellpadding="0" class="direction">
T 67                             <tr role="group" aria-labelledby="replace_panel_dir_label">
68                                 <td><label id="replace_panel_dir_label">{#searchreplace_dlg.direction}</label></td>
f0ea59 69                                 <td><input id="replace_panel_backwardsu" name="replace_panel_backwards" class="radio" type="radio" /></td>
d9344f 70                                 <td><label for="replace_panel_backwardsu">{#searchreplace_dlg.up}</label></td>
S 71                                 <td><input id="replace_panel_backwardsd" name="replace_panel_backwards" class="radio" type="radio" checked="checked" /></td>
72                                 <td><label for="replace_panel_backwardsd">{#searchreplace_dlg.down}</label></td>
f0ea59 73                             </tr>
S 74                         </table>
75                     </td>
76                 </tr>
77                 <tr>
78                     <td colspan="2">
a9251b 79                         <table role="presentation" border="0" cellspacing="0" cellpadding="0">
f0ea59 80                             <tr>
S 81                                 <td><input id="replace_panel_casesensitivebox" name="replace_panel_casesensitivebox" class="checkbox" type="checkbox" /></td>
d9344f 82                                 <td><label for="replace_panel_casesensitivebox">{#searchreplace_dlg.mcase}</label></td>
f0ea59 83                             </tr>
S 84                         </table>
85                     </td>
86                 </tr>
87             </table>
88         </div>
89
90     </div>
91
92     <div class="mceActionPanel">
69d05c 93         <input type="submit" id="insert" name="insert" value="{#searchreplace_dlg.findnext}" />
A 94         <input type="button" class="button" id="replaceBtn" name="replaceBtn" value="{#searchreplace_dlg.replace}" onclick="SearchReplaceDialog.searchNext('current');" />
95         <input type="button" class="button" id="replaceAllBtn" name="replaceAllBtn" value="{#searchreplace_dlg.replaceall}" onclick="SearchReplaceDialog.searchNext('all');" />
96         <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
f0ea59 97     </div>
S 98 </form>
99 </body>
100 </html>