Philip M. Gollucci wrote:
sub pod_pom_html_view_seq_link_transform_path {
    my ($self, $path) = @_;

    $path =~ s|::|/|g;
    my $doc_obj = get_render_obj();

    my $res_path = $doc_obj->transform_src_doc($path);
    unless ($res_path) {
        # report broken links if we were told to
        if (DocSet::RunTime::get_opts('validate_links')) {
            print "!!! Broken link $doc_obj->{src_path}: [$path]\n";
        }
        return undef;
    }

    $res_path =~ s/\.[^.]+$/.html/;
#    print "$res_path\n";
    return $res_path;
}

Is busted in 0.18 ... hopefully someone more family with DocSet internals can figure it out :)

That would be me. What part is busted?


--
__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://mailchannels.com

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

Reply via email to