Skip Menu |

This queue is for tickets about the Catalyst-View-Component-jQuery CPAN distribution.

Report information
The Basics
Id: 54767
Status: open
Priority: 0/
Queue: Catalyst-View-Component-jQuery

People
Owner: Nobody in particular
Requestors: bobtfish [...] bobtfish.net
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: (no value)
Fixed in: (no value)



Subject: Pod does not display on search.cpan.org
Hiya The Pod in your Module doesn't display on search.cpan.org - however I don't know why.. Also, the VERSION number in the Pod is incorrect - perhaps you want to check out perl-reversion or something to keep you from forgetting to keep version numbers consistent. Also, I noticed your code uses strict and warnings, then Moose::Role, which gives you strict and warnings itself - so that's spurious..
Subject: Re: [rt.cpan.org #54767] Pod does not display on search.cpan.org
Date: Thu, 18 Feb 2010 12:44:12 -0600
To: bug-Catalyst-View-Component-jQuery [...] rt.cpan.org
From: "David P.C. Wollmann" <converter42 [...] gmail.com>
Thanks for your report. On Feb 18, 2010 12:39 PM, "Tomas Doran via RT" < bug-Catalyst-View-Component-jQuery@rt.cpan.org> wrote: Thu Feb 18 13:38:00 2010: Request 54767 was acted upon. Transaction: Ticket created by BOBTFISH Queue: Catalyst-View-Component-jQuery Subject: Pod does not display on search.cpan.org Broken in: (no value) Severity: (no value) Owner: Nobody Requestors: bobtfish@bobtfish.net Status: new Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=54767 > Hiya The Pod in your Module doesn't display on search.cpan.org - however I don't know why.. Also, the VERSION number in the Pod is incorrect - perhaps you want to check out perl-reversion or something to keep you from forgetting to keep version numbers consistent. Also, I noticed your code uses strict and warnings, then Moose::Role, which gives you strict and warnings itself - so that's spurious..
MetaCPAN displays a blank page for your module, rather than the doc. This may be down to the following: =begin foolcpants use warnings; use strict; =cut Instead of this you can: my $cpants = q/ use strict; use warnings; #/; I think the probably maybe actually be the following: =head1 VERSION Version 0.01 =cut =head1 SYNOPSIS That '=cut' in the middle, and all the other =cut's, might be the problem. Also: after an =cut and then some code, you don't need an =pod if the next line is an =head1. Cheers, Neil