Commit f765c899 authored by Hanno Schlichting's avatar Hanno Schlichting

Removed some outdated hints at SQL usage

parent e298ab86
...@@ -25,7 +25,6 @@ on the Zope website at ...@@ -25,7 +25,6 @@ on the Zope website at
<ul> <ul>
<li><a href="http://www.zope.org/Documentation/Guides/ZCMG">Zope Content Manager's Guide</a></li> <li><a href="http://www.zope.org/Documentation/Guides/ZCMG">Zope Content Manager's Guide</a></li>
<li><a href="http://www.zope.org/Documentation/Guides/DTML">Z Document Template User's Guide</a></li> <li><a href="http://www.zope.org/Documentation/Guides/DTML">Z Document Template User's Guide</a></li>
<li><a href="http://www.zope.org/Documentation/Guides/ZSQL">Z SQL Methods User's Guide</a></li>
</ul> </ul>
</p> </p>
......
...@@ -18,4 +18,4 @@ Cacheable objects ...@@ -18,4 +18,4 @@ Cacheable objects
expensive, so use this feature with care. Also note that it is not expensive, so use this feature with care. Also note that it is not
possible for accelerated HTTP cache managers to make use of this feature. possible for accelerated HTTP cache managers to make use of this feature.
(TODO) Python scripts and SQL methods may also provide further options. (TODO) Python scripts may also provide further options.
...@@ -5,7 +5,5 @@ Z Search Interface: Search wizard. ...@@ -5,7 +5,5 @@ Z Search Interface: Search wizard.
A Search Interface is a wizard that creates search and results forms. A Search Interface is a wizard that creates search and results forms.
The Search Interface will create a search-input form and a report The Search Interface will create a search-input form and a report
for displaying the search results. You can search ZSQL Methods, for displaying the search results. You can search ZCatalogs, or any other
ZCatalogs, or any other objects that implement the searchable objects that implement the searchable interface.
interface.
...@@ -153,8 +153,7 @@ functions: DTML Functions ...@@ -153,8 +153,7 @@ functions: DTML Functions
SecurityCalledByExecutable() -- Return a true if the current SecurityCalledByExecutable() -- Return a true if the current
object (e.g. DTML document or method) is being called by an object (e.g. DTML document or method) is being called by an
executable (e.g. another DTML document or method, a script or a executable (e.g. another DTML document or method or script).
SQL method).
SecurityCheckPermission(permission, object) -- Check whether the SecurityCheckPermission(permission, object) -- Check whether the
security context allows the given permission on the given security context allows the given permission on the given
......
...@@ -108,11 +108,10 @@ ZCatalog Tutorial ...@@ -108,11 +108,10 @@ ZCatalog Tutorial
with the Portal toolkit. with the Portal toolkit.
ZCatalogs are "searchable objects", meaning they cooperate with Z ZCatalogs are "searchable objects", meaning they cooperate with Z
Search Interfaces documented in Z SQL Methods. Creating a search Search Interfaces. Creating a search form for a 'ZCatalog' is a
form for a 'ZCatalog' is a simple matter of adding a Z Search simple matter of adding a Z Search Interface from the management
Interface from the management screen and filling in a form. screen and filling in a form. ZCatalogs can also be queried directly
ZCatalogs can also be queried directly from DTML, as shown in the from DTML, as shown in the example below.
example below.
Using 'ZCatalog' In A Zope Site Using 'ZCatalog' In A Zope Site
......
...@@ -76,11 +76,6 @@ ...@@ -76,11 +76,6 @@
If you choose to enable subtransactions, you can adjust how often If you choose to enable subtransactions, you can adjust how often
ZCatalog commits a subtransactions by adjusting the ZCatalog commits a subtransactions by adjusting the
<em>threshold</em> below.</p> <em>threshold</em> below.</p>
<p class="form-help"> If you are using ZCatalog and ZSQL Methods
in the same transaction, you <em>must</em> disable
subtransactions, they are not compatible with ZSQL Methods.</p>
<br />
</td> </td>
</tr> </tr>
<tr> <tr>
......
...@@ -14,11 +14,6 @@ ...@@ -14,11 +14,6 @@
ZCatalog commits a subtransactions by adjusting the ZCatalog commits a subtransactions by adjusting the
<em>threshold</em> below.</p> <em>threshold</em> below.</p>
<p class="form-help"> If you are using ZCatalog and ZSQL Methods in the
same
transaction, you <em>must</em> disable subtransactions, they are not
compatible with ZSQL Methods.</p>
<h3>Subtransactions are <h3>Subtransactions are
<dtml-if threshold> <dtml-if threshold>
<font color="green"><b>Enabled</b></font> <font color="green"><b>Enabled</b></font>
......
...@@ -258,13 +258,6 @@ are still necessary. ...@@ -258,13 +258,6 @@ are still necessary.
ignore, say, all images from ignore, say, all images from
'http://obnoxious.blinky.advertisements.com/'), logging, 'http://obnoxious.blinky.advertisements.com/'), logging,
etc... etc...
<dt> <b> Planned </b> <dd> On the drawing board are pseudo-filesystem
extensions, access to databases like mSQL and Oracle, (and on Windows
via ODBC), authentication, server-side includes, and a full-blown
proxy/cache system for both HTTP and FTP. Feedback from users will
help me decide which areas to concentrate on, so please email me any
suggestions.
</dl> </dl>
......
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