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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
45c02220
Commit
45c02220
authored
Feb 15, 2002
by
arjen@co3064164-a.bitbike.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixups for XML/DocBook output.
parent
0dba86b2
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
Docs/Support/docbook-fixup.pl
Docs/Support/docbook-fixup.pl
+9
-4
No files found.
Docs/Support/docbook-fixup.pl
View file @
45c02220
...
...
@@ -45,6 +45,11 @@ print STDERR "Fixing spacing problem with titles...\n";
$data
=~
s{</(\w+)>(\w{2,}
)}
{</$1> $2}gs
;
# 2002-02-15 arjen@mysql.com
print
STDERR
"
Adding closing / to XREF...
\n
";
$data
=~
s{<xref (.+?)>}
{<xref $1 />}gs
;
# 2002-01-30 arjen@mysql.com
print
STDERR
"
Removing COLSPEC...
\n
";
$data
=~
s{\n *<colspec colwidth=\"[0-9]+\*\">}
...
...
@@ -65,10 +70,10 @@ print STDERR "Removing lf before /PARA in ENTRY...\n";
$data
=~
s{(<entry><para>(.+?))\n(</para></entry>)}
{$1$3}gs
;
# 2002-01-31 arjen@mysql.com
print
STDERR
"
Removing whitespace before /PARA...
\n
";
$data
=~
s{[ ]+</para>}
{</para>}gs
;
# 2002-01-31 arjen@mysql.com
(2002-02-15 added \n stuff)
print
STDERR
"
Removing whitespace before /PARA
if not on separate line
...
\n
";
$data
=~
s{
([^\n ])
[ ]+</para>}
{
$1
</para>}gs
;
# 2002-01-31 arjen@mysql.com
print
STDERR
"
Removing empty PARA in ENTRY...
\n
";
...
...
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