You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2009/10/07 12:57:35 UTC

svn commit: r822660 - /ofbiz/site/dtds/simple-methods.xsd

Author: jleroux
Date: Wed Oct  7 10:57:34 2009
New Revision: 822660

URL: http://svn.apache.org/viewvc?rev=822660&view=rev
Log:
No functional changes, only in documentation : replace some value-name per value-field plus remove some wrong dashes.

Modified:
    ofbiz/site/dtds/simple-methods.xsd

Modified: ofbiz/site/dtds/simple-methods.xsd
URL: http://svn.apache.org/viewvc/ofbiz/site/dtds/simple-methods.xsd?rev=822660&r1=822659&r2=822660&view=diff
==============================================================================
--- ofbiz/site/dtds/simple-methods.xsd (original)
+++ ofbiz/site/dtds/simple-methods.xsd Wed Oct  7 10:57:34 2009
@@ -1883,7 +1883,7 @@
         <xs:annotation>
             <xs:documentation>
                 The find-by-primary-key tag uses the delegator to find an entity value by its primary key.
-                The resulting GenericValue object will be placed in the method environment using the specified value-name.
+                The resulting GenericValue object will be placed in the method environment using the specified value-field.
             </xs:documentation>
         </xs:annotation>
         <xs:complexType>
@@ -2647,7 +2647,7 @@
         <xs:attribute name="relation-name" type="xs:string" use="required">
             <xs:annotation>
                 <xs:documentation>
-                    Name of the one-relation to use to relate generic value in value-name to generic value in to-value.
+                    Name of the one-relation to use to relate generic value in value-field to generic value in to-value.
                 </xs:documentation>
             </xs:annotation>
         </xs:attribute>
@@ -2699,7 +2699,7 @@
         <xs:attribute type="xs:string" name="relation-name" use="required">
             <xs:annotation>
                 <xs:documentation>
-                    Name of the relation to use to relate generic value in value-name to generic value in to-value.
+                    Name of the relation to use to relate generic value in value-field to generic value in to-value.
                 </xs:documentation>
             </xs:annotation>
         </xs:attribute>
@@ -2881,7 +2881,7 @@
             <xs:documentation>
                 The make-value tag uses the delegator to construct an entity value.
                 The resulting value will not necessarily exist in the database, but will simply be assembled using the entity-name and fields map.
-                The resulting GenericValue object will be placed in the method environment using the specified value-name.
+                The resulting GenericValue object will be placed in the method environment using the specified value-field.
             </xs:documentation>
         </xs:annotation>
         <xs:complexType>
@@ -2914,8 +2914,8 @@
     <xs:element name="clone-value" substitutionGroup="EntityValueOperations">
         <xs:annotation>
             <xs:documentation>
-                The clone-value tag make a copy of the value in the method environment field specified by value-name.
-                The resulting GenericValue object will be placed in the method environment using the specified new-value-name.
+                The clone-value tag make a copy of the value in the method environment field specified by value-field.
+                The resulting GenericValue object will be placed in the method environment using the specified new-value-field.
             </xs:documentation>
         </xs:annotation>
         <xs:complexType>
@@ -3020,7 +3020,7 @@
     <xs:element name="refresh-value" substitutionGroup="EntityValueOperations">
         <xs:annotation>
             <xs:documentation>
-                Refresh from database the value given in value-name.
+                Refresh from database the value given in value-field.
             </xs:documentation>
         </xs:annotation>
         <xs:complexType>
@@ -3211,7 +3211,7 @@
                     The name of a map in the method environment that will be used for the entity fields.
                     If the fields in the map form the full primary key the entry will be removed from the byPrimaryKey cache.
                     If the map exists but the fields do not include a full primary key the entry will be removed from the byAnd cache.
-                    If no map-name is specified the entry will be removed from the all cache.
+                    If no map name is specified the entry will be removed from the all cache.
                 </xs:documentation>
             </xs:annotation>
         </xs:attribute>
@@ -3410,7 +3410,7 @@
             <xs:documentation>
                 The operations contained by the iterate-map tag will be executed for each of the entries in the map.
                 It will run all of the operations underneath the iterate-map-element for each of the entries in the given map,
-                setting the key for that entry and the key-name variable, and the value for that entry and the value-name variable.
+                setting the key for that entry and the key name variable, and the value for that entry and the value variable.
 
                 This tag can contain any of the simple-method operations, including the conditional/if operations.