Neda Communications, Inc.
November 14, 2000
This document describes the ``BBDB Filters & Processors'' package, a utility which translates BBDB information to and from various other formats.
| ©2000 Neda Communications, Inc. |
| All rights reserved. |
| Published by: |
| Neda Communications, Inc. |
| 17005 SE 31st Place, |
| Bellevue, WA 98008 USA |
| Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. |
| Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. |
| Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be stated in a translation approved by the Foundation. |
Over time much valuable data has been gathered in BBDB database files. Many wish to share parts or all of this information with others. They also wish to have access to this same information from other systems (like personal digital assistants) lacking straightforward BBDB access.
For these reasons, we have prepared a family of filters that convert the information in BBDB to and from a variety of other formats. We have put in place some general frameworks to accomplish a set of common functions. These include:
The combination of above features allows for extremly powerful results.
Our hope is that over time this collection of BBDB filters will grow through contributed code.
This package is a collection of filters and is called ``BBDB Filters & Processors''. It has been somewhat tested with BBDB version 1.50. The present state of the software is still preliminary although it has proved useful.
This documentation applies to Version 0.3 of the ``BBDB Filters & Processors'' package. The documentation is presently skeletal and very preliminary. It mostly provides the user with instructions for use, and very little background is included. Familiarity with Emacs Lisp is assumed for some sections.
To install the binaries, just edit the makefile and run ``make install''.
Description of files in the distribution:
After running the ``make install'', go to directory where the binaries were installed and edit the ``bbdb-filters-load.el'' file so that the output of the BBDB filters will be saved in the directory that you specified (i.e. the default derectory for Eudora output is in /dos/m/eudora.mai/).
When you are done, load the ``bbdb-filter-load'' file (M-x bbdb-load-file bbdb-filter-load).
``Output filters'' are used to export BBDB information into formats used by other systems.
In general, an output filter uses the contents of your *BBDB* buffer as input. Note that output filters do not use BBDB files (typically ` /.bbdb') directly.
An output filter is invoked by executing its associated lisp function. The name of the function is conventionally named bbdb-output-<system> (e.g., M-x bbdb-output-hp200lx).
The result of running an output filter is to create a new buffer that contains the *BBDB* information appropriately transformed into a format suitable for use by the target system. The new buffer is given a file name that you specify.
This output filter package has only been tested with the Microsoft Schedule+ version 7.0a software and Windows CE Version 1.0. The software is in file bbdb-schdplus.el.
If the menu item is grayed out you should use bring up the Tools->Synchronization Manager... dialog and check the box for ``Enable Appointment, Contact and Task Synchronization''. Leave unchecked the box for ``Automatically synchronize upon connecting''.
This output filter package has been tested with Microsoft Schedule+ version 7.0a (this program is part of Microsoft Outlook) and Windows CE version 2.0. The software is in file bbdb-schdplus.el. Here are the steps to import the bbdb list into the Windows CE device:
This output filter package has only been tested with the Netscape Communicator 4.72 and Windows NT OS. The software is in file bbdb-nsmail.el.
~/.netscape/address-book.bbdb.html. To
accept the default, just press enter.
This output filter package has only been tested with the Netscape Communicator 6 and Windows NT OS. The software is in file bbdb-netscape6.el.
~/bbdb-netscape6.csv. To accept the
default, just press enter. This name will be the name of your
Netscape 6 Address Book.
The software is in file bbdb-palmpilot.el. Here are the steps to import the bbdb list into the Windows CE device:
BBDB information can be exported to PC Eudora in two formats-as a nickname database file and as a recipients database file.
The PC Eudora output filter is in file bbdb-eudora.el.
The Lotus cc:Mail output filter is in file bbdb-ccmail.el.
The PH output filter is in file bbdb-ph.el.
The Emacs Lisp Export output filter is in file bbdb-export.el.
This output filter uses the current contents of your *BBDB* buffer to generate a new buffer (*BBDB* Export) that contains a single lisp (progn ...) expression. For example, a *BBDB* buffer containing two records would result in the following *BBDB* Export buffer:
;;; ======= Start of Exported BBDB Records =======
(progn
(require 'bbdb-com)
(defun bbdb-maybe-create (name company net &optional addrs phones notes)
"Try to add a record to BBDB if it does not already exist."
(condition-case err
(progn
(bbdb-create-internal name company net addrs phones notes)
(message "%s %s added." name (if net (concat "<" net ">") ""))
(sleep-for 1))
(error (ding)
(message "%s %s skipped. (%s)"
name
(if net (concat "<" net ">") "")
(car (cdr err)))
(sleep-for 1))))
(bbdb-maybe-create "Jill Doe--IMPORTED"
"CBS Corporation"
'("jilld@cbs.com")
'(
["Home"
"368 222ND PL"
""
""
"Springfield"
"MA" 2117]
)
'(
["Office" 617 555 9983 0]
) '"Movie Mogul")
(bbdb-maybe-create "John Doe--IMPORTED"
"ABC Incorporated"
'("jdoe@abc.com")
'(
["Office"
"123 Any Street"
""
""
"Any Town"
"WA" (98027 7758)]
)
'(
["Office" 206 555 1234 0]
) '"TV Producer")
)
;;; ======= End of Exported BBDB Records =======
This lisp expression can then be sent via email or some other text-based messaging facility to another user who can then evaluate the expression which will add the BBDB records to the recipient's BBDB database.
Only new records are added. A record with the same name or net address as one already existing in the BBDB is skipped entirely.
In the sample contents of a *BBDB* Export buffer presented, two records are being exported-one for ``John Doe'' and the other for ``Jill Doe''. Notice that their names have been appended with -IMPORTED. This string can be used to quick locate each record that is added to the database using this mechanism.
The following steps are for exporting BBDB records into Emacs Lisp:
The following steps are for a user wishing to import the contents of a *BBDB* Export buffer's expression into his or her own database:
This package has only been tested on HP 200LX palmtop systems. It also requires the ``HP 200LX Connectivity Pack'' for converting comma-delimited ASCII files into binary .PDB files which are read by the HP 200LX Phone Book application. Version 1.00 of the ``HP 200LX Connectivty Pack'' was used for testing.
The HP 200LX output filter is in file bbdb-hp200lx.el.
``Input filters'' are used to import into BBDB information from a foreign system's data file.
The name of the function is conventionally named bbdb-input-<system> (e.g., bbdb-input-passwd is the name of the Emacs Lisp function for the UNIX password file input filter).
In general, an ``input filter'' expects the foreign system's data to be in the current buffer. The contents of the current buffer are used to create an Emacs Lisp file which when loaded will add new records into your BBDB database if they don't yet exist-existing BBDB records will not be modified.
The result of running an input filter is to produce a new buffer a series of bif-create-record expressions, each corresponding to a single user's record. Notice that input filters do not directly modify the contents of the BBDB files (typically ` /.bbdb').
To actually modify the contents of the BBDB database, you must evaluated the expressions in the resultant buffer created by the input filter. One way to do so is simply to invoke M-x eval-buffer. Another way is to simply save the buffer to disk and load its contents into Emacs Lisp using M-x load-file.
The UNIX password file input filter is in file bbdb-passwd.el.
x or *x.
See 7 for detail.
NOTYET
This feature can create different kind of TeX file. For example, it can create a memo, a letter, an article, etc.
The script generate a list of people's name in the BBDB buffer. This feature is useful to generate a list of names and group them accordingly. For example, you can create a group of people in your family, your circle-of-friend group, your business-people group, etc.
x (this
will only generate that person name only). To generate the
whole content of your *BBDB* buffer, type *-x (this
will generate a list of people's names of your *BBDB* buffer.
group-names-gen and press enter.
group.names. To accept this default, press
enter, otherwise type in your own file name and press enter.
Once you generate the list of names, you can append one or all of the names in the list for their complete information. There are 4 bbdb-group command available:
group.names file that you
just create in previous section.
M-x bbdb-group-process-line.
As a result, a *BBDB* buffer will be created and the person's
information that you requested will appear. If you run
M-x bbdb-group-process-line for the next person in the
list, the *BBDB* buffer will add that person name to the
buffer.
M-x bbdb-group-append command.
M-x bbdb-group-blank jus create a blank *BBDB*
buffer.
M-x bbdb-group-input act the same way as
bbdb-group-append
The following examples which are intended to be used as a starting point for customization provide a set of conventions that have proven useful.
Processing customizable letters and envelops with mail merge features is quite easy as an extension of the action processor filters.
By convention the action name for tex actions is:
tex-style-content-from
style: says which style (letter, fax, ...)
content: says what the content is.
from: says what the letter head should look like.
Automating the process of enclosing generalized information as in-line text to as attachemnts is very useful. Then marrying that ability with BBDB action processors and group processors creates a full set of very powerful information distribution tools.
By convention the names for creation of such families of information distribution tools is as follows:
Pean Lim <pean@neda.com> wrote most of this package. Mohsen
Banan <mohsen@neda.com> put it all together and guided the
work. Neda Communications, Inc. sponsored the work. The output
filters code is based on bbdb-print by Boris Goldowsky
<boris@prodigal.psych.rochester.edu>.
This LGPL is meant to be included from other files. To format a standalone LGPL, use liblic.texi.
Copyright opyright 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
[This is the first released version of the library GPL. It is numbered 2 because it goes with version 2 of the ordinary GPL.]
The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public Licenses are intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users.
This license, the Library General Public License, applies to some specially designated Free Software Foundation software, and to any other libraries whose authors decide to use it. You can use it for your libraries, too.
When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things.
To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the library, or if you modify it.
For example, if you distribute copies of the library, whether gratis or for a fee, you must give the recipients all the rights that we gave you. You must make sure that they, too, receive or can get the source code. If you link a program with the library, you must provide complete object files to the recipients so that they can relink them with the library, after making changes to the library and recompiling it. And you must show them these terms so they know their rights.
Our method of protecting your rights has two steps: (1) copyright the library, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the library.
Also, for each distributor's protection, we want to make certain that everyone understands that there is no warranty for this free library. If the library is modified by someone else and passed on, we want its recipients to know that what they have is not the original version, so that any problems introduced by others will not reflect on the original authors' reputations.
Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that companies distributing free software will individually obtain patent licenses, thus in effect transforming the program into proprietary software. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all.
Most GNU software, including some libraries, is covered by the ordinary GNU General Public License, which was designed for utility programs. This license, the GNU Library General Public License, applies to certain designated libraries. This license is quite different from the ordinary one; be sure to read it in full, and don't assume that anything in it is the same as in the ordinary license.
The reason we have a separate public license for some libraries is that they blur the distinction we usually make between modifying or adding to a program and simply using it. Linking a program with a library, without changing the library, is in some sense simply using the library, and is analogous to running a utility program or application program. However, in a textual and legal sense, the linked executable is a combined work, a derivative of the original library, and the ordinary General Public License treats it as such.
Because of this blurred distinction, using the ordinary General Public License for libraries did not effectively promote software sharing, because most developers did not use the libraries. We concluded that weaker conditions might promote sharing better.
However, unrestricted linking of non-free programs would deprive the users of those programs of all benefit from the free status of the libraries themselves. This Library General Public License is intended to permit developers of non-free programs to use free libraries, while preserving your freedom as a user of such programs to change the free libraries that are incorporated in them. (We have not seen how to achieve this as regards changes in header files, but we have achieved it as regards changes in the actual functions of the Library.) The hope is that this will lead to faster development of free libraries.
The precise terms and conditions for copying, distribution and modification follow. Pay close attention to the difference between a ``work based on the library'' and a ``work that uses the library''. The former contains code derived from the library, while the latter only works together with the library.
Note that it is possible for a library to be covered by the ordinary General Public License rather than by this special one.
A ``library'' means a collection of software functions and/or data prepared so as to be conveniently linked with application programs (which use some of those functions and data) to form executables.
The ``Library'', below, refers to any such software library or work which has been distributed under these terms. A ``work based on the Library'' means either the Library or any derivative work under copyright law: that is to say, a work containing the Library or a portion of it, either verbatim or with modifications and/or translated straightforwardly into another language. (Hereinafter, translation is included without limitation in the term ``modification''.)
``Source code'' for a work means the preferred form of the work for making modifications to it. For a library, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the library.
Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running a program using the Library is not restricted, and output from such a program is covered only if its contents constitute a work based on the Library (independent of the use of the Library in a tool for writing it). Whether that is true depends on what the Library does and what the program that uses the Library does.
You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee.
(For example, a function in a library to compute square roots has a purpose that is entirely well-defined independent of the application. Therefore, Subsection 2d requires that any application-supplied function or table used by this function must be optional: if the application does not supply it, the square root function must still compute square roots.)
These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Library, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Library, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it.
Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Library.
In addition, mere aggregation of another work not based on the Library with the Library (or with a work based on the Library) on a volume of a storage or distribution medium does not bring the other work under the scope of this License.
Once this change is made in a given copy, it is irreversible for that copy, so the ordinary GNU General Public License applies to all subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of the Library into a program that is not a library.
If distribution of object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place satisfies the requirement to distribute the source code, even though third parties are not compelled to copy the source along with the object code.
However, linking a ``work that uses the Library'' with the Library creates an executable that is a derivative of the Library (because it contains portions of the Library), rather than a ``work that uses the library''. The executable is therefore covered by this License. Section 6 states terms for distribution of such executables.
When a ``work that uses the Library'' uses material from a header file that is part of the Library, the object code for the work may be a derivative work of the Library even though the source code is not. Whether this is true is especially significant if the work can be linked without the Library, or if the work is itself a library. The threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data structure layouts and accessors, and small macros and small inline functions (ten lines or less in length), then the use of the object file is unrestricted, regardless of whether it is legally a derivative work. (Executables containing this object code plus portions of the Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may distribute the object code for the work under the terms of Section 6. Any executables containing that work also fall under Section 6, whether or not they are linked directly with the Library itself.
You must give prominent notice with each copy of the work that the Library is used in it and that the Library and its use are covered by this License. You must supply a copy of this License. If the work during execution displays copyright notices, you must include the copyright notice for the Library among them, as well as a reference directing the user to the copy of this License. Also, you must do one of these things:
For an executable, the required form of the ``work that uses the Library'' must include any data and utility programs needed for reproducing the executable from it. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable.
It may happen that this requirement contradicts the license restrictions of other proprietary libraries that do not normally accompany the operating system. Such a contradiction means you cannot use both them and the Library together in an executable that you distribute.
If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply, and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice.
This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License.
Each version is given a distinguishing version number. If the Library specifies a version number of this License which applies to it and ``any later version'', you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Library does not specify a license version number, you may choose any version ever published by the Free Software Foundation.
If you develop a new library, and you want it to be of the greatest possible use to the public, we recommend making it free software that everyone can redistribute and change. You can do so by permitting redistribution under these terms (or, alternatively, under the terms of the ordinary General Public License).
To apply these terms, attach the following notices to the library. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the ``copyright'' line and a pointer to where the full notice is found.
one line to give the library's name and an idea of what it does. Copyright (C) year name of author
This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details.
You should have received a copy of the GNU Library General Public License along with this library; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Also add information on how to contact you by electronic and paper mail.
You should also get your employer (if you work as a programmer) or your school, if any, to sign a ``copyright disclaimer'' for the library, if necessary. Here is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the library `Frob' (a library for tweaking knobs) written by James Random Hacker.
signature of Ty Coon, 1 April 1990 Ty Coon, President of Vice
That's all there is to it!