aboutsummaryrefslogtreecommitdiffstats
path: root/wkhtmltopdf
diff options
context:
space:
mode:
authorCharlie Denton <charlie@meshy.co.uk>2012-02-24 09:15:52 +0000
committerCharlie Denton <charlie@meshy.co.uk>2012-02-24 09:15:52 +0000
commitbb3e0dbbf1cc60d5413acbf4b1eacc691cffc919 (patch)
treeeba49f6c759c34f2c973b37e3b604095d7838247 /wkhtmltopdf
parent923c044e5d77e841a694ded1b9940ea6a9620596 (diff)
downloaddjango-wkhtmltopdf-bb3e0dbbf1cc60d5413acbf4b1eacc691cffc919.tar.gz
django-wkhtmltopdf-bb3e0dbbf1cc60d5413acbf4b1eacc691cffc919.tar.bz2
django-wkhtmltopdf-bb3e0dbbf1cc60d5413acbf4b1eacc691cffc919.zip
Fix a couple of daft mistakes.
Diffstat (limited to 'wkhtmltopdf')
-rw-r--r--wkhtmltopdf/views.py13
1 files changed, 7 insertions, 6 deletions
diff --git a/wkhtmltopdf/views.py b/wkhtmltopdf/views.py
index 561faf0..c92b117 100644
--- a/wkhtmltopdf/views.py
+++ b/wkhtmltopdf/views.py
@@ -11,13 +11,13 @@ from wkhtmltopdf.utils import template_to_temp_file, wkhtmltopdf
class PDFResponse(HttpResponse):
def __init__(self, content, filename):
- super(PdfResponse, self).__init__(content, 'application/pdf')
+ super(PDFResponse, self).__init__(content, 'application/pdf')
self.__setitem__('Content-Disposition', 'attachment; filename=%s' % filename)
class PdfResponse(PDFResponse):
def __init__(self, content, filename):
- warning = '''PdfTemplateView is deprecated in favour of PDFTemplateView. It will be removed in version 1.'''
+ warning = '''PdfResponse is deprecated in favour of PDFResponse. It will be removed in version 1.'''
raise PendingDeprecationWarning(warning)
super(PdfResponse, self).__init__(content, filename)
@@ -33,10 +33,11 @@ class PDFTemplateView(TemplateView):
margin_top = 0
response = PDFResponse
- def get(self, request, context_instance=None, *args, **kwargs):
+ def get(self, request, context_instance=None, **kwargs):
if request.GET.get('as', '') == 'html':
- return super(PdfTemplateView, self).get(request, *args, **kwargs)
+ return super(PDFTemplateView, self).get(request, **kwargs)
+ # Save arguments onto class (would have been done in super-class)
self.context_instance = context_instance
page_path = template_to_temp_file(self.template_name, self.get_context_data(), self.context_instance)
@@ -53,7 +54,7 @@ class PDFTemplateView(TemplateView):
'margin_left': self.margin_left,
'margin_right': self.margin_right,
'margin_top': self.margin_top,
- 'orientation': self.self.orientation,
+ 'orientation': self.orientation,
}
tmp_files = []
if self.header_template:
@@ -66,7 +67,7 @@ class PDFTemplateView(TemplateView):
return kwargs
def get_context_data(self, **kwargs):
- context = super(PdfTemplateView, self).get_context_data(**kwargs)
+ context = super(PDFTemplateView, self).get_context_data(**kwargs)
match_full_url = compile(r'^https?://')
if not match_full_url.match(settings.STATIC_URL):