[jira] [Commented] (TAP5-2578) Changed constructor signature JSONObject(JSONObject, String...)

2017-04-19 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/TAP5-2578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15974258#comment-15974258
 ] 

Hudson commented on TAP5-2578:
--

FAILURE: Integrated in Jenkins build tapestry-trunk-freestyle #1630 (See 
[https://builds.apache.org/job/tapestry-trunk-freestyle/1630/])
TAP5-2578: restore constructor signature from before the tapestry-json 
(jkemnade: rev 006390ddf96aa4a7473e23e94105091b3bd60f18)
* (edit) tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java


> Changed constructor signature JSONObject(JSONObject, String...)
> ---
>
> Key: TAP5-2578
> URL: https://issues.apache.org/jira/browse/TAP5-2578
> Project: Tapestry 5
>  Issue Type: Bug
>  Components: tapestry-json
>Affects Versions: 5.4.2
>Reporter: Jochen Kemnade
>Assignee: Jochen Kemnade
>  Labels: regression
> Fix For: 5.5.0, 5.4.3
>
>
> In Tapestry 5.4.2, the constructor {{public JSONObject(JSONObject source, 
> String... propertyNames)}} changed to {{public JSONObject(JSONObject 
> copyFrom, String[] names)}}. That means that you can no longer use {code}new 
> JSONObject(source, "key1"){code}. You can use {code}new JSONObject(source, 
> new String[]{"key1"}){code} as a workaround.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Closed] (TAP5-2578) Changed constructor signature JSONObject(JSONObject, String...)

2017-04-19 Thread Jochen Kemnade (JIRA)

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

Jochen Kemnade closed TAP5-2578.

   Resolution: Fixed
 Assignee: Jochen Kemnade
Fix Version/s: 5.4.3
   5.5.0

> Changed constructor signature JSONObject(JSONObject, String...)
> ---
>
> Key: TAP5-2578
> URL: https://issues.apache.org/jira/browse/TAP5-2578
> Project: Tapestry 5
>  Issue Type: Bug
>  Components: tapestry-json
>Affects Versions: 5.4.2
>Reporter: Jochen Kemnade
>Assignee: Jochen Kemnade
>  Labels: regression
> Fix For: 5.5.0, 5.4.3
>
>
> In Tapestry 5.4.2, the constructor {{public JSONObject(JSONObject source, 
> String... propertyNames)}} changed to {{public JSONObject(JSONObject 
> copyFrom, String[] names)}}. That means that you can no longer use {code}new 
> JSONObject(source, "key1"){code}. You can use {code}new JSONObject(source, 
> new String[]{"key1"}){code} as a workaround.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Commented] (TAP5-2578) Changed constructor signature JSONObject(JSONObject, String...)

2017-04-19 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/TAP5-2578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15974252#comment-15974252
 ] 

ASF subversion and git services commented on TAP5-2578:
---

Commit a3bc8aac780fbc42d4e9eb1964cec98747f5b583 in tapestry-5's branch 
refs/heads/5.4.x from [~jkemnade]
[ https://git-wip-us.apache.org/repos/asf?p=tapestry-5.git;h=a3bc8aa ]

TAP5-2578: restore constructor signature from before the tapestry-json
rewrite


> Changed constructor signature JSONObject(JSONObject, String...)
> ---
>
> Key: TAP5-2578
> URL: https://issues.apache.org/jira/browse/TAP5-2578
> Project: Tapestry 5
>  Issue Type: Bug
>  Components: tapestry-json
>Affects Versions: 5.4.2
>Reporter: Jochen Kemnade
>  Labels: regression
>
> In Tapestry 5.4.2, the constructor {{public JSONObject(JSONObject source, 
> String... propertyNames)}} changed to {{public JSONObject(JSONObject 
> copyFrom, String[] names)}}. That means that you can no longer use {code}new 
> JSONObject(source, "key1"){code}. You can use {code}new JSONObject(source, 
> new String[]{"key1"}){code} as a workaround.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


tapestry-5 git commit: TAP5-2578: restore constructor signature from before the tapestry-json rewrite

2017-04-19 Thread jkemnade
Repository: tapestry-5
Updated Branches:
  refs/heads/5.4.x 245857b51 -> a3bc8aac7


TAP5-2578: restore constructor signature from before the tapestry-json
rewrite


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/a3bc8aac
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/a3bc8aac
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/a3bc8aac

Branch: refs/heads/5.4.x
Commit: a3bc8aac780fbc42d4e9eb1964cec98747f5b583
Parents: 245857b
Author: Jochen Kemnade 
Authored: Wed Apr 19 09:45:54 2017 +0200
Committer: Jochen Kemnade 
Committed: Wed Apr 19 09:47:08 2017 +0200

--
 .../src/main/java/org/apache/tapestry5/json/JSONObject.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/a3bc8aac/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
--
diff --git 
a/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java 
b/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
index 0073ad9..f5727fa 100644
--- a/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
+++ b/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
@@ -171,7 +171,7 @@ public final class JSONObject extends JSONCollection {
  * @param namesThe names of the fields to copy.
  * @throws RuntimeException On internal errors. Shouldn't happen.
  */
-public JSONObject(JSONObject copyFrom, String[] names) {
+public JSONObject(JSONObject copyFrom, String... names) {
 this();
 for (String name : names) {
 Object value = copyFrom.opt(name);



[jira] [Commented] (TAP5-2578) Changed constructor signature JSONObject(JSONObject, String...)

2017-04-19 Thread ASF subversion and git services (JIRA)

[ 
https://issues.apache.org/jira/browse/TAP5-2578?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15974251#comment-15974251
 ] 

ASF subversion and git services commented on TAP5-2578:
---

Commit 006390ddf96aa4a7473e23e94105091b3bd60f18 in tapestry-5's branch 
refs/heads/master from [~jkemnade]
[ https://git-wip-us.apache.org/repos/asf?p=tapestry-5.git;h=006390d ]

TAP5-2578: restore constructor signature from before the tapestry-json
rewrite


> Changed constructor signature JSONObject(JSONObject, String...)
> ---
>
> Key: TAP5-2578
> URL: https://issues.apache.org/jira/browse/TAP5-2578
> Project: Tapestry 5
>  Issue Type: Bug
>  Components: tapestry-json
>Affects Versions: 5.4.2
>Reporter: Jochen Kemnade
>  Labels: regression
>
> In Tapestry 5.4.2, the constructor {{public JSONObject(JSONObject source, 
> String... propertyNames)}} changed to {{public JSONObject(JSONObject 
> copyFrom, String[] names)}}. That means that you can no longer use {code}new 
> JSONObject(source, "key1"){code}. You can use {code}new JSONObject(source, 
> new String[]{"key1"}){code} as a workaround.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


tapestry-5 git commit: TAP5-2578: restore constructor signature from before the tapestry-json rewrite

2017-04-19 Thread jkemnade
Repository: tapestry-5
Updated Branches:
  refs/heads/master 112014a51 -> 006390ddf


TAP5-2578: restore constructor signature from before the tapestry-json
rewrite


Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo
Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/006390dd
Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/006390dd
Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/006390dd

Branch: refs/heads/master
Commit: 006390ddf96aa4a7473e23e94105091b3bd60f18
Parents: 112014a
Author: Jochen Kemnade 
Authored: Wed Apr 19 09:45:54 2017 +0200
Committer: Jochen Kemnade 
Committed: Wed Apr 19 09:45:54 2017 +0200

--
 .../src/main/java/org/apache/tapestry5/json/JSONObject.java| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
--


http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/006390dd/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
--
diff --git 
a/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java 
b/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
index 0073ad9..f5727fa 100644
--- a/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
+++ b/tapestry-json/src/main/java/org/apache/tapestry5/json/JSONObject.java
@@ -171,7 +171,7 @@ public final class JSONObject extends JSONCollection {
  * @param namesThe names of the fields to copy.
  * @throws RuntimeException On internal errors. Shouldn't happen.
  */
-public JSONObject(JSONObject copyFrom, String[] names) {
+public JSONObject(JSONObject copyFrom, String... names) {
 this();
 for (String name : names) {
 Object value = copyFrom.opt(name);



[jira] [Updated] (TAP5-2578) Changed constructor signature JSONObject(JSONObject, String...)

2017-04-19 Thread Jochen Kemnade (JIRA)

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

Jochen Kemnade updated TAP5-2578:
-
Description: In Tapestry 5.4.2, the constructor {{public 
JSONObject(JSONObject source, String... propertyNames)}} changed to {{public 
JSONObject(JSONObject copyFrom, String[] names)}}. That means that you can no 
longer use {code}new JSONObject(source, "key1"){code}. You can use {code}new 
JSONObject(source, new String[]{"key1"}){code} as a workaround.  (was: In 
Tapestry 5.4.2, the constructor {{public JSONObject(JSONObject source, 
String... propertyNames)}} changed to {{public JSONObject(JSONObject copyFrom, 
String[] names)}}. That means that you can no longer use {{new 
JSONObject(source, "key1")}}. You can use {{JSONObject(source, new 
String[]{"key1"})}} as a workaround.)

> Changed constructor signature JSONObject(JSONObject, String...)
> ---
>
> Key: TAP5-2578
> URL: https://issues.apache.org/jira/browse/TAP5-2578
> Project: Tapestry 5
>  Issue Type: Bug
>  Components: tapestry-json
>Affects Versions: 5.4.2
>Reporter: Jochen Kemnade
>  Labels: regression
>
> In Tapestry 5.4.2, the constructor {{public JSONObject(JSONObject source, 
> String... propertyNames)}} changed to {{public JSONObject(JSONObject 
> copyFrom, String[] names)}}. That means that you can no longer use {code}new 
> JSONObject(source, "key1"){code}. You can use {code}new JSONObject(source, 
> new String[]{"key1"}){code} as a workaround.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


[jira] [Created] (TAP5-2578) Changed constructor signature JSONObject(JSONObject, String...)

2017-04-19 Thread Jochen Kemnade (JIRA)
Jochen Kemnade created TAP5-2578:


 Summary: Changed constructor signature JSONObject(JSONObject, 
String...)
 Key: TAP5-2578
 URL: https://issues.apache.org/jira/browse/TAP5-2578
 Project: Tapestry 5
  Issue Type: Bug
  Components: tapestry-json
Affects Versions: 5.4.2
Reporter: Jochen Kemnade


In Tapestry 5.4.2, the constructor {{public JSONObject(JSONObject source, 
String... propertyNames)}} changed to {{public JSONObject(JSONObject copyFrom, 
String[] names)}}. That means that you can no longer use {{new 
JSONObject(source, "key1")}}. You can use {{JSONObject(source, new 
String[]{"key1"})}} as a workaround.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)


svn commit: r1010702 - in /websites/production/tapestry/content: 2015/12/21/tapestry-540.html 2017/ 2017/04/ 2017/04/19/ 2017/04/19/tapestry-542.html cache/main.pageCache index.html indexv2.html news.

2017-04-19 Thread buildbot
Author: buildbot
Date: Wed Apr 19 07:20:53 2017
New Revision: 1010702

Log:
Production update by buildbot for tapestry

Added:
websites/production/tapestry/content/2017/
websites/production/tapestry/content/2017/04/
websites/production/tapestry/content/2017/04/19/
websites/production/tapestry/content/2017/04/19/tapestry-542.html
Modified:
websites/production/tapestry/content/2015/12/21/tapestry-540.html
websites/production/tapestry/content/cache/main.pageCache
websites/production/tapestry/content/index.html
websites/production/tapestry/content/indexv2.html
websites/production/tapestry/content/news.html

Modified: websites/production/tapestry/content/2015/12/21/tapestry-540.html
==
--- websites/production/tapestry/content/2015/12/21/tapestry-540.html (original)
+++ websites/production/tapestry/content/2015/12/21/tapestry-540.html Wed Apr 
19 07:20:53 2017
@@ -36,9 +36,9 @@
 
   
 
-
-HomeGetting StartedDocumentationDownloadAboutCommunityhttp://www.apache.org/;>Apachehttp://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thanks
-
+HomeGetting 
StartedDocumentationDownloadAbouthttp://www.apache.org/licenses/LICENSE-2.0;>LicenseCommunityhttp://www.apache.org/security/;>Securityhttp://www.apache.org/;>Apachehttp://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thanks
+
+
 
   
 Tapestry docs, issues, wikis  blogs:
@@ -47,7 +47,15 @@
   
 
 
-http://tapestry.apache.org/images/tapestry_small.png; 
data-image-src="http://tapestry.apache.org/images/tapestry_small.png;>Tapestry 5.4.0
+
+
+
+http://tapestry.apache.org/images/tapestry_small.png; 
data-image-src="http://tapestry.apache.org/images/tapestry_small.png;>
+
+
+Tapestry 5.4.0
+
+
   
   
 
@@ -59,7 +67,7 @@
   
 
   
-The long wait is finally over. 
We are happy to announce the availability of the 5.4.0 release.Although 
a lot has changed under the hood, for most users, it should be a drop-in 
replacement for any version of the 5.3 series. Please head over to the Release Notes to read about the 
numerous changes that the 5.4.0 version brings and that make this release on of 
the best we ever made.The release is available 
from the Maven Central Repository, or as ahttps://tapestry.apache.org/download.html;>direct 
download. And as always, if you 
experience any issues with the new version, please report them on the mailto:tapestry-us...@apache.org; 
rel="nofollow">users' mailing list or create a https://issues.apache.org/jira/br
 owse/TAP5">JIRA issue.Enjoy!
+The long wait is finally over. 
We are happy to announce the availability of the 5.4.0 release.Although 
a lot has changed under the hood, for most users, it should be a drop-in 
replacement for any version of the 5.3 series. Please head over to the Release Notes to read about the 
numerous changes that the 5.4.0 version brings and that make this release one 
of the best we ever made.The release is 
available from the Maven Central Repository, or as ahttps://tapestry.apache.org/download.html;>direct 
download. And as always, if you 
experience any issues with the new version, please report them on the mailto:tapestry-us...@apache.org; 
rel="nofollow">users' mailing list or create a https://issues.apache.org/jira/b
 rowse/TAP5">JIRA issue.Enjoy!
   
 
   

Added: websites/production/tapestry/content/2017/04/19/tapestry-542.html
==
--- websites/production/tapestry/content/2017/04/19/tapestry-542.html (added)
+++ websites/production/tapestry/content/2017/04/19/tapestry-542.html Wed Apr 
19 07:20:53 2017
@@ -0,0 +1,100 @@
+
+   
+   
+
+
+  
+  
+   
+  
+  Tapestry 5.4.2 -- Apache Tapestry
+  
+  
+
+  
+  
+
+
+
+
+
+  
+
+HomeGetting 
StartedDocumentationDownloadAbouthttp://www.apache.org/licenses/LICENSE-2.0;>LicenseCommunityhttp://www.apache.org/security/;>Securityhttp://www.apache.org/;>Apachehttp://www.apache.org/foundation/sponsorship.html;>Sponsorshiphttp://www.apache.org/foundation/thanks.html;>Thanks
+
+
+
+  
+Tapestry docs, issues, wikis  blogs:
+http://tapestry.apache.org/search.html;>
+  
+  
+
+
+
+
+
+http://tapestry.apache.org/images/tapestry_small.png; 
data-image-src="http://tapestry.apache.org/images/tapestry_small.png;>
+
+
+Tapestry 5.4.2
+
+
+  
+  
+
+  
+
+  
+Apache 
Tapestry20170419Tapestry 5.4.2
+https://cwiki.apache.org/confluence/pages/editpage.action?pageId=69406657;>edit
+  
+
+  
+We have created another release 
in the 5.4.x series. This should be a drop-in replacement for 5.4.x.Release Notes
+  
+
+  
+
+
+Apache Tapestry, Tapestry, Apache, the Apache 

svn commit: r1010700 - in /websites/production/tapestry/content: archetype-catalog.xml doap.rdf

2017-04-19 Thread jkemnade
Author: jkemnade
Date: Wed Apr 19 06:28:10 2017
New Revision: 1010700

Log:
updates for 5.4.2

Modified:
websites/production/tapestry/content/archetype-catalog.xml
websites/production/tapestry/content/doap.rdf

Modified: websites/production/tapestry/content/archetype-catalog.xml
==
--- websites/production/tapestry/content/archetype-catalog.xml (original)
+++ websites/production/tapestry/content/archetype-catalog.xml Wed Apr 19 
06:28:10 2017
@@ -6,7 +6,7 @@
 
org.apache.tapestry 
quickstart 
-   5.4.1 
+   5.4.2 
Tapestry 5 Quickstart 
Project 

 

Modified: websites/production/tapestry/content/doap.rdf
==
--- websites/production/tapestry/content/doap.rdf (original)
+++ websites/production/tapestry/content/doap.rdf Wed Apr 19 06:28:10 2017
@@ -45,8 +45,8 @@
 
   
 Apache Tapestry
-2016-03-20
-5.4.1
+2016-04-13
+5.4.2