This is an automated email from the ASF dual-hosted git repository.
reiern70 pushed a change to branch reiern70/WICKET-7033
in repository https://gitbox.apache.org/repos/asf/wicket.git
omit 3c9c69185f [WICKET-7033] implementation of: 1) an upload field that
allows uploading files into to a mounted resource, 2) a reusable mounted
resource that process uploads and 3) adapting upload progress bar to work in
such use case
add 70e745d3ac [WICKET-7048] AjaxClientInfoBehavior is AJAX timer based.
This seems not to work reliable in all situations. We add a
AjaxOnDomReadyClientInfoBehavior that uses DOMREADY and seems to work more
reliable.
add 3e1a9bb6f2 [WICKET-7050] make DefaultExceptionMapper more configurable
for the case an exception happens while original exception is mapped.
add 06c112a759 WICKET-7049 Avoid allocating a string buffer for empty
header buckets (#581)
add afd3b8f822 WICKET-7045 PageParameter optimizations (#577)
add b010ce7197 WICKET-7046 Avoid allocating `StringResponse` when no
response filters are active (#578)
add 616da32ec1 WICKET-7047 Improve initial buffer capacity for
multiline-markup (#579)
add 240623fb81 WICKET-6979 Cut back slightly on some String instance
creation in PageInfo (#522)
new 791784f6ab [WICKET-7033] implementation of: 1) an upload field that
allows uploading files into to a mounted resource, 2) a reusable mounted
resource that process uploads and 3) adapting upload progress bar to work in
such use case
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (3c9c69185f)
\
N -- N -- N refs/heads/reiern70/WICKET-7033 (791784f6ab)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
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:
.../org/apache/wicket/DefaultExceptionMapper.java | 33 ++++++++++-----
....java => AjaxOnDomReadyClientInfoBehavior.java} | 47 +++++++---------------
.../org/apache/wicket/ajax/AjaxRequestHandler.java | 35 +++++++++-------
.../request/mapper/AbstractBookmarkableMapper.java | 4 +-
.../head/filter/FilteringHeaderResponse.java | 4 +-
.../resource/AbstractFileUploadResource.java | 2 +
.../AjaxHelloBrowserOnDomReady.html} | 2 +-
.../AjaxHelloBrowserOnDomReady.java} | 12 +++---
.../HelloBrowserOnDomReadyApplication.java} | 6 +--
.../apache/wicket/examples/homepage/HomePage.html | 1 +
wicket-examples/src/main/webapp/WEB-INF/web.xml | 16 ++++++++
.../wicket/request/mapper/info/ComponentInfo.java | 5 ++-
.../request/mapper/info/PageComponentInfo.java | 16 +++-----
.../wicket/request/mapper/info/PageInfo.java | 13 ++----
.../request/mapper/parameter/PageParameters.java | 45 ++++++++++++++++-----
.../org/apache/wicket/util/string/Strings.java | 9 +++--
16 files changed, 144 insertions(+), 106 deletions(-)
copy
wicket-core/src/main/java/org/apache/wicket/ajax/{AjaxClientInfoBehavior.java
=> AjaxOnDomReadyClientInfoBehavior.java} (75%)
copy
wicket-examples/src/main/java/org/apache/wicket/examples/{ajaxhellobrowser/AjaxHelloBrowser.html
=> ajaxhellowbrowserondomready/AjaxHelloBrowserOnDomReady.html} (84%)
copy
wicket-examples/src/main/java/org/apache/wicket/examples/{ajaxhellobrowser/AjaxHelloBrowser.java
=> ajaxhellowbrowserondomready/AjaxHelloBrowserOnDomReady.java} (92%)
copy
wicket-examples/src/main/java/org/apache/wicket/examples/{ajaxhellobrowser/HelloBrowserApplication.java
=> ajaxhellowbrowserondomready/HelloBrowserOnDomReadyApplication.java} (84%)