Ignore:
Timestamp:
22 Nov 2006, 16:54:23 (18 years ago)
Author:
joachim
Message:

removed username from member_search mask, because there is no easy way to
not search for student-members. In my opinion search for firstname, lastname
and email is sufficient.
The local-role SectionReader? is set for Authenticated in exportimport.py,
but now the import takes 3 times as long. I think we have to remove this
setting from exportimport.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • WAeUP_SRP/trunk/skins/waeup_directory/search_members.py

    r917 r924  
    2424        mapping[key] = value
    2525
    26 result_fields = context.getDirectoryResultFields(dir.getId(),
    27                                                  dir.title_field)
     26#result_fields = context.getDirectoryResultFields(dir.getId(),
     27#                                                 dir.title_field)
     28result_fields = [{'id': 'sn', 'title': 'label_last_name', 'sort': 'asc'},
     29                  {'id': 'givenName', 'title': 'label_first_name'},
     30                  {'id': 'email', 'title': 'label_email'},
     31                  #{'id': id_field, 'title': 'label_user_name'},
     32                  ]
    2833
    2934return_fields = []
Note: See TracChangeset for help on using the changeset viewer.