source: indico/indico/htdocs/abstractsManagment.py @ 9d6eb3

burotelhello-world-walkthroughipv6new-webexv0.97-seriesv0.98-seriesv0.98.2v0.98.3v0.98b1v0.98b2v0.99v1.0v1.1
Last change on this file since 9d6eb3 was 0a4b4c, checked in by Jose Benito <jose.benito.gonzalez@…>, 3 years ago

[IMP] Improvements on list of all abstract authors

  • fixes #378
  • Side Menus and Headers for conference managment are now available when showing the list of authors of abstracts
  • New format of names in the list (changed from "Title NAME, First Name <email>" to "Title First Name NAME <email>"
  • 'send' is replaced by 'compose email'
  • changed the style of the title
  • Property mode set to 100644
File size: 1.3 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.conferenceModif as conferenceModif
22
23
24def index( req, **params ):
25    return conferenceModif.RHAbstractList( req ).process( params )
26
27def abstractsActions( req, **params ):
28    return conferenceModif.RHAbstractsActions( req ).process( params )
29
30def newAbstract( req, **params ):
31    return conferenceModif.RHNewAbstract( req ).process( params )
32
33def participantList( req, **params ):
34    return conferenceModif.RHAbstractsParticipantList( req ).process( params )
Note: See TracBrowser for help on using the repository browser.