You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by pa...@apache.org on 2020/02/07 16:13:24 UTC

[wicket] 01/02: Merge branch 'master' into csp-examples

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

papegaaij pushed a commit to branch csp-examples
in repository https://gitbox.apache.org/repos/asf/wicket.git

commit d0dc8917198e3a586cb0b9484da0cf3af12f748a
Merge: ed451e0 263cc1a
Author: Emond Papegaaij <em...@topicus.nl>
AuthorDate: Fri Feb 7 17:04:45 2020 +0100

    Merge branch 'master' into csp-examples

 .../java/org/apache/wicket/csp/CSPDirective.java   | 194 +++++++++
 .../wicket/csp/CSPDirectiveSandboxValue.java       |  37 +-
 .../apache/wicket/csp/CSPDirectiveSrcValue.java    |  61 +++
 .../apache/wicket/csp/CSPHeaderConfiguration.java  | 343 +++++++++++++++
 .../java/org/apache/wicket/csp/CSPHeaderMode.java  |  31 +-
 .../csp/CSPNonceHeaderResponseDecorator.java       |  61 +++
 .../java/org/apache/wicket/csp/CSPRenderable.java  |  57 +++
 .../wicket/csp/ContentSecurityPolicyEnforcer.java  | 227 ++++++++++
 .../java/org/apache/wicket/csp/FixedCSPValue.java  |  88 ++++
 .../org/apache/wicket/csp/RelativeURICSPValue.java |  72 ++++
 .../wicket/csp/ReportCSPViolationMapper.java       | 126 ++++++
 .../markup/head/filter/CspNonceHeaderResponse.java |  93 ----
 .../org/apache/wicket/markup/html/form/Form.java   |  19 +-
 .../apache/wicket/markup/html/form/SubmitLink.java |  16 +-
 .../wicket/markup/html/link/ExternalLink.java      |   7 +-
 .../org/apache/wicket/mock/MockWebResponse.java    |   6 +
 .../org/apache/wicket/page/PartialPageUpdate.java  |   6 +
 .../wicket/protocol/http/BufferedWebResponse.java  |   6 +
 .../protocol/http/HeaderBufferingWebResponse.java  |   6 +
 .../wicket/protocol/http/WebApplication.java       |  37 ++
 .../protocol/http/servlet/ServletWebResponse.java  |   6 +
 .../csp/CSPSettingRequestCycleListenerTest.java    | 467 +++++++++++++++++++++
 .../markup/head/filter/CspNoncePageExpected.html   |   3 +-
 .../head/filter/FilteringHeaderResponseTest.java   |  31 +-
 .../apache/wicket/markup/html/form/FormTest.java   |   4 +-
 .../wicket/examples/WicketExampleApplication.java  |   1 +
 .../apache/wicket/examples/WicketExamplePage.html  |   4 +-
 .../examples/asemail/MailTemplateApplication.java  |   4 +-
 .../examples/authorization/RolesApplication.java   |   4 +-
 .../examples/breadcrumb/BreadCrumbApplication.java |   3 +-
 .../apache/wicket/examples/cdi/CdiApplication.java |   4 +-
 .../wicket/examples/compref/SubmitLinkPage.html    |   2 +-
 .../wicket/examples/compref/SubmitLinkPage.java    |  15 +-
 .../apache/wicket/examples/csp/CspApplication.java |  35 +-
 .../CustomLoadedTemplate.html                      |   4 +-
 .../examples/kittenCaptcha/WicketApplication.java  |   4 +-
 .../examples/repeater/RepeaterApplication.java     |   4 +-
 .../ResourceDecorationApplication.java             |   3 +-
 .../spring/common/web/ExampleApplication.java      |   4 +-
 .../wicket/examples/tree/TreeApplication.java      |   3 +-
 .../velocity/VelocityTemplateApplication.java      |   4 +-
 .../examples/websocket/JSR356Application.java      |   7 +-
 .../wicket/examples/wizard/WizardApplication.java  |   4 +-
 .../wicket/protocol/ws/api/WebSocketResponse.java  |   5 +
 .../apache/wicket/request/http/WebResponse.java    |   9 +
 45 files changed, 1924 insertions(+), 203 deletions(-)