[Lxml-checkins] r52104 - in lxml/trunk: . doc
scoder at codespeak.net
scoder at codespeak.net
Mon Mar 3 19:41:33 CET 2008
Author: scoder
Date: Mon Mar 3 19:41:32 2008
New Revision: 52104
Modified:
lxml/trunk/ (props changed)
lxml/trunk/doc/build.txt
lxml/trunk/doc/lxml-source-howto.txt
lxml/trunk/doc/main.txt
Log:
r3695 at delle: sbehnel | 2008-03-03 08:51:17 +0100
doc updates
Modified: lxml/trunk/doc/build.txt
==============================================================================
--- lxml/trunk/doc/build.txt (original)
+++ lxml/trunk/doc/build.txt Mon Mar 3 19:41:32 2008
@@ -58,11 +58,13 @@
svn co http://codespeak.net/svn/lxml/trunk lxml
-This will create a directory ``lxml`` and download the source into it. You
-can also `browse the repository through the web`_ or use your favourite SVN
-client to access it.
+This will create a directory ``lxml`` and download the source into it.
+You can also browse the `Subversion repository`_ through the web, use
+your favourite SVN client to access it, or browse the `Subversion
+history`_.
-.. _`browse the repository through the web`: http://codespeak.net/svn/lxml
+.. _`Subversion repository`: http://codespeak.net/svn/lxml/
+.. _`Subversion history`: https://codespeak.net/viewvc/lxml/
Setuptools
Modified: lxml/trunk/doc/lxml-source-howto.txt
==============================================================================
--- lxml/trunk/doc/lxml-source-howto.txt (original)
+++ lxml/trunk/doc/lxml-source-howto.txt Mon Mar 3 19:41:32 2008
@@ -153,8 +153,9 @@
lxml.etree
==========
-The main module, ``lxml.etree``, is in the file **lxml.etree.pyx**.
-It implements the main functions and types of the ElementTree API, as
+The main module, ``lxml.etree``, is in the file `lxml.etree.pyx
+<http://codespeak.net/svn/lxml/trunk/src/lxml/lxml.etree.pyx>`_. It
+implements the main functions and types of the ElementTree API, as
well as all the factory functions for proxies. It is the best place
to start if you want to find out how a specific feature is
implemented.
@@ -219,6 +220,12 @@
modules at the C level. For example, ``lxml.objectify`` makes use
of these. See the `C-level API` documentation.
+readonlytree.pxi
+ A separate read-only implementation of the Element API. This is
+ used in places where non-intrusive access to a tree is required,
+ such as the ``PythonElementClassLookup`` or XSLT extension
+ elements.
+
saxparser.pxi
SAX-like parser interfaces as known from ElementTree's TreeBuilder.
@@ -295,15 +302,8 @@
A Cython implemented extension module that uses the public C-API of
lxml.etree. It provides a Python object-like interface to XML trees.
-
-
-lxml.pyclasslookup
-==================
-
-A Cython implemented extension module that uses the public C-API of
-lxml.etree. It provides a class lookup scheme that duplicates lxml's
-ElementTree API in a very simple way to provide Python access to the
-tree *before* instantiating the real Python proxies in lxml.etree.
+The implementation resides in the file `lxml.objectify.pyx
+<http://codespeak.net/svn/lxml/trunk/src/lxml/lxml.objectify.pyx>`_.
lxml.html
Modified: lxml/trunk/doc/main.txt
==============================================================================
--- lxml/trunk/doc/main.txt (original)
+++ lxml/trunk/doc/main.txt Mon Mar 3 19:41:32 2008
@@ -159,13 +159,16 @@
svn co http://codespeak.net/svn/lxml/trunk lxml
-You can also `browse it through the web`_. Please read `how to build lxml
-from source`_ first. The `latest CHANGES`_ of the developer version are also
-accessible. You can check there if a bug you found has been fixed or a
-feature you want has been implemented in the latest trunk version.
+You can also browse the `Subversion repository`_ through the web, or
+take a look at the `Subversion history`_. Please read `how to build lxml
+from source`_ first. The `latest CHANGES`_ of the developer version
+are also accessible. You can check there if a bug you found has been
+fixed or a feature you want has been implemented in the latest trunk
+version.
.. _`how to build lxml from source`: build.html
-.. _`browse it through the web`: http://codespeak.net/svn/lxml
+.. _`Subversion repository`: http://codespeak.net/svn/lxml/
+.. _`Subversion history`: https://codespeak.net/viewvc/lxml/
.. _`latest CHANGES`: http://codespeak.net/svn/lxml/trunk/CHANGES.txt
More information about the lxml-checkins
mailing list