Philip M. Gollucci wrote:
Stas Bekman wrote:

I've also updated lib/DocSet as you've sent to me and before that html2ps, so that might be the cause as well. i.e try installing an older DocSet module and nuke lib/DocSet so it won't use the local modules.

Stas,
DocSet0.17 works, but DocSet0.18 Does not.

I may have sometime to dig through the diff Saturday morning.

Eurika!

This part of the upgrade causes it to fail, though I have no idea why (yet)

diff -u -bwi -ru DocSet-0.17/lib/DocSet/Doc/POD2HTMLPS.pm DocSet-0.18/lib/DocSet/Doc/POD2HTMLPS.pm
--- DocSet-0.17/lib/DocSet/Doc/POD2HTMLPS.pm    Thu Jun 13 05:06:21 2002
+++ DocSet-0.18/lib/DocSet/Doc/POD2HTMLPS.pm    Fri Sep  2 15:19:00 2005
@@ -97,25 +97,25 @@

 sub view_head1 {
     my ($self, $head1) = @_;
-    return "<h2>" . $self->anchor($head1->title) . "</h2>\n\n" .
+    return "<h2>" . $head1->title . "</h2>\n\n" .
         $head1->content->present($self);
 }

 sub view_head2 {
     my ($self, $head2) = @_;
-    return "<h3>" . $self->anchor($head2->title) . "</h3>\n\n" .
+    return "<h3>" . $head2->title . "</h3>\n\n" .
         $head2->content->present($self);
 }

 sub view_head3 {
     my ($self, $head3) = @_;
-    return "<h4>" . $self->anchor($head3->title) . "</h4>\n\n" .
+    return "<h4>" . $head3->title . "</h4>\n\n" .
         $head3->content->present($self);
 }

 sub view_head4 {
     my ($self, $head4) = @_;
-    return "<h5>" . $self->anchor($head4->title) . "</h5>\n\n" .
+    return "<h5>" . $head4->title . "</h5>\n\n" .
         $head4->content->present($self);
 }


--
END
------------------------------------------------------------
    What doesn't kill us can only make us stronger.
                Nothing is impossible.
                                
Philip M. Gollucci ([EMAIL PROTECTED]) 301.254.5198
Consultant / http://p6m7g8.net/Resume/
Senior Developer / Liquidity Services, Inc.
  http://www.liquidityservicesinc.com
       http://www.liquidation.com
       http://www.uksurplus.com
       http://www.govliquidation.com
       http://www.gowholesale.com

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to