Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
fbde5208
Unverified
提交
fbde5208
authored
3月 06, 2018
作者:
Noel Grandin
提交者:
GitHub
3月 06, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #928 from katzyn/pdf
Show information about office configuration instead of fallback PDF generation mode
上级
d7f6efe9
6b4d5523
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
14 行增加
和
12 行删除
+14
-12
Build.java
h2/src/tools/org/h2/build/Build.java
+13
-12
dictionary.txt
h2/src/tools/org/h2/build/doc/dictionary.txt
+1
-0
没有找到文件。
h2/src/tools/org/h2/build/Build.java
浏览文件 @
fbde5208
...
...
@@ -456,17 +456,18 @@ public class Build extends BuildBase {
exec
(
"soffice"
,
args
(
"-invisible"
,
"macro:///Standard.Module1.H2Pdf"
));
copy
(
"docs"
,
files
(
"../h2web/h2.pdf"
),
"../h2web"
);
}
catch
(
Exception
e
)
{
print
(
"OpenOffice is not available: "
+
e
);
try
{
if
(
exec
(
"soffice"
,
args
(
"--convert-to"
,
"pdf"
,
"--outdir"
,
"docs/html"
,
"docs/html/onePage.html"
))
==
0
)
{
File
f
=
new
File
(
"docs/html/onePage.pdf"
);
if
(
f
.
exists
())
{
f
.
renameTo
(
new
File
(
"docs/h2.pdf"
));
}
}
}
catch
(
Exception
ex
)
{
}
println
(
"OpenOffice / LibreOffice is not available or macros H2Pdf is not installed:"
);
println
(
e
.
toString
());
println
(
"********************************************************************************"
);
println
(
"Install and run LibreOffice or OpenOffice."
);
println
(
"Open Tools - Macros - Organize Macros - LibreOffice Basic..."
);
println
(
"Navigate to My Macros / Standard / Module1 and press Edit button."
);
println
(
"Put content of h2/src/installer/openoffice.txt here."
);
println
(
"Edit BaseDir variable value:"
);
println
(
" BaseDir = \""
+
new
File
(
System
.
getProperty
(
"user.dir"
)).
getParentFile
().
toURI
()
+
'"'
);
println
(
"Close office application and try to build installer again."
);
println
(
"********************************************************************************"
);
}
delete
(
"docs/html/onePage.html"
);
FileList
files
=
files
(
"../h2"
).
keep
(
"../h2/build.*"
);
...
...
@@ -480,7 +481,7 @@ public class Build extends BuildBase {
exec
(
"makensis"
,
args
(
"/v2"
,
"src/installer/h2.nsi"
));
installer
=
true
;
}
catch
(
Exception
e
)
{
print
(
"NSIS is not available: "
+
e
);
print
ln
(
"NSIS is not available: "
+
e
);
}
String
buildDate
=
getStaticField
(
"org.h2.engine.Constants"
,
"BUILD_DATE"
);
byte
[]
data
=
readFile
(
new
File
(
"../h2web/h2.zip"
));
...
...
h2/src/tools/org/h2/build/doc/dictionary.txt
浏览文件 @
fbde5208
...
...
@@ -766,3 +766,4 @@ interpolated thead
die weekdiff osx subprocess dow proleptic microsecond microseconds divisible cmp denormalized suppressed saturated mcs
london dfs weekdays intermittent looked msec tstz africa monrovia asia tokyo weekday joi callers multipliers ucn
openoffice organize libre
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论