This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# LDAP Remote User Backend for Django 1.3 | |
# Hugh Saunders - [email protected] | |
# Written for the Surgical Materials Testing Laboratory - http://smtl.co.uk | |
# 2011 | |
from django.contrib.auth.backends import RemoteUserBackend | |
import settings as s | |
import ldap | |
class LDAPRemoteUserBackend(RemoteUserBackend): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def search(request): | |
search_string=request.POST['search_string'] | |
if re.match(r'^\s*$',search_string): return redirect('home') | |
results=[] | |
search_fields=('id','name') | |
equipment_models = \ | |
[model for model in django.db.models.get_models() if\ | |
model._meta.db_table.startswith("equipment_")] | |
for model in equipment_models: | |
query=halipsearch.get_query(search_string,search_fields) |
NewerOlder