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
68bab97b
Commit
68bab97b
authored
Oct 15, 2001
by
jcole@tetra.spaceapes.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge jcole@work.mysql.com:/home/bk/mysql-4.0
into tetra.spaceapes.com:/home/jcole/bk/mysql-4.0
parents
e4405fc5
a351429e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
45 additions
and
8 deletions
+45
-8
Docs/Makefile.am
Docs/Makefile.am
+3
-0
Docs/Support/docbook-fixup.pl
Docs/Support/docbook-fixup.pl
+41
-0
Docs/manual.texi
Docs/manual.texi
+1
-8
No files found.
Docs/Makefile.am
View file @
68bab97b
...
...
@@ -96,6 +96,9 @@ nusphere.pdf: manual.texi
# Target to produce DocBook XML
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.
...
...
Docs/Support/docbook-fixup.pl
0 → 100755
View file @
68bab97b
#!/usr/bin/perl
sub
fix
{
$str
=
shift
;
$str
=~
tr/_/-/
;
return
$str
;
};
$data
=
join
"",
<
STDIN
>
;
print
STDERR
"
Changing @@ to @...
\n
";
$data
=~
s/@@/@/gs
;
print
STDERR
"
Changing '_' to '-' in references...
\n
";
$data
=~
s{id=\"(.+?)\"}
{"id=\"".&fix($1)."\""}gsex
;
$data
=~
s{linkend=\"(.+?)\"}
{"linkend=\"".&fix($1)."\""}gsex
;
print
STDERR
"
Changing ULINK to SYSTEMITEM...
\n
";
$data
=~
s{<ulink url=\"(.+?)\"></ulink>}
{<systemitem role=\"url\">$1</systemitem>}gs
;
print
STDERR
"
Removing INFORMALFIGURE...
\n
";
$data
=~
s{<informalfigure>(.+?)</informalfigure>}
{}gs
;
print
STDERR
"
Adding PARA inside ENTRY...
\n
";
$data
=~
s{<entry>(.+?)</entry>}
{<entry><para>$1</para></entry>}gs
;
@apx
=
("
Users
",
"
MySQL-customer-usage
",
"
Credits
",
"
News
",
"
Porting
",
"
GPL-license
",
"
LGPL-license
",
"
Placeholder
");
foreach
$apx
(
@apx
)
{
print
STDERR
"
Removing appendix
$apx
...
\n
";
$data
=~
s{<appendix id=\"$apx\">(.+?)</appendix>}
{}gs
;
};
print
STDOUT
$data
;
Docs/manual.texi
View file @
68bab97b
...
...
@@ -95,11 +95,6 @@ END-INFO-DIR-ENTRY
@node Top, Introduction, (dir), (dir)
@c @ifhtml
@c <IMG SRC="Images/mysql-logo.gif">
@c <!--Image doesn't exist. Can't find suitable replacement. (Matt) -->
@c @end ifhtml
@ifinfo
This is a manual for MySQL. This version is about the
@value{mysql_version} version of MySQL. You can find a manual
...
...
@@ -135,9 +130,7 @@ distribution for that version.
@end menu
@node Introduction, Installing, Top, Top
@node Introduction, Installing, Top, (dir)
@chapter General Information About MySQL
@cindex overview
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