List:Commits« Previous MessageNext Message »
From:mcbrown Date:September 10 2006 8:52am
Subject:svn commit - mysqldoc@docsrva: r3312 - in trunk: refman-5.1 tools xsl.d
View as plain text  
Author: mcbrown
Date: 2006-09-10 08:52:19 +0200 (Sun, 10 Sep 2006)
New Revision: 3312

Log:
Removing the ununsed alignment property in XSL-FO output (from change yesterday)
Temporarily disabling deep-check.pl's line width checking
Fixing the new SE chapter which had sections with missing IDs, which broke .info builds



Modified:
   trunk/refman-5.1/storage-engines.xml
   trunk/tools/deep-check.pl
   trunk/xsl.d/mysql-fo.xsl


Modified: trunk/refman-5.1/storage-engines.xml
===================================================================
--- trunk/refman-5.1/storage-engines.xml	2006-09-09 17:45:39 UTC (rev 3311)
+++ trunk/refman-5.1/storage-engines.xml	2006-09-10 06:52:19 UTC (rev 3312)
Changed blocks: 2, Lines Added: 2, Lines Deleted: 2; 575 bytes

@@ -702,7 +702,7 @@
 
     </section>
 
-    <section>
+    <section id="storage-engine-compare-transactions">
 
       <title>Comparing Transaction and Non-Transaction Engines</title>
 

@@ -904,7 +904,7 @@
 
   </section>
 
-  <section>
+  <section id="storage-engine-setting">
 
     <title>Setting the Storage Engine</title>
 


Modified: trunk/tools/deep-check.pl
===================================================================
--- trunk/tools/deep-check.pl	2006-09-09 17:45:39 UTC (rev 3311)
+++ trunk/tools/deep-check.pl	2006-09-10 06:52:19 UTC (rev 3312)
Changed blocks: 2, Lines Added: 6, Lines Deleted: 6; 1083 bytes

@@ -8,7 +8,7 @@
 # - Checks width of columns equal 100%
 # - Checks images (defined and local filesystem)
 # - Checks section IDs (duplicates)
-# - Checks line length of <programlisting> elements
+# - Checks line length of <programlisting> elements (disabled)
 
 # Martin MC Brown
 # mc@stripped

@@ -266,11 +266,11 @@
     if ($self->{checklinelength})
     {
         my @lines = split /[\r\n]+/,$element->{Data};
-        foreach my $line (@lines)
-        {
-            printf STDERR ("Following line is more than 72 characters
long\n%s\n\n",$line) 
-                if (length($line) > 72);
-        }
+#        foreach my $line (@lines)
+#        {
+#            printf STDERR ("Following line is more than 72 characters
long\n%s\n\n",$line) 
+#                if (length($line) > 72);
+#        }
     }
 
     $self->{text} .= $element->{Data} if ($self->{intag} == 1);


Modified: trunk/xsl.d/mysql-fo.xsl
===================================================================
--- trunk/xsl.d/mysql-fo.xsl	2006-09-09 17:45:39 UTC (rev 3311)
+++ trunk/xsl.d/mysql-fo.xsl	2006-09-10 06:52:19 UTC (rev 3312)
Changed blocks: 1, Lines Added: 0, Lines Deleted: 1; 520 bytes

@@ -29,7 +29,6 @@
 <xsl:param name="page.margin.inner" select="'1in'"/>
 <xsl:param name="page.margin.outer" select="'1in'"/>
 <xsl:param name="draft.mode" select="no"/>
-<xsl:param name="alignment" select="left"/>
 
 <xsl:attribute-set name="verbatim.properties">
   <xsl:attribute name="font-size">


Thread
svn commit - mysqldoc@docsrva: r3312 - in trunk: refman-5.1 tools xsl.dmcbrown10 Sep