source: indico/indico/htdocs/abstractsManagment.py

Last change on this file was 3bcd5d, checked in by Jose Benito <jose.benito.gonzalez@…>, 2 months ago

[IMP] Update license headers in every file

  • Update to 2013.
  • Closes #1225
  • Property mode set to 100644
File size: 1.3 KB
Line 
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
20import MaKaC.webinterface.rh.conferenceModif as conferenceModif
21
22
23def index( req, **params ):
24    return conferenceModif.RHAbstractList( req ).process( params )
25
26def abstractsActions( req, **params ):
27    return conferenceModif.RHAbstractsActions( req ).process( params )
28
29def newAbstract( req, **params ):
30    return conferenceModif.RHNewAbstract( req ).process( params )
31
32def participantList( req, **params ):
33    return conferenceModif.RHAbstractsParticipantList( req ).process( params )
34
35def mergeAbstracts( req, **params ):
36    return conferenceModif.RHAbstractsMerge( req ).process( params )
Note: See TracBrowser for help on using the repository browser.