Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
5bf289bf
提交
5bf289bf
authored
4月 28, 2009
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
improve documentation
上级
caf88e46
隐藏空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
707 行增加
和
754 行删除
+707
-754
changelog.html
h2/src/docsrc/html/changelog.html
+1
-1
help.csv
h2/src/main/org/h2/res/help.csv
+698
-745
TestAll.java
h2/src/test/org/h2/test/TestAll.java
+0
-2
GenerateDoc.java
h2/src/tools/org/h2/build/doc/GenerateDoc.java
+8
-6
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
5bf289bf
...
...
@@ -20,7 +20,7 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Connection pool: the default login timeout is now 5 minutes.
</li><li>
After truncating tables, opening large databases could become slow
because indexes
a
re always re-built unnecessarily when opening.
because indexes
we
re always re-built unnecessarily when opening.
</li><li>
More bugs in the server-less multi-connection mode have been fixed:
Sometimes parameters of prepared statements were lost when a reconnecting.
Concurrent read operations were slow.
...
...
h2/src/main/org/h2/res/help.csv
浏览文件 @
5bf289bf
This source diff could not be displayed because it is too large. You can
view the blob
instead.
h2/src/test/org/h2/test/TestAll.java
浏览文件 @
5bf289bf
...
...
@@ -295,8 +295,6 @@ java -Dfile.encoding=UTF-8
auto-build: prepare release
documentation: rolling review at grammar.html: SELECT
documentation: rolling review at functions.html: start
documentation: rolling review at roadmap.html: done
checksum for downloads
...
...
h2/src/tools/org/h2/build/doc/GenerateDoc.java
浏览文件 @
5bf289bf
...
...
@@ -141,12 +141,14 @@ public class GenerateDoc {
map
.
put
(
"syntax"
,
syntax
);
// remove newlines in the regular text
// currently this looks bad (no paragraphs, no lists)
// String text = (String) map.get("text");
// if (text != null) {
// text = StringUtils.replaceAll(text, "<br />", " ");
// map.put("text", text);
// }
String
text
=
(
String
)
map
.
get
(
"text"
);
if
(
text
!=
null
)
{
text
=
text
.
trim
();
// text is enclosed in <p> .. </p> so this works.
text
=
StringUtils
.
replaceAll
(
text
,
"<br /><br />"
,
"</p><p>"
);
text
=
StringUtils
.
replaceAll
(
text
,
"<br />"
,
" "
);
map
.
put
(
"text"
,
text
);
}
String
link
=
topic
.
toLowerCase
();
link
=
StringUtils
.
replaceAll
(
link
,
" "
,
""
);
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论