[Python-checkins] CVS: python/dist/src/Doc/lib liburlparse.tex,1.17,1.18

Fred L. Drake python-dev@python.org
Fri, 25 Aug 2000 10:29:37 -0700


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory slayer.i.sourceforge.net:/tmp/cvs-serv17607/lib

Modified Files:
	liburlparse.tex 
Log Message:

Add reference to RFC 2396 in "See also" section.
Minor cleanups.


Index: liburlparse.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/liburlparse.tex,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** liburlparse.tex	2000/08/24 04:58:25	1.17
--- liburlparse.tex	2000/08/25 17:29:35	1.18
***************
*** 1,4 ****
  \section{\module{urlparse} ---
!          Parse URLs into components.}
  \declaremodule{standard}{urlparse}
  
--- 1,4 ----
  \section{\module{urlparse} ---
!          Parse URLs into components}
  \declaremodule{standard}{urlparse}
  
***************
*** 12,19 ****
  
  
! This module defines a standard interface to break URL strings up in
! components (addressing scheme, network location, path etc.), to combine
! the components back into a URL string, and to convert a ``relative
! URL'' to an absolute URL given a ``base URL.''
  
  The module has been designed to match the Internet RFC on Relative
--- 12,20 ----
  
  
! This module defines a standard interface to break Uniform Resource
! Locator (URL) strings up in components (addressing scheme, network
! location, path etc.), to combine the components back into a URL
! string, and to convert a ``relative URL'' to an absolute URL given a
! ``base URL.''
  
  The module has been designed to match the Internet RFC on Relative
***************
*** 81,85 ****
  'http://www.cwi.nl/%7Eguido/FAQ.html'
  \end{verbatim}
! %
  The \var{allow_fragments} argument has the same meaning as for
  \code{urlparse()}.
--- 82,86 ----
  'http://www.cwi.nl/%7Eguido/FAQ.html'
  \end{verbatim}
! 
  The \var{allow_fragments} argument has the same meaning as for
  \code{urlparse()}.
***************
*** 96,98 ****
--- 97,103 ----
          ``Abnormal Examples'' which govern the treatment of border
          cases.}
+   \seerfc{2396}{Uniform Resource Identifiers (URI): Generic Syntax}{
+         Document describing the generic syntactic requirements for
+         both Uniform Resource Names (URNs) and Uniform Resource
+         Locators (URLs).}
  \end{seealso}