From: Lukasz Date: Tue, 27 Oct 2009 11:18:35 +0000 (-0400) Subject: Fixed the print view. X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/82b5933a517aaf239dbb577190e067f1d703bbc3?hp=--cc Fixed the print view. --- 82b5933a517aaf239dbb577190e067f1d703bbc3 diff --git a/apps/api/handlers/library_handlers.py b/apps/api/handlers/library_handlers.py index cbd3a0a9..46038771 100755 --- a/apps/api/handlers/library_handlers.py +++ b/apps/api/handlers/library_handlers.py @@ -305,7 +305,7 @@ class DocumentHTMLHandler(BaseHandler): @validate_form(forms.DocumentRetrieveForm, 'GET') @hglibrary - def read(self, request, form, docid, lib, stylesheet='partial'): + def read(self, request, form, docid, lib, stylesheet='full'): """Read document as html text""" try: revision = form.cleaned_data['revision'] @@ -328,7 +328,7 @@ class DocumentHTMLHandler(BaseHandler): return error return librarian.html.transform(document.data('xml'), is_file=False, \ - parse_dublincore=False, stylesheet='full',\ + parse_dublincore=False, stylesheet=stylesheet,\ options={ "with-paths": 'boolean(1)', })