svn commit: r759577 - in /ofbiz/trunk/applications: accounting/widget/TaxAuthorityForms.xml party/webapp/partymgr/party/PartyForms.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r759577 - in /ofbiz/trunk/applications: accounting/widget/TaxAuthorityForms.xml party/webapp/partymgr/party/PartyForms.xml

jleroux@apache.org
Author: jleroux
Date: Sat Mar 28 20:27:01 2009
New Revision: 759577

URL: http://svn.apache.org/viewvc?rev=759577&view=rev
Log:
15th set of changes explained in https://issues.apache.org/jira/browse/OFBIZ-2243
In hyperlink and sub-hyperlink elements, replacement of target parameters by parameter sub-elements

Modified:
    ofbiz/trunk/applications/accounting/widget/TaxAuthorityForms.xml
    ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml

Modified: ofbiz/trunk/applications/accounting/widget/TaxAuthorityForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/TaxAuthorityForms.xml?rev=759577&r1=759576&r2=759577&view=diff
==============================================================================
--- ofbiz/trunk/applications/accounting/widget/TaxAuthorityForms.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/TaxAuthorityForms.xml Sat Mar 28 20:27:01 2009
@@ -38,7 +38,10 @@
         </field>
 
         <field name="taxAuthorityEdit" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext">
-            <hyperlink description="${uiLabelMap.CommonEdit}" target="EditTaxAuthority?taxAuthPartyId=${taxAuthPartyId}&amp;taxAuthGeoId=${taxAuthGeoId}" also-hidden="false"/>
+            <hyperlink description="${uiLabelMap.CommonEdit}" target="EditTaxAuthority" also-hidden="false">
+                <parameter param-name="taxAuthPartyId" from-field="taxAuthPartyId"/>
+                <parameter param-name="taxAuthGeoId" from-field="taxAuthGeoId"/>
+            </hyperlink>
         </field>
     </form>
     

Modified: ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml?rev=759577&r1=759576&r2=759577&view=diff
==============================================================================
--- ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml (original)
+++ ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml Sat Mar 28 20:27:01 2009
@@ -571,7 +571,10 @@
         <field name="contentId"><hidden/></field>
         <field name="contentName">
             <display-entity entity-name="Content" description="${contentName}" key-field-name="contentId">
-                <sub-hyperlink target="EditPartyContents?contentId=${contentId}&amp;amp;partyId=${partyId}" description="${contentId}" link-style="smallSubmit"/>
+                <sub-hyperlink target="EditPartyContents" description="${contentId}" link-style="smallSubmit">
+     <parameter param-name="contentId" from-field="contentId"/>
+     <parameter param-name="partyId" from-field="partyId"/>
+     </sub-hyperlink>
             </display-entity>
         </field>
         <field name="partyContentTypeId"><display-entity entity-name="PartyContentType"/></field>