
Notes about XSLT in browser, originaly was posted on my.opera.com (в моём умершем не успев родиться блоге).
If you use one of the modern browser you could try to code
web application interface with XSLT.
Some code for you (without DocType)
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" media-type="text/html" />
<xsl:template match="/">
<body mime-type="text/html"><!-- need for FireFox -->
...
So your XSLT page would works at
Отправить новый комментарий