Reply to comment

Notes about XSLT in browser (2006)

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

  • Internet Explorer 6.0 SP1
  • FireFox 1.5.0.1
  • Opera 9 Beta (build 8359)

Reply

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.

More information about formatting options