[Zope] RSSChannel and peeping at objects attibutes?

tom smith tom@othermedia.com
Thu, 21 Sep 2000 15:27:19 +0100


I'd like to do something like this...

<dtml-in anObject>

<dtml-in anObject's_attributes>
    <dtml-var attribute_name> <dtml-var attribute_value>
</dtml-in>
</dtml-in>


...is this possible, getting at all an objects bits.

The reason why I want to do this is that I'd like to be able to get hold of
the news stories content and include them in a web page. I'm using the
RSSChannel, and I'd like to be able to

<dtml-in myRSSChannel>
    <dtml-var title><br>
    <dtml-var description>
</dtml-in>