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 gr...@apache.org on 2003/09/30 23:17:54 UTC

cvs commit: httpd-python/Doc modpython.tex modpython2.tex modpython3.tex modpython4.tex modpython5.tex

grisha      2003/09/30 14:17:54

  Modified:    Doc      modpython.tex modpython2.tex modpython3.tex
                        modpython4.tex modpython5.tex
  Log:
  Got rid of tabs in docs too.
  
  Revision  Changes    Path
  1.25      +5 -5      httpd-python/Doc/modpython.tex
  
  Index: modpython.tex
  ===================================================================
  RCS file: /home/cvs/httpd-python/Doc/modpython.tex,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- modpython.tex	8 Sep 2003 19:31:50 -0000	1.24
  +++ modpython.tex	30 Sep 2003 21:17:54 -0000	1.25
  @@ -7,15 +7,15 @@
   % Please at least include a long-lived email address;
   % the rest is at your discretion.
   \authoraddress{
  -	E-mail: \email{grisha@apache.org}
  +        E-mail: \email{grisha@apache.org}
   }
   
   % do not mess with the 2 lines below, they are written by make dist
   \release{3.1.0a}
   \date{August 26, 2003}
   
  -\makeindex			% tell \index to actually write the .idx file
  -\makemodindex			% If this contains a lot of module sections.
  +\makeindex                      % tell \index to actually write the .idx file
  +\makemodindex                   % If this contains a lot of module sections.
   
   
   \begin{document}
  @@ -42,9 +42,9 @@
   
   \begin{seealso}
     \seetitle[http://www.python.org/]
  -	{Python Language Web Site}{for information on the Python language}
  +        {Python Language Web Site}{for information on the Python language}
     \seetitle[http://httpd.apache.org/]
  -	{Apache Server Web Site}{for information on the Apache server}
  +        {Apache Server Web Site}{for information on the Apache server}
   \end{seealso}
   
   \end{abstract}
  
  
  
  1.18      +4 -4      httpd-python/Doc/modpython2.tex
  
  Index: modpython2.tex
  ===================================================================
  RCS file: /home/cvs/httpd-python/Doc/modpython2.tex,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- modpython2.tex	22 Aug 2003 02:22:44 -0000	1.17
  +++ modpython2.tex	30 Sep 2003 21:17:54 -0000	1.18
  @@ -75,7 +75,7 @@
     \longprogramopt{with-apxs} option, e.g.:
   
     \begin{verbatim}
  -    $ ./configure --with-apxs=/usr/local/apache/bin/apxs 	
  +    $ ./configure --with-apxs=/usr/local/apache/bin/apxs        
     \end{verbatim}
     %$ keep emacs happy
   
  @@ -201,8 +201,8 @@
     \begin{verbatim}
       <Directory /some/directory/htdocs/test> 
           AddHandler mod_python .py
  -	PythonHandler mptest 
  -	PythonDebug On 
  +        PythonHandler mptest 
  +        PythonDebug On 
       </Directory>
     \end{verbatim}
   
  @@ -224,7 +224,7 @@
   
       def handler(req):
           req.write("Hello World!")
  -	return apache.OK 
  +        return apache.OK 
     \end{verbatim}
   
   \item
  
  
  
  1.18      +1 -1      httpd-python/Doc/modpython3.tex
  
  Index: modpython3.tex
  ===================================================================
  RCS file: /home/cvs/httpd-python/Doc/modpython3.tex,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- modpython3.tex	22 Aug 2003 02:22:44 -0000	1.17
  +++ modpython3.tex	30 Sep 2003 21:17:54 -0000	1.18
  @@ -69,7 +69,7 @@
       # make sure the user provided all the parameters
       if not (name and email and comment):
           return "A required parameter is missing, \
  -	       please go back and correct the error"
  +               please go back and correct the error"
   
       # create the message text
       msg = """\
  
  
  
  1.60      +13 -13    httpd-python/Doc/modpython4.tex
  
  Index: modpython4.tex
  ===================================================================
  RCS file: /home/cvs/httpd-python/Doc/modpython4.tex,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- modpython4.tex	15 Sep 2003 15:43:33 -0000	1.59
  +++ modpython4.tex	30 Sep 2003 21:17:54 -0000	1.60
  @@ -51,7 +51,7 @@
   
   \begin{seealso}
     \seetitle[http://www.python.org/doc/current/api/api.html]
  -	   {Python C Language API}{Python C Language API}
  +           {Python C Language API}{Python C Language API}
   \end{seealso}
   
   \section{Overview of a Request Handler\label{pyapi-handler}}
  @@ -220,7 +220,7 @@
       s = filter.read()
       while s:
           filter.write(s.upper())
  -	s = filter.read()
  +        s = filter.read()
   
       if s is None:
           filter.close()
  @@ -1367,8 +1367,8 @@
   
   \begin{seealso}
     \seetitle[http://CGI-Spec.Golux.Com/]
  -	   {Common Gateway Interface RFC Project Page}
  -	   {for detailed information on the CGI specification}
  +           {Common Gateway Interface RFC Project Page}
  +           {for detailed information on the CGI specification}
   \end{seealso}
   
   \subsection{FieldStorage class\label{pyapi-util-fstor}}
  @@ -1597,14 +1597,14 @@
   
   \begin{seealso}
     \seetitle[http://wp.netscape.com/newsref/std/cookie_spec.html]
  -	   {Persistent Client State - HTTP Cookies}{for the original Netscape specification.}
  -	   \seerfc{2109}{HTTP State Management Mechanism}{for the first RFC on Cookies.}
  -	   \seerfc{2964}{Use of HTTP State Management}{for guidelines on using Cookies.}
  -	   \seerfc{2965}{HTTP State Management Mechanism}{for the latest IETF standard.}
  -	   \seetitle[http://arxiv.org/abs/cs.SE/0105018]
  -		    {HTTP Cookies: Standards, Privacy, and Politics}{by David M. Kristol for an 
  -		      excellent overview
  -		      of the issues surrounding standardization of Cookies.}
  +           {Persistent Client State - HTTP Cookies}{for the original Netscape specification.}
  +           \seerfc{2109}{HTTP State Management Mechanism}{for the first RFC on Cookies.}
  +           \seerfc{2964}{Use of HTTP State Management}{for guidelines on using Cookies.}
  +           \seerfc{2965}{HTTP State Management Mechanism}{for the latest IETF standard.}
  +           \seetitle[http://arxiv.org/abs/cs.SE/0105018]
  +                    {HTTP Cookies: Standards, Privacy, and Politics}{by David M. Kristol for an 
  +                      excellent overview
  +                      of the issues surrounding standardization of Cookies.}
   \end{seealso}
   
   \subsection{Classes\label{pyapi-cookie-classes}}
  @@ -1788,7 +1788,7 @@
           if type(spamcookie) is Cookie.MarshalCookie:
               req.write('Here is what it looks like decoded: %s=%s\n'
                         % (spamcookie.name, spamcookie.value))
  -	else:
  +        else:
               req.write('WARNING: The cookie found is not a \
                          MarshalCookie, it may have been tapered with!')
   
  
  
  
  1.18      +3 -3      httpd-python/Doc/modpython5.tex
  
  Index: modpython5.tex
  ===================================================================
  RCS file: /home/cvs/httpd-python/Doc/modpython5.tex,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- modpython5.tex	26 Aug 2003 18:44:34 -0000	1.17
  +++ modpython5.tex	30 Sep 2003 21:17:54 -0000	1.18
  @@ -515,7 +515,7 @@
   
   \begin{seealso}
     \seetitle[pyapi-interps.html]{Section \ref{pyapi-interps} Multiple Interpreters}
  -	   {for more information}
  +           {for more information}
   \end{seealso}
   
   \subsection{PythonInterpPerDirective\label{dir-other-ipdv}}
  @@ -548,7 +548,7 @@
   
   \begin{seealso}
     \seetitle[pyapi-interps.html]{Section \ref{pyapi-interps} Multiple Interpreters}
  -	   {for more information}
  +           {for more information}
   \end{seealso}
   
   \subsection{PythonInterpreter\label{dir-other-pi}}
  @@ -575,7 +575,7 @@
   
   \begin{seealso}
     \seetitle[pyapi-interps.html]{Section \ref{pyapi-interps} Multiple Interpreters}
  -	   {for more information}
  +           {for more information}
   \end{seealso}
   
   \subsection{PythonHandlerModule\label{dir-other-phm}}