The similarity in release numbers is particularly unfortunate.
Sorry I missed that when looking at the page. (Saw "source directory",
thought "ah, users will see the more recent releases in the directory").
Updating the homepage soon would seem desirable.
Mitchell
-R
At Tue, 2 Mar 2004 00:44:02 -0500,
The "new" site is now live.
-R
thank you! this looks fantastic, and the html docs will be a valuable and
welcome addition.
--jerry
**************************************************************************
This e-mail and any files transmitted with it may contain privileged or
confidential information. It is solely for use by the individual for whom
it is intended, even if addressed incorrectly. If you received this e-mail
in error, please notify the sender; do not disclose, copy, distribute, or
take any action in reliance on the contents of this information; and delete
it from your system. Any other use of this e-mail is prohibited. Thank you
for your compliance.
points to, e.g.:
http://www.parrotcode.org/rt3/Ticket/Display.html?id=27304
instead of the more likely:
http://rt.perl.org/rt3/Ticket/Display.html?id=27304
On Wednesday, March 3, 2004, at 01:15 AM, Robert Spier wrote:
>
> As promised.
>
> The "new" site is now live.
>
> -R
>
--
Will "Coke" Coleda will at coleda
dot com
I've fixed the URLs.
-R
At Thu, 4 Mar 2004 00:39:50 -0500,
This is because the links are funny.
The best way to get proper links is to do something like:
L<This is CNN|http://www.cnn.com>
That's not great.. but it tends to render better.
Our official Pod renderer is Pod::Simple::HTML, so you can test it
out.
I'm throwing this back to p6i, so somebody can fix it, and maybe take
another pass through the FAQ, addming more F.. A... Q...s ;)
-R
The problem is in line 168-9
my $out = $to if defined $to and length $to;
$out .= "#" . $section if defined $section and length $section;
One of those "Deprecated use of my() in conditional" cases they've been
talking about on perl5-porters.
my $out;
$out = $to if defined $to and length $to;
$out .= "#" . $section if defined $section and length $section;
fixes it.
Looks like we'll be modifying Pod-Simple after all.
Mike