~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to docs/howto/outputting-pdf.txt

  • Committer: Bazaar Package Importer
  • Author(s): Chris Lamb
  • Date: 2009-07-29 11:26:28 UTC
  • mfrom: (1.1.8 upstream) (4.1.5 sid)
  • Revision ID: james.westby@ubuntu.com-20090729112628-pg09ino8sz0sj21t
Tags: 1.1-1
* New upstream release.
* Merge from experimental:
  - Ship FastCGI initscript and /etc/default file in python-django's examples
    directory (Closes: #538863)
  - Drop "05_10539-sphinx06-compatibility.diff"; it has been applied
    upstream.
  - Bump Standards-Version to 3.8.2.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
 
32
32
If that command doesn't raise any errors, the installation worked.
33
33
 
34
 
.. _user guide: http://www.reportlab.com/docs/userguide.pdf
 
34
.. _user guide: http://www.reportlab.com/docs/reportlab-userguide.pdf
35
35
 
36
36
Write your view
37
37
===============
139
139
    * PDFlib_ is another PDF-generation library that has Python bindings. To
140
140
      use it with Django, just use the same concepts explained in this article.
141
141
    * `Pisa HTML2PDF`_ is yet another PDF-generation library. Pisa ships with
142
 
      an example of how to integrate Pisa with Django.      
 
142
      an example of how to integrate Pisa with Django.
143
143
    * HTMLdoc_ is a command-line script that can convert HTML to PDF. It
144
144
      doesn't have a Python interface, but you can escape out to the shell
145
145
      using ``system`` or ``popen`` and retrieve the output in Python.