Author: jleroux Date: Fri Jan 12 14:29:51 2018 New Revision: 1820995 URL: http://svn.apache.org/viewvc?rev=1820995&view=rev Log: Improved: Clean images, among them logos, in all locations used (OFBIZ-10128)
No functional change, but better to keep things consistent Modified: ofbiz/ofbiz-framework/branches/release17.12/applications/accounting/data/OrganizationDemoData.xml ofbiz/ofbiz-framework/branches/release17.12/applications/party/minilang/test/PartyTests.xml Modified: ofbiz/ofbiz-framework/branches/release17.12/applications/accounting/data/OrganizationDemoData.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release17.12/applications/accounting/data/OrganizationDemoData.xml?rev=1820995&r1=1820994&r2=1820995&view=diff ============================================================================== --- ofbiz/ofbiz-framework/branches/release17.12/applications/accounting/data/OrganizationDemoData.xml (original) +++ ofbiz/ofbiz-framework/branches/release17.12/applications/accounting/data/OrganizationDemoData.xml Fri Jan 12 14:29:51 2018 @@ -196,7 +196,7 @@ under the License. <!-- An Enterprise Internal Organization --> <Party partyId="Enterprise" partyTypeId="PARTY_GROUP" statusId="PARTY_ENABLED"/> - <PartyGroup partyId="Enterprise" groupName="Large Enterprise, Inc." logoImageUrl="http://ofbiz.apache.org/images/ofbiz_logo.png"/> + <PartyGroup partyId="Enterprise" groupName="Large Enterprise, Inc." logoImageUrl="/images/ofbiz_logo.png"/> <PartyRole partyId="Enterprise" roleTypeId="INTERNAL_ORGANIZATIO"/> <PartyRole partyId="Enterprise" roleTypeId="PARENT_ORGANIZATION"/> <PartyStatus partyId="Enterprise" statusId="PARTY_ENABLED" statusDate="2001-01-01 12:00:00.0"/> Modified: ofbiz/ofbiz-framework/branches/release17.12/applications/party/minilang/test/PartyTests.xml URL: http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release17.12/applications/party/minilang/test/PartyTests.xml?rev=1820995&r1=1820994&r2=1820995&view=diff ============================================================================== --- ofbiz/ofbiz-framework/branches/release17.12/applications/party/minilang/test/PartyTests.xml (original) +++ ofbiz/ofbiz-framework/branches/release17.12/applications/party/minilang/test/PartyTests.xml Fri Jan 12 14:29:51 2018 @@ -1228,7 +1228,7 @@ under the License. <simple-method method-name="testUpdatePartyGroup" short-description="Test the service to update party group" login-required="false"> <set field="serviceCtx.partyId" value="TestGroup-1"/> <set field="serviceCtx.groupName" value="Test Party Group"/> - <set field="serviceCtx.logoImageUrl" value="http://ofbiz.apache.org/images/ofbiz_logo.png"/> + <set field="serviceCtx.logoImageUrl" value="/images/ofbiz_logo.png"/> <entity-one entity-name="UserLogin" value-field="userLogin"> <field-map field-name="userLoginId" value="system"/> @@ -1241,7 +1241,7 @@ under the License. <assert> <not><if-empty field="partyGroup"/></not> <if-compare field="partyGroup.groupName" operator="equals" value="Test Party Group"/> - <if-compare field="partyGroup.logoImageUrl" operator="equals" value="http://ofbiz.apache.org/images/ofbiz_logo.png"/> + <if-compare field="partyGroup.logoImageUrl" operator="equals" value="/images/ofbiz_logo.png"/> </assert> <check-errors/> </simple-method>