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
0f465645
Commit
0f465645
authored
Mar 14, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge jcole@work.mysql.com:/home/bk/mysql-4.0
into mugatu.spaceapes.com:/home/jcole/bk/mysql-4.0
parents
fcdf3ac0
0c382a71
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
361 additions
and
240 deletions
+361
-240
Docs/Makefile.am
Docs/Makefile.am
+88
-29
Docs/internals.texi
Docs/internals.texi
+272
-210
Docs/manual.de.texi
Docs/manual.de.texi
+1
-1
No files found.
Docs/Makefile.am
View file @
0f465645
...
...
@@ -48,24 +48,26 @@ include.texi: ../configure.in
grep
"MYSQL_TCP_PORT_DEFAULT="
../configure.in |
\
sed
-e
's;MYSQL_TCP_PORT_DEFAULT=;;'
>>
$@
#
# English Manual
#
# GNU Info
mysql.info
:
manual.texi include.texi
cd
$(srcdir)
&&
$(MAKEINFO)
--no-split
-I
$(srcdir)
$<
# Plain Text
manual.txt
:
manual.texi include.texi
cd
$(srcdir)
&&
\
$(MAKEINFO)
-I
$(srcdir)
--no-headers
--no-split
--output
$@
$<
# HTML, all in one file
manual.html
:
manual.texi include.texi $(srcdir)/Support/texi2html
cd
$(srcdir)
&&
@PERL@
$(srcdir)
/Support/texi2html
$(TEXI2HTML_FLAGS)
$<
manual_toc.html
:
manual.html
# Fix: add --output-comment with some interesting info?
# Fix: @image worked with a older version of pdftex.
# Note: @image will work if we first convert all images to pdf ...
# is that worth it?
# Comment: We need to run pdftex 2 times to get the cross references right.
# PDF, Portable Document Format
manual.pdf
:
manual.texi
cat
manual.texi |
sed
-e
's|@image{[^}]*} *||g'
>
manual-tmp.texi
pdftex
--interaction
=
nonstopmode manual-tmp.texi
...
...
@@ -77,33 +79,14 @@ manual.pdf: manual.texi
rm
-f
manual-tmp.
*
touch
$@
# Target to produce NuSphere Manual
nusphere.pdf
:
manual.texi
cat
manual.texi
\
|
sed
-e
's/@example/@smallexample/g'
\
-e
's/@end example/@end smallexample/g'
\
-e
's/@c ifnusphere //g'
\
-e
's|@image{[^}]*} *||g'
\
>
manual-tmp.texi
pdftex
--interaction
=
nonstopmode manual-tmp.texi
texindex manual-tmp.??
pdftex
--interaction
=
nonstopmode manual-tmp.texi
texindex manual-tmp.??
pdftex
--interaction
=
nonstopmode manual-tmp.texi
mv
manual-tmp.pdf nusphere.pdf
rm
-f
manual-tmp.
*
touch
$@
# Target to produce DocBook XML
# XML, DocBook 4.0
mysql.xml
:
manual.texi include.texi
$(MAKEINFO)
--force
--no-ifinfo
--docbook
manual.texi
mv
mysql.xml mysql-tmp.xml
Support/docbook-fixup.pl <mysql-tmp.xml
>
mysql.xml
rm
-f
mysql-tmp.xml
# The texi2dvi gives a lot of harmless errors. Just ignore them unless
# you want to help with the typesetting part.
# This is the European papersize version
# Postscript, A4 Paper
manual_a4.ps
:
manual.texi include.texi
TEXINPUTS
=
$(srcdir)
:
$$
TEXINPUTS
\
MAKEINFO
=
'
$(MAKEINFO)
-I
$(srcdir)
'
\
...
...
@@ -111,7 +94,7 @@ manual_a4.ps: manual.texi include.texi
$(DVIPS)
-t
a4 manual.dvi
-o
$@
touch
$@
#
This is the American papersize version
#
Postscript, US Letter Paper
manual_letter.ps
:
manual.texi include.texi
TEXINPUTS
=
$(srcdir)
:
$$
TEXINPUTS
\
MAKEINFO
=
'
$(MAKEINFO)
-I
$(srcdir)
'
\
...
...
@@ -119,6 +102,82 @@ manual_letter.ps: manual.texi include.texi
$(DVIPS)
-t
letter manual.dvi
-o
$@
touch
$@
#
# German Manual
#
# GNU Info
mysql.de.info
:
manual.de.texi include.texi
cd
$(srcdir)
&&
$(MAKEINFO)
--no-split
-I
$(srcdir)
$<
# Plain Text
manual.de.txt
:
manual.de.texi include.texi
cd
$(srcdir)
&&
\
$(MAKEINFO)
-I
$(srcdir)
--no-headers
--no-split
--output
$@
$<
# HTML, all in one file
manual.de.html
:
manual.de.texi include.texi $(srcdir)/Support/texi2html
cd
$(srcdir)
&&
@PERL@
$(srcdir)
/Support/texi2html
$(TEXI2HTML_FLAGS)
$<
manual_toc.de.html
:
manual.html
# PDF, Portable Document Format
manual.de.pdf
:
manual.de.texi
cat
manual.de.texi |
sed
-e
's|@image{[^}]*} *||g'
>
manual-tmp.texi
pdftex
--interaction
=
nonstopmode manual-tmp.texi
texindex manual-tmp.??
pdftex
--interaction
=
nonstopmode manual-tmp.texi
texindex manual-tmp.??
pdftex
--interaction
=
nonstopmode manual-tmp.texi
mv
manual-tmp.pdf manual.de.pdf
rm
-f
manual-tmp.
*
touch
$@
# XML, DocBook 4.0
mysql.de.xml
:
manual.de.texi include.texi
$(MAKEINFO)
--force
--no-ifinfo
--docbook
manual.de.texi
mv
mysql.de.xml mysql-tmp.xml
Support/docbook-fixup.pl <mysql-tmp.xml
>
mysql.de.xml
rm
-f
mysql-tmp.xml
# Postscript, A4 Paper
manual_a4.de.ps
:
manual.de.texi include.texi
TEXINPUTS
=
$(srcdir)
:
$$
TEXINPUTS
\
MAKEINFO
=
'
$(MAKEINFO)
-I
$(srcdir)
'
\
$(TEXI2DVI)
--batch
--texinfo
--quiet
'@afourpaper'
$<
$(DVIPS)
-t
a4 manual.de.dvi
-o
$@
touch
$@
# Postscript, US Letter Paper
manual_letter.de.ps
:
manual.de.texi include.texi
TEXINPUTS
=
$(srcdir)
:
$$
TEXINPUTS
\
MAKEINFO
=
'
$(MAKEINFO)
-I
$(srcdir)
'
\
$(TEXI2DVI)
--batch
$<
$(DVIPS)
-t
letter manual.de.dvi
-o
$@
touch
$@
#
# Miscellaneous
#
# Target to produce NuSphere Manual
nusphere.pdf
:
manual.texi
cat
manual.texi
\
|
sed
-e
's/@example/@smallexample/g'
\
-e
's/@end example/@end smallexample/g'
\
-e
's/@c ifnusphere //g'
\
-e
's|@image{[^}]*} *||g'
\
>
manual-tmp.texi
pdftex
--interaction
=
nonstopmode manual-tmp.texi
texindex manual-tmp.??
pdftex
--interaction
=
nonstopmode manual-tmp.texi
texindex manual-tmp.??
pdftex
--interaction
=
nonstopmode manual-tmp.texi
mv
manual-tmp.pdf nusphere.pdf
rm
-f
manual-tmp.
*
touch
$@
# Include images for the manual in the distribution
dist-hook
:
BD
=
`
cd
$(top_srcdir)
;
pwd
`
;
\
...
...
Docs/internals.texi
View file @
0f465645
This diff is collapsed.
Click to expand it.
Docs/manual.de.texi
View file @
0f465645
@
\input texinfo @c -*-texinfo-*-
\input texinfo @c -*-texinfo-*-
@c Copyright 1997-2001 TcX AB, Detron HB und MySQL Finland AB
@c
@c *********************************************************
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