Nie wymagamy poprawnego DublinCore przy renderowaniu do HTML.
authorzuber <marek@stepniowski.com>
Wed, 30 Sep 2009 11:00:42 +0000 (13:00 +0200)
committerzuber <marek@stepniowski.com>
Wed, 30 Sep 2009 11:00:42 +0000 (13:00 +0200)
apps/api/handlers/library_handlers.py

index 4d23478..0385c0f 100644 (file)
@@ -227,7 +227,7 @@ class DocumentHTMLHandler(BaseHandler):
                 return response.BadRequest().django_response({'reason': 'name-mismatch',
                     'message': 'Provided revision refers, to document "%s", but provided "%s"' % (document.id, docid) })
 
-            return librarian.html.transform(document.data('xml'), is_file=False)
+            return librarian.html.transform(document.data('xml'), is_file=False, parse_dublincore=False)
         except (EntryNotFound, RevisionNotFound), e:
             return response.EntityNotFound().django_response({
                 'exception': type(e), 'message': e.message})