Merge branch 'master' of stigma.nowoczesnapolska.org.pl:platforma
authorzuber <marek@stepniowski.com>
Thu, 22 Oct 2009 15:07:03 +0000 (17:07 +0200)
committerzuber <marek@stepniowski.com>
Thu, 22 Oct 2009 15:07:03 +0000 (17:07 +0200)
1  2 
apps/api/handlers/library_handlers.py

@@@ -328,7 -328,7 +328,7 @@@ class DocumentHTMLHandler(BaseHandler)
                  return error
  
              return librarian.html.transform(document.data('xml'), is_file=False, \
-                 parse_dublincore=False, stylesheet=stylesheet,\
+                 parse_dublincore=False, stylesheet='full',\
                  options={
                      "with-paths": 'boolean(1)',                    
                  })
          except (EntryNotFound, RevisionNotFound), e:
              return response.EntityNotFound().django_response({
                  'reason': 'not-found', 'message': e.message})
+         except librarian.ValidationError, e:
+             return response.InternalError().django_response({
+                 'reason': 'xml-non-valid', 'message': e.message })
          except librarian.ParseError, e:
              return response.InternalError().django_response({
                  'reason': 'xml-parse-error', 'message': e.message })
@@@ -385,7 -388,7 +388,7 @@@ class DocumentGalleryHandler(BaseHandle
                      
                  gallery['pages'].append( quote(url.encode('utf-8')) )
  
 -#            gallery['pages'].sort()
 +            gallery['pages'].sort()
              galleries.append(gallery)
  
          return galleries