Author: mcbrown
Date: 2007-12-08 05:18:54 +0100 (Sat, 08 Dec 2007)
New Revision: 9210
Log:
Fixing renamed nodes to ignre expiry
Fixing DeepCheck to ignore https targets, instead of only processing them
Modified:
trunk/tools/MySQL/XML/DeepCheck.pm
trunk/tools/check-renamed-nodes.pl
Modified: trunk/tools/MySQL/XML/DeepCheck.pm
===================================================================
--- trunk/tools/MySQL/XML/DeepCheck.pm 2007-12-08 03:20:08 UTC (rev 9209)
+++ trunk/tools/MySQL/XML/DeepCheck.pm 2007-12-08 04:18:54 UTC (rev 9210)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 588 bytes
@@ -81,7 +81,7 @@
if ($self->{options}->{checkulink})
{
if ($element->{Name} eq 'ulink' &&
- $element->{Attributes}->{'url'} =~ m/^https/)
+ $element->{Attributes}->{'url'} !~ m/^https/)
{
if
(!exists($self->{triedulinks}->{$element->{Attributes}->{'url'}}))
{
Modified: trunk/tools/check-renamed-nodes.pl
===================================================================
--- trunk/tools/check-renamed-nodes.pl 2007-12-08 03:20:08 UTC (rev 9209)
+++ trunk/tools/check-renamed-nodes.pl 2007-12-08 04:18:54 UTC (rev 9210)
Changed blocks: 1, Lines Added: 1, Lines Deleted: 1; 453 bytes
@@ -31,7 +31,7 @@
next if ($line =~ m/^\#/);
chomp($line);
- my ($src,$id) = split (/[ \t]+/,$line,2);
+ my ($src,$id,$expiry) = split (/[ \t]+/,$line);
my $chkid = $id;
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r9210 - in trunk/tools: . MySQL/XML | mcbrown | 8 Dec |