From a00488022228b91f13ec5fb0de914babb0f1ea22 Mon Sep 17 00:00:00 2001 From: Sanj Date: Wed, 6 Jul 2011 05:39:53 +0530 Subject: [PATCH] try adding page breaks for pdf .. --- edgware/editor/views.py | 6 +++--- edgware/templates/view_article.html | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/edgware/editor/views.py b/edgware/editor/views.py index 1cdae11..2d45852 100644 --- a/edgware/editor/views.py +++ b/edgware/editor/views.py @@ -654,13 +654,13 @@ def article_pdf(request): pages = Page.objects.filter(article=article).order_by('page_no') m = article.get_print_multiplier(dpi) url = SITE_BASE + "/edit/view_article/%d/?m=%f" % (article.id, m) -# url_list = [url] - + url_list = [url] + ''' url_list = [] for p in pages: url = SITE_BASE + "/edit/view_article/%d/?m=%f&p=%d" % (article.id, m, p.id) url_list.append(url) - + ''' output_path = MEDIA_ROOT + "/pdf/" + article.name + "_" + str(article.current_revision()) + ".pdf" pdf_path = print_url_list(url_list, width_mm, height_mm, dpi, output_path) return HttpResponseRedirect(pdf_path.replace(MEDIA_ROOT, "/static")) diff --git a/edgware/templates/view_article.html b/edgware/templates/view_article.html index ac50d6d..630f3ca 100644 --- a/edgware/templates/view_article.html +++ b/edgware/templates/view_article.html @@ -21,6 +21,7 @@ p { height: {{ height|make_really_big:m }}; width: {{ width|make_really_big:m }}; font-size: {{ "12px"|make_really_big:m }} + page-break-after: always; } .box {