[Zope] Methods with partial tags...

Curtis Maloney curtis@umd.com.au
Mon, 28 Feb 2000 15:22:27 +1100


Hello again...

I seem to be running into a problem with the 'helpful' parsing of ZOPE.  I have
a DTML method which contains a <dtml-border> tag, since it will be part of a
multi-part e-mail.

The problem is, when I try to submit the changes, the parser spits the dummy.

The structure will be, basically->

--DTML Document--

fluff here....
<dtml-sendmail   blahblahblah>
some crap goes here...
<dtml-mime yadda yadda>
<dtml-in "someMethodHere()">
  <dtml-var dtmlMethod>
</dtml-in>
</dtml-mime>
</dtml-sendmail>

--DTML Method (dtmlMethod) --

<dtml-border  youGetTheIdea>
print some information...


-- END --


now, from my understanding, the parser is snakey because i am putting in the
<dtml-border> tag, which should only occur between a <dtml-mime> and a
</dtml-mime>

It WILL, but not in it's own method...... any suggestions?

Have a better one,
	Curtis.