My hack will load a lot faster than the default template CP for one simple reason: there's a lot less HTML to download.
In the standard editor, for every single template you have this code:
<li><font color="red">headinclude</font> <a href="template.php?action=edit&templateid=4776&gro up=">[edit]</a> <a href="template.php?action=remove&templateid=4776&g roup=">[revert to original]</a> <a href="template.php?action=view&title=headinclude">[view original]</a></li>
(whew!)
... whereas the same template in my editor will have only this code:
<option value="4776" style="color:red">headinclude</a>
... due to the fact that the actions and sessionhash are all handled by the <form>.
The massive wall of HTML in the default editor was the first reason why I made the hack.
|