From b57ebcd1ead109ff5f9c874e8dd289aac92a899b Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Wed, 30 Oct 2019 16:03:34 +0900 Subject: [PATCH] (www-display-object-desc): Add [HNG-data] button for each character which has the corresponding HNG glyphs. --- cwiki-view.el | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/cwiki-view.el b/cwiki-view.el index 85f38d9..8b1cecb 100644 --- a/cwiki-view.el +++ b/cwiki-view.el @@ -70,6 +70,7 @@ size=\"64\" maxlength=\"256\" value=\"%s\"> logical-feature chise-wiki-displayed-features parents GlyphWiki-id HNG-card HNG-card-id HNG-card-cobj ret object-spec + ucs item-code page char-num glyph-image-id width height image-cobj base-image x y w h) (if (eq level 0) @@ -190,8 +191,27 @@ li { margin: 0 0 0 2em; } (format " +\n%s" + genre rdf-uri-object + (if (and (or (char-feature object '->HNG@CN/manuscript) + (char-feature object '->HNG@CN/printed) + (char-feature object '->HNG@JP/manuscript) + (char-feature object '->HNG@JP/printed) + (char-feature object '->HNG@KR) + (char-feature object '->HNG@MISC)) + (setq ucs (char-ucs object)) + (setq ret (decode-char '=ucs ucs)) + (setq ret + (if (setq ucs (get-char-attribute + ret '=>ucs*)) + (decode-char '=ucs ucs) + ret))) + (format " + + \n" - genre rdf-uri-object) + (www-uri-encode-object ret)) + "")) ""))) (when (setq parents (www-get-feature-value object '<-denotational)) (if (characterp parents) -- 1.7.10.4