Author: buscob
Date: Sat Feb 14 14:35:56 2009 New Revision: 744502 URL: http://svn.apache.org/viewvc?rev=744502&view=rev Log: Added webSiteId definition for every webapp. This will be used to link online help pages to OFBiz screens. The webSiteId will also be used to associate VisualThemeSets to webapps. Modified: ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/web.xml ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/web.xml ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/web.xml ofbiz/trunk/applications/humanres/webapp/humanres/WEB-INF/web.xml ofbiz/trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/web.xml ofbiz/trunk/applications/marketing/webapp/marketing/WEB-INF/web.xml ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/web.xml ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/web.xml ofbiz/trunk/applications/product/webapp/catalog/WEB-INF/web.xml ofbiz/trunk/applications/product/webapp/facility/WEB-INF/web.xml ofbiz/trunk/applications/workeffort/webapp/ical/WEB-INF/web.xml ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/web.xml ofbiz/trunk/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml ofbiz/trunk/specialpurpose/assetmaint/webapp/ismgr/WEB-INF/web.xml ofbiz/trunk/specialpurpose/ebay/webapp/ebay/WEB-INF/web.xml ofbiz/trunk/specialpurpose/googlebase/webapp/googlebase/WEB-INF/web.xml ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/web.xml ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/web.xml ofbiz/trunk/specialpurpose/shark/webapp/shark/WEB-INF/web.xml Modified: ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Accounting Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>ACCOUNTING</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -19,6 +19,12 @@ <web-app> <display-name>Open For Business - Account Payable</display-name> <description>Accounting Payable Module of the Open For Business Project</description> + + <context-param> + <param-name>webSiteId</param-name> + <param-value>ACCOUNTING_P</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> @@ -88,4 +94,4 @@ <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> </welcome-file-list> -</web-app> \ No newline at end of file +</web-app> Modified: ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Accounting Receivable Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>ACCOUNTING_R</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> @@ -97,4 +102,4 @@ <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> </welcome-file-list> -</web-app> \ No newline at end of file +</web-app> Modified: ofbiz/trunk/applications/humanres/webapp/humanres/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/webapp/humanres/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/humanres/webapp/humanres/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/humanres/webapp/humanres/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>HumanRes Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>HR</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/manufacturing/webapp/manufacturing/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Manufacturing Manager Module by TAU Informatica srl</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>MANUFACTURING</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/marketing/webapp/marketing/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/webapp/marketing/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/marketing/webapp/marketing/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/marketing/webapp/marketing/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Marketing Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>MARKETING</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/marketing/webapp/sfa/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>SFA Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>SFA</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/party/webapp/partymgr/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Party Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>PARTY</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/product/webapp/catalog/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/catalog/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/product/webapp/catalog/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/product/webapp/catalog/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Catalog Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>PRODCATALOG</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/product/webapp/facility/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/webapp/facility/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/product/webapp/facility/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/product/webapp/facility/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Facility Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>FACILITY</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/workeffort/webapp/ical/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/webapp/ical/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/webapp/ical/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/workeffort/webapp/ical/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>iCalendar Server Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>ICAL</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/web.xml (original) +++ ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -25,6 +25,11 @@ <description>Work Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>WORKEFFORT</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/assetmaint/webapp/assetmaint/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>Asset Management component of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>ASSETMAINT</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/specialpurpose/assetmaint/webapp/ismgr/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/webapp/ismgr/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/assetmaint/webapp/ismgr/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/assetmaint/webapp/ismgr/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>Information Systems Management application of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>ISMGR</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/specialpurpose/ebay/webapp/ebay/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebay/webapp/ebay/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/ebay/webapp/ebay/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/ebay/webapp/ebay/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>eBay component of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>EBAY</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/specialpurpose/googlebase/webapp/googlebase/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlebase/webapp/googlebase/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/googlebase/webapp/googlebase/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/googlebase/webapp/googlebase/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>Google Base component of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>GOOGLEBASE</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/hhfacility/webapp/hhfacility/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>Facility Handheld Application</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>HHFACILITY</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>localDispatcherName</param-name> <param-value>hhfacility</param-value> <description>A unique name used to identify/recognize the local dispatcher for the Service Engine</description> Modified: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>Oagis Implementation component of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>OAGIS</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/projectmgr/webapp/projectmgr/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>Project Management component of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>PROJECTMGR</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> Modified: ofbiz/trunk/specialpurpose/shark/webapp/shark/WEB-INF/web.xml URL: http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/shark/webapp/shark/WEB-INF/web.xml?rev=744502&r1=744501&r2=744502&view=diff ============================================================================== --- ofbiz/trunk/specialpurpose/shark/webapp/shark/WEB-INF/web.xml (original) +++ ofbiz/trunk/specialpurpose/shark/webapp/shark/WEB-INF/web.xml Sat Feb 14 14:35:56 2009 @@ -24,6 +24,11 @@ <description>Workflow Manager Module of the Open For Business Project</description> <context-param> + <param-name>webSiteId</param-name> + <param-value>SHARK</param-value> + <description>A unique ID used to look up the WebSite entity to get information about catalogs, etc.</description> + </context-param> + <context-param> <param-name>entityDelegatorName</param-name> <param-value>default</param-value> <description>The Name of the Entity Delegator to use, defined in entityengine.xml</description> |
Free forum by Nabble | Edit this page |