Forum OpenACS Development: Final documentation for no-quote?

Collapse
Posted by Joel Aufrecht on
Where can I find docs for no-quote? Specifically,
  • A short blurb for release notes that hopefully people will find when their pages break. Here's my first draft - is it correct, and is it missing anything?
    No-quote: If your page displays html code instead of rendering it, you need to update your variable handling in the adp page. This is because of the no-quote change for 5.0. The quick-n-dirty fix is to replace a variable that contains HTML to be displayed, such as:
    
    @myvariablewithhtml@
    
    with a tag that changes the processing of the variable to show HTML:
    
    @myvariablewithhtml;noquote@
    
    (get more information at ...?)
    
  • A more complete design doc, current with the code in HEAD, explaining what changed, why it changed, and how to code to it.
Collapse
Posted by Branimir Dolicki on
Joel,

This writeup by Hrvoje should contain all the necessary info:

http://jagor.srce.hr/~hniksic/no-quote-upgrade.html

Especially note the over-quoting tests at the end.

Hope this helps.