X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=www%2Fwww-ids-find.el;h=5907fb4559fe1bb386a115757f98cf6a9d227ba7;hb=HEAD;hp=1dce832793de8353af081e476a306c0b40b62347;hpb=2fadf24f129be384945dd64fdc7c80ff3e1fd8d3;p=chise%2Fids.git diff --git a/www/www-ids-find.el b/www/www-ids-find.el index 1dce832..b2182f2 100644 --- a/www/www-ids-find.el +++ b/www/www-ids-find.el @@ -1,6 +1,549 @@ (require 'ids-find) (require 'cwiki-common) +(defun www-format-encode-string (string &optional without-tags as-body) + (with-temp-buffer + (insert string) + (let (plane code subcode start end char variants ret rret) + (when as-body + (goto-char (point-min)) + (while (search-forward "&" nil t) + (replace-match "&" nil t))) + (goto-char (point-min)) + (while (search-forward "<" nil t) + (replace-match "<" nil t)) + (goto-char (point-min)) + (while (search-forward ">" nil t) + (replace-match ">" nil t)) + (if without-tags + (encode-coding-region (point-min)(point-max) 'utf-8-mcs-er) + (let ((coded-charset-entity-reference-alist + est-coded-charset-entity-reference-alist)) + (encode-coding-region (point-min)(point-max) 'utf-8-mcs-er) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A-\\|G-\\|g2-\\|R-\\)?CB\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"CB%05d\"" + code + chise-wiki-legacy-bitmap-glyphs-url + (/ code 1000) code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?J\\(78\\|83\\|90\\|97\\|SP\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t) + (setq plane (match-string 2) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"J%s-%04X\"" + plane code + chise-wiki-legacy-bitmap-glyphs-url + plane + (- (lsh code -8) 32) + (- (logand code 255) 32) + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?J0-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"J0-%04X\"" + code + chise-wiki-legacy-bitmap-glyphs-url + (- (lsh code -8) 32) + (- (logand code 255) 32) + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?HD-\\(JA\\|JB\\|JC\\|JD\\|FT\\|IA\\|IB\\|HG\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t) + (setq plane (match-string 2) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"HD-%s-%04X\"" + plane code + chise-wiki-legacy-bitmap-glyphs-url + plane + (- (lsh code -8) 32) + (- (logand code 255) 32) + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?HD-\\(IP\\|JT\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t) + (setq plane (match-string 2) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"HD-%s-%04X\"" + plane code + chise-wiki-legacy-bitmap-glyphs-url + plane code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?HD-KS-\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"HD-KS%06d\"" + code + chise-wiki-legacy-bitmap-glyphs-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?HD-TK-\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"HD-KS%06d\"" + code + chise-wiki-legacy-bitmap-glyphs-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&G\\([01]\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t) + (setq plane (string-to-int (match-string 1)) + code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"GB%d-%04X\"" + plane code + chise-wiki-legacy-bitmap-glyphs-url + plane + (- (lsh code -8) 32) + (- (logand code 255) 32) + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(R-\\)?C\\([1-7]\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t) + (setq plane (string-to-int (match-string 2)) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"CNS%d-%04X\"" + plane code + chise-wiki-legacy-bitmap-glyphs-url + plane code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(R-\\)?JC3-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"JC3-%04X\"" + code chise-wiki-bitmap-glyph-image-url code) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A-\\)?ZOB-\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"ZOB-%04d\"" + code + chise-wiki-legacy-bitmap-glyphs-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A2-\\|g2-\\|R-\\)?DJT-\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"DJT-%05d\"" + code + chise-wiki-daijiten-bitmap-glyphs-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&SW-JIGUGE\\([45]?\\)-\\([0-9]+\\);" nil t) + (setq subcode (match-string 1) + code (string-to-int (match-string 2))) + (setq plane + (if (string= subcode "") + "5" + subcode)) + (replace-match + (format "\"SW-JIGUGE%s-%05d\"" + plane code + chise-wiki-legacy-bitmap-glyphs-url + plane code) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&HNG\\([0-9]+\\)-\\([0-9][0-9][0-9][0-9]\\)\\([0-9]\\);" nil t) + (setq plane (match-string 1) + code (string-to-int (match-string 2)) + subcode (string-to-int (match-string 3))) + (setq subcode + (if (eq subcode 0) + "" + (char-to-string (decode-char 'ascii (+ 96 subcode))))) + (replace-match + (format + "\"HNG%s-%04d%s\"" + plane code subcode + chise-wiki-hng-bitmap-glyphs-url + plane code subcode + ) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(R-\\)?CHISE-HDIC-TSJ\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (setq char (decode-char '===chise-hdic-tsj code)) + (when (setq ret (get-char-attribute char '=hdic-tsj-glyph-id)) + (replace-match + (format + "\"HDIC-TSJ-%s\"" + ret ret) + t 'literal))) + + (goto-char (point-min)) + (while (re-search-forward "&\\(R-\\)?CHISE-HDIC-SYP\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (setq char (decode-char '===chise-hdic-syp code)) + (when (setq ret (get-char-attribute char '=hdic-syp-entry-id)) + (replace-match + (format + "\"HDIC-SYP-%s\"" + ret ret) + t 'literal))) + + (goto-char (point-min)) + (while (re-search-forward "&\\(R-\\)?CHISE-HDIC-KTB\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (setq char (decode-char '===chise-hdic-ktb code)) + (when (setq ret (get-char-attribute char '=hdic-ktb-entry-id)) + (replace-match + (format + "\"HDIC-KTB-%s\"" + ret ret) + t 'literal))) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?AJ1-\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"AJ1-%05d\"" + code + chise-wiki-legacy-bitmap-glyphs-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A-\\|o-\\|G-\\|g2-\\|R-\\)?MJ\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"MJ%06d\"" + code + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\)?IU[+-]\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"u%04x\"" + code + chise-wiki-glyphwiki-glyph-image-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?KU[+-]\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"u%04x-k\"" + code + chise-wiki-glyphwiki-glyph-image-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&A-\\(comp\\|cgn\\)U[+-]\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"u%04x\"" + code + chise-wiki-glyphwiki-glyph-image-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward + "&\\(A-\\|g2-\\)?U-i\\([0-9]+\\)\\+\\([0-9A-F]+\\);" + nil t) + (setq plane (string-to-int (match-string 2)) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"u%04x-itaiji-%03d\"" + code + plane + chise-wiki-glyphwiki-glyph-image-url + code + plane + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&A-IWDSU\\+\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 1) 16)) + (replace-match + (format "\"A-IWDSU+%04x\"" + code + chise-wiki-glyphwiki-glyph-image-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward + "&\\(A-\\)?CDP-i\\([0-9]+\\)-\\([0-9A-F]+\\);" + nil t) + (setq plane (string-to-int (match-string 2)) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"cdp-%04x-itaiji-%03d\"" + code + plane + chise-wiki-glyphwiki-glyph-image-url + code + plane + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward + "&\\(A-\\)?CDP-v\\([0-9]+\\)-\\([0-9A-F]+\\);" + nil t) + (setq plane (string-to-int (match-string 2)) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"cdp-%04x-var-%03d\"" + code + plane + chise-wiki-glyphwiki-glyph-image-url + code + plane + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward + "&\\(A-\\|G-\\|g2-\\|R-\\)?M-\\([0-9]+\\);" + nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"dkw-%05d\"" + code + chise-wiki-glyphwiki-glyph-image-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(g2-\\)?U-v\\([0-9]+\\)\\+\\([0-9A-F]+\\);" nil t) + (setq plane (string-to-int (match-string 2)) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"u%04x-var-%03d\"" + code + plane + chise-wiki-glyphwiki-glyph-image-url + code + plane + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A-\\|G-\\|R-\\|g2-\\)?GT-\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"GT-%05d\"" + code + chise-wiki-glyph-cgi-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A-\\|G-\\|g2-\\)?GT-K\\([0-9]+\\);" nil t) + (setq code (string-to-int (match-string 2))) + (replace-match + (format "\"GT-K%05d\"" + code + chise-wiki-glyph-cgi-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&B-\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 1) 16)) + (replace-match + (format "\"B-%04X\"" + code + chise-wiki-glyph-cgi-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward + "&\\(A-\\|G-\\|g2-\\|R-\\)?CDP-\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"CDP-%04X\"" + code + chise-wiki-glyph-cgi-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward + "&\\(I-\\)?HZK\\(0[1-9]\\|1[0-2]\\)-\\([0-9A-F]+\\);" nil t) + (setq plane (match-string 2) + code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"HZK%s-%04X\"" + plane + code + chise-wiki-glyph-cgi-url + plane + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A-\\|G-\\|g2-\\|R-\\)?RUI6-\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 2) 16)) + (replace-match + (format "\"RUI6-%04X\"" + code + chise-wiki-glyph-cgi-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&hanaJU\\+\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 1) 16)) + (replace-match + (format "\"hanaJU+%04X\"" + code + chise-wiki-glyph-cgi-url + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&\\(A-\\|G-\\|g2-\\|R-\\)?\\(UU\\+\\|U-\\)\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 3) 16)) + (replace-match + (format "\"UU+%04X\"" + code + code + www-format-char-img-style) + t 'literal)) + + (goto-char (point-min)) + (while (re-search-forward "&MCS-\\([0-9A-F]+\\);" nil t) + (setq code (string-to-int (match-string 1) 16)) + (setq start (match-beginning 0) + end (match-end 0)) + (setq char (decode-char 'system-char-id code)) + (cond + ((and (setq variants + (or (www-get-feature-value char '->subsumptive) + (www-get-feature-value char '->denotational))) + (progn + (if (characterp variants) + (setq variants (list variants))) + (while (and variants + (setq ret (www-format-encode-string + (char-to-string (car variants)))) + (string-match "&MCS-\\([0-9A-F]+\\);" ret)) + (setq variants (cdr variants))) + ret)) + (unless (string-match "&MCS-\\([0-9A-F]+\\);" ret) + (goto-char start) + (delete-region start end) + (insert ret)) + ) + ((setq ret (or (www-get-feature-value char 'ideographic-combination) + (www-get-feature-value char 'ideographic-structure))) + (setq ret + (mapconcat + (lambda (ch) + (if (listp ch) + (if (characterp (setq rret (find-char ch))) + (setq ch rret))) + (if (characterp ch) + (www-format-encode-string + (char-to-string ch) without-tags) + (www-format-encode-string + (format "%S" ch) without-tags))) + ret "")) + (when ret + (goto-char start) + (delete-region start end) + (insert ret)) + ))) + )) + ;; (goto-char (point-min)) + ;; (while (search-forward ">-" nil t) + ;; (replace-match "&GT-" t 'literal)) + (buffer-string)))) + (setq www-format-char-img-style "vertical-align:middle;") (defun decode-url-string (string &optional coding-system) @@ -18,7 +561,7 @@ (concat dest (substring string i)) coding-system)))) -(defconst www-ids-find-version "0.26") +(defconst www-ids-find-version "0.100.2") (defvar www-ids-find-ideographic-products-file-name (expand-file-name "ideographic-products" @@ -38,105 +581,56 @@ "~tomo/projects/chise/ids/www/tang-chars.udd") (defun www-ids-find-format-char (c &optional code-desc) - (princ - (format "%s" - www-ids-find-char-viewer-url - (www-uri-encode-object c) - (www-format-encode-string (char-to-string c)))) - ;; (let ((str (encode-coding-string (format "%c" c) 'utf-8-er)) - ;; plane code) - ;; (princ - ;; (with-temp-buffer - ;; (cond - ;; ((string-match "&CB\\([0-9]+\\);" str) - ;; (setq code (string-to-int (match-string 1 str))) - ;; (insert (format "\"CB%05d\"\n" - ;; code (/ code 1000) code)) - ;; (when code-desc - ;; (insert (format "CB%05d" code))) - ;; ) - ;; ((string-match "&JC3-\\([0-9A-F]+\\);" str) - ;; (setq code (string-to-int (match-string 1 str) 16)) - ;; (insert (format "\"JC3-%04X\"\n" - ;; code code)) - ;; (when code-desc - ;; (insert (format "JC3-%04X" code))) - ;; ) - ;; ((string-match "&J\\(78\\|83\\|90\\|SP\\)-\\([0-9A-F]+\\);" str) - ;; (setq plane (match-string 1 str) - ;; code (string-to-int (match-string 2 str) 16)) - ;; (insert (format "\"J%s-%04X\"\n" - ;; plane code plane - ;; (- (lsh code -8) 32) - ;; (- (logand code 255) 32))) - ;; (when code-desc - ;; (insert (format "J%s-%04X" plane code))) - ;; ) - ;; ((string-match "&G\\([01]\\)-\\([0-9A-F]+\\);" str) - ;; (setq plane (string-to-int (match-string 1 str)) - ;; code (string-to-int (match-string 2 str) 16)) - ;; (insert (format "\"G%d-%04X\"\n" - ;; plane code plane - ;; (- (lsh code -8) 32) - ;; (- (logand code 255) 32))) - ;; (when code-desc - ;; (insert (format "G%d-%04X" plane code))) - ;; ) - ;; ((string-match "&C\\([1-7]\\)-\\([0-9A-F]+\\);" str) - ;; (setq plane (string-to-int (match-string 1 str)) - ;; code (string-to-int (match-string 2 str) 16)) - ;; (insert (format "\"C%d-%04X\"\n" - ;; plane code plane code)) - ;; (when code-desc - ;; (insert (format "C%d-%04X" plane code))) - ;; ) - ;; ((string-match "&ZOB-\\([0-9]+\\);" str) - ;; (setq code (string-to-int (match-string 1 str))) - ;; (insert (format "\"ZOB-%04d\"\n" - ;; code code)) - ;; (when code-desc - ;; (insert (format "ZOB-%04d" code))) - ;; ) - ;; (t - ;; (insert (format "") - ;; (insert str) - ;; (insert "") - ;; )) - ;; (goto-char (point-min)) - ;; (while (search-forward "&" nil t) - ;; (replace-match "&" t 'literal)) - ;; (buffer-string)))) - ) - + (let* ((ucs (encode-char c '=ucs))) + (princ + (format "%s" + www-ids-find-char-viewer-url + (www-uri-encode-object c) + (if ucs + (format "\"u%04x\"%s" + ucs + chise-wiki-glyphwiki-glyph-image-url + ucs + (if code-desc + (encode-coding-string (format " (%c)" c) 'utf-8-mcs-er) + "")) + (www-format-encode-string (char-to-string c))))) + )) + +(defun www-ids-find-format-ids (ids &optional code-desc) + (let (len i ucs ret) + (setq i 0 + len (length ids)) + (while (< i len) + (www-ids-find-format-char (aref ids i)) + (setq i (1+ i))) + (when code-desc + (princ + (format " (%s)" + (mapconcat + (lambda (c) + (setq ucs (or (char-ucs c) + (encode-char c '=>ucs@iso) + (encode-char c '=>ucs@unicode) + (encode-char c '=>ucs@iwds-1) + (encode-char c '=>ucs@iwds-1/normalized) + (encode-char c '=>ucs@component) + (encode-char c '=>ucs@cognate))) + (cond (ucs + (encode-coding-string + (char-to-string (decode-char '=ucs ucs)) + 'utf-8-mcs-er) + ) + (t + (setq ret (encode-coding-string + (char-to-string c) 'utf-8-mcs-er)) + (if (eq (aref ret 0) ?&) + (concat "&" (substring ret 1))) + ))) + ids "")))))) + (defun www-ids-find-format-line (c is) - (let (ucs len i ids) + (let (ucs ids) (princ "") (www-ids-find-format-char c 'code-desc) (princ "") @@ -156,14 +650,16 @@ (format " (link map)" www-ids-find-chise-link-map-url-prefix ucs))) (princ " ") + ;; (www-ids-find-format-ideographic-structure is 'code-desc) (when is (setq ids (ideographic-structure-to-ids is)) - (setq i 0 - len (length ids)) + ;; (setq i 0 + ;; len (length ids)) (princ "") - (while (< i len) - (www-ids-find-format-char (aref ids i)) - (setq i (1+ i))) + (www-ids-find-format-ids ids 'code-desc) + ;; (while (< i len) + ;; (www-ids-find-format-char (aref ids i)) + ;; (setq i (1+ i))) (princ "")) (when (and ucs (with-current-buffer @@ -182,9 +678,57 @@ (princ (encode-coding-string "⇒[唐代拓本]" 'utf-8-jp-er))) (princ "
\n"))) +(defun www-ids-insert-chars-including-components* (components + &optional ignored-chars products) + (unless products + (setq products (ideograph-find-products components ignored-chars))) + (let (is as bs len) + (setq len (length products)) + (princ "\n") + ) + ignored-chars) + (defun www-ids-insert-chars-including-components (components &optional ignored-chars) - (let ((products (ideographic-products-find components)) + (let ((products (ideograph-find-products components ignored-chars)) is as bs len ignore-children) (setq len (length products)) (when (>= len 1024) @@ -196,31 +740,31 @@ (if (>= len 2048) (dolist (c products) (www-ids-find-format-char c)) - (princ "\n") - )) + )) + ) ignored-chars) (defun www-batch-ids-find () @@ -288,7 +828,9 @@ \"http://www.w3.org/TR/html4/loose.dtd\"> + CHISE IDS Find + -

") +
+

") (princ (encode-coding-string "CHISE IDS 漢字検索" 'utf-8-jp-er)) (princ "

") (princ " -

Version ") +

Version ") (princ www-ids-find-version) (princ (format-time-string - " (Last-modified: %Y-%m-%d %H:%M:%S)" + " (Last-modified: %Y-%m-%d %H:%M:%S)

" (nth 5 (file-attributes www-ids-find-ideographic-products-file-name)))) (princ " -
-

+

+
+

+

+
+ ") (princ (encode-coding-string "部品文字列" 'utf-8-jp-er)) - (princ " +
+ (length components) 0) (princ (encode-coding-string components 'utf-8-er))) (princ "\"> - +
+
") (unless (file-newer-than-file-p @@ -344,6 +902,8 @@ li { margin: 0 0 -0.2em; } ) (cond (components + (princ "
+") ;; (map-char-attribute ;; (lambda (c v) ;; (when (every (lambda (p) @@ -370,17 +930,27 @@ li { margin: 0 0 -0.2em; } ;; (princ "\n") + (princ "
\n") ) (t - (princ (encode-coding-string "
+ (princ (encode-coding-string "
+

指定した部品を全て含む漢字の一覧を表示します。 +

-CHISE で用いられる実態参照形式(例:&M-00256;)で部品を指定する事もできます。" 'utf-8-jp-er)) +CHISE で用いられる実態参照形式(例:&M-00256;)で部品を指定する事もできます。 +

+
+" 'utf-8-jp-er)) (princ (encode-coding-string " -

+

\[Links\]

+ " + +

+
+" 'utf-8-jp-er)) )) - (princ "
") - (princ "

-Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2015 MORIOKA Tomohiko") + (princ "


+
+") + (princ "
+Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2015, 2016, 2017, 2020, 2021, 2022, 2023 MORIOKA Tomohiko
") (princ (format - "

Powered by Powered by XEmacs CHISE %s." +>XEmacs CHISE %s.

" (encode-coding-string xemacs-chise-version 'utf-8-jp-er))) (princ " + ")))