annotate media/js/tiny_mce/themes/advanced/source_editor.htm @ 260:3a4bbf9c2cce
Fixing #107. Apparently some signal handlers were getting connected twice (double import?) and thus saving a forum post would cause 2 email notifications to go out to the post topic's subscribers. Use the dispatch_uid parameter in the connect call to work around this issue.
author |
Brian Neal <bgneal@gmail.com> |
date |
Wed, 22 Sep 2010 00:24:59 +0000 |
parents |
237710206167 |
children |
|
rev |
line source |
bgneal@45
|
1 <html xmlns="http://www.w3.org/1999/xhtml">
|
bgneal@45
|
2 <head>
|
bgneal@45
|
3 <title>{#advanced_dlg.code_title}</title>
|
bgneal@45
|
4 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
bgneal@45
|
5 <script type="text/javascript" src="js/source_editor.js"></script>
|
bgneal@45
|
6 </head>
|
bgneal@45
|
7 <body onresize="resizeInputs();" style="display:none; overflow:hidden;">
|
bgneal@45
|
8 <form name="source" onsubmit="saveContent();return false;" action="#">
|
bgneal@45
|
9 <div style="float: left" class="title">{#advanced_dlg.code_title}</div>
|
bgneal@45
|
10
|
bgneal@45
|
11 <div id="wrapline" style="float: right">
|
bgneal@45
|
12 <input type="checkbox" name="wraped" id="wraped" onclick="toggleWordWrap(this);" class="wordWrapCode" /><label for="wraped">{#advanced_dlg.code_wordwrap}</label>
|
bgneal@45
|
13 </div>
|
bgneal@45
|
14
|
bgneal@45
|
15 <br style="clear: both" />
|
bgneal@45
|
16
|
bgneal@45
|
17 <textarea name="htmlSource" id="htmlSource" rows="15" cols="100" style="width: 100%; height: 100%; font-family: 'Courier New',Courier,monospace; font-size: 12px;" dir="ltr" wrap="off" class="mceFocus"></textarea>
|
bgneal@45
|
18
|
bgneal@45
|
19 <div class="mceActionPanel">
|
bgneal@183
|
20 <input type="submit" name="insert" value="{#update}" id="insert" />
|
bgneal@183
|
21 <input type="button" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" id="cancel" />
|
bgneal@45
|
22 </div>
|
bgneal@45
|
23 </form>
|
bgneal@45
|
24 </body>
|
bgneal@45
|
25 </html>
|