(www-format-encode-string): Add settings for `===chise-hdic-syp' and
[chise/ids.git] / www / www-ids-find.el
1 (require 'ids-find)
2 (require 'cwiki-common)
3
4 (defun www-format-encode-string (string &optional without-tags as-body)
5   (with-temp-buffer
6     (insert string)
7     (let (plane code subcode start end char variants ret rret)
8       (when as-body
9         (goto-char (point-min))
10         (while (search-forward "&" nil t)
11           (replace-match "&" nil t)))
12       (goto-char (point-min))
13       (while (search-forward "<" nil t)
14         (replace-match "&lt;" nil t))
15       (goto-char (point-min))
16       (while (search-forward ">" nil t)
17         (replace-match "&gt;" nil t))
18       (if without-tags
19           (encode-coding-region (point-min)(point-max) 'utf-8-mcs-er)
20         (let ((coded-charset-entity-reference-alist
21                (list*
22                 '(=gt                   "GT-" 5 d)
23                 '(=mj                    "MJ" 6 d)
24                 '(=hanyo-denshi/ja   "HD-JA-" 4 X)
25                 '(=hanyo-denshi/jb   "HD-JB-" 4 X)
26                 '(=hanyo-denshi/jc   "HD-JC-" 4 X)
27                 '(=hanyo-denshi/jd   "HD-JD-" 4 X)
28                 '(=hanyo-denshi/ft   "HD-FT-" 4 X)
29                 '(=hanyo-denshi/ia   "HD-IA-" 4 X)
30                 '(=hanyo-denshi/ib   "HD-IB-" 4 X)
31                 '(=hanyo-denshi/hg   "HD-HG-" 4 X)
32                 '(=hanyo-denshi/ip   "HD-IP-" 4 X)
33                 '(=hanyo-denshi/jt   "HD-JT-" 4 X)
34                 '(=hanyo-denshi/ks   "HD-KS-" 6 d)
35                 '(=>>hanyo-denshi/ja "G-HD-JA-" 4 X)
36                 '(=>>hanyo-denshi/jb "G-HD-JB-" 4 X)
37                 '(=>>hanyo-denshi/jc "G-HD-JC-" 4 X)
38                 '(=>>hanyo-denshi/jd "G-HD-JD-" 4 X)
39                 '(=>>hanyo-denshi/ft "G-HD-FT-" 4 X)
40                 '(=>>hanyo-denshi/ia "G-HD-IA-" 4 X)
41                 '(=>>hanyo-denshi/ib "G-HD-IB-" 4 X)
42                 '(=>>hanyo-denshi/hg "G-HD-HG-" 4 X)
43                 '(=>>hanyo-denshi/ip "G-HD-IP-" 4 X)
44                 '(=>>hanyo-denshi/jt "G-HD-JT-" 4 X)
45                 '(=>>hanyo-denshi/ks "G-HD-KS-" 6 d)
46                 '(==mj                  "g2-MJ" 6 d)
47                 '(==hanyo-denshi/ja "g2-HD-JA-" 4 X)
48                 '(==hanyo-denshi/jb "g2-HD-JB-" 4 X)
49                 '(==hanyo-denshi/jc "g2-HD-JC-" 4 X)
50                 '(==hanyo-denshi/jd "g2-HD-JD-" 4 X)
51                 '(==hanyo-denshi/ft "g2-HD-FT-" 4 X)
52                 '(==hanyo-denshi/ia "g2-HD-IA-" 4 X)
53                 '(==hanyo-denshi/ib "g2-HD-IB-" 4 X)
54                 '(==hanyo-denshi/hg "g2-HD-HG-" 4 X)
55                 '(==hanyo-denshi/ip "g2-HD-IP-" 4 X)
56                 '(==hanyo-denshi/jt "g2-HD-JT-" 4 X)
57                 '(==hanyo-denshi/ks "g2-HD-KS-" 6 d)
58                 '(==daijiten          "g2-DJT-" 5 d)
59                 '(=cns11643-1           "C1-" 4 X)
60                 '(=cns11643-2           "C2-" 4 X)
61                 '(=cns11643-3           "C3-" 4 X)
62                 '(=cns11643-4           "C4-" 4 X)
63                 '(=cns11643-5           "C5-" 4 X)
64                 '(=cns11643-6           "C6-" 4 X)
65                 '(=cns11643-7           "C7-" 4 X)
66                 '(=adobe-japan1-6       "AJ1-" 5 d)
67                 '(=big5-cdp             "CDP-" 4 X)
68                 '(=>big5-cdp          "A-CDP-" 4 X)
69                 '(=gb2312               "G0-" 4 X)
70                 '(=gb12345              "G1-" 4 X)
71                 '(=jis-x0208@1990       "J90-" 4 X)
72                 '(=jis-x0212            "JSP-" 4 X)
73                 '(=cbeta                "CB" 5 d)
74                 '(=jis-x0208@1997       "J97-" 4 X)
75                 '(=jis-x0208@1978       "J78-" 4 X)
76                 '(=jis-x0208@1983       "J83-" 4 X)
77                 '(=ruimoku-v6           "RUI6-" 4 X)
78                 '(=zinbun-oracle        "ZOB-" 4 d)
79                 '(=daijiten             "DJT-" 5 d)
80                 '(=jef-china3           "JC3-" 4 X)
81                 '(=ucs@unicode          "UU+" 4 X)
82                 '(=ucs@JP/hanazono  "hanaJU+" 4 X)
83                 '(==cns11643-1        "R-C1-" 4 X)
84                 '(==cns11643-2        "R-C2-" 4 X)
85                 '(==cns11643-3        "R-C3-" 4 X)
86                 '(==cns11643-4        "R-C4-" 4 X)
87                 '(==cns11643-5        "R-C5-" 4 X)
88                 '(==cns11643-6        "R-C6-" 4 X)
89                 '(==cns11643-7        "R-C7-" 4 X)
90                 '(=hanziku-1         "HZK01-" 4 X)
91                 '(=hanziku-2         "HZK02-" 4 X)
92                 '(=hanziku-3         "HZK03-" 4 X)
93                 '(=hanziku-4         "HZK04-" 4 X)
94                 '(=hanziku-5         "HZK05-" 4 X)
95                 '(=hanziku-6         "HZK06-" 4 X)
96                 '(=hanziku-7         "HZK07-" 4 X)
97                 '(=hanziku-8         "HZK08-" 4 X)
98                 '(=hanziku-9         "HZK09-" 4 X)
99                 '(=hanziku-10        "HZK10-" 4 X)
100                 '(=hanziku-11        "HZK11-" 4 X)
101                 '(=hanziku-12        "HZK12-" 4 X)
102                 '(==>daijiten       "A2-DJT-" 5 d)
103                 '(==cbeta               "CB" 5 d)
104                 '(=big5                  "B-" 4 X)
105                 '(=daikanwa              "M-" 5 d)
106                 '(=>>daikanwa          "G-M-" 5 d)
107                 '(===ucs@ks           "R-KU+" 4 X)
108                 coded-charset-entity-reference-alist)))
109           (encode-coding-region (point-min)(point-max) 'utf-8-mcs-er)
110
111           (goto-char (point-min))
112           (while (re-search-forward "&\\(A-\\|G-\\|g2-\\|R-\\)?CB\\([0-9]+\\);" nil t)
113             (setq code (string-to-int (match-string 2)))
114             (replace-match
115              (format "<img alt=\"CB%05d\" src=\"%s/cb-gaiji/%02d/CB%05d.gif\"
116 style=\"%s\">"
117                      code
118                      chise-wiki-legacy-bitmap-glyphs-url
119                      (/ code 1000) code
120                      www-format-char-img-style)
121              t 'literal))
122
123           (goto-char (point-min))
124           (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)
125             (setq plane (match-string 2)
126                   code (string-to-int (match-string 3) 16))
127             (replace-match
128              (format "<img alt=\"J%s-%04X\" src=\"%s/JIS-%s/%02d-%02d.gif\"
129 style=\"%s\">"
130                      plane code
131                      chise-wiki-legacy-bitmap-glyphs-url
132                      plane
133                      (- (lsh code -8) 32)
134                      (- (logand code 255) 32)
135                      www-format-char-img-style)
136              t 'literal))
137
138           (goto-char (point-min))
139           (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?J0-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t)
140             (setq code (string-to-int (match-string 2) 16))
141             (replace-match
142              (format "<img alt=\"J0-%04X\" src=\"%s/JIS-90/%02d-%02d.gif\"
143 style=\"%s\">"
144                      code
145                      chise-wiki-legacy-bitmap-glyphs-url
146                      (- (lsh code -8) 32)
147                      (- (logand code 255) 32)
148                      www-format-char-img-style)
149              t 'literal))
150
151           (goto-char (point-min))
152           (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)
153             (setq plane (match-string 2)
154                   code (string-to-int (match-string 3) 16))
155             (replace-match
156              (format "<img alt=\"HD-%s-%04X\" src=\"%s/IVD/HanyoDenshi/%s%02d%02d.png\"
157 style=\"%s\">"
158                      plane code
159                      chise-wiki-legacy-bitmap-glyphs-url
160                      plane
161                      (- (lsh code -8) 32)
162                      (- (logand code 255) 32)
163                      www-format-char-img-style)
164              t 'literal))
165
166           (goto-char (point-min))
167           (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)
168             (setq plane (match-string 2)
169                   code (string-to-int (match-string 3) 16))
170             (replace-match
171              (format "<img alt=\"HD-%s-%04X\" src=\"%s/IVD/HanyoDenshi/%s%04X.png\"
172 style=\"%s\">"
173                      plane code
174                      chise-wiki-legacy-bitmap-glyphs-url
175                      plane code
176                      www-format-char-img-style)
177              t 'literal))
178
179           (goto-char (point-min))
180           (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?HD-KS-\\([0-9]+\\);" nil t)
181             (setq code (string-to-int (match-string 2)))
182             (replace-match
183              (format "<img alt=\"HD-KS%06d\" src=\"%s/IVD/HanyoDenshi/KS%06d.png\"
184 style=\"vertical-align:middle\">"
185                      code
186                      chise-wiki-legacy-bitmap-glyphs-url
187                      code
188                      www-format-char-img-style)
189              t 'literal))
190
191           (goto-char (point-min))
192           (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?HD-TK-\\([0-9]+\\);" nil t)
193             (setq code (string-to-int (match-string 2)))
194             (replace-match
195              (format "<img alt=\"HD-KS%06d\" src=\"%s/IVD/HanyoDenshi/TK%08d.png\"
196 style=\"vertical-align:middle\">"
197                      code
198                      chise-wiki-legacy-bitmap-glyphs-url
199                      code
200                      www-format-char-img-style)
201              t 'literal))
202
203           (goto-char (point-min))
204           (while (re-search-forward "&G\\([01]\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t)
205             (setq plane (string-to-int (match-string 1))
206                   code (string-to-int (match-string 2) 16))
207             (replace-match
208              (format "<img alt=\"GB%d-%04X\" src=\"%s/GB%d/%02d-%02d.gif\"
209 style=\"%s\">"
210                      plane code
211                      chise-wiki-legacy-bitmap-glyphs-url
212                      plane
213                      (- (lsh code -8) 32)
214                      (- (logand code 255) 32)
215                      www-format-char-img-style)
216              t 'literal))
217
218           (goto-char (point-min))
219           (while (re-search-forward "&\\(R-\\)?C\\([1-7]\\)-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t)
220             (setq plane (string-to-int (match-string 2))
221                   code (string-to-int (match-string 3) 16))
222             (replace-match
223              (format "<img alt=\"CNS%d-%04X\" src=\"%s/CNS%d/%04X.gif\"
224 style=\"%s\">"
225                      plane code
226                      chise-wiki-legacy-bitmap-glyphs-url
227                      plane code
228                      www-format-char-img-style)
229              t 'literal))
230
231           (goto-char (point-min))
232           (while (re-search-forward "&\\(R-\\)?JC3-\\([0-9A-F][0-9A-F][0-9A-F][0-9A-F]\\);" nil t)
233             (setq code (string-to-int (match-string 2) 16))
234             (replace-match
235              (format "<img alt=\"JC3-%04X\" src=\"%s/JEF-CHINA3/%04X.png\">"
236                      code chise-wiki-bitmap-glyph-image-url code)
237              t 'literal))
238
239           (goto-char (point-min))
240           (while (re-search-forward "&\\(A-\\)?ZOB-\\([0-9]+\\);" nil t)
241             (setq code (string-to-int (match-string 2)))
242             (replace-match
243              (format "<img alt=\"ZOB-%04d\" src=\"%s/ZOB-1968/%04d.png\"
244 style=\"vertical-align:middle\">"
245                      code
246                      chise-wiki-legacy-bitmap-glyphs-url
247                      code
248                      www-format-char-img-style)
249              t 'literal))
250
251           (goto-char (point-min))
252           (while (re-search-forward "&\\(A2-\\|g2-\\|R-\\)?DJT-\\([0-9]+\\);" nil t)
253             (setq code (string-to-int (match-string 2)))
254             (replace-match
255              (format "<img alt=\"DJT-%05d\" src=\"%s/%05d.png\"
256 style=\"vertical-align:middle; width: auto; max-height: 60px\">"
257                      code
258                      chise-wiki-daijiten-bitmap-glyphs-url
259                      code
260                      www-format-char-img-style)
261              t 'literal))
262
263           (goto-char (point-min))
264           (while (re-search-forward "&SW-JIGUGE\\([45]?\\)-\\([0-9]+\\);" nil t)
265             (setq subcode (match-string 1)
266                   code (string-to-int (match-string 2)))
267             (setq plane
268                   (if (string= subcode "")
269                       "5"
270                     subcode))
271             (replace-match
272              (format "<img alt=\"SW-JIGUGE%s-%05d\" src=\"%s/ShuoWen/Jiguge%s/%05d.png\"
273 style=\"vertical-align:middle; width: auto; max-height: 80px\">"
274                      plane code
275                      chise-wiki-legacy-bitmap-glyphs-url
276                      plane code)
277              t 'literal))
278
279           (goto-char (point-min))
280           (while (re-search-forward "&HNG\\([0-9]+\\)-\\([0-9][0-9][0-9][0-9]\\)\\([0-9]\\);" nil t)
281             (setq plane (match-string 1)
282                   code (string-to-int (match-string 2))
283                   subcode (string-to-int (match-string 3)))
284             (setq subcode
285                   (if (eq subcode 0)
286                       ""
287                     (char-to-string (decode-char 'ascii (+ 96 subcode)))))
288             (replace-match
289              (format
290               "<img alt=\"HNG%s-%04d%s\" src=\"%s/%s/%04d%s.png\" style=\"
291 vertical-align:middle; width: auto; max-height: 60px\">"
292               plane code subcode
293               chise-wiki-hng-bitmap-glyphs-url
294               plane code subcode
295               )
296              t 'literal))
297
298           (goto-char (point-min))
299           (while (re-search-forward "&\\(R-\\)?CHISE-HDIC-TSJ\\([0-9A-F]+\\);" nil t)
300             (setq code (string-to-int (match-string 2) 16))
301             (setq char (decode-char '===chise-hdic-tsj code))
302             (when (setq ret (get-char-attribute char '=hdic-tsj-glyph-id))
303               (replace-match
304                (format
305                 "<img alt=\"HDIC-TSJ-%s\" src=\"https://viewer.hdic.jp/img/tsj/%s.jpg\" style=\"
306 vertical-align:middle; width: auto; max-height: 60px\">"
307                 ret ret)
308                t 'literal)))
309
310           (goto-char (point-min))
311           (while (re-search-forward "&\\(R-\\)?CHISE-HDIC-SYP\\([0-9A-F]+\\);" nil t)
312             (setq code (string-to-int (match-string 2) 16))
313             (setq char (decode-char '===chise-hdic-syp code))
314             (when (setq ret (get-char-attribute char '=hdic-syp-entry-id))
315               (replace-match
316                (format
317                 "<img alt=\"HDIC-SYP-%s\" src=\"https://viewer.hdic.jp/img/syp/%s\" style=\"
318 vertical-align:middle; width: auto; max-height: 60px\">"
319                 ret ret)
320                t 'literal)))
321
322           (goto-char (point-min))
323           (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?AJ1-\\([0-9]+\\);" nil t)
324             (setq code (string-to-int (match-string 2)))
325             (replace-match
326              (format "<img alt=\"AJ1-%05d\" src=\"%s/IVD/AdobeJapan1/CID+%d.png\"
327 style=\"vertical-align:middle\">"
328                      code
329                      chise-wiki-legacy-bitmap-glyphs-url
330                      code
331                      www-format-char-img-style)
332              t 'literal))
333
334           (goto-char (point-min))
335           (while (re-search-forward "&\\(A-\\|o-\\|G-\\|g2-\\|R-\\)?MJ\\([0-9]+\\);" nil t)
336             (setq code (string-to-int (match-string 2)))
337             (replace-match
338              (format "<img alt=\"MJ%06d\" src=\"https://moji.or.jp/mojikibansearch/img/MJ/MJ%06d.png\"
339 style=\"vertical-align:middle; width: 48px; height: 48px\">"
340                      code
341                      code
342                      www-format-char-img-style)
343              t 'literal))
344
345           (goto-char (point-min))
346           (while (re-search-forward "&\\(o-\\|G-\\|g2-\\)?IU[+-]\\([0-9A-F]+\\);" nil t)
347             (setq code (string-to-int (match-string 2) 16))
348             (replace-match
349              (format "<img alt=\"u%04x\" src=\"%s/u%04x.svg\"
350 style=\"vertical-align:middle; width: 48px; height: 48px\">"
351                      code
352                      chise-wiki-glyphwiki-glyph-image-url
353                      code
354                      www-format-char-img-style)
355              t 'literal))
356
357           (goto-char (point-min))
358           (while (re-search-forward "&\\(o-\\|G-\\|g2-\\|R-\\)?KU[+-]\\([0-9A-F]+\\);" nil t)
359             (setq code (string-to-int (match-string 2) 16))
360             (replace-match
361              (format "<img alt=\"u%04x-k\" src=\"%s/u%04x-k.svg\"
362 style=\"vertical-align:middle; width: 48px; height: 48px\">"
363                      code
364                      chise-wiki-glyphwiki-glyph-image-url
365                      code
366                      www-format-char-img-style)
367              t 'literal))
368
369           (goto-char (point-min))
370           (while (re-search-forward "&A-\\(comp\\|cgn\\)U[+-]\\([0-9A-F]+\\);" nil t)
371             (setq code (string-to-int (match-string 2) 16))
372             (replace-match
373              (format "<img alt=\"u%04x\" src=\"%s/u%04x.svg\"
374 style=\"vertical-align:middle; width: 48px; height: 48px\">"
375                      code
376                      chise-wiki-glyphwiki-glyph-image-url
377                      code
378                      www-format-char-img-style)
379              t 'literal))
380
381           (goto-char (point-min))
382           (while (re-search-forward
383                   "&\\(A-\\|g2-\\)?U-i\\([0-9]+\\)\\+\\([0-9A-F]+\\);"
384                   nil t)
385             (setq plane (string-to-int (match-string 2))
386                   code (string-to-int (match-string 3) 16))
387             (replace-match
388              (format "<img alt=\"u%04x-itaiji-%03d\" src=\"%s/u%04x-itaiji-%03d.svg\"
389 style=\"vertical-align:middle; width: 48px; height: 48px\">"
390                      code
391                      plane
392                      chise-wiki-glyphwiki-glyph-image-url
393                      code
394                      plane
395                      www-format-char-img-style)
396              t 'literal))
397
398           (goto-char (point-min))
399           (while (re-search-forward "&A-IWDSU\\+\\([0-9A-F]+\\);" nil t)
400             (setq code (string-to-int (match-string 1) 16))
401             (replace-match
402              (format "<img alt=\"A-IWDSU+%04x\" src=\"%s/u%04x.svg\"
403 style=\"vertical-align:middle; width: 48px; height: 48px\">"
404                      code
405                      chise-wiki-glyphwiki-glyph-image-url
406                      code
407                      www-format-char-img-style)
408              t 'literal))
409
410           (goto-char (point-min))
411           (while (re-search-forward
412                   "&\\(A-\\)?CDP-i\\([0-9]+\\)-\\([0-9A-F]+\\);"
413                   nil t)
414             (setq plane (string-to-int (match-string 2))
415                   code (string-to-int (match-string 3) 16))
416             (replace-match
417              (format "<img alt=\"cdp-%04x-itaiji-%03d\" src=\"%s/cdp-%04x-itaiji-%03d.svg\"
418 style=\"vertical-align:middle; width: 48px; height: 48px\">"
419                      code
420                      plane
421                      chise-wiki-glyphwiki-glyph-image-url
422                      code
423                      plane
424                      www-format-char-img-style)
425              t 'literal))
426
427           (goto-char (point-min))
428           (while (re-search-forward
429                   "&\\(A-\\)?CDP-v\\([0-9]+\\)-\\([0-9A-F]+\\);"
430                   nil t)
431             (setq plane (string-to-int (match-string 2))
432                   code (string-to-int (match-string 3) 16))
433             (replace-match
434              (format "<img alt=\"cdp-%04x-var-%03d\" src=\"%s/cdp-%04x-var-%03d.svg\"
435 style=\"vertical-align:middle; width: 48px; height: 48px\">"
436                      code
437                      plane
438                      chise-wiki-glyphwiki-glyph-image-url
439                      code
440                      plane
441                      www-format-char-img-style)
442              t 'literal))
443
444           (goto-char (point-min))
445           (while (re-search-forward
446                   "&\\(A-\\|G-\\|g2-\\|R-\\)?M-\\([0-9]+\\);"
447                   nil t)
448             (setq code (string-to-int (match-string 2)))
449             (replace-match
450              (format "<img alt=\"dkw-%05d\" src=\"%s/dkw-%05d.svg\"
451 style=\"vertical-align:middle; width: 48px; height: 48px\">"
452                      code
453                      chise-wiki-glyphwiki-glyph-image-url
454                      code
455                      www-format-char-img-style)
456              t 'literal))
457
458           (goto-char (point-min))
459           (while (re-search-forward "&\\(g2-\\)?U-v\\([0-9]+\\)\\+\\([0-9A-F]+\\);" nil t)
460             (setq plane (string-to-int (match-string 2))
461                   code (string-to-int (match-string 3) 16))
462             (replace-match
463              (format "<img alt=\"u%04x-var-%03d\" src=\"%s/u%04x-var-%03d.svg\"
464 style=\"vertical-align:middle; width: 48px; height: 48px\">"
465                      code
466                      plane
467                      chise-wiki-glyphwiki-glyph-image-url
468                      code
469                      plane
470                      www-format-char-img-style)
471              t 'literal))
472
473           (goto-char (point-min))
474           (while (re-search-forward "&\\(A-\\|G-\\|R-\\|g2-\\)?GT-\\([0-9]+\\);" nil t)
475             (setq code (string-to-int (match-string 2)))
476             (replace-match
477              (format "<img alt=\"GT-%05d\" src=\"%s?char=GT-%05d\"
478 style=\"%s\">"
479                      code
480                      chise-wiki-glyph-cgi-url
481                      code
482                      www-format-char-img-style)
483              t 'literal))
484
485           (goto-char (point-min))
486           (while (re-search-forward "&\\(A-\\|G-\\|g2-\\)?GT-K\\([0-9]+\\);" nil t)
487             (setq code (string-to-int (match-string 2)))
488             (replace-match
489              (format "<img alt=\"GT-K%05d\" src=\"%s?char=GT-K%05d\"
490 style=\"%s\">"
491                      code
492                      chise-wiki-glyph-cgi-url
493                      code
494                      www-format-char-img-style)
495              t 'literal))
496
497           (goto-char (point-min))
498           (while (re-search-forward "&B-\\([0-9A-F]+\\);" nil t)
499             (setq code (string-to-int (match-string 1) 16))
500             (replace-match
501              (format "<img alt=\"B-%04X\" src=\"%s?char=B-%04X\"
502 style=\"%s\">"
503                      code
504                      chise-wiki-glyph-cgi-url
505                      code
506                      www-format-char-img-style)
507              t 'literal))
508
509           (goto-char (point-min))
510           (while (re-search-forward
511                   "&\\(A-\\|G-\\|g2-\\|R-\\)?CDP-\\([0-9A-F]+\\);" nil t)
512             (setq code (string-to-int (match-string 2) 16))
513             (replace-match
514              (format "<img alt=\"CDP-%04X\" src=\"%s?char=CDP-%04X\"
515 style=\"%s\">"
516                      code
517                      chise-wiki-glyph-cgi-url
518                      code
519                      www-format-char-img-style)
520              t 'literal))
521
522           (goto-char (point-min))
523           (while (re-search-forward
524                   "&\\(I-\\)?HZK\\(0[1-9]\\|1[0-2]\\)-\\([0-9A-F]+\\);" nil t)
525             (setq plane (match-string 2)
526                   code (string-to-int (match-string 3) 16))
527             (replace-match
528              (format "<img alt=\"HZK%s-%04X\" src=\"%s?char=HZK%s-%04X\"
529 style=\"%s\">"
530                      plane
531                      code
532                      chise-wiki-glyph-cgi-url
533                      plane
534                      code
535                      www-format-char-img-style)
536              t 'literal))
537
538           (goto-char (point-min))
539           (while (re-search-forward "&\\(A-\\|G-\\|g2-\\|R-\\)?RUI6-\\([0-9A-F]+\\);" nil t)
540             (setq code (string-to-int (match-string 2) 16))
541             (replace-match
542              (format "<img alt=\"RUI6-%04X\" src=\"%s?char=RUI6-%04X\"
543 style=\"vertical-align:middle\">"
544                      code
545                      chise-wiki-glyph-cgi-url
546                      code
547                      www-format-char-img-style)
548              t 'literal))
549
550           (goto-char (point-min))
551           (while (re-search-forward "&hanaJU\\+\\([0-9A-F]+\\);" nil t)
552             (setq code (string-to-int (match-string 1) 16))
553             (replace-match
554              (format "<img alt=\"hanaJU+%04X\" src=\"%s?char=hana-JU+%04X\"
555 style=\"vertical-align:middle\">"
556                      code
557                      chise-wiki-glyph-cgi-url
558                      code
559                      www-format-char-img-style)
560              t 'literal))
561
562           (goto-char (point-min))
563           (while (re-search-forward "&\\(A-\\|G-\\|g2-\\|R-\\)?\\(UU\\+\\|U-\\)\\([0-9A-F]+\\);" nil t)
564             (setq code (string-to-int (match-string 3) 16))
565             (replace-match
566              (format "<img alt=\"UU+%04X\" src=\"https://www.unicode.org/cgi-bin/refglyph?24-%04X\"
567 style=\"vertical-align:middle\">"
568                      code
569                      code
570                      www-format-char-img-style)
571              t 'literal))
572
573           (goto-char (point-min))
574           (while (re-search-forward "&MCS-\\([0-9A-F]+\\);" nil t)
575             (setq code (string-to-int (match-string 1) 16))
576             (setq start (match-beginning 0)
577                   end (match-end 0))
578             (setq char (decode-char 'system-char-id code))
579             (cond
580              ((and (setq variants
581                          (or (www-get-feature-value char '->subsumptive)
582                              (www-get-feature-value char '->denotational)))
583                    (progn
584                      (if (characterp variants)
585                          (setq variants (list variants)))
586                      (while (and variants
587                                  (setq ret (www-format-encode-string
588                                             (char-to-string (car variants))))
589                                  (string-match "&MCS-\\([0-9A-F]+\\);" ret))
590                        (setq variants (cdr variants)))
591                      ret))
592               (unless (string-match "&MCS-\\([0-9A-F]+\\);" ret)
593                 (goto-char start)
594                 (delete-region start end)
595                 (insert ret))
596               )
597              ((setq ret (or (www-get-feature-value char 'ideographic-combination)
598                             (www-get-feature-value char 'ideographic-structure)))
599               (setq ret
600                     (mapconcat
601                      (lambda (ch)
602                        (if (listp ch)
603                            (if (characterp (setq rret (find-char ch)))
604                                (setq ch rret)))
605                        (if (characterp ch)
606                            (www-format-encode-string
607                             (char-to-string ch) without-tags)
608                          (www-format-encode-string
609                           (format "%S" ch) without-tags)))
610                      ret ""))
611               (when ret
612                 (goto-char start)
613                 (delete-region start end)
614                 (insert ret))
615               )))
616           ))
617       ;; (goto-char (point-min))
618       ;; (while (search-forward "&GT-" nil t)
619       ;;   (replace-match "&amp;GT-" t 'literal))
620       (buffer-string))))
621
622 (setq www-format-char-img-style "vertical-align:middle;")
623
624 (defun decode-url-string (string &optional coding-system)
625   (if (> (length string) 0)
626       (let ((i 0)
627             dest)
628         (while (string-match "%\\([0-9A-F][0-9A-F]\\)" string i)
629           (setq dest (concat dest
630                              (substring string i (match-beginning 0))
631                              (char-to-string
632                               (int-char
633                                (string-to-int (match-string 1 string) 16))))
634                 i (match-end 0)))
635         (decode-coding-string
636          (concat dest (substring string i))
637          coding-system))))
638
639 (defconst www-ids-find-version "0.99.2")
640
641 (defvar www-ids-find-ideographic-products-file-name
642   (expand-file-name "ideographic-products"
643                     (expand-file-name
644                      "feature"
645                      (expand-file-name
646                       "character"
647                       chise-system-db-directory))))
648
649 (defvar www-ids-find-char-viewer-url
650   "/est/view/character/")
651
652 (defvar www-ids-find-chise-link-map-url-prefix
653   "http://fonts.jp/chise_linkmap/map.cgi?code=")
654
655 (defvar www-ids-find-tang-chars-file-name
656   "~tomo/projects/chise/ids/www/tang-chars.udd")
657
658 (defun www-ids-find-format-char (c &optional code-desc)
659   (princ
660    (format "<a href=\"%s%s\">%s</a>"
661            www-ids-find-char-viewer-url
662            (www-uri-encode-object c)
663            (www-format-encode-string (char-to-string c))))
664   ;; (let ((str (encode-coding-string (format "%c" c) 'utf-8-er))
665   ;;       plane code)
666   ;;   (princ
667   ;;    (with-temp-buffer
668   ;;      (cond
669   ;;       ((string-match "&CB\\([0-9]+\\);" str)
670   ;;        (setq code (string-to-int (match-string 1 str)))
671   ;;        (insert (format "<a href=\"%s"
672   ;;                        www-ids-find-char-viewer-url))
673   ;;        (insert str)
674   ;;        (insert (format "\"><img alt=\"CB%05d\" src=\"/glyphs/cb-gaiji/%02d/CB%05d.gif\">\n"
675   ;;                        code (/ code 1000) code))
676   ;;        (when code-desc
677   ;;          (insert (format "CB%05d</a>" code)))
678   ;;        )
679   ;;       ((string-match "&JC3-\\([0-9A-F]+\\);" str)
680   ;;        (setq code (string-to-int (match-string 1 str) 16))
681   ;;        (insert (format "<a href=\"%s"
682   ;;                        www-ids-find-char-viewer-url))
683   ;;        (insert str)
684   ;;        (insert (format "\"><img alt=\"JC3-%04X\" src=\"http://kanji.zinbun.kyoto-u.ac.jp/db/CHINA3/Gaiji/%04x.gif\">\n"
685   ;;                        code code))
686   ;;        (when code-desc
687   ;;          (insert (format "JC3-%04X</a>" code)))
688   ;;        )
689   ;;       ((string-match "&J\\(78\\|83\\|90\\|SP\\)-\\([0-9A-F]+\\);" str)
690   ;;        (setq plane (match-string 1 str)
691   ;;              code (string-to-int (match-string 2 str) 16))
692   ;;        (insert (format "<a href=\"%s"
693   ;;                        www-ids-find-char-viewer-url))
694   ;;        (insert str)
695   ;;        (insert (format "\"><img alt=\"J%s-%04X\" src=\"/glyphs/JIS-%s/%02d-%02d.gif\">\n"
696   ;;                        plane code plane
697   ;;                        (- (lsh code -8) 32)
698   ;;                        (- (logand code 255) 32)))
699   ;;        (when code-desc
700   ;;          (insert (format "J%s-%04X</a>" plane code)))
701   ;;        )
702   ;;       ((string-match "&G\\([01]\\)-\\([0-9A-F]+\\);" str)
703   ;;        (setq plane (string-to-int (match-string 1 str))
704   ;;              code (string-to-int (match-string 2 str) 16))
705   ;;        (insert (format "<a href=\"%s"
706   ;;                        www-ids-find-char-viewer-url))
707   ;;        (insert str)
708   ;;        (insert (format "\"><img alt=\"G%d-%04X\" src=\"/glyphs/GB%d/%02d-%02d.gif\">\n"
709   ;;                        plane code plane
710   ;;                        (- (lsh code -8) 32)
711   ;;                        (- (logand code 255) 32)))
712   ;;        (when code-desc
713   ;;          (insert (format "G%d-%04X</a>" plane code)))
714   ;;        )
715   ;;       ((string-match "&C\\([1-7]\\)-\\([0-9A-F]+\\);" str)
716   ;;        (setq plane (string-to-int (match-string 1 str))
717   ;;              code (string-to-int (match-string 2 str) 16))
718   ;;        (insert (format "<a href=\"%s"
719   ;;                        www-ids-find-char-viewer-url))
720   ;;        (insert str)
721   ;;        (insert (format "\"><img alt=\"C%d-%04X\" src=\"/glyphs/CNS%d/%04X.gif\">\n"
722   ;;                        plane code plane code))
723   ;;        (when code-desc
724   ;;          (insert (format "C%d-%04X</a>" plane code)))
725   ;;        )
726   ;;       ((string-match "&ZOB-\\([0-9]+\\);" str)
727   ;;        (setq code (string-to-int (match-string 1 str)))
728   ;;        (insert (format "<a href=\"%s"
729   ;;                        www-ids-find-char-viewer-url))
730   ;;        (insert str)
731   ;;        (insert (format "\"><img alt=\"ZOB-%04d\" src=\"/glyphs/ZOB-1968/%04d.png\">\n"
732   ;;                        code code))
733   ;;        (when code-desc
734   ;;          (insert (format "ZOB-%04d</a>" code)))
735   ;;        )
736   ;;       (t
737   ;;        (insert (format "<a href=\"%s"
738   ;;                        www-ids-find-char-viewer-url))
739   ;;        ;; (insert str)
740   ;;        (insert
741   ;;         (mapconcat (lambda (c)
742   ;;                      (if (<= (char-int c) #x7F)
743   ;;                          (char-to-string c)
744   ;;                        (format "%%%02X" c)))
745   ;;                    str ""))
746   ;;        (insert "\">")
747   ;;        (insert str)
748   ;;        (insert "</a>")
749   ;;        ))
750   ;;      (goto-char (point-min))
751   ;;      (while (search-forward "&" nil t)
752   ;;        (replace-match "&amp;" t 'literal))
753   ;;      (buffer-string))))
754   )
755   
756 (defun www-ids-find-format-line (c is)
757   (let (ucs len i ids)
758     (princ "<span class=\"entry\">")
759     (www-ids-find-format-char c 'code-desc)
760     (princ "</span>")
761     (princ
762      (or (if (setq ucs (or (char-ucs c)
763                            (encode-char c 'ucs)))
764              (format
765               " <a href=\"http://www.unicode.org/cgi-bin/GetUnihanData.pl?codepoint=%X\">%s</a>"
766               ucs
767               (cond ((<= ucs #xFFFF)
768                      (format "U+%04X" ucs))
769                     ((<= ucs #x10FFFF)
770                      (format "U-%08X" ucs))))
771            "          ")))
772     (when ucs
773       (princ
774        (format " <a href=\"%s%X\">(link map)</a>"
775                www-ids-find-chise-link-map-url-prefix ucs)))
776     (princ " ")
777     (when is
778       (setq ids (ideographic-structure-to-ids is))
779       (setq i 0
780             len (length ids))
781       (princ "<span class=\"ids\">")      
782       (while (< i len)
783         (www-ids-find-format-char (aref ids i))
784         (setq i (1+ i)))
785       (princ "</span>"))
786     (when (and ucs
787                (with-current-buffer
788                    (find-file-noselect
789                     www-ids-find-tang-chars-file-name)
790                  (goto-char (point-min))
791                  (re-search-forward (format "^%d$" ucs) nil t)))
792       (princ
793        (format " <a href=\"http://coe21.zinbun.kyoto-u.ac.jp/djvuchar?query=%s\">"
794                (mapconcat
795                 (lambda (c)
796                   (format "%%%02X" (char-int c)))
797                 (encode-coding-string (char-to-string c)
798                                       'utf-8-jp)
799                 "")))
800       (princ (encode-coding-string "\e$B"M\e(B[\e$BEbBeBsK\\e(B]</a>" 'utf-8-jp-er)))
801     (princ "<br>\n")))
802
803 (defun www-ids-insert-chars-including-components* (components
804                                                    &optional ignored-chars products)
805   (unless products
806     (setq products (ideograph-find-products components ignored-chars)))
807   (let (is as bs len)
808     (setq len (length products))
809     (princ "<ul>\n")
810     (dolist (c (cond
811                 ((>= len 1024)
812                  (sort (copy-list products)
813                        (lambda (a b)
814                          (< (char-int a)(char-int b))))
815                  )
816                 ((>= len 512)
817                  (sort (copy-list products)
818                        (lambda (a b)
819                          (if (setq as (char-total-strokes a))
820                              (if (setq bs (char-total-strokes b))
821                                  (if (= as bs)
822                                      (< (char-int a)(char-int b))
823                                    (< as bs))
824                                t)
825                            (< (char-int a)(char-int b)))))
826                  )
827                 (t
828                  (sort (copy-list products)
829                        (lambda (a b)
830                          (if (setq as (char-total-strokes a))
831                              (if (setq bs (char-total-strokes b))
832                                  (if (= as bs)
833                                      (ideograph-char< a b)
834                                    (< as bs))
835                                t)
836                            (ideograph-char< a b))))
837                  )))
838       (unless (memq c ignored-chars)
839         (setq is (char-feature c 'ideographic-structure))
840         (princ "<li>")
841         (www-ids-find-format-line c is)
842         (setq ignored-chars
843               (www-ids-insert-chars-including-components*
844                (char-to-string c) (cons c ignored-chars)))
845         )
846       )
847     (princ "</ul>\n")
848     )
849   ignored-chars)
850
851 (defun www-ids-insert-chars-including-components (components
852                                                   &optional ignored-chars)
853   (let ((products (ideograph-find-products components ignored-chars))
854         is as bs len ignore-children)
855     (setq len (length products))
856     (when (>= len 1024)
857       (setq ignore-children t)
858       (princ
859        (encode-coding-string
860         "<p>\e$B7k2L$,B?$9$.$k$?$a!":F5"E*8!:w$r>JN,$7$^$7$?!#\e(B</p>"
861         'utf-8-jp-er)))
862     (if (>= len 2048)
863         (dolist (c products)
864           (www-ids-find-format-char c))
865       (setq ignored-chars
866             (nreverse
867              (www-ids-insert-chars-including-components* components ignored-chars products)))
868       (dolist (c ignored-chars)
869         (dolist (vc (char-component-variants c))
870           (unless (memq vc ignored-chars)
871             (when (setq is (get-char-attribute vc 'ideographic-structure))
872               (princ "<li>")
873               (www-ids-find-format-line vc is)
874               (setq ignored-chars
875                     (www-ids-insert-chars-including-components*
876                      (char-to-string vc)
877                      (cons vc ignored-chars)))))))
878       (setq products (ideograph-find-products-with-variants components ignored-chars))
879       (setq len (length products))
880       (when (>= len 512)
881         (setq ignore-children t)
882         (princ
883          (encode-coding-string
884           "<p>\e$B7k2L$,B?$9$.$k$?$a!"4XO";z$N:F5"E*8!:w$r>JN,$7$^$7$?!#\e(B</p>"
885           'utf-8-jp-er)))
886       (if (>= len 1024)
887           (dolist (c products)
888             (www-ids-find-format-char c))
889         (dolist (c (sort (copy-tree products)
890                          (lambda (a b)
891                            (if (setq as (char-total-strokes a))
892                                (if (setq bs (char-total-strokes b))
893                                    (if (= as bs)
894                                        (ideograph-char< a b)
895                                      (< as bs))
896                                  t)
897                              (ideograph-char< a b)))))
898           (unless (memq c ignored-chars)
899             (setq is (get-char-attribute c 'ideographic-structure))
900             (princ "<li>")
901             (www-ids-find-format-line c is)
902             (unless ignore-children
903               (setq ignored-chars
904                     (www-ids-insert-chars-including-components*
905                      (char-to-string c)
906                      (cons c ignored-chars))))
907             ))
908         ))
909     )
910   ignored-chars)
911
912 (defun www-batch-ids-find ()
913   (let ((components (car command-line-args-left))
914         (coded-charset-entity-reference-alist
915          (list*
916           '(=cns11643-1         "C1-" 4 X)
917           '(=cns11643-2         "C2-" 4 X)
918           '(=cns11643-3         "C3-" 4 X)
919           '(=cns11643-4         "C4-" 4 X)
920           '(=cns11643-5         "C5-" 4 X)
921           '(=cns11643-6         "C6-" 4 X)
922           '(=cns11643-7         "C7-" 4 X)
923           '(=gb2312             "G0-" 4 X)
924           '(=gb12345            "G1-" 4 X)
925           '(=jis-x0208@1990     "J90-" 4 X)
926           '(=jis-x0212          "JSP-" 4 X)
927           '(=cbeta              "CB" 5 d)
928           '(=jef-china3         "JC3-" 4 X)
929           '(=jis-x0208@1978     "J78-" 4 X)
930           '(=jis-x0208@1983     "J83-" 4 X)
931           '(=daikanwa           "M-" 5 d)
932           coded-charset-entity-reference-alist))
933         )
934     (setq command-line-args-left (cdr command-line-args-left))
935     (cond
936      ((stringp components)
937       (if (string-match "^components=" components)
938           (setq components (substring components (match-end 0))))
939       (setq components
940             (if (> (length components) 0)
941                 (decode-url-string components 'utf-8-er)
942               nil))
943       )
944      (t
945       (setq components nil)
946       ))
947     (princ "Content-Type: text/html; charset=UTF-8
948
949 <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
950             \"http://www.w3.org/TR/html4/loose.dtd\">
951 <html lang=\"ja\">
952 <head>
953 <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">
954 <title>CHISE IDS Find</title>
955 <link href=\"/css/bootstrap-4.5.0.min.css\" rel=\"stylesheet\">
956 <style type=\"text/css\">
957 <!--
958 .entry { font-size: 36px; }
959 .entry a img { height: 36px; }
960 .ids { font-size: 24px; }
961 .ids a img { height: 24px; }
962 img { vertical-align:middle; }
963 a { text-decoration:none; }
964 ul { margin: 0 0; }
965 li { margin: 0 0 -0.2em; }
966 .tooltip {
967     position: relative;
968     display: inline-block;
969 }
970 .tooltip .tooltiptext {
971     display: none;
972 }
973 -->
974 </style>
975 </head>
976
977 <body>
978
979 <div class=\"jumbotron jumbotron-fluid mb-0\">
980 <h1 class=\"display-4 text-center\">")
981     (princ (encode-coding-string "CHISE IDS \e$B4A;z8!:w\e(B" 'utf-8-jp-er))
982     (princ "</h1>")
983     (princ "
984 <p class=\"text-center\">Version ")
985     (princ www-ids-find-version)
986     (princ (format-time-string
987             " (Last-modified: %Y-%m-%d %H:%M:%S)</p>"
988             (nth 5
989                  (file-attributes
990                   www-ids-find-ideographic-products-file-name))))
991     (princ "
992 </div>
993 <div class=\"container mt-0 mw-100 d-inline-block align-top bg-dark\">
994 <p />
995 <div class=\"input-group mb-3 h3 my-4\">
996 <div class=\"input-group-prepend mw-75 ml-3\">
997 <form action=\"/ids-find\" method=\"GET\">
998 <span class=\"input-group-text\" id=\"basic-addon1\">
999 ")
1000     (princ (encode-coding-string "\e$BItIJJ8;zNs\e(B" 'utf-8-jp-er))
1001     (princ "</span>
1002 </div>
1003 <input type=\"text\" class=\"form-control\" aria-describedby=\"basic-addon1\" name=\"components\" size=\"30\" maxlength=\"256\" value=\"")
1004     (if (> (length components) 0)
1005         (princ (encode-coding-string components 'utf-8-er)))
1006     (princ "\">
1007 <input class=\"mr-3\" type=\"submit\" value=\"")
1008     (princ (encode-coding-string "\e$B8!:w3+;O\e(B" 'utf-8-jp-er))
1009     (princ "\">
1010 </form>
1011 </div>
1012 </div>
1013
1014 ")
1015     (unless (file-newer-than-file-p
1016              www-ids-find-ideographic-products-file-name
1017              (locate-file (car command-line-args) exec-path))
1018       (princ (encode-coding-string "<hr>
1019 <p>
1020 \e$B8=:_!"%7%9%F%`$N99?7:n6HCf$G$9!#$7$P$i$/$*BT$A$/$@$5$$!#\e(B
1021 <hr>
1022 " 'utf-8-jp-er))
1023       ;; (setq components nil)
1024       )
1025     (cond
1026      (components
1027       (princ "<div class=\"container\">
1028 ")
1029       ;; (map-char-attribute
1030       ;;  (lambda (c v)
1031       ;;    (when (every (lambda (p)
1032       ;;                   (ideographic-structure-member p v))
1033       ;;                 components)
1034       ;;      (princ (encode-coding-string
1035       ;;              (ids-find-format-line c v)
1036       ;;              'utf-8-jp-er))
1037       ;;      (princ "<br>\n")
1038       ;;      )
1039       ;;    nil)
1040       ;;  'ideographic-structure)
1041       (when (= (length components) 1)
1042         (www-ids-find-format-line (aref components 0)
1043                                   (char-feature (aref components 0)
1044                                                 'ideographic-structure)))
1045       ;; (dolist (c (ideographic-products-find components))
1046       ;;   (setq is (char-feature c 'ideographic-structure))
1047       ;;   ;; to avoid problems caused by wrong indexes
1048       ;;   (when (every (lambda (c)
1049       ;;                  (ideographic-structure-member c is))
1050       ;;                components)
1051       ;;     (www-ids-find-format-line c is)))
1052       ;; (princ "<ul>\n")
1053       (www-ids-insert-chars-including-components components)
1054       ;; (princ "</ul>\n")
1055       (princ "</div>\n")
1056       )
1057      (t
1058       (princ (encode-coding-string "<div class=\"container mt-4\">
1059 <div class=\"ml-3\">
1060 <p>
1061 \e$B;XDj$7$?ItIJ$rA4$F4^$`4A;z$N0lMw$rI=<($7$^$9!#\e(B
1062 </p>
1063 <p>
1064 CHISE \e$B$GMQ$$$i$l$k<BBV;2>H7A<0!JNc!'\e(B&amp;M-00256;\e$B!K$GItIJ$r;XDj$9$k;v$b$G$-$^$9!#\e(B
1065 </p>
1066 </div>
1067 " 'utf-8-jp-er))
1068       (princ (encode-coding-string "
1069 <p  class=\"ml-0\">
1070 \[Links\]
1071 <ul>
1072 <li><a href=\"http://www.shuiren.org/chuden/toyoshi/syoseki/chise_ids.html\"
1073 >\e$B!V\e(BCHISE IDS FIND\e$B$G4A;z$r8!:w!W\e(B</a> \e$B!=\e(B \e$B;3ED?r?N$5$s!J\e(B<a
1074 href=\"http://www.shuiren.org/\">\e$B?g?MDb\e(B</a>\e$B!K$K$h$k2r@b\e(B
1075 </ul>
1076 <ul>
1077 <li><a href=\"http://www.karitsu.org/tools/firefox_plugin.htm\"
1078 >Firefox \e$BMQ\e(B plugin</a> by \e$B=);3M[0lO:$5$s!J\e(B<a href=\"http://www.karitsu.org/\"
1079 >\e$B2aN)c7\e(B</a>\e$B!K\e(B
1080 </ul>
1081 <ul>
1082 <li><a href=\"http://git.chise.org/gitweb/?p=chise/ids.git;a=blob;f=www/www-ids-find.el\"
1083 >www-ids-find.el (source file (Emacs Lisp part))
1084 <li><a href=\"http://www.chise.org/ids/\"
1085 >\e$B!V\e(BCHISE \e$B4A;z9=B$>pJs%G!<%?%Y!<%9!W\e(B</a>
1086 <li><a href=\"http://fonts.jp/chise_linkmap/\"
1087 >\e$B!V\e(Bchise_linkmap : CHISE \e$B4A;zO"4D?^!W\e(B</a> by \e$B>eCO9(0l$5$s\e(B
1088 <li><a href=\"http://www.chise.org/\"
1089 >CHISE Project</a>
1090 </ul>
1091 <ul>
1092 <li><a href=\"http://coe21.zinbun.kyoto-u.ac.jp/djvuchar\"
1093 >\e$B!VBsK\J8;z%G!<%?%Y!<%9!W\e(B</a> by
1094 <a href=\"http://coe21.zinbun.kyoto-u.ac.jp/\"
1095 >\e$B5~ETBg3X\e(B21\e$B@$5*\e(BCOE\e$B!VEl%"%8%"@$3&$N?MJ8>pJs3X8&5f650i5rE@!W\e(B</a>
1096 <li><a href=\"http://www.unicode.org/\"
1097 >Unicode</a>
1098 </ul>
1099 </p>
1100 </div>
1101 "
1102  'utf-8-jp-er))
1103
1104       ))
1105     (princ "<hr>
1106 <div class=\"container\">
1107 ")
1108     (princ "<div class=\"ml-0\">
1109 Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2015, 2016, 2017, 2020 <a href=\"http://kanji.zinbun.kyoto-u.ac.jp/~tomo/\"
1110 >MORIOKA Tomohiko</a></div>")
1111     (princ
1112      (format
1113       "<div>Powered by <a
1114 href=\"http://www.chise.org/xemacs/\"
1115 >XEmacs CHISE</a> %s.</div>"
1116       (encode-coding-string xemacs-chise-version 'utf-8-jp-er)))
1117     (princ "
1118 </div>
1119 </body>
1120 </html>
1121 ")))