perl/modules/W3C/LinkChecker/bin checklink,4.134,4.135

Update of /sources/public/perl/modules/W3C/LinkChecker/bin
In directory hutz:/tmp/cvs-serv2454

Modified Files:
	checklink 
Log Message:
Support new link things in HTML 5 (incomplete; XHTML 5 xml:base not supported).

Index: checklink
===================================================================
RCS file: /sources/public/perl/modules/W3C/LinkChecker/bin/checklink,v
retrieving revision 4.134
retrieving revision 4.135
diff -u -d -r4.134 -r4.135
--- checklink	10 Jan 2009 21:25:08 -0000	4.134
+++ checklink	10 Jan 2009 21:27:38 -0000	4.135
@@ -220,23 +220,30 @@
 use constant LINK_ATTRS => {
     a          => ['href'],
     area       => ['href'],
+    audio      => ['src'],
     blockquote => ['cite'],
     body       => ['background'],
     del        => ['cite'],
     embed      => ['href', 'pluginspage', 'pluginurl', 'src'], # proprietary
+    # form/@action not checked (side effects)
     frame      => ['longdesc', 'src'],
     iframe     => ['longdesc', 'src'],
     img        => ['longdesc', 'src'],
     ins        => ['cite'],
+    # input/@action not checked (side effects)
     input      => ['src'],
     link       => ['href'],
     object     => ['data'],
     q          => ['cite'],
     script     => ['src'],
+    source     => ['src'],
+    video      => ['src'],
 };
 
 # Tag=>attribute mapping of things we treat as space separated lists of links.
 use constant LINK_LIST_ATTRS => {
+    a          => ['ping'],
+    area       => ['ping'],
     head       => ['profile'],
 };
 

Received on Saturday, 10 January 2009 21:27:49 UTC