- From: Olivier Thereaux via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 12 Jun 2008 22:15:49 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/perl/modules/W3C/XHTML/HTMLCompatChecker
In directory hutz:/tmp/cvs-serv17920
Modified Files:
Changes MANIFEST META.yml Makefile.PL
Log Message:
new version, modularized (no longer a single cgi script, but a library+script building on it) + refactoring + test suite
Index: META.yml
===================================================================
RCS file: /sources/public/perl/modules/W3C/XHTML/HTMLCompatChecker/META.yml,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- META.yml 15 Aug 2006 06:52:07 -0000 1.1
+++ META.yml 12 Jun 2008 22:15:47 -0000 1.2
@@ -1,7 +1,7 @@
--- #YAML:1.0
name: W3C-XHTML-HTMLCompatChecker
abstract: Checks XHTML 1.0 documents against HTML Compatibility Guidelines
-version: 0.01
+version: 0.10
author:
- the QA-dev tool development team at W3C http://www.w3.org/QA/Tools/qa-dev/
requires:
Index: Changes
===================================================================
RCS file: /sources/public/perl/modules/W3C/XHTML/HTMLCompatChecker/Changes,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Changes 15 Aug 2006 06:52:07 -0000 1.1
+++ Changes 12 Jun 2008 22:15:47 -0000 1.2
@@ -1,8 +1,15 @@
Revision history for W3C::XHTML::HTMLCompatChecker
==================================================
+0.10 Thu 12 June 2008
+---------------------
+
+ * modularized the original cgi script into a perl module proper
+ * added test suite
+ * TODO fix variable passing in CGI
+
0.01 Tue 15 August 2006
-----------------------
- * (15 Aug 2006) initial checkin
+ * (15 Aug 2006) initial version, as a CGI script based on an XML parser
Index: Makefile.PL
===================================================================
RCS file: /sources/public/perl/modules/W3C/XHTML/HTMLCompatChecker/Makefile.PL,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- Makefile.PL 22 Sep 2006 07:07:37 -0000 1.1
+++ Makefile.PL 12 Jun 2008 22:15:47 -0000 1.2
@@ -13,7 +13,7 @@
'DISTNAME' => 'W3C-XHTML-HTMLCompatChecker',
'AUTHOR' => 'the QA-dev tool development team at W3C http://www.w3.org/QA/Tools/qa-dev/',
'ABSTRACT' => 'HTML Compatibility Checker for XHTML (aka Appendix C checker)',
- 'VERSION' => '0.01',
+ 'VERSION' => '0.10',
'PREREQ_PM' => {
'Exporter' => 0,
"XML::Parser" => 0,
Index: MANIFEST
===================================================================
RCS file: /sources/public/perl/modules/W3C/XHTML/HTMLCompatChecker/MANIFEST,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- MANIFEST 22 Sep 2006 11:11:23 -0000 1.3
+++ MANIFEST 12 Jun 2008 22:15:47 -0000 1.4
@@ -3,4 +3,8 @@
Changes #History of this package
META.yml #Module meta-data
Makefile.PL #Module build meta-data
-bin/appCcheck.pl #cgi script checking XHTML 1.0 documents against HTML Compatibility Guidelines
+bin/appCcheck.pl #cgi script checking XHTML documents against HTML Compatibility Guidelines
+lib/W3C/XHTML/HTMLCompatChecker.pm #HTML Compatibility Guidelines checker
+t/0-base.t test module loading
+t/1-applicable.t test whether the checker knows which documents to parse/ignore
+t/2-checks.t test some of the basic checks
Received on Thursday, 12 June 2008 22:16:30 UTC