[Zodb-checkins] CVS: Packages/ZConfig/doc - zconfig.tex:1.35.10.2

Fred L. Drake, Jr. fred@zope.com
Tue, 10 Dec 2002 14:50:28 -0500


Update of /cvs-repository/Packages/ZConfig/doc
In directory cvs.zope.org:/tmp/cvs-serv1265/doc

Modified Files:
      Tag: zconfig-schema-devel-branch
	zconfig.tex 
Log Message:
load() and loadfile() are now called loadURL() and loadFile(), to be more
consistent with the other names used.


=== Packages/ZConfig/doc/zconfig.tex 1.35.10.1 => 1.35.10.2 ===
--- Packages/ZConfig/doc/zconfig.tex:1.35.10.1	Tue Dec 10 11:02:36 2002
+++ Packages/ZConfig/doc/zconfig.tex	Tue Dec 10 14:50:28 2002
@@ -225,13 +225,13 @@
 
 The main \module{ZConfig} package exports two convenience functions:
 
-\begin{funcdesc}{load}{url}
+\begin{funcdesc}{loadURL}{url}
   Load and return a configuration from a URL or pathname given by
   \var{url}.  \var{url} may be a URL, absolute pathname, or relative
   pathname.  Fragment identifiers are not supported.
 \end{funcdesc}
 
-\begin{funcdesc}{loadfile}{file\optional{, url}}
+\begin{funcdesc}{loadFile}{file\optional{, url}}
   Load and return a configuration from an opened file object.
   If \var{url} is omitted, one will be computed based on the
   \member{name} attribute of \var{file}, if it exists.  If no URL can
@@ -287,7 +287,7 @@
 The \module{ZConfig} package uses the idea of an \dfn{application
 context} to consolidate the connections between the different
 components of the package.  Most applications should not need to worry
-about the application context at all; the \function{load()} function
+about the application context at all; the \function{loadURL()} function
 in the \module{ZConfig} module uses the default context implementation
 to glue everything together.
 
@@ -309,13 +309,13 @@
 configuration.  Exactly one of these methods should be called, and it
 should be called only once:
 
-\begin{methoddesc}{load}{url}
+\begin{methoddesc}{loadURL}{url}
   Load and return a configuration object from a resource.  The
   resource is identified by a URL or path given as \var{url}.
   Fragment identifiers are not supported.
 \end{methoddesc}
 
-\begin{methoddesc}{loadfile}{file\optional{, url}}
+\begin{methoddesc}{loadFile}{file\optional{, url}}
   Load and return a configuration from an opened file object.
   If \var{url} is omitted, one will be computed based on the
   \member{name} attribute of \var{file}, if it exists.  If no URL can
@@ -341,7 +341,7 @@
 
 \begin{methoddesc}{createToplevelSection}{url}
   Create a new section that represents a section loaded and returned
-  by the \method{load()} method of the context object.  The returned
+  by the \method{loadURL()} method of the context object.  The returned
   section should be conform to the interface of the
   \class{ImportingConfiguration} class (see the
   \refmodule{ZConfig.Config} module's documentation for more