You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2021/08/16 11:30:42 UTC

[wicket] branch WICKET-6913-replace-cglib-with-bytebuddy-wicket-10.x updated (48a12e7 -> 582e494)

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

mgrigorov pushed a change to branch WICKET-6913-replace-cglib-with-bytebuddy-wicket-10.x
in repository https://gitbox.apache.org/repos/asf/wicket.git.


    from 48a12e7  WICKET-6913 Fix typos in javadoc
     add 8f8ccea  Bump SLF4J to 2.0.0-alpha3
     add d22d154  WICKET-6914  Visibility change of "File Upload" via ajax causes "missing" form-data
     add e1930d2  Simplify JUnit assertions
     add 47cf4ff  WICKET-6914 Visibility change of "File Upload" via ajax causes "missing" form-data
     add 866fefc  Explicitly install OpenJDK 11 and Maven
     add 3865a88  Merge branch 'master' into WICKET-6913-replace-cglib-with-bytebuddy-wicket-10.x
     add ba21696  Bump SLF4J to 2.0.0-alpha4
     add 582e494  Merge branch 'master' into WICKET-6913-replace-cglib-with-bytebuddy-wicket-10.x

No new revisions were added by this update.

Summary of changes:
 .travis.yml                                        |  2 +-
 pom.xml                                            |  2 +-
 .../http/MultipartFormComponentListener.java       | 52 ++++++++++++++
 .../wicket/protocol/http/WebApplication.java       |  6 +-
 .../wicket/markup/html/form/FormMultiPartTest.java | 20 +++---
 .../wicket/markup/html/form/MultiPartFormPage.java |  4 +-
 .../http/MultipartFormComponentListenerBean.java}  | 63 ++++++-----------
 .../http/MultipartFormComponentListenerPage.html   | 17 +++++
 .../http/MultipartFormComponentListenerPage.java   | 80 ++++++++++++++++++++++
 .../http/MultipartFormComponentListenerTest.java   | 51 ++++++++++++++
 10 files changed, 240 insertions(+), 57 deletions(-)
 create mode 100644 wicket-core/src/main/java/org/apache/wicket/protocol/http/MultipartFormComponentListener.java
 copy wicket-core/src/test/java/org/apache/wicket/{core/util/tester/apps_1/Book.java => protocol/http/MultipartFormComponentListenerBean.java} (58%)
 create mode 100644 wicket-core/src/test/java/org/apache/wicket/protocol/http/MultipartFormComponentListenerPage.html
 create mode 100644 wicket-core/src/test/java/org/apache/wicket/protocol/http/MultipartFormComponentListenerPage.java
 create mode 100644 wicket-core/src/test/java/org/apache/wicket/protocol/http/MultipartFormComponentListenerTest.java