summaryrefslogtreecommitdiff
path: root/Docs/Support
diff options
context:
space:
mode:
authorunknown <zak@linux.local>2002-02-27 07:25:43 -0700
committerunknown <zak@linux.local>2002-02-27 07:25:43 -0700
commit78ea4ef1eddf73679b87cd4cd774a1bad569a826 (patch)
tree8eb4efadac8211d026001ca682b514b1e023b7e5 /Docs/Support
parentbbfdc6ee5af516247f2526cf875d51395cd5384c (diff)
downloadmariadb-git-78ea4ef1eddf73679b87cd4cd774a1bad569a826.tar.gz
Final set of changes for the docbook patching scripts for the MySQL
reference manual for O'Reilly. Docs/Support/docbook-split: Give the output directory a more sensible, and automatically generated, name. Docs/Support/make-docbook: Patch shell script to include patching the colspec tags and splitting the manual into it's components.
Diffstat (limited to 'Docs/Support')
-rwxr-xr-xDocs/Support/docbook-split2
-rwxr-xr-xDocs/Support/make-docbook4
2 files changed, 5 insertions, 1 deletions
diff --git a/Docs/Support/docbook-split b/Docs/Support/docbook-split
index b116769f86e..eafb437efe4 100755
--- a/Docs/Support/docbook-split
+++ b/Docs/Support/docbook-split
@@ -7,7 +7,7 @@ use strict;
my $app_letter = "a"; # Start appendix letters at "a"
my $chap_num = 1; # Start chapter numbers at one (there is no preface)
-my $directory = "chaps_apps_index";
+my $directory = "mysql_refman_" . time;
my $ext = ".xml";
my $line = "";
my $output_name = "";
diff --git a/Docs/Support/make-docbook b/Docs/Support/make-docbook
index ec811030af1..bdca812d7ab 100755
--- a/Docs/Support/make-docbook
+++ b/Docs/Support/make-docbook
@@ -18,3 +18,7 @@
# See if the XML output is well-formed
xmlwf mysql.xml
+
+ # If all is well, keep processing
+ cat mysql.xml | Support/colspec-fix.pl | Support/docbook-split;
+