You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by ds...@apache.org on 2005/09/21 16:59:48 UTC

svn commit: r290719 - in /jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference: ActionLink.xml DatePicker.xml DirectLink.xml Foreach.xml ListEdit.xml

Author: dsolis
Date: Wed Sep 21 07:59:43 2005
New Revision: 290719

URL: http://svn.apache.org/viewcvs?rev=290719&view=rev
Log:
Use property instead of property-specification.

Modified:
    jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ActionLink.xml
    jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DatePicker.xml
    jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DirectLink.xml
    jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/Foreach.xml
    jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ListEdit.xml

Modified: jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ActionLink.xml
URL: http://svn.apache.org/viewcvs/jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ActionLink.xml?rev=290719&r1=290718&r2=290719&view=diff
==============================================================================
--- jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ActionLink.xml (original)
+++ jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ActionLink.xml Wed Sep 21 07:59:43 2005
@@ -208,8 +208,8 @@
 <section>
 <title>Page specification</title>
 <source><![CDATA[
-<property-specification name="customerList" type="java.util.List" persistent="yes"/>
-<property-specification name="customer" type="Customer"/>
+<property name="customerList" type="java.util.List" persistent="yes"/>
+<property name="customer" type="Customer"/>
 ]]></source>
 </section>
 

Modified: jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DatePicker.xml
URL: http://svn.apache.org/viewcvs/jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DatePicker.xml?rev=290719&r1=290718&r2=290719&view=diff
==============================================================================
--- jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DatePicker.xml (original)
+++ jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DatePicker.xml Wed Sep 21 07:59:43 2005
@@ -133,8 +133,8 @@
     <p>Page specification</p>
 <source><![CDATA[
 ...
-<property-specification name="startDate" type="java.util.Date"/>
-<property-specification name="endDate" type="java.util.Date"/>
+<property name="startDate" type="java.util.Date"/>
+<property name="endDate" type="java.util.Date"/>
 ...
 ]]></source>
     <p>Java source</p>

Modified: jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DirectLink.xml
URL: http://svn.apache.org/viewcvs/jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DirectLink.xml?rev=290719&r1=290718&r2=290719&view=diff
==============================================================================
--- jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DirectLink.xml (original)
+++ jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/DirectLink.xml Wed Sep 21 07:59:43 2005
@@ -253,8 +253,8 @@
 <section>
 <title>Page specification</title>
 <source><![CDATA[
-<property-specification name="customerList" type="java.util.List" persistent="yes"/>
-<property-specification name="customer" type="Customer"/>
+<property name="customerList" type="java.util.List" persistent="yes"/>
+<property name="customer" type="Customer"/>
 ]]></source>
 </section>
 

Modified: jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/Foreach.xml
URL: http://svn.apache.org/viewcvs/jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/Foreach.xml?rev=290719&r1=290718&r2=290719&view=diff
==============================================================================
--- jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/Foreach.xml (original)
+++ jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/Foreach.xml Wed Sep 21 07:59:43 2005
@@ -151,8 +151,8 @@
     <p><strong>Page Specification</strong></p>
 <source><![CDATA[
 .....
-<property-specification name="customerList" type="java.util.List" persistent="yes"/>
-<property-specification name="customer" type="Customer"/>
+<property name="customerList" type="java.util.List" persistent="yes"/>
+<property name="customer" type="Customer"/>
 .....
 ]]></source>
     <p><strong>Java</strong></p>

Modified: jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ListEdit.xml
URL: http://svn.apache.org/viewcvs/jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ListEdit.xml?rev=290719&r1=290718&r2=290719&view=diff
==============================================================================
--- jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ListEdit.xml (original)
+++ jakarta/tapestry/trunk/framework/src/documentation/content/xdocs/tapestry/ComponentReference/ListEdit.xml Wed Sep 21 07:59:43 2005
@@ -154,8 +154,8 @@
     <p>The page specification sets up some page properties for the ListEditMap and current publisher. The listEdit component is where it gets interesting. The source binding is the set of all keys in the list edit map. Basically the list of all the publishers identifers. The value is the current key. It would actually be possible to use the publisher object as the value however because each value object is serialized this could get pretty inefficient. Instead what happens is a listener is setup. This listener sets up the actual publisher object from the key when the form is rewound.</p>
   <source><![CDATA[
   .....
-  <property-specification name="listEditMap" type="org.apache.tapestry.form.ListEditMap"/>
-  <property-specification name="publisher" type="org.apache.tapestry.vlib.ejb.Publisher"/>
+  <property name="listEditMap" type="org.apache.tapestry.form.ListEditMap"/>
+  <property name="publisher" type="org.apache.tapestry.vlib.ejb.Publisher"/>
 
   <component id="listEdit" type="ListEdit">
   	<binding name="source" expression="listEditMap.keys"/>



---------------------------------------------------------------------
To unsubscribe, e-mail: tapestry-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tapestry-dev-help@jakarta.apache.org