RFR: JDK-8284037: Snippet-files subdirectory not automatically detected when in unnamed package

2022-05-13 Thread Jonathan Gibbons
Please review a small fix to address use of snippets in source code in the unnamed package. The core of the fix is to replace `packageName(pkg, utils)` (which returns `""` for the unnamed package) with plain old `pkg.getQualifiedName().toString()` (which returns an empty string for the

RFR: JDK-8284367: JQuery UI upgrade from 1.12.1 to 1.13.1

2022-05-13 Thread Hannes Wallnöfer
This updates jQuery UI (which is used for the javadoc in-age search feature) to version 1.13.1. Rendered documentation is available here: http://cr.openjdk.java.net/~hannesw/8284367/api.00/ I noticed that we are carrying a lot of files from the jQuery UI distribution that we don't really

Re: RFR: JDK-8286338: suppress warnings about bad @author tags when author info is not generated.

2022-05-13 Thread Pavel Rappo
On Thu, 12 May 2022 23:10:36 GMT, Jonathan Gibbons wrote: > > What's that `-XDdummy=dummy` you use in tests? > > It's a no-op placeholder. JavaDoc does not allow empty arguments, and the > alternative is dynamically build a list with a conditional component. `-XD` > is a "hidden" option to

Re: RFR: JDK-8286338: suppress warnings about bad @author tags when author info is not generated.

2022-05-13 Thread Pavel Rappo
On Fri, 6 May 2022 22:06:17 GMT, Jonathan Gibbons wrote: > Please review a simple small change to `TagletManager`, to not report > warnings about bad use of tags (such as `@author` and `@version`) when > command-line options have not been given to enable the use of the tags in the > output