Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
bdda203b
Commit
bdda203b
authored
Mar 13, 2002
by
arjen@co3064164-a.bitbike.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes for German manual in mysql.de website.
parent
7c5714ab
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6635 additions
and
6182 deletions
+6635
-6182
Docs/Support/test-make-manual-de
Docs/Support/test-make-manual-de
+137
-0
Docs/manual.de.texi
Docs/manual.de.texi
+6498
-6182
No files found.
Docs/Support/test-make-manual-de
0 → 100755
View file @
bdda203b
#!/bin/sh
needed_flags
=
0
needed_texi2html
=
0
needed_texinfo_tex
=
0
needed_include_texi
=
0
if
[
-z
$BROWSER
]
;
then
BROWSER
=
netscape
echo
"BROWSER not set, using
$BROWSER
"
fi
die
()
{
echo
echo
$1
cleanup
exit
1
}
cleanup
()
{
echo
"Cleaning up..."
if
[
$needed_flags
]
;
then
bk clean Flags
fi
if
[
$needed_texi2html
]
;
then
bk clean Support/texi2html
fi
if
[
$needed_texinfo_tex
]
;
then
bk clean Support/texinfo.tex
fi
if
[
$needed_include_texi
]
;
then
rm
-f
include.texi
fi
for
file
in
\
manual.de.aux manual.de.cp manual.de.cps manual.de.dvi
\
manual.de.fn manual.de.fns manual.de.ky manual.de.html
\
manual.de.pg manual.de.toc manual.de.tp manual.de.vr
\
mysql.de.info manual.de_toc.html
;
do
rm
-f
$file
done
}
if
[
-e
Flags/usa.txt
]
;
then
echo
"Good, Flags are there."
else
echo
-n
"Checking out Flags..."
bk edit Flags
>
/dev/null 2>&1
echo
" Done."
needed_flags
=
1
fi
if
[
-e
Support/texi2html
]
;
then
echo
"Good, texi2html is there."
else
echo
-n
"Checking out texi2html..."
bk edit Support/texi2html
>
/dev/null 2>&1
echo
" Done."
needed_texi2html
=
1
fi
if
[
-e
Support/texinfo.tex
]
;
then
echo
"Good, texinfo.tex is there."
else
echo
-n
"Checking out texinfo.tex..."
bk edit Support/texinfo.tex
>
/dev/null 2>&1
echo
" Done."
needed_texinfo_tex
=
1
fi
if
[
-e
include.texi
]
;
then
echo
"Good, include.texi is there."
else
echo
-n
"Creating include.texi..."
bk edit ../configure.in
>
/dev/null 2>&1
echo
"@c This file was generated by test-make-manual"
>
include.texi
echo
-n
"@set mysql_version "
>>
include.texi
grep
"AM_INIT_AUTOMAKE(mysql, "
../configure.in |
\
sed
-e
's;AM_INIT_AUTOMAKE(mysql, ;;'
-e
's;);;'
>>
include.texi
echo
-n
"@set default_port "
>>
include.texi
grep
"MYSQL_TCP_PORT_DEFAULT="
../configure.in |
\
sed
-e
's;MYSQL_TCP_PORT_DEFAULT=;;'
>>
include.texi
echo
" Done."
needed_include_texi
=
1
fi
echo
-n
"Running makeinfo..."
makeinfo
--no-split
-I
.
manual.de.texi
if
[
$?
!=
0
]
;
then
die
"Manual has errors - fix before you commit"
else
echo
" Looks good."
fi
echo
-n
"Running texi2html..."
/usr/bin/perl ./Support/texi2html
-iso
-number
manual.de.texi
if
[
$?
!=
0
]
;
then
die
"Manual has errors - fix before you commit"
else
echo
" Looks good."
fi
echo
-n
"Running texi2dvi..."
texi2dvi
--batch
manual.de.texi
>
texi2dvi.out
if
[
$?
!=
0
]
;
then
die
"Manual has errors - fix before you commit (saved in texi2dvi.out)"
else
rm
texi2dvi.out
echo
" Looks good."
fi
echo
echo
echo
"Please examine your modifications in
\`
manual.de.html'."
echo
echo
"If you would like to use a different browser, set the 'BROWSER' environment"
echo
"variable."
echo
$BROWSER
file:
`
pwd
`
/manual.de_toc.html
echo
"-- Press Enter to Continue --"
read
junk
cleanup
Docs/manual.de.texi
View file @
bdda203b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment