aboutsummaryrefslogtreecommitdiffstats
path: root/wkhtmltopdf
Commit message (Collapse)AuthorAgeFilesLines
* Update test reqs for Django with py3k supportMatt Lenc2014-06-181-1/+1
| | | | | In near future we should support moar Djangos (and using Travis for this).
* Add support for Python3Matt Lenc2014-06-183-30/+43
|
* increase version of django-wkhtmltopdfFabio C. Barrionuevo da Luz2014-03-111-1/+1
|
* Bump version to 1.2.2v1.2.2mattack1082013-09-201-1/+1
|
* Add SECRET_KEY to settingsmattack1082013-09-201-0/+2
|
* Fix tests for Travis by obtaining the WKHTMLTOPDF_CMD from env vars.mattack1082013-09-201-2/+3
|
* Bump version to 1.2.1v1.2.1George Hickman2013-09-201-1/+1
|
* Test sys.stderr to ensure it hasn't been overriddenGreg McGuire2013-08-021-5/+8
|
* Bumped version to 1.2v1.2mattack1082013-01-171-1/+1
|
* Merge branch 'master' of github.com:incuna/django-wkhtmltopdf into travis-setupmattack1082013-01-165-225/+211
|\
| * Remove unwanted settings vars from test projectmattack1082013-01-151-4/+0
| |
| * DRY on testsmattack1082013-01-151-140/+43
| |
| * Fix tests and add new ones for show_content_in_browser featuremattack1082013-01-153-176/+264
| |
| * Move make_absolute_paths to utils so it can be used in testsmattack1082013-01-152-37/+39
| |
| * Remove old unused arg from PDFTemplateResponse classmattack1082013-01-151-2/+1
| |
| * Remove double quotes from filename as it's done by content_disposition_filenamemattack1082013-01-151-3/+2
| |
| * Send good headers, in correct formatmattack1082013-01-151-2/+3
| |
| * PEP8 all the things!mattack1082013-01-151-12/+10
| |
* | Move requirements file to test project, update travis.ymlmattack1082013-01-151-0/+1
|/
* Add support for rendering PDF file in the browsermattack1082013-01-151-7/+16
|
* Merge pull request #21 from shadowrock/fix-extra-slashesJames Turnbull2013-01-101-1/+2
|\ | | | | Removed extra slashes so the local file paths work in Windows.
| * Removed extra slashes so the local file paths work in Windows.Matti Varjokallio2012-11-291-1/+2
| |
* | Remove duplicates when replacing file pathsZach Gohr2013-01-091-2/+7
| |
* | Fix for case when WKHTMLTOPDF_CMD consists of many parts.Matti Varjokallio2012-12-091-1/+1
|/
* Bumped versionv1.1James Turnbull2012-11-141-1/+1
|
* Tidy up a bitmlen1082012-11-141-5/+9
|
* Fix paths for STATIC media filesmlen1082012-11-141-10/+27
|
* Match single/double quotes.mlen1082012-11-131-1/+1
|
* Use MEDIA_URL instead of hard-coded string.mlen1082012-11-131-1/+1
|
* Fix images path in PDFsmlen1082012-11-132-92/+16
|
* Bump version to v1.0.1v1.0.1Marc Tamlyn2012-08-311-1/+1
|
* Add a test for unicode.Marc Tamlyn2012-08-312-0/+41
| | | | This isn't great but better than nothing...
* Pass --encoding utf8 to wkhtmltopdf to render Unicode characters to PDF.Simon Law2012-08-301-0/+3
| | | | | | Since we PDFTemplateResponse renders templates, and Django uses UTF-8 to do the rendering, we can safely assume that the result is in UTF-8.
* Merge with incunaSimon Law2012-08-2313-295/+39
|\
| * Bump to full 1.0 version.v1.0Marc Tamlyn2012-08-061-1/+1
| |
| * Update version to rc2.Marc Tamlyn2012-08-031-1/+1
| |
| * Move tests into wkhtmltopdf.tests.*Marc Tamlyn2012-08-036-3/+28
| | | | | | | | Fixes #11.
| * .html default suffix for render_to_temporary_fileMarc Tamlyn2012-07-271-1/+1
| | | | | | | | | | It's expected by wkhtmltopdf that the files should end in .html, so it may as well be the default.
| * Update version to 1.0-rc1.v1.0-rc1Marc Tamlyn2012-07-271-2/+1
| |
| * Move the testproject out of the main folder.Marc Tamlyn2012-07-277-193/+0
| | | | | | | | Also exclude it from distributions using the MANIFEST.
| * Update tests to remove deprecateded functions.Marc Tamlyn2012-07-271-20/+16
| |
| * Tidy up imports.Marc Tamlyn2012-07-271-4/+1
| |
| * Remove more deprecated stuff and tests for them.Marc Tamlyn2012-07-272-41/+0
| |
| * Don't override builtins by importing.Marc Tamlyn2012-07-271-2/+2
| |
| * Remove deprecated methods/views.Marc Tamlyn2012-07-271-39/+0
| |
| * Fix typo in docstring.Charlie Denton2012-07-271-1/+1
| |
* | Fix encoding issues ini PDFTemplateResponse.render_to_temporary_file()Simon Law2012-08-231-1/+2
|/
* Python 2.6 compatibility fixes.Simon Law2012-07-262-11/+11
| | | | Implicit position arguments for str.format() are a 2.7ism.
* settings.WKHTMLTOPDF_DEBUG defaults to settings.DEBUG.Simon Law2012-07-251-1/+1
|
* PDFTemplateResponse.convert_to_pdf() calls wkhtmltopdf.Simon Law2012-07-251-5/+18
| | | | Method to make it easier to override spawning of the wkhtmltopdf subprocess.