Re: [Catalyst] Which C::View::PDF should I use?

2010-03-14 Thread Matthias Dietrich
Hi, Am 08.03.2010 um 09:27 schrieb Octavian Rasnita: On 8/03/10 at 8:41 AM +0200, Octavian Rasnita orasn...@gmail.com wrote: Do you know if there is a way of creating PDFs in the same way the HTML templates are created, by just putting a variable name in a certain place and render that

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-14 Thread Steve Kleiman
I've been using iText (http://itextpdf.com/) after using PDF::API2 for years. API2 hasn't grown and even once you know it, it's tricky to use. The community is inactive. iText is Java and the community is vibrant. I'll have my Catalyst app assemble a whole bunch of data and ship it to iText as

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-08 Thread Octavian Rasnita
Hi Charlie, From: Charlie Garrison garri...@zeta.org.au Good evening, On 8/03/10 at 8:41 AM +0200, Octavian Rasnita orasn...@gmail.com wrote: Do you know if there is a way of creating PDFs in the same way the HTML templates are created, by just putting a variable name in a certain place and

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-08 Thread Charlie Garrison
Good evening, On 8/03/10 at 10:27 AM +0200, Octavian Rasnita orasn...@gmail.com wrote: Unfortunately I don't know if it can help me, because I am blind and I can't see if the manually configured positions are displayed correctly. That's why I was hoping that there is a solution that works

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-07 Thread Chris
Hi Charlie, Thanks for that. I've looked at various html 2 pdf tools (I used html2ps for a project about 10 years ago). But lack of even basic CSS support makes the them useless for creating pretty PDFs. In reality, this project doesn't really need PDF output (HTML would work fine), but

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-07 Thread Charlie Garrison
Good morning, On 8/03/10 at 9:06 AM +1100, Chris hutchinson.ch...@gmail.com wrote: I've found that a simple way to put values into a PDF is to use PDF forms - position the form fields in the appropriate location in the template doc, and to generate the output update the form fields and write a

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-07 Thread Octavian Rasnita
To: The elegant MVC web framework catalyst@lists.scsys.co.uk Hi Charlie, Thanks for that. I've looked at various html 2 pdf tools (I used html2ps for a project about 10 years ago). But lack of even basic CSS support makes the them useless for creating pretty PDFs. In reality, this project

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-07 Thread Charlie Garrison
Good evening, On 8/03/10 at 8:41 AM +0200, Octavian Rasnita orasn...@gmail.com wrote: Do you know if there is a way of creating PDFs in the same way the HTML templates are created, by just putting a variable name in a certain place and render that pdf file by replacing that variable with

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-06 Thread Bill Moseley
On Friday, March 5, 2010, Charlie Garrison garri...@zeta.org.au wrote: Good afternoon, Thanks, that was a good intro. It looks like I could almost get away with a simple LaTeX table for the form. But I can see myself getting bogged down by the details; I think latex is going to be too hard

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-06 Thread Charlie Garrison
Good morning, On 6/03/10 at 6:58 AM -0800, Bill Moseley mose...@hank.org wrote: Thanks, that was a good intro. It looks like I could almost get away with a simple LaTeX table for the form. But I can see myself getting bogged down by the details; I think latex is going to be too hard for this

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-05 Thread Tomas Doran
On 5 Mar 2010, at 05:38, Charlie Garrison wrote: I'm not looking to create PDFs from code, I'll be using an existing PDF and replacing values. And both C::V::P::Reuse C::V::P::API2 seem to handle that in effectively the same way. Yeah, they're both basically just wrappers.. PDF::Reuse

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-05 Thread Felix Antonius Wilhelm Ostmann
We use simple View::TT and then a Filter: [%- USE Latex; FILTER latex(pdf) -%] Its perfekt! Tomas Doran schrieb: On 5 Mar 2010, at 05:38, Charlie Garrison wrote: I'm not looking to create PDFs from code, I'll be using an existing PDF and replacing values. And both C::V::P::Reuse

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-05 Thread Charlie Garrison
Good evening, On 5/03/10 at 11:15 AM +0100, Felix Antonius Wilhelm Ostmann ostm...@websuche.de wrote: We use simple View::TT and then a Filter: [%- USE Latex; FILTER latex(pdf) -%] Its perfekt! I like that conceptually, but just to be clear, that is latex code being converted to PDF,

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-05 Thread Felix Antonius Wilhelm Ostmann
Charlie Garrison schrieb: I like that conceptually, but just to be clear, that is latex code being converted to PDF, correct? Yes, you must write latex ... this do always my coworkers for me ;) -- Mit freundlichen Grüßen Felix Antonius Wilhelm Ostmann

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-05 Thread Charlie Garrison
Good afternoon, On 5/03/10 at 1:32 PM -0800, S.A. Kiehn keenli...@ymail.com wrote: I am not a very experienced developer, but I was able to learn and use PDF::Reuse. I made a PDF template (11 page report) that I needed to intersperse data throughout. Using Catalyst::View::PDF::Reuse I was

Re: [Catalyst] Which C::View::PDF should I use?

2010-03-05 Thread Charlie Garrison
Good afternoon, On 6/03/10 at 2:40 PM +1100, Kieren Diment dim...@gmail.com wrote: Depends how specific your layout requirements are and the kind of document you want to produce. LaTeX is pretty straightforward really, but you don't really have the fine grained control that other document

[Catalyst] Which C::View::PDF should I use?

2010-03-04 Thread Charlie Garrison
Good afternoon, Both of these seem to be almost identical. Catalyst::View::PDF::Reuse Catalyst::View::PDF::API2 Is one better to use than the other? C::V::PDF::API2 has been updated more recently, but other than that I can't see why I would choose one over the other. Or is really a