Updated API tests.
[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
11
12
13 authdata = {'authentication': DjangoAuth()}
14
15 #
16 # Library resources
17 #
18
19 import api.handlers.library_handlers as dh
20 library_resource = Resource(dh.LibraryHandler, **authdata)
21 document_resource = Resource(dh.DocumentHandler, **authdata)
22 document_text_resource = Resource(dh.DocumentTextHandler, **authdata)
23 document_dc_resource = Resource(dh.DocumentDublinCoreHandler, **authdata)
24
25 #
26 # Toolbar resources
27 #
28 import api.handlers.toolbar_handlers as th
29 toolbar_buttons = Resource(th.ToolbarHandler, **authdata)
30 scriptlets = Resource(th.ScriptletsHandler, **authdata)
31
32 __all__ = [
33     'library_resource',
34     'document_resource',
35     'document_text_resource',
36     'document_dc_resource',
37     'toolbar_buttons',
38     'scriptlets'
39 ]