RE: [Zope] Poor Procedural Programmer Needs OOPish Enlightenment

2001-01-03 Thread sean . upton
Not sure if this is your problem, but since methods don't have namespaces, I'm not sure why your code could not be reduced to: dtml-if expr="id != 'edit'" dtml-var index.html dtml-else dtml-var chunk_editFrameset /dtml-if The namespace of index_html right now is 'edit' (or another folder that

Re: [Zope] Poor Procedural Programmer Needs OOPish Enlightenment

2001-01-03 Thread Geoffrey L. Wright
[EMAIL PROTECTED] writes: Not sure if this is your problem, but since methods don't have namespaces, I'm not sure why your code could not be reduced to: dtml-if expr="id != 'edit'" dtml-var index.html dtml-else dtml-var chunk_editFrameset /dtml-if You're right -- this works just as