Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
d68ce70b
提交
d68ce70b
authored
4月 18, 2008
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
--no commit message
--no commit message
上级
e59d810e
全部展开
显示空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
962 行增加
和
843 行删除
+962
-843
changelog.html
h2/src/docsrc/html/changelog.html
+10
-1
_docs_en.utf8.txt
h2/src/docsrc/text/_docs_en.utf8.txt
+279
-276
_docs_ja.utf8.txt
h2/src/docsrc/text/_docs_ja.utf8.txt
+357
-276
_docs_en.properties
h2/src/docsrc/textbase/_docs_en.properties
+278
-277
BuildBase.java
h2/src/tools/org/h2/build/BuildBase.java
+1
-0
XMLParser.java
h2/src/tools/org/h2/build/doc/XMLParser.java
+35
-12
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+2
-1
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
d68ce70b
...
...
@@ -14,7 +14,16 @@ Change Log
<h1>
Change Log
</h1>
<h2>
Next Version (unreleased)
</h2>
<ul><li>
Multi version concurrency (MVCC): when a row was updated,
<ul>
<li>
The plan is to dual-license H2. The additional license is EPL (Eclipse Public License).
The current license (MPL, Mozilla Public License) will stay.
Current users are not affected because they can keep MPL.
EPL is very similar to MPL, the only bigger difference is related to patents
(EPL is a bit more business friendly in this regard).
See also http://opensource.org/licenses/eclipse-1.0.php,
http://www.eclipse.org/legal/eplfaq.php (FAQ),
http://blogs.zdnet.com/Burnette/?p=131
</li><li>
Multi version concurrency (MVCC): when a row was updated,
and the updated column was not indexed, this update was visible sometimes
for other sessions even if it was not committed.
</li><li>
Calling SHUTDOWN on one connection and starting a query on
...
...
h2/src/docsrc/text/_docs_en.utf8.txt
浏览文件 @
d68ce70b
差异被折叠。
点击展开。
h2/src/docsrc/text/_docs_ja.utf8.txt
浏览文件 @
d68ce70b
差异被折叠。
点击展开。
h2/src/docsrc/textbase/_docs_en.properties
浏览文件 @
d68ce70b
差异被折叠。
点击展开。
h2/src/tools/org/h2/build/BuildBase.java
浏览文件 @
d68ce70b
...
...
@@ -205,6 +205,7 @@ public class BuildBase {
}
buff
.
write
(
x
);
}
in
.
close
();
}
catch
(
IOException
e
)
{
throw
new
Error
(
"Error downloading"
,
e
);
}
...
...
h2/src/tools/org/h2/build/doc/XMLParser.java
浏览文件 @
d68ce70b
...
...
@@ -37,12 +37,17 @@ public class XMLParser {
private
String
[]
attributeValues
=
new
String
[
3
];
private
int
currentAttribute
;
private
boolean
endElement
;
private
boolean
html
;
public
XMLParser
(
String
xml
)
{
this
.
xml
=
xml
;
eventType
=
START_DOCUMENT
;
}
public
void
setHTML
(
boolean
html
)
{
this
.
html
=
html
;
}
void
addAttributeName
(
String
prefix
,
String
localName
)
{
if
(
attributeValues
.
length
<=
currentAttribute
)
{
String
[]
temp
=
new
String
[
attributeValues
.
length
*
2
];
...
...
@@ -259,6 +264,7 @@ public class XMLParser {
}
int
end
;
int
localNameStart
=
start
;
boolean
noValue
=
false
;
while
(
true
)
{
end
=
index
;
ch
=
readChar
();
...
...
@@ -268,13 +274,26 @@ public class XMLParser {
skipSpaces
();
ch
=
readChar
();
if
(
ch
!=
'='
)
{
if
(
html
)
{
back
();
noValue
=
true
;
}
else
{
error
(
"="
);
}
}
break
;
}
else
if
(
ch
==
'='
)
{
break
;
}
else
if
(
ch
==
':'
)
{
localNameStart
=
index
;
}
else
if
(
ch
==
'/'
||
ch
==
'>'
)
{
if
(
html
)
{
back
();
noValue
=
true
;
break
;
}
else
{
error
(
"="
);
}
}
}
if
(
localNameStart
==
start
)
{
...
...
@@ -282,6 +301,9 @@ public class XMLParser {
}
else
{
addAttributeName
(
xml
.
substring
(
start
,
localNameStart
-
1
),
xml
.
substring
(
localNameStart
,
end
));
}
if
(
noValue
)
{
noValue
=
false
;
}
else
{
skipSpaces
();
ch
=
readChar
();
if
(
ch
!=
'\"'
)
{
...
...
@@ -297,6 +319,7 @@ public class XMLParser {
break
;
}
}
}
addAttributeValue
(
xml
.
substring
(
start
,
end
));
}
}
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
d68ce70b
...
...
@@ -494,4 +494,5 @@ delays guess downloaded jars advantages interrupt javen sourcepath unneeded
compressibility ext crc enumerate components mkdir jant downloading mismatch
timebomb thinks technotes chmod overloading javase flux solves fastest
quickstarter bridge bpm trust guides improvements customizing easiest
workflow seque npl netstat ano spellcheck
\ No newline at end of file
workflow seque npl netstat ano spellcheck eplfaq opensource zdnet burnette
regard epl
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论