[OFBiz] SVN: r7469 - in trunk/framework: common/widget entity/config example/widget/example
jonesde@svn.ofbiz.org
jonesde at svn.ofbiz.org
Mon May 1 11:39:51 CDT 2006
Author: jonesde
Date: 2006-05-01 11:39:40 -0500 (Mon, 01 May 2006)
New Revision: 7469
Modified:
trunk/framework/common/widget/LookupForms.xml
trunk/framework/entity/config/entityengine.xml
trunk/framework/example/widget/example/ExampleFeatureForms.xml
Log:
Applied patch from Jacopo to modernize some attribute names
Modified: trunk/framework/common/widget/LookupForms.xml
===================================================================
--- trunk/framework/common/widget/LookupForms.xml 2006-05-01 14:42:33 UTC (rev 7468)
+++ trunk/framework/common/widget/LookupForms.xml 2006-05-01 16:39:40 UTC (rev 7469)
@@ -41,10 +41,10 @@
<field name="noConditionFind"><hidden value="Y"/><!-- if this isn't there then with all fields empty no query will be done --></field>
<field name="submitButton" title="Lookup" widget-style="smallSubmit"><submit button-type="button"/></field>
</form>
- <form name="listLookupGeo" list-iterator-name="listIt" target="" paginate-target="LookupGeo" title="" type="list"
+ <form name="listLookupGeo" list-name="listIt" target="" paginate-target="LookupGeo" title="" type="list"
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="tabletext">
<actions>
- <service service-name="performFind" result-map-name="result" result-map-list-iterator-name="listIt">
+ <service service-name="performFind" result-map-name="result" result-map-list-name="listIt">
<field-map field-name="inputFields" env-name="parameters"/>
<field-map field-name="entityName" value="Geo"/>
<field-map field-name="orderBy" value="geoName"/>
Modified: trunk/framework/entity/config/entityengine.xml
===================================================================
--- trunk/framework/entity/config/entityengine.xml 2006-05-01 14:42:33 UTC (rev 7468)
+++ trunk/framework/entity/config/entityengine.xml 2006-05-01 16:39:40 UTC (rev 7469)
@@ -32,14 +32,16 @@
<!-- the transaction factory class to use, one is needed for each way of getting JTA interfaces -->
<!-- Use this one for Geronimo, this is being tested now, seems to be working -->
- <!-- <transaction-factory class="org.ofbiz.geronimo.GeronimoTransactionFactory"/> -->
+ <transaction-factory class="org.ofbiz.geronimo.GeronimoTransactionFactory"/>
<!-- Use this one for JNDI -->
<!-- NOTE: to use the JndiFactory you must specify the necessary JNDI properties -->
+ <!--
<transaction-factory class="org.ofbiz.entity.transaction.JNDIFactory">
<user-transaction-jndi jndi-server-name="default" jndi-name="java:comp/UserTransaction"/>
<transaction-manager-jndi jndi-server-name="default" jndi-name="java:comp/UserTransaction"/>
</transaction-factory>
+ -->
<!--
It is common to use UserTransaction for the TransactionManager, but if that doesn't work, try this: <transaction-manager-jndi jndi-server-name="default" jndi-name="java:comp/TransactionManager"/>
Common UserTransaction locations:
Modified: trunk/framework/example/widget/example/ExampleFeatureForms.xml
===================================================================
--- trunk/framework/example/widget/example/ExampleFeatureForms.xml 2006-05-01 14:42:33 UTC (rev 7468)
+++ trunk/framework/example/widget/example/ExampleFeatureForms.xml 2006-05-01 16:39:40 UTC (rev 7469)
@@ -130,10 +130,10 @@
<field name="description" title="${uiLabelMap.CommonDescription}"/>
<field name="submitButton" title="Lookup" widget-style="smallSubmit"><submit button-type="button"/></field>
</form>
- <form name="LookupListExampleFeature" list-iterator-name="listIt" paginate-target="LookupExampleFeature" title="" type="list"
+ <form name="LookupListExampleFeature" list-name="listIt" paginate-target="LookupExampleFeature" title="" type="list"
default-title-style="tableheadtext" default-tooltip-style="tabletext" default-widget-style="tabletext">
<actions>
- <service service-name="performFind" result-map-name="result" result-map-list-iterator-name="listIt">
+ <service service-name="performFind" result-map-name="result" result-map-list-name="listIt">
<field-map field-name="inputFields" env-name="parameters"/>
<field-map field-name="orderBy" value="description"/>
<field-map field-name="entityName" value="ExampleFeature"/>
More information about the Svn
mailing list