[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/Browser - __init__.py:1.1.2.1 AttributePublisher.py:1.1.2.2
Jim Fulton
jim@zope.com
Fri, 16 Nov 2001 17:08:33 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/Browser
In directory cvs.zope.org:/tmp/cvs-serv30375
Modified Files:
Tag: Zope-3x-branch
AttributePublisher.py
Added Files:
Tag: Zope-3x-branch
__init__.py
Log Message:
Added AttributePublisher
=== Added File Zope3/lib/python/Zope/Publisher/Browser/__init__.py ===
=== Zope3/lib/python/Zope/Publisher/Browser/AttributePublisher.py 1.1.2.1 => 1.1.2.2 ===
if name[-5:]=='.html':
- return getattr(self, name[:5])
+ return getattr(self, name[:-5])
return getattr(self, name)