Skip to content

Commit

Permalink
Fix CSS classes in Javadoc HTML tables due to upgrade to Java 17
Browse files Browse the repository at this point in the history
Closes gh-30701
  • Loading branch information
sbrannen committed Jun 20, 2023
1 parent 2b98165 commit 67798a7
Show file tree
Hide file tree
Showing 17 changed files with 503 additions and 518 deletions.
Expand Up @@ -60,74 +60,74 @@
* <p>This exception resolver is enabled by default in the common Spring
* {@link org.springframework.web.servlet.DispatcherServlet}.
*
* <h3>Supported Exceptions</h3>
* <table>
* <caption>Supported Exceptions</caption>
* <thead>
* <tr>
* <th class="colFirst">Exception</th>
* <th class="colLast">HTTP Status Code</th>
* <th class="table-header col-first">Exception</th>
* <th class="table-header col-last">HTTP Status Code</th>
* </tr>
* </thead>
* <tbody>
* <tr class="altColor">
* <td><p>HttpRequestMethodNotSupportedException</p></td>
* <td><p>405 (SC_METHOD_NOT_ALLOWED)</p></td>
* <tr class="even-row-color">
* <td><div class="block">HttpRequestMethodNotSupportedException</div></td>
* <td><div class="block">405 (SC_METHOD_NOT_ALLOWED)</div></td>
* </tr>
* <tr class="rowColor">
* <td><p>HttpMediaTypeNotSupportedException</p></td>
* <td><p>415 (SC_UNSUPPORTED_MEDIA_TYPE)</p></td>
* <tr class="odd-row-color">
* <td><div class="block">HttpMediaTypeNotSupportedException</div></td>
* <td><div class="block">415 (SC_UNSUPPORTED_MEDIA_TYPE)</div></td>
* </tr>
* <tr class="altColor">
* <td><p>HttpMediaTypeNotAcceptableException</p></td>
* <td><p>406 (SC_NOT_ACCEPTABLE)</p></td>
* <tr class="even-row-color">
* <td><div class="block">HttpMediaTypeNotAcceptableException</div></td>
* <td><div class="block">406 (SC_NOT_ACCEPTABLE)</div></td>
* </tr>
* <tr class="rowColor">
* <td><p>MissingPathVariableException</p></td>
* <td><p>500 (SC_INTERNAL_SERVER_ERROR)</p></td>
* <tr class="odd-row-color">
* <td><div class="block">MissingPathVariableException</div></td>
* <td><div class="block">500 (SC_INTERNAL_SERVER_ERROR)</div></td>
* </tr>
* <tr class="altColor">
* <td><p>MissingServletRequestParameterException</p></td>
* <td><p>400 (SC_BAD_REQUEST)</p></td>
* <tr class="even-row-color">
* <td><div class="block">MissingServletRequestParameterException</div></td>
* <td><div class="block">400 (SC_BAD_REQUEST)</div></td>
* </tr>
* <tr class="rowColor">
* <td><p>MissingServletRequestPartException</p></td>
* <td><p>400 (SC_BAD_REQUEST)</p></td>
* <tr class="odd-row-color">
* <td><div class="block">MissingServletRequestPartException</div></td>
* <td><div class="block">400 (SC_BAD_REQUEST)</div></td>
* </tr>
* <tr class="rowColor">
* <td><p>ServletRequestBindingException</p></td>
* <td><p>400 (SC_BAD_REQUEST)</p></td>
* <tr class="even-row-color">
* <td><div class="block">ServletRequestBindingException</div></td>
* <td><div class="block">400 (SC_BAD_REQUEST)</div></td>
* </tr>
* <tr class="altColor">
* <td><p>ConversionNotSupportedException</p></td>
* <td><p>500 (SC_INTERNAL_SERVER_ERROR)</p></td>
* <tr class="odd-row-color">
* <td><div class="block">ConversionNotSupportedException</div></td>
* <td><div class="block">500 (SC_INTERNAL_SERVER_ERROR)</div></td>
* </tr>
* <tr class="rowColor">
* <td><p>TypeMismatchException</p></td>
* <td><p>400 (SC_BAD_REQUEST)</p></td>
* <tr class="even-row-color">
* <td><div class="block">TypeMismatchException</div></td>
* <td><div class="block">400 (SC_BAD_REQUEST)</div></td>
* </tr>
* <tr class="altColor">
* <td><p>HttpMessageNotReadableException</p></td>
* <td><p>400 (SC_BAD_REQUEST)</p></td>
* <tr class="odd-row-color">
* <td><div class="block">HttpMessageNotReadableException</div></td>
* <td><div class="block">400 (SC_BAD_REQUEST)</div></td>
* </tr>
* <tr class="rowColor">
* <td><p>HttpMessageNotWritableException</p></td>
* <td><p>500 (SC_INTERNAL_SERVER_ERROR)</p></td>
* <tr class="even-row-color">
* <td><div class="block">HttpMessageNotWritableException</div></td>
* <td><div class="block">500 (SC_INTERNAL_SERVER_ERROR)</div></td>
* </tr>
* <tr class="altColor">
* <td><p>MethodArgumentNotValidException</p></td>
* <td><p>400 (SC_BAD_REQUEST)</p></td>
* <tr class="odd-row-color">
* <td><div class="block">MethodArgumentNotValidException</div></td>
* <td><div class="block">400 (SC_BAD_REQUEST)</div></td>
* </tr>
* <tr class="altColor">
* <td><p>BindException</p></td>
* <td><p>400 (SC_BAD_REQUEST)</p></td>
* <tr class="even-row-color">
* <td><div class="block">BindException</div></td>
* <td><div class="block">400 (SC_BAD_REQUEST)</div></td>
* </tr>
* <tr class="rowColor">
* <td><p>NoHandlerFoundException</p></td>
* <td><p>404 (SC_NOT_FOUND)</p></td>
* <tr class="odd-row-color">
* <td><div class="block">NoHandlerFoundException</div></td>
* <td><div class="block">404 (SC_NOT_FOUND)</div></td>
* </tr>
* <tr class="altColor">
* <td><p>AsyncRequestTimeoutException</p></td>
* <td><p>503 (SC_SERVICE_UNAVAILABLE)</p></td>
* <tr class="even-row-color">
* <td><div class="block">AsyncRequestTimeoutException</div></td>
* <td><div class="block">503 (SC_SERVICE_UNAVAILABLE)</div></td>
* </tr>
* </tbody>
* </table>
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -43,32 +43,32 @@
* as the bean property that this errors object applies to. Nested tags
* such as the {@link TransformTag} can access those exposed properties.
*
* <h3>Attribute Summary</h3>
* <table>
* <caption>Attribute Summary</caption>
* <thead>
* <tr>
* <th class="colFirst">Attribute</th>
* <th class="colOne">Required?</th>
* <th class="colOne">Runtime Expression?</th>
* <th class="colLast">Description</th>
* <th class="table-header col-first">Attribute</th>
* <th class="table-header col-second">Required?</th>
* <th class="table-header col-second">Runtime Expression?</th>
* <th class="table-header col-last">Description</th>
* </tr>
* </thead>
* <tbody>
* <tr class="altColor">
* <tr class="even-row-color">
* <td><p>htmlEscape</p></td>
* <td><p>false</p></td>
* <td><p>true</p></td>
* <td><p>Set HTML escaping for this tag, as boolean value. Overrides the default
* HTML escaping setting for the current page.</p></td>
* </tr>
* <tr class="rowColor">
* <tr class="odd-row-color">
* <td><p>ignoreNestedPath</p></td>
* <td><p>false</p></td>
* <td><p>true</p></td>
* <td><p>Set whether to ignore a nested path, if any.
* Default is to not ignore.</p></td>
* </tr>
* <tr class="altColor">
* <tr class="even-row-color">
* <td><p>path</p></td>
* <td><p>true</p></td>
* <td><p>true</p></td>
Expand Down
@@ -1,5 +1,5 @@
/*
* Copyright 2002-2018 the original author or authors.
* Copyright 2002-2023 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -27,38 +27,37 @@
* It is provided for completeness if the application relies on a
* {@link RequestDataValueProcessor}.
*
* <p>
* <h3>Attribute Summary</h3>
* <table>
* <caption>Attribute Summary</caption>
* <thead>
* <tr>
* <th class="colFirst">Attribute</th>
* <th class="colOne">Required?</th>
* <th class="colOne">Runtime Expression?</th>
* <th class="colLast">Description</th>
* <th class="table-header col-first">Attribute</th>
* <th class="table-header col-second">Required?</th>
* <th class="table-header col-second">Runtime Expression?</th>
* <th class="table-header col-last">Description</th>
* </tr>
* </thead>
* <tbody>
* <tr class="altColor">
* <tr class="even-row-color">
* <td><p>disabled</p></td>
* <td><p>false</p></td>
* <td><p>true</p></td>
* <td><p>HTML Optional Attribute. Setting the value of this attribute to 'true'
* will disable the HTML element.</p></td>
* </tr>
* <tr class="rowColor">
* <tr class="odd-row-color">
* <td><p>id</p></td>
* <td><p>false</p></td>
* <td><p>true</p></td>
* <td><p>HTML Standard Attribute</p></td>
* </tr>
* <tr class="altColor">
* <tr class="even-row-color">
* <td><p>name</p></td>
* <td><p>false</p></td>
* <td><p>true</p></td>
* <td><p>The name attribute for the HTML button tag</p></td>
* </tr>
* <tr class="rowColor">
* <tr class="odd-row-color">
* <td><p>value</p></td>
* <td><p>false</p></td>
* <td><p>true</p></td>
Expand Down

0 comments on commit 67798a7

Please sign in to comment.