1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-06-16 21:40:58 +03:00

Added news about the release of 1.0.19, Daniel

This commit is contained in:
Daniel Veillard
2002-07-08 15:38:56 +00:00
parent e3f99973fa
commit a23a152505
15 changed files with 321 additions and 303 deletions

View File

@ -75,8 +75,7 @@ A:link, A:visited, A:active { text-decoration: underline }
</table> </table>
</td></tr></table></td> </td></tr></table></td>
<td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"> <td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd">
<ol> <ol><li>
<li>
<em>passing parameters on the xsltproc command line doesn't work</em> <em>passing parameters on the xsltproc command line doesn't work</em>
<p><em>xsltproc --param test alpha foo.xsl foo.xml</em></p> <p><em>xsltproc --param test alpha foo.xsl foo.xml</em></p>
<p><em>the param does not get passed and ends up as &quot;&quot;</em></p> <p><em>the param does not get passed and ends up as &quot;&quot;</em></p>
@ -90,8 +89,7 @@ A:link, A:visited, A:active { text-decoration: underline }
quotes at the shell level using -&gt;<code>&quot;'alpha'&quot;</code>&lt;- .</p> quotes at the shell level using -&gt;<code>&quot;'alpha'&quot;</code>&lt;- .</p>
<p>or use</p> <p>or use</p>
<p>xsltproc --stringparam test alpha foo.xsl foo.xml</p> <p>xsltproc --stringparam test alpha foo.xsl foo.xml</p>
</li> </li></ol>
</ol>
<p><a href="bugs.html">Daniel Veillard</a></p> <p><a href="bugs.html">Daniel Veillard</a></p>
</td></tr></table></td></tr></table></td></tr></table></td> </td></tr></table></td></tr></table></td></tr></table></td>
</tr></table></td></tr></table> </tr></table></td></tr></table>

View File

@ -95,14 +95,12 @@ platform, get in touch with me to upload the package. I will keep them in the
</p> </p>
<p>Libxslt is also available from CVS:</p> <p>Libxslt is also available from CVS:</p>
<ul> <ul>
<li> <li><p>The <a href="http://cvs.gnome.org/bonsai/rview.cgi?cvsroot=/cvs/gnome&amp;dir=libxslt">Gnome
<p>The <a href="http://cvs.gnome.org/bonsai/rview.cgi?cvsroot=/cvs/gnome&amp;dir=libxslt">Gnome
CVS base</a>. Check the <a href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a> CVS base</a>. Check the <a href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a>
page; the CVS module is <b>libxslt</b>.</p> page; the CVS module is <b>libxslt</b>.</p></li>
</li>
<li> <li>
<a href="ftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gz">daily <a href="ftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gz">daily snapshots
snapshots from CVS</a> are also provided</li> from CVS</a> are also provided</li>
</ul> </ul>
<p><a href="bugs.html">Daniel Veillard</a></p> <p><a href="bugs.html">Daniel Veillard</a></p>
</td></tr></table></td></tr></table></td></tr></table></td> </td></tr></table></td></tr></table></td></tr></table></td>

View File

@ -335,7 +335,7 @@ containing the parsed expression tree, for example the expression:</p>
<p>This can be tested using the <code>testXPath</code> command (in the <p>This can be tested using the <code>testXPath</code> command (in the
libxml codebase) using the <code>--tree</code> option.</p> libxml codebase) using the <code>--tree</code> option.</p>
<p>Again, the KISS approach is used. No optimization is done. This could be <p>Again, the KISS approach is used. No optimization is done. This could be
an interesting thing to add. <a href="http://www-106.ibm.com/developerworks/library/x-xslt2/?dwzone=x?open&amp;l=132%2ct=gr%2c%2Bp=saxon">Michael an interesting thing to add. <a href="http://www-106.ibm.com/developerworks/library/x-xslt2/?dwzone=x?open&amp;l=132%2ct=gr%2c+p=saxon">Michael
Kay describes</a> a lot of possible and interesting optimizations done in Kay describes</a> a lot of possible and interesting optimizations done in
Saxon which would be possible at this level. I'm unsure they would provide Saxon which would be possible at this level. I'm unsure they would provide
much gain since the expressions tends to be relatively simple in general and much gain since the expressions tends to be relatively simple in general and
@ -435,7 +435,7 @@ the code will be stable. <span style="background-color: #FF0000">TODO</span>
<p>There is a separate document explaining <a href="extensions.html">how the <p>There is a separate document explaining <a href="extensions.html">how the
extension support works</a>.</p> extension support works</a>.</p>
<h3><a name="Futher">Further reading</a></h3> <h3><a name="Futher">Further reading</a></h3>
<p>Michael Kay wrote <a href="http://www-106.ibm.com/developerworks/library/x-xslt2/?dwzone=x?open&amp;l=132%2ct=gr%2c%2Bp=saxon">a <p>Michael Kay wrote <a href="http://www-106.ibm.com/developerworks/library/x-xslt2/?dwzone=x?open&amp;l=132%2ct=gr%2c+p=saxon">a
really interesting article on Saxon internals</a> and the work he did on really interesting article on Saxon internals</a> and the work he did on
performance issues. I wishes I had read it before starting libxslt design (I performance issues. I wishes I had read it before starting libxslt design (I
would probably have avoided a few mistakes and progressed faster). A lot of would probably have avoided a few mistakes and progressed faster). A lot of

View File

@ -77,6 +77,17 @@ A:link, A:visited, A:active { text-decoration: underline }
<td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd"> <td valign="top" bgcolor="#8b7765"><table border="0" cellspacing="0" cellpadding="1" width="100%"><tr><td><table border="0" cellspacing="0" cellpadding="1" width="100%" bgcolor="#000000"><tr><td><table border="0" cellpadding="3" cellspacing="1" width="100%"><tr><td bgcolor="#fffacd">
<h3>CVS only : check the <a href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog</a> file <h3>CVS only : check the <a href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog</a> file
for a really accurate description</h3> for a really accurate description</h3>
<h3>1.0.19: July 6 2002</h3>
<ul>
<li>EXSLT: dynamic functions and date support bug fixes (Mark Vakoc)</li>
<li>xsl:number fix: Richard Jinks</li>
<li>xsl:format-numbers fix: Ken Neighbors</li>
<li>document('') fix: bug pointed by Eric van der Vlist</li>
<li>xsl:message with terminate=&quot;yes&quot; fixes: William Brack</li>
<li>xsl:sort order support added: Ken Neighbors</li>
<li>a few other bug fixes, some of them requiring the latest version of
libxml2</li>
</ul>
<h3>1.0.18: May 27 2002</h3> <h3>1.0.18: May 27 2002</h3>
<ul> <ul>
<li>a number of bug fixes: attributes, extra namespace declarations <li>a number of bug fixes: attributes, extra namespace declarations

View File

@ -207,9 +207,8 @@ platform, get in touch with me to upload the package. I will keep them in the
href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a> href="http://developer.gnome.org/tools/cvs.html">Gnome CVS Tools</a>
page; the CVS module is <b>libxslt</b>.</p> page; the CVS module is <b>libxslt</b>.</p>
</li> </li>
<li><a <li><a href="ftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gz">daily snapshots
href="ftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gz">daily from CVS</a> are also provided</li>
snapshots from CVS</a> are also provided</li>
</ul> </ul>
<h2><a name="FAQ">FAQ</a></h2> <h2><a name="FAQ">FAQ</a></h2>
@ -236,6 +235,18 @@ platform, get in touch with me to upload the package. I will keep them in the
href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog</a> file href="http://cvs.gnome.org/lxr/source/libxslt/ChangeLog">Changelog</a> file
for a really accurate description</h3> for a really accurate description</h3>
<h3>1.0.19: July 6 2002</h3>
<ul>
<li>EXSLT: dynamic functions and date support bug fixes (Mark Vakoc)</li>
<li>xsl:number fix: Richard Jinks</li>
<li>xsl:format-numbers fix: Ken Neighbors</li>
<li>document('') fix: bug pointed by Eric van der Vlist</li>
<li>xsl:message with terminate="yes" fixes: William Brack</li>
<li>xsl:sort order support added: Ken Neighbors</li>
<li>a few other bug fixes, some of them requiring the latest version of
libxml2</li>
</ul>
<h3>1.0.18: May 27 2002</h3> <h3>1.0.18: May 27 2002</h3>
<ul> <ul>
<li>a number of bug fixes: attributes, extra namespace declarations <li>a number of bug fixes: attributes, extra namespace declarations