comparison roundup/cgi/templating.py @ 1451:d0c8bc8534ba

bah, missed another one. sigh
author Richard Jones <richard@users.sourceforge.net>
date Wed, 19 Feb 2003 03:59:44 +0000
parents 7a9db3f9022a
children b72f422d1e5e
comparison
equal deleted inserted replaced
1450:7a9db3f9022a 1451:d0c8bc8534ba
733 return pt.render(self._client, req.classname, req) 733 return pt.render(self._client, req.classname, req)
734 734
735 class HTMLUser(HTMLItem): 735 class HTMLUser(HTMLItem):
736 ''' Accesses through the *user* (a special case of item) 736 ''' Accesses through the *user* (a special case of item)
737 ''' 737 '''
738 def __init__(self, client, classname, nodeid): 738 def __init__(self, client, classname, nodeid, anonymous=0):
739 HTMLItem.__init__(self, client, 'user', nodeid) 739 HTMLItem.__init__(self, client, 'user', nodeid, anonymous)
740 self._default_classname = client.classname 740 self._default_classname = client.classname
741 741
742 # used for security checks 742 # used for security checks
743 self._security = client.db.security 743 self._security = client.db.security
744 744

Roundup Issue Tracker: http://roundup-tracker.org/