buildbot success in on ofbizTrunkFrameworkPlugins

2018-12-16 Thread buildbot
The Buildbot has detected a restored build on builder 
ofbizTrunkFrameworkPlugins while building . Full details are available at:
https://ci.apache.org/builders/ofbizTrunkFrameworkPlugins/builds/594

Buildbot URL: https://ci.apache.org/

Buildslave for this Build: silvanus_ubuntu

Build Reason: downstream
Build Source Stamp: [branch ofbiz/ofbiz-framework/trunk] 1849025
Blamelist: deepak

Build succeeded!

Sincerely,
 -The Buildbot





svn commit: r1849027 - /ofbiz/ofbiz-plugins/trunk/example/widget/example/FormWidgetExampleForms.xml

2018-12-16 Thread jleroux
Author: jleroux
Date: Sun Dec 16 13:14:30 2018
New Revision: 1849027

URL: http://svn.apache.org/viewvc?rev=1849027=rev
Log:
Improved: In widget forms display element has not time type
(OFBIZ-6731)

bq. http://svn.apache.org/viewvc/ofbiz/ofbiz-plugins/trunk/example/widget/example/FormWidgetExampleForms.xml?rev=1849027=1849026=1849027=diff
==
--- ofbiz/ofbiz-plugins/trunk/example/widget/example/FormWidgetExampleForms.xml 
(original)
+++ ofbiz/ofbiz-plugins/trunk/example/widget/example/FormWidgetExampleForms.xml 
Sun Dec 16 13:14:30 2018
@@ -66,14 +66,6 @@ under the License.
 
 
 
-
-
-
-
-
-
 
 
 

svn commit: r1849025 - in /ofbiz/ofbiz-framework/trunk/applications/content: minilang/content/ContentServices.xml servicedef/services_content.xml

2018-12-16 Thread deepak
Author: deepak
Date: Sun Dec 16 12:29:49 2018
New Revision: 1849025

URL: http://svn.apache.org/viewvc?rev=1849025=rev
Log:
Improved: Convert updateContent and removeContent service to entity-auto
(OFBIZ-10625)
Thanks Aditya Sharma for reporting the issue. 

Modified:

ofbiz/ofbiz-framework/trunk/applications/content/minilang/content/ContentServices.xml

ofbiz/ofbiz-framework/trunk/applications/content/servicedef/services_content.xml

Modified: 
ofbiz/ofbiz-framework/trunk/applications/content/minilang/content/ContentServices.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/content/minilang/content/ContentServices.xml?rev=1849025=1849024=1849025=diff
==
--- 
ofbiz/ofbiz-framework/trunk/applications/content/minilang/content/ContentServices.xml
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/applications/content/minilang/content/ContentServices.xml
 Sun Dec 16 12:29:49 2018
@@ -21,25 +21,6 @@
 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;>
 
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
 
  
 

Modified: 
ofbiz/ofbiz-framework/trunk/applications/content/servicedef/services_content.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/content/servicedef/services_content.xml?rev=1849025=1849024=1849025=diff
==
--- 
ofbiz/ofbiz-framework/trunk/applications/content/servicedef/services_content.xml
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/applications/content/servicedef/services_content.xml
 Sun Dec 16 12:29:49 2018
@@ -118,8 +118,7 @@
 
 
 
-
+
 Update a Content
 
 
@@ -146,8 +145,7 @@
 
 
 
-
+
 Remove Content
 
 




svn commit: r1849024 - in /ofbiz/ofbiz-framework/trunk/applications/accounting: groovyScripts/budget/BudgetServices.groovy servicedef/secas.xml servicedef/services_budget.xml

2018-12-16 Thread deepak
Author: deepak
Date: Sun Dec 16 12:21:52 2018
New Revision: 1849024

URL: http://svn.apache.org/viewvc?rev=1849024=rev
Log:
Improved: Convert createBudget service to entity-auto
(OFBIZ-10715)

Modified:

ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/budget/BudgetServices.groovy
ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/secas.xml

ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/services_budget.xml

Modified: 
ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/budget/BudgetServices.groovy
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/budget/BudgetServices.groovy?rev=1849024=1849023=1849024=diff
==
--- 
ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/budget/BudgetServices.groovy
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/applications/accounting/groovyScripts/budget/BudgetServices.groovy
 Sun Dec 16 12:21:52 2018
@@ -19,24 +19,6 @@
 
 import org.apache.ofbiz.entity.GenericValue
 
-
-def createBudget() {
-//create new entity and create all the fields
-GenericValue newEntity = makeValue('Budget', parameters)
-
-//create a non existing ID if not supplied
-newEntity.budgetId = delegator.getNextSeqId('Budget', 1)
-
-//finally create the record (should not exist already)
-newEntity.create()
-
-Map setStatusMap = ['budgetId': newEntity.budgetId]
-setStatusMap.statusId = 'BG_CREATED'
-Map result = run service: 'updateBudgetStatus', with: setStatusMap
-result.budgetId = newEntity.budgetId
-return result
-}
-
 def updateBudgetStatus() {
 Map result = success()
 List budgetStatuses = from('BudgetStatus').where([budgetId: 
parameters.budgetId]).orderBy('-statusDate').queryList()

Modified: 
ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/secas.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/secas.xml?rev=1849024=1849023=1849024=diff
==
--- ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/secas.xml 
(original)
+++ ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/secas.xml 
Sun Dec 16 12:21:52 2018
@@ -21,6 +21,11 @@ under the License.
 http://www.w3.org/2001/XMLSchema-instance;
 
xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/service-eca.xsd;>
 
+
+
+
+
+
 
 
 

Modified: 
ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/services_budget.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/services_budget.xml?rev=1849024=1849023=1849024=diff
==
--- 
ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/services_budget.xml
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/applications/accounting/servicedef/services_budget.xml
 Sun Dec 16 12:21:52 2018
@@ -25,8 +25,8 @@ under the License.
 1.0
 
 
-
+
 Create a Budget
 
 




svn commit: r1849022 - in /ofbiz/ofbiz-framework/branches/release17.12: ./ applications/party/webapp/partymgr/WEB-INF/controller.xml applications/party/widget/partymgr/PartyScreens.xml

2018-12-16 Thread deepak
Author: deepak
Date: Sun Dec 16 11:38:42 2018
New Revision: 1849022

URL: http://svn.apache.org/viewvc?rev=1849022=rev
Log:
Applied fix from trunk for revision: 1849021 
===

Improved: request map to create party content in controller.xml exists twice
(OFBIZ-10699)
Renamed ambiguous controller request CreatePartyContent to EditPartyContent as 
per OOTB pattern.
Thanks Pierre Smits for reporting the issue and Jacques Le Roux for the the 
details and discussion

Modified:
ofbiz/ofbiz-framework/branches/release17.12/   (props changed)

ofbiz/ofbiz-framework/branches/release17.12/applications/party/webapp/partymgr/WEB-INF/controller.xml

ofbiz/ofbiz-framework/branches/release17.12/applications/party/widget/partymgr/PartyScreens.xml

Propchange: ofbiz/ofbiz-framework/branches/release17.12/
--
--- svn:mergeinfo (original)
+++ svn:mergeinfo Sun Dec 16 11:38:42 2018
@@ -10,4 +10,4 @@
 /ofbiz/branches/json-integration-refactoring:1634077-1635900
 /ofbiz/branches/multitenant20100310:921280-927264
 /ofbiz/branches/release13.07:1547657
-/ofbiz/ofbiz-framework/trunk:1819499,1819598,1819800,1819805,1819811,1820038,1820262,1820374-1820375,1820441,1820457,1820644,1820658,1820790,1820823,1820949,1820966,1821012,1821036,1821112,1821115,1821144,1821186,1821219,1821226,1821230,1821386,1821613,1821628,1821965,1822125,1822310,1822377,1822383,1822393,1823467,1823562,1823876,1824314,1824316,1824732,1824803,1824847,1824855,1825192,1825211,1825216,1825233,1825450,1826374,1826502,1826592,1826671,1826674,1826805,1826938,1826997,1827439,1828255,1828316,1828346,1828424,1828512,1828514,1829690,1830936,1831074,1831078,1831234,1831608,1831831,1832577,1832662,1832756,1832800,1832944,1833173,1833211,1834181,1834191,1834736,1835235,1835887,1835891,1835953,1835964,1836144,1836871,1837857,1838032,1838256,1838381,1840189,1840199,1840828,1841657,1841662,1842372,1842921,1843225,1843893,1844943,1845418,1845420,1845466,1845544,1845552,1845558,1845933,1845995,1846097,1846107,1846214,1846594,1846632,1847398,1847478,1847670,1847715,1847890,1848263,
 
1848336,1848386,1848398,1848441,1848444,1848447,1848449,1848467,1848469,1848745,1848849-1848850
+/ofbiz/ofbiz-framework/trunk:1819499,1819598,1819800,1819805,1819811,1820038,1820262,1820374-1820375,1820441,1820457,1820644,1820658,1820790,1820823,1820949,1820966,1821012,1821036,1821112,1821115,1821144,1821186,1821219,1821226,1821230,1821386,1821613,1821628,1821965,1822125,1822310,1822377,1822383,1822393,1823467,1823562,1823876,1824314,1824316,1824732,1824803,1824847,1824855,1825192,1825211,1825216,1825233,1825450,1826374,1826502,1826592,1826671,1826674,1826805,1826938,1826997,1827439,1828255,1828316,1828346,1828424,1828512,1828514,1829690,1830936,1831074,1831078,1831234,1831608,1831831,1832577,1832662,1832756,1832800,1832944,1833173,1833211,1834181,1834191,1834736,1835235,1835887,1835891,1835953,1835964,1836144,1836871,1837857,1838032,1838256,1838381,1840189,1840199,1840828,1841657,1841662,1842372,1842921,1843225,1843893,1844943,1845418,1845420,1845466,1845544,1845552,1845558,1845933,1845995,1846097,1846107,1846214,1846594,1846632,1847398,1847478,1847670,1847715,1847890,1848263,
 
1848336,1848386,1848398,1848441,1848444,1848447,1848449,1848467,1848469,1848745,1848849-1848850,1849021

Modified: 
ofbiz/ofbiz-framework/branches/release17.12/applications/party/webapp/partymgr/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release17.12/applications/party/webapp/partymgr/WEB-INF/controller.xml?rev=1849022=1849021=1849022=diff
==
--- 
ofbiz/ofbiz-framework/branches/release17.12/applications/party/webapp/partymgr/WEB-INF/controller.xml
 (original)
+++ 
ofbiz/ofbiz-framework/branches/release17.12/applications/party/webapp/partymgr/WEB-INF/controller.xml
 Sun Dec 16 11:38:42 2018
@@ -943,9 +943,9 @@ under the License.
 
 
 
-
+
 
-
+
 
 
 
@@ -1411,7 +1411,7 @@ under the License.
 
 
 
-
+
 
 
 

Modified: 
ofbiz/ofbiz-framework/branches/release17.12/applications/party/widget/partymgr/PartyScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/branches/release17.12/applications/party/widget/partymgr/PartyScreens.xml?rev=1849022=1849021=1849022=diff
==
--- 
ofbiz/ofbiz-framework/branches/release17.12/applications/party/widget/partymgr/PartyScreens.xml
 (original)
+++ 
ofbiz/ofbiz-framework/branches/release17.12/applications/party/widget/partymgr/PartyScreens.xml
 Sun Dec 16 11:38:42 2018
@@ -911,7 +911,7 @@ under the License.
 
 
 
-
+
 
 
 
@@ 

svn commit: r1849021 - in /ofbiz/ofbiz-framework/trunk/applications/party: webapp/partymgr/WEB-INF/controller.xml widget/partymgr/PartyScreens.xml

2018-12-16 Thread deepak
Author: deepak
Date: Sun Dec 16 11:37:36 2018
New Revision: 1849021

URL: http://svn.apache.org/viewvc?rev=1849021=rev
Log:
Improved: request map to create party content in controller.xml exists twice
(OFBIZ-10699)
Renamed ambiguous controller request CreatePartyContent to EditPartyContent as 
per OOTB pattern.
Thanks Pierre Smits for reporting the issue and Jacques Le Roux for the the 
details and discussion

Modified:

ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml

ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml

Modified: 
ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml?rev=1849021=1849020=1849021=diff
==
--- 
ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml
 (original)
+++ 
ofbiz/ofbiz-framework/trunk/applications/party/webapp/partymgr/WEB-INF/controller.xml
 Sun Dec 16 11:37:36 2018
@@ -954,9 +954,9 @@ under the License.
 
 
 
-
+
 
-
+
 
 
 
@@ -1441,7 +1441,7 @@ under the License.
 
 
 
-
+
 
 
 

Modified: 
ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml
URL: 
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml?rev=1849021=1849020=1849021=diff
==
--- 
ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml 
(original)
+++ 
ofbiz/ofbiz-framework/trunk/applications/party/widget/partymgr/PartyScreens.xml 
Sun Dec 16 11:37:36 2018
@@ -915,7 +915,7 @@ under the License.
 
 
 
-
+
 
 
 
@@ -930,7 +930,7 @@ under the License.
 
 
 
-
+
 
 
 
@@ -942,7 +942,7 @@ under the License.
 
 
 
-
+
 
 
 




svn commit: r1849019 - in /ofbiz/tools/demo-backup: README.md all-manual.sh check-svn-update.sh stable-manual-nicely.sh stable-manual.sh trunk-manual-nicely.sh trunk-manual.sh

2018-12-16 Thread jleroux
Author: jleroux
Date: Sun Dec 16 09:40:24 2018
New Revision: 1849019

URL: http://svn.apache.org/viewvc?rev=1849019=rev
Log:
No functional changes.

Updates the documentation
Makes files same than on server (new line at end mostly)

Modified:
ofbiz/tools/demo-backup/README.md
ofbiz/tools/demo-backup/all-manual.sh
ofbiz/tools/demo-backup/check-svn-update.sh
ofbiz/tools/demo-backup/stable-manual-nicely.sh
ofbiz/tools/demo-backup/stable-manual.sh
ofbiz/tools/demo-backup/trunk-manual-nicely.sh
ofbiz/tools/demo-backup/trunk-manual.sh

Modified: ofbiz/tools/demo-backup/README.md
URL: 
http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/README.md?rev=1849019=1849018=1849019=diff
==
--- ofbiz/tools/demo-backup/README.md (original)
+++ ofbiz/tools/demo-backup/README.md Sun Dec 16 09:40:24 2018
@@ -42,9 +42,12 @@ directory, it is run by an ofbiz cron jo
 You should therefore only need to start/stop manually if there is
 a problem.
 
-If you want to restart only a single instance you can respectively use
-
+~~If you want to restart only a single instance you can respectively use
 trunk-manual-nicely.sh
 stable-manual-nicely.sh
-old-manual-nicely.sh
+old-manual-nicely.sh~~
+This does not work (at least for instances using Gradle. So currently R13.07 
is not affected you can use old-manual.sh).
+See why at https://issues.apache.org/jira/browse/OFBIZ-10287
+So you need to use trunk-manual-nicely.sh for now and restart all instances 
even if only one is changed.
+
 

Modified: ofbiz/tools/demo-backup/all-manual.sh
URL: 
http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/all-manual.sh?rev=1849019=1849018=1849019=diff
==
--- ofbiz/tools/demo-backup/all-manual.sh (original)
+++ ofbiz/tools/demo-backup/all-manual.sh Sun Dec 16 09:40:24 2018
@@ -4,4 +4,4 @@
 ./stable-manual.sh
 ./old-manual.sh
 
-cd /home/ofbizDemo
\ No newline at end of file
+cd /home/ofbizDemo

Modified: ofbiz/tools/demo-backup/check-svn-update.sh
URL: 
http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/check-svn-update.sh?rev=1849019=1849018=1849019=diff
==
--- ofbiz/tools/demo-backup/check-svn-update.sh (original)
+++ ofbiz/tools/demo-backup/check-svn-update.sh Sun Dec 16 09:40:24 2018
@@ -4,4 +4,4 @@
 # crontab -e
 # add : 0 3 * * * nice -n 19 ionice -c2 -n7 
/home/ofbizDemo/check-svn-update.sh > /home/ofbizDemo/cronlog-svn-update.log 
2>&1
 
-./all-manual.sh
\ No newline at end of file
+./all-manual.sh

Modified: ofbiz/tools/demo-backup/stable-manual-nicely.sh
URL: 
http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/stable-manual-nicely.sh?rev=1849019=1849018=1849019=diff
==
--- ofbiz/tools/demo-backup/stable-manual-nicely.sh (original)
+++ ofbiz/tools/demo-backup/stable-manual-nicely.sh Sun Dec 16 09:40:24 2018
@@ -2,4 +2,5 @@
 
 echo This does not work, see OFBIZ-10287. You need for now to use 
all-manual-nicely.sh
 
-#~ nohup nice -n 19 ionice -c2 -n7 ./stable-manual.sh &
\ No newline at end of file
+#~ nohup nice -n 19 ionice -c2 -n7 ./stable-manual.sh &
+

Modified: ofbiz/tools/demo-backup/stable-manual.sh
URL: 
http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/stable-manual.sh?rev=1849019=1849018=1849019=diff
==
--- ofbiz/tools/demo-backup/stable-manual.sh (original)
+++ ofbiz/tools/demo-backup/stable-manual.sh Sun Dec 16 09:40:24 2018
@@ -1,5 +1,7 @@
 #!/bin/sh
 
+echo This can't be used alone, see OFBIZ-10287. You need for now to use 
all-manual-nicely.sh
+
 cd /home/ofbizDemo/branch16.11
 svn up
 rm /home/ofbizDemo/branch16.11/framework/base/config/*.jks

Modified: ofbiz/tools/demo-backup/trunk-manual-nicely.sh
URL: 
http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/trunk-manual-nicely.sh?rev=1849019=1849018=1849019=diff
==
--- ofbiz/tools/demo-backup/trunk-manual-nicely.sh (original)
+++ ofbiz/tools/demo-backup/trunk-manual-nicely.sh Sun Dec 16 09:40:24 2018
@@ -2,4 +2,5 @@
 
 echo This does not work, see OFBIZ-10287. You need for now to use 
all-manual-nicely.sh
 
-#~ nohup nice -n 19 ionice -c2 -n7 ./trunk-manual.sh &
\ No newline at end of file
+#nohup nice -n 19 ionice -c2 -n7 ./trunk-manual.sh &
+

Modified: ofbiz/tools/demo-backup/trunk-manual.sh
URL: 
http://svn.apache.org/viewvc/ofbiz/tools/demo-backup/trunk-manual.sh?rev=1849019=1849018=1849019=diff
==
--- ofbiz/tools/demo-backup/trunk-manual.sh (original)
+++ ofbiz/tools/demo-backup/trunk-manual.sh Sun Dec 16 09:40:24 2018
@@ -1,4 +1,4 @@
-#~ #!/bin/sh
+#!/bin/sh
 
 echo This does not work, see OFBIZ-10287. You need for