X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=install-ids.el;h=9b5e11845a411b5da0d4cddf78e1bdf61b3075b4;hb=8eaf2ecb74a3eb766d01db6f2fdd12cbf681c2c6;hp=144c1e4b3b0c1e514043f4279fb6b71b75ff9a51;hpb=3963efa0624b0bd65191dbabffeaf2a5e743d49d;p=chise%2Fids.git diff --git a/install-ids.el b/install-ids.el index 144c1e4..9b5e118 100644 --- a/install-ids.el +++ b/install-ids.el @@ -11,17 +11,41 @@ (ids-read-file file simplify soft) (princ "done.\n")) + +;; (mount-char-attribute-table 'ideographic-products) +;; (map-char-attribute +;; (lambda (c v) +;; (remove-char-attribute c 'ideographic-products) +;; nil) +;; 'ideographic-products) + + (install-ids-read-file "IDS-JIS-X0208-1990.txt" load-ids-simplify t) (install-ids-read-file "IDS-UCS-Basic.txt" load-ids-simplify t) (install-ids-read-file "IDS-UCS-Ext-A.txt" load-ids-simplify t) + (let ((i 1)) (while (<= i 6) (install-ids-read-file (format "IDS-UCS-Ext-B-%d.txt" i) load-ids-simplify t) (setq i (1+ i)))) +(install-ids-read-file "IDS-UCS-Ext-C.txt" load-ids-simplify t) + +(install-ids-read-file "IDS-UCS-Ext-D.txt" load-ids-simplify t) + +(install-ids-read-file "IDS-UCS-Ext-E.txt" load-ids-simplify t) + +(install-ids-read-file "IDS-UCS-Ext-F.txt" load-ids-simplify t) + +(let ((i 1)) + (while (<= i 3) + (install-ids-read-file (format "IDS-CNS-%d.txt" i) + load-ids-simplify t) + (setq i (1+ i)))) + (let ((i 1)) (while (<= i 12) (install-ids-read-file (format "IDS-Daikanwa-%02d.txt" i) @@ -35,14 +59,31 @@ (install-ids-read-file "IDS-CBETA.txt" load-ids-simplify t) (install-ids-read-file "IDS-CDP.txt" load-ids-simplify t) -;; (install-ids-read-file "IDS-HZK01.txt" load-ids-simplify t) -;; (install-ids-read-file "IDS-HZK02.txt" load-ids-simplify t) -;; (install-ids-read-file "IDS-HZK03.txt" load-ids-simplify t) +(let ((i 1)) + (while (<= i 12) + (install-ids-read-file (format "IDS-HZK%02d.txt" i) + load-ids-simplify t) + (setq i (1+ i)))) -(princ "Saving into ") -(princ exec-directory) -(princ "char-db/system-char-id/ideographic-structure...") +(princ "Updating char-feature `ideographic-structure'...") (save-char-attribute-table 'ideographic-structure) (princ "done.\n") +(princ "Updating char-feature `ideographic-products'...") +(let* ((feature-dir + (expand-file-name + "feature" + (expand-file-name + "character" chise-system-db-directory))) + (p-file + (expand-file-name "ideographic-products" feature-dir)) + old-p-file) + (when (file-exists-p p-file) + (setq old-p-file (make-temp-name p-file)) + (rename-file p-file old-p-file)) + (ids-update-index) + (when old-p-file + (delete-file old-p-file))) +(princ "done.\n") + ;;; install-ids.el ends hear