1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-08-07 10:42:55 +03:00

upon suggestion of Marc-Andre Lemburg, make the misdetection of libxml2

* configure.in: upon suggestion of Marc-Andre Lemburg, make
  the misdetection of libxml2 python bindings a warning only
Daniel
This commit is contained in:
Daniel Veillard
2002-08-01 12:30:37 +00:00
parent 393fd55ec8
commit c66126835d
16 changed files with 309 additions and 300 deletions

View File

@@ -1,3 +1,8 @@
Thu Aug 1 14:29:11 CEST 2002 Daniel Veillard <daniel@veillard.com>
* configure.in: upon suggestion of Marc-Andre Lemburg, make
the misdetection of libxml2 python bindings a warning only
Sun Jul 21 19:10:00 HKT 2002 William Brack <wbrack@mmm.com.hk>
* xsltInternals.h/xslt.c/transform.c and pattern.c: fixed

View File

@@ -155,10 +155,10 @@ except: print 0"`
then
echo Found libxml2-python module
else
echo Missing libxml2-python
echo Warning: Missing libxml2-python
fi
fi
if test "$PYTHON_VERSION" != "" -a "$LIBXML2_PYTHON" = "1"
if test "$PYTHON_VERSION" != ""
then
if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
-d $with_python/lib/python$PYTHON_VERSION/site-packages

View File

@@ -75,7 +75,8 @@ A:link, A:visited, A:active { text-decoration: underline }
</table>
</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">
<ol><li>
<ol>
<li>
<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>the param does not get passed and ends up as &quot;&quot;</em></p>
@@ -89,7 +90,8 @@ A:link, A:visited, A:active { text-decoration: underline }
quotes at the shell level using -&gt;<code>&quot;'alpha'&quot;</code>&lt;- .</p>
<p>or use</p>
<p>xsltproc --stringparam test alpha foo.xsl foo.xml</p>
</li></ol>
</li>
</ol>
<p><a href="bugs.html">Daniel Veillard</a></p>
</td></tr></table></td></tr></table></td></tr></table></td>
</tr></table></td></tr></table>

View File

@@ -95,9 +95,11 @@ platform, get in touch with me to upload the package. I will keep them in the
</p>
<p>Libxslt is also available from CVS:</p>
<ul>
<li><p>The <a href="http://cvs.gnome.org/bonsai/rview.cgi?cvsroot=/cvs/gnome&amp;dir=libxslt">Gnome
<li>
<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>
page; the CVS module is <b>libxslt</b>.</p></li>
page; the CVS module is <b>libxslt</b>.</p>
</li>
<li>
<a href="ftp://xmlsoft.org/XSLT/cvs-snapshot.tar.gz">daily snapshots
from CVS</a> are also provided</li>

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
libxml codebase) using the <code>--tree</code> option.</p>
<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+p=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%2Bp=saxon">Michael
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
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
extension support works</a>.</p>
<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+p=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%2Bp=saxon">a
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
would probably have avoided a few mistakes and progressed faster). A lot of