Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Jetty 12.0.x resource Servlet #11933

Merged
merged 21 commits into from
Jul 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updates from review
  • Loading branch information
gregw committed Jul 7, 2024
commit 3f81758b99e78a9b618415249913db485bedc525
2 changes: 1 addition & 1 deletion documentation/jetty-asciidoctor-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.eclipse.jetty.documentation</groupId>
<artifactId>documentation</artifactId>
<version>12.0.10-SNAPSHOT</version>
<version>12.0.12-SNAPSHOT</version>
</parent>
<artifactId>jetty-asciidoctor-extensions</artifactId>
<packaging>jar</packaging>
Expand Down
1 change: 1 addition & 0 deletions documentation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

<modules>
<module>jetty</module>
<module>jetty-asciidoctor-extensions</module>
<module>jetty-documentation</module>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is also the jetty-asciidoctor-extensions module that's not activated and stuck at version 12.0.10-SNAPSHOT. Shouldn't it be enabled too?

</modules>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,9 @@
* </dd>
* <dt>baseResource</dt>
* <dd>
* Defaults to the context's baseResource.
* The root directory to look for static resources.
* The root directory to look for static resources. Defaults to the context's baseResource. Relative URI
* are {@link Resource#resolve(String) resolved} against the context's {@link ServletContextHandler#getBaseResource()}
* base resource, all other values are resolved using {@link ServletContextHandler#newResource(String)}.
* </dd>
* <dt>cacheControl</dt>
* <dd>
Expand Down Expand Up @@ -126,7 +127,8 @@
* </dd>
* <dt>pathInfoOnly</dt>
* <dd>
* Use {@code true} to use only the pathInfo portion of a PATH (aka prefix) match.
* Use {@code true} to use only the pathInfo portion of a PATH (aka prefix) match
* as obtained from {@link HttpServletRequest#getPathInfo()}.
* Defaults to {@code true}.
* </dd>
* <dt>precompressed</dt>
Expand Down
Loading