Skip to content

Commit f0ba0dc

Browse files
committedMar 23, 2020
8241190: Fix name clash for constants-summary CSS class
Reviewed-by: hannesw
1 parent b678332 commit f0ba0dc

File tree

6 files changed

+142
-37
lines changed

6 files changed

+142
-37
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/HtmlDocletWriter.java

+6-7
Original file line numberDiff line numberDiff line change
@@ -2095,8 +2095,7 @@ static String getGenerator(Class<?> clazz) {
20952095
* @return an HtmlTree for the BODY tag
20962096
*/
20972097
public HtmlTree getBody(String title) {
2098-
HtmlTree body = new HtmlTree(TagName.BODY);
2099-
body.put(HtmlAttr.CLASS, getBodyClass());
2098+
HtmlTree body = new HtmlTree(TagName.BODY).setStyle(getBodyStyle());
21002099

21012100
this.winTitle = title;
21022101
// Don't print windowtitle script for overview-frame, allclasses-frame
@@ -2107,13 +2106,13 @@ public HtmlTree getBody(String title) {
21072106
return body;
21082107
}
21092108

2110-
public String getBodyClass() {
2111-
return getClass().getSimpleName()
2109+
public HtmlStyle getBodyStyle() {
2110+
String kind = getClass().getSimpleName()
21122111
.replaceAll("(Writer)?(Impl)?$", "")
21132112
.replaceAll("AnnotationType", "Class")
2114-
.replaceAll("(.)([A-Z])", "$1-$2")
2115-
.replaceAll("(?i)^(module|package|class)$", "$1-declaration")
2116-
.toLowerCase(Locale.US);
2113+
.replaceAll("^(Module|Package|Class)$", "$1Declaration");
2114+
String page = kind.substring(0, 1).toLowerCase(Locale.US) + kind.substring(1) + "Page";
2115+
return HtmlStyle.valueOf(page);
21172116
}
21182117

21192118
Script getMainBodyScript() {

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/IndexRedirectWriter.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import jdk.javadoc.internal.doclets.formats.html.markup.ContentBuilder;
3232
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlAttr;
3333
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlDocument;
34+
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlStyle;
3435
import jdk.javadoc.internal.doclets.formats.html.markup.TagName;
3536
import jdk.javadoc.internal.doclets.formats.html.markup.HtmlTree;
3637
import jdk.javadoc.internal.doclets.formats.html.markup.Script;
@@ -104,8 +105,7 @@ private void generateIndexFile() throws DocFileIOException {
104105

105106
bodyContent.add(HtmlTree.P(HtmlTree.A(targetPath, new StringContent(targetPath))));
106107

107-
Content body = new HtmlTree(TagName.BODY)
108-
.put(HtmlAttr.CLASS, "index-redirect");
108+
Content body = new HtmlTree(TagName.BODY).setStyle(HtmlStyle.indexRedirectPage);
109109
HtmlTree main = HtmlTree.MAIN(bodyContent);
110110
body.add(main);
111111

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/SourceToHTMLConverter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ protected void addStylesheets(Content tree) {
285285
* @return the header content for the HTML file
286286
*/
287287
private static Content getHeader() {
288-
return new HtmlTree(TagName.BODY).setStyle(HtmlStyle.source);
288+
return new HtmlTree(TagName.BODY).setStyle(HtmlStyle.sourcePage);
289289
}
290290

291291
/**

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/markup/HtmlStyle.java

+109-2
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ public enum HtmlStyle {
129129
serializedClassDetails,
130130
servicesSummary,
131131
skipNav,
132-
source,
133132
sourceContainer,
134133
sourceLineNo,
135134
subNav,
@@ -148,7 +147,115 @@ public enum HtmlStyle {
148147
typeSummary,
149148
useSummary,
150149
usesSummary,
151-
verticalSeparator;
150+
verticalSeparator,
151+
152+
// The following constants are used for the class of the {@code <body>} element
153+
// for the corresponding pages.
154+
155+
/**
156+
* The class of the {@code body} element for the "All Classes" index page.
157+
*/
158+
allClassesIndexPage,
159+
160+
/**
161+
* The class of the {@code body} element for the "All Packages" index page.
162+
*/
163+
allPackagesIndexPage,
164+
165+
/**
166+
* The class of the {@code body} element for a class-declaration page.
167+
*/
168+
classDeclarationPage,
169+
170+
/**
171+
* The class of the {@code body} element for a class-use page.
172+
*/
173+
classUsePage,
174+
175+
/**
176+
* The class of the {@code body} element for the constants-summary page.
177+
*/
178+
constantsSummaryPage,
179+
180+
/**
181+
* The class of the {@code body} element for the page listing any deprecated items.
182+
*/
183+
deprecatedListPage,
184+
185+
/**
186+
* The class of the {@code body} element for a "doc-file" page..
187+
*/
188+
docFilePage,
189+
190+
/**
191+
* The class of the {@code body} element for the "help" page.
192+
*/
193+
helpPage,
194+
195+
/**
196+
* The class of the {@code body} element for the top-level redirect page.
197+
*/
198+
indexRedirectPage,
199+
200+
/**
201+
* The class of the {@code body} element for a module-declaration page.
202+
*/
203+
moduleDeclarationPage,
204+
205+
/**
206+
* The class of the {@code body} element for the module-index page.
207+
*/
208+
moduleIndexPage,
209+
210+
/**
211+
* The class of the {@code body} element for a package-declaration page.
212+
*/
213+
packageDeclarationPage,
214+
215+
/**
216+
* The class of the {@code body} element for the package-index page.
217+
*/
218+
packageIndexPage,
219+
220+
/**
221+
* The class of the {@code body} element for the page for the package hierarchy.
222+
*/
223+
packageTreePage,
224+
225+
/**
226+
* The class of the {@code body} element for a package-use page.
227+
*/
228+
packageUsePage,
229+
230+
/**
231+
* The class of the {@code body} element for the serialized-forms page.
232+
*/
233+
serializedFormPage,
234+
235+
/**
236+
* The class of the {@code body} element for the full single index page.
237+
*/
238+
singleIndexPage,
239+
240+
/**
241+
* The class of the {@code body} element for a page with the source code for a class.
242+
*/
243+
sourcePage,
244+
245+
/**
246+
* The class of the {@code body} element for a page in a "split index".
247+
*/
248+
splitIndexPage,
249+
250+
/**
251+
* The class of the {@code body} element for the system-properties page.
252+
*/
253+
systemPropertiesPage,
254+
255+
/**
256+
* The class of the {@code body} element for the page for the class hierarchy.
257+
*/
258+
treePage;
152259

153260
private final String cssName;
154261

‎test/langtools/jdk/javadoc/doclet/JavascriptWinTitle/JavascriptWinTitle.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ public void test() {
5454
checkExit(Exit.OK);
5555
checkOutput("index.html", true,
5656
"<script type=\"text/javascript\">",
57-
"<body class=\"package-index\">");
57+
"<body class=\"package-index-page\">");
5858

5959
// Test that "onload" is not present in BODY tag:
60-
checkOutput("p1/package-summary.html", true, "<body class=\"package-declaration\">");
60+
checkOutput("p1/package-summary.html", true, "<body class=\"package-declaration-page\">");
6161

6262
checkOutput("p1/C.html", true, "<title>C (Window Title)</title>");
6363
}

‎test/langtools/jdk/javadoc/doclet/testMetadata/TestMetadata.java

+22-23
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8218998 8219946 8219060
26+
* @bug 8218998 8219946 8219060 8241190
2727
* @summary Add metadata to generated API documentation files
2828
* @library /tools/lib ../../lib
2929
* @modules jdk.javadoc/jdk.javadoc.internal.tool
@@ -137,27 +137,27 @@ public void runTests() throws Exception {
137137
final Pattern nl = Pattern.compile("[\\r\\n]+");
138138
final Pattern bodyPattern = Pattern.compile("<body [^>]*class=\"([^\"]+)\"");
139139
final Set<String> allBodyClasses = Set.of(
140-
"all-classes-index",
141-
"all-packages-index",
142-
"class-declaration",
143-
"class-use",
144-
"constants-summary",
145-
"deprecated-list",
146-
"doc-file",
147-
"help",
148-
"index-redirect",
149-
"module-declaration",
150-
"module-index",
151-
"package-declaration",
152-
"package-index",
153-
"package-tree",
154-
"package-use",
155-
"serialized-form",
156-
"single-index",
157-
"source",
158-
"split-index",
159-
"system-properties",
160-
"tree"
140+
"all-classes-index-page",
141+
"all-packages-index-page",
142+
"class-declaration-page",
143+
"class-use-page",
144+
"constants-summary-page",
145+
"deprecated-list-page",
146+
"doc-file-page",
147+
"help-page",
148+
"index-redirect-page",
149+
"module-declaration-page",
150+
"module-index-page",
151+
"package-declaration-page",
152+
"package-index-page",
153+
"package-tree-page",
154+
"package-use-page",
155+
"serialized-form-page",
156+
"single-index-page",
157+
"source-page",
158+
"split-index-page",
159+
"system-properties-page",
160+
"tree-page"
161161
);
162162

163163
void checkBodyClasses() throws IOException {
@@ -413,4 +413,3 @@ Path genSource(Source s) throws IOException {
413413
return src;
414414
}
415415
}
416-

0 commit comments

Comments
 (0)
Please sign in to comment.