Commit 1f579316 authored by Andreas Jung's avatar Andreas Jung

adjusted references to changes in STXNG

parent 5c3ff518
......@@ -103,8 +103,8 @@
over acquisition. This is done by:</p>
<ul>
<li><p>subclassing from <code>Acquisition.Explicit</code>, and</p></li>
<li><p>setting all attributes that should be acquired to the special
<li>subclassing from <code>Acquisition.Explicit</code>, and</li>
<li>setting all attributes that should be acquired to the special
value: <code>Acquisition.Acquired</code>. Setting an attribute to this
value also allows inherited attributes to be overridden with
acquired ones.<p> For example, in:
......@@ -123,7 +123,7 @@
<code>Acquisition.Acquired</code> value can be used in
<code>Acquisition.Implicit</code> objects to implicitly acquire selected
objects that smell like private objects.</p>
</p></li>
</li>
</ul>
<h3> Filtered Acquisition</h3>
......@@ -136,11 +136,11 @@
<p> The filter function is called with five arguments:</p>
<ul>
<li><p>The object that the <code>aq_acquire</code> method was called on,</p></li>
<li><p>The object where an object was found,</p></li>
<li><p>The name of the object, as passed to <code>aq_acquire</code>,</p></li>
<li><p>The object found, and</p></li>
<li><p>The extra data passed to <code>aq_acquire</code>.</p></li>
<li>The object that the <code>aq_acquire</code> method was called on,</li>
<li>The object where an object was found,</li>
<li>The name of the object, as passed to <code>aq_acquire</code>,</li>
<li>The object found, and</li>
<li>The extra data passed to <code>aq_acquire</code>.</li>
</ul>
<p> If the filter returns a true object that the object found is
......
......@@ -6,15 +6,15 @@
<h1>This is LinkTest</h1>
<ul>
<li><p>please click <a href="/Members/Zope">here</a></p></li>
<li><p>please click <a href="/Members/Zope?a=b&c=d%20blabla">here</a></p></li>
<li><p>please click <a href="http://www.zope.org">here</a></p></li>
<li><p>please click <a href="http://www.zope.org/members/">here</a></p></li>
<li><p>please click <a href="http://www.zope.org:2001">here</a> </p></li>
<li><p>please click <a href="http://www.zope.org:2001/members/">here</a></p></li>
<li><p>please click <a href="http://www.zope.org:2001/%20/Members/zope?a=222&b=213&_xc=just%20a%20test">here</a> </p></li>
<li><p>please click <a href="http://www.zope.org:2001/%20/Members/zope?a=222&b=213&_xc=just%20a%20test">here</a> </p></li>
<li><p>please click <a href="http://www.zope.org:2001/%20/Members/zope?a=222&b=213&_xc=just%20a%20test">here</a> </p></li>
<li>please click <a href="/Members/Zope">here</a></li>
<li>please click <a href="/Members/Zope?a=b&c=d%20blabla">here</a></li>
<li>please click <a href="http://www.zope.org">here</a></li>
<li>please click <a href="http://www.zope.org/members/">here</a></li>
<li>please click <a href="http://www.zope.org:2001">here</a> </li>
<li>please click <a href="http://www.zope.org:2001/members/">here</a></li>
<li>please click <a href="http://www.zope.org:2001/%20/Members/zope?a=222&b=213&_xc=just%20a%20test">here</a> </li>
<li>please click <a href="http://www.zope.org:2001/%20/Members/zope?a=222&b=213&_xc=just%20a%20test">here</a> </li>
<li>please click <a href="http://www.zope.org:2001/%20/Members/zope?a=222&b=213&_xc=just%20a%20test">here</a> </li>
</ul>
<p> And now a paragraph with <a href="http://www.zope-rocks.org">Link 1</a> and
......
......@@ -9,15 +9,15 @@
<p> Here are a few presentation styles, in a list <a href="#ref1">[1]</a>:</p>
<ul>
<li><p>A word: <em>emphasized</em>.</p></li>
<li><p>A word: <u>underlined</u>.</p></li>
<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>A word: <em>emphasized</em>.</li>
<li>A word: <u>underlined</u>.</li>
<li>A word <strong>strong</strong>.</li>
<li>An inline example: <code>1+2</code>.</li>
<li>Another example with a different format:
``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:
</li>
<li>A mult-line example:
<pre>
blah
......@@ -25,7 +25,7 @@
&lt;dtml-var yeha&gt;
</pre>
</p></li>
</li>
</ul>
<p><a name="ref1">[1]</a> (The referring text should be a paragraph, not a header, and
......@@ -46,4 +46,3 @@ should contain a reference to this footnote, footnote "<a href="#ref1">[1]</a>".
</p>
</body>
</html>
......@@ -11,24 +11,24 @@
treated like other python classes:</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 can be used to directly create new instances.</p></li>
<li>They can be sub-classed in python,</li>
<li>They provide access to method documentation strings, and</li>
<li>They can be used to directly create new instances.</li>
</ul>
<p> Extension classes provide additional extensions to class and
instance semantics, including:</p>
<ul>
<li><p>A protocol for accessing subobjects "in the context of" their
<li>A protocol for accessing subobjects "in the context of" their
containers. This is used to implement custom method types
and <a href="Acquisition.html">environmental acquisition</a>.</p></li>
<li><p>A protocol for overriding method call semantics. This is used
and <a href="Acquisition.html">environmental acquisition</a>.</li>
<li>A protocol for overriding method call semantics. This is used
to implement "synchonized" classes and could be used to
implement argument type checking.</p></li>
<li><p>A protocol for class initialization that supports execution of a
implement argument type checking.</li>
<li>A protocol for class initialization that supports execution of a
special <code>__class_init__</code> method after a class has been
initialized. </p></li>
initialized. </li>
</ul>
<p> Extension classes illustrate how the Python class mechanism can be
......
......@@ -14,8 +14,8 @@
the object to a string. </p>
<ul>
<li><p>Blah </p></li>
<li><p>Blaf <table border="1" cellpadding="2">
<li>Blah </li>
<li>Blaf <table border="1" cellpadding="2">
<tr>
<th colspan="1" align="center" valign="top"><p> Name </p>
</th>
......@@ -36,7 +36,7 @@
</td>
</tr>
</table>
</p></li>
</li>
</ul>
</td>
......
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