| 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 | |
|---|
| 21 | import MaKaC.webinterface.rh.conferenceDisplay as conferenceDisplay |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | def index(req, **params): |
|---|
| 25 | return conferenceDisplay.RHConferenceDisplay( req ).process( params ) |
|---|
| 26 | |
|---|
| 27 | def getLogo(req, **params): |
|---|
| 28 | return conferenceDisplay.RHConferenceGetLogo( req ).process( params ) |
|---|
| 29 | |
|---|
| 30 | def getCSS(req, **params): |
|---|
| 31 | return conferenceDisplay.RHConferenceGetCSS( req ).process( params ) |
|---|
| 32 | |
|---|
| 33 | def getPic(req, **params): |
|---|
| 34 | return conferenceDisplay.RHConferenceGetPic( req ).process( params ) |
|---|
| 35 | |
|---|
| 36 | def closeMenu(req, **params): |
|---|
| 37 | return conferenceDisplay.RHConferenceMenuClose( req ).process( params ) |
|---|
| 38 | |
|---|
| 39 | def openMenu(req, **params): |
|---|
| 40 | return conferenceDisplay.RHConferenceMenuOpen( req ).process( params ) |
|---|
| 41 | |
|---|
| 42 | def abstractBook(req, **params): |
|---|
| 43 | return conferenceDisplay.RHAbstractBook(req).process(params) |
|---|
| 44 | |
|---|
| 45 | def abstractBookLatex(req, **params): |
|---|
| 46 | return conferenceDisplay.RHConferenceLatexPackage(req).process(params) |
|---|
| 47 | |
|---|
| 48 | def abstractBookPerform(req,**params): |
|---|
| 49 | return conferenceDisplay.RHAbstractBookPerform(req).process(params) |
|---|
| 50 | |
|---|
| 51 | def accessKey(req, **params): |
|---|
| 52 | return conferenceDisplay.RHConferenceAccessKey(req).process(params) |
|---|
| 53 | |
|---|
| 54 | def forceAccessKey(req, **params): |
|---|
| 55 | return conferenceDisplay.RHConferenceForceAccessKey(req).process(params) |
|---|
| 56 | |
|---|
| 57 | def ical(req, **params): |
|---|
| 58 | return conferenceDisplay.RHConferenceToiCal( req ).process( params ) |
|---|
| 59 | |
|---|
| 60 | def xml(req, **params): |
|---|
| 61 | return conferenceDisplay.RHConferenceToXML( req ).process( params ) |
|---|
| 62 | |
|---|
| 63 | def marcxml(req, **params): |
|---|
| 64 | return conferenceDisplay.RHConferenceToMarcXML( req ).process( params ) |
|---|
| 65 | |
|---|
| 66 | def writeMinutes(req, **params): |
|---|
| 67 | return conferenceDisplay.RHWriteMinutes( req ).process( params ) |
|---|
| 68 | |
|---|
| 69 | def submit(req, **params): |
|---|
| 70 | return conferenceDisplay.RHSubmitMaterial(req).process(params) |
|---|
| 71 | |
|---|
| 72 | def matPkg( req, **params ): |
|---|
| 73 | return conferenceDisplay.RHFullMaterialPackage( req ).process( params ) |
|---|
| 74 | |
|---|
| 75 | def performMatPkg( req, **params ): |
|---|
| 76 | return conferenceDisplay.RHFullMaterialPackagePerform( req ).process( params ) |
|---|