Page MenuHomec4science

preprint.py
No OneTemporary

File Metadata

Created
Thu, Aug 8, 08:55

preprint.py

# -*- coding: utf-8 -*-
##
## This file is part of Invenio.
## Copyright (C) 2013 CERN.
##
## 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.
##
## 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 Invenio; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA
from wtforms.validators import Required
from invenio.modules.deposit.form import WebDepositForm as Form
from invenio.base.i18n import _
from ..field_widgets import plupload_widget, date_widget, \
bootstrap_submit
# Import custom fields
from invenio.modules.deposit import fields
__all__ = ['PreprintForm']
class PreprintForm(Form):
author = fields.AuthorField(label=_('Author'), validators=[Required()], widget_classes="form-control")
subject_category = fields.TitleField(label=_('Subject category'),
validators=[Required()])
note = fields.NotesField(label=_('Note'))
institution = fields.TextField(label=_('Institution'), widget_classes="form-control")
languages = [("en", _("English")),
("fre", _("French")),
("ger", _("German")),
("dut", _("Dutch")),
("ita", _("Italian")),
("spa", _("Spanish")),
("por", _("Portuguese")),
("gre", _("Greek")),
("slo", _("Slovak")),
("cze", _("Czech")),
("hun", _("Hungarian")),
("pol", _("Polish")),
("nor", _("Norwegian")),
("swe", _("Swedish")),
("fin", _("Finnish")),
("rus", _("Russian"))]
language = fields.LanguageField(label=_("Language"), choices=languages)
date = fields.Date(label=_('Date'), widget=date_widget)
file_field = fields.FileUploadField(widget=plupload_widget)
submit = fields.SubmitField(label=_('Submit Preprint'), widget=bootstrap_submit)
""" Form Configuration variables """
_title = _("Submit a Preprint")
_drafting = True # enable and disable drafting

Event Timeline