Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell11
提交
52b08222
D
dragonwell11
项目概览
openanolis
/
dragonwell11
通知
7
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell11
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
52b08222
编写于
2月 07, 2017
作者:
K
ksrini
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8173302: Move the Description up on module and package index page
Reviewed-by: bpatel, jjg
上级
b93b2ea3
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
238 addition
and
56 deletion
+238
-56
langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModuleIndexWriter.java
...adoc/internal/doclets/formats/html/ModuleIndexWriter.java
+8
-28
langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/PackageIndexWriter.java
...doc/internal/doclets/formats/html/PackageIndexWriter.java
+8
-28
langtools/test/jdk/javadoc/doclet/testOverview/TestOverview.java
...ls/test/jdk/javadoc/doclet/testOverview/TestOverview.java
+81
-0
langtools/test/jdk/javadoc/doclet/testOverview/msrc/module-info.java
...est/jdk/javadoc/doclet/testOverview/msrc/module-info.java
+31
-0
langtools/test/jdk/javadoc/doclet/testOverview/msrc/p1/C.java
...tools/test/jdk/javadoc/doclet/testOverview/msrc/p1/C.java
+26
-0
langtools/test/jdk/javadoc/doclet/testOverview/msrc/p2/C2.java
...ools/test/jdk/javadoc/doclet/testOverview/msrc/p2/C2.java
+26
-0
langtools/test/jdk/javadoc/doclet/testOverview/overview.html
langtools/test/jdk/javadoc/doclet/testOverview/overview.html
+6
-0
langtools/test/jdk/javadoc/doclet/testOverview/src/p1/C.java
langtools/test/jdk/javadoc/doclet/testOverview/src/p1/C.java
+26
-0
langtools/test/jdk/javadoc/doclet/testOverview/src/p2/C2.java
...tools/test/jdk/javadoc/doclet/testOverview/src/p2/C2.java
+26
-0
未找到文件。
langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/ModuleIndexWriter.java
浏览文件 @
52b08222
/*
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2016,
2017,
Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -144,6 +144,7 @@ public class ModuleIndexWriter extends AbstractModuleIndexWriter {
Content
div
=
HtmlTree
.
DIV
(
HtmlStyle
.
contentContainer
,
table
);
if
(
configuration
.
allowTag
(
HtmlTag
.
MAIN
))
{
htmlTree
.
addContent
(
div
);
body
.
addContent
(
htmlTree
);
}
else
{
body
.
addContent
(
div
);
}
...
...
@@ -183,21 +184,12 @@ public class ModuleIndexWriter extends AbstractModuleIndexWriter {
protected
void
addOverviewHeader
(
Content
body
)
{
addConfigurationTitle
(
body
);
if
(!
utils
.
getFullBody
(
configuration
.
overviewElement
).
isEmpty
())
{
HtmlTree
subTitleDiv
=
new
HtmlTree
(
HtmlTag
.
DIV
);
subTitleDiv
.
addStyle
(
HtmlStyle
.
subTitle
);
addSummaryComment
(
configuration
.
overviewElement
,
subTitleDiv
);
Content
div
=
HtmlTree
.
DIV
(
HtmlStyle
.
header
,
subTitleDiv
);
Content
see
=
new
ContentBuilder
();
see
.
addContent
(
contents
.
seeLabel
);
see
.
addContent
(
" "
);
Content
descPara
=
HtmlTree
.
P
(
see
);
Content
descLink
=
getHyperLink
(
getDocLink
(
SectionName
.
OVERVIEW_DESCRIPTION
),
contents
.
descriptionLabel
,
""
,
""
);
descPara
.
addContent
(
descLink
);
div
.
addContent
(
descPara
);
HtmlTree
div
=
new
HtmlTree
(
HtmlTag
.
DIV
);
div
.
addStyle
(
HtmlStyle
.
contentContainer
);
addOverviewComment
(
div
);
if
(
configuration
.
allowTag
(
HtmlTag
.
MAIN
))
{
htmlTree
.
addContent
(
div
);
body
.
addContent
(
htmlTree
);
}
else
{
body
.
addContent
(
div
);
}
...
...
@@ -213,29 +205,17 @@ public class ModuleIndexWriter extends AbstractModuleIndexWriter {
*/
protected
void
addOverviewComment
(
Content
htmltree
)
{
if
(!
utils
.
getFullBody
(
configuration
.
overviewElement
).
isEmpty
())
{
htmltree
.
addContent
(
getMarkerAnchor
(
SectionName
.
OVERVIEW_DESCRIPTION
));
addInlineComment
(
configuration
.
overviewElement
,
htmltree
);
}
}
/**
* Adds the tag information as provided in the file specified by the
* "-overview" option on the command line.
* Not required for this page.
*
* @param body the documentation tree to which the overview will be added
*/
@Override
protected
void
addOverview
(
Content
body
)
{
HtmlTree
div
=
new
HtmlTree
(
HtmlTag
.
DIV
);
div
.
addStyle
(
HtmlStyle
.
contentContainer
);
addOverviewComment
(
div
);
if
(
configuration
.
allowTag
(
HtmlTag
.
MAIN
))
{
htmlTree
.
addContent
(
div
);
body
.
addContent
(
htmlTree
);
}
else
{
body
.
addContent
(
div
);
}
}
protected
void
addOverview
(
Content
body
)
{}
/**
* Adds the top text (from the -top option), the upper
...
...
langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/PackageIndexWriter.java
浏览文件 @
52b08222
/*
* Copyright (c) 1997, 201
6
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 1997, 201
7
, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
...
...
@@ -134,6 +134,7 @@ public class PackageIndexWriter extends AbstractPackageIndexWriter {
Content
div
=
HtmlTree
.
DIV
(
HtmlStyle
.
contentContainer
,
table
);
if
(
configuration
.
allowTag
(
HtmlTag
.
MAIN
))
{
htmlTree
.
addContent
(
div
);
body
.
addContent
(
htmlTree
);
}
else
{
body
.
addContent
(
div
);
}
...
...
@@ -176,21 +177,12 @@ public class PackageIndexWriter extends AbstractPackageIndexWriter {
protected
void
addOverviewHeader
(
Content
body
)
{
addConfigurationTitle
(
body
);
if
(!
utils
.
getFullBody
(
configuration
.
overviewElement
).
isEmpty
())
{
HtmlTree
subTitleDiv
=
new
HtmlTree
(
HtmlTag
.
DIV
);
subTitleDiv
.
addStyle
(
HtmlStyle
.
subTitle
);
addSummaryComment
(
configuration
.
overviewElement
,
subTitleDiv
);
Content
div
=
HtmlTree
.
DIV
(
HtmlStyle
.
header
,
subTitleDiv
);
Content
descBody
=
new
ContentBuilder
();
descBody
.
addContent
(
contents
.
seeLabel
);
descBody
.
addContent
(
" "
);
Content
descPara
=
HtmlTree
.
P
(
descBody
);
Content
descLink
=
getHyperLink
(
getDocLink
(
SectionName
.
OVERVIEW_DESCRIPTION
),
contents
.
descriptionLabel
,
""
,
""
);
descPara
.
addContent
(
descLink
);
div
.
addContent
(
descPara
);
HtmlTree
div
=
new
HtmlTree
(
HtmlTag
.
DIV
);
div
.
addStyle
(
HtmlStyle
.
contentContainer
);
addOverviewComment
(
div
);
if
(
configuration
.
allowTag
(
HtmlTag
.
MAIN
))
{
htmlTree
.
addContent
(
div
);
body
.
addContent
(
htmlTree
);
}
else
{
body
.
addContent
(
div
);
}
...
...
@@ -206,29 +198,17 @@ public class PackageIndexWriter extends AbstractPackageIndexWriter {
*/
protected
void
addOverviewComment
(
Content
htmltree
)
{
if
(!
utils
.
getFullBody
(
configuration
.
overviewElement
).
isEmpty
())
{
htmltree
.
addContent
(
getMarkerAnchor
(
SectionName
.
OVERVIEW_DESCRIPTION
));
addInlineComment
(
configuration
.
overviewElement
,
htmltree
);
}
}
/**
* Adds the tag information as provided in the file specified by the
* "-overview" option on the command line.
* Not required for this page.
*
* @param body the documentation tree to which the overview will be added
*/
@Override
protected
void
addOverview
(
Content
body
)
{
HtmlTree
div
=
new
HtmlTree
(
HtmlTag
.
DIV
);
div
.
addStyle
(
HtmlStyle
.
contentContainer
);
addOverviewComment
(
div
);
if
(
configuration
.
allowTag
(
HtmlTag
.
MAIN
))
{
htmlTree
.
addContent
(
div
);
body
.
addContent
(
htmlTree
);
}
else
{
body
.
addContent
(
div
);
}
}
protected
void
addOverview
(
Content
body
)
{}
/**
* Adds the top text (from the -top option), the upper
...
...
langtools/test/jdk/javadoc/doclet/testOverview/TestOverview.java
0 → 100644
浏览文件 @
52b08222
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/*
* @test
* @bug 8173302
* @summary make sure the overview-summary and module-summary pages don't
* don't have the See link, and the overview is copied correctly.
* @library ../lib
* @modules jdk.javadoc/jdk.javadoc.internal.tool
* @build JavadocTester
* @run main TestOverview
*/
public
class
TestOverview
extends
JavadocTester
{
public
static
void
main
(
String
...
args
)
throws
Exception
{
TestOverview
tester
=
new
TestOverview
();
tester
.
runTests
();
}
@Test
void
test1
()
{
javadoc
(
"-d"
,
"out-1"
,
"-doctitle"
,
"Document Title"
,
"-windowtitle"
,
"Window Title"
,
"-overview"
,
testSrc
(
"overview.html"
),
"-sourcepath"
,
testSrc
(
"src"
),
"p1"
,
"p2"
);
checkExit
(
Exit
.
OK
);
checkOutput
(
"overview-summary.html"
,
true
,
"<div class=\"header\">\n"
+
"<h1 class=\"title\">Document Title</h1>\n"
+
"</div>\n"
+
"<div class=\"contentContainer\">\n"
+
"<div class=\"block\">This is line1. This is line 2.</div>\n"
+
"</div>\n"
+
"<div class=\"contentContainer\">"
);
}
@Test
void
test2
()
{
javadoc
(
"-d"
,
"out-2"
,
"-doctitle"
,
"Document Title"
,
"-windowtitle"
,
"Window Title"
,
"-overview"
,
testSrc
(
"overview.html"
),
"-sourcepath"
,
testSrc
(
"msrc"
),
"p1"
,
"p2"
);
checkExit
(
Exit
.
OK
);
checkOutput
(
"overview-summary.html"
,
true
,
"<div class=\"header\">\n"
+
"<h1 class=\"title\">Document Title</h1>\n"
+
"</div>\n"
+
"<div class=\"contentContainer\">\n"
+
"<div class=\"block\">This is line1. This is line 2.</div>\n"
+
"</div>\n"
+
"<div class=\"contentContainer\">"
);
}
}
langtools/test/jdk/javadoc/doclet/testOverview/msrc/module-info.java
0 → 100644
浏览文件 @
52b08222
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
/**
* Test module acme.
*/
module
acme
{
exports
p1
;
}
langtools/test/jdk/javadoc/doclet/testOverview/msrc/p1/C.java
0 → 100644
浏览文件 @
52b08222
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p1
;
public
class
C
{}
langtools/test/jdk/javadoc/doclet/testOverview/msrc/p2/C2.java
0 → 100644
浏览文件 @
52b08222
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p2
;
public
class
C2
{}
langtools/test/jdk/javadoc/doclet/testOverview/overview.html
0 → 100644
浏览文件 @
52b08222
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<body
bgcolor=
"white"
>
This is line1. This is line 2.
</body>
</html>
langtools/test/jdk/javadoc/doclet/testOverview/src/p1/C.java
0 → 100644
浏览文件 @
52b08222
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p1
;
public
class
C
{}
langtools/test/jdk/javadoc/doclet/testOverview/src/p2/C2.java
0 → 100644
浏览文件 @
52b08222
/*
* Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package
p2
;
public
class
C2
{}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录