Commit 89994a14 authored by Andreas Jung's avatar Andreas Jung

updated HTML reference files to STXNG

parent 5021daee
<html>
<head>
<title>Small Trials for Structured Text Formatting</title>
</head>
<body>
<h1>Small Trials for Structured Text Formatting</h1> <h1>Small Trials for Structured Text Formatting</h1>
<p> This paragraph should be preceded by a level 1 header. It should <p> This paragraph should be preceded by a level 1 header. It should
not, itself, be made into a header, just a regular paragraph.</p> not, itself, be made into a header, just a regular paragraph.</p>
<p> Here are a few presentation styles, in a list <a href="#1">[1]</a>:</p> <p> Here are a few presentation styles, in a list <a href="#1">[1]</a>:</p>
<ul><li><p>A word: <em>emphasized</em>.</p> <ul>
<li><p>A word: <em>emphasized</em>.</p></li>
<li><p>A word: <u>underlined</u>.</p></li>
<li><p>A word: <u>underlined</u>.</p> <li><p>A word <strong>strong</strong>.</p></li>
<li><p>An inline example: <code>1+2</code>.</p></li>
<li><p>Another example with a different format:
<li><p>A word <strong>strong</strong>.</p> ``x='spam''' or ``y='spam''' or ``<dtml-var spam>'<code>.</code><p> We can use expressions in the DTML var tag as
in ``<dtml-var "x+'.txt'">''</p>
</p></li>
<li><p>A mult-line example:
<pre>
blah
*foo bar*
&lt;dtml-var yeha&gt;
</pre>
</p></li>
</ul> </ul>
<p>.. <a href="#1">[1]</a> (The referring text should be a paragraph, not a header, and
<p> <a name="1">[1]</a> (The referring text should be a paragraph, not a header, and should contain a reference to this footnote, footnote "<a href="#1">[1]</a>".)<p> Some hrefs, in a definition list:</p>
should contain a reference to this footnote, footnote "[1]".)</p> <dl>
<p> Some hrefs, in a definition list:</p> <dt> <u>Regular</u></dt>
<dd><a href="http://www.zope.org">http://www.zope.org/</a></dd>
<dl><dt> <u>Regular</u><dd><p><a href="http://www.zope.org">http://www.zope.org/</a></p> <dt> <u>W/trailing punctuation</u></dt>
<dd><a href="http://www.zope.org">http://www.zope.org/</a>.</dd>
<dt> <u>W protocol implicit</u></dt>
<dt> <u>W/trailing punctuation</u><dd><p><a href="http://www.zope.org">http://www.zope.org/</a>.</p> <dd><a href=":locallink">locallink</a></dd>
<dt> <u>W protocol implicit</u>, alternate</dt>
<dd>"locallink", :locallink</dd>
<dt> <u>W protocol implicit</u><dd><p><a href="locallink">locallink</a></p>
<dt> <u>W protocol implicit</u>, alternate<dd><p><a href="locallink">locallink</a></p>
</dl> </dl>
<p> <p> |||| A Simple Two-column Table ||
<TABLE BORDER=1 CELLPADDING=2> || Column A || Column B ||
<TR> || Apples || Oranges ||</p>
<TD ALIGN=CENTER COLSPAN=2> A Simple Two-column Table </TD> </p>
</TR> </body>
<TR> </html>
<TD ALIGN=CENTER COLSPAN=1> Column A </TD>
<TD ALIGN=CENTER COLSPAN=1> Column B </TD>
</TR>
<TR>
<TD ALIGN=CENTER COLSPAN=1> Apples </TD>
<TD ALIGN=CENTER COLSPAN=1> Oranges </TD>
</TR>
</TABLE></p>
<p>
<TABLE BORDER=1 CELLPADDING=2>
</TABLE></p>
<p> <html>
Extension Class</p> <head>
<title>Extension Class</title>
</head>
<body>
<h1>Extension Class</h1>
<p> <a href="COPYRIGHT.html">Copyright (C) 1996-1998, Digital Creations</a>.</p> <p> <a href="COPYRIGHT.html">Copyright (C) 1996-1998, Digital Creations</a>.</p>
<p> A lightweight mechanism has been developed for making Python <p> A lightweight mechanism has been developed for making Python
extension types more class-like. Classes can be developed in an extension types more class-like. Classes can be developed in an
extension language, such as C or C++, and these classes can be extension language, such as C or C++, and these classes can be
treated like other python classes:</p> treated like other python classes:</p>
<ul><li><p>They can be sub-classed in python,</p> <ul>
<li><p>They can be sub-classed in python,</p></li>
<li><p>They provide access to method documentation strings, and</p></li>
<li><p>They provide access to method documentation strings, and</p> <li><p>They can be used to directly create new instances.</p></li>
<li><p>They can be used to directly create new instances.</p>
</ul> </ul>
<p> Extension classes provide additional extensions to class and <p> Extension classes provide additional extensions to class and
instance semantics, including:</p> instance semantics, including:</p>
<ul><li><p>A protocol for accessing subobjects "in the context of" their <ul>
<li><p>A protocol for accessing subobjects "in the context of" their
containers. This is used to implement custom method types containers. This is used to implement custom method types
and <a href="Acquisition.html">environmental acquisition</a>.</p> and <a href="Acquisition.html">environmental acquisition</a>.</p></li>
<li><p>A protocol for overriding method call semantics. This is used <li><p>A protocol for overriding method call semantics. This is used
to implement "synchonized" classes and could be used to to implement "synchonized" classes and could be used to
implement argument type checking.</p> implement argument type checking.</p></li>
<li><p>A protocol for class initialization that supports execution of a <li><p>A protocol for class initialization that supports execution of a
special <code>__class_init__</code> method after a class has been special '_<u>class</u>init__' method after a class has been
initialized.</p> initialized. </p></li>
</ul> </ul>
<p> Extension classes illustrate how the Python class mechanism can be <p> Extension classes illustrate how the Python class mechanism can be
extended and may provide a basis for improved or specialized class extended and may provide a basis for improved or specialized class
models. </p> models. </p>
<h2> Releases</h2>
<h1>Releases</h1> <p> The current release is <a href="ExtensionClass-1.2.tar.gz">1.2</a>,
<p> The current release is <a href="ExtensionClass-1.2.tar.gz">1.2</a>
To find out what's changed in this release, To find out what's changed in this release,
see the <a href="release.html">release notes</a>.</p> see the <a href="release.html">release notes</a>.</p>
<p> Documentation is available <a href="ExtensionClass.html">on-line</a>.</p> <p> Documentation is available <a href="ExtensionClass.html">on-line</a>.</p>
<h3> Windows Binaries</h3>
<p> A win32 binary release, <a href="ec12.zip">ec12.zip</a>, is available. This
<h1>Windows Binaries</h1>
<p> A win32 binary release, <a href="ec12.zip">ec12.zip</a> is available. This
release includes all of the ExtensionClass modules built as release includes all of the ExtensionClass modules built as
Windows extension modules (.pyd) files. These were built for Windows extension modules (.pyd) files. These were built for
Python 1.5.1 using Microsoft Visual C++ 5.0 in "Release" mode.</p> Python 1.5.1 using Microsoft Visual C++ 5.0 in "Release" mode.</p>
</body>
</html>
<p>
<TABLE BORDER=1 CELLPADDING=2>
</TABLE></p>
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment