<p>Patrick offered me a great solution to make HTML pages read like ADP pages:
<p>Change the code in /tcl/ad-html.tcl and in proc_doc ad_serve_html_page by replacing this one line:
<pre>OLD:
set stream [open $full_filename r]
set whole_page [read $stream]
NEW:
set stream [open $full_filename r]
set whole_page [ns_adp_parse -file $full_filename]
</pre>
<p>I'm still not sure how much extra processing goes on
using adp pages over html...
<p>-Bob