Edgewall Software

Changes between Initial Version and Version 1 of Ticket #7793, comment 3


Ignore:
Timestamp:
Jan 13, 2011, 2:33:04 PM (13 years ago)
Author:
Christian Boos

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #7793, comment 3

    initial v1  
    1 I'm not so sure about this, as it's basically implementing a na&imacron;ve approach to "multiple owners" which still doesn't really exist in Trac. See #2662.  One problem with this, while uncommon, is that splitting usernames by commas won't work in situations where LDAP DNs are being used as usernames.
     1I'm not so sure about this, as it's basically implementing a naïve approach to "multiple owners" which still doesn't really exist in Trac. See #2662.  One problem with this, while uncommon, is that splitting usernames by commas won't work in situations where LDAP DNs are being used as usernames.
    22
    33Also, that `replace(',', ' ')` is unnecessary--better to do something like `[u.strip() for u in row[2].split(',')]`.  But that's a moot point.