Author: ashish
Date: Mon Jun 27 08:04:29 2016 New Revision: 1750304 URL: http://svn.apache.org/viewvc?rev=1750304&view=rev Log: Applied patch from jira issue -OFBIZ-7573 - Remove unused import related to HtmlFormWrapper and unused file using it. Thanks Ravi for the contribution. Removed: ofbiz/trunk/applications/product/groovyScripts/catalog/config/EditProductConfigOptions.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/FormPrep.groovy Modified: ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ProductionRunDeclaration.groovy ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ShowProductionRun.groovy ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipment.groovy ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipmentPlan.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/content/Mrv.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentAddPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/CurrentValPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/EditAddPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/HtmlAreaPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/NodeTrailPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/OwnerContentPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PermPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PubInit.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/RespondPermAndPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ResponsePrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ViewPrep.groovy ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/includes/MruAdd.groovy Modified: ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ProductionRunDeclaration.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ProductionRunDeclaration.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ProductionRunDeclaration.groovy (original) +++ ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ProductionRunDeclaration.groovy Mon Jun 27 08:04:29 2016 @@ -22,7 +22,6 @@ import org.ofbiz.entity.util.EntityUtil; import org.ofbiz.entity.GenericValue; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.manufacturing.jobshopmgt.ProductionRun; productionRunId = parameters.productionRunId ?: parameters.workEffortId; Modified: ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ShowProductionRun.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ShowProductionRun.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ShowProductionRun.groovy (original) +++ ofbiz/trunk/applications/manufacturing/groovyScripts/jobshopmgt/ShowProductionRun.groovy Mon Jun 27 08:04:29 2016 @@ -25,7 +25,6 @@ import org.ofbiz.entity.util.EntityUtil; import org.ofbiz.base.util.*; import org.ofbiz.base.util.Debug; import org.ofbiz.base.util.UtilValidate; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.manufacturing.jobshopmgt.ProductionRun; delegator = request.getAttribute("delegator"); Modified: ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipment.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipment.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipment.groovy (original) +++ ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipment.groovy Mon Jun 27 08:04:29 2016 @@ -18,7 +18,6 @@ */ import org.ofbiz.entity.condition.* -import org.ofbiz.widget.renderer.html.HtmlFormWrapper shipmentId = parameters.shipmentId; shipment = from("Shipment").where("shipmentId", shipmentId).queryOne(); Modified: ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipmentPlan.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipmentPlan.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipmentPlan.groovy (original) +++ ofbiz/trunk/applications/product/groovyScripts/facility/shipment/EditShipmentPlan.groovy Mon Jun 27 08:04:29 2016 @@ -17,7 +17,6 @@ * under the License. */ -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.entity.condition.EntityCondition; shipmentId = request.getParameter("shipmentId"); Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/content/Mrv.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/content/Mrv.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/content/Mrv.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/content/Mrv.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.base.util.collections.LifoSet; import javax.servlet.*; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentAddPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentAddPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentAddPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentAddPrep.groovy Mon Jun 27 08:04:29 2016 @@ -31,7 +31,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.securityext.login.*; import org.ofbiz.common.*; import org.ofbiz.entity.model.*; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ContentPrep.groovy Mon Jun 27 08:04:29 2016 @@ -23,8 +23,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; -import org.ofbiz.content.data.DataResourceWorker; import org.ofbiz.webapp.ftl.FreeMarkerViewHandler; import org.ofbiz.content.content.ContentWorker; import org.ofbiz.content.ContentManagementWorker; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/CurrentValPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/CurrentValPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/CurrentValPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/CurrentValPrep.groovy Mon Jun 27 08:04:29 2016 @@ -31,7 +31,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.content.ContentManagementWorker; import javax.servlet.*; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/EditAddPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/EditAddPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/EditAddPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/EditAddPrep.groovy Mon Jun 27 08:04:29 2016 @@ -31,7 +31,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.securityext.login.*; import org.ofbiz.common.*; import org.ofbiz.entity.model.*; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/HtmlAreaPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/HtmlAreaPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/HtmlAreaPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/HtmlAreaPrep.groovy Mon Jun 27 08:04:29 2016 @@ -22,7 +22,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.content.data.DataResourceWorker; import org.ofbiz.webapp.ftl.FreeMarkerViewHandler; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/NodeTrailPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/NodeTrailPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/NodeTrailPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/NodeTrailPrep.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.securityext.login.*; import org.ofbiz.common.*; import org.ofbiz.entity.model.*; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/OwnerContentPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/OwnerContentPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/OwnerContentPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/OwnerContentPrep.groovy Mon Jun 27 08:04:29 2016 @@ -22,7 +22,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.content.data.DataResourceWorker; import org.ofbiz.webapp.ftl.FreeMarkerViewHandler; import org.ofbiz.content.content.ContentWorker; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PermPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PermPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PermPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PermPrep.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.content.content.PermissionRecorder; import org.ofbiz.content.ContentManagementWorker; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PubInit.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PubInit.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PubInit.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/PubInit.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; import org.ofbiz.webapp.website.WebSiteWorker; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.securityext.login.*; import org.ofbiz.common.*; import org.ofbiz.entity.model.*; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/RespondPermAndPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/RespondPermAndPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/RespondPermAndPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/RespondPermAndPrep.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.content.content.PermissionRecorder; import javax.servlet.*; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ResponsePrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ResponsePrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ResponsePrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ResponsePrep.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.securityext.login.*; import org.ofbiz.common.*; import org.ofbiz.content.content.ContentWorker; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ViewPrep.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ViewPrep.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ViewPrep.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/forum/ViewPrep.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.securityext.login.*; import org.ofbiz.common.*; import org.ofbiz.content.content.ContentWorker; Modified: ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/includes/MruAdd.groovy URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/includes/MruAdd.groovy?rev=1750304&r1=1750303&r2=1750304&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/includes/MruAdd.groovy (original) +++ ofbiz/trunk/specialpurpose/ecommerce/groovyScripts/includes/MruAdd.groovy Mon Jun 27 08:04:29 2016 @@ -32,7 +32,6 @@ import org.ofbiz.entity.*; import org.ofbiz.security.*; import org.ofbiz.service.*; import org.ofbiz.entity.model.*; -import org.ofbiz.widget.renderer.html.HtmlFormWrapper; import org.ofbiz.content.ContentManagementWorker; import org.ofbiz.content.content.ContentWorker; import org.ofbiz.base.util.collections.LifoSet; |
Free forum by Nabble | Edit this page |