Author: jleroux
Date: Tue Sep 13 16:02:31 2016 New Revision: 1760566 URL: http://svn.apache.org/viewvc?rev=1760566&view=rev Log: Completes: (no functionnal change) remove the ToirtoiseSvn template to avoid confusion for other possible users of ToirtoiseSvn. I keep my local change, not a bid deal, to be revisited... Modified: ofbiz/trunk/ (props changed) ofbiz/trunk/applications/accounting/lib/README ofbiz/trunk/applications/content/widget/content/ContentForms.xml ofbiz/trunk/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/bom/BOMNode.java ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityListIterator.java Propchange: ofbiz/trunk/ ('tsvn:logtemplatecommit' removed) Modified: ofbiz/trunk/applications/accounting/lib/README URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/lib/README?rev=1760566&r1=1760565&r2=1760566&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/lib/README (original) +++ ofbiz/trunk/applications/accounting/lib/README Tue Sep 13 16:02:31 2016 @@ -1,3 +1,22 @@ +##################################################################### +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +##################################################################### + To use the cybersource or worldpay or securepay libraries you can copy them to this directory. See the ofbiz/OPTIONAL_LIBRARIES file for more information. Modified: ofbiz/trunk/applications/content/widget/content/ContentForms.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/content/ContentForms.xml?rev=1760566&r1=1760565&r2=1760566&view=diff ============================================================================== --- ofbiz/trunk/applications/content/widget/content/ContentForms.xml (original) +++ ofbiz/trunk/applications/content/widget/content/ContentForms.xml Tue Sep 13 16:02:31 2016 @@ -232,7 +232,7 @@ under the License. <form name="EditContentAssoc" target="updateContentAssoc" title="" type="single" header-row-style="header-row" default-table-style="basic-table"> <actions> - <entity-one entity-name="ContentAssoc" use-cache="true"> + <entity-one entity-name="ContentAssoc" use-cache="true" value-field=""> <field-map from-field="contentId" field-name="contentId"/> <field-map from-field="contentIdTo" field-name="contentIdTo"/> <field-map from-field="contentAssocTypeId" field-name="contentAssocTypeId"/> Modified: ofbiz/trunk/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/bom/BOMNode.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/bom/BOMNode.java?rev=1760566&r1=1760565&r2=1760566&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/bom/BOMNode.java (original) +++ ofbiz/trunk/applications/manufacturing/src/main/java/org/apache/ofbiz/manufacturing/bom/BOMNode.java Tue Sep 13 16:02:31 2016 @@ -292,7 +292,7 @@ public class BOMNode { variantProduct = variantProducts.get(0); } } catch (GenericServiceException e) { - if (Debug.infoOn()) Debug.logInfo("Error calling getProductVariant service " + e.getMessage(), module); + Debug.logError("Error calling getProductVariant service " + e.getMessage(), module); } if (variantProduct != null) { newNode = new BOMNode(variantProduct, dispatcher, userLogin); @@ -433,7 +433,7 @@ public class BOMNode { this.quantity = calcQuantity; } } catch (GenericServiceException e) { - + Debug.logError(e, "Problem calling the " + serviceName + " service (called by the createManufacturingOrder service)", module); } } else { this.quantity = quantity.multiply(quantityMultiplier).multiply(scrapFactor); @@ -573,7 +573,7 @@ public class BOMNode { } } } catch (GenericEntityException e) { - + Debug.logError(e, "Problem calling the getManufacturingComponents service", module); } } return UtilMisc.toMap("productionRunId", productionRunId, "endDate", endDate); Modified: ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityListIterator.java URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityListIterator.java?rev=1760566&r1=1760565&r2=1760566&view=diff ============================================================================== --- ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityListIterator.java (original) +++ ofbiz/trunk/framework/entity/src/main/java/org/apache/ofbiz/entity/util/EntityListIterator.java Tue Sep 13 16:02:31 2016 @@ -44,7 +44,7 @@ import org.apache.ofbiz.entity.model.Mod /** * Generic Entity Cursor List Iterator for Handling Cursored DB Results */ -public class EntityListIterator implements ListIterator<GenericValue> { +public class EntityListIterator implements AutoCloseable, ListIterator<GenericValue> { /** Module Name Used for debugging */ public static final String module = EntityListIterator.class.getName(); |
Free forum by Nabble | Edit this page |