This is an automated email from the ASF dual-hosted git repository. markt pushed a change to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git.
from 41ea849 When using WebDAV to copy a file resource to a destination that requires a collection to be overwritten, ensure that the operation succeeds rather than fails (with a 500 response). This enables Tomcat to pass two additional tests from the Litmus WebDAV test suite. new 806b2f9 Add version info to deprecation markers new 486e49e Fix https://bz.apache.org/bugzilla/show_bug.cgi?id=49464 The 2 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: conf/web.xml | 5 + java/org/apache/catalina/core/StandardContext.java | 12 +- .../apache/catalina/servlets/DefaultServlet.java | 249 +++++++++++++++--- .../servlets/DefaultServletEncodingBaseTest.java | 284 +++++++++++++++++++++ .../catalina/servlets/TestDefaultServlet.java | 48 ++-- .../TestDefaultServletEncodingWithBom.java | 11 +- .../TestDefaultServletEncodingWithoutBom.java | 11 +- test/webapp/404.html | 1 + test/webapp/bug49nnn/bug49464-cp1252.txt | 1 + test/webapp/bug49nnn/bug49464-ibm850.txt | 1 + test/webapp/bug49nnn/bug49464-iso-8859-1.txt | 1 + test/webapp/bug49nnn/bug49464-utf-8-bom.txt | 1 + test/webapp/bug49nnn/bug49464-utf-8.txt | 1 + webapps/docs/changelog.xml | 5 + 14 files changed, 549 insertions(+), 82 deletions(-) create mode 100644 test/org/apache/catalina/servlets/DefaultServletEncodingBaseTest.java copy java/org/apache/catalina/servlets/Constants.java => test/org/apache/catalina/servlets/TestDefaultServletEncodingWithBom.java (83%) copy java/org/apache/catalina/servlets/Constants.java => test/org/apache/catalina/servlets/TestDefaultServletEncodingWithoutBom.java (83%) create mode 100644 test/webapp/404.html create mode 100644 test/webapp/bug49nnn/bug49464-cp1252.txt create mode 100644 test/webapp/bug49nnn/bug49464-ibm850.txt create mode 100644 test/webapp/bug49nnn/bug49464-iso-8859-1.txt create mode 100644 test/webapp/bug49nnn/bug49464-utf-8-bom.txt create mode 100644 test/webapp/bug49nnn/bug49464-utf-8.txt --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org