[Zope-Checkins] CVS: Zope2 - MailHost.py:1.61

shane@digicool.com shane@digicool.com
Thu, 7 Jun 2001 18:19:15 -0400 (EDT)


Update of /cvs-repository/Zope2/lib/python/Products/MailHost
In directory korak.digicool.com:/tmp/cvs-serv16812/Products/MailHost

Modified Files:
	MailHost.py 
Log Message:
The _need__name__ protocol assigns a name to DTMLMethods implicitly
so that ExtensionClass can find the correct <name>__roles__ attribute
of the method's class.  However it was discovered that this protocol
has a flaw: if a DTMLMethod is bound to multiple names, there is no
way for default__class_init__ to tell which name is the right one.

This change adds code that detects the condition and makes the name
explicit in all places where it occurs in the Zope core.  There are
likely products out there that have the same condition so they will
need a small correction.  For now this is a warning but it might be
appropriate to later make the condition an error.



--- Updated File MailHost.py in package Zope2 --
--- MailHost.py	2001/01/11 15:03:52	1.60
+++ MailHost.py	2001/06/07 22:18:44	1.61
@@ -128,6 +128,7 @@
     'a mailhost...?'
     meta_type='Mail Host'
     manage=manage_main=DTMLFile('dtml/manageMailHost', globals())
+    manage_main._setName('manage_main')
     index_html=None
     icon='misc_/MailHost/MHIcon'