List:Commits« Previous MessageNext Message »
From:mcbrown Date:October 20 2007 6:21pm
Subject:svn commit - mysqldoc@docsrva: r8227 - trunk/tools/MySQL/XML
View as plain text  
Author: mcbrown
Date: 2007-10-20 20:21:31 +0200 (Sat, 20 Oct 2007)
New Revision: 8227

Log:
Disabling xref content checking



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


Modified: trunk/tools/MySQL/XML/DeepCheck.pm
===================================================================
--- trunk/tools/MySQL/XML/DeepCheck.pm	2007-10-20 18:00:19 UTC (rev 8226)
+++ trunk/tools/MySQL/XML/DeepCheck.pm	2007-10-20 18:21:31 UTC (rev 8227)
Changed blocks: 1, Lines Added: 13, Lines Deleted: 11; 1322 bytes

@@ -170,17 +170,19 @@
         }
     }
 
-    if ($element->{Name} eq 'xref')
-    {
-        if ($self->{options}->{idmap}->{byid}->{$self->{linkref}}->{title} eq '')
-        {
-            push(@{$self->{issuelist}},
-                 {'parentid' => $self->{currsection},
-                  'type' => 'xrefnotext',
-                  'class' => 'todo',
-                  'text' => "<xref> to $self->{linkref} within $self->{currsection} links to an item without a title\n"});
-        }            
-    }
+# Disabled until we can organize a build issue
+#
+#    if ($element->{Name} eq 'xref')
+#    {
+#        if ($self->{options}->{idmap}->{byid}->{$self->{linkref}}->{title} eq '')
+#        {
+#            push(@{$self->{issuelist}},
+#                 {'parentid' => $self->{currsection},
+#                  'type' => 'xrefnotext',
+#                  'class' => 'todo',
+#                  'text' => "<xref> to $self->{linkref} within $self->{currsection} links to an item without a title\n"});
+#        }            
+#    }
     
     if ($element->{Name} eq 'emphasis')
     {


Thread
svn commit - mysqldoc@docsrva: r8227 - trunk/tools/MySQL/XMLmcbrown20 Oct