You are viewing a plain text version of this content. The canonical link for it is here.
Posted to mod_python-commits@quetz.apache.org by jg...@apache.org on 2007/03/29 22:18:20 UTC

svn commit: r523825 - in /httpd/mod_python/trunk: Doc/modpython4.tex lib/python/mod_python/__init__.py src/include/mpversion.h

Author: jgallacher
Date: Thu Mar 29 13:18:18 2007
New Revision: 523825

URL: http://svn.apache.org/viewvc?view=rev&rev=523825
Log:
Added links in Request member docs to server object and connection object.

Modified:
    httpd/mod_python/trunk/Doc/modpython4.tex
    httpd/mod_python/trunk/lib/python/mod_python/__init__.py
    httpd/mod_python/trunk/src/include/mpversion.h

Modified: httpd/mod_python/trunk/Doc/modpython4.tex
URL: http://svn.apache.org/viewvc/httpd/mod_python/trunk/Doc/modpython4.tex?view=diff&rev=523825&r1=523824&r2=523825
==============================================================================
--- httpd/mod_python/trunk/Doc/modpython4.tex (original)
+++ httpd/mod_python/trunk/Doc/modpython4.tex Thu Mar 29 13:18:18 2007
@@ -1408,13 +1408,13 @@
 
 \begin{memberdesc}[request]{connection}
   A \code{connection} object associated with this request. See
-  Connection Object below for details.
+  \citetitle[pyapi-mpconn.html]{\code{Connection Object}} for more details.
   \emph{(Read-Only)}
 \end{memberdesc}
 
 \begin{memberdesc}[request]{server}
-  A server object associate with this request. See Server Object below
-  for details.
+  A server object associated with this request. See 
+  \citetitle[pyapi-mpserver.html]{\code{Server Object}} for more details.
   \emph{(Read-Only})
 \end{memberdesc}
 

Modified: httpd/mod_python/trunk/lib/python/mod_python/__init__.py
URL: http://svn.apache.org/viewvc/httpd/mod_python/trunk/lib/python/mod_python/__init__.py?view=diff&rev=523825&r1=523824&r2=523825
==============================================================================
--- httpd/mod_python/trunk/lib/python/mod_python/__init__.py (original)
+++ httpd/mod_python/trunk/lib/python/mod_python/__init__.py Thu Mar 29 13:18:18 2007
@@ -20,5 +20,5 @@
 __all__ = ["apache", "cgihandler", "psp",
            "publisher", "util", "python22"]
 
-version = "3.3.1"
+version = "3.3.2-dev-20070329"
 

Modified: httpd/mod_python/trunk/src/include/mpversion.h
URL: http://svn.apache.org/viewvc/httpd/mod_python/trunk/src/include/mpversion.h?view=diff&rev=523825&r1=523824&r2=523825
==============================================================================
--- httpd/mod_python/trunk/src/include/mpversion.h (original)
+++ httpd/mod_python/trunk/src/include/mpversion.h Thu Mar 29 13:18:18 2007
@@ -1,5 +1,5 @@
 #define MPV_MAJOR 3
 #define MPV_MINOR 3
-#define MPV_PATCH 1
-#define MPV_BUILD 20070129
-#define MPV_STRING "3.3.1"
+#define MPV_PATCH 2
+#define MPV_BUILD 20070329
+#define MPV_STRING "3.3.2-dev-20070329"