Page MenuHomec4science

Print_Success.py
No OneTemporary

File Metadata

Created
Fri, May 24, 13:19

Print_Success.py

## This file is part of CDS Invenio.
## Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008 CERN.
##
## CDS Invenio is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## CDS Invenio is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with CDS Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
__revision__ = "$Id$"
import os
from invenio.config import CFG_SITE_NAME
# FIXME: cannot import Request_Print(), is defined in websubmit_engine.py
def Print_Success(parameters, curdir, form, user_info=None):
t=""
edsrn = parameters['edsrn']
newrnin = parameters['newrnin']
status = parameters['status']
fp = open("%s/%s" % (curdir,edsrn),"r")
rn = fp.read()
fp.close()
if newrnin != "" and os.path.exists("%s/%s" % (curdir,newrnin)):
fp = open("%s/%s" % (curdir,newrnin),"r")
additional_rn = fp.read()
fp.close()
additional_rn = " and %s" % additional_rn
else:
additional_rn = ""
t=t+Request_Print("A", "<br /><br /><b>Submission Complete!</b><br /><br />")
t=t+Request_Print("A", "Your document has the following reference(s): <b>%s%s</b><br /><br />" % (rn,additional_rn))
if status == "APPROVAL":
t=t+Request_Print("A", "An email has been sent to the referee. You will be warned by email as soon as the referee takes his/her decision regarding your document.<br /><br />\n")
if status == "ADDED":
t=t+Request_Print("A", "It will soon appear on our server.<br /><br />\n")
t=t+Request_Print("A", "Thank you for using %s!" % CFG_SITE_NAME)
t=t+Request_Print("A", "<br /><br /><br /><br />")
return t

Event Timeline