| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | ## |
|---|
| 3 | ## |
|---|
| 4 | ## This file is part of Indico. |
|---|
| 5 | ## Copyright (C) 2002 - 2013 European Organization for Nuclear Research (CERN). |
|---|
| 6 | ## |
|---|
| 7 | ## 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 3 of the |
|---|
| 10 | ## License, or (at your option) any later version. |
|---|
| 11 | ## |
|---|
| 12 | ## 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 Indico;if not, see <http://www.gnu.org/licenses/>. |
|---|
| 19 | |
|---|
| 20 | import MaKaC.webinterface.rh.conferenceModif as conferenceModif |
|---|
| 21 | |
|---|
| 22 | |
|---|
| 23 | def index( req, **params ): |
|---|
| 24 | return conferenceModif.RHAbstractList( req ).process( params ) |
|---|
| 25 | |
|---|
| 26 | def abstractsActions( req, **params ): |
|---|
| 27 | return conferenceModif.RHAbstractsActions( req ).process( params ) |
|---|
| 28 | |
|---|
| 29 | def newAbstract( req, **params ): |
|---|
| 30 | return conferenceModif.RHNewAbstract( req ).process( params ) |
|---|
| 31 | |
|---|
| 32 | def participantList( req, **params ): |
|---|
| 33 | return conferenceModif.RHAbstractsParticipantList( req ).process( params ) |
|---|
| 34 | |
|---|
| 35 | def mergeAbstracts( req, **params ): |
|---|
| 36 | return conferenceModif.RHAbstractsMerge( req ).process( params ) |
|---|