This is an automated email from the ASF dual-hosted git repository.
papegaaij pushed a change to branch wicket-10.x
in repository https://gitbox.apache.org/repos/asf/wicket.git
from 4211a1cf49 restrict SourcesPage to resources of the page's own package
(#1523)
new 600e3b732a Validate locale/style/variation decoded from resource URLs
new 71f86141a6 Enforce the configured upload limits on the Servlet Part
fallback
new 00ded8b78a Distinguish page renders from listener invocations in
resource isolation
new 9edff354b6 Respect escapeModelStrings in the editable labels and their
editors
new 1597d6348e Clarify two constants in the resource URL and upload limit
tests
The 5 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:
.../upload/FileUploadServletPartLimitsTest.java | 461 +++++++++++++++++++++
.../ResourceIsolationRequestCycleListenerTest.java | 107 ++++-
.../ResourceUrlAttributeValidationTest.java | 223 ++++++++++
.../apache/wicket/resource/ResourceUtilTest.java | 67 +++
.../resource/locator/ResourceNameIterator.java | 9 +-
.../http/FetchMetadataResourceIsolationPolicy.java | 84 +++-
.../protocol/http/IResourceIsolationPolicy.java | 50 ++-
.../ResourceIsolationRequestCycleListener.java | 26 +-
.../servlet/MultipartServletWebRequestImpl.java | 74 +++-
.../org/apache/wicket/resource/ResourceUtil.java | 71 +++-
.../ajax/markup/html/AjaxEditableChoiceLabel.java | 25 +-
.../ajax/markup/html/AjaxEditableLabel.java | 7 +
.../markup/html/AjaxEditableMultiLineLabel.java | 7 +
.../AjaxEditableLabelEscapeModelStringsTest.java | 246 +++++++++++
.../src/main/asciidoc/security/security_5.adoc | 26 ++
15 files changed, 1441 insertions(+), 42 deletions(-)
create mode 100644
wicket-core-tests/src/test/java/org/apache/wicket/markup/html/form/upload/FileUploadServletPartLimitsTest.java
create mode 100644
wicket-core-tests/src/test/java/org/apache/wicket/request/resource/ResourceUrlAttributeValidationTest.java
create mode 100644
wicket-extensions/src/test/java/org/apache/wicket/extensions/ajax/markup/html/AjaxEditableLabelEscapeModelStringsTest.java