Changes between Version 6 and Version 7 of LdapSessionSettingsPatch


Ignore:
Timestamp:
Oct 28, 2009, 10:00:38 AM (14 years ago)
Author:
Michael Renzmann
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • LdapSessionSettingsPatch

    v6 v7  
    1 = Autofill authenticated user's session settings from Active Directory =
    2 
    3 == Description ==
    4 
    5 This patch adds functionality to retrieve email and name from an Active Directory server for a logged in user if their either their 'Name' and/or 'Email' session settings are blank.  Looks for [session] trac.ini
    6 flags to enable/disable each.
    7 
    8 Dependencies:
    9  * [http://sourceforge.net/projects/pywin32/ pywin32]
    10  * [http://tgolden.sc.sabren.com/python/active_directory.html active_directory]
    11  * Trac 0.11dev-r5883 or newer (might work with lower revs, but this is what I tested on);
    12 
    13 NOTE: this patch adds module-level imports in session.py for the two required modules, {{{pywin32}}} and {{{active_directory}}}.  These imports are wrapped inside (1) a platform sanity-check ({{{platform.system() == 'Windows'}}}) and (2) each import is within its own try/except.  If any of the checks fail, then none of the new code will ever be reached.
    14 
    15 
    16 == Bugs/Feature Requests ==
    17 
    18 Existing bugs and feature requests for LdapSessionSettingsPatch are
    19 [query:?status=new&status=assigned&status=reopened&group=&component=LdapSessionSettingsPatch&order=priority  here].
    20 
    21 If you have any issues, create a
    22 [/newticket?component=LdapSessionSettingsPatch&owner=gt4329b new ticket].
    23 
    24 == Download, Source ==
    25 
    26 Download the [download:ldapsessionsettingspatch zipped source], check out [/svn/ldapsessionsettingspatch using Subversion], or [source:ldapsessionsettingspatch browse the source] with Trac.
    27 
    28 == Example ==
    29 
    30  * install the required modules:  [http://sourceforge.net/projects/pywin32/ pywin32] and [http://tgolden.sc.sabren.com/python/active_directory.html active_directory]
    31  * Apply the file patch session_patch.diff to your existing /trac/web/session.py (or just copy (and rename) the provided session_full.py over your existing /trac/web/session.py -- BUT BACKUP YOUR ORIGINAL FIRST!!)
    32  * Modify your trac.ini file:
    33 {{{
    34 [session]
    35 ## this setting indicates that if the user hasn't filled
    36 ##   in a name on their 'Preferences' page, go try and
    37 ##   grab it from the LDAP/AD server (the 'displayName' user property)
    38 ## defaults:
    39 ##   get_name_from_ldap_if_empty = false
    40 ##   get_name_from_ldap_userattribute = displayName
    41 get_name_from_ldap_if_empty = true
    42 get_name_from_ldap_userattribute = displayName
    43 
    44 ## this setting indicates that if the user hasn't filled
    45 ##   in an email on their 'Preferences' page, go try and
    46 ##   grab it from the LDAP/AD server (the 'mail' user property)
    47 ## defaults:
    48 ##   get_email_from_ldap_if_empty = false
    49 ##   get_email_from_ldap_userattribute = mail
    50 get_email_from_ldap_if_empty = true
    51 get_email_from_ldap_userattribute = mail
    52 
    53 }}}
    54 
    55 == Recent Changes ==
    56 
    57 [[ChangeLog(ldapsessionsettingspatch, 3)]]
    58 
    59 == Author/Contributors ==
    60 
    61 '''Author:''' [wiki:gt4329b] [[BR]]
    62 '''Contributors:'''
     1[[redirect(wiki:ActiveDirectoryLookupPatch)]]