This is the mail archive of the kawa@sourceware.org mailing list for the Kawa project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: Different define-xml-namespace behavior in servlet versus REPL


pingouin21@netscape.net wrote:
(require 'http)
(require 'xml)
(response-content-type 'application/xml)
(define-xml-namespace svg "http://www.w3.org/2000/svg";)
(svg:svg width: 467 height: 462)
#\newline

What got output from the servlet was badly-formed XML:

<http://www.w3.org/2000/svg:svg xmlns:http://www.w3.org/2000/svg="svg"; width="467" height="462"></http://www.w3.org/2000/svg:svg>

I got (using the version in SVN):


<svg:svg xmlns:svg="http://www.w3.org/2000/svg"; width="467" height="462"></svg:svg>

(I didn't compile it manually - I depended on the auto-compilation
of KawaPageServlet.)
--
	--Per Bothner
per@bothner.com   http://per.bothner.com/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]