[Zope] Adding ZClass to a folder

2000-09-27 Thread brocken22

Hallo,
that's a dumb question.
How do you add a ZCLass to a subfolder.
That's my try:
-   dtml- with "SubFolderName.manage_addProduct['MetaTypeName']"
 dtml-call "ZClass_add(_.None, _, NoRedir=1)"

  /dtml-with

-- 
Sent through GMX FreeMail - http://www.gmx.net


___
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 )




Re: [Zope] Adding ZClass to a folder

2000-09-27 Thread Tim Cook

[EMAIL PROTECTED] wrote:
 How do you add a ZCLass to a subfolder.
 That's my try:
 -   dtml- with "SubFolderName.manage_addProduct['MetaTypeName']"
  dtml-call "ZClass_add(_.None, _, NoRedir=1)"
 
   /dtml-with
 
 --

Close. Try this.

dtml-with SubFolder
   dtml- with "ProductName.manage_addProduct['MetaTypeName']"
dtml-call "ZClass_add(_.None, _, NoRedir=1)"
/dtml-with
/dtmlwith SubFolder


-- Tim Cook --
Cook Information Systems | Office: (901) 884-4126 8am-5pm CDT
* It's easy to stop making mistakes. Just stop having ideas.  *
FreePM Project Coordinator http://www.freepm.org
OSHCA Founding Supporter http://www.oshca.org

___
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 )