Yes. Inside the actual field I use HTML and python. If I use
{{=XML(blog.body)}} then I can insert all the HTML I want inside that field
from the db administration. Very helpful.
But now I want to be able to insert {{=blog.title}} inside the blog.body
field and when it renders int he view I want to execute {{=blog.title}}.
Also, I have an HTML view that aggregates all of the blogs. So I want to
include this inside the field blog.body.
So with your example are you saying when I use {{=XML(blog.body)}} I should
use {{=eval(blog.body)}} or are you telling me to put eval or exec inside
the {{=blog.title}} that I am calling inside the field? So would it be
{{=exec(blog.body)}} or {{=exec(blog.title)}} inside blog.body?
Sorry, this all seems confusing. Thanks.
--