Ticket #487: ticket487_alt.patch
| File ticket487_alt.patch, 1.8 kB (added by FND, 7 months ago) |
|---|
alternative implementation, rendering the Post-Script section obsolete by moving Post-Body below the core code, to the very end of the <body> section |
-
html/tiddlywiki.template.html
old new 85 85 <!--@@posttiddlers@@--> 86 86 </div> 87 87 <!--POST-STOREAREA--> 88 <!--POST-BODY-START-->89 <!--@@postbody@@-->90 <!--POST-BODY-END-->91 88 <script type="text/javascript"> 92 89 //<![CDATA[ 93 90 <!--@@prejs@@--> … … 104 101 document.write("<applet style='position:absolute;left:-1px' name='TiddlySaver' code='TiddlySaver.class' archive='TiddlySaver.jar' width='1' height='1'></applet>"); 105 102 //]]> 106 103 </script> 107 <!--POST-SCRIPT-START--> 108 <!--POST-SCRIPT-END--> 104 <!--POST-BODY-START--> 105 <!--@@postbody@@--> 106 <!--POST-BODY-END--> 109 107 </body> 110 108 </html> -
js/Lingo.js
old new 415 415 MarkupPreHead: "This tiddler is inserted at the top of the <head> section of the TiddlyWiki HTML file", 416 416 MarkupPostHead: "This tiddler is inserted at the bottom of the <head> section of the TiddlyWiki HTML file", 417 417 MarkupPreBody: "This tiddler is inserted at the top of the <body> section of the TiddlyWiki HTML file", 418 MarkupPostBody: "This tiddler is inserted at the end of the <body> section of the TiddlyWiki HTML file immediately before the script block",418 MarkupPostBody: "This tiddler is inserted at the end of the <body> section of the TiddlyWiki HTML file", 419 419 OptionsPanel: "This shadow tiddler is used as the contents of the options panel slider in the right-hand sidebar", 420 420 PageTemplate: "The HTML template in this shadow tiddler determines the overall ~TiddlyWiki layout", 421 421 PluginManager: "This shadow tiddler provides access to the plugin manager",