List:Commits« Previous MessageNext Message »
From:mcbrown Date:December 8 2007 5:26am
Subject:svn commit - mysqldoc@docsrva: r9211 - trunk/tools/MySQL/XML
View as plain text  
Author: mcbrown
Date: 2007-12-08 05:26:49 +0100 (Sat, 08 Dec 2007)
New Revision: 9211

Log:
Disabling table width checking



Modified:
   trunk/tools/MySQL/XML/DeepCheck.pm


Modified: trunk/tools/MySQL/XML/DeepCheck.pm
===================================================================
--- trunk/tools/MySQL/XML/DeepCheck.pm	2007-12-08 04:18:54 UTC (rev 9210)
+++ trunk/tools/MySQL/XML/DeepCheck.pm	2007-12-08 04:26:49 UTC (rev 9211)
Changed blocks: 1, Lines Added: 25, Lines Deleted: 25; 3191 bytes

@@ -452,31 +452,31 @@
                                 
$self->{tabledefs}->{$self->{tablecount}}->{section} || 'UNKNOWN',
                                  ": Total column width is 0\n")});
         }
-        elsif ($self->{tabledefs}->{$self->{tablecount}}->{colwidth} <
100)
-        {
-            $errorcounter++;
-            push(@{$self->{issuelist}},
-                 {'parentid' =>
$self->{tabledefs}->{$self->{tablecount}}->{section},
-                  'type' => 'tablefault',
-                  'class' => 'todo',
-                  'priority' => 10,
-                  'text' => join('',"Error in Table within section ",
-                                
$self->{tabledefs}->{$self->{tablecount}}->{section} || 'UNKNOWN',
-                                 ": Total column width is less than 100% (actually ",
-                                
$self->{tabledefs}->{$self->{tablecount}}->{colwidth},
-                                 "%)\n")});
-        }
-        elsif ($self->{tabledefs}->{$self->{tablecount}}->{colwidth} >
100)
-        {
-            $errorcounter++;
-            push(@{$self->{issuelist}},
-                 {'parentid' =>
$self->{tabledefs}->{$self->{tablecount}}->{section},
-                  'type' => 'tablefault',
-                  'class' => 'todo',
-                  'text' => join('',"Error in Table within section ",
-                                
$self->{tabledefs}->{$self->{tablecount}}->{section} || 'UNKNOWN',
-                                 ": Total column width is more than 100%\n")});
-        }
+#        elsif ($self->{tabledefs}->{$self->{tablecount}}->{colwidth} <
100)
+#        {
+#            $errorcounter++;
+#            push(@{$self->{issuelist}},
+#                 {'parentid' =>
$self->{tabledefs}->{$self->{tablecount}}->{section},
+#                  'type' => 'tablefault',
+#                  'class' => 'todo',
+#                  'priority' => 10,
+#                  'text' => join('',"Error in Table within section ",
+#                                
$self->{tabledefs}->{$self->{tablecount}}->{section} || 'UNKNOWN',
+#                                 ": Total column width is less than 100% (actually ",
+#                                
$self->{tabledefs}->{$self->{tablecount}}->{colwidth},
+#                                 "%)\n")});
+#        }
+#        elsif ($self->{tabledefs}->{$self->{tablecount}}->{colwidth} >
100)
+#        {
+#            $errorcounter++;
+#            push(@{$self->{issuelist}},
+#                 {'parentid' =>
$self->{tabledefs}->{$self->{tablecount}}->{section},
+#                  'type' => 'tablefault',
+#                  'class' => 'todo',
+#                  'text' => join('',"Error in Table within section ",
+#                                
$self->{tabledefs}->{$self->{tablecount}}->{section} || 'UNKNOWN',
+#                                 ": Total column width is more than 100%\n")});
+#        }
 
         if ($errorcounter == 0)
         {


Thread
svn commit - mysqldoc@docsrva: r9211 - trunk/tools/MySQL/XMLmcbrown8 Dec