balld 00/06/07 12:47:47
Modified: . changes.xml
xdocs sqlprocessor.xml
Log:
patched sql processor docs to be up to date
Revision Changes Path
1.83 +4 -1 xml-cocoon/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/xml-cocoon/changes.xml,v
retrieving revision 1.82
retrieving revision 1.83
diff -u -r1.82 -r1.83
--- changes.xml 2000/06/07 19:45:47 1.82
+++ changes.xml 2000/06/07 19:47:46 1.83
@@ -4,7 +4,7 @@
<!--
History of Cocoon changes
- $Id: changes.xml,v 1.82 2000/06/07 19:45:47 balld Exp $
+ $Id: changes.xml,v 1.83 2000/06/07 19:47:46 balld Exp $
-->
<changes title="History of Changes">
@@ -16,6 +16,9 @@
</devs>
<release version="@version@" date="@date@">
+ <action dev="DB" type="fix" due-to="Peter Seiderer" due-to-email="[EMAIL
PROTECTED]">
+ Patched sql processor documentation to be fully up to date! Hoorah!
+ </action>
<action dev="DB" type="fix" due-to="Peter Seiderer" due-to-email="[EMAIL
PROTECTED]">
Added connection cache to sql processor
</action>
1.4 +9 -4 xml-cocoon/xdocs/sqlprocessor.xml
Index: sqlprocessor.xml
===================================================================
RCS file: /home/cvs/xml-cocoon/xdocs/sqlprocessor.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- sqlprocessor.xml 2000/04/19 16:37:30 1.3
+++ sqlprocessor.xml 2000/06/07 19:47:47 1.4
@@ -76,10 +76,15 @@
<dt>null-indicator</dt><dd>What do we do with null
columns. default is to not print anything for null columns, not even a column
tag. If this is set to "y" or "yes", we add a NULL="YES" attribute to the
column and put an empty string inside.</dd>
<dt>id-attribute</dt><dd>What is the name of the
attribute that uniquely identifies the rows? Default is ID. This is, of course,
meaningless if row-element is set to an empty string.</dd>
<dt>id-attribute-column</dt><dd>Which column should we
use for the id attribute value (think primary key column). Default is to use
the offset of this row in the query's resultset.</dd>
- <dt>max-rows</dt><dd>How many rows should we
display</dd>
- <dt>skip-rows</dt><dd>How many rows should we skip
before starting to display rows</dd>
- <dt>variable-left-delimiter</dt><dd>What string
delimits variables in the query on the left side? Default is [EMAIL
PROTECTED]</dd>
- <dt>variable-right-delimiter</dt><dd>What string
delimits variables in the query on the right side? Default is }.</dd>
+ <dt>max-rows-attribute</dt><dd>How many rows should we
display</dd>
+ <dt>skip-rows-attribute</dt><dd>How many rows should we
skip before starting to display rows</dd>
+ <dt>variable-left-delimiter</dt><dd>What string
delimits variables in the query (HttpRequest.getParameter(name)) on the left
side? Default is '{@'.</dd>
+ <dt>variable-right-delimiter</dt><dd>What string
delimits variables in the query (HttpRequest.getParameter(name))on the right
side? Default is '}'.</dd>
+ <dt>session-variable-left-delimiter</dt><dd>What
string delimits session-variables (HttpSession.getValue(name)) in the query on
the left side? Default is '[EMAIL PROTECTED]'.</dd>
+ <dt>session-variable-right-delimiter</dt><dd>What
string delimits session-variables (HttpSession.getValue(name)) in the query on
the right side? Default is '}'.</dd>
+ <dt>update-rows-attribute</dt><dd>Simple query or
are rows updated. Default is ''. For a update query use attribute
'update-rows-attribute="yes"'</dd>
+ <dt>count-attribute</dt><dd>Add a attribute with the
specified name to the doc-element which contains the row count of the query
result. Default is '' (do not use this feature).</dd>
+ <dt>query-attribute</dt><dd>Add a attribute with the
specified name to the doc-element which contains the ULR encoded query string.
Default is '' do not use this feature).</dd>
</dl>
</s1>