-
Bug
-
Resolution: Fixed
-
P2
-
9
-
b170
-
Fix failed
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8180670 | 10 | Magnus Ihse Bursie | P2 | Resolved | Fixed | b09 |
JDK-8180529 | 9.0.4 | Magnus Ihse Bursie | P2 | Resolved | Fixed | b01 |
There are 2 problems in the Doc.gmk file with respect to setting up the footer option for javadoc.
1. Line 55.
JAVADOC_BASE_URL := http://www.oracle.com/pls/topic/lookup?ctx=javase9&id=homepage
The & should be escaped as an entity and should be & by the time the string gets passed into javadoc.
2. Line 134
<a href="$(JAVADOC_BASE_URL)/index.html" target="_blank">Java SE \
/index.html is being added to the string being passed into javadoc. That is wrong and causes a 404 when you click onthe link in the generated pages.
1. Line 55.
JAVADOC_BASE_URL := http://www.oracle.com/pls/topic/lookup?ctx=javase9&id=homepage
The & should be escaped as an entity and should be & by the time the string gets passed into javadoc.
2. Line 134
<a href="$(JAVADOC_BASE_URL)/index.html" target="_blank">Java SE \
/index.html is being added to the string being passed into javadoc. That is wrong and causes a 404 when you click onthe link in the generated pages.
- backported by
-
JDK-8180529 Bad links in footer of all javadoc-generated pages
- Resolved
-
JDK-8180670 Bad links in footer of all javadoc-generated pages
- Resolved