aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix env testHEADmasterFilipp Lepalaan2017-01-271-1/+1
|
* Fix reference to subprocessFilipp Lepalaan2017-01-271-1/+1
|
* CleanupFilipp Lepalaan2017-01-271-4/+2
|
* Don't mess with stderrFilipp Lepalaan2017-01-271-7/+0
|
* Keep the ignore_404 flag in envFilipp Lepalaan2017-01-271-6/+9
| | | | To match behaviour in utils.py
* Make ContentNotFoundError optionalFilipp Lepalaan2017-01-273-45/+89
|
* Bump version from 3.0.0 to 3.1.0v3.1.0Kevin Etienne2016-08-312-1/+10
|
* Merge pull request #119 from brianjbuck/remove-current-app-kwargJonathan Liuti2016-08-244-3/+31
|\ | | | | Remove kwarg `current_app=None`.
| * Fix typo in comment.Brian Buck2016-08-241-1/+1
| |
| * Use the built-in Django tags for getting static and other media.Brian Buck2016-08-241-2/+3
| |
| * Configure settings in `tests/run.py` for Django 1.10+Brian Buck2016-08-241-0/+9
| |
| * Get correct Django versions for Python 3.3Brian Buck2016-08-231-0/+4
| |
| * Get correct Django versions for Python 3.5Brian Buck2016-08-231-0/+6
| |
| * Don't test Django 1.9/1.10 under Python 2.6.Brian Buck2016-08-231-1/+5
| | | | | | | | Fix missing quote mark on Python 3.5 exclusion.
| * Update Travis config to support Python 3.5 plus Django versions 1.9 and 1.10Brian Buck2016-08-231-0/+5
| |
| * Remove kwarg `current_app=None`. It does not appear to do anything and ↵Brian Buck2016-08-101-1/+0
|/ | | | breaks on Django 1.10
* Merge pull request #109 from luzfcb/luzfcb-patch-2Jonathan Liuti2016-05-181-3/+3
|\ | | | | fix download information badget on README.rst
| * fix download information badget in README.rstFábio C. Barrionuevo da Luz2016-04-111-3/+3
|/
* Merge pull request #104 from halfnibble/masterJonathan Liuti2016-03-043-40/+100
|\ | | | | Refactor to better support multiple pages.
| * Test rendered file deletion or persistence for both debug options.Josh2016-03-031-5/+22
| |
| * Add test for temporary file is closed/deleted.Josh2016-03-021-1/+25
| |
| * Pass filename as string instead of a list. Modify comment to explain.Josh2016-03-021-3/+3
| |
| * Remove extraneous try/except. Revert test run script changes, but set ↵Josh2016-02-262-40/+24
| | | | | | | | DEBUG=False.
| * Fix premature file delete on DEBUG=False. Modify test runner to check both ↵Josh2016-02-262-42/+64
| | | | | | | | DEBUG options.
| * Refactor to better support multiple pages.Josh2016-02-251-34/+47
|/
* Merge pull request #99 from pauricthelodger/bytes-errorMax Peterson2016-02-192-4/+18
|\ | | | | Fix unidecode bytes error on python2
| * Fix py26 bug and copypasta errorPadraic Harley2016-01-291-2/+2
| | | | | | | | Python 2.6 doesn't allow empty format arguments: ``{}`` must be ``{0}``. Also second test is ``inline`` rather than ``attachment``.
| * Assert once but get the filename from the ImportErrorPadraic Harley2016-01-291-8/+8
| | | | | | It was pointed out that instead setting the filename from the ``except/else`` makes what's being tested much clearer.
| * Fix unidecode bytes error on python2Padraic Harley2015-12-182-6/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `bytes` takes no additional args in python2 unlike it's taking an encoding in python3. Unidecode returns a unicode string in python3 and a bytestring in python2 which, I believe, was the main cause of error #71. Now, regardless of whether unidecode is included, all strings passing through http_quote will be encoded to ascii which should fix both issues. Also included is a fix for a failing test when unidecode is used. Unidecode's `_unidecode` function ignores characters greater than 0xefff, which '\xe2\x99\xa5' (the heart symbol) is. This caused users with unidecode to fail '.pdf' was produced rather than the expected '?.pdf'.
* | Merge pull request #102 from ryankask/issue-101-decouple-template-engineJonathan Liuti2016-02-173-10/+24
|\ \ | |/ |/| Remove dependency on Django template engine
| * Remove dependency on Django template engineRyan Kaskel2016-02-173-10/+24
|/
* Release v3.0.0v3.0.0Ian Foote2015-12-031-1/+1
|
* Merge pull request #98 from incuna/v3Ian Foote2015-12-031-3/+10
|\ | | | | Update changelog for v3.0.0 release
| * Update changelog for v3.0.0 releaseIan Foote2015-12-031-3/+10
|/
* Update CHANGELOG and version.v2.1.0Max Peterson2015-12-012-1/+11
|
* Merge pull request #95 from johnraz/extract-logicMax Peterson2015-12-014-100/+116
|\ | | | | Extract logic from views
| * Extracted logic from views - fixed tests.Jonathan Liuti2015-12-014-100/+116
| | | | | | | | | | | | | | | | | | | | | | The logic was coupled with the views which made things difficult to reuse if you wanted to use the pdf generation somehwere else than in a view. With this patch, the logic has been moved to `utils.py` and should be more easy to reuse. Tests have been adapted and made compatible with django > 1.7
* | Merge pull request #72 from ghost/masterMax Peterson2015-12-011-1/+1
|\ \ | | | | | | fix: Problem with filename
| * | fix #71Daniel Gatis Carrazzoni2015-01-051-1/+1
| | | | | | | | | fix https://github.com/incuna/django-wkhtmltopdf/issues/71
* | | Merge pull request #97 from powderflask/masterMax Peterson2015-12-011-1/+2
|\ \ \ | |_|/ |/| | Add catch IOError for fileno() call
| * | Update utils.pyJoseph2015-11-261-1/+1
| | |
| * | Update utils.pyJoseph2015-11-261-1/+2
| | |
* | | Merge pull request #94 from timb07/masterMax Peterson2015-11-301-0/+12
|\ \ \ | | | | | | | | Enable tests to run with Django >= 1.7 and silence warnings
| * | | Enable tests to run with Django >= 1.7 and silence warningsTim Bell2015-10-211-0/+12
| |/ /
* | | Merge pull request #89 from fanquake/patch-1Max Peterson2015-11-301-3/+3
|\ \ \ | |/ / |/| | [Doc] Fix links to point to correct website
| * | [Doc] Fix links to point to correct websiteMichael2015-09-171-3/+3
|/ /
* | Bump versionv2.0.3James Turnbull2015-07-312-1/+8
| | | | | | | | Release 2.0.3
* | README cleanupJames Turnbull2015-07-311-4/+4
| | | | | | | | Minor fixes
* | Removed version from debug messageJames Turnbull2015-07-311-1/+1
| |
* | Merge pull request #85 from powderflask/masterJames Turnbull2015-07-311-2/+7
|\ \ | | | | | | Skip absolute path substitution where STATIC or MEDIA URL are empty or None