Author: jleroux
Date: Thu Jan 1 14:38:08 2009
New Revision: 730623
URL: http://svn.apache.org/viewvc?rev=730623&view=rev
Log:
<list-to-list list-name= => <list-to-list list=
<list-to-list(.*)to-list-name= => <list-to-list$1to-list=
Modified:
ofbiz/trunk/applications/content/script/org/ofbiz/content/permission/ContentPermissionServices.xml
ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/jobshopmgt/ProductionRunServices.xml
ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartyServices.xml
ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml
ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/InventoryServices.xml
ofbiz/trunk/framework/common/script/org/ofbiz/common/PortalPageServices.xml
ofbiz/trunk/framework/common/script/org/ofbiz/common/period/PeriodServices.xml
Modified:
ofbiz/trunk/applications/content/script/org/ofbiz/content/permission/ContentPermissionServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/script/org/ofbiz/content/permission/ContentPermissionServices.xml?rev=730623&r1=730622&r2=730623&view=diff
==============================================================================
---
ofbiz/trunk/applications/content/script/org/ofbiz/content/permission/ContentPermissionServices.xml
(original)
+++
ofbiz/trunk/applications/content/script/org/ofbiz/content/permission/ContentPermissionServices.xml
Thu Jan 1 14:38:08 2009
@@ -472,7 +472,7 @@
</condition-list>
<order-by field-name="contentPurposeTypeId"/>
</entity-condition>
- <list-to-list list-name="currentOperations"
to-list-name="operations"/>
+ <list-to-list list="currentOperations"
to-list="operations"/>
</iterate>
<!-- check the _NA_ purpose but only if no other purposes were
found -->
Modified:
ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/jobshopmgt/ProductionRunServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/jobshopmgt/ProductionRunServices.xml?rev=730623&r1=730622&r2=730623&view=diff
==============================================================================
---
ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/jobshopmgt/ProductionRunServices.xml
(original)
+++
ofbiz/trunk/applications/manufacturing/script/org/ofbiz/manufacturing/jobshopmgt/ProductionRunServices.xml
Thu Jan 1 14:38:08 2009
@@ -116,7 +116,7 @@
<if-not-empty field="parameters.secondaryLocationSeqId">
<set from-field="parameters.secondaryLocationSeqId"
field="lookupFieldMap.locationSeqId"/>
<find-by-and entity-name="InventoryItem"
map="lookupFieldMap" list="secondaryInventoryItemList"
order-by-list="orderByList"/>
- <list-to-list list-name="secondaryInventoryItemList"
to-list-name="inventoryItemList"/>
+ <list-to-list list="secondaryInventoryItemList"
to-list="inventoryItemList"/>
</if-not-empty>
</if-not-empty>
Modified:
ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartyServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartyServices.xml?rev=730623&r1=730622&r2=730623&view=diff
==============================================================================
---
ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartyServices.xml
(original)
+++
ofbiz/trunk/applications/party/script/org/ofbiz/party/party/PartyServices.xml
Thu Jan 1 14:38:08 2009
@@ -605,7 +605,7 @@
<!-- if we found new ones, add them to the master list and if
recurse=Y then recurse -->
<if-not-empty field="_inline_NewRelatedPartyIdList">
- <list-to-list list-name="_inline_NewRelatedPartyIdList"
to-list-name="relatedPartyIdList"/>
+ <list-to-list list="_inline_NewRelatedPartyIdList"
to-list="relatedPartyIdList"/>
<if-compare field="recurse" operator="equals" value="Y">
<log level="verbose" message="Recursively calling
followPartyRelationshipsInlineRecurse
_inline_NewRelatedPartyIdList=${_inline_NewRelatedPartyIdList}"/>
<call-simple-method
method-name="followPartyRelationshipsInlineRecurse"/>
@@ -651,7 +651,7 @@
<!-- if we found some new types, add them to the main list -->
<if-not-empty field="_inline_NewRoleTypeIdList">
- <list-to-list list-name="_inline_NewRoleTypeIdList"
to-list-name="${roleTypeIdListName}"/>
+ <list-to-list list="_inline_NewRoleTypeIdList"
to-list="${roleTypeIdListName}"/>
<log level="verbose" message="Recursively calling
getChildRoleTypesInline roleTypeIdListName=${roleTypeIdListName},
_inline_NewRoleTypeIdList=${_inline_NewRoleTypeIdList}"/>
<call-simple-method method-name="getChildRoleTypesInline"/>
</if-not-empty>
Modified:
ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml?rev=730623&r1=730622&r2=730623&view=diff
==============================================================================
---
ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml
(original)
+++
ofbiz/trunk/applications/product/script/org/ofbiz/product/catalog/CatalogServices.xml
Thu Jan 1 14:38:08 2009
@@ -134,7 +134,7 @@
<!--set field="categories" from-field="parameters.categories" / -->
<find-by-and entity-name="ProductCategoryRollup" list="rollups"
map="productCategoryRollUpContext" order-by-list="orderByStringList"/>
<if-not-empty field="parameters.categories">
- <list-to-list list-name="parameters.categories"
to-list-name="categories"/>
+ <list-to-list list="parameters.categories" to-list="categories"/>
</if-not-empty>
<if-not-empty field="rollups">
<iterate list="rollups" entry="parent">
@@ -159,7 +159,7 @@
</if-compare>
</iterate>
<else>
- <list-to-list list-name="relCategories"
to-list-name="categories"/>
+ <list-to-list list="relCategories"
to-list="categories"/>
</else>
</if-not-empty>
<field-to-result field="categories"
result-name="categories"/>
Modified:
ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/InventoryServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/InventoryServices.xml?rev=730623&r1=730622&r2=730623&view=diff
==============================================================================
---
ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/InventoryServices.xml
(original)
+++
ofbiz/trunk/applications/product/script/org/ofbiz/product/inventory/InventoryServices.xml
Thu Jan 1 14:38:08 2009
@@ -781,8 +781,8 @@
</if>
</iterate>
- <list-to-list list-name="privilegedReservations"
to-list-name="allReservations"/>
- <list-to-list list-name="reservations" to-list-name="allReservations"/>
+ <list-to-list list="privilegedReservations" to-list="allReservations"/>
+ <list-to-list list="reservations" to-list="allReservations"/>
<if-compare field="inventoryItem.inventoryItemTypeId"
operator="equals" value="SERIALIZED_INV_ITEM">
<!-- if the new item is serialized, i.e. qoh is 1, we just need
the first reservation -->
@@ -893,8 +893,8 @@
</if-empty>
</iterate>
- <list-to-list list-name="privilegedReservations"
to-list-name="allReservations"/>
- <list-to-list list-name="reservations" to-list-name="allReservations"/>
+ <list-to-list list="privilegedReservations" to-list="allReservations"/>
+ <list-to-list list="reservations" to-list="allReservations"/>
<!-- FIRST, cancel all the reservations -->
<iterate list="allReservations" entry="oisgir">
Modified:
ofbiz/trunk/framework/common/script/org/ofbiz/common/PortalPageServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/script/org/ofbiz/common/PortalPageServices.xml?rev=730623&r1=730622&r2=730623&view=diff
==============================================================================
--- ofbiz/trunk/framework/common/script/org/ofbiz/common/PortalPageServices.xml
(original)
+++ ofbiz/trunk/framework/common/script/org/ofbiz/common/PortalPageServices.xml
Thu Jan 1 14:38:08 2009
@@ -178,7 +178,7 @@
<order-by field-name="createdStamp"/>
</entity-condition>
</if-not-empty>
- <list-to-list list-name="PortalPageList" to-list-name="result"/>
+ <list-to-list list="PortalPageList" to-list="result"/>
<field-to-result field="result" result-name="listIt"/>
</simple-method>
</simple-methods>
Modified:
ofbiz/trunk/framework/common/script/org/ofbiz/common/period/PeriodServices.xml
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/script/org/ofbiz/common/period/PeriodServices.xml?rev=730623&r1=730622&r2=730623&view=diff
==============================================================================
---
ofbiz/trunk/framework/common/script/org/ofbiz/common/period/PeriodServices.xml
(original)
+++
ofbiz/trunk/framework/common/script/org/ofbiz/common/period/PeriodServices.xml
Thu Jan 1 14:38:08 2009
@@ -77,7 +77,7 @@
<condition-expr field-name="periodTypeId"
operator="in" from-field="parameters.onlyIncludePeriodTypeIdList"
ignore-if-empty="true"/>
</condition-list>
</entity-condition>
- <list-to-list list-name="orgTimePeriodList"
to-list-name="listSoFar"/>
+ <list-to-list list="orgTimePeriodList" to-list="listSoFar"/>
</iterate>
</if-not-empty>
@@ -96,7 +96,7 @@
<condition-expr field-name="periodTypeId" operator="in"
from-field="parameters.onlyIncludePeriodTypeIdList" ignore-if-empty="true"/>
</condition-list>
</entity-condition>
- <list-to-list list-name="generalCustomTimePeriodList"
to-list-name="listSoFar"/>
+ <list-to-list list="generalCustomTimePeriodList"
to-list="listSoFar"/>
</if-compare>
<!--