You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2020/12/28 15:03:08 UTC

[struts] branch master updated (4b1262e -> f91c558)

This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git.


    from 4b1262e  Uses proper URLs for Jenkins
     add f254019  WW-5063 Adds null check for ActionInvocation
     add fbdcd2c  WW-5063 Adds tests to cover new functionality
     new f91c558  Merge pull request #461 from apache/WW-5063-null-check

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../com/opensymphony/xwork2/ActionChainResult.java |  4 +++
 .../main/java/com/opensymphony/xwork2/Result.java  |  2 +-
 .../apache/struts2/result/HttpHeaderResult.java    |  8 +++--
 .../org/apache/struts2/result/PlainResult.java     |  4 +++
 .../org/apache/struts2/result/PostbackResult.java  |  4 +++
 .../result/ServletActionRedirectResult.java        |  4 +++
 .../struts2/result/ServletRedirectResult.java      |  4 +++
 .../org/apache/struts2/views/xslt/XSLTResult.java  |  8 +++--
 .../src/site/resources/tags/action-attributes.html |  2 +-
 core/src/site/resources/tags/bean-attributes.html  |  2 +-
 core/src/site/resources/tags/date-attributes.html  |  2 +-
 .../site/resources/tags/iterator-attributes.html   |  2 +-
 .../src/site/resources/tags/number-attributes.html |  2 +-
 core/src/site/resources/tags/set-attributes.html   |  4 +--
 core/src/site/resources/tags/text-attributes.html  |  2 +-
 core/src/site/resources/tags/url-attributes.html   |  2 +-
 ...{VoidResult.java => ActionChainResultTest.java} | 30 +++++++++----------
 .../struts2/result/HttpHeaderResultTest.java       | 34 +++++++++++++++-------
 .../org/apache/struts2/result/PlainResultTest.java | 11 +++++++
 .../apache/struts2/result/PostbackResultTest.java  | 13 ++++++++-
 .../struts2/result/ServletRedirectResultTest.java  | 13 ++++++++-
 .../apache/struts2/views/xslt/XSLTResultTest.java  | 12 ++++++++
 .../org/apache/struts2/views/gxp/GxpResult.java    | 10 +++++--
 .../java/org/apache/struts2/json/JSONResult.java   |  4 +++
 .../org/apache/struts2/json/JSONResultTest.java    | 11 +++++++
 .../result/PortletActionRedirectResult.java        |  4 +++
 26 files changed, 152 insertions(+), 46 deletions(-)
 copy core/src/test/java/com/opensymphony/xwork2/{VoidResult.java => ActionChainResultTest.java} (64%)


[struts] 01/01: Merge pull request #461 from apache/WW-5063-null-check

Posted by lu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

lukaszlenart pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/struts.git

commit f91c558ee867039aee9934254e2f0c73e492a732
Merge: 4b1262e fbdcd2c
Author: Lukasz Lenart <lu...@apache.org>
AuthorDate: Mon Dec 28 16:02:55 2020 +0100

    Merge pull request #461 from apache/WW-5063-null-check
    
    [WW-5063] Adds null check for ActionInvocation

 .../com/opensymphony/xwork2/ActionChainResult.java |  4 +++
 .../main/java/com/opensymphony/xwork2/Result.java  |  2 +-
 .../apache/struts2/result/HttpHeaderResult.java    |  8 +++--
 .../org/apache/struts2/result/PlainResult.java     |  4 +++
 .../org/apache/struts2/result/PostbackResult.java  |  4 +++
 .../result/ServletActionRedirectResult.java        |  4 +++
 .../struts2/result/ServletRedirectResult.java      |  4 +++
 .../org/apache/struts2/views/xslt/XSLTResult.java  |  8 +++--
 .../src/site/resources/tags/action-attributes.html |  2 +-
 core/src/site/resources/tags/bean-attributes.html  |  2 +-
 core/src/site/resources/tags/date-attributes.html  |  2 +-
 .../site/resources/tags/iterator-attributes.html   |  2 +-
 .../src/site/resources/tags/number-attributes.html |  2 +-
 core/src/site/resources/tags/set-attributes.html   |  4 +--
 core/src/site/resources/tags/text-attributes.html  |  2 +-
 core/src/site/resources/tags/url-attributes.html   |  2 +-
 .../opensymphony/xwork2/ActionChainResultTest.java | 39 ++++++++++++++++++++++
 .../struts2/result/HttpHeaderResultTest.java       | 34 +++++++++++++------
 .../org/apache/struts2/result/PlainResultTest.java | 11 ++++++
 .../apache/struts2/result/PostbackResultTest.java  | 13 +++++++-
 .../struts2/result/ServletRedirectResultTest.java  | 13 +++++++-
 .../apache/struts2/views/xslt/XSLTResultTest.java  | 12 +++++++
 .../org/apache/struts2/views/gxp/GxpResult.java    | 10 ++++--
 .../java/org/apache/struts2/json/JSONResult.java   |  4 +++
 .../org/apache/struts2/json/JSONResultTest.java    | 11 ++++++
 .../result/PortletActionRedirectResult.java        |  4 +++
 26 files changed, 177 insertions(+), 30 deletions(-)