>>>>> "Boris" == boris  <[EMAIL PROTECTED]> writes:

Boris> Here's another item you might want to know about someone... their WWW
Boris> home page.  Put that information in a field called "www", and this
Boris> function will provide the connection to the wonderful emacs w3-mode
Boris> (ie, hit W to go to the page, or *W to visit several at once).

Some Time ago, you sent a function to the bbdb mailing list to access personal
WWW home pages. I like this and I have added a small function to collect this
information maybe, this is interesting to you -- Josef):

(defun bbdb-grab-www-homepage (record)
  "Grab the current URL and store it in the bbdb database"
  (interactive (list (bbdb-completing-read-record "Add WWW hompage for: ")))
  (cond ((null record)
         (setq record (bbdb-read-new-record))
         (bbdb-invoke-hook 'bbdb-create-hook record))
        (t nil))
  (bbdb-record-putprop record 'www (w3-view-url t))
  (bbdb-change-record record t)
  (bbdb-display-records (list record)))

Reply via email to