X-Git-Url: https://iankelling.org/git/?a=blobdiff_plain;f=bbdb-csv-import.el;h=edd876010d8daa66b9d25eb780c1e9a37e687f83;hb=e435111b6f41394457207447c09880a1b1a0ec5b;hp=28c4feed5e95a259502dcc301698310d99a2403f;hpb=eecb82525abe18f7176001b881a8a8f7719e6b67;p=bbdb-csv-import diff --git a/bbdb-csv-import.el b/bbdb-csv-import.el index 28c4fee..edd8760 100644 --- a/bbdb-csv-import.el +++ b/bbdb-csv-import.el @@ -45,6 +45,9 @@ ;; ;; Simply M-x `bbdb-csv-import-buffer' or `bbdb-csv-import-file'. ;; When called interactively, they prompt for file or buffer arguments. +;; +;; Then view your bbdb records: M-x bbdb .* RET +;; If the import looks good save the bbdb database: C-x s (bbdb-save) ;;; Advanced usage / notes: ;; @@ -65,15 +68,14 @@ ;;; Custom mapping of csv fields ;; ;; If a field is handled wrong or you want to extend the program to handle a new -;; kind of csv format, you need to setup a custom field mapping variable. It -;; should not be too hard, but you can also Use the existing tables as an example. By default, we -;; use a combination of most predefined mappings, and look for all of their -;; fields, but it is probably best to avoid that kind of table when setting up -;; your own as it is an unnecessary complexity in that case. If you have a -;; problem with data from a supported export program, start by testing its -;; specific mapping table instead of the combined one. Here is a handy template -;; to set each of the predefined mapping tables if you would rather avoid the -;; configure interface: +;; kind of csv format, you need to setup a custom field mapping variable. Use +;; the existing tables as an example. By default, we use a combination of most +;; predefined mappings, and look for all of their fields, but it is probably +;; best to avoid that kind of table when setting up your own as it is an +;; unnecessary complexity in that case. If you have a problem with data from a +;; supported export program, start by testing its specific mapping table instead +;; of the combined one. Here is a handy template to set each of the predefined +;; mapping tables if you would rather avoid the configure interface: ;; ;; (setq bbdb-csv-import-mapping-table bbdb-csv-import-combined) ;; (setq bbdb-csv-import-mapping-table bbdb-csv-import-thunderbird) @@ -110,10 +112,6 @@ ;; it ever did I would start a mailman or discourse to act as a mailing list ;; and forum. -;;; known bugs: -;; * linkedin data contains ^M characters that need to be removed before import -;; * blank lines are not ignored - ;;; Code: (require 'pcsv) @@ -369,19 +367,30 @@ don't want flattened." ;;;###autoload (defun bbdb-csv-import-file (filename) - "Parse and import csv file FILENAME to bbdb." + "Parse and import csv file FILENAME to bbdb. +The file will be saved to disk with blank lines and aberrant characters removed." (interactive "fCSV file containg contact data: ") (bbdb-csv-import-buffer (find-file-noselect filename))) ;;;###autoload (defun bbdb-csv-import-buffer (&optional buffer-or-name) - "Parse and import csv BUFFER-OR-NAME to bbdb. -Argument is a buffer or name of a buffer. -Defaults to current buffer." + "Parse and import csv buffer to bbdb. Interactively, it prompts for a buffer. +The buffer will be saved to disk with blank lines and aberrant characters removed. +BUFFER-OR-NAME is a buffer or name of a buffer, or the current buffer if nil." (interactive "bBuffer containing CSV contact data: ") (when (null bbdb-csv-import-mapping-table) (error "error: `bbdb-csv-import-mapping-table' is nil. Please set it and rerun.")) - (let* ((csv-data (pcsv-parse-buffer (get-buffer (or buffer-or-name (current-buffer))))) + (let* ((csv-buffer (get-buffer (or buffer-or-name (current-buffer)))) + (csv-data (save-excursion + (set-buffer csv-buffer) + ;; deal with blank lines and ^M from linkedin + (flush-lines "^\\s-*$") + (goto-char (point-min)) + ;; remove ^M aka ret characters + (while (re-search-forward (char-to-string 13) nil t) + (replace-match "")) + (basic-save-buffer) + (pcsv-parse-file buffer-file-name))) (csv-fields (car csv-data)) (csv-data (cdr csv-data)) (allow-dupes bbdb-allow-duplicates)