Author: jleroux
Date: Sat Mar 28 17:36:08 2009 New Revision: 759515 URL: http://svn.apache.org/viewvc?rev=759515&view=rev Log: 10th 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 Some hyperlink tag are still not well indented (3 spaces instead of 4), I gave up :/ Modified: ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml ofbiz/trunk/applications/accounting/webapp/accounting/fixedasset/FixedAssetForms.xml ofbiz/trunk/applications/accounting/webapp/accounting/invoice/InvoiceForms.xml ofbiz/trunk/applications/accounting/widget/GlForms.xml ofbiz/trunk/applications/accounting/widget/GlobalGlAccountsForms.xml ofbiz/trunk/applications/content/webapp/content/cms/CMSForms.xml ofbiz/trunk/applications/content/webapp/content/datasetup/DataSetupForms.xml ofbiz/trunk/applications/content/widget/forum/ForumForms.xml ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml ofbiz/trunk/applications/order/webapp/ordermgr/request/RequestForms.xml ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml ofbiz/trunk/applications/workeffort/widget/WorkEffortQuoteForms.xml ofbiz/trunk/applications/workeffort/widget/WorkEffortRequestForms.xml ofbiz/trunk/framework/webtools/webapp/webtools/tempexpr/tempExprForms.xml ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/content/ContentForms.xml ofbiz/trunk/specialpurpose/ecommerce/widget/blog/BlogForms.xml Modified: ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml (original) +++ ofbiz/trunk/applications/accounting/webapp/accounting/agreement/AgreementForms.xml Sat Mar 28 17:36:08 2009 @@ -164,7 +164,11 @@ <field name="agreementId" title="${uiLabelMap.AccountingAgreementId}"><hidden/></field> <field name="agreementItemSeqId" title="${uiLabelMap.AccountingAgreementItemSeqId}"><hidden/></field> <field name="agreementTermId" title="${uiLabelMap.CommonEdit}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${agreementTermId}" target="EditAgreementItemTerm?agreementTermId=${agreementTermId}&agreementId=${agreementId}&agreementItemSeqId=${agreementItemSeqId}"/> + <hyperlink also-hidden="false" description="${agreementTermId}" target="EditAgreementItemTerm"> + <parameter param-name="agreementTermId" from-field="agreementTermId"/> + <parameter param-name="agreementId" from-field="agreementId"/> + <parameter param-name="agreementItemSeqId" from-field="agreementItemSeqId"/> + </hyperlink> </field> <field name="termTypeId" title="${uiLabelMap.AccountingTermTypeId}"> <display-entity entity-name="TermType"/> @@ -259,7 +263,11 @@ <field name="agreementId" title="${uiLabelMap.AccountingAgreementId}"><hidden/></field> <field name="agreementItemSeqId" title="${uiLabelMap.AccountingAgreementItemSeqId}"><hidden/></field> <field name="productId" title="${uiLabelMap.CommonEdit}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${productId}" target="EditAgreementItemProduct?productId=${productId}&agreementId=${agreementId}&agreementItemSeqId=${agreementItemSeqId}"/> + <hyperlink also-hidden="false" description="${productId}" target="EditAgreementItemProduct"> + <parameter param-name="productId" from-field="productId"/> + <parameter param-name="agreementId" from-field="agreementId"/> + <parameter param-name="agreementItemSeqId" from-field="agreementItemSeqId"/> + </hyperlink> </field> <field name="internalName" entry-name="productId"> <display-entity entity-name="Product" key-field-name="productId" description="${internalName}"/> @@ -460,7 +468,11 @@ <field name="agreementId" title="${uiLabelMap.AccountingAgreementId}"><hidden/></field> <field name="agreementItemSeqId" title="${uiLabelMap.AccountingAgreementItemSeqId}"><hidden/></field> <field name="partyId" title="${uiLabelMap.CommonEdit}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${partyId}" target="EditAgreementItemParty?partyId=${partyId}&agreementId=${agreementId}&agreementItemSeqId=${agreementItemSeqId}"/> + <hyperlink also-hidden="false" description="${partyId}" target="EditAgreementItemParty"> + <parameter param-name="partyId" from-field="partyId"/> + <parameter param-name="agreementId" from-field="agreementId"/> + <parameter param-name="agreementItemSeqId" from-field="agreementItemSeqId"/> + </hyperlink> </field> <field name="partyName" title="${uiLabelMap.PartyName}" entry-name="partyId"> <display-entity entity-name="PartyNameView" key-field-name="partyId" description="${groupName} ${firstName} ${lastName}"/> @@ -548,7 +560,11 @@ <field name="agreementItemSeqId"><display/></field> <field name="workEffortId"><display/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteAgreementWorkEffortAppl?agreementId=${agreementId}&agreementItemSeqId=${agreementItemSeqId}&workEffortId=${workEffortId}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteAgreementWorkEffortAppl"> + <parameter param-name="agreementId" from-field="agreementId"/> + <parameter param-name="agreementItemSeqId" from-field="agreementItemSeqId"/> + <parameter param-name="workEffortId" from-field="workEffortId"/> + </hyperlink> </field> </form> <form name="ListAgreementRoles" list-name="agreementRoles" type="list" paginate-target="FindAgreementRoles" Modified: ofbiz/trunk/applications/accounting/webapp/accounting/fixedasset/FixedAssetForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/fixedasset/FixedAssetForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/webapp/accounting/fixedasset/FixedAssetForms.xml (original) +++ ofbiz/trunk/applications/accounting/webapp/accounting/fixedasset/FixedAssetForms.xml Sat Mar 28 17:36:08 2009 @@ -216,7 +216,11 @@ </drop-down> </field> <field name="cancel" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonCancel}" target="cancelFixedAssetStdCost?fixedAssetId=${fixedAssetId}&fixedAssetStdCostTypeId=${fixedAssetStdCostTypeId}&fromDate=${fromDate}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonCancel}" target="cancelFixedAssetStdCost"> + <parameter param-name="fixedAssetId" from-field="fixedAssetId"/> + <parameter param-name="fixedAssetStdCostTypeId" from-field="fixedAssetStdCostTypeId"/> + <parameter param-name="fromDate" from-field="fromDate"/> + </hyperlink> </field> <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit button-type="button"/></field> </form> Modified: ofbiz/trunk/applications/accounting/webapp/accounting/invoice/InvoiceForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/invoice/InvoiceForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/webapp/accounting/invoice/InvoiceForms.xml (original) +++ ofbiz/trunk/applications/accounting/webapp/accounting/invoice/InvoiceForms.xml Sat Mar 28 17:36:08 2009 @@ -448,7 +448,11 @@ <field name="percentage"><display/></field> <field name="datetimePerformed"><display/></field> <field name="removeButton" widget-style="buttontext"> - <hyperlink description="${uiLabelMap.CommonRemove}" target="removeInvoiceRole?invoiceId=${invoiceId}&partyId=${partyId}&roleTypeId=${roleTypeId}"/> + <hyperlink description="${uiLabelMap.CommonRemove}" target="removeInvoiceRole"> + <parameter param-name="invoiceId" from-field="invoiceId"/> + <parameter param-name="partyId" from-field="partyId"/> + <parameter param-name="roleTypeId" from-field="roleTypeId"/> + </hyperlink> </field> </form> <form name="EditInvoiceRole" type="single" target="createInvoiceRole" title="" Modified: ofbiz/trunk/applications/accounting/widget/GlForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/GlForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/widget/GlForms.xml (original) +++ ofbiz/trunk/applications/accounting/widget/GlForms.xml Sat Mar 28 17:36:08 2009 @@ -584,7 +584,11 @@ <field name="amount"><display type="currency" currency="${currencyUomId}"/></field> <field name="updateButton" title="${uiLabelMap.CommonUpdate}"><submit button-type="button"/></field> <field name="removeButton" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink description="${uiLabelMap.CommonRemove}" target="deleteAcctgTransEntry?acctgTransId=${acctgTransId}&acctgTransEntrySeqId=${acctgTransEntrySeqId}&organizationPartyId=${organizationPartyId}"/> + <hyperlink description="${uiLabelMap.CommonRemove}" target="deleteAcctgTransEntry"> + <parameter param-name="acctgTransId" from-field="acctgTransId"/> + <parameter param-name="acctgTransEntrySeqId" from-field="acctgTransEntrySeqId"/> + <parameter param-name="organizationPartyId" from-field="organizationPartyId"/> + </hyperlink> </field> </form> <form name="CreateAcctgTrans" type="single" target="createAcctgTrans" Modified: ofbiz/trunk/applications/accounting/widget/GlobalGlAccountsForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/GlobalGlAccountsForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/widget/GlobalGlAccountsForms.xml (original) +++ ofbiz/trunk/applications/accounting/widget/GlobalGlAccountsForms.xml Sat Mar 28 17:36:08 2009 @@ -172,7 +172,11 @@ <form name="ListGlReconciliations" type="list" list-name="glReconciliations" default-entity-name="GlReconciliation" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <field name="glReconciliationId"> - <hyperlink also-hidden="false" description="${glReconciliationId}" target="EditGlReconciliation?glReconciliationId=${glReconciliationId}&amp;organizationPartyId=${organizationPartyId}&amp;glAccountId=${glAccountId}"/> + <hyperlink also-hidden="false" description="${glReconciliationId}" target="EditGlReconciliation"> + <parameter param-name="glReconciliationId" from-field="glReconciliationId"/> + <parameter param-name="organizationPartyId" from-field="organizationPartyId"/> + <parameter param-name="glAccountId" from-field="glAccountId"/> + </hyperlink> </field> <field name="glReconciliationName"><display/></field> <field name="description"><display/></field> Modified: ofbiz/trunk/applications/content/webapp/content/cms/CMSForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/webapp/content/cms/CMSForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/content/webapp/content/cms/CMSForms.xml (original) +++ ofbiz/trunk/applications/content/webapp/content/cms/CMSForms.xml Sat Mar 28 17:36:08 2009 @@ -400,7 +400,11 @@ <form name="searchList" type="list" target="" list-name="queryResults" paginate-target="/AdminSearch" odd-row-style="alternate-row" default-table-style="basic-table hover-bar"> <field name="editContent" title="${uiLabelMap.CommonEmptyHeader}"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="CMSContentEdit?contentId=${contentId}&drDataResourceId=${drDataResourceId}&contentIdTo=${contentIdTo}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="CMSContentEdit"> + <parameter param-name="contentId" from-field="contentId"/> + <parameter param-name="drDataResourceId" from-field="drDataResourceId"/> + <parameter param-name="contentIdTo" from-field="contentIdTo"/> + </hyperlink> </field> <field name="contentId"><display/></field> <field name="dataResourceId"><display/></field> Modified: ofbiz/trunk/applications/content/webapp/content/datasetup/DataSetupForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/webapp/content/datasetup/DataSetupForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/content/webapp/content/datasetup/DataSetupForms.xml (original) +++ ofbiz/trunk/applications/content/webapp/content/datasetup/DataSetupForms.xml Sat Mar 28 17:36:08 2009 @@ -252,7 +252,11 @@ <submit button-type="button"/> </field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="removeMimeTypeHtmlTemplate?mimeTypeId=${mimeTypeId}&dataResourceId=${dataResourceId}&fromDate=${fromDate}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="removeMimeTypeHtmlTemplate"> + <parameter param-name="mimeTypeId" from-field="mimeTypeId"/> + <parameter param-name="dataResourceId" from-field="dataResourceId"/> + <parameter param-name="fromDate" from-field="fromDate"/> + </hyperlink> </field> </form> </forms> \ No newline at end of file Modified: ofbiz/trunk/applications/content/widget/forum/ForumForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/forum/ForumForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/content/widget/forum/ForumForms.xml (original) +++ ofbiz/trunk/applications/content/widget/forum/ForumForms.xml Sat Mar 28 17:36:08 2009 @@ -153,7 +153,14 @@ </hyperlink></field> <field position="6" name="messageText" entry-name="contentData.resultData.electronicText.textData" parameter-name="textData"><textarea rows="8"/></field> <field position="7" name="updateButton" title="${uiLabelMap.CommonUpdate}" widget-style="buttontext"><submit button-type="text-link"/></field> - <field position="8" name="responseButton" title="${uiLabelMap.FormFieldTitle_reponse}" widget-style="buttontext"><hyperlink target="addForumMessage?forumGroupId=${parameters.forumGroupId}&forumId=${parameters.forumId}&forumMessageIdTo=${contentId}&contentAssocTypeId=RESPONSE" description="${uiLabelMap.FormFieldTitle_reponse}"/></field> + <field position="8" name="responseButton" title="${uiLabelMap.FormFieldTitle_reponse}" widget-style="buttontext"> + <hyperlink target="addForumMessage" description="${uiLabelMap.FormFieldTitle_reponse"> + <parameter param-name="forumGroupId" from-field="parameters.forumGroupId"/> + <parameter param-name="forumId" from-field="parameters.forumId"/> + <parameter param-name="forumMessageIdTo" from-field="contentId"/> + <parameter param-name="contentAssocTypeId" value="RESPONSE"/> + <hyperlink> + </field> </form> <form name="EditForumMessage" type="single" target="updateForumMessage" default-map-name="message" Modified: ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml (original) +++ ofbiz/trunk/applications/humanres/widget/forms/PerfReviewForms.xml Sat Mar 28 17:36:08 2009 @@ -43,7 +43,11 @@ </actions> <auto-fields-entity entity-name="PerfReview" default-field-type="display"/> <field name="perfReviewId"> - <hyperlink also-hidden="false" description="${perfReviewId}" target="EditPerfReview?perfReviewId=${perfReviewId}&employeePartyId=${employeePartyId}&employeeRoleTypeId=${employeeRoleTypeId}"/> + <hyperlink also-hidden="false" description="${perfReviewId}" target="EditPerfReview"> + <parameter param-name="perfReviewId" from-field="perfReviewId"/> + <parameter param-name="employeePartyId" from-field="employeePartyId"/> + <parameter param-name="employeeRoleTypeId" from-field="employeeRoleTypeId"/> + </hyperlink> </field> </form> <form name="EditPerfReview" type="single" target="updatePerfReview" title="" default-map-name="perfReview" Modified: ofbiz/trunk/applications/order/webapp/ordermgr/request/RequestForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/request/RequestForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/order/webapp/ordermgr/request/RequestForms.xml (original) +++ ofbiz/trunk/applications/order/webapp/ordermgr/request/RequestForms.xml Sat Mar 28 17:36:08 2009 @@ -444,7 +444,11 @@ </field> <field name="deleteLink" widget-style="buttontext"> - <hyperlink description="${uiLabelMap.CommonDelete}" target="deleteCustRequestItemWorkEffort?custRequestId=${custRequestId}&partyId=${partyId}&roleTypeId=${roleTypeId}"/> + <hyperlink description="${uiLabelMap.CommonDelete}" target="deleteCustRequestItemWorkEffort"> + <parameter param-name="custRequestId" from-field="custRequestId"/> + <parameter param-name="partyId" from-field="partyId"/> + <parameter param-name="roleTypeId" from-field="roleTypeId"/> + </hyperlink> </field> </form> <form name="AddCustRequestItemWorkEffort" type="single" target="createCustRequestItemWorkEffort" title="" @@ -552,7 +556,11 @@ <field name="mimeTypeId"><display/></field> <field name="fromDate"><display/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext" use-when="tabButtonItem.equals("custRequestContent")"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteCustRequestContent?custRequestId=${custRequestId}&contentId=${contentId}&fromDate=${fromDate}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteCustRequestContent"> + <parameter param-name="custRequestId" from-field="custRequestId"/> + <parameter param-name="contentId" from-field="contentId"/> + <parameter param-name="fromDate" from-field="fromDate"/> + </hyperlink> </field> </form> </forms> Modified: ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml (original) +++ ofbiz/trunk/applications/party/webapp/partymgr/communication/CommForms.xml Sat Mar 28 17:36:08 2009 @@ -304,7 +304,11 @@ </row-actions> <field name="communicationEventId"><hidden/></field> <field name="subject"> - <hyperlink description="${subject}" target="View${my}CommunicationEvent?communicationEventId=${communicationEventId}&partyId=${partyId}&roleTypeId=${roleTypeId}"/> + <hyperlink description="${subject}" target="View${my}CommunicationEvent"> + <parameter param-name="communicationEventId" from-field="communicationEventId"/> + <parameter param-name="partyId" from-field="partyId"/> + <parameter param-name="roleTypeId" from-field="roleTypeId"/> + </hyperlink> </field> <field name="communicationEventTypeId" title="${uiLabelMap.CommonType}"><display-entity description="${description}" entity-name="CommunicationEventType" key-field-name="communicationEventTypeId"/></field> <field name="partyIdFrom" title="${uiLabelMap.CommonPartyID} ${uiLabelMap.CommonFrom}"> 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=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml (original) +++ ofbiz/trunk/applications/party/webapp/partymgr/party/PartyForms.xml Sat Mar 28 17:36:08 2009 @@ -585,7 +585,11 @@ <display-entity entity-name="DataResource" description="${dataResourceName}"/> </field> <field name="editLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="smallSubmit"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="EditPartyContents?contentId=${contentId}&partyId=${partyId}&dataResourceId=${dataResourceId}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="EditPartyContents"> + <parameter param-name="contentId" from-field="contentId"/> + <parameter param-name="partyId" from-field="partyId"/> + <parameter param-name="dataResourceId" from-field="dataResourceId"/> + </hyperlink> </field> </form> Modified: ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml (original) +++ ofbiz/trunk/applications/workeffort/widget/WorkEffortForms.xml Sat Mar 28 17:36:08 2009 @@ -486,7 +486,11 @@ <field name="statusId"><display-entity entity-name="StatusItem"/></field> <field name="preferredContactMechId"><display/></field> <field name="editLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="EditWorkEffortParty?workEffortId=${workEffortId}&partyId=${partyId}&fromDate=${fromDate}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="EditWorkEffortParty"> + <parameter param-name="workEffortId" from-field="workEffortId"/> + <parameter param-name="partyId" from-field="partyId"/> + <parameter param-name="fromDate" from-field="fromDate"/> + </hyperlink> </field> </form> <form name="DisplayWorkEffortPartyAssigns" type="list" list-name="partyAssignments" @@ -1036,7 +1040,11 @@ </field> <field name="submitButton" title="${uiLabelMap.CommonUpdate}" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortReview?workEffortId=${workEffortId}&userLoginId=${userLoginId}&reviewDate=${reviewDate}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortReview"> + <parameter param-name="workEffortId" from-field="workEffortId"/> + <parameter param-name="userLoginId" from-field="userLoginId"/> + <parameter param-name="reviewDate" from-field="reviewDate"/> + </hyperlink> </field> </form> <!-- WorkEffortKeyword forms --> @@ -1120,7 +1128,11 @@ <field name="agreementItemSeqId"><display/></field> <field name="workEffortId"><display/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteAgreementWorkEffortAppl?agreementId=${agreementId}&agreementItemSeqId=${agreementItemSeqId}&workEffortId=${workEffortId}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteAgreementWorkEffortAppl"> + <parameter param-name="agreementId" from-field="agreementId"/> + <parameter param-name="agreementItemSeqId" from-field="agreementItemSeqId"/> + <parameter param-name="workEffortId" from-field="workEffortId"/> + </hyperlink> </field> </form> @@ -1160,7 +1172,11 @@ <field name="comments"><text size="60" maxlength="255"/></field> <field name="submitButton" title="${uiLabelMap.CommonSave}" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortFixedAssetAssign?workEffortId=${workEffortId}&fixedAssetId=${fixedAssetId}&fromDate=${fromDate}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortFixedAssetAssign"> + <parameter param-name="workEffortId" from-field="workEffortId"/> + <parameter param-name="fixedAssetId" from-field="fixedAssetId"/> + <parameter param-name="fromDate" from-field="fromDate"/> + </hyperlink> </field> </form> @@ -1224,7 +1240,11 @@ <field name="recurrenceOffset"><text/></field> <field name="submitButton" title="${uiLabelMap.CommonSave}" widget-style="smallSubmit"><submit button-type="button"/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortEventReminder?workEffortId=${workEffortId}&contactMechId=${contactMechId}&sequenceId=${sequenceId}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortEventReminder"> + <parameter param-name="workEffortId" from-field="workEffortId"/> + <parameter param-name="contactMechId" from-field="contactMechId"/> + <parameter param-name="sequenceId" from-field="sequenceId"/> + </hyperlink> </field> </form> Modified: ofbiz/trunk/applications/workeffort/widget/WorkEffortQuoteForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/widget/WorkEffortQuoteForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/widget/WorkEffortQuoteForms.xml (original) +++ ofbiz/trunk/applications/workeffort/widget/WorkEffortQuoteForms.xml Sat Mar 28 17:36:08 2009 @@ -66,7 +66,11 @@ <field name="estimatedDeliveryDate"><display/></field> <field name="comments"><display/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="linktext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortQuoteItem?workEffortId=${workEffortId}&quoteId=${quoteId}&quoteItemSeqId=${quoteItemSeqId}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortQuoteItem"> + <parameter param-name="workEffortId" from-field="workEffortId"/> + <parameter param-name="quoteId" from-field="quoteId"/> + <parameter param-name="quoteItemSeqId" from-field="quoteItemSeqId"/> + </hyperlink> </field> </form> <form name="AddWorkEffortQuoteItem" target="createWorkEffortQuoteItem" title="" type="single" Modified: ofbiz/trunk/applications/workeffort/widget/WorkEffortRequestForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/widget/WorkEffortRequestForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/widget/WorkEffortRequestForms.xml (original) +++ ofbiz/trunk/applications/workeffort/widget/WorkEffortRequestForms.xml Sat Mar 28 17:36:08 2009 @@ -60,7 +60,11 @@ <field name="productId"><display/></field> <field name="description"><display/></field> <field name="deleteLink" title="${uiLabelMap.CommonEmptyHeader}" widget-style="linktext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortRequestItem?workEffortId=${workEffortId}&custRequestId=${custRequestId}&custRequestItemSeqId=${custRequestItemSeqId}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteWorkEffortRequestItem"> + <parameter param-name="workEffortId" from-field="workEffortId"/> + <parameter param-name="custRequestId" from-field="custRequestId"/> + <parameter param-name="custRequestItemSeqId" from-field="custRequestItemSeqId"/> + </hyperlink> </field> </form> <form name="AddWorkEffortRequestItem" target="createWorkEffortRequestItem" title="" type="single" Modified: ofbiz/trunk/framework/webtools/webapp/webtools/tempexpr/tempExprForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/tempexpr/tempExprForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/framework/webtools/webapp/webtools/tempexpr/tempExprForms.xml (original) +++ ofbiz/trunk/framework/webtools/webapp/webtools/tempexpr/tempExprForms.xml Sat Mar 28 17:36:08 2009 @@ -62,7 +62,11 @@ <form name="ListChildExpressions" extends="BasicExpressionList" list-name="childExpressionList" paginate-target="editTemporalExpression?tempExprId=${tempExprId}"> <field name="exprAssocType"><display/></field> <field name="deleteButton" title="${uiLabelMap.CommonEmptyHeader}" widget-style="buttontext"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteTemporalExpressionAssoc?tempExprId=${parameters.tempExprId}&fromTempExprId=${fromTempExprId}&toTempExprId=${tempExprId}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonDelete}" target="deleteTemporalExpressionAssoc"> + <parameter param-name="tempExprId" from-field="parameters.tempExprId"/> + <parameter param-name="fromTempExprId" from-field="fromTempExprId"/> + <parameter param-name="toTempExprId" from-field="tempExprId"/> + </hyperlink> </field> </form> Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml (original) +++ ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml Sat Mar 28 17:36:08 2009 @@ -127,7 +127,11 @@ <field name="comments" position="1" title="${uiLabelMap.CommonComments}"><display/></field> <field name="description" position="1" title="${uiLabelMap.CommonDescription}"><display/></field> <field name="returnPart" title="${uiLabelMap.CommonEmptyHeader}" widget-style="linktext"> - <hyperlink description="${uiLabelMap.CommonReturn}" target="returnPartIssuedToFixedAssetMaint?itemIssuanceId=${itemIssuanceId}&fixedAssetId=${fixedAssetId}&maintHistSeqId=${maintHistSeqId}"/> + <hyperlink description="${uiLabelMap.CommonReturn}" target="returnPartIssuedToFixedAssetMaint"> + <parameter param-name="itemIssuanceId" from-field="itemIssuanceId"/> + <parameter param-name="fixedAssetId" from-field="fixedAssetId"/> + <parameter param-name="maintHistSeqId" from-field="maintHistSeqId"/> + </hyperlink> </field> </form> </forms> Modified: ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/content/ContentForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/content/ContentForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/content/ContentForms.xml (original) +++ ofbiz/trunk/specialpurpose/ecommerce/webapp/ecommerce/content/ContentForms.xml Sat Mar 28 17:36:08 2009 @@ -30,7 +30,11 @@ default-title-style="tableheadtext" default-widget-style="inputBox" default-tooltip-style="tabletext" paginate-target="/AdminSearch"> <field name="editContent" title="${uiLabelMap.CommonEmptyHeader}"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="CMSContentEdit?contentId=${contentId}&drDataResourceId=${drDataResourceId}&contentIdTo=${contentIdTo}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="CMSContentEdit"> + <parameter param-name="contentId" from-field="contentId"/> + <parameter param-name="drDataResourceId" from-field="drDataResourceId"/> + <parameter param-name="contentIdTo" from-field="contentIdTo"/> + </hyperlink> </field> <field name="contentId"><display/></field> <field name="dataResourceId"><display/></field> Modified: ofbiz/trunk/specialpurpose/ecommerce/widget/blog/BlogForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/widget/blog/BlogForms.xml?rev=759515&r1=759514&r2=759515&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/widget/blog/BlogForms.xml (original) +++ ofbiz/trunk/specialpurpose/ecommerce/widget/blog/BlogForms.xml Sat Mar 28 17:36:08 2009 @@ -67,7 +67,11 @@ </actions> <field name="editContent" title="${uiLabelMap.CommonEmptyHeader}"> - <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="CMSContentEdit?contentId=${contentId}&drDataResourceId=${drDataResourceId}&contentIdTo=${contentIdTo}"/> + <hyperlink also-hidden="false" description="${uiLabelMap.CommonEdit}" target="CMSContentEdit"> + <parameter param-name="contentId" from-field="contentId"/> + <parameter param-name="drDataResourceId" from-field="drDataResourceId"/> + <parameter param-name="contentIdTo" from-field="contentIdTo"/> + </hyperlink> </field> <field name="contentId" title="${uiLabelMap.ContentContent}"> <display/> |
Free forum by Nabble | Edit this page |