Re: Feature wishlist for P::RD 2.0 ore perhaps 1.81

2002-04-16 Thread Karl Gaissmaier
and it is really only a question of style. I'd hate to see P:RD fall into same trap as regexps: P:RD doesn't need to be a complete programming language. P:RD is fine as a perl accessory. yes it's really fine, even it it stays as it already is. Regards Charly -- Karl Gaissmaier

Re: skip: over comments and misleading error messages

2002-04-17 Thread Karl Gaissmaier
Hi Yves, (and perhaps Damian, if he has time to read until the end, sorry) Orton, Yves schrieb: oh fine, the next time I will look first in the source! No. Read the docs first. Its there... :-) Oh god, I red it, at least two times and also the FAQ. The next time I use grep, sigh. and

Perhaps a FAQ: How to shortcut an alternation if one already commited subrule fails

2004-03-31 Thread Karl Gaissmaier
of ENTITY, if e.g. the DECL subrule fails after already commited. Is there a general usage pattern to shortcut the ENTITY rule if an already commited subrule fails? Best Regards Charly -- Karl Gaissmaier KIZ/Infrastructure, University of Ulm, Germany Email:[EMAIL PROTECTED

Re: Negative Look-ahead problem

2004-03-31 Thread Karl Gaissmaier
code. Best Regards Charly Andras -Original Message- From: Karl Gaissmaier [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 31, 2004 4:24 AM To: PerlDiscuss - Perl Newsgroups and mailing lists Subject: Re: Negative Look-ahead problem PerlDiscuss - Perl Newsgroups and mailing lists

Re: Perhaps a FAQ: How to shortcut an alternation if one already commited subrule fails

2004-04-01 Thread Karl Gaissmaier
unreadable and hard to mainatin (the example is just a shrink down extract in a huge grammar). Hmm, any solutions with this - now more detailed - problem in mind? Best Regards Charly -- Karl Gaissmaier KIZ/Infrastructure, University of Ulm, Germany Email:[EMAIL PROTECTED

Annotation/correction? to a FAQ topic

2004-04-01 Thread Karl Gaissmaier
Best Regards Charly -- Karl Gaissmaier KIZ/Infrastructure, University of Ulm, Germany Email:[EMAIL PROTECTED] Service Group Network Tel.: ++49 731 50-22499

Re: Negative Look-ahead problem

2004-04-05 Thread Karl Gaissmaier
Hi Andras Karl Gaissmaier wrote: hmmm, I've overseen that the global skip pattern is qr/s*/, therefore ANDY is matched as a reserved word too, since the token prefix can be just nothing. To change the token prefix in the RESERVED rule to s+ (-- see the + instead of *) should help: Thank you

Re: keyword value(s) newline

2004-05-14 Thread Karl Gaissmaier
) is reported at any time. Best Regards Charly -- Karl Gaissmaier KIZ/Infrastructure, University of Ulm, Germany Email:[EMAIL PROTECTED] Service Group Network

Re: locale problem with P::RD

2004-07-16 Thread Karl Gaissmaier
Karl Gaissmaier schrieb: Hi, I nearly finished Config::Scoped, yet another config file parser but I am currently busy with an annoying locale problem. I'm for example not able to match german umlaute with the rule pattern /\w/ even with the proper LC_... env and 'use locale' in P::RD. With a plain

Re: error messages

2004-07-16 Thread Karl Gaissmaier
. The This is an error message\n gets read into the variable as expected, but P::RD's error messages are printed to STDERR nonetheless. you can cheat P::RD with directly accessing $thisparser-{errors}, see the FAQ: 'Accessing error data' and the answer by Damian Best Redards Charly -- Karl