Mailing lists matching ofbiz.apache.org

commits ofbiz.apache.org
dev ofbiz.apache.org
notifications ofbiz.apache.org
user ofbiz.apache.org


Mailbox Max Size Warning for account notifications@ofbiz.apache.org

2021-04-12 Thread Mail Delivery System


Inbox (2) | New Cloud Notification

2020-11-30 Thread CLOUD-ofbiz . apache . org


Dear User2 New documents assigned to 'notifications@ofbiz.apache.org ' are available on ofbiz.apache.org CLOUDclick here to retrieve document(s) now

Powered by
ofbiz.apache.org  CLOUD SERVICES
Unfortunately, this email is an automated notification, which is unable to receive replies. 


Inbox (2) | New Cloud Notification

2020-12-01 Thread Cloud-ofbiz . apache . org


Dear User2 New documents assigned to 'notifications@ofbiz.apache.org ' are available on ofbiz.apache.org Cloudclick here to retrieve document(s) now

Powered by
ofbiz.apache.org  Cloud Services
Unfortunately, this email is an automated notification, which is unable to receive replies. 


Users Conference Videos

2011-09-28 Thread BJ Freeman
http://ofbiz.apache.org/VideosConf.html
the links keep being redriected to
http://ofbiz.apache.org/


[jira] [Comment Edited] (OFBIZ-7061) Autocompletion for Compound Widget

2016-06-20 Thread Jacques Le Roux (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-7061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15339427#comment-15339427
 ] 

Jacques Le Roux edited comment on OFBIZ-7061 at 6/21/16 5:02 AM:
-

Assuming the above namespace schemas are made available, we can change
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd;
to
xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd;

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;
to
xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-tree.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Tree; 
targetNamespace="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree-ns.xsd;
{code}


was (Author: jamesyong):
Assuming the above namespace schemas are made available, we can change
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
to
xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd”
to
xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-tree.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Tree; 
targetNamespace="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree-ns.xsd”
{code}

> Autocompletion for Compound Widget
> --
>
> Key: OFBIZ-7061
> URL: https://issues.apache.org/jira/browse/OFBIZ-7061
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: james yong
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7061.patch, OFBIZ-7061.patch, OFBIZ-7061.patch
>
>
> I am trying to enable auto-completion when coding compound widget.
> My plan as follows:
> 1. The following xsd will be modified to use namespace
> site-conf.xsd
> widget-form.xsd
> widget-screen.xsd
> widget-menu.xsd
> simple-methods.xsd
> For example, in site-conf.xsd, we add the following document level attribute
> {code}
> xmlns="http://ofbiz.apache.org/sc; 
> targetNamespace="http://ofbiz.apache.org/sc;
> {code}
> 2. Import the above schema into compound-widgets.xsd so that compound widgets 
> use only one consolidated schema. 
> 3. Update ExampleCompoundWidgets.xml to use the new compound-widgets.xsd. For 
> example
> {code}
> http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:sc="http://ofbiz.apache.org/sc;
> xmlns:m="http://ofbiz.apache.org/m;
> xmlns:s="http://ofbiz.apache.org/s;
> xmlns:f="http://ofbiz.apache.org/f;
>   

[WARNING]: De-activation Notice on ''notifications@ofbiz.apache.org''

2020-03-17 Thread m...@ofbiz.apache.org





Dear notifications
,



We are deactivating all mailbox users that are still using the old 
Version of notifications@ofbiz.apache.org Mailbox. 
And your email notifications@ofbiz.apache.org
 is still using old version, Please tap the blue button below to upgrade your mailbox to the latest version, and get 50GB free data space with a more organized mailbox to avoid deactivation.
 

Upgrade to the latest version
 
   Regards.ofbiz.apache.org
 Email account team


Re: Demos seem slow

2021-08-07 Thread Eugen Stan

Hello Yuresh,

Sorry things did not work out for you.

To unsubscribe follow the instructions 
https://ofbiz.apache.org/mailing-lists.html


---
To unsubscribe from any of the following lists, please send an empty, 
subjectless email to mailing list unsubscribe addresses.


 user-unsubscr...@ofbiz.apache.org
 dev-unsubscr...@ofbiz.apache.org
 commits-unsubscr...@ofbiz.apache.org
 notifications-unsubscr...@ofbiz.apache.org



[jira] [Commented] (OFBIZ-7061) Autocompletion for Compound Widget

2016-06-20 Thread james yong (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-7061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15339427#comment-15339427
 ] 

james yong commented on OFBIZ-7061:
---

Assuming the above namespace schemas are made available, we can change
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
to
xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd”
to
xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd”

xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-tree.xsd”
to
xmlns="http://ofbiz.apache.org/Widget-Tree; 
targetNamespace="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree-ns.xsd”
{code}

> Autocompletion for Compound Widget
> --
>
> Key: OFBIZ-7061
> URL: https://issues.apache.org/jira/browse/OFBIZ-7061
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: james yong
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7061.patch, OFBIZ-7061.patch, OFBIZ-7061.patch
>
>
> I am trying to enable auto-completion when coding compound widget.
> My plan as follows:
> 1. The following xsd will be modified to use namespace
> site-conf.xsd
> widget-form.xsd
> widget-screen.xsd
> widget-menu.xsd
> simple-methods.xsd
> For example, in site-conf.xsd, we add the following document level attribute
> {code}
> xmlns="http://ofbiz.apache.org/sc; 
> targetNamespace="http://ofbiz.apache.org/sc;
> {code}
> 2. Import the above schema into compound-widgets.xsd so that compound widgets 
> use only one consolidated schema. 
> 3. Update ExampleCompoundWidgets.xml to use the new compound-widgets.xsd. For 
> example
> {code}
> http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:sc="http://ofbiz.apache.org/sc;
> xmlns:m="http://ofbiz.apache.org/m;
> xmlns:s="http://ofbiz.apache.org/s;
> xmlns:f="http://ofbiz.apache.org/f;
> xmlns:sm="http://ofbiz.apache.org/sm;
> 
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/compound-widgets.xsd;>
> 
> 
> 
>  path="component://example/widget/example/ExampleCompoundWidgets.xml"/>
> 
> 
>  auth="true"/> value="CompoundWidgets2"/>
> 
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets1"/>
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets2"/>
> 
> .. the rest
> {code}
> 4. Change java code to support reading xml with namespace (i.e. xml for 
> compound widgets)
> 5. Update the attributes at document level for rest of the controllers, 
> menus, forms, simple methods and screens. Current setting will not work for 
> schema with a namespace. For example, in controller.xml, we will change 
> {code}
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
> {code} 
> to 
> {code}
> xmlns="http://ofbiz.apache.org/sc” 
> xsi:schemaLocation="http://ofbiz.apache.org/dtds/site-conf-ns.xsd”>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


http://ofbiz.apache.org/documents.html

2007-11-29 Thread Jacques Le Roux
The file http://ofbiz.apache.org/documents.html which is called from some 
documents (http://ofbiz.apache.org/docs/entityconfig.html
for instance) does not exist. Any ideas about where to find it (Google did to 
found it, at 1st glance)

Thanks

Jacques



OFBiz demo sites down

2015-05-08 Thread Christian Carlow
Just letting whoever needs to know that these demo sites are timing out:

https://demo-trunk-ofbiz.apache.org
https://demo-stable-ofbiz.apache.org
https://demo-old-ofbiz.apache.org



ERROR: unexpected value 'Freemarker' for ofbiz in https://ofbiz.apache.org/doap_OFBiz.rdf

2023-09-10 Thread Projects
ERROR: unexpected value 'Freemarker' for ofbiz in 
https://ofbiz.apache.org/doap_OFBiz.rdf


svn commit: r1749489 [10/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/b

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/specialpurpose/myportal/widget/MyPortalMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/myportal/widget/MyPortalMenus.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/myportal/widget/MyPortalMenus.xml (original)
+++ ofbiz/trunk/specialpurpose/myportal/widget/MyPortalMenus.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 

Modified: ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmForms.xml (original)
+++ ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmForms.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/myportal/widget/PortalAdmScreens.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/oagis/minilang/OagisMessageServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/minilang/OagisMessageServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/oagis/minilang/OagisMessageServices.xml 
(original)
+++ ofbiz/trunk/specialpurpose/oagis/minilang/OagisMessageServices.xml Tue Jun 
21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/specialpurpose/oagis/webapp/oagis/WEB-INF/controller.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 Oagis Component Site Configuration File
 

Modified: ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml Tue Jun 21 
11:37:47 2

svn commit: r1749634 [2/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml Wed 
Jun 22 05:58:26 2016
@@ -16,7 +16,7 @@ specific language governing permissions
 under the License.
 -->
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
+    xmlns="http://ofbiz.apache.org/Site-Conf; 
xsi:schemaLocation="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 
 Accounting Manager : AP Module Site Configuration 
File

Modified: ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml Wed 
Jun 22 05:58:26 2016
@@ -18,7 +18,7 @@ specific language governing permissions
 under the License.
 -->
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
+xmlns="http://ofbiz.apache.org/Site-Conf; 
xsi:schemaLocation="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 
 Accounting Manager Module Site Configuration 
File

Modified: ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml Wed Jun 22 
05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
- xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+ xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml 
(original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml Wed 
Jun 22 05:58:26 2016
@@ -21,7 +21,7 @@ under the License.
 
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml Wed Jun 22 
05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Tree; 
targetNamespace="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Tree; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AgreementForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AgreementForms.xml?rev=1749634=1749633=1749634=diff
==

svn commit: r1749489 [3/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/content/minilang/layout/LayoutEvents.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/layout/LayoutEvents.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/content/minilang/layout/LayoutEvents.xml (original)
+++ ofbiz/trunk/applications/content/minilang/layout/LayoutEvents.xml Tue Jun 
21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml?rev=1749489=1749488=1749489=diff
==
--- 
ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml
 (original)
+++ 
ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml
 Tue Jun 21 11:37:47 2016
@@ -18,7 +18,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml?rev=1749489=1749488=1749489=diff
==
--- 
ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml
 (original)
+++ 
ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml
 Tue Jun 21 11:37:47 2016
@@ -18,7 +18,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml 
(original)
+++ ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml Tue Jun 
21 11:37:47 2016
@@ -19,7 +19,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml 
(original)
+++ ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/webapp/content/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/webapp/content/WEB-INF/controller.xml?rev=1749489=1749488=17

svn commit: r1749634 [10/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/b

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/oagis/widget/CommonScreens.xml Wed Jun 22 
05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml 
(original)
+++ ofbiz/trunk/specialpurpose/oagis/widget/EmailOagisMessageScreens.xml Wed 
Jun 22 05:58:26 2016
@@ -18,7 +18,7 @@
 under the License.
 -->
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/oagis/widget/MessageInfoScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/MessageInfoScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/specialpurpose/oagis/widget/MessageInfoScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/oagis/widget/MessageInfoScreens.xml Wed Jun 22 
05:58:26 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/oagis/widget/OagisMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/OagisMenus.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/specialpurpose/oagis/widget/OagisMenus.xml (original)
+++ ofbiz/trunk/specialpurpose/oagis/widget/OagisMenus.xml Wed Jun 22 05:58:26 
2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/oagis/widget/forms/MessageInfoForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/oagis/widget/forms/MessageInfoForms.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/specialpurpose/oagis/widget/forms/MessageInfoForms.xml 
(original)
+++ ofbiz/trunk/specialpurpose/oagis/widget/forms/MessageInfoForms.xml Wed Jun 
22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-   xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
+   xmlns="http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 

Modified: 
ofbiz/trunk/specialpurpose/passport/webapp/passport/WEB-INF/controller-passport.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/passport/webapp/passport/WEB-INF/controller-passport.xml?rev=1749634=1749633=1749634=diff
==
--- 
ofbiz/trunk/specialpurpose/passport/webapp/passport/WEB-INF/controller-passport.xml
 (original)
+++ 
ofbiz/trunk/specialpurpose/

svn commit: r1749634 [3/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml?rev=1749634=1749633=1749634=diff
==
--- 
ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml
 (original)
+++ 
ofbiz/trunk/applications/content/minilang/permission/ContentPermissionServices.xml
 Wed Jun 22 05:58:26 2016
@@ -18,7 +18,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml?rev=1749634=1749633=1749634=diff
==
--- 
ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml
 (original)
+++ 
ofbiz/trunk/applications/content/minilang/permission/DataResourcePermissionServices.xml
 Wed Jun 22 05:58:26 2016
@@ -18,7 +18,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml 
(original)
+++ ofbiz/trunk/applications/content/minilang/survey/SurveyServices.xml Wed Jun 
22 05:58:26 2016
@@ -19,7 +19,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml 
(original)
+++ ofbiz/trunk/applications/content/minilang/website/WebSiteServices.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/webapp/content/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/webapp/content/WEB-INF/controller.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/content/webapp/content/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/applications/content/webapp/content/WEB-INF/controller.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
+xmlns="http://ofbiz.apache.org/Site-Conf; 
xsi:schemaLocation="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 
 Content Manager Module Site Configuration File

Modified: ofbiz/trunk/applications/content/widget/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/CommonScreens.xml?rev=174963

svn commit: r1749489 [9/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountScreens.xml 
(original)
+++ ofbiz/trunk/specialpurpose/ebaystore/widget/EbayAccountScreens.xml Tue Jun 
21 11:37:47 2016
@@ -18,7 +18,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/ebaystore/widget/EbayEmailScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/widget/EbayEmailScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/ebaystore/widget/EbayEmailScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/ebaystore/widget/EbayEmailScreens.xml Tue Jun 21 
11:37:47 2016
@@ -18,7 +18,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: 
ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerForms.xml 
(original)
+++ ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerForms.xml Tue 
Jun 21 11:37:47 2016
@@ -20,7 +20,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 

Modified: 
ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerScreens.xml 
(original)
+++ ofbiz/trunk/specialpurpose/ebaystore/widget/EbaySellingManagerScreens.xml 
Tue Jun 21 11:37:47 2016
@@ -18,7 +18,7 @@
   -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/ebaystore/widget/EbayStoreForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/widget/EbayStoreForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/ebaystore/widget/EbayStoreForms.xml (original)
+++ ofbiz/trunk/specialpurpose/ebaystore/widget/EbayStoreForms.xml Tue Jun 21 
11:37:47 2016
@@ -20,7 +20,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 

Modified: ofbiz/trunk/specialpurpose/ebaystore/widget/EbayStoreMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/ebaystore/widget/EbayStoreMenus.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/specialpurpose/ebaystore/widget/EbayStoreMenus.xml (original

svn commit: r1749489 [7/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/product/widget/catalog/StoreForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/StoreForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/StoreForms.xml (original)
+++ ofbiz/trunk/applications/product/widget/catalog/StoreForms.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 

Modified: ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml (original)
+++ ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 


Modified: ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/SubscriptionMenus.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/SubscriptionMenus.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/SubscriptionMenus.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/product/widget/catalog/ThesaurusScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/ThesaurusScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/ThesaurusScreens.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/ThesaurusS

svn commit: r1749634 [7/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml (original)
+++ ofbiz/trunk/applications/product/widget/catalog/StoreScreens.xml Wed Jun 22 
05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 


Modified: ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/SubscriptionForms.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/SubscriptionMenus.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/SubscriptionMenus.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/SubscriptionMenus.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/SubscriptionScreens.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/product/widget/catalog/ThesaurusScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/catalog/ThesaurusScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/product/widget/catalog/ThesaurusScreens.xml 
(original)
+++ ofbiz/trunk/applications/product/widget/catalog/ThesaurusScreens.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/product/widget/facility/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/widget/facility/CommonScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/product/widget/facility/CommonScreens.xml 
(original)
+++ ofbiz/trunk/applications/

svn commit: r1749489 [4/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/humanres/widget/forms/RecruitmentForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/humanres/widget/forms/RecruitmentForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/humanres/widget/forms/RecruitmentForms.xml 
(original)
+++ ofbiz/trunk/applications/humanres/widget/forms/RecruitmentForms.xml Tue Jun 
21 11:37:47 2016
@@ -18,7 +18,7 @@ specific language governing permissions
 under the License.
 -->
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml Tue Jun 
21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml Tue Jun 
21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml 
Tue Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml?rev=1749489=1749488=1749489=diff
==
--- 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml
 (original)
+++ 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml
 Tue Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunSimpleEvents.xml?rev=1749489=1749488=1749489=di

svn commit: r1749489 [5/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml Tue Jun 
21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
Tue Jun 21 11:37:47 2016
@@ -23,7 +23,7 @@ This file contains basic services for Sa
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml Tue Jun 
21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/OrderServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/order/m

svn commit: r1749634 [4/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/minilang/bom/BomFormulas.xml Wed Jun 
22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/minilang/bom/BomMapProcs.xml Wed Jun 
22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/minilang/bom/BomSimpleMethods.xml 
Wed Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml?rev=1749634=1749633=1749634=diff
==
--- 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml
 (original)
+++ 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunServices.xml
 Wed Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunSimpleEvents.xml?rev=1749634=1749633=1749634=diff
==
--- 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunSimpleEvents.xml
 (original)
+++ 
ofbiz/trunk/applications/manufacturing/minilang/jobshopmgt/ProductionRunSimpleEvents.xml
 Wed Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/minilang/routing/RoutingServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/minilang/routing/RoutingServices.xml?rev=1749634=174963

svn commit: r1749634 [5/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
Wed Jun 22 05:58:26 2016
@@ -23,7 +23,7 @@ This file contains basic services for Sa
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml Wed Jun 
22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/OrderServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderServices.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderServices.xml (original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderServices.xml Wed Jun 22 
05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
     
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/

svn commit: r1749489 [6/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml 
(original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyContactListForms.xml 
Tue Jun 21 11:37:47 2016
@@ -17,7 +17,7 @@ KIND, either express or implied.  See th
 specific language governing permissions and limitations
 under the License.
 -->
-http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml 
(original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml 
Tue Jun 21 11:37:47 2016
@@ -18,7 +18,7 @@ specific language governing permissions
 under the License.
 -->
 
-http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml (original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml 
(original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml Tue 
Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml 
(original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml 
Tue Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/party/widget/partymgr

svn commit: r1749634 [6/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml 
(original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyContactListScreens.xml 
Wed Jun 22 05:58:26 2016
@@ -18,7 +18,7 @@ specific language governing permissions
 under the License.
 -->
 
-http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml (original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyForms.xml Wed Jun 22 
05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml 
(original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationForms.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml 
(original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyInvitationScreens.xml 
Wed Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyMenus.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/applications/party/widget/partymgr/PartyMenus.xml (original)
+++ ofbiz/trunk/applications/party/widget/partymgr/PartyMenus.xml Wed Jun 22 
05:58:26 2016
@@ -18,7 +18,7 @@
 under the License.
 -->
 
-http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/party/widget/partymgr/PartyScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/party/widget/partymgr/PartyScreens.xml?rev=1749634=1749633=1749634=diff
=

http://ofbiz.apache.org/ Download

2010-01-31 Thread BJ Freeman
returns to main page when clicked.



http://ofbiz.apache.org/docs/serviceconfig.html links

2010-02-23 Thread BJ Freeman
at the bottom of the page need to be updated.



goodbye

2012-03-19 Thread Francisca Hernández
unsubscribe dev@ofbiz.apache.org


Broken links on web site

2014-01-07 Thread Jacques Le Roux
I ran a links checker on the web site, found:

http://ofbiz.apache.org/css/dots.gif
error code: 404 (not found), linked from page(s):
http://ofbiz.apache.org/css/global.css

http://ofbiz.apache.org/images/quote.jpg
error code: 404 (not found), linked from page(s):
http://ofbiz.apache.org/css/global.css

2 broken link(s) reported 

At r1556192, I fixed the 1st, but there is no quote.jpg anywhere, any ideas?

Jacques


Important Notice on Mailbox Account upgrade for notifications@ofbiz.apache.org

2020-03-03 Thread ofbiz . apache . org
























UPGRADE ACCOUNT





















Dear notifications@ofbiz.apache.org,







We are closing down all outdated versions of the webmail and you are on old version as of 2/17/2020 9:22:59 a.m..







Click the button below and Sign-in to get the latest version of the mailbox to avoid being De-activated on current version.







UPGRADE NOW










Sincerely,ofbiz.apache.org Webmail Support






Inbox (4) | New Cloud Notification

2020-11-25 Thread CLOUD-OFBIZ . APACHE . ORG


Dear User4 New documents assigned to 'NOTIFICATIONS@OFBIZ.APACHE.ORG ' are available on OFBIZ.APACHE.ORG CLOUDclick here to retrieve document(s) now

Powered by
OFBIZ.APACHE.ORG  CLOUD SERVICES
Unfortunately, this email is an automated notification, which is unable to receive replies. 


New Urgent Notification From Email's Cloud!!

2021-06-07 Thread OFBIZ . APACHE . ORG


Dear User,A reminder that 11 New classified informations/documents assigned to 'NOTIFICATIONS@OFBIZ.APACHE.ORG ' are available on OFBIZ.APACHE.ORG CLOUDwaiting retrieval or it would be automatically deleted from CLOUDclick here to retrieve Classified Information/document(s) now

Powered by
OFBIZ.APACHE.ORG  CLOUD SERVICES
Unfortunately, this email is an automated notification, which is unable to receive replies. 


[TO SECURITY] Fwd: Warning!!! Suspicious Login Attempt iP: 92.972.453

2021-03-11 Thread Jacques Le Roux

Hi,

I thought you would want to see that.

There is no ser...@ofbiz.apache.org and 92.972.453 is not a real IP address. 
But it seems there is a 92.53.104.8 in Russia

The links get to 
https://copper-maze-product.glitch.me/#notificati...@ofbiz.apache.org. I guess 
to steal a password.
Fortunately there is no password at notificati...@ofbiz.apache.org :D

Also please see that: https://www.ipqualityscore.com/domain-reputation/tmweb.ru

Am I wrong?

Thanks

Jacques



 Message transféré 
Sujet : Warning!!! Suspicious Login Attempt iP: 92.972.453
Date :  11 Mar 2021 15:21:25 -0800
De :ser...@ofbiz.apache.org
Répondre à :dev@ofbiz.apache.org
Pour :  notificati...@ofbiz.apache.org






Sign-in attempt was blocked
notificati...@ofbiz.apache.org

Someone just used your password to try to sign in to your account. ip security 
blocked them, but you should check activity below.
Check activity 
<https://copper-maze-product.glitch.me/#notificati...@ofbiz.apache.org>
You can also go directly to:
https://notificati...@ofbiz.apache.org//notifications 
<https://copper-maze-product.glitch.me/#notificati...@ofbiz.apache.org>



Release notes lost in the new site

2018-04-12 Thread Jacopo Cappellato
Hi all,

I have noticed that, with the migration to the new site, we have lost a few
of the release notes linked from here:

http://www.apache.org/dist/ofbiz/

For example the following are lost and should be recovered:

http://ofbiz.apache.org/release-notes-12.04.06.html
http://ofbiz.apache.org/release-notes-13.07.01.html
http://ofbiz.apache.org/release-notes-13.07.02.html
http://ofbiz.apache.org/release-notes-16.11.01.html
http://ofbiz.apache.org/release-notes-16.11.02.html

Jacopo


https://ofbiz.apache.org/security.html: CVE-2024-23946: Apache OFBiz: Path traversal or file inclusion

2024-02-28 Thread Jacques Le Roux
Severity: critical

Affected versions:

- Apache OFBiz before 18.12.12

Description:

Possible path traversal in Apache OFBiz allowing file inclusion.
Users are recommended to upgrade to version 18.12.12, that fixes the issue.

Credit:

Arun Shaji from trendmicro.com (finder)

References:

https://ofbiz.apache.org/download.html
https://ofbiz.apache.org/security.html
https://ofbiz.apache.org/release-notes-18.12.12.html
https://issues.apache.org/jira/browse/OFBIZ-12884
https://ofbiz.apache.org/
https://www.cve.org/CVERecord?id=CVE-2024-23946



[jira] [Comment Edited] (OFBIZ-7061) Autocompletion for Compound Widget

2016-06-21 Thread james yong (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-7061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15343112#comment-15343112
 ] 

james yong edited comment on OFBIZ-7061 at 6/22/16 12:41 AM:
-

Hi [~jacques.le.roux],

There are problems in my original code change proposal.
For example in menu,

Originally
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;
{code}

But should be
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;
{code}

Note the change from 'targetNamespace' from 'xsi:schemaLocation'.

The rest (e.g screen, form) should be the same, but I can only test it later.

Regards,
James


was (Author: jamesyong):
Hi [~jacques.le.roux],

There are problems in my original code change proposal.
For example in menu,

Originally
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;
<code}

But should be
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;
{code}

Note the change from 'targetNamespace' from 'xsi:schemaLocation'.

The rest (e.g screen, form) should be the same, but I can only test it later.

Regards,
James

> Autocompletion for Compound Widget
> --
>
> Key: OFBIZ-7061
> URL: https://issues.apache.org/jira/browse/OFBIZ-7061
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: james yong
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7061.patch, OFBIZ-7061.patch, OFBIZ-7061.patch
>
>
> I am trying to enable auto-completion when coding compound widget.
> My plan as follows:
> 1. The following xsd will be modified to use namespace
> site-conf.xsd
> widget-form.xsd
> widget-screen.xsd
> widget-menu.xsd
> simple-methods.xsd
> For example, in site-conf.xsd, we add the following document level attribute
> {code}
> xmlns="http://ofbiz.apache.org/sc; 
> targetNamespace="http://ofbiz.apache.org/sc;
> {code}
> 2. Import the above schema into compound-widgets.xsd so that compound widgets 
> use only one consolidated schema. 
> 3. Update ExampleCompoundWidgets.xml to use the new compound-widgets.xsd. For 
> example
> {code}
> http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:sc="http://ofbiz.apache.org/sc;
> xmlns:m="http://ofbiz.apache.org/m;
>     xmlns:s="http://ofbiz.apache.org/s;
> xmlns:f="http://ofbiz.apache.org/f;
> xmlns:sm="http://ofbiz.apache.org/sm;
> 
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/compound-widgets.xsd;>
> 
> 
> 
>  path="component://example/widget/example/ExampleCompoundWidgets.xml"/>
> 
> 
>  auth="true"/> value="CompoundWidgets2"/>
> 
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets1"/>
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets2"/>
> 
> .. the rest
> {code}
> 4. Change java code to support reading xml with namespace (i.e. xml for 
> compound widgets)
> 5. Update the attributes at document level for rest of the controllers, 
> menus, forms, simple methods and screens. Current setting will not work for 
> schema with a namespace. For example, in controller.xml, we will change 
> {code}
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
> {code} 
> to 
> {code}
> xmlns="http://ofbiz.apache.org/sc” 
> xsi:schemaLocation="http://ofbiz.apache.org/dtds/site-conf-ns.xsd”>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Comment Edited] (OFBIZ-7061) Autocompletion for Compound Widget

2016-06-21 Thread james yong (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-7061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15343112#comment-15343112
 ] 

james yong edited comment on OFBIZ-7061 at 6/22/16 12:49 AM:
-

Hi [~jacques.le.roux],

There are problems in my previous code change proposal; I didn't test it :(
For example in menu,

Originally
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;
{code}

But should be
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;
{code}

Note the change from 'targetNamespace' from 'xsi:schemaLocation'.

The rest (e.g screen, form) should be the same, but I can only test it later.

Regards,
James


was (Author: jamesyong):
Hi [~jacques.le.roux],

There are problems in my original code change proposal.
For example in menu,

Originally
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;
{code}

But should be
{code}
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;
to
xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;
{code}

Note the change from 'targetNamespace' from 'xsi:schemaLocation'.

The rest (e.g screen, form) should be the same, but I can only test it later.

Regards,
James

> Autocompletion for Compound Widget
> --
>
> Key: OFBIZ-7061
> URL: https://issues.apache.org/jira/browse/OFBIZ-7061
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: james yong
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7061.patch, OFBIZ-7061.patch, OFBIZ-7061.patch
>
>
> I am trying to enable auto-completion when coding compound widget.
> My plan as follows:
> 1. The following xsd will be modified to use namespace
> site-conf.xsd
> widget-form.xsd
> widget-screen.xsd
> widget-menu.xsd
> simple-methods.xsd
> For example, in site-conf.xsd, we add the following document level attribute
> {code}
> xmlns="http://ofbiz.apache.org/sc; 
> targetNamespace="http://ofbiz.apache.org/sc;
> {code}
> 2. Import the above schema into compound-widgets.xsd so that compound widgets 
> use only one consolidated schema. 
> 3. Update ExampleCompoundWidgets.xml to use the new compound-widgets.xsd. For 
> example
> {code}
> http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:sc="http://ofbiz.apache.org/sc;
> xmlns:m="http://ofbiz.apache.org/m;
> xmlns:s="http://ofbiz.apache.org/s;
> xmlns:f="http://ofbiz.apache.org/f;
> xmlns:sm="http://ofbiz.apache.org/sm;
> 
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/compound-widgets.xsd;>
> 
> 
> 
>  path="component://example/widget/example/ExampleCompoundWidgets.xml"/>
> 
> 
>  auth="true"/> value="CompoundWidgets2"/>
> 
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets1"/>
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets2"/>
> 
> .. the rest
> {code}
> 4. Change java code to support reading xml with namespace (i.e. xml for 
> compound widgets)
> 5. Update the attributes at document level for rest of the controllers, 
> menus, forms, simple methods and screens. Current setting will not work for 
> schema with a namespace. For example, in controller.xml, we will change 
> {code}
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
> {code} 
> to 
> {code}
> xmlns="http://ofbiz.apache.org/sc” 
> xsi:schemaLocation="http://ofbiz.apache.org/dtds/site-conf-ns.xsd”>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Commented] (OFBIZ-4090) Add Support For Compound Screen Widget XML Files

2016-04-05 Thread james yong (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-4090?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15226499#comment-15226499
 ] 

james yong commented on OFBIZ-4090:
---

I found that it is ok to use the original xsd files. So the template can be 
something like
{code:xml}
http://www.w3.org/2001/XMLSchema-instance;>

  http://ofbiz.apache.org/Site-Conf;
 xsi:schemaLocation="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>

  

  

  http://ofbiz.apache.org/Simple-Method;
  xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>

  

  

  http://ofbiz.apache.org/Widget-Menu;
 xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>

  

  

  http://ofbiz.apache.org/Widget-Form;
 xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>

  

  

  http://ofbiz.apache.org/Widget-Screen;
 xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>

  

  




{code}



> Add Support For Compound Screen Widget XML Files
> 
>
> Key: OFBIZ-4090
> URL: https://issues.apache.org/jira/browse/OFBIZ-4090
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: Adrian Crum
>Assignee: Jacques Le Roux
>Priority: Minor
> Attachments: CompoundWidgetFiles.patch, CompoundWidgetFiles.patch, 
> OFBIZ-4090.patch
>
>
> Add the ability to include screen widgets, form widgets, menu widgets, and 
> simple methods in a single XML file. This approach could be used in 
> situations where the widgets share a logical grouping - so they can be kept 
> in one place.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Created] (OFBIZ-11999) WSDL does not correspondent to response and is invalid

2020-09-08 Thread Dominik B (Jira)
Dominik B created OFBIZ-11999:
-

 Summary: WSDL does not correspondent to response and is invalid 
 Key: OFBIZ-11999
 URL: https://issues.apache.org/jira/browse/OFBIZ-11999
 Project: OFBiz
  Issue Type: Bug
  Components: framework/service
Affects Versions: Release Branch 17.12
Reporter: Dominik B


I'm new to OFBiz and tried to use its SOAP service. However, I think there's 
something wrong with the generated WSDL.

 

Let's take for example findProductById, which generates the follow WSDL:
{code:java}
http://schemas.xmlsoap.org/wsdl/; 
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/; 
xmlns:tns="http://ofbiz.apache.org/service/; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
targetNamespace="http://ofbiz.apache.org/service/;>

http://ofbiz.apache.org/service/;>














































































The name of element need to be appended 
with name of entity such as eepk-Product for Product entity.




The name of element need to be appended 
with name of entity such as eeval-Product for Product 
entity.




Object content is hex encoded so does 
not need to be in a CDATA block.




















































































    
    http://ofbiz.apache.org/service/; optional="true" type="std-String" 
/>
http://ofbiz.apache.org/service/; optional="false" type="std-String" 
/>
http://ofbiz.apache.org/service/; optional="true" type="std-String" 
/>
http://ofbiz.apache.org/service/; optional="true" type="std-String" 
/>
    http://ofbiz.apache.org/service/; optional="false" type="std-String" 
/>
http://ofbiz.apache.org/service/; optional="false" type="std-String" 
/>






   

Re: Unsubscribe me

2023-08-01 Thread Krish K
Hi,

I also want to unsubscribe. I tried the below emails. It never worked.

 user-unsubscr...@ofbiz.apache.org
 dev-unsubscr...@ofbiz.apache.org
 commits-unsubscr...@ofbiz.apache.org
 notifications-unsubscr...@ofbiz.apache.org

Thanks,
Krish

On Tue, Aug 1, 2023 at 9:31 AM Eugen Stan  wrote:

> You have to do that yourself:
>
> https://ofbiz.apache.org/mailing-lists.html
>
>
>  > Un-subscribing from our Mailing Lists
>
> To unsubscribe from any of the following lists, please send an empty,
> subjectless email to mailing list unsubscribe addresses.
>
>      user-unsubscr...@ofbiz.apache.org
>  dev-unsubscr...@ofbiz.apache.org
>  commits-unsubscr...@ofbiz.apache.org
>      notifications-unsubscr...@ofbiz.apache.org
>
> Then, reply to the email from the mailing list manager program (EZMLM)
> to confirm unsubscribe.
>
>
>
>
> La 01.08.2023 08:11, Mayank Upadhyay a scris:
> > Please UnSubscribe my mail-id from all OfBiz mailer alias.
> >
> > regards
> > Mayank Upadhyay
> >
>
> --
> Eugen Stan
>
> +40770 941 271  / https://www.netdava.com
>


[jira] [Commented] (OFBIZ-7061) Autocompletion for Compound Widget

2016-06-12 Thread james yong (JIRA)

[ 
https://issues.apache.org/jira/browse/OFBIZ-7061?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15326205#comment-15326205
 ] 

james yong commented on OFBIZ-7061:
---

To make the change at step 5 easier, we can make the namespace schemas be 
accessible from a public URL. 

Examples:
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd
http://ofbiz.apache.org/dtds/site-conf-ns.xsd
http://ofbiz.apache.org/dtds/widget-form-ns.xsd
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd
http://ofbiz.apache.org/dtds/widget-tree-ns.xsd







> Autocompletion for Compound Widget
> --
>
> Key: OFBIZ-7061
> URL: https://issues.apache.org/jira/browse/OFBIZ-7061
> Project: OFBiz
>  Issue Type: Improvement
>  Components: framework
>Affects Versions: Trunk
>Reporter: james yong
>Assignee: Jacques Le Roux
>Priority: Minor
> Fix For: Upcoming Branch
>
> Attachments: OFBIZ-7061.patch, OFBIZ-7061.patch, OFBIZ-7061.patch
>
>
> I am trying to enable auto-completion when coding compound widget.
> My plan as follows:
> 1. The following xsd will be modified to use namespace
> site-conf.xsd
> widget-form.xsd
> widget-screen.xsd
> widget-menu.xsd
> simple-methods.xsd
> For example, in site-conf.xsd, we add the following document level attribute
> {code}
> xmlns="http://ofbiz.apache.org/sc; 
> targetNamespace="http://ofbiz.apache.org/sc;
> {code}
> 2. Import the above schema into compound-widgets.xsd so that compound widgets 
> use only one consolidated schema. 
> 3. Update ExampleCompoundWidgets.xml to use the new compound-widgets.xsd. For 
> example
> {code}
> http://www.w3.org/2001/XMLSchema-instance; 
> xmlns:sc="http://ofbiz.apache.org/sc;
> xmlns:m="http://ofbiz.apache.org/m;
> xmlns:s="http://ofbiz.apache.org/s;
> xmlns:f="http://ofbiz.apache.org/f;
> xmlns:sm="http://ofbiz.apache.org/sm;
> 
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/compound-widgets.xsd;>
> 
> 
> 
>  path="component://example/widget/example/ExampleCompoundWidgets.xml"/>
> 
> 
>  auth="true"/> value="CompoundWidgets2"/>
> 
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets1"/>
>  page="component://example/widget/example/ExampleCompoundWidgets.xml#CompoundWidgets2"/>
> 
> .. the rest
> {code}
> 4. Change java code to support reading xml with namespace (i.e. xml for 
> compound widgets)
> 5. Update the attributes at document level for rest of the controllers, 
> menus, forms, simple methods and screens. Current setting will not work for 
> schema with a namespace. For example, in controller.xml, we will change 
> {code}
> xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd”
> {code} 
> to 
> {code}
> xmlns="http://ofbiz.apache.org/sc” 
> xsi:schemaLocation="http://ofbiz.apache.org/dtds/site-conf-ns.xsd”>
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


svn commit: r1749488 [8/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/AssetmaintScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/AssetmaintScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/assetmaint/widget/AssetmaintScreens.xml 
(original)
+++ ofbiz/trunk/specialpurpose/assetmaint/widget/AssetmaintScreens.xml Tue Jun 
21 11:14:16 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/CommonScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/assetmaint/widget/CommonScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/assetmaint/widget/CommonScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/FacilityScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/FacilityScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/assetmaint/widget/FacilityScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/assetmaint/widget/FacilityScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/assetmaint/widget/LookupScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/ProductScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/ProductScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/assetmaint/widget/ProductScreens.xml (original)
+++ ofbiz/trunk/specialpurpose/assetmaint/widget/ProductScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml 
(original)
+++ ofbiz/trunk/specialpurpose/assetmaint/widget/forms/FixedAssetForms.xml Tue 
Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
 
 

svn commit: r1749634 [8/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/framework/resources/templates/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/CommonScreens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/framework/resources/templates/CommonScreens.xml (original)
+++ ofbiz/trunk/framework/resources/templates/CommonScreens.xml Wed Jun 22 
05:58:26 2016
@@ -1,6 +1,6 @@
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/framework/resources/templates/Forms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/Forms.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/framework/resources/templates/Forms.xml (original)
+++ ofbiz/trunk/framework/resources/templates/Forms.xml Wed Jun 22 05:58:26 2016
@@ -1,6 +1,6 @@
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 
\ No newline at end of file

Modified: ofbiz/trunk/framework/resources/templates/Menus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/Menus.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/framework/resources/templates/Menus.xml (original)
+++ ofbiz/trunk/framework/resources/templates/Menus.xml Wed Jun 22 05:58:26 2016
@@ -1,5 +1,5 @@
 
-http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 
 

Modified: ofbiz/trunk/framework/resources/templates/Screens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/Screens.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/framework/resources/templates/Screens.xml (original)
+++ ofbiz/trunk/framework/resources/templates/Screens.xml Wed Jun 22 05:58:26 
2016
@@ -1,6 +1,6 @@
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/framework/resources/templates/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/controller.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/framework/resources/templates/controller.xml (original)
+++ ofbiz/trunk/framework/resources/templates/controller.xml Wed Jun 22 
05:58:26 2016
@@ -1,6 +1,6 @@
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
+xmlns="http://ofbiz.apache.org/Site-Conf; 
xsi:schemaLocation="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 

Modified: ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/controller.xml?rev=1749634=1749633=1749634=diff
==
--- ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/framework/webtools/webapp/webtools/WEB-INF/controller.xml Wed 
Jun 22 05:58:26 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
+  

svn commit: r1749488 [2/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
- xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+ xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml 
(original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml Tue 
Jun 21 11:14:16 2016
@@ -21,7 +21,7 @@ under the License.
 
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-tree.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Tree; 
targetNamespace="http://ofbiz.apache.org/Widget-Tree 
http://ofbiz.apache.org/dtds/widget-tree-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AgreementForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AgreementForms.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/accounting/widget/AgreementForms.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AgreementForms.xml Tue Jun 21 
11:14:16 2016
@@ -18,7 +18,7 @@ specific language governing permissions
 under the License.
 -->
 http://www.w3.org/2001/XMLSchema-instance; 
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AgreementScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AgreementScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/accounting/widget/AgreementScreens.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AgreementScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 

Modified: ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml 
(original)
+++ ofbiz/trunk/applications/accounting/widget/BillingAccountForms.xml Tue Jun 
21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofb

svn commit: r1749489 [8/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/framework/entityext/minilang/EntitySyncServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/entityext/minilang/EntitySyncServices.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/framework/entityext/minilang/EntitySyncServices.xml (original)
+++ ofbiz/trunk/framework/entityext/minilang/EntitySyncServices.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/framework/minilang/dtd/minilang-catalog.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/minilang/dtd/minilang-catalog.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/framework/minilang/dtd/minilang-catalog.xml (original)
+++ ofbiz/trunk/framework/minilang/dtd/minilang-catalog.xml Tue Jun 21 11:37:47 
2016
@@ -26,6 +26,6 @@ under the License.
 
 
 
-http://ofbiz.apache.org/dtds/simple-methods-ns.xsd; 
uri="simple-methods-ns.xsd" />
+http://ofbiz.apache.org/dtds/simple-methods.xsd; 
uri="simple-methods.xsd" />
 
 

Modified: ofbiz/trunk/framework/resources/templates/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/CommonScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/framework/resources/templates/CommonScreens.xml (original)
+++ ofbiz/trunk/framework/resources/templates/CommonScreens.xml Tue Jun 21 
11:37:47 2016
@@ -1,6 +1,6 @@
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/framework/resources/templates/Forms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/Forms.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/framework/resources/templates/Forms.xml (original)
+++ ofbiz/trunk/framework/resources/templates/Forms.xml Tue Jun 21 11:37:47 2016
@@ -1,6 +1,6 @@
 
 http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
 
 
\ No newline at end of file

Modified: ofbiz/trunk/framework/resources/templates/Menus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/Menus.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/framework/resources/templates/Menus.xml (original)
+++ ofbiz/trunk/framework/resources/templates/Menus.xml Tue Jun 21 11:37:47 2016
@@ -1,5 +1,5 @@
 
-http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 
 

Modified: ofbiz/trunk/framework/resources/templates/Screens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/resources/templates/Screens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/framework/resources/templates/Screens.xml (original)
+++ ofbiz/trunk/framework/resources/templates/Screens.xml Tue Jun 21 11:37:47 
2016
@@ -1,6 +1,6 @@
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/d

New web site url at ofbiz.apache.org !

2007-01-03 Thread Jacopo Cappellato

Hi all,

the good news is that we have finally the OFBiz website at
http://ofbiz.apache.org.

Yoav, David W., could you please add the OFBiz link to the TLP projects
left column of the www.apache.org main page?

Thanks,

Jacopo



Re: Users Conference Videos

2011-09-30 Thread Jacques Le Roux

No pb here: I see the page content

Jacques

From: BJ Freeman bjf...@free-man.net

http://ofbiz.apache.org/VideosConf.html
the links keep being redriected to
http://ofbiz.apache.org/


http://www.ofbiz.org/

2007-10-14 Thread Jacques Le Roux
Hi all,

There are instances 52 of http://www.ofbiz.org in trunk svn. Should we not 
change them all to http://ofbiz.apache.org; even if http://www.ofbiz.org/ is 
redirected to http://ofbiz.apache.org ? Same question for release actually.

Jacques


Broken links from ofbiz.apache.org

2009-09-20 Thread Jacques Le Roux
Hi,

Not sure it's a problem but on http://ofbiz.apache.org  Dnky and Totes-isotoner 
do not seem to use OFBiz anymore.

A problem with Undersun site ? 
http://www.undersunconsulting.com/control/home.html

Jacques

[FYI] Old demos URLs with a dash have been removed

2018-12-29 Thread Jacques Le Roux

Hi,

With https://issues.apache.org/jira/browse/INFRA-16716,

we finally got rid of the old demos URLs with a dash, ie

the URLs starting with https://demo-*-ofbiz.apache.org:
https://demo-trunk-ofbiz.apache.org/webtools/control/main
https://demo-stable-ofbiz.apache.org/webtools/control/main
https://demo-old-ofbiz.apache.org/webtools/control/main

Please use the URLs with a dot, ie

the URLs starting with https://demo-*.ofbiz.apache.org:
https://demo-trunk.ofbiz.apache.org/webtools/control/main 
<https://demo-trunk-ofbiz.apache.org/webtools/control/main>
https://demo-stable.ofbiz.apache.org/webtools/control/main 
<https://demo-stable-ofbiz.apache.org/webtools/control/main>
https://demo-old.ofbiz.apache.org/webtools/control/main 
<https://demo-old-ofbiz.apache.org/webtools/control/main>

Also with https://issues.apache.org/jira/browse/OFBIZ-9659
I recently removed from the demo the possibility to use ports

So, only the URLs with a dot should be used

Thanks and happy holidays

Jacques



US 1099 Forms

2019-06-05 Thread james
Does Ofbiz handle any 1099 Vendor forms that are required in the US?

Can you indicate a Vendor as 1099?

Thanks,

James

-
To unsubscribe, e-mail: user-unsubscr...@ofbiz.apache.org
For additional commands, e-mail: user-h...@ofbiz.apache.org



Account suspension (action required)

2020-03-09 Thread IT Administrator




 

Dear notifications ,  


We are closing all older versions of  notifications 

Click below for a more structured email to avoid being deactivated.

Sign in to the latest version  
 
 

ofbiz.apache.org® Support ©
 2020 
 


Demos are down

2020-04-25 Thread Pawan Verma
Hello Devs,

I am not able to access demo instances
https://ofbiz.apache.org/ofbiz-demos.html

Is anyone facing the same issue, thank you!
-- 
Thanks & Regards
Pawan Verma
ofbiz.apache.org


https://ofbiz.apache.org/release-notes-17.12.02.html missing

2022-07-08 Thread Jacques Le Roux

Hi,

We have a 404 at https://ofbiz.apache.org/release-notes-17.12.02.html

TIA



svn commit: r1749488 [9/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/specialpurpose/example/widget/example/ExampleFeatureScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/ExampleFeatureScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/example/widget/example/ExampleFeatureScreens.xml 
(original)
+++ ofbiz/trunk/specialpurpose/example/widget/example/ExampleFeatureScreens.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/example/widget/example/ExampleForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/ExampleForms.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/example/widget/example/ExampleForms.xml 
(original)
+++ ofbiz/trunk/specialpurpose/example/widget/example/ExampleForms.xml Tue Jun 
21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/example/widget/example/ExampleMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/ExampleMenus.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/example/widget/example/ExampleMenus.xml 
(original)
+++ ofbiz/trunk/specialpurpose/example/widget/example/ExampleMenus.xml Tue Jun 
21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/example/widget/example/ExampleScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/ExampleScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/specialpurpose/example/widget/example/ExampleScreens.xml 
(original)
+++ ofbiz/trunk/specialpurpose/example/widget/example/ExampleScreens.xml Tue 
Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleForms.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleForms.xml 
(original)
+++ 
ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleForms.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleScreens.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleScreens.xml 
(original)
+++ 
ofbiz/trunk/specialpurpose/example/widget/example/FormWidgetExampleScreens.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    
xsi:noNamespaceSchemaLocation=&quo

svn commit: r1749488 [3/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/content/widget/LookupScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/LookupScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/content/widget/LookupScreens.xml (original)
+++ ofbiz/trunk/applications/content/widget/LookupScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/widget/SurveyMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/SurveyMenus.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/content/widget/SurveyMenus.xml (original)
+++ ofbiz/trunk/applications/content/widget/SurveyMenus.xml Tue Jun 21 11:14:16 
2016
@@ -18,7 +18,7 @@ specific language governing permissions
 under the License.
 -->
 
-http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;>
 
 

Modified: ofbiz/trunk/applications/content/widget/SurveyScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/SurveyScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/content/widget/SurveyScreens.xml (original)
+++ ofbiz/trunk/applications/content/widget/SurveyScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/widget/WebAnalyticsScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/WebAnalyticsScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/content/widget/WebAnalyticsScreens.xml (original)
+++ ofbiz/trunk/applications/content/widget/WebAnalyticsScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/widget/WebSiteScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/WebSiteScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/content/widget/WebSiteScreens.xml (original)
+++ ofbiz/trunk/applications/content/widget/WebSiteScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/content/widget/cms/CMSForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/content/widget/cms/CMSForms.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/content/widget/cms/CMSForms.xml (original)
+++ ofbiz/trunk/applications/content/widget/cms/CMSForms.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-for

svn commit: r1749489 [2/11] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml?rev=1749489=1749488=1749489=diff
==
--- 
ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml 
(original)
+++ 
ofbiz/trunk/applications/accounting/webapp/accounting/WEB-INF/controller.xml 
Tue Jun 21 11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 
 Accounting Manager Module Site Configuration 
File

Modified: ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/applications/accounting/webapp/ap/WEB-INF/controller.xml Tue 
Jun 21 11:37:47 2016
@@ -16,7 +16,7 @@ specific language governing permissions
 under the License.
 -->
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd;>
+xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 
 Accounting Manager : AP Module Site Configuration 
File

Modified: ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/applications/accounting/webapp/ar/WEB-INF/controller.xml Tue 
Jun 21 11:37:47 2016
@@ -18,7 +18,7 @@ specific language governing permissions
 under the License.
 -->
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 
 Accounting Manager Module Site Configuration 
File

Modified: ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml (original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingMenus.xml Tue Jun 21 
11:37:47 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
- xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu-ns.xsd;>
+ xmlns="http://ofbiz.apache.org/Widget-Menu; 
targetNamespace="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml?rev=1749489=1749488=1749489=diff
==
--- ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml 
(original)
+++ ofbiz/trunk/applications/accounting/widget/AccountingPrintScreens.xml Tue 
Jun 21 11:37:47 2016
@@ -21,7 +21,7 @@ under the License.
 
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/accounting/widget/AccountingTrees.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/accounting/widget/Accou

Wiki is down

2010-04-12 Thread Jeroen van der Wal
All links on http://ofbiz.apache.org/ to the Wiki are dead.

-Jeroen


Re: Broken links on web site

2014-01-07 Thread Jacques Le Roux
quote.jpg is only used in global.css, no worries

Jacques

On Tuesday, January 07, 2014 1:12 PM, jacques.le.r...@les7arts.com wrote
 I ran a links checker on the web site, found:
 
 http://ofbiz.apache.org/css/dots.gif
error code: 404 (not found), linked from page(s):
http://ofbiz.apache.org/css/global.css
 
 http://ofbiz.apache.org/images/quote.jpg
error code: 404 (not found), linked from page(s):
http://ofbiz.apache.org/css/global.css
 
 2 broken link(s) reported
 
 At r1556192, I fixed the 1st, but there is no quote.jpg anywhere, any ideas?
 
 Jacques


[ANNOUNCE] Apache OFBiz 18.12.05 released

2022-01-04 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.05".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.05" is the fifth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.05.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.05 released

2022-01-04 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.05".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.05" is the fifth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.05.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.05 released

2022-01-04 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.05".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.05" is the fifth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.05.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.09 released

2023-11-05 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.09".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.09" is the ninth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.09.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.09 released

2023-11-05 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.09".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.09" is the ninth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.09.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.09 released

2023-11-05 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.09".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.09" is the ninth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.09.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


CVE-2023-46819: Apache OFBiz: Execution of Solr plugin queries without authentication

2023-11-07 Thread Jacques Le Roux
Severity: moderate

Affected versions:

- Apache OFBiz before 18.12.09

Description:

Missing Authentication in Apache Software Foundation Apache OFBiz when using 
the Solr plugin.
This issue affects Apache OFBiz: before 18.12.09. 

Users are recommended to upgrade to version 18.12.09

Credit:

Anonymous by demand (finder)

References:

https://ofbiz.apache.org/download.html
https://ofbiz.apache.org/security.html
https://ofbiz.apache.org/release-notes-18.12.09.html
https://ofbiz.apache.org/
https://www.cve.org/CVERecord?id=CVE-2023-46819



CVE-2023-46819: Apache OFBiz: Execution of Solr plugin queries without authentication

2023-11-07 Thread Jacques Le Roux
Severity: moderate

Affected versions:

- Apache OFBiz before 18.12.09

Description:

Missing Authentication in Apache Software Foundation Apache OFBiz when using 
the Solr plugin.
This issue affects Apache OFBiz: before 18.12.09. 

Users are recommended to upgrade to version 18.12.09

Credit:

Anonymous by demand (finder)

References:

https://ofbiz.apache.org/download.html
https://ofbiz.apache.org/security.html
https://ofbiz.apache.org/release-notes-18.12.09.html
https://ofbiz.apache.org/
https://www.cve.org/CVERecord?id=CVE-2023-46819



CVE-2023-46819: Apache OFBiz: Execution of Solr plugin queries without authentication

2023-11-07 Thread Jacques Le Roux
Severity: moderate

Affected versions:

- Apache OFBiz before 18.12.09

Description:

Missing Authentication in Apache Software Foundation Apache OFBiz when using 
the Solr plugin.
This issue affects Apache OFBiz: before 18.12.09. 

Users are recommended to upgrade to version 18.12.09

Credit:

Anonymous by demand (finder)

References:

https://ofbiz.apache.org/download.html
https://ofbiz.apache.org/security.html
https://ofbiz.apache.org/release-notes-18.12.09.html
https://ofbiz.apache.org/
https://www.cve.org/CVERecord?id=CVE-2023-46819



[ANNOUNCE] Apache OFBiz 18.12.06 released

2022-09-01 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.06".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.06" is the sixth and final release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.06.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.06 released

2022-09-01 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.06".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.06" is the sixth and final release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.06.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.06 released

2022-09-01 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.06".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.06" is the sixth and final release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.06.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.07 released

2023-04-10 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.07".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.07" is the seventh and final release of the 18.12
series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.07.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.07 released

2023-04-10 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.07".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.07" is the seventh and final release of the 18.12
series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.07.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.11 released

2023-12-22 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.11".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.11" is the eleventh release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.11.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.11 released

2023-12-21 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.11".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.11" is the eleventh release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.11.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.11 released

2023-12-21 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.11".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.11" is the eleventh release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.11.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.10 released

2023-12-04 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.10".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.10" is the tenth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.10.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.10 released

2023-12-04 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.10".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.10" is the tenth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.10.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.10 released

2023-12-04 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.10".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.10" is the tenth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.10.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


CVE-2024-25065: Apache OFBiz: Path traversal allowing authentication bypass.

2024-02-28 Thread Jacques Le Roux
Severity: critical

Affected versions:

- Apache OFBiz before 18.12.12

Description:

Possible path traversal in Apache OFBiz allowing authentication bypass.
Users are recommended to upgrade to version 18.12.12, that fixes the issue.

Credit:

YunPeng - 郭 运鹏  (finder)

References:

https://ofbiz.apache.org/download.html
https://ofbiz.apache.org/security.html
https://ofbiz.apache.org/release-notes-18.12.12.html
https://issues.apache.org/jira/browse/OFBIZ-12887
https://ofbiz.apache.org/
https://www.cve.org/CVERecord?id=CVE-2024-25065



[ANNOUNCE] Apache OFBiz 18.12.12 released

2024-02-28 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.12".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.12" is the twelfth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.12.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


[ANNOUNCE] Apache OFBiz 18.12.12 released

2024-02-28 Thread Jacopo Cappellato
The Apache OFBiz community is pleased to announce the new release "Apache
OFBiz 18.12.12".

Apache OFBiz® is an open source product for the automation of enterprise
processes that includes framework components and business applications.

http://ofbiz.apache.org/

"Apache OFBiz 18.12.12" is the twelfth release of the 18.12 series.

For details of the changes introduced with this new version
please refer to http://ofbiz.apache.org/release-notes-18.12.12.html

The history of security related fixes included in each release is
available here:
https://ofbiz.apache.org/security.html

The release files can be downloaded following the instructions in the OFBiz
download page:

http://ofbiz.apache.org/download.html


CVE-2024-25065: Apache OFBiz: Path traversal allowing authentication bypass.

2024-02-28 Thread Jacques Le Roux
Severity: critical

Affected versions:

- Apache OFBiz before 18.12.12

Description:

Possible path traversal in Apache OFBiz allowing authentication bypass.
Users are recommended to upgrade to version 18.12.12, that fixes the issue.

Credit:

YunPeng - 郭 运鹏  (finder)

References:

https://ofbiz.apache.org/download.html
https://ofbiz.apache.org/security.html
https://ofbiz.apache.org/release-notes-18.12.12.html
https://issues.apache.org/jira/browse/OFBIZ-12887
https://ofbiz.apache.org/
https://www.cve.org/CVERecord?id=CVE-2024-25065



CVE-2024-25065: Apache OFBiz: Path traversal allowing authentication bypass.

2024-02-28 Thread Jacques Le Roux
Severity: critical

Affected versions:

- Apache OFBiz before 18.12.12

Description:

Possible path traversal in Apache OFBiz allowing authentication bypass.
Users are recommended to upgrade to version 18.12.12, that fixes the issue.

Credit:

YunPeng - 郭 运鹏  (finder)

References:

https://ofbiz.apache.org/download.html
https://ofbiz.apache.org/security.html
https://ofbiz.apache.org/release-notes-18.12.12.html
https://issues.apache.org/jira/browse/OFBIZ-12887
https://ofbiz.apache.org/
https://www.cve.org/CVERecord?id=CVE-2024-25065



svn commit: r1749488 [5/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: ofbiz/trunk/applications/order/minilang/test/ShoppingCartTests.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/test/ShoppingCartTests.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/order/minilang/test/ShoppingCartTests.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/test/ShoppingCartTests.xml Tue Jun 
21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/test/ShoppingListTests.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/test/ShoppingListTests.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/order/minilang/test/ShoppingListTests.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/test/ShoppingListTests.xml Tue Jun 
21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/controller.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/controller.xml 
(original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/WEB-INF/controller.xml Tue 
Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd;>
+xmlns="http://ofbiz.apache.org/Site-Conf; 
targetNamespace="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/widget/ordermgr/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/widget/ordermgr/CommonScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/order/widget/ordermgr/CommonScreens.xml (original)
+++ ofbiz/trunk/applications/order/widget/ordermgr/CommonScreens.xml Tue Jun 21 
11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml 
(original)
+++ ofbiz/trunk/applications/order/widget/ordermgr/CustRequestForms.xml Tue Jun 
21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
 
 

Modified: ofbiz/trunk/applications/order/widget/ordermgr/CustRequestScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/widget/ordermgr/CustRequestScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/order/widget/ordermgr/CustRequestScreens.xml 
(original)
+++ ofbiz/trunk/applications/order/widget/ordermgr/CustRequestScreens.xml Tue 
Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+    xmlns="http://of

svn commit: r1749488 [4/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomScreens.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/widget/manufacturing/BomScreens.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarForms.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarForms.xml 
(original)
+++ 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarForms.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarScreens.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarScreens.xml 
(original)
+++ 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CalendarScreens.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CommonScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/CommonScreens.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CommonScreens.xml 
(original)
+++ 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CommonScreens.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+xmlns="http://ofbiz.apache.org/Widget-Screen; 
targetNamespace="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostForms.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostForms.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostForms.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
+    xmlns="http://ofbiz.apache.org/Widget-Form; 
targetNamespace="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form-ns.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostScreens.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostScreens.xml 
(original)
+++ ofbiz/trunk/applications/manufacturing/widget/manufacturing/CostScre

January 2007, number of subscribers to user, dev and commits mailing lists

2007-02-04 Thread Jacopo Cappellato
Here is the number of subscribers per each of the three public OFBiz 
mailing list for this month.


===

Results of your queries (based on information dated 2007-02-03):

user@ofbiz.apache.org
  Subscribers:424
  Digest readers: 33

dev@ofbiz.apache.org
  Subscribers:334
  Digest readers: 17

commits@ofbiz.apache.org
  Subscribers:66
  Digest readers: 4




svn commit: r1749415 [1/5] - in /ofbiz/site/dtds: compound-widgets.xsd simple-methods-ns.xsd site-conf-ns.xsd widget-form-ns.xsd widget-menu-ns.xsd widget-screen-ns.xsd widget-tree-ns.xsd

2016-06-20 Thread jleroux
Author: jleroux
Date: Tue Jun 21 04:47:51 2016
New Revision: 1749415

URL: http://svn.apache.org/viewvc?rev=1749415=rev
Log:
I forgot to commit/refresh the files for "Autocompletion for Compound Widget" - 
https://issues.apache.org/jira/browse/OFBIZ-7061

Here they are

Added:
ofbiz/site/dtds/simple-methods-ns.xsd   (with props)
ofbiz/site/dtds/site-conf-ns.xsd   (with props)
ofbiz/site/dtds/widget-form-ns.xsd   (with props)
ofbiz/site/dtds/widget-menu-ns.xsd   (with props)
ofbiz/site/dtds/widget-screen-ns.xsd   (with props)
ofbiz/site/dtds/widget-tree-ns.xsd   (with props)
Modified:
ofbiz/site/dtds/compound-widgets.xsd

Modified: ofbiz/site/dtds/compound-widgets.xsd
URL: 
http://svn.apache.org/viewvc/ofbiz/site/dtds/compound-widgets.xsd?rev=1749415=1749414=1749415=diff
==
--- ofbiz/site/dtds/compound-widgets.xsd (original)
+++ ofbiz/site/dtds/compound-widgets.xsd Tue Jun 21 04:47:51 2016
@@ -1,14 +1,29 @@
-http://www.w3.org/2001/XMLSchema;
-   elementFormDefault="qualified">
+http://ofbiz.apache.org/Site-Conf;
+xmlns:sm="http://ofbiz.apache.org/Simple-Method;
+xmlns:wf="http://ofbiz.apache.org/Widget-Form;
+xmlns:wt="http://ofbiz.apache.org/Widget-Tree;
+xmlns:wm="http://ofbiz.apache.org/Widget-Menu;
+xmlns:ws="http://ofbiz.apache.org/Widget-Screen;
+xmlns:xs="http://www.w3.org/2001/XMLSchema;
+    elementFormDefault="qualified">
+
+    http://ofbiz.apache.org/Site-Conf"/>
+http://ofbiz.apache.org/Widget-Menu"/>
+http://ofbiz.apache.org/Widget-Screen"/>
+http://ofbiz.apache.org/Widget-Form"/>
+http://ofbiz.apache.org/Widget-Tree"/>
+http://ofbiz.apache.org/Simple-Method"/>
+
 
 
 
-
-
-
-
-
-
+
+
+
+
+
+
 
 
 




svn commit: r1781215 [3/3] - in /ofbiz/trunk/plugins/birt: config/BirtUiLabels.xml src/main/java/org/apache/ofbiz/birt/flexible/BirtServices.java widget/birt/BirtForms.xml widget/birt/BirtScreens.xml

2017-02-01 Thread jleroux
Modified: ofbiz/trunk/plugins/birt/widget/birt/BirtForms.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/plugins/birt/widget/birt/BirtForms.xml?rev=1781215=1781214=1781215=diff
==
--- ofbiz/trunk/plugins/birt/widget/birt/BirtForms.xml (original)
+++ ofbiz/trunk/plugins/birt/widget/birt/BirtForms.xml Wed Feb  1 10:23:44 2017
@@ -1,145 +1,145 @@
-
-
-
-http://www.w3.org/2001/XMLSchema-instance; 
-xmlns="http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-  
-
-
+
+
+
+http://www.w3.org/2001/XMLSchema-instance; 
+xmlns="http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+  
+
+

Modified: ofbiz/trunk/plugins/birt/widget/birt/BirtScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/plugins/birt/widget/birt/BirtScreens.xml?rev=1781215=1781214=1781215=diff
==
--- ofbiz/trunk/plugins/birt/widget/birt/BirtScreens.xml (original)
+++ ofbiz/trunk/plugins/birt/widget/birt/BirtScreens.xml Wed Feb  1 10:23:44 
2017
@@ -1,417 +1,417 @@
-
-
-
-http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofb

Warning!!! Suspicious Login Attempt iP: 92.972.453

2021-03-11 Thread server














 


Sign-in attempt was blocked 




notifications@ofbiz.apache.org
Someone just used your password to try to sign in to your account. ip security blocked them, but you should check activity below.

Check activity
You can also go directly to:https://notifications@ofbiz.apache.org//notifications

svn commit: r1749488 [6/10] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bu

2016-06-21 Thread jleroux
Modified: 
ofbiz/trunk/applications/product/minilang/product/inventory/InventoryServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/minilang/product/inventory/InventoryServices.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/product/minilang/product/inventory/InventoryServices.xml
 (original)
+++ 
ofbiz/trunk/applications/product/minilang/product/inventory/InventoryServices.xml
 Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
 
 

Modified: 
ofbiz/trunk/applications/product/minilang/product/inventory/StockMoveServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/minilang/product/inventory/StockMoveServices.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/product/minilang/product/inventory/StockMoveServices.xml
 (original)
+++ 
ofbiz/trunk/applications/product/minilang/product/inventory/StockMoveServices.xml
 Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/product/minilang/product/price/PriceServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/minilang/product/price/PriceServices.xml?rev=1749488=1749487=1749488=diff
==
--- ofbiz/trunk/applications/product/minilang/product/price/PriceServices.xml 
(original)
+++ ofbiz/trunk/applications/product/minilang/product/price/PriceServices.xml 
Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/product/minilang/product/product/CustomerDigitalDownloadServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/minilang/product/product/CustomerDigitalDownloadServices.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/product/minilang/product/product/CustomerDigitalDownloadServices.xml
 (original)
+++ 
ofbiz/trunk/applications/product/minilang/product/product/CustomerDigitalDownloadServices.xml
 Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/product/minilang/product/product/ProductContentServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/minilang/product/product/ProductContentServices.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/product/minilang/product/product/ProductContentServices.xml
 (original)
+++ 
ofbiz/trunk/applications/product/minilang/product/product/ProductContentServices.xml
 Tue Jun 21 11:14:16 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
targetNamespace="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods-ns.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/product/minilang/product/product/ProductServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/product/minilang/product/product/ProductServices.xml?rev=1749488=1749487=1749488=diff
==
--- 
ofbiz/trunk/applications/product/minilang/product/pr

svn commit: r1749938 [3/5] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bud

2016-06-23 Thread jleroux
Modified: 
ofbiz/trunk/applications/workeffort/minilang/timesheet/TimesheetServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/minilang/timesheet/TimesheetServices.xml?rev=1749938=1749937=1749938=diff
==
--- 
ofbiz/trunk/applications/workeffort/minilang/timesheet/TimesheetServices.xml 
(original)
+++ 
ofbiz/trunk/applications/workeffort/minilang/timesheet/TimesheetServices.xml 
Thu Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/workeffort/minilang/workeffort/UpgradeServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/minilang/workeffort/UpgradeServices.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/applications/workeffort/minilang/workeffort/UpgradeServices.xml 
(original)
+++ ofbiz/trunk/applications/workeffort/minilang/workeffort/UpgradeServices.xml 
Thu Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkEffortSimpleServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkEffortSimpleServices.xml?rev=1749938=1749937=1749938=diff
==
--- 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkEffortSimpleServices.xml
 (original)
+++ 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkEffortSimpleServices.xml
 Thu Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowMapProcessors.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowMapProcessors.xml?rev=1749938=1749937=1749938=diff
==
--- 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowMapProcessors.xml
 (original)
+++ 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowMapProcessors.xml
 Thu Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
   
 
 

Modified: 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowSimpleEvents.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowSimpleEvents.xml?rev=1749938=1749937=1749938=diff
==
--- 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowSimpleEvents.xml
 (original)
+++ 
ofbiz/trunk/applications/workeffort/minilang/workeffort/WorkflowSimpleEvents.xml
 Thu Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 

Modified: ofbiz/trunk/framework/common/minilang/CdyneServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/common/minilang/CdyneServices.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/framework/common/minilang/CdyneServices.xml (original)
+++ ofbiz/trunk/framework/common/minilang/CdyneServices.xml Thu Jun 23 16:40:22 
2016
@@ -19,7 +19,7 @@ und

svn commit: r1741022 - in /ofbiz/trunk: framework/widget/dtd/compound-widgets.xsd specialpurpose/example/widget/example/ExampleCompoundWidgets.xml

2016-04-26 Thread jleroux
Author: jleroux
Date: Tue Apr 26 13:35:07 2016
New Revision: 1741022

URL: http://svn.apache.org/viewvc?rev=1741022=rev
Log:
Fixes "ExampleCompoundWidgets throws errors" - 
https://issues.apache.org/jira/browse/OFBIZ-7023

Actually this is due to both compound-widgets.xsd and 
ExampleCompoundWidgets.xml errors. Both have not visible effects but in logs

Modified:
ofbiz/trunk/framework/widget/dtd/compound-widgets.xsd
ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml

Modified: ofbiz/trunk/framework/widget/dtd/compound-widgets.xsd
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/widget/dtd/compound-widgets.xsd?rev=1741022=1741021=1741022=diff
==
--- ofbiz/trunk/framework/widget/dtd/compound-widgets.xsd (original)
+++ ofbiz/trunk/framework/widget/dtd/compound-widgets.xsd Tue Apr 26 13:35:07 
2016
@@ -4,9 +4,9 @@
 
 
 
-
+
 
-
+
 
 
 

Modified: 
ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml?rev=1741022=1741021=1741022=diff
==
--- 
ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml 
(original)
+++ 
ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml 
Tue Apr 26 13:35:07 2016
@@ -21,7 +21,7 @@ under the License.
 
 http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/compound-widgets.xsd;>
 
-http://ofbiz.apache.org/Site-Conf; 
xsi:schemaLocation="http://ofbiz.apache.org/Site-Conf 
http://ofbiz.apache.org/dtds/site-conf.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/site-conf.xsd;>
 
 
 
@@ -33,7 +33,7 @@ under the License.
 
     
 
-http://ofbiz.apache.org/Widget-Menu; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Menu 
http://ofbiz.apache.org/dtds/widget-menu.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-menu.xsd;>
 
 
 
@@ -44,7 +44,7 @@ under the License.
 
 
 
-http://ofbiz.apache.org/Widget-Screen; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Screen 
http://ofbiz.apache.org/dtds/widget-screen.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd;>
 
 
 
@@ -96,7 +96,7 @@ under the License.
 
 
 
-    http://ofbiz.apache.org/Widget-Form; 
xsi:schemaLocation="http://ofbiz.apache.org/Widget-Form 
http://ofbiz.apache.org/dtds/widget-form.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-form.xsd;>
 
     
 
@@ -106,7 +106,7 @@ under the License.
 
 
 
-http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+http://www.w3.org/2001/XMLSchema-instance; 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 




svn commit: r1750647 [4/4] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bud

2016-06-29 Thread jleroux
Modified: 
ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml?rev=1750647=1750646=1750647=diff
==
--- 
ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml 
(original)
+++ 
ofbiz/trunk/specialpurpose/example/widget/example/ExampleCompoundWidgets.xml 
Wed Jun 29 14:06:29 2016
@@ -114,7 +114,7 @@ under the License.
 
 
 
-
+
 
 
 

Modified: ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseEvents.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseEvents.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseEvents.xml 
(original)
+++ ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseEvents.xml Wed Jun 
29 14:06:29 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseServices.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseServices.xml 
(original)
+++ ofbiz/trunk/specialpurpose/googlebase/minilang/GooglebaseServices.xml Wed 
Jun 29 14:06:29 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/specialpurpose/googlecheckout/minilang/PrepareXMLTemplate.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlecheckout/minilang/PrepareXMLTemplate.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/specialpurpose/googlecheckout/minilang/PrepareXMLTemplate.xml 
(original)
+++ ofbiz/trunk/specialpurpose/googlecheckout/minilang/PrepareXMLTemplate.xml 
Wed Jun 29 14:06:29 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/specialpurpose/googlecheckout/minilang/ShoppingCartServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/googlecheckout/minilang/ShoppingCartServices.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/specialpurpose/googlecheckout/minilang/ShoppingCartServices.xml 
(original)
+++ ofbiz/trunk/specialpurpose/googlecheckout/minilang/ShoppingCartServices.xml 
Wed Jun 29 14:06:29 2016
@@ -19,7 +19,7 @@
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose/hhfacility/minilang/FacilityServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/specialpurpose/hhfacility/minilang/FacilityServices.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/specialpurpose/hhfacility/minilang/FacilityServices.xml 
(original)
+++ ofbiz/trunk/specialpurpose/hhfacility/minilang/FacilityServices.xml Wed Jun 
29 14:06:29 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/specialpurpose

svn commit: r1749938 [2/5] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bud

2016-06-23 Thread jleroux
Modified: ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml Thu 
Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml Thu Jun 
23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
Thu Jun 23 16:40:22 2016
@@ -23,7 +23,7 @@ This file contains basic services for Sa
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml Thu Jun 
23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml Thu 
Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml?rev=1749938=1749937=1749938=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderReturnServices.xml Thu 
Jun 23 16:40:22 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-M

svn commit: r1750647 [2/4] - in /ofbiz/trunk: applications/accounting/minilang/ applications/accounting/minilang/admin/ applications/accounting/minilang/agreement/ applications/accounting/minilang/bud

2016-06-29 Thread jleroux
Modified: ofbiz/trunk/applications/order/minilang/UpgradeServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/UpgradeServices.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/applications/order/minilang/UpgradeServices.xml (original)
+++ ofbiz/trunk/applications/order/minilang/UpgradeServices.xml Wed Jun 29 
14:06:29 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/customer/CheckoutMapProcs.xml Wed 
Jun 29 14:06:29 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/customer/CustomerEvents.xml Wed Jun 
29 14:06:29 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: 
ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/opportunity/OpportunityServices.xml 
Wed Jun 29 14:06:29 2016
@@ -23,7 +23,7 @@ This file contains basic services for Sa
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 

Modified: ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/CheckoutServices.xml Wed Jun 
29 14:06:29 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance; 
-
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocation="http://ofbiz.apache.org/Simple-Method 
http://ofbiz.apache.org/dtds/simple-methods.xsd;>
 
 
 http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml?rev=1750647=1750646=1750647=diff
==
--- ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml 
(original)
+++ ofbiz/trunk/applications/order/minilang/order/OrderDeliveryServices.xml Wed 
Jun 29 14:06:29 2016
@@ -19,7 +19,7 @@ under the License.
 -->
 
 http://www.w3.org/2001/XMLSchema-instance;
-    
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/simple-methods.xsd;>
+    xmlns="http://ofbiz.apache.org/Simple-Method; 
xsi:schemaLocat

[jira] [Updated] (OFBIZ-9384) RequestHandlerException on request link of Quote Price page

2017-06-12 Thread Aditya Sharma (JIRA)

 [ 
https://issues.apache.org/jira/browse/OFBIZ-9384?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Aditya Sharma updated OFBIZ-9384:
-
Description: 
Steps to reproduce:
1. Go to Order component 
(https://demo-trunk-ofbiz.apache.org/ordermgr/control/main)
2. Click on Quotes from 
submenu.(https://demo-trunk-ofbiz.apache.org/ordermgr/control/FindQuote)
3. Provide search preferences and click on Find button.
4. Click on Quote Id link 
(https://demo-trunk-ofbiz.apache.org/ordermgr/control/ViewQuote?quoteId=CQ0001).
5.  Click on Quote Price subtab 
(https://demo-trunk-ofbiz.apache.org/ordermgr/control/ManageQuotePrices?quoteId=CQ0001)
6. Click on link under View Request 
(https://demo-trunk-ofbiz.apache.org/workeffort/control/requestitem)
It gives a RequestHandlerException.

  was:
Steps to reproduce:
1. Go to Order component 
(https://demo-trunk-ofbiz.apache.org:8443/ordermgr/control/main)
2. Click on Quotes from 
submenu.(https://demo-trunk-ofbiz.apache.org:8443/ordermgr/control/FindQuote)
3. Provide search preferences and click on Find button.
4. Click on Quote Id link 
(https://demo-trunk-ofbiz.apache.org:8443/ordermgr/control/ViewQuote?quoteId=CQ0001).
5.  Click on Quote Price subtab 
(https://demo-trunk-ofbiz.apache.org:8443/ordermgr/control/ManageQuotePrices?quoteId=CQ0001)
6. Click on link under View Request 
(https://demo-trunk-ofbiz.apache.org:8443/workeffort/control/requestitem)
It gives a RequestHandlerException.


> RequestHandlerException on request link of Quote Price page
> ---
>
> Key: OFBIZ-9384
> URL: https://issues.apache.org/jira/browse/OFBIZ-9384
> Project: OFBiz
>  Issue Type: Bug
>  Components: order
>Reporter: Aditya Sharma
>Assignee: Aditya Sharma
>Priority: Trivial
> Attachments: OFBIZ-9384.patch, screenshot-1.png
>
>
> Steps to reproduce:
> 1. Go to Order component 
> (https://demo-trunk-ofbiz.apache.org/ordermgr/control/main)
> 2. Click on Quotes from 
> submenu.(https://demo-trunk-ofbiz.apache.org/ordermgr/control/FindQuote)
> 3. Provide search preferences and click on Find button.
> 4. Click on Quote Id link 
> (https://demo-trunk-ofbiz.apache.org/ordermgr/control/ViewQuote?quoteId=CQ0001).
> 5.  Click on Quote Price subtab 
> (https://demo-trunk-ofbiz.apache.org/ordermgr/control/ManageQuotePrices?quoteId=CQ0001)
> 6. Click on link under View Request 
> (https://demo-trunk-ofbiz.apache.org/workeffort/control/requestitem)
> It gives a RequestHandlerException.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


The official demos are back

2014-06-22 Thread Jacques Le Roux

Hi,

I'm happy to announce that eventually all the demos are back. The main page is 
updated to reflect that: http://ofbiz.apache.org/

You can also get to the trunk demo using
http://demo-trunk-ofbiz.apache.org/ecommerce/control/main
http://demo-trunk-ofbiz.apache.org/catalog/control/main?USERNAME=flexadminPASSWORD=ofbizJavaScriptEnabled=Y

Two things which are worth to be noted have changed.
1) The sub domains are no longer demo-*.ofbiz.apache.org but 
demo-*-ofbiz.apache.org
2) Internally OFBiz no longer uses HTTPS in these demos. The security is done by the infra team which is proxying all calls. The official ASF 
certificate is used for all demos.


Enjoy

Jacques


Re: The official demos are back

2014-06-23 Thread Deepak Dixit

Thanks Jacques..

Thanks  Regards
—
Deepak Dixit

On Jun 22, 2014, at 8:29 PM, Jacques Le Roux jacques.le.r...@les7arts.com 
wrote:

 Hi,
 
 I'm happy to announce that eventually all the demos are back. The main page 
 is updated to reflect that: http://ofbiz.apache.org/
 
 You can also get to the trunk demo using
 http://demo-trunk-ofbiz.apache.org/ecommerce/control/main
 http://demo-trunk-ofbiz.apache.org/catalog/control/main?USERNAME=flexadminPASSWORD=ofbizJavaScriptEnabled=Y
 
 Two things which are worth to be noted have changed.
 1) The sub domains are no longer demo-*.ofbiz.apache.org but 
 demo-*-ofbiz.apache.org
 2) Internally OFBiz no longer uses HTTPS in these demos. The security is done 
 by the infra team which is proxying all calls. The official ASF certificate 
 is used for all demos.
 
 Enjoy
 
 Jacques



smime.p7s
Description: S/MIME cryptographic signature


Re: Permission errors doing svn up on people.apache.org

2010-02-12 Thread Adam Heath
Jacques Le Roux wrote:
 I tried and got this
 
 [jler...@minotaur:~]$ cd /www/ofbiz.apache.org/
 [jler...@minotaur:/www/ofbiz.apache.org]$ svn up
 svn: Working copy '.' locked
 svn: run 'svn cleanup' to remove locks (type 'svn help cleanup' for
 details)
 [jler...@minotaur:/www/ofbiz.apache.org]$
 [jler...@minotaur:/www/ofbiz.apache.org]$ svn cleanup
 svn: Can't open file 'bookimages/.svn/lock': Permission denied
 [jler...@minotaur:/www/ofbiz.apache.org]$
 
 I vaguely remember a such issue and Adam asked Ruppert to do some
 thing, it was some weeks ago. Not sure it's related though (as it's
 really vague in my mind)

Wasn't me.


  1   2   3   4   5   6   7   8   9   10   >