[29974] in Perl-Users-Digest
Perl-Users Digest, Issue: 1217 Volume: 11
daemon@ATHENA.MIT.EDU (Perl-Users Digest)
Mon Jan 21 03:09:43 2008
Date: Mon, 21 Jan 2008 00:09:06 -0800 (PST)
From: Perl-Users Digest <Perl-Users-Request@ruby.OCE.ORST.EDU>
To: Perl-Users@ruby.OCE.ORST.EDU (Perl-Users Digest)
Perl-Users Digest Mon, 21 Jan 2008 Volume: 11 Number: 1217
Today's topics:
Re: A do-file location: how the code inside that do-fil <arifsaha@yahoo.com>
Re: A do-file location: how the code inside that do-fil <arifsaha@yahoo.com>
Re: A do-file location: how the code inside that do-fil <arifsaha@yahoo.com>
call back to my own script burrell.john@yahoo.com
Re: call back to my own script <tadmc@seesig.invalid>
Re: call back to my own script <noreply@gunnar.cc>
cancel Re: A do-file location: how the code inside that <arifsaha@yahoo.com>
new CPAN modules on Mon Jan 21 2008 (Randal Schwartz)
Re: perl -pe substitution <joe@inwap.com>
Digest Administrivia (Last modified: 6 Apr 01) (Perl-Users-Digest Admin)
----------------------------------------------------------------------
Date: Sun, 20 Jan 2008 12:27:07 -0500
From: S P Arif Sahari Wibowo <arifsaha@yahoo.com>
Subject: Re: A do-file location: how the code inside that do-file find it?
Message-Id: <alpine.OSX.0.9999.0801201224220.343@imac2006.local>
On Sun, 20 Jan 2008, Gunnar Hjalmarsson wrote:
> Read about the $0 variable in "perldoc perlvar".
Sorry you are mistaken. I know about $0, it give the location of
the main script. It won't give the location of the subscript the
main script called / include using do / require / use.
Thanks anyway.
--
(stephan paul) Arif Sahari Wibowo
_____ _____ _____ _____
/____ /____/ /____/ /____
_____/ / / / _____/ http://www.arifsaha.com/
------------------------------
Date: Sun, 20 Jan 2008 12:52:04 -0500
From: S P Arif Sahari Wibowo <arifsaha@yahoo.com>
Subject: Re: A do-file location: how the code inside that do-file find it?
Message-Id: <alpine.OSX.0.9999.0801201248400.343@imac2006.local>
On Sat, 19 Jan 2008, h3xx wrote:
> sub where_am_i {
> %INC{'foo.pm'}
> }
Yes, I am thinking about %INC as well, but this require the
knowledge about the file name. What it the file name changed
(especially in subscript called by do)? What if more than one
file with the same name with different location are called
(e.g. using do)?
--
(stephan paul) Arif Sahari Wibowo
_____ _____ _____ _____
/____ /____/ /____/ /____
_____/ / / / _____/ http://www.arifsaha.com/
Disclaimer: IANAL, IANALP, IANAMD, IANAMP, IANAAP
my statements - if any - should be treated as such.
------------------------------
Date: Sun, 20 Jan 2008 12:54:47 -0500
From: S P Arif Sahari Wibowo <arifsaha@yahoo.com>
Subject: Re: A do-file location: how the code inside that do-file find it?
Message-Id: <alpine.OSX.0.9999.0801201254070.343@imac2006.local>
On Sun, 20 Jan 2008, Abigail wrote:
> say __FILE__;
Exactly what I need! Thanks!
--
(stephan paul) Arif Sahari Wibowo
_____ _____ _____ _____
/____ /____/ /____/ /____
_____/ / / / _____/ http://www.arifsaha.com/
------------------------------
Date: Sun, 20 Jan 2008 12:39:35 -0800 (PST)
From: burrell.john@yahoo.com
Subject: call back to my own script
Message-Id: <6728612b-6bf2-4db6-b792-7f487f2c39aa@n20g2000hsh.googlegroups.com>
Hi,
I have the following code
I want to call back to the same cgi code on the same server - but on
submit I merely get the relative path appended to the original URL.
How to fix?
TIA
J
#!/usr/bin/perl
use strict;
use warnings;
use CGI ':standard';
print header,
start_html('Enter Logon Details'),
h1('Enter Logon Details`'),
h1($MyId),
start_form,
"What's your name? ",textfield('name'),p,
"What's your password? ",textfield('password'),p,
submit,
end_form,
hr;
------------------------------
Date: Sun, 20 Jan 2008 17:19:33 -0600
From: Tad J McClellan <tadmc@seesig.invalid>
Subject: Re: call back to my own script
Message-Id: <slrnfp7lo5.6mf.tadmc@tadmc30.sbcglobal.net>
burrell.john@yahoo.com <burrell.john@yahoo.com> wrote:
> #!/usr/bin/perl
> use strict;
> use warnings;
> use CGI ':standard';
> print header,
> start_html('Enter Logon Details'),
> h1('Enter Logon Details`'),
> h1($MyId),
Global symbol "$MyId" requires explicit package name at ...
--
Tad McClellan
email: perl -le "print scalar reverse qq/moc.noitatibaher\100cmdat/"
------------------------------
Date: Mon, 21 Jan 2008 03:25:30 +0100
From: Gunnar Hjalmarsson <noreply@gunnar.cc>
Subject: Re: call back to my own script
Message-Id: <5vie54F1l6tvaU1@mid.individual.net>
burrell.john@yahoo.com wrote:
> I have the following code
I notice that you are using CGI.pm's start_form() method.
> I want to call back to the same cgi code on the same server -
That's what should happen when start_form() is called without
parameters, as in your case.
> but on
> submit I merely get the relative path appended to the original URL.
I'm not able to reproduce that behaviour. Can you give us more details?
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
------------------------------
Date: Sun, 20 Jan 2008 12:35:37 -0500
From: S P Arif Sahari Wibowo <arifsaha@yahoo.com>
Subject: cancel Re: A do-file location: how the code inside that do-file find it?
Message-Id: <alpine.OSX.0.9999.0801201234420.343@imac2006.local>
cancel Re: A do-file location: how the code inside that do-file find it?
------------------------------
Date: Mon, 21 Jan 2008 05:42:18 GMT
From: merlyn@stonehenge.com (Randal Schwartz)
Subject: new CPAN modules on Mon Jan 21 2008
Message-Id: <JuzBuI.1zvw@zorch.sf-bay.org>
The following modules have recently been added to or updated in the
Comprehensive Perl Archive Network (CPAN). You can install them using the
instructions in the 'perlmodinstall' page included with your Perl
distribution.
AUBBC1.0
http://search.cpan.org/~sflex/AUBBC1.0/
----
Alien-wxWidgets-0.33
http://search.cpan.org/~mbarbon/Alien-wxWidgets-0.33/
building, finding and using wxWidgets binaries
----
Amazon-S3-0.41.2
http://search.cpan.org/~tima/Amazon-S3-0.41.2/
A portable client library for working with and managing Amazon S3 buckets and keys.
----
Amazon-S3-0.411
http://search.cpan.org/~tima/Amazon-S3-0.411/
A portable client library for working with and managing Amazon S3 buckets and keys.
----
App-Tweet-1.0
http://search.cpan.org/~jmcada/App-Tweet-1.0/
tweet on twitter from the command line
----
Business-OnlinePayment-AuthorizeNet-AIM-ErrorCodes-0.01
http://search.cpan.org/~tsibley/Business-OnlinePayment-AuthorizeNet-AIM-ErrorCodes-0.01/
Easy lookup of Authorize.Net's AIM result reason codes
----
CHI-0.01
http://search.cpan.org/~jswartz/CHI-0.01/
Unified cache interface
----
CHI-0.02
http://search.cpan.org/~jswartz/CHI-0.02/
Unified cache interface
----
CPAN-Reporter-1.07_02
http://search.cpan.org/~dagolden/CPAN-Reporter-1.07_02/
Adds CPAN Testers reporting to CPAN.pm
----
CPAN-Reporter-1.07_03
http://search.cpan.org/~dagolden/CPAN-Reporter-1.07_03/
Adds CPAN Testers reporting to CPAN.pm
----
CPAN-Reporter-1.07_04
http://search.cpan.org/~dagolden/CPAN-Reporter-1.07_04/
Adds CPAN Testers reporting to CPAN.pm
----
CPAN-Reporter-Smoker-0.01_01
http://search.cpan.org/~dagolden/CPAN-Reporter-Smoker-0.01_01/
Turnkey CPAN Testers smoking
----
Cache-Memcached-LibMemcached-0.00006
http://search.cpan.org/~dmaki/Cache-Memcached-LibMemcached-0.00006/
Perl Interface to libmemcached
----
CatalystX-CRUD-0.23
http://search.cpan.org/~karman/CatalystX-CRUD-0.23/
CRUD framework for Catalyst applications
----
Chart-OFC-0.04
http://search.cpan.org/~drolsky/Chart-OFC-0.04/
Generate data files for use with Open Flash Chart
----
Class-Autouse-1.99_01
http://search.cpan.org/~adamk/Class-Autouse-1.99_01/
Run-time load a class the first time you call a method in it.
----
Class-DBI-Plugin-DeepAbstractSearchPager-0.03
http://search.cpan.org/~sriha/Class-DBI-Plugin-DeepAbstractSearchPager-0.03/
paged queries for CDBI::Plugin::DeepAbstractSearch
----
Compress-LZMA-External-0.31
http://search.cpan.org/~lbrocard/Compress-LZMA-External-0.31/
Compress and decompress using LZMA
----
Compress-LZMA-External-0.32
http://search.cpan.org/~lbrocard/Compress-LZMA-External-0.32/
Compress and decompress using LZMA
----
Coro-4.37
http://search.cpan.org/~mlehmann/Coro-4.37/
coroutine process abstraction
----
DBD-Pg-2.0.0_5
http://search.cpan.org/~dbdpg/DBD-Pg-2.0.0_5/
PostgreSQL database driver for the DBI module
----
Data-FeatureFactory-0.03-r1
http://search.cpan.org/~sixtease/Data-FeatureFactory-0.03-r1/
evaluate features normally or numerically
----
Data-FormValidator-Constraints-Words-0.01
http://search.cpan.org/~barbie/Data-FormValidator-Constraints-Words-0.01/
Data constraints for word inputs.
----
Data-FormValidator-Constraints-Words-0.02
http://search.cpan.org/~barbie/Data-FormValidator-Constraints-Words-0.02/
Data constraints for word inputs.
----
Devel-GDB-2.01
http://search.cpan.org/~jezra/Devel-GDB-2.01/
Open and communicate a gdb session
----
Devel-PerlySense-0.0141
http://search.cpan.org/~johanl/Devel-PerlySense-0.0141/
IntelliSense for Perl
----
Encode-JP-Mobile-0.24
http://search.cpan.org/~miyagawa/Encode-JP-Mobile-0.24/
????????? Shift_JIS (CP932) / UTF-8 ????????
----
Finance-Currency-Convert-WebserviceX-0.06002
http://search.cpan.org/~claco/Finance-Currency-Convert-WebserviceX-0.06002/
Lightweight currency conversion using WebserviceX.NET
----
Flickr-Upload-Dopplr-0.2
http://search.cpan.org/~ascope/Flickr-Upload-Dopplr-0.2/
Flickr::Upload subclass to assign location information using Dopplr
----
Form-Processor-0.16
http://search.cpan.org/~hank/Form-Processor-0.16/
validate and process form data
----
HTML-ReplacePictogramMobileJp-0.02
http://search.cpan.org/~tokuhirom/HTML-ReplacePictogramMobileJp-0.02/
HTML ?????????????
----
HTML-ReplacePictogramMobileJp-0.03
http://search.cpan.org/~tokuhirom/HTML-ReplacePictogramMobileJp-0.03/
HTML ?????????????
----
HTML-TrackerLink-1.03
http://search.cpan.org/~adamk/HTML-TrackerLink-1.03/
Autogenerates links to Bug/Tracker systems
----
Handel-Storage-RDBO-1.00002
http://search.cpan.org/~claco/Handel-Storage-RDBO-1.00002/
RDBO storage layer for Handel 1.x
----
Hash-AsObject-0.10
http://search.cpan.org/~nkuitse/Hash-AsObject-0.10/
treat hashes as objects, with arbitrary accessors/mutators
----
Hash-Util-FieldHash-Compat-0.01
http://search.cpan.org/~nuffin/Hash-Util-FieldHash-Compat-0.01/
Use Hash::Util::FieldHash or ties, depending on availability.
----
KinoSearch-0.20_051
http://search.cpan.org/~creamyg/KinoSearch-0.20_051/
Search engine library.
----
Lingua-JA-Romanize-Japanese-0.23
http://search.cpan.org/~kawasaki/Lingua-JA-Romanize-Japanese-0.23/
Romanization of Japanese language
----
Lingua-TR-Numbers-0.21
http://search.cpan.org/~burak/Lingua-TR-Numbers-0.21/
Converts numbers into Turkish text.
----
Lingua-ZH-Romanize-Pinyin-0.23
http://search.cpan.org/~kawasaki/Lingua-ZH-Romanize-Pinyin-0.23/
Romanization of Standard Chinese language
----
Log-Handler-0.38_04
http://search.cpan.org/~bloonix/Log-Handler-0.38_04/
A handler to log messages to different outputs.
----
Log-Handler-0.38_05
http://search.cpan.org/~bloonix/Log-Handler-0.38_05/
Log messages to different outputs.
----
Log-Handler-0.38_06
http://search.cpan.org/~bloonix/Log-Handler-0.38_06/
Log messages to one or more outputs.
----
Math-Wavelet-Haar-0.06
http://search.cpan.org/~simcop/Math-Wavelet-Haar-0.06/
Perl extension for transforming data with the Haar Wavelet
----
MetaStore-0.27
http://search.cpan.org/~zag/MetaStore-0.27/
Set of classes for multiuser web applications.
----
MojoMojo-0.999010
http://search.cpan.org/~mramberg/MojoMojo-0.999010/
A Catalyst & DBIx::Class powered Wiki.
----
Moxy-0.08
http://search.cpan.org/~tokuhirom/Moxy-0.08/
Mobile web development proxy
----
Moxy-0.20
http://search.cpan.org/~tokuhirom/Moxy-0.20/
Mobile web development proxy
----
Net-Appliance-Session-0.19
http://search.cpan.org/~oliver/Net-Appliance-Session-0.19/
Run command-line sessions to network appliances
----
Net-DownloadMirror-0.05
http://search.cpan.org/~knorr/Net-DownloadMirror-0.05/
Perl extension for mirroring a remote location via FTP to the local directory
----
Net-MRIM-1.05
http://search.cpan.org/~aau/Net-MRIM-1.05/
Perl implementation of mail.ru agent protocol
----
Net-MirrorDir-0.08
http://search.cpan.org/~knorr/Net-MirrorDir-0.08/
Perl extension for compare local-directories and remote-directories with each other
----
Net-UploadMirror-0.08
http://search.cpan.org/~knorr/Net-UploadMirror-0.08/
Perl extension for mirroring a local directory via FTP to the remote location
----
OAuth-Lite-1.07
http://search.cpan.org/~lyokato/OAuth-Lite-1.07/
OAuth framework
----
PApp-1.4
http://search.cpan.org/~mlehmann/PApp-1.4/
multi-page-state-preserving web applications
----
PApp-SQL-1.03
http://search.cpan.org/~mlehmann/PApp-SQL-1.03/
absolutely easy yet fast and powerful sql access.
----
POE-Component-CPAN-YACSmoke-1.14
http://search.cpan.org/~bingos/POE-Component-CPAN-YACSmoke-1.14/
Bringing the power of POE to CPAN smoke testing.
----
POE-Component-DirWatch-0.100000_01
http://search.cpan.org/~groditi/POE-Component-DirWatch-0.100000_01/
POE directory watcher
----
POE-Component-DirWatch-0.100000_02
http://search.cpan.org/~groditi/POE-Component-DirWatch-0.100000_02/
POE directory watcher
----
POE-Component-WWW-YouTube-VideoURI-0.03
http://search.cpan.org/~zoffix/POE-Component-WWW-YouTube-VideoURI-0.03/
Non-blocking POE wrapper around WWW::YouTube::VideoURI with download abilities.
----
POE-Component-WebService-Validator-HTML-W3C-0.01
http://search.cpan.org/~zoffix/POE-Component-WebService-Validator-HTML-W3C-0.01/
a non-blocking POE wrapper around WebService::Validator::HTML::W3C
----
POE-Component-WebService-Validator-HTML-W3C-0.02
http://search.cpan.org/~zoffix/POE-Component-WebService-Validator-HTML-W3C-0.02/
a non-blocking POE wrapper around WebService::Validator::HTML::W3C
----
POE-Loop-EV-0.05
http://search.cpan.org/~agrundma/POE-Loop-EV-0.05/
a bridge that supports EV from POE
----
Parse-Flash-Cookie-0.06
http://search.cpan.org/~aff/Parse-Flash-Cookie-0.06/
A flash cookie parser.
----
Path-Resource-0.070
http://search.cpan.org/~rkrimen/Path-Resource-0.070/
URI/Path::Class combination.
----
Perl-Repository-APC-2.000_000279
http://search.cpan.org/~andk/Perl-Repository-APC-2.000_000279/
Class modelling "All Perl Changes" repository
----
Perl-Repository-APC-2.000_000282
http://search.cpan.org/~andk/Perl-Repository-APC-2.000_000282/
Class modelling "All Perl Changes" repository
----
Proc-Exists-0.04
http://search.cpan.org/~brianski/Proc-Exists-0.04/
quickly check for process existence
----
Proc-Exists-0.05
http://search.cpan.org/~brianski/Proc-Exists-0.05/
quickly check for process existence
----
Prompt-ReadKey-0.02
http://search.cpan.org/~nuffin/Prompt-ReadKey-0.02/
Darcs style single readkey option prompt.
----
Prompt-ReadKey-0.03
http://search.cpan.org/~nuffin/Prompt-ReadKey-0.03/
Darcs style single readkey option prompt.
----
SMS-Send-AQL-0.01
http://search.cpan.org/~bigpresh/SMS-Send-AQL-0.01/
SMS::Send driver to send messages via AQL (www.aql.com)
----
SMS-Send-AQL-0.02
http://search.cpan.org/~bigpresh/SMS-Send-AQL-0.02/
SMS::Send driver to send messages via AQL (www.aql.com)
----
SOAP-WSDL-2.00_29
http://search.cpan.org/~mkutter/SOAP-WSDL-2.00_29/
SOAP with WSDL support
----
Search-Estraier-0.09
http://search.cpan.org/~dpavlin/Search-Estraier-0.09/
pure perl module to use Hyper Estraier search engine
----
Sledge-SessionManager-Auto-0.03
http://search.cpan.org/~mikihoshi/Sledge-SessionManager-Auto-0.03/
Sledge's session manger switcher
----
Sledge-SessionManager-MobileID-0.02
http://search.cpan.org/~mikihoshi/Sledge-SessionManager-MobileID-0.02/
Sledge's session manager use mobile phone identify.
----
Socket-GetAddrInfo-0.08_1
http://search.cpan.org/~pevans/Socket-GetAddrInfo-0.08_1/
RFC 2553's getaddrinfo and getnameinfo functions.
----
Socket-GetAddrInfo-0.08_2
http://search.cpan.org/~pevans/Socket-GetAddrInfo-0.08_2/
RFC 2553's getaddrinfo and getnameinfo functions.
----
Spreadsheet-Engine-0.12
http://search.cpan.org/~tmtm/Spreadsheet-Engine-0.12/
Core calculation engine for a spreadsheet
----
Statistics-Test-WilcoxonRankSum-0.0.1
http://search.cpan.org/~ingrif/Statistics-Test-WilcoxonRankSum-0.0.1/
perform the Wilcoxon (aka Mann-Whitney) rank sum test on two sets of numeric data.
----
Template-Plugin-StringTree-0.08
http://search.cpan.org/~adamk/Template-Plugin-StringTree-0.08/
Access tree-like groups of strings naturally in code and Templates
----
Test-Dir-1.004
http://search.cpan.org/~mthurn/Test-Dir-1.004/
test directory attributes
----
Text-Editor-Easy-0.01
http://search.cpan.org/~grommier/Text-Editor-Easy-0.01/
The great new Text::Editor::Easy!
----
TextMate-JumpTo-0.01
http://search.cpan.org/~andya/TextMate-JumpTo-0.01/
Tell TextMate to jump to a particular file, line
----
TextMate-JumpTo-0.02
http://search.cpan.org/~andya/TextMate-JumpTo-0.02/
Tell TextMate to jump to a particular file, line
----
TextMate-JumpTo-0.03
http://search.cpan.org/~andya/TextMate-JumpTo-0.03/
Tell TextMate to jump to a particular file, line
----
TextMate-JumpTo-0.04
http://search.cpan.org/~andya/TextMate-JumpTo-0.04/
Tell TextMate to jump to a particular file, line
----
Tie-CArray-0.14
http://search.cpan.org/~rurban/Tie-CArray-0.14/
Space-efficient, typed, external C Arrays (Alpha)
----
Tie-DiskUsage-0.20
http://search.cpan.org/~schubiger/Tie-DiskUsage-0.20/
Tie disk-usage to a hash
----
Time-Elapsed-0.24
http://search.cpan.org/~burak/Time-Elapsed-0.24/
Displays the elapsed time as a human readable string.
----
Tk-Bounded-1.0.1
http://search.cpan.org/~dmpetit/Tk-Bounded-1.0.1/
Base class for widgets derived and bound binded from others
----
Video-Xine-0.13
http://search.cpan.org/~stephen/Video-Xine-0.13/
Perl interface to libxine
----
WWW-CDBaby-0.05
http://search.cpan.org/~grantg/WWW-CDBaby-0.05/
Automate interaction with cdbaby.com!
----
WWW-Search-2.497
http://search.cpan.org/~mthurn/WWW-Search-2.497/
Virtual base class for WWW searches
----
WWW-Search-AltaVista-2.149
http://search.cpan.org/~mthurn/WWW-Search-AltaVista-2.149/
class for searching www.altavista.com
----
Win32-FindWindow-0.01
http://search.cpan.org/~pia/Win32-FindWindow-0.01/
find windows on Win32 systems
----
Win32-FindWindow-0.02
http://search.cpan.org/~pia/Win32-FindWindow-0.02/
find windows on Win32 systems
----
Win32-IIS-Admin-1.023
http://search.cpan.org/~mthurn/Win32-IIS-Admin-1.023/
Administer Internet Information Service on Windows
----
Win32-TestServerManager-0.03
http://search.cpan.org/~ishigaki/Win32-TestServerManager-0.03/
manage simple test servers on Win32
----
Win32-WindowsMedia-0.15.0
http://search.cpan.org/~shamrock/Win32-WindowsMedia-0.15.0/
Base Module for Provisiong and control for Windows Media Services
----
Wx-0.81
http://search.cpan.org/~mbarbon/Wx-0.81/
interface to the wxWidgets cross-platform GUI toolkit
----
perfSONAR_PS-Base-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Base-0.04/
----
perfSONAR_PS-Client-Echo-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Echo-0.04/
A module that provides methods for interacting with perfSONAR Echo services.
----
perfSONAR_PS-Client-LS-Remote-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-LS-Remote-0.04/
A module that provides a client API for an LS
----
perfSONAR_PS-Client-Status-MA-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Status-MA-0.04/
A module that provides methods for interacting with Status MA servers.
----
perfSONAR_PS-Client-Status-SQL-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Status-SQL-0.04/
A module that provides methods for interacting with a Status MA database directly.
----
perfSONAR_PS-Client-Topology-MA-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Topology-MA-0.04/
A module that provides methods for interacting with Topology MA servers.
----
perfSONAR_PS-Client-Topology-XMLDB-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Client-Topology-XMLDB-0.04/
A module that provides methods for interacting with a Topology MA database directly.
----
perfSONAR_PS-Collectors-Daemon-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Collectors-Daemon-0.04/
----
perfSONAR_PS-Collectors-LinkStatus-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Collectors-LinkStatus-0.04/
A module that will collect link status information and store the results into a Link Status MA.
----
perfSONAR_PS-DB-File-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-File-0.04/
A module that provides methods for adding 'database like' functions to files that contain XML markup.
----
perfSONAR_PS-DB-RRD-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-RRD-0.04/
A module that provides methods for dealing with rrd files through the RRDp perl module.
----
perfSONAR_PS-DB-SQL-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-SQL-0.04/
A module that provides methods for dealing with common SQL databases.
----
perfSONAR_PS-DB-XMLDB-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-DB-XMLDB-0.04/
A module that provides methods for dealing with the Sleepycat [Oracle] XML database.
----
perfSONAR_PS-Services-Daemon-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-Daemon-0.04/
----
perfSONAR_PS-Services-LS-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-LS-0.04/
----
perfSONAR_PS-Services-MA-Base-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-Base-0.04/
----
perfSONAR_PS-Services-MA-SNMP-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-SNMP-0.04/
----
perfSONAR_PS-Services-MA-Status-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-Status-0.04/
A module that provides methods for the Status MA.
----
perfSONAR_PS-Services-MA-Topology-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Services-MA-Topology-0.04/
A module that provides methods for the Topology MA.
----
perfSONAR_PS-Status-Common-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Status-Common-0.04/
A module that provides common methods for Link Status clients and services within the perfSONAR-PS framework.
----
perfSONAR_PS-Topology-Common-0.04
http://search.cpan.org/~perfsonar/perfSONAR_PS-Topology-Common-0.04/
A module that provides various utility functions for Topology structures.
If you're an author of one of these modules, please submit a detailed
announcement to comp.lang.perl.announce, and we'll pass it along.
This message was generated by a Perl program described in my Linux
Magazine column, which can be found on-line (along with more than
200 other freely available past column articles) at
http://www.stonehenge.com/merlyn/LinuxMag/col82.html
print "Just another Perl hacker," # the original
--
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@stonehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!
------------------------------
Date: Sun, 20 Jan 2008 20:48:42 -0800
From: Joe Smith <joe@inwap.com>
Subject: Re: perl -pe substitution
Message-Id: <_OOdnUJJWem_uQnanZ2dnUVZ_sudnZ2d@comcast.com>
Asim Suter wrote:
> `perl -pe 's/\@VERSION\@/1.2.3.4/g' -i $input_file` ;
>
> Which chnages the content in $input_file to
>
> ABC1.2.3.4VERSION1.2.3.4DEF
>
> Why the difference in the two cases ?
>
> What do I need to do to get bahavior like Case 1 in Case 2 ?
>
> I'd suspect some special interpretation of @ at play but it's escaped
It's not escaped to the shell nor to the second invocation of perl.
@VERSION = qw(aaa bbb);
$_ = `echo perl -pe 's/\@VERSION\@/1.2.3.4/g' -i $input_file`;
$_ = `echo perl -pe 's/\\@VERSION\\@/1.2.3.4/g' -i $input_file`;
$_ = `echo perl -pe 's/\\\@VERSION\\\@/1.2.3.4/g' -i $input_file`;
system qq{perl -pe 's/\\\@VERSION\\\@/1.2.3.4/g' -i $input_file};
Take a look at 'perldoc backticks'. In particular, the sections for
What's wrong with using backticks in a void context?
How can I call backticks without shell processing?
-Joe
------------------------------
Date: 6 Apr 2001 21:33:47 GMT (Last modified)
From: Perl-Users-Request@ruby.oce.orst.edu (Perl-Users-Digest Admin)
Subject: Digest Administrivia (Last modified: 6 Apr 01)
Message-Id: <null>
Administrivia:
#The Perl-Users Digest is a retransmission of the USENET newsgroup
#comp.lang.perl.misc. For subscription or unsubscription requests, send
#the single line:
#
# subscribe perl-users
#or:
# unsubscribe perl-users
#
#to almanac@ruby.oce.orst.edu.
NOTE: due to the current flood of worm email banging on ruby, the smtp
server on ruby has been shut off until further notice.
To submit articles to comp.lang.perl.announce, send your article to
clpa@perl.com.
#To request back copies (available for a week or so), send your request
#to almanac@ruby.oce.orst.edu with the command "send perl-users x.y",
#where x is the volume number and y is the issue number.
#For other requests pertaining to the digest, send mail to
#perl-users-request@ruby.oce.orst.edu. Do not waste your time or mine
#sending perl questions to the -request address, I don't have time to
#answer them even if I did know the answer.
------------------------------
End of Perl-Users Digest V11 Issue 1217
***************************************