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
c6103538
Commit
c6103538
authored
Nov 28, 2001
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge jcole@work.mysql.com:/home/bk/mysql-4.0
into sarvik.tfr.cafe.ee:/usr/home/jcole/bk/mysql-4.0
parents
6752d482
3aa75d3e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
Docs/Support/docbook-fixup.pl
Docs/Support/docbook-fixup.pl
+24
-0
No files found.
BitKeeper/etc/logging_ok
View file @
c6103538
...
...
@@ -36,3 +36,4 @@ tonu@hundin.mysql.fi
tonu@volk.internalnet
tonu@x153.internalnet
tonu@x3.internalnet
jcole@sarvik.tfr.cafe.ee
Docs/Support/docbook-fixup.pl
View file @
c6103538
...
...
@@ -29,6 +29,14 @@ print STDERR "Adding PARA inside ENTRY...\n";
$data
=~
s{<entry>(.+?)</entry>}
{<entry><para>$1</para></entry>}gs
;
print
STDERR
"
Removing mailto: from email addresses...
\n
";
$data
=~
s{mailto:}
{}gs
;
print
STDERR
"
Fixing spacing problem with titles...
\n
";
$data
=~
s{</(\w+)>(\w{2,}
)}
{</$1> $2}gs
;
@apx
=
("
Users
",
"
MySQL Testimonials
",
"
News
",
"
GPL-license
",
"
LGPL-license
");
...
...
@@ -36,6 +44,22 @@ foreach $apx (@apx) {
print
STDERR
"
Removing appendix
$apx
...
\n
";
$data
=~
s{<appendix id=\"$apx\">(.+?)</appendix>}
{}gs
;
print
STDERR
"
... Building list of removed nodes ...
\n
";
foreach
(
split
"
\n
",
$&
)
{
push
@nodes
,
$2
if
(
/<(\w+) id=\"(.+?)\">/
)
};
};
print
STDERR
"
Fixing references to removed nodes...
\n
";
foreach
$node
(
@nodes
)
{
$web
=
$node
;
$web
=~
s/[ ]/_/
;
$web
=
"
http://www.mysql.com/doc/
"
.
(
join
"
/
",
(
split
//
,
$web
)[
0
..
1
])
.
"
/
$web
.html
";
print
STDERR
"
$node
->
$web
\n
";
$data
=~
s{<(\w+) linkend=\"$node\">}
{$web}gs
;
};
print
STDOUT
$data
;
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