Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
1c185f1b
Unverified
提交
1c185f1b
authored
2月 11, 2019
作者:
Evgenij Ryazanov
提交者:
GitHub
2月 11, 2019
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #1734 from katzyn/console
Redirect source.html to GitHub
上级
4fec0303
74b932bf
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
24 行增加
和
48 行删除
+24
-48
changelog.html
h2/src/docsrc/html/changelog.html
+3
-1
source.html
h2/src/docsrc/html/source.html
+21
-47
没有找到文件。
h2/src/docsrc/html/changelog.html
浏览文件 @
1c185f1b
...
@@ -21,7 +21,9 @@ Change Log
...
@@ -21,7 +21,9 @@ Change Log
<h2>
Next Version (unreleased)
</h2>
<h2>
Next Version (unreleased)
</h2>
<ul>
<ul>
<li>
Issue #1730: console can no longer connect to psql dbs in v1.4.197 (works in v1.4.196)
<li>
Issue #1732: source.html does not work
</li>
<li>
Issue #1730: Show error in H2 Console if specified driver is not compatible with URL
</li>
</li>
<li>
Issue #1590: Error on executing "DELETE FROM table1 WHERE ID = ?; DELETE FROM table2 WHERE ID = ?;"
<li>
Issue #1590: Error on executing "DELETE FROM table1 WHERE ID = ?; DELETE FROM table2 WHERE ID = ?;"
</li>
</li>
...
...
h2/src/docsrc/html/source.html
浏览文件 @
1c185f1b
...
@@ -4,30 +4,30 @@ and the EPL 1.0 (http://h2database.com/html/license.html).
...
@@ -4,30 +4,30 @@ and the EPL 1.0 (http://h2database.com/html/license.html).
Initial Developer: H2 Group
Initial Developer: H2 Group
-->
-->
<html><head>
<html><head>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<title>
Source Code Viewer
</title>
</head>
</head>
<body>
<script
type=
"text/javascript"
>
<script
type=
"text/javascript"
>
//
<!--
//
<!--
function
getVersion
(
build
)
{
function
getPath
(
build
)
{
if
(
build
==
64
)
{
if
(
build
>=
177
)
{
return
'1.0/version-1.0.'
+
build
;
return
'version-1.4.'
+
build
+
'/h2'
;
}
else
if
(
build
>=
177
)
{
return
'1.4.'
+
build
;
}
else
if
(
build
>=
146
&&
build
!=
147
)
{
}
else
if
(
build
>=
146
&&
build
!=
147
)
{
return
'
1.3/version-1.3.'
+
build
;
return
'
version-1.3/version-1.3.'
+
build
+
'/h2'
;
}
else
if
(
build
>=
120
)
{
}
else
if
(
build
>=
120
)
{
return
'
1.2/version-1.2.'
+
build
;
return
'
version-1.2/version-1.2.'
+
build
+
'/h2'
;
}
else
if
(
build
>=
100
)
{
}
else
if
(
build
>=
100
)
{
return
'1.1/version-1.1.'
+
build
;
return
'version-1.1/version-1.1.'
+
build
+
'/h2'
;
}
else
if
(
build
==
64
)
{
return
'version-1.0/version-1.0.64'
;
}
else
{
return
'version-1.0/version-1.0.'
+
build
+
'/h2'
;
}
}
return
'1.0.'
+
build
;
}
}
var
line
=
0
,
file
=
''
;
var
line
=
0
,
file
=
''
;
var
params
=
location
.
search
.
substring
(
1
).
split
(
'&'
);
var
params
=
location
.
search
.
substring
(
1
).
split
(
'&'
);
var
tag
=
'trunk
/h2'
;
var
path
=
'master
/h2'
;
for
(
var
i
=
0
;
i
<
params
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
params
.
length
;
i
++
)
{
var
k
=
params
[
i
].
split
(
'='
);
var
k
=
params
[
i
].
split
(
'='
);
var
key
=
k
[
0
],
value
=
k
[
1
];
var
key
=
k
[
0
],
value
=
k
[
1
];
...
@@ -36,43 +36,17 @@ for (var i = 0; i<params.length; i++) {
...
@@ -36,43 +36,17 @@ for (var i = 0; i<params.length; i++) {
}
else
if
(
key
==
'file'
)
{
}
else
if
(
key
==
'file'
)
{
file
=
value
;
file
=
value
;
}
else
if
(
key
==
'build'
)
{
}
else
if
(
key
==
'build'
)
{
tag
=
'tags/version-'
+
getVersion
(
value
)
+
'/h2'
;
path
=
getPath
(
value
)
;
}
}
}
}
var
url
=
'https://github.com/h2database/h2database/blob/'
+
path
+
'/src/main/'
+
file
;
if
(
line
>
0
&&
file
!==
''
)
{
url
+=
'#L'
+
line
;
}
window
.
location
.
replace
(
url
);
// -->
// -->
</script>
</script>
<pre>
</body>
<table
width=
"100%"
>
</html>
<tr>
<td
style=
"width: 50px; vertical-align: top"
>
<script
type=
"text/javascript"
>
//
<!--
for
(
var
i
=
1
;
i
<=
5000
;
i
++
)
{
if
(
line
==
i
)
{
document
.
write
(
'<b>'
+
i
+
'></b><br />'
);
}
else
if
(
line
<=
4
||
i
+
4
==
line
)
{
document
.
write
(
i
+
'<a id = "here"></a><br />'
);
}
else
{
document
.
write
(
i
+
'<br />'
);
}
}
// -->
</script>
</td>
<td
style=
"width: 3950px; vertical-align: top"
>
<iframe
id =
"source"
frameborder=
"0"
marginwidth=
"0"
marginheight=
"0"
width=
"100%"
height=
"80000px"
scrolling=
"no"
src=
""
>
</iframe>
</td>
</tr>
</table>
<a
href=
"#here"
></a>
<script
type=
"text/javascript"
>
//
<!--
var
source
=
document
.
getElementById
(
'source'
);
source
.
src
=
'http://h2database.googlecode.com/svn/'
+
tag
+
'/src/main/'
+
file
;
document
.
location
=
'#here'
;
// -->
</script>
<!-- analytics -->
</pre></html>
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论