check if all the links on an HTML page are working (except the mailto links)

2006-07-06 Thread Gabor Szabo
Using Test::WWW::Mechanize 1.10 I am trying to $w-page_links_ok(); on a page that has an e-mail address in it and the test fails. How could I tell TWM not to bother with the mailto links on the page? Gabor

Re: check if all the links on an HTML page are working (except the mailto links)

2006-07-08 Thread Gabor Szabo
On 7/6/06, Andy Lester [EMAIL PROTECTED] wrote: On Jul 6, 2006, at 10:22 AM, Gabor Szabo wrote: Using Test::WWW::Mechanize 1.10 I am trying to $w-page_links_ok(); on a page that has an e-mail address in it and the test fails. How could I tell TWM not to bother with the mailto links

Testing various HTML constructs

2006-07-08 Thread Gabor Szabo
During web testing using Test::WWW::Mechanize I can check if the current page has the correct links (by fetching all links) and if the pages has the correct forms with the correct input fields. How can I check other HTML constructs? Specifically I know there should be two tables on the page.

WWW::Mechanize 1.18 passing value of submit field

2006-07-11 Thread Gabor Szabo
On a form the submit button looks like this: input type=submit name=submit value=Update / when this form is submitted using $w-submit_form ( fields = { fname = 'Foo', }); the field submit and its value Update does not seem to be sent to web server. If I add

Re: WWW::Mechanize 1.18 passing value of submit field

2006-07-11 Thread Gabor Szabo
On 7/11/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: How can I fix this? WWW::Mechanize(3pm) $mech-submit_form( ... ) This method lets you select a form from the previously fetched page, fill in its fields, and submit it. It combines the form_number/form_name,

Re: WWW::Mechanize 1.18 passing value of submit field

2006-07-11 Thread Gabor Szabo
On 7/11/06, Andy Lester [EMAIL PROTECTED] wrote: On Jul 11, 2006, at 9:07 AM, Gabor Szabo wrote: If button is not passed, then the submit() method is used instead. Perhaps it could be clearer then: submit() does not pass any button unless you specify it. Yes maybe that, in addition

fetching module version from the command line

2006-07-12 Thread Gabor Szabo
While checking if the versions of all the modules are as required in our installation I am using the following one liner to fetch the version numbers. perl -MModule -e'print $Module::VERSION' Some of the modules print extra error messages and some print only error messages. I have sent e-mail

Re: fetching module version from the command line

2006-07-13 Thread Gabor Szabo
On 7/13/06, Fergal Daly [EMAIL PROTECTED] wrote: I could change it so that it tries to figure out whether it's being used for real or not and disable the END block code but that's stress and hassle. As a module author, as far as I'm concerned, if MakeMaker can figure out my version then my job

Testing code that forks

2006-07-14 Thread Gabor Szabo
Hi all, what is the current best practices for testing code that forks? I saw there was a recent discussion about patching Test::More to support forking. Is that going to happen or are there better ways to do it? Gabor

Re: Lessons from the test function parameter placement quibbles?

2006-07-19 Thread Gabor Szabo
On 7/19/06, Michael G Schwern [EMAIL PROTECTED] wrote: Descriptions are optional because they are not necessary for the test. Sometimes a test doesn't need a description, its obvious from reading the code what its doing. Sometimes it would be redundant. Sometimes you're just writing fast. I

Pugs on Windows

2007-02-06 Thread Gabor Szabo
On http://www.pugscode.org/ when I click Download I get to the wiki on rakudo and (yippi it works again !) but the link to the Win32 binary builds of Pugs and Parrot brings me to http://jnthn.net/public_html/perl6/ which is 404. Gabor

Re: What criteria mark the closure of perl6 specification

2007-02-27 Thread Gabor Szabo
On 2/26/07, Geoffrey Broadwell [EMAIL PROTECTED] wrote: Hmmm. Let's see if there is a way I can help to get what I want Assuming that the answer to my question in the other thread is packed arrays aren't implemented anywhere yet, are any implementations close enough that I can trade tests

Re: Parrot, Perl 5 and performance

2007-03-13 Thread Gabor Szabo
On 12 Mar 2007 14:29:49 -0700, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi all, I'd like to get opinions from developers on this list. I'm looking into this system that executes massive amounts of Perl 5 code on a Perl 5.8 interpreter. The system burns tons of CPU while running Perl code,

Binary distributions

2006-01-27 Thread Gabor Szabo
Why do we need to reinvent this wheel ? Most of the platforms out there have some binary packaging system. Solaris has their own, Linuxen have rpm/deb or whatever else they have. ActiveState with its binary Perl distributions have ppm and while that's not perfect we read that they are working on

Re: Binary distributions

2006-01-28 Thread Gabor Szabo
On 1/28/06, Tels [EMAIL PROTECTED] wrote: Moin, On Saturday 28 January 2006 08:20, Tyler MacDonald wrote: Gabor Szabo [EMAIL PROTECTED] wrote: Anyway I think instead of trying to setup our own binary distribution we might want to make sure there are up to date repositories of Perl

Warnings during test

2006-03-04 Thread Gabor Szabo
When installing a module ( in this case Sub-Uplevel-0.09 on 5.8.8) using CPANPLUS I saw many warnings passing by but as all the tests were successful the report to the CPAN Testers was sent as PASS. it would be useful to capture warnings printed on the screen and then even somehow report this

UNIX commands: chmod

2006-03-25 Thread Gabor Szabo
Hmm, I don't really know how to do this but Gaal told me to write up some proposal here. So we had chmod in Perl5, I would like to make sure it works in Perl6 as well with slight modifications. LIST = chmod MODE, LIST 1) In list context it would return the names of the files successfully

Re: UNIX commands: chmod

2006-03-25 Thread Gabor Szabo
On 3/25/06, Nicholas Clark [EMAIL PROTECTED] wrote: On Sat, Mar 25, 2006 at 12:58:30PM +0200, Gabor Szabo wrote: 4) filename.chmod(MODE) should also work and I guess file1 file2 file3.chmod(MODE) should also work on those 3 files That seems to be implying a chmod method on all strings

Re: UNIX commands: chmod

2006-03-26 Thread Gabor Szabo
On 3/26/06, Mark Overmeer [EMAIL PROTECTED] wrote: LIST = chmod MODE, LIST My feeling is that this function design is a bit of a mistake. Usually, one perl function maps on one operating-system function, but in this case it doesn't: it simulated the common chmod(1) user command. [...] Of

W3C validator

2006-05-08 Thread Gabor Szabo
I must be missing something but I don't understand why is there no module that would provide the W3C validation without hitting http://validator.w3.org and without the need to setup a similar web site? WWW::CheckSite::Validator uses that web site WebService::Validator::HTML::W3C provides an

Re: W3C validator

2006-05-08 Thread Gabor Szabo
I checked it again, one can download the source code of their service from here http://validator.w3.org/source/ and it is even packaged in some of the linux distros. (It is of course slightly outdated on Debian) Someone might want to write a wrapper around it or maybe use

Re: Getting to hello world?

2006-05-22 Thread Gabor Szabo
On Ubuntu it was quite straigt forward, I think this is everything I needed: sudo apt-get install subversion sudo apt-get install ghc6 mkdir ~/src cd ~/src # To compile Parrot svn co https://svn.perl.org/parrot/trunk parrot cd parrot perl Configure.pl --prefix=$HOME/parrot --cc=cc --cxx=CC

Re: Getting to hello world?

2006-05-22 Thread Gabor Szabo
On 5/23/06, James E Keenan [EMAIL PROTECTED] wrote: Gabor Szabo wrote: On Ubuntu it was quite straigt forward, I think this is everything I needed: sudo apt-get install subversion sudo apt-get install ghc6 Given that, in the above, you installed subversion and ghc6 for all users

Re: Simple Print/Say Question

2006-05-23 Thread Gabor Szabo
On 5/23/06, Chris Yocum [EMAIL PROTECTED] wrote: 1|2|3 I would say something like: print $array[0] . | . $array[1] . | . $array[2] . \n; not the best way but it works. In Perl6 if say something like this: print @array[0] ~ | ~ @array[1] ~ | ~ @array[2] . \n; I get 1 2 3 | | | My

eval

2006-05-24 Thread Gabor Szabo
if eval command fails, where can I get the error message ? aka $@ in P5 ? Gabor

Re: perl 6 hosting?

2006-05-25 Thread Gabor Szabo
On 5/25/06, David Cantrell [EMAIL PROTECTED] wrote: I might be able to host a virtual machine with perl6 on it and give out accounts. I need to think about how to stop people being naughty though. Probably the easy part is to to remove the most dangerous calls such as eval and system and then

perldoc or pod parser in Perl6

2006-05-25 Thread Gabor Szabo
sligthly related to the Perl6 wiki issue, is there a perldoc command or a podparser implemented in Perl6 already ? Gabor

Re: 3 Good Reasons...

2006-05-26 Thread Gabor Szabo
[ I am sorry this will not respond directly to the message in question as I have not seen it in my inbox. I hope the attribution is correct though. ] On 5/26/06, Dr.Ruud [EMAIL PROTECTED] wrote: Not really. Think about a Cobol-to-Parrot translator. You could for example use Perl (glue) to

Using Perl in QA departments

2006-06-17 Thread Gabor Szabo
If anybody is interested on this list, the slides and the examples of my 2 days course are available here: http://www.szabgab.com/perl_in_test_automation.html regards Gabor

Re: Using Perl in QA departments

2006-06-27 Thread Gabor Szabo
On 6/26/06, Leon Brocard [EMAIL PROTECTED] wrote: This is really neat. You might want to add a link to Test::Expect too, which makes it almost to easy to test terminal-based programs. I only recently saw Test::Expect, I'll look at it more deeply and will include a set of examples using it as

Re: Using Perl in QA departments

2006-06-27 Thread Gabor Szabo
On 6/25/06, Ian Langworth [EMAIL PROTECTED] wrote: Looks a little familiar.. Great job! I first wrote it about 2 years ago but only recently decide to make it available to the general public. I decided to do so now so it won't come out after the Big Perl Testing Book you mentioned in here:

Expect on Windows

2006-06-27 Thread Gabor Szabo
As Test::Expect was just mentioned here, I would like to know why Expect and thus Test::Expect does NOT work on Windows? I have also asked this on use.perl: http://use.perl.org/~gabor/journal/30069 Gabor

Re: Is Perl 6 too late?

2007-05-14 Thread Gabor Szabo
On 5/14/07, John Macdonald [EMAIL PROTECTED] wrote: Removing the sigil on a function call (it used to always be written sub(args...)) did, I think, lead to the difficulty in perl5 where it became difficult to add new keyword operators to the language - because they could conflict with

build error

2007-08-30 Thread Gabor Szabo
I am experimenting a bit with the compilation of Parrot perl Configure.pl --gc=malloc-trace make stopped with: src/malloc.c:4719: warning: function call has aggregate value make: *** [src/malloc-trace.o] Error 1 below is the stderr Gabor print_newline 1211 experimental,

perl Configure.pl --gc=malloc does not build either

2007-08-31 Thread Gabor Szabo
gcc --version gcc (GCC) 4.1.2 (Ubuntu 4.1.2-0ubuntu4) perl Configure.pl --gc=malloc make this is the STDERR: [...] newpdd15class_p_s 1254 experimental, not in ops.num newpdd15class_p_sc1255 experimental, not in ops.num newpdd15class_p_p 1256

[PATCH] don't allow invalid --gc options

2007-09-01 Thread Gabor Szabo
It has biten me so let's make sure invalid --gc options are not allowed. Index: lib/Parrot/Configure/Options.pm === --- lib/Parrot/Configure/Options.pm (revision 20963) +++ lib/Parrot/Configure/Options.pm (working copy) @@

Re: Build Farm

2007-09-01 Thread Gabor Szabo
Remember to vote! Consider donating to PostgreSQL: http://www.postgresql.org/about/donate -- Gabor Szabo http://www.szabgab.com/

Re: [PATCH] don't allow invalid --gc options

2007-09-01 Thread Gabor Szabo
actually. It seems the beer from YAPC::EU still have not fully settled down.. On Sep 1, 2007, at 12:35 PM, Gabor Szabo wrote: Thanks for the pointers, I was not sure where to add this. On 9/1/07, James E Keenan [EMAIL PROTECTED] wrote: 2. Modify config/auto/gc.pm to have configuration

[PATCH] don't allow invalid --gc options (2nd try)

2007-09-01 Thread Gabor Szabo
Index: config/auto/gc.pm === --- config/auto/gc.pm (revision 20963) +++ config/auto/gc.pm (working copy) @@ -107,7 +107,7 @@ gc_flag = '-DGC_IS_MALLOC', ); } -else { +elsif ( $gc eq 'gc' ) {

Re: [PATCH] don't allow invalid --gc options

2007-09-03 Thread Gabor Szabo
On 9/3/07, Andy Dougherty [EMAIL PROTECTED] wrote: On Sat, 1 Sep 2007, Gabor Szabo wrote: It has biten me so let's make sure invalid --gc options are not allowed. But what if I want to work on --gc=libc? How can I override this? I am not sure I understand you. If you want to work on --gc

Re: [perl #45137] [TODO] Add a revision control test in Configure.pl

2007-09-03 Thread Gabor Szabo
Can someone explain, please why are there tests that need a version control system? It sounds strange to me. Gabor On 9/3/07, via RT Paul Cochrane [EMAIL PROTECTED] wrote: # New Ticket Created by Paul Cochrane # Please include the string: [perl #45137] # in the subject line of all future

Re: Parrot configuration system: weaknesses and strengths

2007-09-18 Thread Gabor Szabo
I am not sure what to quote so let me reply on a clean page. I would like to see invalid configuration options and values as being always fatal. They indicate some kind of user error, a typo or similar that would probably cause trouble to the Parrot developer as well as the Parrot user. In order

Workshop and Hackathon in Israel

2007-10-01 Thread Gabor Szabo
it ASAP so we'll see how many international guests to expect. regards Gabor -- Gabor Szabo http://www.szabgab.com/

Re: Official Perl 6 and Parrot wikis

2007-12-29 Thread Gabor Szabo
On Dec 29, 2007 4:56 PM, Mark J. Reed [EMAIL PROTECTED] wrote: .cgi? Is that really a CGI-based implementation? Because that seems a little, I don't know, backward-looking. Maybe it's just me, but it seems like it will just feed the all-too-common perception that Perl is for CGI scripts,

Re: Multiline comments in Perl6

2008-01-03 Thread Gabor Szabo
On Jan 3, 2008 6:36 PM, Larry Wall [EMAIL PROTECTED] wrote: On Wed, Jan 02, 2008 at 11:28:54AM -0800, Jonathan Lang wrote: : Paul Hodges wrote: : http://perl6.org/doc/design/syn/S02.html still says: : Intra-line comments will not be supported in standard Perl Note that the document on

Devel::Cover - what do the numbers mean ?

2003-10-04 Thread Gabor Szabo
I have just used Devel::Cover successfully for the first time. I even got the HTML pages. Great! But what are those numbers and colors in the columns ? I could not find in the documentation. Please point me to the description if it is available somewhere. thanks Gabor

Re: Devel::Cover - what do the numbers mean ?

2003-10-04 Thread Gabor Szabo
On Sat, 4 Oct 2003 [EMAIL PROTECTED] wrote: On Sat, Oct 04, 2003 at 11:00:33PM +0200, Gabor Szabo wrote: But what are those numbers and colors in the columns ? I could not find in the documentation. Please point me to the description if it is available somewhere. Percentage of the code

Re: Devel::Cover - what do the numbers mean ?

2003-10-04 Thread Gabor Szabo
On Sat, 4 Oct 2003, Paul Johnson wrote: The colours are just eye candy, they map to the numbers. The idea being that the red stuff is what you want to look at first. I suspect that you are right, and this is probably not documented anywhere. Thanks for the answer ! Another question: I

running both test.pl and t/*.t ?

2003-10-12 Thread Gabor Szabo
I was under the impression (I think I read it somewhere) that when running make test if there is a test.pl file and a set of tests in t/*.t only the former (test.pl) will run an the t/ directory will be skipped. I have just checked it and it seems to be not true. That is, both test.pl and t/*.t

reducing size of the Devel::Cover html report

2003-10-25 Thread Gabor Szabo
The HTML files generated by Devel::Cover are huge. I ran coverage on HTML::Template and while the source code is ~100K the HTML report is 2.5Mb So I think some work should be done to reduce this size. I made a simple change - removing leading spaces from the templates - this reduced the file

Re: reducing size of the Devel::Cover html report

2003-11-12 Thread Gabor Szabo
On Tue, 11 Nov 2003, Michael Carman wrote: old format 2192 kB new format (default)326 kB new format w/ -option=pod,data 391 kB new format w/ -option=unified 340 kB new format w/ -option=pod,data,unified

tesing exceptions of Error.pm

2003-11-27 Thread Gabor Szabo
Hi, in a code I am writing right now http://yapcom.pti.co.il/ I used to croak from functions deep down. When testing for such errors I used code like this in my test script: eval { f(); # will croak }; like($@, qr/Bad thing happened/, 'successfully tested bad thing'); Now I am

Re: tesing exceptions of Error.pm

2003-11-28 Thread Gabor Szabo
On Fri, 28 Nov 2003, Rafael Garcia-Suarez wrote: Andy Lester wrote: How am I going to test this ? Take a look at Test::Warn for warnings, and Test::Exception for errors. I think qa.perl.org needs a listing of Test::* modules so that people know what's available.

CPAN smoking with cpansmoke and CPAN::Nargile

2004-10-16 Thread Gabor Szabo
Good evening, I am trying to use cpansmoke but I have a couple of issues 1) How can I say if I don't want to test a class of modules ? e.g. non of the Win32::* modules as I am on linux no Oracle related modules as I have no Oracle etc. 2) How can I run smoking on a machine

Build Status of CPAN modules from ActiveState

2004-10-02 Thread Gabor Szabo
On this page http://aspn.activestate.com/ASPN/Downloads/ActivePerl/PPM/Repository there are two links to the build status of various CPAN modules using 5.6 and 5.8 respoectively. http://ppm.ActiveState.com/BuildStatus/5.6.html http://ppm.ActiveState.com/BuildStatus/5.8.html Warning: They are

testing script using Term::ReadLine

2004-11-15 Thread Gabor Szabo
I have a script using Term::ReadLine to get input. I'd like to test it by executing it using another script and providing answers from the script test script. I tried IPC::Run with no success but as I notice even simple redirection such as input.pl in.txt does not work. Any ideas how to

WWW::Mechanize 1.08 fails on some tests

2004-12-28 Thread Gabor Szabo
While trying to install WWW::Mechanize today some of its tests failed: Failed Test Stat Wstat Total Fail Failed List of Failed --- t/live/follow.t 2 512112 18.18% 6-7 t/live/follow_link.t

Re: WWW::Mechanize 1.08 fails on some tests

2004-12-29 Thread Gabor Szabo
On Wed, 29 Dec 2004, Michael G Schwern wrote: At least when *I* try to access Google with a browser I don't see such a link. I do see such a link but its possible Google is showing you a different page because you're coming from .il. yes, that might be the case. This brings me to the question, or

Coverage testing of web application

2005-03-02 Thread Gabor Szabo
So far I have been using Devel::Cover only in cases where I run code to be analyzed directly. I wonder how should I setup Devel::Cover to test a web application while my test suit is actually using WWW::Mechanize and I am exercising the relevant code via a real web server? How to check the

Re: Phalanx

2005-03-30 Thread Gabor Szabo
On Wed, 30 Mar 2005 21:45:23 -0600, Walter Goulet [EMAIL PROTECTED] wrote: Hi, Ok, so I've been trying to get started with testing Net-SSLeay for the Phalanx project. Now the problem I've been having is getting my arms around how to improve the coverage of the tests included with that

Re: the future of testing

2008-01-10 Thread Gabor Szabo
On Jan 10, 2008 12:23 PM, Allison Randal [EMAIL PROTECTED] wrote: Aye, I would want to improve on the Python solution. But maintaining a config file something like: [darwin] t/pmc/foo.t 3 5-7 9 # platform doesn't support libfoo t/pmc/bar.t 1 42 ... [MSWin32] t/pmc/foo.t 32 ... This

Re: Perl 6 fundraising and related topics.

2008-02-23 Thread Gabor Szabo
their money to a specific project/person? TPF can then still focus on raising money from corporations. Gabor -- Gabor Szabo http://www.szabgab.com/

How to build Rakudo - the site is currently broken

2008-03-03 Thread Gabor Szabo
So I wanted to build Rakudo, but I could not find the instructions in the Parrot source code and the links on the rakudo.org site all return 500 error... Gabor

Re: How to build Rakudo - the site is currently broken

2008-03-03 Thread Gabor Szabo
On Mon, Mar 3, 2008 at 11:24 PM, jerry gay [EMAIL PROTECTED] wrote: On Mon, Mar 3, 2008 at 1:17 PM, Gabor Szabo [EMAIL PROTECTED] wrote: So I wanted to build Rakudo, but I could not find the instructions in the Parrot source code and the links on the rakudo.org site all return 500

qx{} or backtick?

2008-06-18 Thread Gabor Szabo
Hi, If system() is now called run() What replaces backtick or qx{} ? Gabor

Testing complex web site

2004-01-19 Thread Gabor Szabo
If this is OT, please point me to some better place to find an answer. I am looking for a way to functional and load test a web site. On the functional level: Basic things can be achieved by WWW::Mechanize but I don't know yet how to deal with Javascript in the response page. On the load test:

Re: Testing complex web site

2004-01-19 Thread Gabor Szabo
On Mon, 19 Jan 2004, Abe Timmerman wrote: If you're interested in that, I can send you a pre-alpha version, although I haven't got the time to work on it right now... Yes, please send it over. BTW One of the specific things I will have to automate is OWA - Outlook Web Access which is said to

Re: Testing complex web site

2004-01-19 Thread Gabor Szabo
On Mon, 19 Jan 2004, Adrian Howard wrote: On Monday, January 19, 2004, at 06:10 pm, Gabor Szabo wrote: If this is OT, please point me to some better place to find an answer. [snip] Not OT in my opinion, but you also might want to try http://groups.yahoo.com/group/TestFirstUserInterfaces

Re: Testing complex web site

2004-01-19 Thread Gabor Szabo
On Mon, 19 Jan 2004, Ed Summers wrote: If you are testing from the cmd line One of the prime problems of my customers is the fact that I don't give them a nice GUI for the test tool where they can click. the nice thing about Perl's testing framework is that it would be feasible to write C#

Re: [ANNOUNCE] Devel::Cover 0.41

2004-04-29 Thread Gabor Szabo
Where would we be without your work ? Out in the desert to fall prey to any bug ? At least we can run and get some cover. Thank you ! Gabor

reporting bugs to RT

2004-05-05 Thread Gabor Szabo
Is there some command line tool that can be used to report bugs to RT ? Something that after I saw that make test fails (or even if it just prints warnings) I can type some command line magic and will submit a bug report with all the relevant information including the output of make test.

Re: reporting bugs to RT

2004-05-05 Thread Gabor Szabo
On Wed, 5 May 2004, Andy Lester wrote: On Wed, May 05, 2004 at 11:40:32PM -0200, Gabor Szabo ([EMAIL PROTECTED]) wrote: Is there some command line tool that can be used to report bugs to RT ? Sure, it's called sendmail. If you want to send a bug on Test::Harness, send an email to [EMAIL

Re: Devel::Cover: completing $x{foo} ||= 1 conditions

2004-05-21 Thread Gabor Szabo
On Fri, 21 May 2004, Paul Johnson wrote: On Thu, May 20, 2004 at 04:34:39PM -0400, Geoffrey Young wrote: hi paul. I've found that in a statement like $x{foo} ||= 1; This is unlikely to be the only case in which I have not fully understood the subtleties of the op tree, and so

Re: Devel::Cover: completing $x{foo} ||= 1 conditions

2004-05-22 Thread Gabor Szabo
purple I might like to signal Devel::Cover that func() has a constant return (or lack thereof). however, in the process of development we are required to analyze any of the inevitable gaps and decide whether the unhit condition is valid. if it is we write a test for it. if it

how to run test.pl before the t/*.t tests ?

2004-06-18 Thread Gabor Szabo
I am dealing with a module which has a test.pl using Test.pm Specifically I am talking about HTML::Template for which I try to act as a hoplite. I am trying to add a bunch of tests in t/ using Test::More but in order to make sure we don't lose any previous test we would like to keep the test.pl

testing for unsuccessful require - mocking require ?

2004-06-19 Thread Gabor Szabo
I would like to test a module for unsuccessful require while the required module is installed. That is I'd like ot test how my code would work if Foo.pm was not present. In the middle of a module I have code such as eval { require Foo; }; if ($@) { foo(); } else { my_own_foo(); } I

Re: Single Sign-on Re: Perl Passport?

2004-07-06 Thread Gabor Szabo
On Tue, 6 Jul 2004, Oliver Schnarchendorf wrote: On Tue, 6 Jul 2004 13:12:16 +0800, Kelvin Wu wrote: dunno whether this is the right place to post, but i am looking for a solution(for both win32 and linux), something like microsoft passport, one login account can be used cross over domain

Devel::Cover on Windows, ppm anyone ?

2004-07-15 Thread Gabor Szabo
I can see from the testers page that Devel::Cover is supposed to work on Windows. Is there a ppd distribution of it somewhere so I can install it on ActivePerl without a compiler ? Currently if I type ppm install Devel::Cover I get version 0.2 of Devel::Coverage. Not what I wanted. Gabor

RE: Devel::Cover on Windows, ppm anyone ?

2004-07-16 Thread Gabor Szabo
On Fri, 16 Jul 2004, Jan Dubois wrote: I've forwarded your message to our build engineer to look into. Please send questions about PPM build process to the ppm mailing list (it only accepts messages from subscribers though). Thanks everyone for dealing with this. I hope we'll see DC built

Re: CPANTS preview - coverage in CPAN testers reports

2004-07-24 Thread Gabor Szabo
On Sat, 24 Jul 2004, Thomas Klausner wrote: - Test coverage. Impossibly, because CPANTS does not run code. But it could fetch it from some other place that does it, right ? What about adding (optional) coverage reports to the reports the CPAN testers send in ? Gabor

Re: CPANTS preview - coverage in CPAN testers reports

2004-07-24 Thread Gabor Szabo
On Sat, 24 Jul 2004, Thomas Klausner wrote: What about adding (optional) coverage reports to the reports the CPAN testers send in ? That might be a good idea. But AFAIK, coverage reports can vary greatly on different platforms/Perls/installed modules IMHO this is exactly the reason it can

Re: Parrot on mobile platforms?

2008-10-23 Thread Gabor Szabo
: On Wednesday 22 October 2008 23:23:46 Gabor Szabo wrote: I am totally lack of relevant knowledge so I'd like to get some from you. There are many mobile platforms out there. Linux based, Symbian, Blackberry, iPhone, Windows, Palm, Android, etc.. I wonder what are the chances of Parrot

Padre 0.22, Padre::Plugin::Parrot and Padre::Plugin::Perl6 released!

2008-12-24 Thread Gabor Szabo
Hi, as this is relevant to you as well, let me send this announcement here too. Yesterday we have released v0.22 of Padre the Perl IDE written in Perl 5. http://padre.perlide.org/ There are many changes as usual but the two important ones for the Parrot/Perl 6 developers are related mostly to

Re: [perl #63038] AutoReply: Test.pm eats the Use of uninitialized value warnings

2009-02-04 Thread Gabor Szabo
apparently this is a feature of Test.pm though I think a very bad one Gabor On Wed, Feb 4, 2009 at 9:00 PM, perl6 via RT perl6-bugs-follo...@perl.org wrote: Greetings, This message has been automatically generated in response to the creation of a trouble ticket regarding: Test.pm eats

Perl 6 pod processor in Perl 5

2009-02-11 Thread Gabor Szabo
As an experiment to check how we could reuse CPAN to distribute Perl 6 packages I uploaded Perl6::Conf The code itself is not interesting, my main interest is the distribution. One of the issues I encountered is the display on the two search engines: http://search.cpan.org/dist/Perl6-Conf/

Re: perl6 tutorials

2009-03-12 Thread Gabor Szabo
Hi Lars, let me add to what Carl wrote that think the blogs of Moritz Lenz are quite good http://perlgeek.de/blog-en/perl-5-to-6/ but admittedly they are for Perl 5 programmers. I also started to write an publish my Perl 6 training slides. It is very early and basic but you are welcome to fetch

Re: [perl #63970] split() returns the delimiter, not the substrings

2009-03-19 Thread Gabor Szabo
On Thu, Mar 19, 2009 at 1:18 AM, Moritz Lenz mor...@faui2k3.org wrote: Gabor Szabo (via RT) wrote: # New Ticket Created by  Gabor Szabo # Please include the string:  [perl #63970] # in the subject line of all future correspondence about this issue. # URL: http://rt.perl.org/rt3/Ticket

Re: Oslo Perl 6 Hackathon Notes

2009-04-14 Thread Gabor Szabo
Hi, On Mon, Apr 13, 2009 at 11:56 PM, Patrick R. Michaud pmich...@pobox.com wrote: As some of you are aware, this week is the Nordic Perl Workshop [1], and in the days immediately following the workshop we will have the Oslo Perl 6 Hackathon [2].  During the first day of the hackathon Gabor

Re: [Padre-dev] Padre Perl6 Outline view

2009-04-27 Thread Gabor Szabo
On Sun, Apr 26, 2009 at 12:14 AM, Ahmad Zawawi ahmad.zaw...@gmail.com wrote: Hi people, I just finished Perl6 Outline view which i promised Gabor 3 or 4 months ago :) So you can now see Perl 6 packages/modules/grammars/roles in parent nodes and under them you can see

Re: Rukudo-Star = Rakudo-lite?

2009-08-10 Thread Gabor Szabo
On Mon, Aug 10, 2009 at 2:02 AM, Patrick R. Michaudpmich...@pobox.com wrote: On Sun, Aug 09, 2009 at 04:35:42PM -0600, David Green wrote: On 2009-Aug-9, at 3:57 pm, Tim Bunce wrote: Perhaps it's worth asking what we might call the release after that one. Rakudo not-quite-so-lite? Rakudo **

Re: Perl 6 IDEs

2009-12-07 Thread Gabor Szabo
2009/12/6 Víctor A. Rodríguez (Bit-Man) vic...@bit-man.com.ar: Hi perlsixers, we've been working a bit on Perl 6 lately [1] and some work, even the basic coding, would be great if we use some IDE. I'm a regular Eclipse user and EPIC seems the natural choice for me, but it doesn't support

Re: Perl 6 IDEs

2009-12-07 Thread Gabor Szabo
2009/12/7 Gabor Szabo szab...@gmail.com: 2009/12/6 Víctor A. Rodríguez (Bit-Man) vic...@bit-man.com.ar: Hi perlsixers, we've been working a bit on Perl 6 lately [1] and some work, even the basic coding, would be great if we use some IDE. I'm a regular Eclipse user and EPIC seems the natural

Perl 6 IDE: Perl 5 XL 0.02 with Padre and the Perl 6 plugin

2009-12-08 Thread Gabor Szabo
Hi, Let me announce version 0.02 of the XL Perl 5 distribution (temporary name, I hope :-) for Linux that contains a full version of Perl 5.10.1, Padre 0.51 and the Perl 6 plugin of Padre. This is still very experimental of course. You can download it from here:

Re: Perl 6 IDE: Perl 5 XL 0.02 with Padre and the Perl 6 plugin

2009-12-09 Thread Gabor Szabo
On Wed, Dec 9, 2009 at 2:18 PM, Richard Hainsworth rich...@rusrating.ru wrote: Gabor, Thanx this is a good step forward. With simple files, no problem. I tried a larger file and got the following in the terminal window: ./perl-5.10.1-xl-0.02/perl/bin/padre.sh Thread 1 terminated

Parrot on Android

2010-04-18 Thread Gabor Szabo
Android already supports various languages. I think it would be cool to see Parrot being supported there which will allow running Perl 6 code on Android. I took the liberty and submitted a request. http://code.google.com/p/android-scripting/issues/detail?id=296 Please visit the request page and

Re: Perl 6 in non-English languages

2010-07-03 Thread Gabor Szabo
On Wed, Jun 23, 2010 at 1:34 AM, SundaraRaman R sundaryourfri...@gmail.com wrote: Hi, This is an idea that originated in #perl6 during a discussion with slavik ( http://irclog.perlgeek.de/perl6/2010-01-17#i_1907093). The goal is to allow Perl 6 source code to be written in natural languages

Re: Rakudo Star - a useful, usable, early adopter distribution of Perl 6

2010-07-29 Thread Gabor Szabo
Congratulations and thank you! I have started to collect the links to the press coverage of the release: http://www.perlfoundation.org/perl6/index.cgi?rakudo_star_press Please help me collect all the important links! Gabor

Re: [perl #64124] Segmentation fault in embedding Parrot into Perl 5

2010-08-23 Thread Gabor Szabo
On Wed, Aug 18, 2010 at 8:13 AM, Will Coleda via RT perl6-bugs-follo...@perl.org wrote: On Mon Mar 23 13:09:56 2009, szab...@gmail.com wrote: I am not sure if this is a Parrot or Rakudo bug or just a plain invalid usage on my side. The following code runs, prints the prompt but when I enter

flushing a file

2010-09-15 Thread Gabor Szabo
I updated my Perl 6 slides and Masak commented on a lot of my slides. Thank You! For example for writing to a file I had the following: #!/usr/bin/perl6 use v6; my $filename = temp.txt; my $fh = open $filename, :w; $fh.say(hello world); Masak: I'd recommend $fh.close; it's more important

Questions for Survey about Perl

2010-12-28 Thread Gabor Szabo
the greater Perl Ecosystem please let me know that too. regards Gabor Gabor Szabo http://szabgab.com/ Perl Ecosystem Group http://perl-ecosystem.org/

  1   2   3   >