Hi Barry,
I got an answer from Patrick in response to my thread
"Translation of quote characters stops"
https://openacs.org/bboard/q-and-a-fetch-msg.tcl?msg_id=0002VB
AND it may help you. I was having trouble getting book type
left and right quotes to show up in my HTML pages so I now have
.html files processed the same way as .adp pages using this code
in /tcl/ad-html.tcl and in proc_doc ad_serve_html_page by replacing
this one line:
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]
Hope this helps...and remember to restart...
I'm still not sure how much extra processing goes on
using adp pages over html...
-Bob