diff options
-rw-r--r-- | CHANGELOG.md | 15 | ||||
l---------[-rw-r--r--] | README | 22 | ||||
-rw-r--r-- | README.md | 21 |
3 files changed, 37 insertions, 21 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b2b7541 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +Changelog for django-wkhtmltopdf +================================ + + +Current Development +------------------- + +* Added option for orientation. Defaults to 'portrait', can be 'landscape'. +* Deprecated PdfTemplateView in preference of PDFTemplateView. +* Deprecated PdfResponse in preference of PDFResponse. +* Made PDFResponse more extensible. + + +0.1.1 +----- @@ -1,21 +1 @@ -Converts html to PDF -==================== - -Provides a thin wrapper to the wkhtmltopdf binary from http://code.google.com/p/wkhtmltopdf/ - -REQUIREMENTS -============ - -Install the binary http://code.google.com/p/wkhtmltopdf/ - This may require libfontconfig (on Ububtu: sudo aptitude install libfontconfig) - -INSTALLATION -============ - -Add 'wkhtmltopdf' to INSTALLED_APPS. - -By default it will execute the first wkhtmltopdf command found on your PATH. -You can set WKHTMLTOPDF_CMD to a specific execuatable: - -e.g. - WKHTMLTOPDF_CMD = '/path/to/my/wkhtmltopdf' +README.md
\ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..7ff49df --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +Converts html to PDF +==================== + +Provides a thin wrapper to the wkhtmltopdf binary from http://code.google.com/p/wkhtmltopdf/ + +REQUIREMENTS +============ + +Install the binary http://code.google.com/p/wkhtmltopdf/ + This may require libfontconfig (on Ububtu: sudo aptitude install libfontconfig) + +INSTALLATION +============ + +Add 'wkhtmltopdf' to INSTALLED_APPS. + +By default it will execute the first wkhtmltopdf command found on your PATH. +You can set WKHTMLTOPDF_CMD to a specific execuatable: + +e.g. + WKHTMLTOPDF_CMD = '/path/to/my/wkhtmltopdf' |