Re: Net::DNS

2007-04-20 Thread A. Pagaltzis
Hi Dr.Ruud, * Dr.Ruud [EMAIL PROTECTED] [2007-04-19 20:25]: On a Linux system: cpan2rpm etc. rpm -i /usr/src/redhat/RPMS/i386/perl-Net-DNS-0.59-1.i386.rpm error: Failed dependencies: perl(Win32::Registry) is needed by perl-Net-DNS-0.59-1 (still investigating) this is a list for

Re: Net::DNS

2007-04-20 Thread Dr.Ruud
A. Pagaltzis schreef: Dr.Ruud: On a Linux system: cpan2rpm etc. rpm -i /usr/src/redhat/RPMS/i386/perl-Net-DNS-0.59-1.i386.rpm error: Failed dependencies: perl(Win32::Registry) is needed by perl-Net-DNS-0.59-1 (still investigating) this is a list for discussion of issues and concerns

Re: Net::DNS

2007-04-20 Thread A. Pagaltzis
* Dr.Ruud [EMAIL PROTECTED] [2007-04-20 13:40]: Thank you, and sorry. No problem, I don’t mind. :-) It’s just that I also can’t help, and I don’t think anyone else here can, either. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: echo die Makefile.PL

2007-04-20 Thread Adam Kennedy
Eric Wilhelm wrote: # from Sébastien Aperghis-Tramoni # on Tuesday 17 April 2007 05:12 pm: If you really want Module::Build to be installed, why not simply create a traditional Makefile.PL and add Module::Build as a prerequisite? That way your module can be installed with

Re: echo die Makefile.PL

2007-04-20 Thread A. Pagaltzis
* Adam Kennedy [EMAIL PROTECTED] [2007-04-20 18:30]: Module::Build's main attitude has always been to make things easier for authors at the expense of users, in part by implementing things that the rest of the tool-chain simply doesn't support. And Module::Install makes things easy for users

Module Proposal: Parse::Reversible

2007-04-20 Thread Paul LeoNerd Evans
The requirement for this module came about intially because I was thinking about how to handle virtual URLs in websites; for example: /photos/album12/photo17.jpg This will fetch the 17th photo from the 12th album, by whatever method internally is used. Internally, we need to know these values.

Re: Module Proposal: Parse::Reversible

2007-04-20 Thread Andy Armstrong
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 20 Apr 2007, at 18:50, Paul LeoNerd Evans wrote: I'd appreciate some comments on this; specifically, if this functionallity would be useful enough to put on CPAN, or if it seems a quite specialised solution to a specific problem and not worth

Re: Module Proposal: Parse::Reversible

2007-04-20 Thread Joshua ben Jore
On 4/20/07, Paul LeoNerd Evans [EMAIL PROTECTED] wrote: The requirement for this module came about intially because I was thinking about how to handle virtual URLs in websites; for example: /photos/album12/photo17.jpg This will fetch the 17th photo from the 12th album, by whatever method

Re: Module Proposal: Parse::Reversible

2007-04-20 Thread Paul LeoNerd Evans
On Fri, 20 Apr 2007 11:25:48 -0700 Joshua ben Jore [EMAIL PROTECTED] wrote: This is just named capturing, isn't it? In perl 5.10: qr!/photos/album(?ALBUM\d+)/photo(?PHOTO\d+).jpg!; $url = /photos/album$+{ALBUM}/photo$+{PHOTO}.jpg; Oh, it's that and more. It's a named capture, sure. But

Re: Module Proposal: Parse::Reversible

2007-04-20 Thread Paul LeoNerd Evans
On Fri, 20 Apr 2007 18:55:56 +0100 Andy Armstrong [EMAIL PROTECTED] wrote: could optionally be '/photos/album${ALBUM:\d+:%04d}/photo${PHOTO:\d+:%04d}.jpg' to get back strings like '/photos/album0123/photo0001.jpg' An interesting idea, but what does that buy you that a plain

Re: Module Proposal: Parse::Reversible

2007-04-20 Thread Paul LeoNerd Evans
On Fri, 20 Apr 2007 21:26:33 +0100 Andy Armstrong [EMAIL PROTECTED] wrote: An interesting idea, but what does that buy you that a plain sprintf does not? $pr-build( { ALBUM = sprintf(%04d, $album), PHOTO = sprintf(%04d, $photo) } ) It encapsulates the formatting

Re: Module Proposal: Parse::Reversible

2007-04-20 Thread A. Pagaltzis
* Paul LeoNerd Evans [EMAIL PROTECTED] [2007-04-20 19:55]: The requirement for this module came about intially because I was thinking about how to handle virtual URLs in websites It’s called “URI templates”, has an IETF draft RFC and there’s a tentative implementation already on the CPAN.