source: indico/indico/htdocs/adminServices.py @ 31e017

hello-world-walkthroughipv6v0.98-seriesv0.98.2v0.98.3v0.99v1.0v1.1
Last change on this file since 31e017 was 31e017, checked in by Jose Benito <jose.benito.gonzalez@…>, 14 months ago

[REF] Replaced session2ical and contrib2ical with httpapi

  • Property mode set to 100644
File size: 3.7 KB
Line 
1# -*- coding: utf-8 -*-
2##
3##
4## This file is part of CDS Indico.
5## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 CERN.
6##
7## CDS Indico is free software; you can redistribute it and/or
8## modify it under the terms of the GNU General Public License as
9## published by the Free Software Foundation; either version 2 of the
10## License, or (at your option) any later version.
11##
12## CDS Indico is distributed in the hope that it will be useful, but
13## WITHOUT ANY WARRANTY; without even the implied warranty of
14## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15## General Public License for more details.
16##
17## You should have received a copy of the GNU General Public License
18## along with CDS Indico; if not, write to the Free Software Foundation, Inc.,
19## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
20
21import MaKaC.webinterface.rh.services as services
22import MaKaC.webinterface.rh.api as api
23
24def webcast(req, **params):
25    return services.RHWebcast(req).process(params)
26
27def webcastArchive(req, **params):
28    return services.RHWebcastArchive(req).process(params)
29
30def webcastSetup(req, **params):
31    return services.RHWebcastSetup(req).process(params)
32
33def webcastAddWebcast(req, **params):
34    return services.RHWebcastAddWebcast(req).process(params)
35
36def webcastRemoveWebcast(req, **params):
37    return services.RHWebcastRemoveWebcast(req).process(params)
38
39def webcastArchiveWebcast(req, **params):
40    return services.RHWebcastArchiveWebcast(req).process(params)
41
42def webcastUnArchiveWebcast(req, **params):
43    return services.RHWebcastUnArchiveWebcast(req).process(params)
44
45def webcastAddChannel(req, **params):
46    return services.RHWebcastAddChannel(req).process(params)
47
48def webcastModifyChannel(req, **params):
49    return services.RHWebcastModifyChannel(req).process(params)
50
51def webcastRemoveChannel(req, **params):
52    return services.RHWebcastRemoveChannel(req).process(params)
53
54def webcastSwitchChannel(req, **params):
55    return services.RHWebcastSwitchChannel(req).process(params)
56
57def webcastMoveChannelUp(req, **params):
58    return services.RHWebcastMoveChannelUp(req).process(params)
59
60def webcastMoveChannelDown(req, **params):
61    return services.RHWebcastMoveChannelDown(req).process(params)
62
63def webcastSaveWebcastSynchronizationURL(req, **params):
64    return services.RHWebcastSaveWebcastSynchronizationURL(req).process(params)
65
66def webcastManualSynchronization(req, **params):
67    return services.RHWebcastManuelSynchronizationURL(req).process(params)
68
69def webcastAddStream(req, **params):
70    return services.RHWebcastAddStream(req).process(params)
71
72def webcastRemoveStream(req, **params):
73    return services.RHWebcastRemoveStream(req).process(params)
74
75def webcastAddOnAir(req, **params):
76    return services.RHWebcastAddOnAir(req).process(params)
77
78def webcastRemoveFromAir(req, **params):
79    return services.RHWebcastRemoveFromAir(req).process(params)
80
81def recording(req, **params):
82    return services.RHRecording(req).process(params)
83
84def oaiPrivateConfig(req, **params):
85    return services.RHOAIPrivateConfig(req).process(params)
86
87def oaiPrivateConfigAddIP(req, **params):
88    return services.RHOAIPrivateConfigAddIP(req).process(params)
89
90def oaiPrivateConfigRemoveIP(req, **params):
91    return services.RHOAIPrivateConfigRemoveIP(req).process(params)
92
93def apiOptions(req, **params):
94    return api.RHAdminAPIOptions(req).process(params)
95
96def apiOptionsSet(req, **params):
97    return api.RHAdminAPIOptionsSet(req).process(params)
98
99def apiKeys(req, **params):
100    return api.RHAdminAPIKeys(req).process(params)
101
102def analytics(req, **params):
103    return services.RHAnalytics(req).process(params)
104
105def saveAnalytics(req, **params):
106    return services.RHSaveAnalytics(req).process(params)
Note: See TracBrowser for help on using the repository browser.