Tagged Questions
0
votes
1answer
26 views
How can I use HTML::Template without creating separate files for each template?
The normal way of using HTML::Template is as follows:
main file:
my $template = HTML::Template->new(filename => 'secret.tmpl');
$template->param(SECRET_MESSAGE => $bar);
print ...
0
votes
0answers
13 views
Attributes exchange using Net::OpenID::Consumer
my $csr = Net::OpenID::Consumer->new(
ua => LWP::UserAgent->new,
consumer_secret => '123456xXx',
required_root => "http://www.myopenidsample.net/",
);
my ...
0
votes
0answers
18 views
How to store the selected value in Tkx::combobox to a variable using perl
I've been playing around Tkx package in perl.
I'm successful in creating a combo box with set of values. However I'm not able to find a way to retrieve the selected value from the drop down box.
...
3
votes
2answers
88 views
How to use a module in Perl
Guys im really confused on how to use a module i just installed in Perl.
I installed a Corelist module in Perl. And i want to display all the modules that came with Perl 5.006. But there is a hint in ...
0
votes
0answers
43 views
How to search a text in zipped files using perl
I need to search for a string in a zip archive containing multiple text files. How can I use perl Archive::Zip to do that? Also, what other module can it, if any?
My basic requirement is to find a ...
0
votes
1answer
18 views
How to check if one module is already opened in a Perl/Tk application
In a Perl/Tk MainWindow, in the menu bar, if I click on an option, then I can open same module twice, thrice etc. But if it is already opened, then it should not open again. Any idea how to do that?
...
1
vote
0answers
35 views
Inline::CPP/Inline::C - debug code
I'm trying to use some proprietary C++ code in a Perl module.
I have seen it is easy to debug if something goes wrong at compiling time by just enabling the BUILD_NOISY flag.
In my case the problem ...
2
votes
2answers
46 views
Can't locate object method “new” via package “IO::Socket::SSL”
Can anybody throw me a bone on this one?
Can't locate object method "new" via package "IO::Socket::SSL" at Services/IMAP/Client.pm line 136.
if ( $use_ssl ) {
135 require ...
-3
votes
0answers
27 views
perl unit testing on perl package
I need some clarification on the discussion happened on Feb 10, 2009 on the topic Perl build, unit testing, code coverage:
A complete working example. I also in need of the unit testing on perl ...
0
votes
2answers
60 views
How do I create a multi-module distribution?
I want to create my own Perl module, but the problem is that it contain multiple .pm files. The structure is:
lib
├── A_Z.pm
└── T_test
├── A.pm
├── B.pm
├── C.pm
├── D.pm
└── ...
2
votes
1answer
39 views
How to Take input of “Ctrl s” or “Ctrl 1” in PERL
Actually I am trying to take input from user until he presses "Ctrl + 1" or "Ctrl + D" or "Ctrl + s" or "Esc" or "End" or "F7" {keyboard buttons}
How can i let my perl code know about this, whenever ...
0
votes
1answer
28 views
Curses::UI::Grid module
This is first example from perldoc
use Curses::UI;
my $cui = new Curses::UI;
my $win = $cui->add('window_id', 'Window');
my $grid =$win->add(
'mygrid', 'Grid'
-rows => 3,
-columns ...
0
votes
3answers
39 views
How to merge 2 lines in perl script
I am trying to write a Perl script that will transform the input
( name
( type ....
)
)
into the output
( name ( type ... ) )
I.e. all these lines matching ( ) are merged into a ...
0
votes
1answer
30 views
Cairo Perl module installation issue
I am trying to install Cairo Perl module locally, but it is throwing me error.
$ /testdir/bin/perl -I /testdir/perl-5.14.0/lib Makefile.PL
Package cairo was not found in the pkg-config search path.
...
-1
votes
1answer
30 views
Perl Message::Stack example
I am using Perl to try to implement an example for the Message::Stack module from CPAN.
I get the error
Can't locate object method "new" via package "Message::Stack" at stack.pl line 3.
my ...
0
votes
1answer
34 views
image::Magick perl module - Multiple crop/resize manipulations from one Read and one Write?
I have a Perl script that uses the Image::Magick perl module to crop an existing image from a web form (that uses JCrop to feed me width, height, x, y). Because the cropped image will be used in a ...
0
votes
2answers
56 views
Use of uninitialized value in subroutine entry at mytest.pl
#!/usr/bin/perl
use strict;
use warnings;
use List::Util qw(min max);
use Set::IntervalTree;
use GenomeLookupUtil;
my $chromCol = 0;
my $startCol = 0;
my $endCol = 0;
if($ARGV[2] eq "VSC") {
...
1
vote
2answers
83 views
Dzil Release Clobbers Jar File
I have created a Perl module to provide an interface with the RNG-processing Java library Jing. The code is located here. I use [Inline::Java][3] to compile and load a small class which utilizes ...
2
votes
1answer
20 views
Perl exporting module function from higher directory
I have file .../module.pm and file .../somedir/program.pl
How to export function from module.pm to program.pl? Or how to get path to current script?
0
votes
0answers
15 views
Perl XML::SAX - character() method error
I'm new to using Perl XML::SAX and I encountered a problem with the characters event that is triggered. I'm trying to parse a very large XML file using perl.
My goal is to get the content of each tag ...
1
vote
2answers
79 views
Perl Modules - Sharing Database Connection
Can someone give me some direction on the best way to do when sharing a $dbh variable between "objects" in different .pm files.
For instance, my main module say Foo.pm has a new constructor, etc and ...
0
votes
3answers
96 views
Perl www::mechanize
İ am very new to perl module www::mechanize and I want to functionalize snp id. For that I have to make a web crawler, but i am having difficulties . İ dont know how to use field names or how to ...
0
votes
2answers
81 views
issue with creating perl script to imitate linux command “ifconfig”
I have an assignment in which I am to create a perl script in Linux to imitate the command "ifconfig". This command basically shows you information about your network interfaces. I have already ...
0
votes
1answer
76 views
How to Display IFconfig information with perl program in Linux
I have an assignment where i am supposed to create a perl script in linux that will give an output similar to that of the linux command "ifconfig". I have started writing the script but I repeatedly ...
0
votes
2answers
84 views
Perl telnet command not sending every command
I have the following program below which telnets into another device and prints serial number and Mac address.
My problem is that for some reason if I send the command once it skips the first ...
0
votes
0answers
36 views
How to package a Perl module with Autoloader in Perl
I created the module with following structure:
A.pm
A/
B.pm
C.pm
Here A.pm is an autoloader module which loads the subroutines of B.pm and C.pm in main program. Now, I want to make it a package ...
0
votes
2answers
51 views
looking for help call a perl script with arguments from java class
I have to call a Perl script from a Java class. I am able to do that using
final ProcessBuilder builder = new ProcessBuilder("perl", "/home/abc.pl");
I am wondering if I can pass parameters ...
0
votes
1answer
45 views
Unable to load Perl subpackage
I can't work out why I am unable to access a subpackage:
mbzdb:
#!/usr/bin/perl -w
use lib "./lib";
use MbzDb::Instance;
my $instance = new MbzDb::Instance();
$instance->startFromCommandLine();
...
0
votes
2answers
137 views
Perl Install PAR:Packer Problems
My perl version is 5.16.2 on my Windows 7 64bit, I failed to install PAR:Packer. I tried active perl and strawberry perl , both got the same error. Can you please give me some suggestion. Below is my ...
1
vote
2answers
169 views
Fail to install 'PAR::Packer' Perl module on Windows 7 - 64 bit - using DWIM Perl
I am working on MS-Windows 7 PC - 64 bit.
I am using "DWIM Perl for Windows" (http://dwimperl.com/windows.html) - which is a Strawberry Perl derivative.
I am trying to run 'install PAR::Packer' ...
0
votes
1answer
77 views
(Perl) Create query for DBI with SQL::Abstract
I want to add new record to table1 on SQLite
use SQL::Abstract;
my %data = (
id => \'max(id)', # it is doesn't work so which variant is right?
record => 'Something'
);
my $sql = ...
0
votes
3answers
460 views
how to run command on telnet command prompt in perl script
i am executing telnet command in perl script as below.
$telnetOutput = `telnet localhost 4505`;
print "\n telnet command output: $telnetOutput \n";
$clients = `clients`;
print"\n $clients\n";
...
1
vote
1answer
121 views
How to use CPAN modules without access to CPAN?
I am greatly disappointed every time I am forced to retrieve a module from CPAN. In most environments I work in, internet access is severely restricted or completely denied. All compilers have been ...
1
vote
2answers
102 views
How to Print Spelled out month names rather than numbers
How can you get Perl to print names of months rather than their numbers for example: 9 should appear as September. I would like the program below to print names of months rather than their numbers.
...
0
votes
1answer
55 views
how to incorporate perl modules into script
I am a beginner at Perl, I need to use functions from the Perl module Date::Easter in order to create a program that will take a year from user input and display the date of Easter within that year, i ...
1
vote
4answers
75 views
Perl Module to convert numbers to letter notation
Is there a perl module that will convert a number to a letter and vice versa?
For instance
1 = A
2 = B
3 = C
...
27 = AA
28 = AB
29 = AC
...
53 = BA
54 = BB
55 = BC
So on and so forth.
0
votes
1answer
161 views
Image::Magick::constant not defined
Does anyone know the cause of the following error:
Image::Magick::constant not defined.The required ImageMagick libraries are
not installed or not installed properly.
I've seen a number of ...
0
votes
1answer
85 views
Fail to load the App due to ODBC driver
install_driver(ODBC) failed:
Can't load '/usr/local/lib/perl5/auto/DBD/ODBC/ODBC.so' for module
DBD::ODBC: libodbc.so.1: cannot open shared object file: No such file
or directory at ...
1
vote
3answers
68 views
How to get parent class instance in Perl
I've used/created lots of classes in Perl and one common thing I need to do in them is to access certain properties of a parent object. For example, let's say I have Class_A and Class_B and they are ...
0
votes
1answer
62 views
Best way to compare 4 arrays
I have 4 files, each file I read into it's own array. From there i then compare files A, B and C to each other. At each step I print out a list of numbers which are missing.
Compare A to B then B to ...
1
vote
1answer
36 views
XML::Simple - How to fix that the same xml structure results in 2 different Perl data structures, depending on amount of members/syblings?
I am new to XML::Simple (and also not very keen in xml). I want to use it for parsing a simple xml structure that I get as result of an API. I do not have any influence on the xml I get.
When the ...
0
votes
3answers
70 views
Dynamic array of hashes in Perl
I have a CSV file like this:
name,email,salary
a,b@b.com,1000
d,e@e.com,2000
Now, I need to transform this to an array of hash-maps in Perl, so when I do something like:
table[1]{"email"}
it ...
0
votes
2answers
87 views
Force locally installed module to use locally installed dependencies
I'm working on a project that requires all third-party (read: CPAN) perl modules to be installed in a perforce repository, so that any code that depends on them can be successfully run without anyone ...
0
votes
5answers
91 views
How to test your own Perl modules while not depending on other modules in production?
First of all, I think somebody needs to rewrite my question, I know what I am asking, not how I should ask it precisely.
Assume I have some local module LOCAL::Commons and it has one subroutine ...
-2
votes
4answers
101 views
Extracting specific multiple line of records that is pipe delimited in perl
I have a file that looks like
NAME|JOHN|TOKYO|JPN
AGE|32|M
INFO|SINGLE|PROFESSIONAL|IT
NAME|MARK|MANILA|PH
AGE|37|M
INFO|MARRIED|PROFESSIONAL|BPO
NAME|SAMANTHA|SYDNEY|AUS
AGE|37|F
...
0
votes
2answers
223 views
Installing XML::Parser requires expat.h
I'm working on a project that requires all third-party (read: CPAN) perl modules to be installed in a perforce repository, so that any code that depends on them can be successfully run without anyone ...
2
votes
1answer
116 views
“Invalid access to memory location” when installing module
Bit of a newbie to Perl. I have managed to install a handful of modules from CPAN on my Windows 7 PC via the command prompt, but I have hit a brick wall when installing Math::Random. Not sure what is ...
-1
votes
1answer
55 views
Install Perl modules [closed]
I want to migrate a code from Linux to Windows 7. I use MinGW to run perl. Regarding this code I need to install 'Clone 0.31', 'Data-Dumper 2.121', Hash-Merge 0.11' and 'threads 1.71' packages. But, ...
0
votes
2answers
308 views
Failing to install SOAP::Lite
I am having problem to install SOAP::Lite
I am using perl, v5.8.8 on CentOS 5.9
I am getting an error:
Failed Test Stat Wstat Total Fail Failed List of Failed
...
1
vote
2answers
99 views
use lib for paths relative to a module
I'm having issues figuring out relative paths for use lib. Here is an example of what I am trying to do:
I have a directory call foo, which contains a script named myscript.pl. myscript.pl uses a ...



