annotate static/js/tiny_mce/themes/advanced/charmap.htm @ 318:c550933ff5b6

Fix a bug where you'd get an error when trying to delete a forum thread (topic does not exist). Apparently when you call topic.delete() the posts would get deleted, but the signal handler for each one would run, and it would try to update the topic's post count or something, but the topic was gone? Reworked the code a bit and explicitly delete the posts first. I also added a sync() call on the parent forum since post counts were not getting adjusted.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 Feb 2011 21:46:52 +0000
parents 88b2b9cb8c1f
children 6c182ceb7147
rev   line source
bgneal@312 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
bgneal@312 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@312 3 <head>
bgneal@312 4 <title>{#advanced_dlg.charmap_title}</title>
bgneal@312 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@312 6 <script type="text/javascript" src="js/charmap.js"></script>
bgneal@312 7 </head>
bgneal@312 8 <body id="charmap" style="display:none">
bgneal@312 9 <table align="center" border="0" cellspacing="0" cellpadding="2">
bgneal@312 10 <tr>
bgneal@312 11 <td colspan="2" class="title">{#advanced_dlg.charmap_title}</td>
bgneal@312 12 </tr>
bgneal@312 13 <tr>
bgneal@312 14 <td id="charmapView" rowspan="2" align="left" valign="top">
bgneal@312 15 <!-- Chars will be rendered here -->
bgneal@312 16 </td>
bgneal@312 17 <td width="100" align="center" valign="top">
bgneal@312 18 <table border="0" cellpadding="0" cellspacing="0" width="100" style="height:100px">
bgneal@312 19 <tr>
bgneal@312 20 <td id="codeV">&nbsp;</td>
bgneal@312 21 </tr>
bgneal@312 22 <tr>
bgneal@312 23 <td id="codeN">&nbsp;</td>
bgneal@312 24 </tr>
bgneal@312 25 </table>
bgneal@312 26 </td>
bgneal@312 27 </tr>
bgneal@312 28 <tr>
bgneal@312 29 <td valign="bottom" style="padding-bottom: 3px;">
bgneal@312 30 <table width="100" align="center" border="0" cellpadding="2" cellspacing="0">
bgneal@312 31 <tr>
bgneal@312 32 <td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">HTML-Code</td>
bgneal@312 33 </tr>
bgneal@312 34 <tr>
bgneal@312 35 <td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeA" align="center">&nbsp;</td>
bgneal@312 36 </tr>
bgneal@312 37 <tr>
bgneal@312 38 <td style="font-size: 1px;">&nbsp;</td>
bgneal@312 39 </tr>
bgneal@312 40 <tr>
bgneal@312 41 <td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;">NUM-Code</td>
bgneal@312 42 </tr>
bgneal@312 43 <tr>
bgneal@312 44 <td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeB" align="center">&nbsp;</td>
bgneal@312 45 </tr>
bgneal@312 46 </table>
bgneal@312 47 </td>
bgneal@312 48 </tr>
bgneal@312 49 </table>
bgneal@312 50
bgneal@312 51 </body>
bgneal@312 52 </html>