[Zope] Best way to subclass DTML Document and some other ZClasses questions

R. David Murray bitz@bitdance.com
Wed, 16 Aug 2000 22:33:41 -0400 (EDT)


On Wed, 16 Aug 2000, Marcin Kasperski wrote:
> <dtml-with "mk_dtml_document.createInObjectManager(REQUEST['id'],
> REQUEST)">
> 
>   <dtml-call "propertysheets.Extra.manage_editProperties(REQUEST)">
>   <dtml-comment> How can I change original title? </dtml-comment>
>   <dtml-call reindex_object>
> 
> </dtml-with>
> 
> On which object (which property sheet) should I call
> manage_editProperties to change document title?

I believe the title goes in the 'default' property sheet, but more
than that I can't tell you.  'default' gets some special handling
I think, but you could certainly try just using it in place of
Extra in the call up there.

--RDM