- url(r'^documents/(?P<docid>[^/]+)/dc$',
- document_resource, {'emitter_format': 'json'},
+ url(urlpath(r'documents', DOC, 'html', REVISION, format=False),
+ document_html_resource, {'emitter_format': 'rawhtml'},
+ name="dochtml_view"),
+
+ url(urlpath(r'documents', DOC, 'dc', REVISION),
+ document_dc_resource,
+ name="docdc_view_withformat"),
+
+ url(urlpath(r'documents', DOC, 'dc', REVISION, format=False),
+ document_dc_resource, {'emitter_format': 'json'},