Re: serving PDF

2005-10-01 Thread Felix Ingram
I'd like to provide users with an option to generate latex source (or the pdf generated by the source).  Can django's templates be used for generating the source?  Would I have to change the mime type to ensure it gets served as plain text? Has anyone had any experience with calling external scrip

Re: serving PDF

2005-09-30 Thread Adrian Holovaty
On 9/30/05, David S. <[EMAIL PROTECTED]> wrote: > I am wondering how best to serve PDF files in Django. > > I am using ReportLab to generate a file. Hi David, I've just added this documentation: http://www.djangoproject.com/documentation/outputting_pdfs/ Adrian -- Adrian Holovaty holovaty.com

Re: serving PDF

2005-09-30 Thread Eric Walstad
I second that emotion. -E

Re: serving PDF

2005-09-30 Thread David S .
Adrian Holovaty gmail.com> writes: > > I've just added this documentation: > > http://www.djangoproject.com/documentation/outputting_pdfs/ > > Adrian I have to say that the documentation for this project is fantastic. It sets it apart from many other great tools for its clarity and the impac

Re: serving PDF

2005-09-30 Thread Adrian Holovaty
On 9/30/05, David S. <[EMAIL PROTECTED]> wrote: > I am wondering how best to serve PDF files in Django. > > I am using ReportLab to generate a file. It's entirely possible to serve PDF files dynamically using Django. I've done this in the past, generating NCAA tournament brackets dynamically for

Re: serving PDF

2005-09-30 Thread Robert Wittams
David S. wrote: > I am wondering how best to serve PDF files in Django. > > I am using ReportLab to generate a file. > > So should I name it and place it where the server can fetch it? > > Does the URL have to end in pdf for it to be handled by the browser? > > Can I configure the develo