Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
378b55b4
提交
378b55b4
authored
12月 18, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
improved build
上级
e9182f52
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
14 行增加
和
4 行删除
+14
-4
Build.java
h2/src/tools/org/h2/build/Build.java
+10
-2
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+2
-1
Doclet.java
h2/src/tools/org/h2/build/doclet/Doclet.java
+2
-1
没有找到文件。
h2/src/tools/org/h2/build/Build.java
浏览文件 @
378b55b4
...
@@ -209,10 +209,18 @@ public class Build extends BuildBase {
...
@@ -209,10 +209,18 @@ public class Build extends BuildBase {
files
.
addAll
(
getFiles
(
"../h2/service"
));
files
.
addAll
(
getFiles
(
"../h2/service"
));
files
.
addAll
(
getFiles
(
"../h2/src"
));
files
.
addAll
(
getFiles
(
"../h2/src"
));
zip
(
"../h2web/h2.zip"
,
files
,
"../"
,
false
,
false
);
zip
(
"../h2web/h2.zip"
,
files
,
"../"
,
false
,
false
);
exec
(
"makensis"
,
new
String
[]{
"/v2"
,
"src/installer/h2.nsi"
});
boolean
installer
=
false
;
try
{
exec
(
"makensis"
,
new
String
[]{
"/v2"
,
"src/installer/h2.nsi"
});
installer
=
true
;
}
catch
(
Error
e
)
{
print
(
"NSIS is not available: "
+
e
);
}
String
buildDate
=
getStaticField
(
"org.h2.engine.Constants"
,
"BUILD_DATE"
);
String
buildDate
=
getStaticField
(
"org.h2.engine.Constants"
,
"BUILD_DATE"
);
writeFile
(
new
File
(
"../h2web/h2-"
+
buildDate
+
".zip"
),
readFile
(
new
File
(
"../h2web/h2.zip"
)));
writeFile
(
new
File
(
"../h2web/h2-"
+
buildDate
+
".zip"
),
readFile
(
new
File
(
"../h2web/h2.zip"
)));
writeFile
(
new
File
(
"../h2web/h2-setup-"
+
buildDate
+
".exe"
),
readFile
(
new
File
(
"../h2web/h2-setup.exe"
)));
if
(
installer
)
{
writeFile
(
new
File
(
"../h2web/h2-setup-"
+
buildDate
+
".exe"
),
readFile
(
new
File
(
"../h2web/h2-setup.exe"
)));
}
}
}
/**
/**
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
378b55b4
...
@@ -574,4 +574,5 @@ statisticlog activeobjects manske redeployment michael kaspersky datatext
...
@@ -574,4 +574,5 @@ statisticlog activeobjects manske redeployment michael kaspersky datatext
bleyl donald conservative offsets diabetes ansorg allocating osmond gluco
bleyl donald conservative offsets diabetes ansorg allocating osmond gluco
joachim mysqladmin sudo mysqld indicator wire ring relates expedites
joachim mysqladmin sudo mysqld indicator wire ring relates expedites
approximated approximation dvan dsn dobysoft ebean syswow tmueller dbbench
approximated approximation dvan dsn dobysoft ebean syswow tmueller dbbench
connecturl problematic transformation lazy querydsl squill empire liq
connecturl problematic transformation lazy querydsl squill empire liq fle
\ No newline at end of file
xive evolving
h2/src/tools/org/h2/build/doclet/Doclet.java
浏览文件 @
378b55b4
...
@@ -223,6 +223,7 @@ public class Doclet {
...
@@ -223,6 +223,7 @@ public class Doclet {
}
}
writer
.
println
(
"<h4>"
+
type
+
" <span class=\"methodName\">"
+
name
+
"</span>"
+
buff
.
toString
()
writer
.
println
(
"<h4>"
+
type
+
" <span class=\"methodName\">"
+
name
+
"</span>"
+
buff
.
toString
()
+
"</h4>"
);
+
"</h4>"
);
boolean
hasComment
=
method
.
commentText
()
!=
null
&&
method
.
commentText
().
trim
().
length
()
!=
0
;
writer
.
println
(
formatText
(
method
.
commentText
()));
writer
.
println
(
formatText
(
method
.
commentText
()));
ParamTag
[]
paramTags
=
method
.
paramTags
();
ParamTag
[]
paramTags
=
method
.
paramTags
();
boolean
space
=
false
;
boolean
space
=
false
;
...
@@ -259,7 +260,7 @@ public class Doclet {
...
@@ -259,7 +260,7 @@ public class Doclet {
}
}
writer
.
println
(
"<div class=\"item\">"
+
returnComment
+
"</div>"
);
writer
.
println
(
"<div class=\"item\">"
+
returnComment
+
"</div>"
);
}
else
if
(!
method
.
returnType
().
toString
().
equals
(
"void"
))
{
}
else
if
(!
method
.
returnType
().
toString
().
equals
(
"void"
))
{
if
(!
method
.
commentText
().
startsWith
(
"["
)
&&
!
hasThrowsTag
)
{
if
(
hasComment
&&
!
method
.
commentText
().
startsWith
(
"["
)
&&
!
hasThrowsTag
)
{
// [Not supported] and such are not problematic
// [Not supported] and such are not problematic
// also not problematic are methods that always throw an exception
// also not problematic are methods that always throw an exception
addError
(
"Undocumented return value ("
+
addError
(
"Undocumented return value ("
+
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论