Re: [Zope] problem creating properties via python methods

2000-11-20 Thread Chris Withers

Try moving your manage_addDTMLDocument:

 dtml-with Test
 dtml-call "manage_addDTMLDocument('hello', REQUEST['new_name'])"
  dtml-with hello
dtml-call "manage_addProperty( id='company_name',
 value=REQUEST['new_name'], type='text', REQUEST=REQUEST)"
dtml-call "manage_addProperty( id='message',
 value=REQUEST['new_message'], type='text', REQUEST=REQUEST)"
dtml-call "manage_addProperty( id='contact_phone',
 value=REQUEST['new_phone'], type='text', REQUEST=REQUEST)"
  /dtml-with
 /dtml-with
  dtml-call "RESPONSE.redirect('manage_main?update_menu=1')"

cheers,

Chris

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )




[Zope] problem creating properties via python methods

2000-11-17 Thread belitski

Hi!
In the following code stored in a DTML Method I create DTMLDocument
called hello and then I want to add it some properties. The error is
that those properties get created in the parent folder object and not in
my "hello" DTMLDocument although I try to reference the self parameter
to "hello" using the with tag. 
I would appreciate any hints to solve it. Thank you in advance. :-)
Andrei
dtml-call "manage_addDTMLDocument('hello', REQUEST['new_name'])"

 dtml-commentREQUEST wichtig sonst properties von parent
object/dtml-comment

dtml-with Test
 dtml-with hello
   dtml-call "manage_addProperty( id='company_name',
value=REQUEST['new_name'], type='text', REQUEST=REQUEST)"
   dtml-call "manage_addProperty( id='message',
value=REQUEST['new_message'], type='text', REQUEST=REQUEST)"
   dtml-call "manage_addProperty( id='contact_phone',
value=REQUEST['new_phone'], type='text', REQUEST=REQUEST)"
 /dtml-with
/dtml-with
 dtml-call "RESPONSE.redirect('manage_main?update_menu=1')"

___
Zope maillist  -  [EMAIL PROTECTED]
http://lists.zope.org/mailman/listinfo/zope
**   No cross posts or HTML encoding!  **
(Related lists - 
 http://lists.zope.org/mailman/listinfo/zope-announce
 http://lists.zope.org/mailman/listinfo/zope-dev )