01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
java -Djava.endorsed.dirs=/home/masao/class ...
cf. http://java.sun.com/xml/jaxp/faq.html#override
<xsl:output method="html" encoding="EUC-JP"/>
...
<xsl:template match="keyword">
<a href="foo.cgi?search={.}"><xsl:value-of select="."/></a>
</xsl:template>
<keyword>化学</keyword>
XT: <a href="foo.cgi?search=化学">化学</a>
XalanJ: <a href="foo.cgi?search=%E5%8C%96%E5%AD%A6">化学</a>
Libxslt: <a href="foo.cgi?search=%E5%8C%96%E5%AD%A6">化学</a>
The html output method should escape non-ASCII characters in
URI attribute values using the method recommended in Section
B.2.1 of the HTML 4.0 Recommendation.
cf. http://bugzilla.gnome.org/show_bug.cgi?id=92438
cf. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13754
http://www.w3.org/TR/xslt20/