;; -*- coding: utf-8-mcs-er -*-
(require 'cwiki-format)
(require 'char-db-json)
+(require 'concord-turtle-dump)
(defvar chise-wiki-view-url "view.cgi")
(defvar chise-wiki-edit-url "edit.cgi")
(format "<input type=\"submit\" value=\"New Account\" />
<a href=\"http://www.chise.org/est/rdf.cgi?%s=%s\">
<input type=\"submit\" value=\"RDF\" />
-</a>%s
+</a>
+<a href=\"./%s/index.ttl\"><input type=\"submit\" value=\"Turtle\" /></a>%s
</div>
<hr />\n"
genre rdf-uri-object
+ rdf-uri-object
(if (eq genre 'character)
(format "
<a href=\"/est/view/%s/%s/data.json\">
(car (split-string accept-language ","))
";"))
"-"))))
- ret genre feature obj-url json obj)
+ ret genre feature obj-url json turtle obj)
(cond
((stringp target)
- (when (string-match "/data\\.json$" target)
+ (cond
+ ((string-match "/data\\.json$" target)
(setq json t
- target (substring target 0 (match-beginning 0))))
+ target (substring target 0 (match-beginning 0)))
+ )
+ ((string-match "/index\\.ttl$" target)
+ (setq turtle t
+ target (substring target 0 (match-beginning 0)))
+ ))
(when (string-match "^char/\\(&[^&;]+;\\)" target)
(setq ret (match-end 0))
(setq target
)
(split-string target "&")))
(setq ret (car target))
- (if json
- (princ "Content-Type: application/json; charset=UTF-8
+ (cond (turtle
+ (princ "Content-Type: text/turtle; charset=UTF-8
+
+")
+ )
+ (json
+ (princ "Content-Type: application/json; charset=UTF-8
")
- (princ "Content-Type: text/html; charset=UTF-8
+ )
+ (t
+ (princ "Content-Type: text/html; charset=UTF-8
<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\"
\"http://www.w3.org/TR/html4/loose.dtd\">
<html lang=\"ja\">
")
- )
+ ))
;; (princ (format "<p>%S, %S, %S</p>"
;; (car ret)(nth 1 ret)(nth 2 ret)))
;; (princ (format "// %S %S\n" ret json))
- (cond ((or (eq (car ret) 'char)
+ (cond (turtle
+ (with-temp-buffer
+ (setq obj (www-uri-decode-object (car ret)(nth 1 ret)))
+ (concord-turtle-insert-char-data obj)
+ (goto-char (point-min))
+ (concord-turtle-insert-prefix)
+ (insert "\n")
+ (encode-coding-region
+ (point-min)(point-max)
+ char-db-file-coding-system)
+ (princ (buffer-string)))
+ )
+ ((or (eq (car ret) 'char)
(eq (car ret) 'character))
(if (and json
(setq obj (www-uri-decode-object
(eq mode 'simple))
))
))
- (unless json
+ (unless (or json turtle)
(princ "\n<hr>\n")
(princ (format "mode=%S\n" mode))
(princ (format "user=%s\n" user))