123 Star 0 Fork 2

src-openEuler/docbook-utils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
db2html 1.26 KB
一键复制 编辑 原始数据 按行查看 历史
薄皮小笼包 提交于 6年前 . init pack
#! /bin/sh
ADMON_GRAPHICS=/usr/share/sgml/docbook/dsssl-stylesheets/images/*.gif
output=docbook2html-dir
skip=0
dbdircleanup=1
outputdone=0
for arg in "$@"
do
if [ $skip -gt 0 ]
then
skip=$(($skip - 1))
continue
fi
case $arg in
-h|--help|-v|--version) break
;;
-n|--nostd|-u|--nochunks) ;;
-o|--output) outputdone=1
;;
-*) skip=1
;;
*) dbdircleanup=0
if [ ${outputdone} -eq 1 ];
then
output="$(echo $arg | sed 's,\.sgml$,,;s,\.sgm$,,;s,\.xml,,')"
outputfile="$basename "$output""
outputdone=2
elif [ ${outputdone} -eq 2 ];
then
outputfile="$(echo $arg | sed 's,\.sgml$,,;s,\.sgm$,,;s,\.xml,,' | \
rev | cut -d'/' -f1 | rev)"
else
output="$(echo $arg | sed 's,\.sgml$,,;s,\.sgm$,,;s,\.xml,,')"
outputfile=$(basename "$output")
fi
;;
esac
done
if [ ${dbdircleanup} -eq 0 ];
then
echo "Output is $output/$outputfile.html"
fi
if [ -d ${output} ]
then
rm -rf ${output}.junk
mv ${output} ${output}.junk
fi
mkdir ${output}
mkdir ${output}/stylesheet-images
cp ${ADMON_GRAPHICS} ${output}/stylesheet-images
jw -f docbook -b html -o ${output} "$@"
if [ ${dbdircleanup} -eq 1 ];
then
rm -rf ${output}
fi
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/src-openeuler/docbook-utils.git
git@gitee.com:src-openeuler/docbook-utils.git
src-openeuler
docbook-utils
docbook-utils
master

搜索帮助