Changes between Initial Version and Version 1 of Ticket #10932
- Timestamp:
- Mar 13, 2013, 6:00:51 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10932 – Description
initial v1 5 5 6 6 Line is the raise statement: 7 {{{ 8 #!py 7 9 try: 8 10 self._ldap.simple_bind_s(self.dir_binddn, self.dir_bindpw) … … 11 13 raise TracError('cannot bind to %s: %s' % (self.dir_uri , en)) 12 14 13 14 15 15 }}} 16 16 Also I would like to work on getting memberOf working as we need that functionality in order to use this tool. How would I go about making that level of contribution? I have another python tool that does most of the work already in place. Lastly we have to force referrals off to make this work, currently that means locally forked code. I would like to get that worked in as well to trunk. 17 17