Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

www.parrotcode.org/ points to 0.0.10

27 views
Skip to first unread message

Mitchell N Charity

unread,
Mar 2, 2004, 12:44:02 AM3/2/04
to perl6-i...@perl.org
The parrot homepage
http://www.parrotcode.org/
currently says
Periodic releases will appear on CPAN; the current release is
version 0.0.10, and can be found in the CPAN source directory.
And "source directory" is a link to parrot-0.0.10.tar.gz

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

Robert Spier

unread,
Mar 2, 2004, 7:49:35 PM3/2/04
to perl6-i...@perl.org

This is on my list for tonight. I've got something all ready to go
but have been busy with a $NEW_JOB.

-R

At Tue, 2 Mar 2004 00:44:02 -0500,

Robert Spier

unread,
Mar 3, 2004, 1:15:29 AM3/3/04
to perl6-i...@perl.org

As promised.

The "new" site is now live.

-R

Jerry Gay

unread,
Mar 3, 2004, 9:24:26 AM3/3/04
to Robert Spier, perl6-i...@perl.org
> As promised.
>
> 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.

Will Coleda

unread,
Mar 4, 2004, 12:39:50 AM3/4/04
to Robert Spier, perl6-i...@perl.org

http://www.parrotcode.org/openpatches.html

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

Robert Spier

unread,
Mar 4, 2004, 12:49:43 AM3/4/04
to Will Coleda, perl6-i...@perl.org

Good catch.

I've fixed the URLs.

-R

At Thu, 4 Mar 2004 00:39:50 -0500,

Robert Spier

unread,
Mar 4, 2004, 2:33:41 PM3/4/04
to perl6-i...@perl.org
> In a similar(?) vein,
>
> www.parrotcode.org/faq/ currently has a number of broken links,
> including "apocalypses", "PDD6", and "Java bytecode to Parrot bytecode".

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

Michael Scott

unread,
Mar 4, 2004, 3:48:41 PM3/4/04
to Robert Spier, perl6-i...@perl.org
I just reported this as a bug on Pod::Simple::HTML.

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

0 new messages