Some fixes to follow coding conventions.
[emacs.git] / lisp / net / eudc-vars.el
blob94c9a71eb0f4652d2348e8364755cb8d13b03652
1 ;;; eudc-vars.el --- Emacs Unified Directory Client
3 ;; Copyright (C) 1998, 1999, 2000 Free Software Foundation, Inc.
5 ;; Author: Oscar Figueiredo <oscar@xemacs.org>
6 ;; Maintainer: Oscar Figueiredo <oscar@xemacs.org>
7 ;; Keywords: help
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
26 ;;; Commentary:
28 ;;; Code:
30 (require 'custom)
32 ;;{{{ EUDC Main Custom Group
34 (defgroup eudc nil
35 "Emacs Unified Directory Client."
36 :version "21.1"
37 :link '(info-link "(eudc)")
38 :group 'mail
39 :group 'comm)
41 (defcustom eudc-server nil
42 "*The name or IP address of the directory server.
43 A port number may be specified by appending a colon and a
44 number to the name of the server. Use `localhost' if the directory
45 server resides on your computer (BBDB backend)."
46 :type '(choice (string :tag "Server") (const :tag "None" nil))
47 :group 'eudc)
49 ;; Known protocols (used in completion)
50 ;; Not to be mistaken with `eudc-supported-protocols'
51 (defvar eudc-known-protocols '(bbdb ph ldap))
53 (defvar eudc-supported-protocols nil
54 "Protocols currently supported by EUDC.
55 This variable is updated when protocol-specific libraries
56 are loaded, *do not change manually*.")
58 (defcustom eudc-protocol nil
59 "*The directory protocol to use to query the server.
60 Supported protocols are specified by `eudc-supported-protocols'."
61 :type `(choice :menu-tag "Protocol"
62 ,@(mapcar (lambda (s)
63 (list 'const ':tag (symbol-name s) s))
64 eudc-known-protocols)
65 (const :tag "None" nil))
66 :group 'eudc)
69 (defcustom eudc-strict-return-matches t
70 "*Ignore or allow entries not containing all requested return attributes.
71 If non-nil, such entries are ignored."
72 :type 'boolean
73 :group 'eudc)
75 (defcustom eudc-default-return-attributes nil
76 "*A list of default attributes to extract from directory entries.
77 If set to the symbol `all', return all attributes.
78 A value of nil means return the default attributes as configured in the
79 server."
80 :type '(choice :menu-tag "Return Attributes"
81 (const :menu-tag "Server defaults (nil)" nil)
82 (const :menu-tag "All" all)
83 (repeat :menu-tag "Attribute list"
84 :tag "Attribute name"
85 :value (nil)
86 (symbol :tag "Attribute name")))
87 :group 'eudc)
89 (defcustom eudc-multiple-match-handling-method 'select
90 "*What to do when multiple entries match an inline expansion query.
91 Possible values are:
92 `first' (equivalent to nil) which means keep the first match only,
93 `select' pop-up a selection buffer,
94 `all' expand to all matches,
95 `abort' the operation is aborted, an error is signaled."
96 :type '(choice :menu-tag "Method"
97 (const :menu-tag "Use First"
98 :tag "Use First" first)
99 (const :menu-tag "Select Interactively"
100 :tag "Select Interactively" select)
101 (const :menu-tag "Use All"
102 :tag "Use All" all)
103 (const :menu-tag "Abort Operation"
104 :tag "Abort Operation" abort)
105 (const :menu-tag "Default (Use First)"
106 :tag "Default (Use First)" nil))
107 :group 'eudc)
109 (defcustom eudc-duplicate-attribute-handling-method '((email . duplicate))
110 "*A method to handle entries containing duplicate attributes.
111 This is either an alist (ATTR . METHOD) or a symbol METHOD.
112 The alist form of the variable associates a method to an individual attribute,
113 the second form specifies a method applicable to all attributes.
114 Available methods are:
115 `list' or nil lets the value of the attribute be a list of values,
116 `first' keeps the first value and discards the others,
117 `concat' concatenates the values into a single multiline string,
118 `duplicate' duplicates the entire entry into as many instances as
119 different values."
120 :type '(choice (const :menu-tag "List" list)
121 (const :menu-tag "First" first)
122 (const :menu-tag "Concat" concat)
123 (const :menu-tag "Duplicate" duplicate)
124 (repeat :menu-tag "Per Attribute Specification"
125 :tag "Per Attribute Specification"
126 (cons :tag "Attribute/Method"
127 :value (nil . list)
128 (symbol :tag "Attribute name")
129 (choice :tag "Method"
130 :menu-tag "Method"
131 (const :menu-tag "List" list)
132 (const :menu-tag "First" first)
133 (const :menu-tag "Concat" concat)
134 (const :menu-tag "Duplicate" duplicate)))))
135 :group 'eudc)
137 (defcustom eudc-inline-query-format '((name)
138 (firstname name))
139 "*Format of an inline expansion query.
140 This is a list of FORMATs. A FORMAT is itself a list of one or more
141 EUDC attribute names. A FORMAT applies if it contains as many attributes as
142 there are individual words in the inline query string.
143 If several FORMATs apply then they are tried in order until a match
144 is found.
145 If nil, all the words are mapped onto the default server or protocol
146 attribute name.
148 The attribute names in FORMATs are not restricted to EUDC attribute names
149 but can also be protocol/server specific names. In this case, this variable
150 must be set in a protocol/server-local fashion, see `eudc-server-set' and
151 `eudc-protocol-set'."
152 :tag "Format of Inline Expansion Queries"
153 :type '(repeat
154 (repeat
155 :menu-tag "Format"
156 :tag "Format"
157 (choice
158 :tag "Attribute"
159 (const :menu-tag "First Name" :tag "First Name" firstname)
160 (const :menu-tag "Surname" :tag "Surname" name)
161 (const :menu-tag "Email Address" :tag "Email Address" email)
162 (const :menu-tag "Phone" :tag "Phone" phone)
163 (symbol :menu-tag "Other" :tag "Attribute name"))))
164 :group 'eudc)
166 (defcustom eudc-expansion-overwrites-query t
167 "*If non nil, expanding a query overwrites the query string."
168 :type 'boolean
169 :group 'eudc)
171 (defcustom eudc-inline-expansion-format '("%s" email)
172 "*A list specifying the format of the expansion of inline queries.
173 This variable controls what `eudc-expand-inline' actually inserts in
174 the buffer. First element is a string passed to `format'. Remaining
175 elements are symbols indicating attribute names; the corresponding values
176 are passed as additional arguments to `format'."
177 :type '(list
178 (string :tag "Format String")
179 (repeat :inline t
180 :tag "Attributes"
181 (choice
182 :tag "Attribute"
183 (const :menu-tag "First Name" :tag "First Name" firstname)
184 (const :menu-tag "Surname" :tag "Surname" name)
185 (const :menu-tag "Email Address" :tag "Email Address" email)
186 (const :menu-tag "Phone" :tag "Phone" phone)
187 (symbol :menu-tag "Other")
188 (symbol :tag "Attribute name"))))
189 :group 'eudc)
191 (defcustom eudc-inline-expansion-servers 'server-then-hotlist
192 "*Which servers to contact for the expansion of inline queries.
193 Possible values are:
194 `current-server': the EUDC current server.
195 `hotlist': the servers of the hotlist in the order they appear,
196 `server-then-hotlist': the current server and then the servers of
197 the hotlist."
198 :type '(choice :tag "Servers"
199 :menu-tag "Servers"
200 (const :menu-tag "Current server" current-server)
201 (const :menu-tag "Servers in the hotlist" hotlist)
202 (const :menu-tag "Current server then hotlist" server-then-hotlist))
203 :group 'eudc)
205 (defcustom eudc-max-servers-to-query nil
206 "*Maximum number of servers to query for an inline expansion.
207 If nil, query all servers available from `eudc-inline-expansion-servers'."
208 :tag "Max Number of Servers to Query"
209 :type '(choice :tag "Max. Servers"
210 :menu-tag "Max. Servers"
211 (const :menu-tag "No limit" nil)
212 (const :menu-tag "1" 1)
213 (const :menu-tag "2" 2)
214 (const :menu-tag "3" 3)
215 (const :menu-tag "4" 4)
216 (const :menu-tag "5" 5)
217 (integer :menu-tag "Set"))
218 :group 'eudc)
220 (defcustom eudc-query-form-attributes '(name firstname email phone)
221 "*A list of attributes presented in the query form."
222 :tag "Attributes in Query Forms"
223 :type '(repeat
224 (choice
225 :tag "Attribute"
226 (const :menu-tag "First Name" :tag "First Name" firstname)
227 (const :menu-tag "Surname" :tag "Surname" name)
228 (const :menu-tag "Email Address" :tag "Email Address" email)
229 (const :menu-tag "Phone" :tag "Phone" phone)
230 (symbol :menu-tag "Other" :tag "Attribute name")))
231 :group 'eudc)
233 (defcustom eudc-user-attribute-names-alist '((url . "URL")
234 (callsign . "HAM Call Sign")
235 (id . "ID")
236 (email . "E-Mail")
237 (firstname . "First Name")
238 (cn . "Full Name")
239 (sn . "Surname")
240 (givenname . "First Name")
241 (ou . "Unit")
242 (labeledurl . "URL")
243 (postaladdress . "Address")
244 (postalcode . "Postal Code")
245 (l . "Location")
246 (c . "Country")
247 (o . "Organization")
248 (roomnumber . "Office")
249 (telephonenumber . "Phone")
250 (uniqueidentifier . "ID")
251 (objectclass . "Object Class"))
252 "*Alist of user-defined names for directory attributes.
253 These names are used as prompt strings in query/response forms
254 instead of the raw directory attribute names.
255 Prompt strings for attributes that are not listed here
256 are derived by splitting the attribute name
257 at `_' characters and capitalizing the individual words."
258 :tag "User-defined Names of Directory Attributes"
259 :type '(repeat (cons :tag "Field"
260 (symbol :tag "Directory attribute")
261 (string :tag "User friendly name ")))
262 :group 'eudc)
264 (defcustom eudc-use-raw-directory-names nil
265 "*If non-nil, use attributes names as defined in the directory.
266 Otherwise, directory query/response forms display the user attribute
267 names defined in `eudc-user-attribute-names-alist'."
268 :type 'boolean
269 :group 'eudc)
271 (defcustom eudc-attribute-display-method-alist nil
272 "*An alist specifying methods to display attribute values.
273 Each member of the list is of the form (NAME . FUNC) where NAME is a lowercased
274 string naming a directory attribute (translated according to
275 `eudc-user-attribute-names-alist' if `eudc-use-raw-directory-names' is
276 non-nil) and FUNC a function that will be passed the corresponding
277 attribute values for display."
278 :tag "Attribute Decoding Functions"
279 :type '(repeat (cons :tag "Attribute"
280 (symbol :tag "Name")
281 (symbol :tag "Display Function")))
282 :group 'eudc)
284 (defcustom eudc-external-viewers '(("XV" "xv" "-")
285 ("ImageMagick" "display" "-")
286 ("ShowAudio" "showaudio"))
287 "*A list of viewer program specifications.
288 Viewers are programs which can be piped a directory attribute value for
289 display or arbitrary processing. Each specification is a list whose
290 first element is a string naming the viewer. The second element is the
291 executable program which should be invoked, and following elements are
292 arguments that should be passed to the program."
293 :tag "External Viewer Programs"
294 :type '(repeat (list :tag "Viewer"
295 (string :tag "Name")
296 (string :tag "Executable program")
297 (repeat
298 :tag "Arguments"
299 :inline t
300 (string :tag "Argument"))))
301 :group 'eudc)
303 (defcustom eudc-options-file "~/.eudc-options"
304 "*A file where the `servers' hotlist is stored."
305 :type '(file :Tag "File Name:")
306 :group 'eudc)
308 (defcustom eudc-mode-hook nil
309 "*Normal hook run on entry to EUDC mode."
310 :type '(repeat (sexp :tag "Hook definition"))
311 :group 'eudc)
313 ;;}}}
315 ;;{{{ PH Custom Group
317 (defgroup eudc-ph nil
318 "Emacs Unified Directory Client - CCSO PH/QI Backend."
319 :group 'eudc)
321 (defcustom eudc-ph-bbdb-conversion-alist
322 '((name . name)
323 (net . email)
324 (address . (eudc-bbdbify-address address "Address"))
325 (phone . ((eudc-bbdbify-phone phone "Phone")
326 (eudc-bbdbify-phone office_phone "Office Phone"))))
327 "*A mapping from BBDB to PH/QI fields.
328 This is a list of cons cells (BBDB-FIELD . SPEC-OR-LIST) where
329 BBDB-FIELD is the name of a field that must be defined in your BBDB
330 environment (standard field names are `name', `company', `net', `phone',
331 `address' and `notes'). SPEC-OR-LIST is either a single SPEC or a list
332 of SPECs. Lists of specs are valid only for the `phone' and `address'
333 BBDB fields. SPECs are sexps which are evaluated:
334 a string evaluates to itself,
335 a symbol evaluates to the symbol value. Symbols naming PH/QI fields
336 present in the record evaluate to the value of the field in the record,
337 a form is evaluated as a function. The argument list may contain PH/QI
338 field names which eval to the corresponding values in the
339 record. The form evaluation should return something appropriate for
340 the particular BBDB-FIELD (see `bbdb-create-internal').
341 `eudc-bbdbify-phone' and `eudc-bbdbify-address' are provided as convenience
342 functions to parse phones and addresses."
343 :tag "BBDB to PH Field Name Mapping"
344 :type '(repeat (cons :tag "Field Name"
345 (symbol :tag "BBDB Field")
346 (sexp :tag "Conversion Spec")))
347 :group 'eudc-ph)
349 ;;}}}
351 ;;{{{ LDAP Custom Group
353 (defgroup eudc-ldap nil
354 "Emacs Unified Directory Client - LDAP Backend."
355 :group 'eudc)
357 (defcustom eudc-ldap-bbdb-conversion-alist
358 '((name . cn)
359 (net . mail)
360 (address . (eudc-bbdbify-address postaladdress "Address"))
361 (phone . ((eudc-bbdbify-phone telephonenumber "Phone"))))
362 "*A mapping from BBDB to LDAP attributes.
363 This is a list of cons cells (BBDB-FIELD . SPEC-OR-LIST) where
364 BBDB-FIELD is the name of a field that must be defined in your BBDB
365 environment (standard field names are `name', `company', `net', `phone',
366 `address' and `notes'). SPEC-OR-LIST is either a single SPEC or a list
367 of SPECs. Lists of specs are valid only for the `phone' and `address'
368 BBDB fields. SPECs are sexps which are evaluated:
369 a string evaluates to itself,
370 a symbol evaluates to the symbol value. Symbols naming LDAP attributes
371 present in the record evaluate to the value of the field in the record,
372 a form is evaluated as a function. The argument list may contain LDAP
373 field names which eval to the corresponding values in the
374 record. The form evaluation should return something appropriate for
375 the particular BBDB-FIELD (see `bbdb-create-internal').
376 `eudc-bbdbify-phone' and `eudc-bbdbify-address' are provided as convenience
377 functions to parse phones and addresses."
378 :tag "BBDB to LDAP Attribute Names Mapping"
379 :type '(repeat (cons :tag "Field Name"
380 (symbol :tag "BBDB Field")
381 (sexp :tag "Conversion Spec")))
382 :group 'eudc-ldap)
384 ;;}}}
386 ;;{{{ BBDB Custom Group
388 (defgroup eudc-bbdb nil
389 "Emacs Unified Directory Client - BBDB Backend."
390 :group 'eudc)
392 (defcustom eudc-bbdb-use-locations-as-attribute-names t
393 "If non-nil, BBDB address and phone locations are used as attribute names.
394 This has no effect on queries (you can't search for a specific location)
395 but influences the way records are displayed"
396 :type 'boolean
397 :group 'eudc-bbdb)
399 (defcustom eudc-bbdb-enable-substring-matches t
400 "If non-nil, authorize substring match in the same way BBDB does.
401 Otherwise records must match queries exactly."
402 :type 'boolean
403 :group 'eudc-bbdb)
405 ;;}}}
408 (provide 'eudc-vars)
410 ;;; eudc-vars.el ends here