Re: Is there a way to generate HTML reports?

2013-07-08 Thread *Shaji Kalidasan*
o you. What you do with it is your gift back to God. --- From: 'lesleyb' To: beginners@perl.org Sent: Monday, 8 July 2013 5:48 PM Subject: Re: Is there a way to generate HTML rep

Re: Is there a way to generate HTML reports?

2013-07-08 Thread 'lesleyb'
lar to what you see on the output. > Is there any way we to convert these formats into HTML reports? > > My goal is to create good looking HTML reports. Please suggest/advice. > > > Any help is highly appreciated. Hi Shaji I don't know of any module that interprets perl f

Re: Is there a way to generate HTML reports?

2013-07-07 Thread John SJ Anderson
On Sat, Jul 6, 2013 at 7:43 AM, *Shaji Kalidasan* wrote: > My goal is to create good looking HTML reports. Please suggest/advice. N'th-ing the suggestion that you look at a templating system. My current go-to in this area is Text::Xslate (https://metacpan.org/release/Text-Xslate), but t

Re: Is there a way to generate HTML reports?

2013-07-06 Thread Octavian Rasnita
convert these formats into HTML reports? My goal is to create good looking HTML reports. Please suggest/advice. Any help is highly appreciated. best, Shaji If I understood correctly, you need to use a templating system like Template-Toolkit. Octavian

Re: Is there a way to generate HTML reports?

2013-07-06 Thread Ron Weidner
the data from the actual rendering of the template.  The engine it self could also be called an "Event Based Parser" if that helps. One other feature that I implemented in this template system was to make the whitespace around the tags optionally significant.  Not important for HTML repor

Is there a way to generate HTML reports?

2013-07-06 Thread *Shaji Kalidasan*
reports? My goal is to create good looking HTML reports. Please suggest/advice. Any help is highly appreciated.   best, Shaji --- Your talent is God's gift to you. What you do with it is your gift back to God. ---

Re: Perl Audit Reports

2008-07-08 Thread michael wang
you may start with perl module File::Find to get all dir and files, and also look at perldoc -f stat to get file time and size informatiom. On 7/1/08, Kingmaker <[EMAIL PROTECTED]> wrote: > > I am new to perl . I need to write a perl script to generate an audit > report of a root directory and all

Perl Audit Reports

2008-07-01 Thread Kingmaker
I am new to perl . I need to write a perl script to generate an audit report of a root directory and all subsequent sub-directories and files under it, the report should be able to 1. list any directories/files changes in size and content, addition, deletion of any of them. 2. It could be run for

Crystal Reports

2005-05-19 Thread Brent Clark
Hi all Has anyone ever managed to get perl to talk to Crystal Reports. Currently one of developers got a hack working my getting perl to run a system subroutine and then that in its self runs a vbscript: system("WSCRIPT","crystal.vbs","$crystal_rpt_name","

Re: perl module to create pdf reports

2005-05-02 Thread radhika
> As far as free solutions, the Big Badass is PDF::API2. There are many > users, > a zillion modules, and a mailing list. There are several modules that > are > built on top of this, to relieve the difficulty of using it. I'm not so > sure they > make sense to use. > Mike, Thanks. I am looking in

Re: perl module to create pdf reports

2005-04-30 Thread Mike Lesser
Whoops! Top-post! Chris, Yes, I did search CPAN and found a lot of interesting modules. I will mention that I had asked for ideas and insights, over and above of just plain module names. I guess you often assume people do not search CPAN, and hence I can understand the frustration your email seems

Re: perl module to create pdf reports

2005-04-28 Thread Chris Devers
On Thu, 28 Apr 2005, radhika wrote: > Yes, I did search CPAN and found a lot of interesting modules. Okay then -- which? How do they meet your needs, or fail to meet them? > I will mention that I had asked for ideas and insights, over and above > of just plain module names. I guess you often as

Re: perl module to create pdf reports

2005-04-28 Thread radhika
value your comments. Thank you, Radhika > On Thu, 28 Apr 2005, radhika wrote: > >> I need to create some customized pdf reports and was wondering if there >> are any perl modules out there to help. > > Good question. Have you searched CPAN ? > > Go to <http://se

Re: perl module to create pdf reports

2005-04-28 Thread Chris Devers
On Thu, 28 Apr 2005, radhika wrote: > I need to create some customized pdf reports and was wondering if there > are any perl modules out there to help. Good question. Have you searched CPAN ? Go to <http://search.cpan.org/>. Put 'PDF' in the search field.

Re: perl module to create pdf reports

2005-04-28 Thread Gavin Henry
On Thursday 28 Apr 2005 20:42, radhika wrote: > Hi, > I need to create some customized pdf reports and was wondering if there > are any perl modules out there to help. > I already have my perl script getting data from the db and creating a csv > file. I understand that there is an

perl module to create pdf reports

2005-04-28 Thread radhika
Hi, I need to create some customized pdf reports and was wondering if there are any perl modules out there to help. I already have my perl script getting data from the db and creating a csv file. I understand that there is an html2ps module which I can then use to make a pdf. Of course before that

Re: Creating reports ??

2005-04-15 Thread Daniel Kasak
Michael Gale wrote: Hello, I am currently googling for this but ... I want to know what people think or have used to create reports in perl. Maybe creating some kind of graph or an excell report ? I'm currently working on a text-based reporting module. It basically does what MS A

Re: Creating reports ??

2005-04-14 Thread Chris Devers
On Thu, 14 Apr 2005, Michael Gale wrote: > I am currently googling for this but ... I want to know what > people think or have used to create reports in perl. Maybe creating > some kind of graph or an excel report ? Lots of things, depending on the specific needs. The GD::Gra

Creating reports ??

2005-04-14 Thread Michael Gale
Hello, I am currently googling for this but ... I want to know what people think or have used to create reports in perl. Maybe creating some kind of graph or an excell report ? Thanks. Michael -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <h

reports

2004-07-22 Thread Flatman
how to create nice looking reports in perl . With font effects + some graphics (like horizontal lines every 3 records ...) thanks erik -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>

printing reports

2004-07-22 Thread Flatman
hi all ! what would be the best (and easiest) module for printing reports (data based) . I need : - graphical printing (postscript or whatever) to printer since i need formatting (bold..) and images I'd like : - page numbering - easy row counting (I don't like to have to count r

Re: HTML reports via email

2004-01-26 Thread Jenda Krynicky
From: "Paul Harwood" <[EMAIL PROTECTED]> > I am trying to learn the best way to send HTML formatted reports via > e-mail using the standard modules that come with Perl 5.8. The > examples I have seen assign blocks of HTML code to scalars and pass > them to the NET::S

Re: HTML reports via email

2004-01-26 Thread Daniel Staal
--As off Sunday, January 25, 2004 5:30 PM -0800, Paul Harwood is alleged to have said: I am trying to learn the best way to send HTML formatted reports via e-mail using the standard modules that come with Perl 5.8. The examples I have seen assign blocks of HTML code to scalars and pass them to

Re: HTML reports via email

2004-01-26 Thread Randal L. Schwartz
>>>>> "Paul" == Paul Harwood <[EMAIL PROTECTED]> writes: Paul> I am trying to learn the best way to send HTML formatted reports via Paul> e-mail using the standard modules that come with Perl 5.8. The examples Paul> I have seen assign blocks of HTML code t

HTML reports via email

2004-01-26 Thread Paul Harwood
I am trying to learn the best way to send HTML formatted reports via e-mail using the standard modules that come with Perl 5.8. The examples I have seen assign blocks of HTML code to scalars and pass them to the NET::SMTP datasend() method etc. I was wondering if there was a better, more

Re: Bug reports for standard modules/Net::FTP STOU

2003-12-17 Thread Wiggins d Anconia
> On Wed, 2003-12-17 at 11:40, Wiggins d Anconia wrote: > > Real Question: > > I have a potential bug/implementation request for Net::FTP, as it is a > > base module should this be sent directly to Graham Barr or is there a > > better place to send it? > > I sen

Re: Bug reports for standard modules/Net::FTP STOU

2003-12-17 Thread Kevin Old
On Wed, 2003-12-17 at 11:40, Wiggins d Anconia wrote: > Real Question: > I have a potential bug/implementation request for Net::FTP, as it is a > base module should this be sent directly to Graham Barr or is there a > better place to send it? I send bug reports through the Request Tra

Re: Bug reports for standard modules/Net::FTP STOU

2003-12-17 Thread Randy W. Sims
On 12/17/2003 11:40 AM, Wiggins d Anconia wrote: Real Question: I have a potential bug/implementation request for Net::FTP, as it is a base module should this be sent directly to Graham Barr or is there a better place to send it? I usually check for a mailing list first at .

Bug reports for standard modules/Net::FTP STOU

2003-12-17 Thread Wiggins d Anconia
Real Question: I have a potential bug/implementation request for Net::FTP, as it is a base module should this be sent directly to Graham Barr or is there a better place to send it? Background Questions: Out of curiousity does anyone know of discussions had about Net::FTP as it relates to the STOU

Re: Form reports

2002-02-12 Thread Jon Molin
Naika - EV1 wrote: > > Bare with me but I'm a beginner and new to this list. > > I need advice on poll results. What should I be researching? I have forms > submitting off websites and I can direct them to email the results but how > do I write them to a file to be redisplayed on a webpage? A

Form reports

2002-02-12 Thread Naika - EV1
Bare with me but I'm a beginner and new to this list. I need advice on poll results. What should I be researching? I have forms submitting off websites and I can direct them to email the results but how do I write them to a file to be redisplayed on a webpage? Actually I know how to write to a

Form reports

2002-02-08 Thread Naika - EV1
Bare with me but I'm a beginner and new to this list. I need advice on poll results. What should I be researching? I have forms submitting off websites and I can direct them to email the results but how do I write them to a file to be redisplayed on a webpage? Thanks for any help. - Naika ht

Re: Reports and PERL

2001-12-11 Thread William.Ampeh
Create a template of your report in a word processor (WP, MSWORD, etc), save this template to a postscript (or pdf) file. Then in your PERL program, modify the place holders in your postscript or pdf template. Alternative, I use nroff text processing command within PERL. I will be interested t

Reports and PERL

2001-12-11 Thread Ben Crane
Hi, me again :) Right, I have a text file, i want to create a nice, attractive report, with the possible inclusion of graphics. No I'm not going to ask how to do it, but I would like to know, can perl create attractive, business-type reports that look professional? The data I want to c

Re: Format Reports

2001-06-22 Thread Me
> Hi > Is there a module out there that will help me > format data coming from an Access Database. > Win32::OLE looks a bit daunting though I'm > sure it will allow the typographic variety I'm > looking for. That's too vague. Basically, please explain your constraints. If there are none, then i

Format Reports

2001-06-22 Thread Clinton
Hi Is there a module out there that will help me format data coming from an Access Database. Win32::OLE looks a bit daunting though I'm sure it will allow the typographic variety I'm looking for. Regards Clinton