Skip to content
Snippets Groups Projects
Commit 3ec4c0762ac9 authored by steveb's avatar steveb
Browse files

eudc-1.06

parent 210a35328384
No related branches found
No related tags found
No related merge requests found
1998-05-03 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
* eudc: Released 1.06
* eudc-ldap.el (eudc-ldap-get-field-list): Adapt to change in
ldap.el from `ldap-host-parameters-alist' to
`ldap-host-parameters-plist'
1998-04-29 Oscar Figueiredo <Oscar.Figueiredo@di.epfl.ch>
* eudc: Released 1.05
......
......@@ -17,8 +17,8 @@
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
VERSION = 1.05
AUTHOR_VERSION = 1.05
VERSION = 1.06
AUTHOR_VERSION = 1.06
MAINTAINER = Oscar Figueiredo <Oscar.Figueiredo@epfl.ch>
PACKAGE = eudc
PKG_TYPE = regular
......
......@@ -5,7 +5,7 @@
;; Author: Oscar Figueiredo <Oscar.Figueiredo@epfl.ch>
;; Maintainer: Oscar Figueiredo <Oscar.Figueiredo@epfl.ch>
;; Created: Feb 1998
;; Version: 1.7
;; Version: 1.8
;; Keywords: help
;; This file is part of XEmacs
......@@ -136,8 +136,8 @@
(defun eudc-ldap-get-field-list (dummy &optional objectclass)
"Return a list of valid attribute names for the current server.
OBJECTCLASS is the LDAP obejct class for which the valid
OBJECTCLASS is the LDAP object class for which the valid
attribute names are returned. Default to `person'"
(interactive)
(or eudc-server
(call-interactively 'eudc-set-server))
......@@ -140,11 +140,10 @@
attribute names are returned. Default to `person'"
(interactive)
(or eudc-server
(call-interactively 'eudc-set-server))
(let ((ldap-host-parameters-alist
(list (list eudc-server
'(scope . subtree)
'(sizelimit . 1)))))
(let ((ldap-host-parameters-plist
(list (cons eudc-server
'(scope subtree sizelimit 1)))))
(mapcar 'eudc-ldap-cleanup-record
(ldap-search
(eudc-ldap-format-query-as-rfc1558
......
......@@ -14,7 +14,7 @@
* EUDC:: A client for directory servers (LDAP, PH)
@end direntry
This file documents EUDC v1.05
This file documents EUDC v1.06
EUDC is part of XEmacs.
......@@ -92,7 +92,7 @@
@comment node-name, next, previous, up
This manual documents EUDC v1.05, the Emacs Unified Directory Client.
This manual documents EUDC v1.06, the Emacs Unified Directory Client.
A common interface interface to directory servers using various
protocols such as LDAP or the CCSO white pages directory system (PH/QI)
......@@ -724,7 +724,7 @@
@subsection LDAP Locals
@defvar eudc-ldap-bbdb-conversion-alist
An alist defining the mapping from BBDB to LDAP atribute names.
An alist defining the mapping from BBDB to LDAP attribute names.
(@pxref{Creating BBDB Records})
@end defvar
......@@ -733,7 +733,7 @@
@subsection PH Locals
@defvar eudc-ph-bbdb-conversion-alist
An alist defining the mapping from BBDB to PH/QI atribute names.
An alist defining the mapping from BBDB to PH/QI attribute names.
(@pxref{Creating BBDB Records})
@end defvar
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment