koha-bugs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-bugs] [Bug 1087] New: Member info from LDAP stuff?


From: bugzilla-daemon
Subject: [Koha-bugs] [Bug 1087] New: Member info from LDAP stuff?
Date: 30 May 2006 18:31:23 -0000

http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=1087

           Summary: Member info from LDAP stuff?
           Product: Koha
           Version: 2.2.5
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: P2
         Component: Members
        AssignedTo: address@hidden
        ReportedBy: address@hidden
         QAContact: address@hidden


I've put together some stuff to link koha members to a LDAP.  I haven't got all
the functions filled out because our installation doesn't require them.

Also a database table will need to be added for this to work the way I have it.
 A table to translate LDAP attribs to Koha database fields.  Like this:

CREATE TABLE `borrowers_ldap_structure` (
  `ldapid` int(8) NOT NULL auto_increment,
  `liblibrarian` varchar(255) NOT NULL default '',
  `kohafield` varchar(40) default NULL,
  `ldapfield` varchar(255) default NULL,
  `regex` varchar(40) default NULL,
  PRIMARY KEY  (`ldapid`),
  KEY `KohaKey` (`kohafield`),
  KEY `LdapKey` (`ldapfield`)
);



This may be useful for you.




------- You are receiving this mail because: -------
You are the QA contact for the bug, or are watching the QA contact.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]