-
Notifications
You must be signed in to change notification settings - Fork 28.9k
[SPARK-16353][BUILD][DOC] Missing javadoc options for java unidoc #14031
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
Conversation
generation are not honored. The scope of the relevant javacOptions key should be `(JavaUnidoc, unidoc)` not `doc`
| .map(_.filterNot(_.getCanonicalPath.contains("org/apache/hadoop"))) | ||
| }, | ||
|
|
||
| // Javadoc options: create a window title, and group key packages on index page |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
BTW, I removed the mention of package groupings because none are defined.
|
Jenkins add to whitelist |
|
Jenkins test this please |
|
LGTM |
|
Test build #61687 has finished for PR 14031 at commit
|
|
Test build #61728 has finished for PR 14031 at commit
|
Link to Jira issue: https://issues.apache.org/jira/browse/SPARK-16353 ## What changes were proposed in this pull request? The javadoc options for the java unidoc generation are ignored when generating the java unidoc. For example, the generated `index.html` has the wrong HTML page title. This can be seen at http://spark.apache.org/docs/latest/api/java/index.html. I changed the relevant setting scope from `doc` to `(JavaUnidoc, unidoc)`. ## How was this patch tested? I ran `docs/jekyll build` and verified that the java unidoc `index.html` has the correct HTML page title. Author: Michael Allman <[email protected]> Closes #14031 from mallman/spark-16353. (cherry picked from commit 7dbffcd) Signed-off-by: Sean Owen <[email protected]>
Link to Jira issue: https://issues.apache.org/jira/browse/SPARK-16353 ## What changes were proposed in this pull request? The javadoc options for the java unidoc generation are ignored when generating the java unidoc. For example, the generated `index.html` has the wrong HTML page title. This can be seen at http://spark.apache.org/docs/latest/api/java/index.html. I changed the relevant setting scope from `doc` to `(JavaUnidoc, unidoc)`. ## How was this patch tested? I ran `docs/jekyll build` and verified that the java unidoc `index.html` has the correct HTML page title. Author: Michael Allman <[email protected]> Closes #14031 from mallman/spark-16353. (cherry picked from commit 7dbffcd) Signed-off-by: Sean Owen <[email protected]>
|
Merged to master/2.0/1.6 |
|
Thank you. |
Link to Jira issue: https://issues.apache.org/jira/browse/SPARK-16353 ## What changes were proposed in this pull request? The javadoc options for the java unidoc generation are ignored when generating the java unidoc. For example, the generated `index.html` has the wrong HTML page title. This can be seen at http://spark.apache.org/docs/latest/api/java/index.html. I changed the relevant setting scope from `doc` to `(JavaUnidoc, unidoc)`. ## How was this patch tested? I ran `docs/jekyll build` and verified that the java unidoc `index.html` has the correct HTML page title. Author: Michael Allman <[email protected]> Closes apache#14031 from mallman/spark-16353. (cherry picked from commit 7dbffcd) Signed-off-by: Sean Owen <[email protected]> (cherry picked from commit 4fcb888)
Link to Jira issue: https://issues.apache.org/jira/browse/SPARK-16353
What changes were proposed in this pull request?
The javadoc options for the java unidoc generation are ignored when generating the java unidoc. For example, the generated
index.htmlhas the wrong HTML page title. This can be seen at http://spark.apache.org/docs/latest/api/java/index.html.I changed the relevant setting scope from
docto(JavaUnidoc, unidoc).How was this patch tested?
I ran
docs/jekyll buildand verified that the java unidocindex.htmlhas the correct HTML page title.