Merge branch 'master' of stigma:platforma
[redakcja.git] / apps / api / resources.py
1 # -*- encoding: utf-8 -*-
2
3 __author__= "Ɓukasz Rekucki"
4 __date__ = "$2009-09-25 15:53:00$"
5 __doc__ = "Module documentation."
6
7 from piston.resource import Resource
8 from api.utils import DjangoAuth
9
10 authdata = {'authentication': DjangoAuth()}
11
12 #
13 # Library resources
14 #
15
16 import api.handlers.library_handlers as dh
17 from api.handlers.text_handler import DocumentTextHandler
18
19 library_resource = Resource(dh.LibraryHandler, **authdata)
20 document_resource = Resource(dh.DocumentHandler, **authdata)
21 document_text_resource = Resource(DocumentTextHandler, **authdata)
22 document_html_resource = Resource(dh.DocumentHTMLHandler, **authdata)
23 # document_dc_resource = Resource(dh.DocumentDublinCoreHandler, **authdata)
24 document_gallery = Resource(dh.DocumentGalleryHandler, **authdata)
25 document_merge = Resource(dh.MergeHandler, **authdata)
26
27 import api.handlers.manage_handlers as mh
28
29 pullrequest_collection = Resource(mh.PullRequestListHandler, **authdata)
30 pullrequest_rsrc = Resource(mh.PullRequestHandler, **authdata)
31
32 #
33 # Toolbar resources
34 #
35 import api.handlers.toolbar_handlers as th
36 toolbar_buttons = Resource(th.ToolbarHandler, **authdata)
37 scriptlets = Resource(th.ScriptletsHandler, **authdata)
38
39
40
41 __all__ = [
42     'library_resource',
43     'document_resource',
44     'document_text_resource',
45     'document_html_resource',
46 #    'document_dc_resource',
47     'document_gallery',
48     'document_merge',
49     'toolbar_buttons',
50     'scriptlets',
51     'pullrequest_collection',
52     'pullrequest_rsrc',
53 ]