Fix
[redakcja.git] / apps / api / urls.py
1 __author__="lreqc"
2 __date__ ="$2009-09-17 16:16:54$"
3
4 from django.conf.urls.defaults import *
5 from api.resources import *
6
7 FORMAT = r"\.(?P<emitter_format>xml|json|yaml)"
8 DOC = r'(?P<docid>[^/]+)'
9 # REVISION = r'(?P<revision>latest|[0-9a-f]{40})'
10
11 def urlpath(*args, **kwargs):
12     format = kwargs.get('format', True)
13     return r'^' + (r'/'.join(args)) + (FORMAT if format else '') + '$'
14
15 urlpatterns = patterns('',
16 #    url(r'^hello$', hello_resource, {'emitter_format': 'json'}),
17 #    url(r'^hello\.(?P<emitter_format>.+)$', hello_resource),
18
19     # Toolbar
20     url(r'^toolbar/buttons$', toolbar_buttons, {'emitter_format': 'json'}),    
21     url(r'^toolbar/scriptlets$', scriptlets, {'emitter_format': 'json'}),
22
23     # Pull requests
24     url(r"^pull-requests$", pullrequest_collection,
25         {'emitter_format': 'json'} ),
26         
27     url(r"^pull-requests/(?P<prq_id>\d+)$", pullrequest_rsrc,
28         {'emitter_format': 'json'}, name="pullrequest_view" ),    
29     
30     # Documents
31     url(r'^documents$', library_resource,
32         {'emitter_format': 'json'}, name="document_list_view"),
33
34     url(urlpath(r'documents'), library_resource,
35         name="document_list_view_withformat"),
36         
37     #url(urlpath(r'documents', DOC),
38     #    document_resource, name="document_view_withformat"),
39
40     url(urlpath(r'documents', DOC, format=False),
41         document_resource, {'emitter_format': 'json'},
42         name="document_view"),
43
44     url(urlpath(r'documents', DOC, 'gallery', format=False),
45         document_gallery, {'emitter_format': 'json'},
46         name="docgallery_view"),
47
48     # XML    
49     url(urlpath(r'documents', DOC, 'text', format=False),
50         document_text_resource, {'emitter_format': 'rawxml'},
51         name="doctext_view"),
52
53     # HTML
54     url(urlpath(r'documents', DOC, 'html', format=False),
55         document_html_resource, {'emitter_format': 'rawhtml'},
56         name="dochtml_view"),
57
58     # DC
59     #url(urlpath(r'documents', DOC, 'dc'),
60     #    document_dc_resource,
61     #    name="docdc_view_withformat"),
62
63     url(urlpath(r'documents', DOC, 'dc', format=False),
64         document_dc_resource, {'emitter_format': 'json'},
65         name="docdc_view"),
66
67     # MERGE
68     url(urlpath(r'documents', DOC, 'revision', format=False),
69         document_merge, {'emitter_format': 'json'}, name="docmerge_view")
70
71 #    url(r'^documents/(?P<docid>[^/]+)/parts$',
72 #        document_resource, {'emitter_format': 'json'},
73 #        name="docparts_view"),
74         
75   #  url(r'^posts/(?P<post_slug>[^/]+)/$', blogpost_resource),
76   #  url(r'^other/(?P<username>[^/]+)/(?P<data>.+)/$', arbitrary_resource),
77 )
78