Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
afc79522
提交
afc79522
authored
8月 22, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Documentation: the grammar and function documentation can now be easier translated.
上级
48a2b4f5
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
77 行增加
和
24 行删除
+77
-24
help.csv
h2/src/main/org/h2/res/help.csv
+23
-23
GenerateDoc.java
h2/src/tools/org/h2/build/doc/GenerateDoc.java
+53
-0
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-1
没有找到文件。
h2/src/main/org/h2/res/help.csv
浏览文件 @
afc79522
...
...
@@ -376,7 +376,7 @@ SET IGNORECASE { TRUE | FALSE }
If IGNORECASE is enabled, text columns in newly created tables will be
case-insensitive."
"Commands (Other)","SET LOG","
SET LO
CK_MODE
int
SET LO
G
int
","
Sets the transaction log mode."
"Commands (Other)","SET LOCK_MODE","
...
...
@@ -819,39 +819,39 @@ The sample variance (square of the sample standard deviation)."
"Functions (Numeric)","ABS","
ABS ( { int | long | decimal | double } )
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","ACOS","
ACOS(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","ASIN","
ASIN(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","ATAN","
ATAN(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","COS","
COS(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","COT","
COT(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","SIN","
SIN(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","TAN","
TAN(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","ATAN2","
ATAN2(double, double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","BITAND","
BITAND(long, long)
","
...
...
@@ -871,43 +871,43 @@ The modulo operation."
"Functions (Numeric)","CEILING","
CEILING(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","DEGREES","
DEGREES(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","EXP","
EXP(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","FLOOR","
FLOOR(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","LOG","
LOG(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","LOG10","
LOG10(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","RADIANS","
RADIANS(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","SQRT","
SQRT(double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","PI","
PI()
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","POWER","
POWER(double, double)
","
See also Java Math."
See also Java
""
Math."
"Functions (Numeric)","RAND","
RAND( [ int ] )
","
...
...
@@ -999,7 +999,7 @@ Converts a string to the hex representation."
"Functions (String)","INSTR","
INSTR(string, searchString, [, startInt])
","
Returns the location of a search string in a string
(s)
."
Returns the location of a search string in a string."
"Functions (String)","INSERT Function","
INSERT(originalString, startInt, lengthInt, addString)
","
...
...
@@ -1091,7 +1091,7 @@ Decodes a byte array in the UTF8 format to a string."
"Functions (String)","XMLATTR","
XMLATTR(nameString, valueString)
","
Creates an XML attribute element of the form
name=""
value""."
Creates an XML attribute element of the form
""name=
value""."
"Functions (String)","XMLNODE","
XMLNODE(elementString [, attributesString [, contentString]])
","
...
...
@@ -1107,7 +1107,7 @@ Creates an XML CDATA element."
"Functions (String)","XMLSTARTDOC","
XMLSTARTDOC()
","
The string
'<?xml version=""
1."
The string
""<?xml version='
1."
"Functions (String)","XMLTEXT","
XMLTEXT(valueString)
","
...
...
h2/src/tools/org/h2/build/doc/GenerateDoc.java
浏览文件 @
afc79522
...
...
@@ -151,6 +151,7 @@ public class GenerateDoc {
// text is enclosed in <p> .. </p> so this works.
text
=
StringUtils
.
replaceAll
(
text
,
"<br /><br />"
,
"</p><p>"
);
text
=
StringUtils
.
replaceAll
(
text
,
"<br />"
,
" "
);
text
=
addCode
(
text
);
map
.
put
(
"text"
,
text
);
}
...
...
@@ -174,4 +175,56 @@ public class GenerateDoc {
JdbcUtils
.
closeSilently
(
stat
);
}
}
private
String
addCode
(
String
text
)
{
text
=
StringUtils
.
replaceAll
(
text
,
"""
,
"\""
);
StringBuilder
buff
=
new
StringBuilder
(
text
.
length
());
int
len
=
text
.
length
();
boolean
code
=
false
,
codeQuoted
=
false
;
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
char
c
=
text
.
charAt
(
i
);
if
(
i
<
len
-
1
)
{
char
next
=
text
.
charAt
(
i
+
1
);
if
(!
code
&&
!
codeQuoted
)
{
if
(
Character
.
isUpperCase
(
c
)
&&
Character
.
isUpperCase
(
next
))
{
buff
.
append
(
"<code>"
);
code
=
true
;
}
else
if
(
c
==
'\"'
&&
(
i
==
0
||
text
.
charAt
(
i
-
1
)
!=
'\\'
))
{
buff
.
append
(
"<code>"
);
codeQuoted
=
true
;
continue
;
}
}
}
if
(
code
)
{
if
(!
Character
.
isLetterOrDigit
(
c
)
&&
"_."
.
indexOf
(
c
)
<
0
)
{
buff
.
append
(
"</code>"
);
code
=
false
;
}
}
else
if
(
codeQuoted
&&
c
==
'\"'
)
{
buff
.
append
(
"</code>"
);
codeQuoted
=
false
;
continue
;
}
buff
.
append
(
c
);
}
if
(
code
)
{
buff
.
append
(
"</code>"
);
}
String
s
=
buff
.
toString
();
s
=
StringUtils
.
replaceAll
(
s
,
"</code>, <code>"
,
", "
);
s
=
StringUtils
.
replaceAll
(
s
,
".</code>"
,
"</code>."
);
s
=
StringUtils
.
replaceAll
(
s
,
",</code>"
,
"</code>."
);
s
=
StringUtils
.
replaceAll
(
s
,
" @<code>"
,
" <code>@"
);
s
=
StringUtils
.
replaceAll
(
s
,
"</code> <code>"
,
" "
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>SQL</code>"
,
"SQL"
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>XML</code>"
,
"XML"
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>URL</code>"
,
"URL"
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>URLs</code>"
,
"URLs"
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>HTML</code>"
,
"HTML"
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>KB</code>"
,
"KB"
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>MB</code>"
,
"MB"
);
s
=
StringUtils
.
replaceAll
(
s
,
"<code>GB</code>"
,
"GB"
);
return
s
;
}
}
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
afc79522
...
...
@@ -655,4 +655,4 @@ licensing appreciate textbook diligence undergraduate afaik mathematics chris
arrangements bugfix premain longs majority crashing behaving inst inventor
javaagent park accurately adopt consists night equally enhance enhanced
skiing honor marketing sleeping dlucene timezones shifted analyzed insists
train joining bilingual existed
train joining bilingual existed
extremely fog
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论