annotate media/js/tiny_mce/themes/advanced/source_editor.htm @ 286:72fd300685d5
For #95. You can now make posts with no text in the body if you have attachments. And now if you create a new topic with an attachment, and the POST fails (say you forgot the topic title), we will now re-attach attachments. Also fixed a bug in the smiley code that would arise if it was asked to markup an empty string.
author |
Brian Neal <bgneal@gmail.com> |
date |
Sat, 23 Oct 2010 20:19:46 +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>
|