[Bast-commits] r8419 - ironman

idn at dev.catalyst.perl.org idn at dev.catalyst.perl.org
Fri Jan 22 22:19:09 GMT 2010


Author: idn
Date: 2010-01-22 22:19:09 +0000 (Fri, 22 Jan 2010)
New Revision: 8419

Modified:
   ironman/notes.pod
Log:
Adding details of patch for HTML::Tidy and additional modules needed for testing Perlanet::IronMan

Modified: ironman/notes.pod
===================================================================
--- ironman/notes.pod	2010-01-22 16:05:12 UTC (rev 8418)
+++ ironman/notes.pod	2010-01-22 22:19:09 UTC (rev 8419)
@@ -102,5 +102,43 @@
 
 FCGI::ProcManager is required for FastCGI
 
+=head1 Perlanet::IronMan
+
+=head2 HTML::Tidy
+
+HTML::Tidy needs a patch to pass tests:
+
+<snip>
+--- Tidy.xs.orig    2007-09-24 11:36:19.000000000 +0200
++++ Tidy.xs 2007-09-24 11:37:42.000000000 +0200
+@@ -55,6 +55,7 @@ _tidy_messages(input, configfile, tidy_o
+         const char* newline;
+         int rc = 0;
+     PPCODE:
++        tidyBufInit(&errbuf);
+         rc = ( tidyOptSetValue( tdoc, TidyCharEncoding, "utf8" ) ? rc : -1 );
+
+         if ( (rc >= 0 ) && configfile && *configfile ) {
+@@ -117,6 +118,8 @@ _tidy_clean(input, configfile, tidy_opti
+         const char* newline;
+         int rc = 0;
+     PPCODE:
++        tidyBufInit(&output);
++        tidyBufInit(&errbuf);
+         /* Set our default first. */
+         /* Don't word-wrap */
+         rc = ( tidyOptSetInt( tdoc, TidyWrapLen, 0 ) ? rc : -1 );
+</snip>
+
+=head2 Additional deps
+
+You'll need the following additional deps for testing:
+
+    Data::UUID
+    SQL::Translator
+    DateTime::Format::SQLite
+    LWP::UserAgent
+    XML::OPML::SimpleGen
+
 =cut
 




More information about the Bast-commits mailing list