Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | Patch python3 / mod_wsgi incompatibility on sys.stderrr.fileno() call | Joseph | 2015-07-28 | 1 | -1/+6 | |
| | | | | | | | | | | | | | | | Root cause of this issue is in python3 / mod_wsgi. See: https://github.com/GrahamDumpleton/mod_wsgi/issues/85 This patch detects if there is something screwy with fileno() and simply skips setting stderr if there is to avoid the AttributeError that occurs otherwise. Pull https://github.com/incuna/django-wkhtmltopdf/pull/40 fixed this same issue when it arose for python 2.7, but the nature of the issue seems to have shifted, making it trickier to detect that the fileno() method cannot be called. | |||||
| * | | Skip absolute path substitution where STATIC or MEDIA URL is not set | Joseph | 2015-07-16 | 1 | -1/+1 | |
| |/ | | | | | | | STATIC_URL or MEDIA_URL settings default to '' and None These default values cause the url match and replace algorithm to insert the *_ROOT setting in EVERY quoted string!! | |||||
* | | Merge pull request #83 from DeadWisdom/master | James Turnbull | 2015-07-31 | 1 | -1/+2 | |
|\ \ | | | | | | | WKHTMLTOPDF_CMD needs to be properly split by the shlex module | |||||
| * | | WKHTMLTOPDF_CMD is properly split by the shlex module split() which properly ↵ | Brantley Harris | 2015-06-22 | 1 | -1/+2 | |
| |/ | | | | | | | accounts for quotes and escapes. | |||||
* | | Merge pull request #77 from dduong42/patch-2 | James Turnbull | 2015-07-31 | 1 | -0/+5 | |
|\ \ | | | | | | | Add documentation link to the README | |||||
| * | | Add documentation link to the README | Daniel Duong | 2015-03-02 | 1 | -0/+5 | |
| |/ | ||||||
* | | Merge pull request #87 from incuna/fix_tests | Charlie Denton | 2015-07-31 | 1 | -3/+3 | |
|\ \ | |/ |/| | Update wkhtmltopdf deb link | |||||
| * | Added xfonts-75dpi | James Turnbull | 2015-07-31 | 1 | -1/+1 | |
| | | ||||||
| * | Update wkhtmltopdf deb link | James Turnbull | 2015-07-31 | 1 | -2/+2 | |
|/ | ||||||
* | Merge pull request #65 from ashkulz/patch-1 | Maciek Lenc | 2014-11-11 | 1 | -19/+1 | |
|\ | | | | | update installation instructions to use new website | |||||
| * | update installation instructions to use new website | Ashish Kulkarni | 2014-11-11 | 1 | -19/+1 | |
|/ | ||||||
* | Merge pull request #63 from dduong42/patch-1 | Charlie Denton | 2014-10-27 | 1 | -1/+1 | |
|\ | | | | | Change the wkhtmltopdf url | |||||
| * | Change the wkhtmltopdf url | Daniel Duong | 2014-10-27 | 1 | -1/+1 | |
|/ | ||||||
* | Merge branch 'master' of github.com:incuna/django-wkhtmltopdf | Matt Lenc | 2014-09-01 | 4 | -17/+47 | |
|\ | ||||||
| * | Merge pull request #59 from michelts/master | Maciek Lenc | 2014-09-01 | 2 | -10/+40 | |
| |\ | | | | | | | Fix encoding issues in PDFTemplateResponse with python 2.x | |||||
| | * | Rely only smart_text once django 1.4 also supports it. | Michel Sabchuk | 2014-09-01 | 1 | -5/+1 | |
| | | | | | | | | | | | | | | | As well pointed by @mattack108, django 1.4 also haves smart_text. We don't have to do that import. | |||||
| | * | Being more explicit about the reason for smart_unicode. | Michel Sabchuk | 2014-09-01 | 1 | -0/+1 | |
| | | | ||||||
| | * | Makes tests.py lines 80 columns max. | Michel Sabchuk | 2014-09-01 | 1 | -4/+10 | |
| | | | ||||||
| | * | Replace smart_str with smart_text/unicode for py2.x compat. | Michel Sabchuk | 2014-09-01 | 1 | -2/+5 | |
| | | | ||||||
| | * | Makes unicode content views testing fails too. | Michel Sabchuk | 2014-09-01 | 1 | -5/+18 | |
| | | | | | | | | | | | | | | | | | | The view didn't define any title in context and the templates itself doen't have unicode content. I forced it making a view with a unicode title in context. | |||||
| | * | Add failing test of unicode content. | Michel Sabchuk | 2014-09-01 | 1 | -0/+11 | |
| |/ | ||||||
| * | Merge pull request #58 from incuna/fix-failing-tests | Charlie Denton | 2014-07-16 | 2 | -7/+7 | |
| |\ | | | | | | | Fix failing tests | |||||
| | * | Superuser privilege - Travis is picky! | Matt Lenc | 2014-07-16 | 1 | -1/+1 | |
| | | | ||||||
| | * | Check for wkhtmltopdf after it was installed :D | Matt Lenc | 2014-07-16 | 1 | -1/+1 | |
| | | | ||||||
| | * | Use precompiled library not source one | Matt Lenc | 2014-07-16 | 1 | -5/+5 | |
| | | | ||||||
| | * | Fix wkhtmltox for Travis | Matt Lenc | 2014-07-16 | 1 | -3/+3 | |
| | | | ||||||
| | * | Show Travis test status against master branch only | Matt Lenc | 2014-07-16 | 1 | -1/+1 | |
| |/ | ||||||
* / | Bump to v2.0.2v2.0.2 | Matt Lenc | 2014-09-01 | 2 | -1/+6 | |
|/ | ||||||
* | Bump to 2.0.1v2.0.1 | Matt Lenc | 2014-07-03 | 2 | -1/+6 | |
| | ||||||
* | Merge pull request #54 from Madec/master | Maciek Lenc | 2014-07-03 | 2 | -8/+3 | |
|\ | | | | | Removed mimetype from response for Django 1.7 compatibility. | |||||
| * | Aligned test to code update. | Paolo Melchiorre | 2014-07-03 | 1 | -4/+1 | |
| | | ||||||
| * | Removed mimetype from response for Django 1.7 compatibility. See ↵ | Paolo Melchiorre | 2014-07-02 | 1 | -4/+2 | |
|/ | | | | https://docs.djangoproject.com/en/dev/internals/deprecation/#deprecation-removed-in-1-7 | |||||
* | Fix link for RST | Matt Lenc | 2014-06-19 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #50 from incuna/improve-readme-syntaxv2.0.0 | Charlie Denton | 2014-06-19 | 1 | -12/+21 | |
|\ | | | | | Fix readme.rst for Pypi | |||||
| * | Fix links in README & add some badges | Matt Lenc | 2014-06-19 | 1 | -12/+21 | |
|/ | ||||||
* | Merge pull request #48 from incuna/python3 | Charlie Denton | 2014-06-19 | 17 | -95/+152 | |
|\ | | | | | Add Python3 support | |||||
| * | Bring back the test assert for title in content | Matt Lenc | 2014-06-19 | 2 | -3/+5 | |
| | | ||||||
| * | Range Django versions | Matt Lenc | 2014-06-18 | 1 | -5/+5 | |
| | | ||||||
| * | First try py3k then fall back to python2 | Matt Lenc | 2014-06-18 | 2 | -6/+6 | |
| | | ||||||
| * | Add universal wheel distribution file | Matt Lenc | 2014-06-18 | 1 | -0/+2 | |
| | | ||||||
| * | Correct Python versions in Readme | Matt Lenc | 2014-06-18 | 1 | -1/+1 | |
| | | ||||||
| * | Law is tricky, kids | Matt Lenc | 2014-06-18 | 1 | -1/+1 | |
| | | ||||||
| * | Add apt-get update for Travis | Matt Lenc | 2014-06-18 | 1 | -0/+1 | |
| | | ||||||
| * | Move pwd to before_install section | Matt Lenc | 2014-06-18 | 1 | -6/+5 | |
| | | | | | | | | C'mon Travis! | |||||
| * | Double quotes for install cmds | Matt Lenc | 2014-06-18 | 1 | -9/+9 | |
| | | ||||||
| * | Travis does not like before_install? | Matt Lenc | 2014-06-18 | 1 | -2/+2 | |
| | | ||||||
| * | [ci skip] Update changelog | Matt Lenc | 2014-06-18 | 1 | -1/+1 | |
| | | ||||||
| * | Move the wkhtmltopdf install process to .travis | Matt Lenc | 2014-06-18 | 2 | -14/+11 | |
| | | ||||||
| * | Debug part II | Matt Lenc | 2014-06-18 | 1 | -1/+1 | |
| | | ||||||
| * | Debug | Matt Lenc | 2014-06-18 | 1 | -1/+1 | |
| | |