You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2006/10/15 02:58:37 UTC

svn commit: r464089 [2/2] - in /tapestry/tapestry4/trunk/tapestry-contrib/src/site: ./ resources/ resources/images/ xdoc/componentreference/

Copied: tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/timeout.xml (from r464067, tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/Timeout.xml)
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/timeout.xml?view=diff&rev=464089&p1=tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/Timeout.xml&r1=464067&p2=tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/timeout.xml&r2=464089
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/Timeout.xml (original)
+++ tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/timeout.xml Sat Oct 14 17:58:35 2006
@@ -28,13 +28,10 @@
             </p>
 
             <subsection name="Parameters">
-
-
                 <table>
                     <tr>
                         <th>Name</th>
                         <th>Type</th>
-                        <th>Direction</th>
                         <th>Required</th>
                         <th>Default</th>
                         <th>Description</th>
@@ -43,7 +40,6 @@
                     <tr>
                         <td>warningTime</td>
                         <td>int</td>
-                        <td>in</td>
                         <td>no</td>
                         <td>300</td>
                         <td>
@@ -55,7 +51,6 @@
                     <tr>
                         <td>autoProlongTime</td>
                         <td>int</td>
-                        <td>in</td>
                         <td>no</td>
                         <td>900</td>
                         <td>
@@ -67,7 +62,6 @@
                     <tr>
                         <td>warningMessage</td>
                         <td>String</td>
-                        <td>in</td>
                         <td>no</td>
                         <td>
                             The connection was inactive for more than {0} minutes. Your session will
@@ -85,7 +79,6 @@
                     <tr>
                         <td>expirationMessage</td>
                         <td>String</td>
-                        <td>in</td>
                         <td>no</td>
                         <td>Your session has expired. Please log in again.</td>
                         <td>
@@ -97,7 +90,6 @@
                     <tr>
                         <td>disableWarning</td>
                         <td>boolean</td>
-                        <td>in</td>
                         <td>no</td>
                         <td>false</td>
                         <td>Do not display a warning message after 'warningTime' seconds.</td>
@@ -106,7 +98,6 @@
                     <tr>
                         <td>disableAutoProlong</td>
                         <td>boolean</td>
-                        <td>in</td>
                         <td>no</td>
                         <td>false</td>
                         <td>
@@ -118,9 +109,8 @@
                     <tr>
                         <td>expirationFunction</td>
                         <td>String</td>
-                        <td>in</td>
                         <td>no</td>
-                        <td>null</td>
+                        <td></td>
                         <td>
                             The JavaScript function that will be invoked when the session expires.
                         </td>

Copied: tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/xtile.xml (from r464067, tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/XTile.xml)
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/xtile.xml?view=diff&rev=464089&p1=tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/XTile.xml&r1=464067&p2=tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/xtile.xml&r2=464089
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/XTile.xml (original)
+++ tapestry/tapestry4/trunk/tapestry-contrib/src/site/xdoc/componentreference/xtile.xml Sat Oct 14 17:58:35 2006
@@ -36,19 +36,16 @@
                     XTileService
                 </a>
                 that this component uses does NOT activate any page - it simply calls the specified
-                listener. This means that pageBeginRender() methods will not get called and that
-                cycle.getPage() will return null.
+                listener. This means that <code>pageBeginRender()</code> methods will not get called and that
+                <code>cycle.getPage()</code> will return null.
                 </p>
             </span>
 
             <subsection name="Parameters">
-
-
                 <table>
                     <tr>
                         <th>Name</th>
                         <th>Type</th>
-                        <th>Direction</th>
                         <th>Required</th>
                         <th>Default</th>
                         <th>Description</th>
@@ -58,18 +55,17 @@
                         <td>listener</td>
                         <td>
                             <a
-                                href="../../tapestry/apidocs/org/apache/tapestry/IActionListener.html">
+                                href="../../tapestry-framework/apidocs/org/apache/tapestry/IActionListener.html">
                                 IActionListener
                             </a>
                         </td>
-                        <td>in</td>
                         <td>yes</td>
-                        <td />
+                        <td></td>
                         <td>
                             The listener that will be invoked when the Javascript function with the
                             given name is invoked. Any parameters passed to the send function will
-                            be available from cycle.getListenerParameters(). In addition, the
-                            listener can perform cycle.setListenerParameters() to pass an array of
+                            be available from <code>cycle.getListenerParameters()</code>. In addition, the
+                            listener can perform <code>cycle.setListenerParameters()</code> to pass an array of
                             strings to the JavaScript receive function.
                         </td>
                     </tr>
@@ -77,9 +73,8 @@
                     <tr>
                         <td>sendName</td>
                         <td>String</td>
-                        <td>in</td>
                         <td>yes</td>
-                        <td />
+                        <td></td>
                         <td>
                             The name of the JavaScript function that the script will define to allow
                             the application to send information to the server.
@@ -89,9 +84,8 @@
                     <tr>
                         <td>receiveName</td>
                         <td>String</td>
-                        <td>in</td>
                         <td>yes</td>
-                        <td />
+                        <td></td>
                         <td>
                             The name of the JavaScript function that the script will call to allow
                             the application to receive information from the server some time after
@@ -102,9 +96,8 @@
                     <tr>
                         <td>errorName</td>
                         <td>String</td>
-                        <td>in</td>
                         <td>no</td>
-                        <td>null</td>
+                        <td></td>
                         <td>
                             The name of the JavaScript function that the script will call to
                             indicate that an error has occurred while sending the information to the
@@ -115,7 +108,6 @@
                     <tr>
                         <td>disableCaching</td>
                         <td>boolean</td>
-                        <td>in</td>
                         <td>no</td>
                         <td>false</td>
                         <td>