atom feed2 messages in org.apache.ofbiz.devRe: svn commit: r1328522 - in /ofbiz/...
FromSent OnAttachments
Adrian CrumApr 21, 2012 1:53 am 
Jacques Le RouxApr 21, 2012 4:25 am 
Subject:Re: svn commit: r1328522 - in /ofbiz/trunk/specialpurpose: ./ example/ example/webapp/exampleext/ example/webapp/exampleext/WEB-INF/ example/widget/exampleext/ exampleext/
From:Adrian Crum (adri@sandglass-software.com)
Date:Apr 21, 2012 1:53:24 am
List:org.apache.ofbiz.dev

Why is this being done? The exampleext component is intended to demonstrate how a component can be extended easily. Merging the two defeats that purpose.

-Adrian

On 4/20/2012 10:55 PM, erw@apache.org wrote:

Author: erwan Date: Fri Apr 20 21:55:33 2012 New Revision: 1328522

URL: http://svn.apache.org/viewvc?rev=1328522&view=rev Log: Merging exampleext in example application

Added: ofbiz/trunk/specialpurpose/example/webapp/exampleext/ - copied from r1328503,
ofbiz/trunk/specialpurpose/exampleext/webapp/exampleext/ ofbiz/trunk/specialpurpose/example/widget/exampleext/ - copied from r1328503,
ofbiz/trunk/specialpurpose/exampleext/widget/example/ Removed: ofbiz/trunk/specialpurpose/exampleext/ Modified: ofbiz/trunk/specialpurpose/component-load.xml ofbiz/trunk/specialpurpose/example/ofbiz-component.xml ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/controller.xml ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/web.xml ofbiz/trunk/specialpurpose/example/widget/exampleext/CommonScreens.xml ofbiz/trunk/specialpurpose/example/widget/exampleext/ExampleScreens.xml

Modified: ofbiz/trunk/specialpurpose/component-load.xml URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/component-load.xml?rev=1328522&r1=1328521&r2=1328522&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/component-load.xml (original) +++ ofbiz/trunk/specialpurpose/component-load.xml Fri Apr 20 21:55:33 2012 @@ -38,7 +38,6 @@ under the License. <load-component component-location="ldap"/> <load-component component-location="webpos"/> <load-component component-location="example"/> -<load-component component-location="exampleext"/> <!-- The component below are not maintained by the community, or at least
not very actively Still they are functional (or at least should be). So if you need them simply uncomment and have a look also in the build
file -->

Modified: ofbiz/trunk/specialpurpose/example/ofbiz-component.xml URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/ofbiz-component.xml?rev=1328522&r1=1328521&r2=1328522&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/example/ofbiz-component.xml (original) +++ ofbiz/trunk/specialpurpose/example/ofbiz-component.xml Fri Apr 20 21:55:33
2012 @@ -59,6 +59,15 @@ under the License. location="webapp/example" base-permission="OFBTOOLS,EXAMPLE" mount-point="/example"/> + +<webapp name="exampleext" + title="ExampleExt" + menu-name="secondary" + server="default-server" + location="webapp/exampleext" + base-permission="OFBTOOLS,EXAMPLE" + mount-point="/exampleext"/> + <webapp name="birt" title="BIRT" server="default-server"

Modified:
ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/controller.xml URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/controller.xml?rev=1328522&r1=1328503&r2=1328522&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/controller.xml
(original) +++ ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/controller.xml
Fri Apr 20 21:55:33 2012 @@ -24,5 +24,5 @@ under the License.

<description>Extended Catalog Manager Controller Configuration
File</description>

-<view-map name="EditExample" type="screen"
page="component://exampleext/widget/example/ExampleScreens.xml#EditExampleExt"/> +<view-map name="EditExample" type="screen"
page="component://example/widget/exampleext/ExampleScreens.xml#EditExampleExt"/> </site-conf>

Modified: ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/web.xml URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/web.xml?rev=1328522&r1=1328503&r2=1328522&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/web.xml
(original) +++ ofbiz/trunk/specialpurpose/example/webapp/exampleext/WEB-INF/web.xml Fri Apr
20 21:55:33 2012 @@ -33,7 +33,7 @@ under the License. </context-param> <context-param> <param-name>mainDecoratorLocation</param-name> -<param-value>component://exampleext/widget/example/CommonScreens.xml</param-value> +<param-value>component://example/widget/exampleext/CommonScreens.xml</param-value> <description>The location of the main-decorator screen to use for this
webapp; referred to as a context variable in screen def XML files.</description> </context-param>

Modified: ofbiz/trunk/specialpurpose/example/widget/exampleext/CommonScreens.xml URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/exampleext/CommonScreens.xml?rev=1328522&r1=1328503&r2=1328522&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/example/widget/exampleext/CommonScreens.xml
(original) +++ ofbiz/trunk/specialpurpose/example/widget/exampleext/CommonScreens.xml Fri
Apr 20 21:55:33 2012 @@ -50,7 +50,7 @@ under the License. </and> </condition> <widgets> -<include-menu name="EditExample"
location="component://exampleext/widget/example/ExampleMenus.xml"/> +<include-menu name="EditExample"
location="component://example/widget/exampleext/ExampleMenus.xml"/> </widgets> </section> </decorator-section>

Modified:
ofbiz/trunk/specialpurpose/example/widget/exampleext/ExampleScreens.xml URL:
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/exampleext/ExampleScreens.xml?rev=1328522&r1=1328503&r2=1328522&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/example/widget/exampleext/ExampleScreens.xml
(original) +++ ofbiz/trunk/specialpurpose/example/widget/exampleext/ExampleScreens.xml Fri
Apr 20 21:55:33 2012 @@ -33,7 +33,7 @@ under the License. <widgets> <decorator-screen name="CommonExampleDecorator"
location="${parameters.mainDecoratorLocation}"> <decorator-section name="body"> -<include-form name="EditExampleExt"
location="component://exampleext/widget/example/ExampleForms.xml"/> +<include-form name="EditExampleExt"
location="component://example/widget/exampleext/ExampleForms.xml"/> </decorator-section> </decorator-screen> </widgets>