(www-display-feature-desc): Add new optional argument `simple';
[chise/est.git] / cwiki-view.el
1 ;; -*- coding: utf-8-mcs-er -*-
2 (require 'cwiki-common)
3
4 (defvar chise-wiki-view-url "view.cgi")
5 (defvar chise-wiki-edit-url "edit.cgi")
6 (defvar chise-wiki-add-url "add.cgi")
7
8 (defun www-display-char-desc (uri-char &optional lang level simple)
9   (unless level
10     (setq level 1))
11   (let ((char (www-uri-decode-char uri-char))
12         logical-feature displayed-features
13         parents
14         GlyphWiki-id)
15     (when (characterp char)
16       (when (= (length uri-char) 1)
17         (setq uri-char (www-uri-encode-char char)))
18       (when (= level 1)
19         (princ
20          (encode-coding-string
21           (format "<head>
22 <title>CHISE-wiki character: %s</title>
23 </head>\n"
24                   (decode-uri-string uri-char 'utf-8-mcs-er))
25           'utf-8-mcs-er))
26         (princ "<body>\n"))
27       (dolist (feature (char-feature-property '$object 'additional-features))
28         (mount-char-attribute-table
29          (char-feature-name-at-domain feature '$rev=latest)))
30       (princ
31        (format
32         (if simple
33             "<div style=\"text-align:right;\">
34 <a href=\"edit/view.cgi?char=%s\">
35 <input type=\"submit\" value=\"Edit\" />
36 </a>
37 <input type=\"submit\" value=\"New Account\" />
38 </div>
39 <hr />\n"
40           "<div style=\"text-align:right;\">
41 <a href=\"../view.cgi?char=%s\">
42 <input type=\"submit\" value=\"Simple\" />
43 </a>
44 </div>
45 <hr />\n")
46         uri-char))
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"
57                      level
58                      (www-format-encode-string (char-to-string char))
59                      (if GlyphWiki-id
60                          (format
61                           " <a href=\"http://glyphwiki.org/wiki/%s\"><img alt=\"%s\" src=\"http://glyphwiki.org/glyph/%s.50px.png\" /></a>"
62                           GlyphWiki-id
63                           GlyphWiki-id GlyphWiki-id)
64                        "")
65                      level))
66       (if (> level 1)
67           (princ "<ul>"))
68       (dolist (cell (sort (char-attribute-alist char)
69                           (lambda (a b)
70                             (char-attribute-name<
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)
76           (princ
77            (if (= level 1)
78                "<div class=\"feature\" style=\"line-height:150%\">\n"
79              "<li>\n"))
80           (princ
81            (www-format-eval-list
82             (or (char-feature-property logical-feature ; (car cell)
83                                        'format)
84                 '((name) " : " (value)))
85             char
86             logical-feature ; (car cell)
87             lang uri-char
88             nil simple))
89           (unless simple
90             (princ
91              (format " <a href=\"%s?char=%s&feature=%s&format=wiki-text\"
92 ><input type=\"submit\" value=\"note\" /></a>"
93                      chise-wiki-edit-url
94                      (www-format-encode-string uri-char)
95                      (www-format-encode-string
96                       (www-uri-encode-feature-name
97                        (intern (format "%s*note"
98                                        logical-feature ; (car cell)
99                                        )))))))
100           (princ
101            (if (= level 1)
102                "</div>\n"
103              "<li>\n"))
104           ))
105       (princ
106        (if (= level 1)
107            "<p>\n"
108          "<li>\n"))
109       (princ
110        (format "<a href=\"%s?char=%s\"
111 ><input type=\"submit\" value=\"add feature\" /></a>
112 "
113                chise-wiki-add-url
114                (www-format-encode-string uri-char)))
115       (princ
116        (if (= level 1)
117            "<p>\n"
118          "<li>\n"))
119       (princ
120        "<form action=\"http://chise.zinbun.kyoto-u.ac.jp/ids-find\">\n")
121       (princ
122        (www-format-encode-string
123         (format "%c" char)))
124       (princ
125        (format
126         " <input type=\"text\" name=\"components\"
127 size=\"30\" maxlength=\"30\" value=\"%s\" />"
128         (encode-coding-string (char-to-string char) 'utf-8-jp-er)))
129       ;; (princ (www-format-encode-string "と"))
130       ;; (princ "<input type=\"text\" name=\"additional-components\"
131 size=\;; "30\" maxlength=\"30\" value=\"\" />")
132       (princ
133        (www-format-encode-string
134         "を\u542Bむ\u6F22\u5B57を\u63A2す"))
135       (princ " <input type=\"submit\" value=\"search\" />\n")
136       (princ "</form>\n")
137       (princ
138        (if (= level 1)
139            "</p>\n"
140          "<li>\n"))
141       )))
142
143 (defun www-display-feature-desc (uri-feature-name uri-char
144                                                   &optional lang simple)
145   (let ((feature-name (www-uri-decode-feature-name uri-feature-name))
146         (name@lang (intern (format "name@%s" lang))))
147     (princ
148      (encode-coding-string
149       (format "<head>
150 <title>CHISE-wiki feature: %s</title>
151 </head>\n"
152               feature-name)
153       'utf-8-mcs-er))
154     (princ "<body>\n")
155     (princ
156      (format
157       (if simple
158           "<div style=\"text-align:right;\">
159 <a href=\"edit/view.cgi?feature=%s&char=%s\">
160 <input type=\"submit\" value=\"Edit\" />
161 </a>
162 <input type=\"submit\" value=\"New Account\" />
163 </div>
164 <hr />\n"
165           "<div style=\"text-align:right;\">
166 <a href=\"../view.cgi?feature=%s&char=%s\">
167 <input type=\"submit\" value=\"Simple\" />
168 </a>
169 </div>
170 <hr />\n")
171       uri-feature-name uri-char))
172     (princ
173      (format "<h1>%s</h1>\n"
174              (www-format-encode-string
175               (symbol-name feature-name))))
176     (princ (format "<p>name : %s "
177                    (or (www-format-feature-name feature-name) "")))
178     (princ
179      (format
180       " <a href=\"%s?feature=%s&property=name&format=string&char=%s\">"
181       chise-wiki-edit-url
182       uri-feature-name
183       uri-char))
184     (unless simple
185       (princ "<input type=\"submit\" value=\"edit\" />"))
186     (princ "</a>\n</p>\n")
187     (when lang
188       (princ "<p>")
189       (princ
190        (www-format-encode-string
191         (format "%s : %s"
192                 name@lang
193                 (or (char-feature-property feature-name name@lang) ""))))
194       (princ
195        (format
196         " <a href=\"%s?feature=%s&property=%s&format=string&char=%s\">"
197         chise-wiki-edit-url
198         uri-feature-name
199         name@lang
200         uri-char))
201       (unless simple
202         (princ "<input type=\"submit\" value=\"edit\" />"))
203       (princ "</a>\n</p>\n"))
204     (www-html-display-paragraph
205      (format "type : %s"
206              (or (www-feature-type feature-name)
207                  ;; (char-feature-property feature-name 'type)
208                  'generic)))
209     (princ (format "<p>value-format : %s "
210                    (www-format-value
211                     nil 'value-format 
212                     (or (www-feature-value-format feature-name)
213                         'default)
214                     'default
215                     'without-tags)))
216     (princ
217      (format
218       " <a href=\"%s?feature=%s&property=value-format&format=wiki-text&char=%s\"
219 >"
220       chise-wiki-edit-url
221       uri-feature-name
222       uri-char))
223     (unless simple
224       (princ "<input type=\"submit\" value=\"edit\" />"))
225     (princ "</a>\n</p>\n")
226
227     (www-html-display-paragraph
228      (format "format : %s"
229              (www-xml-format-list
230               (or (char-feature-property feature-name 'format)
231                   '((name) " : " (value))))))
232     (www-html-display-paragraph
233      (format "description : %s"
234              (or (char-feature-property feature-name 'description)
235                  "")))
236     (when lang
237       (www-html-display-paragraph
238        (format "description@%s : %s"
239                lang
240                (or (char-feature-property
241                     feature-name
242                     (intern (format "description@%s" lang)))
243                    ""))))
244     ))
245   
246 (defun www-batch-view ()
247   (setq terminal-coding-system 'binary)
248   (condition-case err
249       (let* ((target (pop command-line-args-left))
250              (user (pop command-line-args-left))
251              (accept-language (pop command-line-args-left))
252              (mode (intern (pop command-line-args-left)))
253              (lang
254               (intern
255                (car (split-string
256                      (car (split-string
257                            (car (split-string accept-language ","))
258                            ";"))
259                      "-"))))
260              ret)
261         (princ "Content-Type: text/html; charset=UTF-8
262
263 <!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
264             \"http://www.w3.org/TR/html4/loose.dtd\">
265 <html lang=\"ja\">
266 ")
267         (cond
268          ((stringp target)
269           (when (string-match "^char=\\(&[^&;]+;\\)" target)
270             (setq ret (match-end 0))
271             (setq target
272                   (concat "char="
273                           (www-uri-encode-char
274                            (www-uri-decode-char (match-string 1 target)))
275                           (substring target ret))))
276           (setq target
277                 (mapcar (lambda (cell)
278                           (if (string-match "=" cell)
279                               (cons
280                                (intern
281                                 (decode-uri-string
282                                  (substring cell 0 (match-beginning 0))
283                                  'utf-8-mcs-er))
284                                (substring cell (match-end 0)))
285                             (list (decode-uri-string cell 'utf-8-mcs-er))))
286                         (split-string target "&")))
287           (setq ret (car target))
288           (cond ((eq (car ret) 'char)
289                  (www-display-char-desc
290                   (cdr ret)
291                   lang nil
292                   (eq mode 'simple))
293                  )
294                 ((eq (car ret) 'feature)
295                  (www-display-feature-desc
296                   (decode-uri-string (cdr ret) 'utf-8-mcs-er)
297                   (cdr (assq 'char target))
298                   lang
299                   (eq mode 'simple))
300                  ))
301           ))
302         (princ "\n<hr>\n")
303         (princ (format "mode=%S\n" mode))
304         (princ (format "user=%s\n" user))
305         ;; (princ (format "local user=%s\n" (user-login-name)))
306         (princ (format "lang=%S\n" lang))
307         (princ (emacs-version))
308         ;; (princ " CHISE ")
309         ;; (princ xemacs-chise-version)
310         (princ "
311 </body>
312 </html>")
313         )
314     (error nil
315            (princ (format "%S" err)))
316     ))
317
318 (provide 'cwiki-view)