[bknr-cvs] hans changed trunk/bknr/web/src/web/template-handler.lisp
BKNR Commits
bknr at bknr.net
Mon Sep 1 16:08:50 UTC 2008
Revision: 3763
Author: hans
URL: http://bknr.net/trac/changeset/3763
Always declare xml namespace.
U trunk/bknr/web/src/web/template-handler.lisp
Modified: trunk/bknr/web/src/web/template-handler.lisp
===================================================================
--- trunk/bknr/web/src/web/template-handler.lisp 2008-09-01 16:02:12 UTC (rev 3762)
+++ trunk/bknr/web/src/web/template-handler.lisp 2008-09-01 16:08:50 UTC (rev 3763)
@@ -144,8 +144,9 @@
(cxml-xmls:make-xmls-builder)
:validate nil))
real-attributes
- namespace-declarations
+ (namespace-declarations (list '(("xml" . "http://www.w3.org/2000/xmlns/") "http://www.w3.org/XML/1998/namespace")))
(nsuri-alias-map (make-hash-table :test #'equal)))
+ (setf (gethash "http://www.w3.org/XML/1998/namespace" nsuri-alias-map) "xml")
(dolist (attribute (cxml-xmls:node-attrs dom))
(destructuring-bind ((alias . namespace-url) value) attribute
(cond
More information about the Bknr-cvs
mailing list