Skip Menu |

This queue is for tickets about the Perl-Shell CPAN distribution.

Report information
The Basics
Id: 54355
Status: open
Priority: 0/
Queue: Perl-Shell

People
Owner: Nobody in particular
Requestors: nickolay8 [...] gmail.com
Cc:
AdminCc:

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



Subject: [Feature request] Do not quit on error
First of all, thanks for such a great module. Have couple of notices: 1) the 'perlthon' name is not intuitive. I had to refer the documentation several times, before I managed to remember it. Perhaps an aliased script 'perl-shell' can be included in distribution? 2) The shell quit on fatal errors, which is inconvenient. Perhaps it can just output the error at continue the work? Example of such session: catalyst@symbie-dev:~/Workspace/EclipseWorkspace/JavaScript/task-extjs$ perlthon Perl 5.10.0 (Fri Jun 26 18:43:11 UTC 2009) [linux rothera 2.6.24-23-server #1 smp wed apr 1 22:22:14 utc 2009 i686 gnulinux ] Type "help;", "copyright;", or "license;" for more information. Show quoted text
>>> my @data = ( 3.01, 3.02, '3.1.01', '3.1.0_01' );
Show quoted text
>>> print @data;
3.013.023.1.013.1.0_01 Show quoted text
>>> print sort { $a->[0] cmp $b->[0] } @data;
Can't use string ("3.01") as an ARRAY ref while "strict refs" in use at (eval 30) line 3. catalyst@symbie-dev:~/Workspace/EclipseWorkspace/JavaScript/task-extjs$ Thanks again, Nickolay
Subject: Re: [rt.cpan.org #54355] [Feature request] Do not quit on error
Date: Sat, 6 Feb 2010 20:14:21 +1100
To: bug-Perl-Shell [...] rt.cpan.org
From: Adam Kennedy <adamkennedybackup [...] gmail.com>
The name perlthon is being ditched. And yes, the error thing is a bit of a problem. I only really dabble with Perl::Shell development, there's still plenty that needs doing. Adam K On 6 February 2010 19:17, SamuraiJack via RT <bug-Perl-Shell@rt.cpan.org> wrote: Show quoted text
> Sat Feb 06 03:17:39 2010: Request 54355 was acted upon. > Transaction: Ticket created by SamuraiJack >       Queue: Perl-Shell >     Subject: [Feature request] Do not quit on error >   Broken in: (no value) >    Severity: (no value) >       Owner: Nobody >  Requestors: nickolay8@gmail.com >      Status: new >  Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=54355 > > > > First of all, thanks for such a great module. > > Have couple of notices: > > 1) the 'perlthon' name is not intuitive. I had to refer the > documentation several times, before I managed to remember it. Perhaps an > aliased script 'perl-shell' can be included in distribution? > > 2) The shell quit on fatal errors, which is inconvenient. Perhaps it can > just output the error at continue the work? Example of such session: > > catalyst@symbie-dev:~/Workspace/EclipseWorkspace/JavaScript/task-extjs$ > perlthon > Perl 5.10.0 (Fri Jun 26 18:43:11 UTC 2009) [linux rothera > 2.6.24-23-server #1 smp wed apr 1 22:22:14 utc 2009 i686 gnulinux ] > Type "help;", "copyright;", or "license;" for more information.
>>>> my @data = ( 3.01, 3.02, '3.1.01', '3.1.0_01' );
>
>>>> print @data;
> 3.013.023.1.013.1.0_01
>>>> print sort { $a->[0] cmp $b->[0] } @data;
> Can't use string ("3.01") as an ARRAY ref while "strict refs" in use at > (eval 30) line 3. > catalyst@symbie-dev:~/Workspace/EclipseWorkspace/JavaScript/task-extjs$ > > > Thanks again, Nickolay >