Ask a Question related to PERL Modules, Design and Development.
-
zorro #1
can't find xml-parsing module...
Hello,
I need to parse xml, but am not allowed to install modules on the
server. I have no idea which of the modules installed on the server
will do the job. This is the list of installed modules :
ByteLoader.pm
B.pm
DynaLoader.pm
Config.pm
Cwd.pm
DB_File.pm
Encode.pm
Errno.pm
Fcntl.pm
GDBM_File.pm
IO.pm
NDBM_File.pm
O.pm
ODBM_File.pm
Opcode.pm
POSIX.pm
SDBM_File.pm
Safe.pm
Socket.pm
Storable.pm
XSLoader.pm
attrs.pm
encoding.pm
lib.pm
ops.pm
threads.pm
re.pm
AnyDBM_File.pm
AutoLoader.pm
AutoSplit.pm
Benchmark.pm
CGI.pm
CPAN.pm
Carp.pm
DB.pm
Digest.pm
DirHandle.pm
Dumpvalue.pm
English.pm
Env.pm
Exporter.pm
Fatal.pm
FileCache.pm
FileHandle.pm
FindBin.pm
Memoize.pm
NEXT.pm
PerlIO.pm
SelectSaver.pm
SelfLoader.pm
Shell.pm
Switch.pm
Symbol.pm
Test.pm
Thread.pm
UNIVERSAL.pm
abbrev.pl
assert.pl
attributes.pm
autouse.pm
base.pm
bigfloat.pl
bigint.pl
bigint.pm
bignum.pm
bigrat.pl
bigrat.pm
blib.pm
bytes.pm
bytes_heavy.pl
cacheout.pl
charnames.pm
complete.pl
constant.pm
ctime.pl
diagnostics.pm
dotsh.pl
dumpvar.pl
exceptions.pl
fastcwd.pl
fields.pm
filetest.pm
find.pl
finddepth.pl
flush.pl
getcwd.pl
getopt.pl
getopts.pl
hostname.pl
if.pm
importenv.pl
integer.pm
less.pm
locale.pm
look.pl
newgetopt.pl
open.pm
open2.pl
open3.pl
overload.pm
perl5db.pl
pwd.pl
shellwords.pl
sigtrap.pm
sort.pm
stat.pl
strict.pm
subs.pm
syslog.pl
tainted.pl
termcap.pl
timelocal.pl
utf8.pm
utf8_heavy.pl
validate.pl
vars.pm
vmsish.pm
warnings.pm
Quota.pm
Expect.pm
Apache2.pm
APR.pm
DBI.pm
Mysql.pm
SNMP.pm
mod_perl.pm
LWP.pm
URI.pm
ycp.pm
zorro Guest
-
Lemur parsing module
Hello everybody! I am working on an information retrieval project invloving the Lemur Toolkit (http://www.lemurproject.org/). More specifically,... -
Name for a webalizer.hist-parsing module?
(previously posted to modules@perl.org, but didn't get a reaction, so I'm also trying here before I do stupid things. =) I was really surprised... -
RFC: Snort rule parsing module
Folks, I've written the beginning of a perl module to parse snort (http://www.snort.org) rules. I searched CPAN and didn't come up with... -
(module for) RTF parsing ?
I can find modules for making RTF files, but what if I want to go the other way ? I have a number of files (SMS messages) in a directory, which I... -
HTML / text parsing - best module(s) to use?
Assuming I have used LWP to get an HTML document into a response object, I'd like to know what module(s) to use for the following task. I would... -
zorro #2
Re: can't find xml-parsing module...
P.S.
the following creates a server error :
use CGI::XMLForm;
zorro Guest
-
Sherm Pendley #3
Re: can't find xml-parsing module...
"zorro" <myahact@yahoo.ca> writes:
Has the admin or another authority specifically denied Perl modules? Or is> I need to parse xml, but am not allowed to install modules on the
> server.
the restriction really that you don't have root access?
If it's the latter, then you *can* install modules, albeit only in your own
user space. Have a look at "perldoc perlmodinstall".
sherm--
--
Cocoa programming in Perl: [url]http://camelbones.sourceforge.net[/url]
Hire me! My resume: [url]http://www.dot-app.org[/url]
Sherm Pendley Guest
-
Sherm Pendley #4
Re: can't find xml-parsing module...
"zorro" <myahact@yahoo.ca> writes:
This is a Frequently Asked Question:> the following creates a server error :
>
> use CGI::XMLForm;
perldoc -q server error
Please - consult the available documentation before asking thousands of
people around the world to do so for you.
sherm--
--
Cocoa programming in Perl: [url]http://camelbones.sourceforge.net[/url]
Hire me! My resume: [url]http://www.dot-app.org[/url]
Sherm Pendley Guest
-
zorro #5
Re: can't find xml-parsing module...
Sherm Pendley wrote:
The Post Scriptum I added was not a question. It's meant to inform a> "zorro" <myahact@yahoo.ca> writes:
>>> > the following creates a server error :
> >
> > use CGI::XMLForm;
> This is a Frequently Asked Question:
>
> perldoc -q server error
>
> Please - consult the available documentation before asking thousands of
> people around the world to do so for you.
>
person who is attempting to help me, that out of the hundred modules I
have listed CGI::XMLForm is one that I have already tried but without
success. It's like asking "Besides CGI::XMLForm, do you see a module
here that can parse XML? Thank you."
zorro Guest
-
Brian McCauley #6
Re: can't find xml-parsing module...
zorro wrote:Are you sure? Are you really sure? Are you really really sure?> Hello,
> I need to parse xml, but am not allowed to install modules on the
> server.
Maybe you are not allowed to install modules in the shared module
directory.
Maybe you are not allowed to install modules that are not pure-Perl.
But if you are allowed to install scripts there is no reason why you
shouldn't be permitted to install pure-Perl modules in your own private
driectories. (There's nothing bad you could do by installing a module
that you could not do without).
> I have no idea which of the modules installed on the server
> will do the job. This is the list of installed modules :[ ... a list of modules, all with single component names ]> ByteLoader.pm
> B.pm
> DynaLoader.pm
> Config.pm
That's not the full list. You need to list all the *.pm files
_recursively_ to get all the modules.
None of those parse XML.
Brian McCauley Guest



Reply With Quote

