source: indico/indico/htdocs/conferenceDisplay.py @ 16926f

burotelhello-world-walkthroughipv6new-webexv0.97-seriesv0.98-seriesv0.98.2v0.98.3v0.98b1v0.98b2v0.99v1.0v1.1
Last change on this file since 16926f was 9033fd, checked in by Pedro Ferreira <jose.pedro.ferreira@…>, 4 years ago

Import from CVS (2009-06-29).

  • Marked all the files' author as 'Indico Team';
  • Restructured directory tree;
  • Modified setup.py;
  • Property mode set to 100644
File size: 2.8 KB
Line 
1# -*- coding: utf-8 -*-
2##
3## $Id: conferenceDisplay.py,v 1.18 2009/05/15 11:53:33 eragners Exp $
4##
5## This file is part of CDS Indico.
6## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007 CERN.
7##
8## CDS Indico is free software; you can redistribute it and/or
9## modify it under the terms of the GNU General Public License as
10## published by the Free Software Foundation; either version 2 of the
11## License, or (at your option) any later version.
12##
13## CDS Indico is distributed in the hope that it will be useful, but
14## WITHOUT ANY WARRANTY; without even the implied warranty of
15## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16## General Public License for more details.
17##
18## You should have received a copy of the GNU General Public License
19## along with CDS Indico; if not, write to the Free Software Foundation, Inc.,
20## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
21
22import MaKaC.webinterface.rh.conferenceDisplay as conferenceDisplay
23
24
25def index(req, **params):
26    return conferenceDisplay.RHConferenceDisplay( req ).process( params )
27
28def getLogo(req, **params):
29    return conferenceDisplay.RHConferenceGetLogo( req ).process( params )
30
31def getCSS(req, **params):
32    return conferenceDisplay.RHConferenceGetCSS( req ).process( params )
33
34def getPic(req, **params):
35    return conferenceDisplay.RHConferenceGetPic( req ).process( params )
36
37def closeMenu(req, **params):
38    return conferenceDisplay.RHConferenceMenuClose( req ).process( params )
39
40def openMenu(req, **params):
41    return conferenceDisplay.RHConferenceMenuOpen( req ).process( params )
42
43def abstractBook(req, **params):
44    return conferenceDisplay.RHAbstractBook(req).process(params)
45
46def abstractBookLatex(req, **params):
47    return conferenceDisplay.RHConferenceLatexPackage(req).process(params)
48
49def abstractBookPerform(req,**params):
50    return conferenceDisplay.RHAbstractBookPerform(req).process(params)
51
52def accessKey(req, **params):
53    return conferenceDisplay.RHConferenceAccessKey(req).process(params)
54
55def forceAccessKey(req, **params):
56    return conferenceDisplay.RHConferenceForceAccessKey(req).process(params)
57
58def ical(req, **params):
59    return conferenceDisplay.RHConferenceToiCal( req ).process( params )
60
61def xml(req, **params):
62    return conferenceDisplay.RHConferenceToXML( req ).process( params )
63
64def marcxml(req, **params):
65    return conferenceDisplay.RHConferenceToMarcXML( req ).process( params )
66
67def writeMinutes(req, **params):
68    return conferenceDisplay.RHWriteMinutes( req ).process( params )
69
70def submit(req, **params):
71    return conferenceDisplay.RHSubmitMaterial(req).process(params)
72
73def matPkg( req, **params ):
74    return conferenceDisplay.RHFullMaterialPackage( req ).process( params )
75
76def performMatPkg( req, **params ):
77    return conferenceDisplay.RHFullMaterialPackagePerform( req ).process( params )
Note: See TracBrowser for help on using the repository browser.