Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
526467ce
Commit
526467ce
authored
Feb 10, 1998
by
Fred Drake
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed all references to the \rfcindex{} macro; now only \rfc{} is used.
parent
a94d21f4
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
64 additions
and
70 deletions
+64
-70
Doc/lib/libbase64.tex
Doc/lib/libbase64.tex
+0
-1
Doc/lib/libftplib.tex
Doc/lib/libftplib.tex
+0
-1
Doc/lib/libhtmllib.tex
Doc/lib/libhtmllib.tex
+31
-29
Doc/lib/libmailcap.tex
Doc/lib/libmailcap.tex
+1
-2
Doc/lib/libmd5.tex
Doc/lib/libmd5.tex
+0
-1
Doc/lib/libnntplib.tex
Doc/lib/libnntplib.tex
+0
-1
Doc/libbase64.tex
Doc/libbase64.tex
+0
-1
Doc/libftplib.tex
Doc/libftplib.tex
+0
-1
Doc/libhtmllib.tex
Doc/libhtmllib.tex
+31
-29
Doc/libmailcap.tex
Doc/libmailcap.tex
+1
-2
Doc/libmd5.tex
Doc/libmd5.tex
+0
-1
Doc/libnntplib.tex
Doc/libnntplib.tex
+0
-1
No files found.
Doc/lib/libbase64.tex
View file @
526467ce
...
...
@@ -2,7 +2,6 @@
\label
{
module-base64
}
\stmodindex
{
base64
}
\indexii
{
base-64
}{
encoding
}
\rfcindex
{
1421
}
\index
{
MIME!base 64 encoding
}
This module perform base-64 encoding and decoding of arbitrary binary
...
...
Doc/lib/libftplib.tex
View file @
526467ce
...
...
@@ -2,7 +2,6 @@
\label
{
module-ftplib
}
\stmodindex
{
ftplib
}
\indexii
{
FTP
}{
protocol
}
\rfcindex
{
959
}
\renewcommand
{
\indexsubitem
}{
(in module ftplib)
}
...
...
Doc/lib/libhtmllib.tex
View file @
526467ce
\section
{
Standard Module
\sectcode
{
htmllib
}}
\label
{
module-htmllib
}
\stmodindex
{
htmllib
}
\rfcindex
{
1866
}
\index
{
HTML
}
\index
{
hypertext
}
...
...
@@ -12,32 +11,33 @@ files formatted in the HyperText Mark-up Language (HTML). The class
is not directly concerned with I/O --- it must be provided with input
in string form via a method, and makes calls to methods of a
``formatter'' object in order to produce output. The
\c
ode
{
HTMLParser
}
class is designed to be used as a base class for
\c
lass
{
HTMLParser
}
class is designed to be used as a base class for
other classes in order to add functionality, and allows most of its
methods to be extended or overridden. In turn, this class is derived
from and extends the
\code
{
SGMLParser
}
class defined in module
\code
{
sgmllib
}
. Two implementations of formatter objects are
provided in the
\code
{
formatter
}
module; refer to the documentation
for that module for information on the formatter interface.
from and extends the
\class
{
SGMLParser
}
class defined in module
\module
{
sgmllib
}
\refstmodindex
{
sgmllib
}
. The
\class
{
HTMLParser
}
implementation supports the HTML 2.0 language as described in
\rfc
{
1866
}
. Two implementations of formatter objects are provided in
the
\module
{
formatter
}
\refstmodindex
{
formatter
}
module; refer to the
documentation for that module for information on the formatter
interface.
\index
{
SGML
}
\refstmodindex
{
sgmllib
}
\ttindex
{
SGMLParser
}
\index
{
formatter
}
\refstmodindex
{
formatter
}
The following is a summary of the interface defined by
\c
ode
{
sgmllib.SGMLParser
}
:
\c
lass
{
sgmllib.SGMLParser
}
:
\begin{itemize}
\item
The interface to feed data to an instance is through the
\
code
{
feed()
}
The interface to feed data to an instance is through the
\
method
{
feed()
}
method, which takes a string argument. This can be called with as
little or as much text at a time as desired;
\
code
{
p.feed(a);
p.feed(b)
}
has the same effect as
\
code
{
p.feed(a+b)
}
. When the data
little or as much text at a time as desired;
\
samp
{
p.feed(a);
p.feed(b)
}
has the same effect as
\
samp
{
p.feed(a+b)
}
. When the data
contains complete HTML tags, these are processed immediately;
incomplete elements are saved in a buffer. To force processing of all
unprocessed data, call the
\
code
{
close()
}
method.
unprocessed data, call the
\
method
{
close()
}
method.
For example, to parse the entire contents of a file, use:
\bcode
\begin{verbatim}
...
...
@@ -50,13 +50,13 @@ The interface to define semantics for HTML tags is very simple: derive
a class and define methods called
\code
{
start
_
\var
{
tag
}
()
}
,
\code
{
end
_
\var
{
tag
}
()
}
, or
\code
{
do
_
\var
{
tag
}
()
}
. The parser will
call these at appropriate moments:
\code
{
start
_
\var
{
tag
}}
or
\code
{
do
_
\var
{
tag
}}
is called when an opening tag of the form
\code
{
<
\var
{
tag
}
...>
}
is encountered;
\code
{
end
_
\var
{
tag
}}
is called
\code
{
do
_
\var
{
tag
}
()
}
is called when an opening tag of the form
\code
{
<
\var
{
tag
}
...>
}
is encountered;
\code
{
end
_
\var
{
tag
}
()
}
is called
when a closing tag of the form
\code
{
<
\var
{
tag
}
>
}
is encountered. If
an opening tag requires a corresponding closing tag, like
\code
{
<H1>
}
...
\code
{
</H1>
}
, the class should define the
\code
{
start
_
\var
{
tag
}}
...
\code
{
</H1>
}
, the class should define the
\code
{
start
_
\var
{
tag
}
()
}
method; if a tag requires no closing tag, like
\code
{
<P>
}
, the class
should define the
\code
{
do
_
\var
{
tag
}}
method.
should define the
\code
{
do
_
\var
{
tag
}
()
}
method.
\end{itemize}
...
...
@@ -68,10 +68,10 @@ required by the HTML 2.0 specification (\rfc{1866}). It also defines
handlers for all HTML 2.0 and many HTML 3.0 and 3.2 elements.
\end{funcdesc}
In addition to tag methods, the
\c
ode
{
HTMLParser
}
class provides some
In addition to tag methods, the
\c
lass
{
HTMLParser
}
class provides some
additional methods and instance variables for use within tag methods.
\renewcommand
{
\indexsubitem
}{
(HTMLParser
method
)
}
\renewcommand
{
\indexsubitem
}{
(HTMLParser
attribute
)
}
\begin{datadesc}
{
formatter
}
This is the formatter instance associated with the parser.
...
...
@@ -82,40 +82,42 @@ Boolean flag which should be true when whitespace should not be
collapsed, or false when it should be. In general, this should only
be true when character data is to be treated as ``preformatted'' text,
as within a
\code
{
<PRE>
}
element. The default value is false. This
affects the operation of
\
code
{
handle
_
data()
}
and
\code
{
save
_
end()
}
.
affects the operation of
\
method
{
handle
_
data()
}
and
\method
{
save
_
end()
}
.
\end{datadesc}
\renewcommand
{
\indexsubitem
}{
(HTMLParser method)
}
\begin{funcdesc}
{
anchor
_
bgn
}{
href
\,
name
\,
type
}
This method is called at the start of an anchor region. The arguments
correspond to the attributes of the
\code
{
<A>
}
tag with the same
names. The default implementation maintains a list of hyperlinks
(defined by the
\code
{
href
}
a
rgument
) within the document. The list
(defined by the
\code
{
href
}
a
ttribute
) within the document. The list
of hyperlinks is available as the data attribute
\code
{
anchorlist
}
.
\end{funcdesc}
\begin{funcdesc}
{
anchor
_
end
}{}
This method is called at the end of an anchor region. The default
implementation adds a textual footnote marker using an index into the
list of hyperlinks created by
\
code
{
anchor
_
bgn()
}
.
list of hyperlinks created by
\
method
{
anchor
_
bgn()
}
.
\end{funcdesc}
\begin{funcdesc}
{
handle
_
image
}{
source
\,
alt
\optional
{
\,
ismap
\optional
{
\,
align
\optional
{
\,
width
\optional
{
\,
height
}}}}}
This method is called to handle images. The default implementation
simply passes the
\
code
{
alt
}
value to the
\code
{
handle
_
data()
}
simply passes the
\
var
{
alt
}
value to the
\method
{
handle
_
data()
}
method.
\end{funcdesc}
\begin{funcdesc}
{
save
_
bgn
}{}
Begins saving character data in a buffer instead of sending it to the
formatter object. Retrieve the stored data via
\
code
{
save
_
end()
}
Use of the
\
code
{
save
_
bgn()
}
/
\code
{
save
_
end()
}
pair may not be
formatter object. Retrieve the stored data via
\
method
{
save
_
end()
}
.
Use of the
\
method
{
save
_
bgn()
}
/
\method
{
save
_
end()
}
pair may not be
nested.
\end{funcdesc}
\begin{funcdesc}
{
save
_
end
}{}
Ends buffering character data and returns all data saved since the
preceeding call to
\
code
{
save
_
bgn()
}
. If
\code
{
nofill
}
flag is false,
whitespace is collapsed to single spaces. A call to this method
without a preceeding call to
\code
{
save
_
bgn()
}
will raise a
\
code
{
TypeError
}
exception.
preceeding call to
\
method
{
save
_
bgn()
}
. If the
\code
{
nofill
}
flag is
false, whitespace is collapsed to single spaces. A call to this
method without a preceeding call to
\method
{
save
_
bgn()
}
will raise a
\
exception
{
TypeError
}
exception.
\end{funcdesc}
Doc/lib/libmailcap.tex
View file @
526467ce
\section
{
Standard Module
\sectcode
{
mailcap
}}
\label
{
module-mailcap
}
\rfcindex
{
1524
}
\stmodindex
{
mailcap
}
\renewcommand
{
\indexsubitem
}{
(in module mailcap)
}
...
...
@@ -14,7 +13,7 @@ replaced by a filename (usually one belonging to a temporary file) and
the xmpeg program can be automatically started to view the file.
The mailcap format is documented in
\rfc
{
1524
}
, ``A User Agent
Configuration Mechanism For Multimedia Mail Format Information
'',
but
Configuration Mechanism For Multimedia Mail Format Information
,''
but
is not an Internet standard. However, mailcap files are supported on
most
\UNIX
{}
systems.
...
...
Doc/lib/libmd5.tex
View file @
526467ce
\section
{
Built-in Module
\sectcode
{
md5
}}
\label
{
module-md5
}
\rfcindex
{
1321
}
\bimodindex
{
md5
}
This module implements the interface to RSA's MD5 message digest
...
...
Doc/lib/libnntplib.tex
View file @
526467ce
...
...
@@ -2,7 +2,6 @@
\label
{
module-nntplib
}
\stmodindex
{
nntplib
}
\indexii
{
NNTP
}{
protocol
}
\rfcindex
{
977
}
\renewcommand
{
\indexsubitem
}{
(in module nntplib)
}
...
...
Doc/libbase64.tex
View file @
526467ce
...
...
@@ -2,7 +2,6 @@
\label
{
module-base64
}
\stmodindex
{
base64
}
\indexii
{
base-64
}{
encoding
}
\rfcindex
{
1421
}
\index
{
MIME!base 64 encoding
}
This module perform base-64 encoding and decoding of arbitrary binary
...
...
Doc/libftplib.tex
View file @
526467ce
...
...
@@ -2,7 +2,6 @@
\label
{
module-ftplib
}
\stmodindex
{
ftplib
}
\indexii
{
FTP
}{
protocol
}
\rfcindex
{
959
}
\renewcommand
{
\indexsubitem
}{
(in module ftplib)
}
...
...
Doc/libhtmllib.tex
View file @
526467ce
\section
{
Standard Module
\sectcode
{
htmllib
}}
\label
{
module-htmllib
}
\stmodindex
{
htmllib
}
\rfcindex
{
1866
}
\index
{
HTML
}
\index
{
hypertext
}
...
...
@@ -12,32 +11,33 @@ files formatted in the HyperText Mark-up Language (HTML). The class
is not directly concerned with I/O --- it must be provided with input
in string form via a method, and makes calls to methods of a
``formatter'' object in order to produce output. The
\c
ode
{
HTMLParser
}
class is designed to be used as a base class for
\c
lass
{
HTMLParser
}
class is designed to be used as a base class for
other classes in order to add functionality, and allows most of its
methods to be extended or overridden. In turn, this class is derived
from and extends the
\code
{
SGMLParser
}
class defined in module
\code
{
sgmllib
}
. Two implementations of formatter objects are
provided in the
\code
{
formatter
}
module; refer to the documentation
for that module for information on the formatter interface.
from and extends the
\class
{
SGMLParser
}
class defined in module
\module
{
sgmllib
}
\refstmodindex
{
sgmllib
}
. The
\class
{
HTMLParser
}
implementation supports the HTML 2.0 language as described in
\rfc
{
1866
}
. Two implementations of formatter objects are provided in
the
\module
{
formatter
}
\refstmodindex
{
formatter
}
module; refer to the
documentation for that module for information on the formatter
interface.
\index
{
SGML
}
\refstmodindex
{
sgmllib
}
\ttindex
{
SGMLParser
}
\index
{
formatter
}
\refstmodindex
{
formatter
}
The following is a summary of the interface defined by
\c
ode
{
sgmllib.SGMLParser
}
:
\c
lass
{
sgmllib.SGMLParser
}
:
\begin{itemize}
\item
The interface to feed data to an instance is through the
\
code
{
feed()
}
The interface to feed data to an instance is through the
\
method
{
feed()
}
method, which takes a string argument. This can be called with as
little or as much text at a time as desired;
\
code
{
p.feed(a);
p.feed(b)
}
has the same effect as
\
code
{
p.feed(a+b)
}
. When the data
little or as much text at a time as desired;
\
samp
{
p.feed(a);
p.feed(b)
}
has the same effect as
\
samp
{
p.feed(a+b)
}
. When the data
contains complete HTML tags, these are processed immediately;
incomplete elements are saved in a buffer. To force processing of all
unprocessed data, call the
\
code
{
close()
}
method.
unprocessed data, call the
\
method
{
close()
}
method.
For example, to parse the entire contents of a file, use:
\bcode
\begin{verbatim}
...
...
@@ -50,13 +50,13 @@ The interface to define semantics for HTML tags is very simple: derive
a class and define methods called
\code
{
start
_
\var
{
tag
}
()
}
,
\code
{
end
_
\var
{
tag
}
()
}
, or
\code
{
do
_
\var
{
tag
}
()
}
. The parser will
call these at appropriate moments:
\code
{
start
_
\var
{
tag
}}
or
\code
{
do
_
\var
{
tag
}}
is called when an opening tag of the form
\code
{
<
\var
{
tag
}
...>
}
is encountered;
\code
{
end
_
\var
{
tag
}}
is called
\code
{
do
_
\var
{
tag
}
()
}
is called when an opening tag of the form
\code
{
<
\var
{
tag
}
...>
}
is encountered;
\code
{
end
_
\var
{
tag
}
()
}
is called
when a closing tag of the form
\code
{
<
\var
{
tag
}
>
}
is encountered. If
an opening tag requires a corresponding closing tag, like
\code
{
<H1>
}
...
\code
{
</H1>
}
, the class should define the
\code
{
start
_
\var
{
tag
}}
...
\code
{
</H1>
}
, the class should define the
\code
{
start
_
\var
{
tag
}
()
}
method; if a tag requires no closing tag, like
\code
{
<P>
}
, the class
should define the
\code
{
do
_
\var
{
tag
}}
method.
should define the
\code
{
do
_
\var
{
tag
}
()
}
method.
\end{itemize}
...
...
@@ -68,10 +68,10 @@ required by the HTML 2.0 specification (\rfc{1866}). It also defines
handlers for all HTML 2.0 and many HTML 3.0 and 3.2 elements.
\end{funcdesc}
In addition to tag methods, the
\c
ode
{
HTMLParser
}
class provides some
In addition to tag methods, the
\c
lass
{
HTMLParser
}
class provides some
additional methods and instance variables for use within tag methods.
\renewcommand
{
\indexsubitem
}{
(HTMLParser
method
)
}
\renewcommand
{
\indexsubitem
}{
(HTMLParser
attribute
)
}
\begin{datadesc}
{
formatter
}
This is the formatter instance associated with the parser.
...
...
@@ -82,40 +82,42 @@ Boolean flag which should be true when whitespace should not be
collapsed, or false when it should be. In general, this should only
be true when character data is to be treated as ``preformatted'' text,
as within a
\code
{
<PRE>
}
element. The default value is false. This
affects the operation of
\
code
{
handle
_
data()
}
and
\code
{
save
_
end()
}
.
affects the operation of
\
method
{
handle
_
data()
}
and
\method
{
save
_
end()
}
.
\end{datadesc}
\renewcommand
{
\indexsubitem
}{
(HTMLParser method)
}
\begin{funcdesc}
{
anchor
_
bgn
}{
href
\,
name
\,
type
}
This method is called at the start of an anchor region. The arguments
correspond to the attributes of the
\code
{
<A>
}
tag with the same
names. The default implementation maintains a list of hyperlinks
(defined by the
\code
{
href
}
a
rgument
) within the document. The list
(defined by the
\code
{
href
}
a
ttribute
) within the document. The list
of hyperlinks is available as the data attribute
\code
{
anchorlist
}
.
\end{funcdesc}
\begin{funcdesc}
{
anchor
_
end
}{}
This method is called at the end of an anchor region. The default
implementation adds a textual footnote marker using an index into the
list of hyperlinks created by
\
code
{
anchor
_
bgn()
}
.
list of hyperlinks created by
\
method
{
anchor
_
bgn()
}
.
\end{funcdesc}
\begin{funcdesc}
{
handle
_
image
}{
source
\,
alt
\optional
{
\,
ismap
\optional
{
\,
align
\optional
{
\,
width
\optional
{
\,
height
}}}}}
This method is called to handle images. The default implementation
simply passes the
\
code
{
alt
}
value to the
\code
{
handle
_
data()
}
simply passes the
\
var
{
alt
}
value to the
\method
{
handle
_
data()
}
method.
\end{funcdesc}
\begin{funcdesc}
{
save
_
bgn
}{}
Begins saving character data in a buffer instead of sending it to the
formatter object. Retrieve the stored data via
\
code
{
save
_
end()
}
Use of the
\
code
{
save
_
bgn()
}
/
\code
{
save
_
end()
}
pair may not be
formatter object. Retrieve the stored data via
\
method
{
save
_
end()
}
.
Use of the
\
method
{
save
_
bgn()
}
/
\method
{
save
_
end()
}
pair may not be
nested.
\end{funcdesc}
\begin{funcdesc}
{
save
_
end
}{}
Ends buffering character data and returns all data saved since the
preceeding call to
\
code
{
save
_
bgn()
}
. If
\code
{
nofill
}
flag is false,
whitespace is collapsed to single spaces. A call to this method
without a preceeding call to
\code
{
save
_
bgn()
}
will raise a
\
code
{
TypeError
}
exception.
preceeding call to
\
method
{
save
_
bgn()
}
. If the
\code
{
nofill
}
flag is
false, whitespace is collapsed to single spaces. A call to this
method without a preceeding call to
\method
{
save
_
bgn()
}
will raise a
\
exception
{
TypeError
}
exception.
\end{funcdesc}
Doc/libmailcap.tex
View file @
526467ce
\section
{
Standard Module
\sectcode
{
mailcap
}}
\label
{
module-mailcap
}
\rfcindex
{
1524
}
\stmodindex
{
mailcap
}
\renewcommand
{
\indexsubitem
}{
(in module mailcap)
}
...
...
@@ -14,7 +13,7 @@ replaced by a filename (usually one belonging to a temporary file) and
the xmpeg program can be automatically started to view the file.
The mailcap format is documented in
\rfc
{
1524
}
, ``A User Agent
Configuration Mechanism For Multimedia Mail Format Information
'',
but
Configuration Mechanism For Multimedia Mail Format Information
,''
but
is not an Internet standard. However, mailcap files are supported on
most
\UNIX
{}
systems.
...
...
Doc/libmd5.tex
View file @
526467ce
\section
{
Built-in Module
\sectcode
{
md5
}}
\label
{
module-md5
}
\rfcindex
{
1321
}
\bimodindex
{
md5
}
This module implements the interface to RSA's MD5 message digest
...
...
Doc/libnntplib.tex
View file @
526467ce
...
...
@@ -2,7 +2,6 @@
\label
{
module-nntplib
}
\stmodindex
{
nntplib
}
\indexii
{
NNTP
}{
protocol
}
\rfcindex
{
977
}
\renewcommand
{
\indexsubitem
}{
(in module nntplib)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment