Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92375581
journal.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 19, 19:32
Size
2 KB
Mime Type
text/x-python
Expires
Thu, Nov 21, 19:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22431035
Attached To
R3600 invenio-infoscience
journal.py
View Options
# -*- coding: utf-8 -*-
##
## This file is part of Invenio.
## Copyright (C) 2012, 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
import
TextField
from
invenio.modules.deposit.field_base
import
WebDepositField
from
..autocomplete_utils
import
sherpa_romeo_journals
from
..processor_utils
import
sherpa_romeo_journal_process
__all__
=
[
'JournalField'
]
class
JournalField
(
WebDepositField
,
TextField
):
def
__init__
(
self
,
**
kwargs
):
defaults
=
dict
(
icon
=
'book'
,
processors
=
[
sherpa_romeo_journal_process
],
autocomplete
=
sherpa_romeo_journals
,
widget_classes
=
"form-control"
,
)
defaults
.
update
(
kwargs
)
super
(
JournalField
,
self
)
.
__init__
(
**
defaults
)
# from wtforms import TextField
# from invenio.modules.knowledge.api import get_kb_mappings
# from invenio.modules.deposit.field_base import WebDepositField
# __all__ = ['JournalField']
# def _kb_transform(val):
# ret = {}
# ret['value'] = val['key']
# ret['label'] = val['key']
# return ret
# class JournalField(WebDepositField, TextField):
# def __init__(self, **kwargs):
# self._icon_html = ''
# super(JournalField, self).__init__(**kwargs)
# def pre_validate(self, form):
# return dict(error=0, error_message='')
# def autocomplete(self, term, limit):
# if not term:
# term = ''
# return map(_kb_transform, get_kb_mappings('journal_name', '', term)[:limit])
Event Timeline
Log In to Comment