Re: [Zope-dev] Render DTML without having it in a Zope object

2000-09-08 Thread Jens Vagelpohl
hi stephan, one project i am working on right now does something similar, retrieving data for business objects out of an RDBMS and rendering it through zope without instantiating e.g. an instance of a product representing the business object. in my case it is handled with external methods (not t

Re: [Zope-dev] Render DTML without having it in a Zope object

2000-09-08 Thread Stephan Richter
>You'd have to feed it to >/lib/python/DocumentTemplate/DT_HTML.py and use the String >method, probably. It is not completely clear to me what you try to do. >Is it indirect dtml calling - this could be difficult (your best bet >would be to use an external method methinks). If not, why can't you

Re: [Zope-dev] Render DTML without having it in a Zope object

2000-09-08 Thread Rik Hoekstra
> > I have some HTML/DTML saved in the database and I want to now display it. What database - something different then data.fs probably? > But before I display, I need to render the DTML that is contained in the text. > Can anyone lead my in the right direction; maybe by telling me which file >

[Zope-dev] Render DTML without having it in a Zope object

2000-09-08 Thread Stephan Richter
Hello everyone, I have some HTML/DTML saved in the database and I want to now display it. But before I display, I need to render the DTML that is contained in the text. Can anyone lead my in the right direction; maybe by telling me which file handles the rendering and I can read some source cod