annotate static/js/tinymce/jscripts/tiny_mce/themes/advanced/about.htm @ 45:966cde8635c0

For issue #3, created a separate news app. Created import management command. Using TinyMCE editor in the admin. News model now stores HTML. The news page is now paginated. Each story has a perma-link now.
author Brian Neal <bgneal@gmail.com>
date Thu, 15 Mar 2012 20:02:39 -0500
parents
children
rev   line source
bgneal@45 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
bgneal@45 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@45 3 <head>
bgneal@45 4 <title>{#advanced_dlg.about_title}</title>
bgneal@45 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@45 6 <script type="text/javascript" src="../../utils/mctabs.js"></script>
bgneal@45 7 <script type="text/javascript" src="js/about.js"></script>
bgneal@45 8 </head>
bgneal@45 9 <body id="about" style="display: none">
bgneal@45 10 <div class="tabs">
bgneal@45 11 <ul>
bgneal@45 12 <li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advanced_dlg.about_general}</a></span></li>
bgneal@45 13 <li id="help_tab" style="display:none" aria-hidden="true" aria-controls="help_panel"><span><a href="javascript:mcTabs.displayTab('help_tab','help_panel');" onmousedown="return false;">{#advanced_dlg.about_help}</a></span></li>
bgneal@45 14 <li id="plugins_tab" aria-controls="plugins_panel"><span><a href="javascript:mcTabs.displayTab('plugins_tab','plugins_panel');" onmousedown="return false;">{#advanced_dlg.about_plugins}</a></span></li>
bgneal@45 15 </ul>
bgneal@45 16 </div>
bgneal@45 17
bgneal@45 18 <div class="panel_wrapper">
bgneal@45 19 <div id="general_panel" class="panel current">
bgneal@45 20 <h3>{#advanced_dlg.about_title}</h3>
bgneal@45 21 <p>Version: <span id="version"></span> (<span id="date"></span>)</p>
bgneal@45 22 <p>TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under <a href="../../license.txt" target="_blank">LGPL</a>
bgneal@45 23 by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.</p>
bgneal@45 24 <p>Copyright &copy; 2003-2008, <a href="http://www.moxiecode.com" target="_blank">Moxiecode Systems AB</a>, All rights reserved.</p>
bgneal@45 25 <p>For more information about this software visit the <a href="http://tinymce.moxiecode.com" target="_blank">TinyMCE website</a>.</p>
bgneal@45 26
bgneal@45 27 <div id="buttoncontainer">
bgneal@45 28 <a href="http://www.moxiecode.com" target="_blank"><img src="http://tinymce.moxiecode.com/images/gotmoxie.png" alt="Got Moxie?" border="0" /></a>
bgneal@45 29 </div>
bgneal@45 30 </div>
bgneal@45 31
bgneal@45 32 <div id="plugins_panel" class="panel">
bgneal@45 33 <div id="pluginscontainer">
bgneal@45 34 <h3>{#advanced_dlg.about_loaded}</h3>
bgneal@45 35
bgneal@45 36 <div id="plugintablecontainer">
bgneal@45 37 </div>
bgneal@45 38
bgneal@45 39 <p>&nbsp;</p>
bgneal@45 40 </div>
bgneal@45 41 </div>
bgneal@45 42
bgneal@45 43 <div id="help_panel" class="panel noscroll" style="overflow: visible;">
bgneal@45 44 <div id="iframecontainer"></div>
bgneal@45 45 </div>
bgneal@45 46 </div>
bgneal@45 47
bgneal@45 48 <div class="mceActionPanel">
bgneal@45 49 <input type="button" id="cancel" name="cancel" value="{#close}" onclick="tinyMCEPopup.close();" />
bgneal@45 50 </div>
bgneal@45 51 </body>
bgneal@45 52 </html>