1 ;; -*- coding: utf-8-mcs-er -*-
2 (require 'cwiki-common)
4 (defvar chise-wiki-view-url "view.cgi")
5 (defvar chise-wiki-edit-url "edit.cgi")
6 (defvar chise-wiki-add-url "add.cgi")
8 (defun www-display-char-desc (uri-char &optional lang level simple)
11 (let ((char (www-uri-decode-char uri-char))
12 logical-feature displayed-features
15 (when (characterp char)
16 (when (= (length uri-char) 1)
17 (setq uri-char (www-uri-encode-char char)))
22 <title>CHISE-wiki character: %s</title>
24 (decode-uri-string uri-char 'utf-8-mcs-er))
27 (dolist (feature (char-feature-property '$object 'additional-features))
28 (mount-char-attribute-table
29 (char-feature-name-at-domain feature '$rev=latest)))
33 "<div style=\"text-align:right;\">
34 <a href=\"edit/view.cgi?char=%s\">
35 <input type=\"submit\" value=\"Edit\" />
37 <input type=\"submit\" value=\"New Account\" />
40 "<div style=\"text-align:right;\">
41 <a href=\"../view.cgi?char=%s\">
42 <input type=\"submit\" value=\"Simple\" />
47 (when (setq parents (www-char-feature char '<-denotational))
48 (princ (format "<p>%s %s</p>\n<hr>\n"
49 (www-format-value-as-char-list parents)
50 (www-format-feature-name '->denotational lang))))
51 (when (setq parents (www-char-feature char '<-subsumptive))
52 (princ (format "<p>%s %s</p>\n<hr>\n"
53 (www-format-value-as-char-list parents)
54 (www-format-feature-name '->subsumptive lang))))
55 (setq GlyphWiki-id (char-GlyphWiki-id char))
56 (princ (format "<h%d>%s%s</h%d>\n"
58 (www-format-encode-string (char-to-string char))
61 " <a href=\"http://glyphwiki.org/wiki/%s\"><img alt=\"%s\" src=\"http://glyphwiki.org/glyph/%s.50px.png\" /></a>"
63 GlyphWiki-id GlyphWiki-id)
68 (dolist (cell (sort (char-attribute-alist char)
71 (char-feature-name-sans-versions (car a))
72 (char-feature-name-sans-versions (car b))))))
73 (setq logical-feature (char-feature-name-sans-versions (car cell)))
74 (unless (memq logical-feature displayed-features)
75 (push logical-feature displayed-features)
78 "<div class=\"feature\" style=\"line-height:150%\">\n"
82 (www-feature-format logical-feature)
83 ;; (or (char-feature-property logical-feature ; (car cell)
85 ;; '((name) " : " (value)))
87 logical-feature ; (car cell)
92 (format " <a href=\"%s?char=%s&feature=%s&format=wiki-text\"
93 ><input type=\"submit\" value=\"note\" /></a>"
95 (www-format-encode-string uri-char)
96 (www-format-encode-string
97 (www-uri-encode-feature-name
98 (intern (format "%s*note"
99 logical-feature ; (car cell)
112 (format "<a href=\"%s?char=%s\"
113 ><input type=\"submit\" value=\"add feature\" /></a>
116 (www-format-encode-string uri-char))))
122 "<form action=\"http://chise.zinbun.kyoto-u.ac.jp/ids-find\">\n")
124 (www-format-encode-string
128 " <input type=\"text\" name=\"components\"
129 size=\"30\" maxlength=\"30\" value=\"%s\" />"
130 (encode-coding-string (char-to-string char) 'utf-8-jp-er)))
131 ;; (princ (www-format-encode-string "と"))
132 ;; (princ "<input type=\"text\" name=\"additional-components\"
133 size=\;; "30\" maxlength=\"30\" value=\"\" />")
135 (www-format-encode-string
136 "を\u542Bむ\u6F22\u5B57を\u63A2す"))
137 (princ " <input type=\"submit\" value=\"search\" />\n")
145 (defun www-display-feature-desc (uri-feature-name uri-char
146 &optional lang simple)
147 (let ((feature-name (www-uri-decode-feature-name uri-feature-name))
148 (name@lang (intern (format "name@%s" lang))))
150 (encode-coding-string
152 <title>CHISE-wiki feature: %s</title>
160 "<div style=\"text-align:right;\">
161 <a href=\"edit/view.cgi?feature=%s&char=%s\">
162 <input type=\"submit\" value=\"Edit\" />
164 <input type=\"submit\" value=\"New Account\" />
167 "<div style=\"text-align:right;\">
168 <a href=\"../view.cgi?feature=%s&char=%s\">
169 <input type=\"submit\" value=\"Simple\" />
173 uri-feature-name uri-char))
175 (format "<h1>%s</h1>\n"
176 (www-format-encode-string
177 (symbol-name feature-name))))
178 (princ (format "<p>name : %s "
179 (or (www-format-feature-name feature-name) "")))
183 " <a href=\"%s?feature=%s&property=name&format=string&char=%s\">"
187 (princ "<input type=\"submit\" value=\"edit\" /></a>\n"))
192 (www-format-encode-string
195 (or (char-feature-property feature-name name@lang) ""))))
199 " <a href=\"%s?feature=%s&property=%s&format=string&char=%s\">"
204 (princ "<input type=\"submit\" value=\"edit\" /></a>\n"))
206 (www-html-display-paragraph
208 (or (www-feature-type feature-name)
209 ;; (char-feature-property feature-name 'type)
211 (princ (format "<p>value-format : %s "
214 (or (www-feature-value-format feature-name)
221 " <a href=\"%s?feature=%s&property=value-format&format=wiki-text&char=%s\"
226 (princ "<input type=\"submit\" value=\"edit\" /></a>\n"))
229 (princ "<p>format : ")
230 (www-html-display-text
232 (www-feature-format feature-name)
233 ;; (or (char-feature-property feature-name 'format)
234 ;; '((name) " : " (value)))
239 " <a href=\"%s?feature=%s&property=format&format=wiki-text&char=%s\"
244 (princ "<input type=\"submit\" value=\"edit\" /></a>\n"))
247 (www-html-display-paragraph
248 (format "description : %s"
249 (or (char-feature-property feature-name 'description)
252 (www-html-display-paragraph
253 (format "description@%s : %s"
255 (or (char-feature-property
257 (intern (format "description@%s" lang)))
261 (defun www-batch-view ()
262 (setq terminal-coding-system 'binary)
264 (let* ((target (pop command-line-args-left))
265 (user (pop command-line-args-left))
266 (accept-language (pop command-line-args-left))
267 (mode (intern (pop command-line-args-left)))
272 (car (split-string accept-language ","))
276 (princ "Content-Type: text/html; charset=UTF-8
278 <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
279 \"http://www.w3.org/TR/html4/loose.dtd\">
284 (when (string-match "^char=\\(&[^&;]+;\\)" target)
285 (setq ret (match-end 0))
289 (www-uri-decode-char (match-string 1 target)))
290 (substring target ret))))
292 (mapcar (lambda (cell)
293 (if (string-match "=" cell)
297 (substring cell 0 (match-beginning 0))
299 (substring cell (match-end 0)))
300 (list (decode-uri-string cell 'utf-8-mcs-er))))
301 (split-string target "&")))
302 (setq ret (car target))
303 (cond ((eq (car ret) 'char)
304 (www-display-char-desc
309 ((eq (car ret) 'feature)
310 (www-display-feature-desc
311 (decode-uri-string (cdr ret) 'utf-8-mcs-er)
312 (cdr (assq 'char target))
318 (princ (format "mode=%S\n" mode))
319 (princ (format "user=%s\n" user))
320 ;; (princ (format "local user=%s\n" (user-login-name)))
321 (princ (format "lang=%S\n" lang))
322 (princ (emacs-version))
324 ;; (princ xemacs-chise-version)
330 (princ (format "%S" err)))
333 (provide 'cwiki-view)