__date__ ="$2009-09-17 16:16:54$"
from django.conf.urls.defaults import *
-
from api.resources import *
FORMAT = r"\.(?P<emitter_format>xml|json|yaml)"
# url(r'^hello$', hello_resource, {'emitter_format': 'json'}),
# url(r'^hello\.(?P<emitter_format>.+)$', hello_resource),
+ # HTML Renderer service
+ url(r'^render$', 'api.views.render'),
+
# Toolbar
- url(r'^toolbar/buttons$', toolbar_buttons, {'emitter_format': 'json'}),
- url(r'^toolbar/scriptlets$', scriptlets, {'emitter_format': 'json'}),
+ url(r'^toolbar/buttons$', toolbar_buttons, {'emitter_format': 'json'},
+ name="toolbar_buttons"
+ ),
+
+ url(r'^toolbar/scriptlets$', scriptlets, {'emitter_format': 'json'},
+ name="toolbar_scriptlets"
+ ),
# Pull requests
url(r"^pull-requests$", pullrequest_collection,
# XML
url(urlpath(r'documents', DOC, 'text', format=False),
- document_text_resource, {'emitter_format': 'rawxml'},
+ document_text_resource, {'emitter_format': 'raw'},
name="doctext_view"),
# HTML
url(urlpath(r'documents', DOC, 'html', format=False),
- document_html_resource, {'emitter_format': 'rawhtml'},
+ document_html_resource, {'emitter_format': 'raw'},
name="dochtml_view"),
# DC