Changeset 2553
- Timestamp:
- 03/23/06 20:28:47 (3 years ago)
- Files:
-
- django/trunk/docs/outputting_pdf.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/outputting_pdf.txt
r2334 r2553 118 118 response['Content-Disposition'] = 'attachment; filename=somefilename.pdf' 119 119 120 buffer = String ()120 buffer = StringIO() 121 121 122 122 # Create the PDF object, using the StringIO object as its "file."
