Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91186471
bibformat_config.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
Fri, Nov 8, 18:52
Size
2 KB
Mime Type
text/x-python
Expires
Sun, Nov 10, 18:52 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22214132
Attached To
R3600 invenio-infoscience
bibformat_config.py
View Options
# -*- coding: utf-8 -*-
##
## This file is part of Invenio.
## Copyright (C) 2006, 2007, 2008, 2010, 2011 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.
# pylint: disable=C0301
"""BibFormat configuration parameters."""
__revision__
=
"$Id$"
import
os
from
invenio.config
import
CFG_ETCDIR
,
CFG_PYLIBDIR
# True if old php format written in EL must be used by Invenio.
# False if new python format must be used. If set to 'False' but
# new format cannot be found, old format will be used.
CFG_BIBFORMAT_USE_OLD_BIBFORMAT
=
False
# Paths to main formats directories
CFG_BIBFORMAT_TEMPLATES_PATH
=
"
%s%s
bibformat
%s
format_templates"
%
(
CFG_ETCDIR
,
os
.
sep
,
os
.
sep
)
CFG_BIBFORMAT_ELEMENTS_IMPORT_PATH
=
"invenio.bibformat_elements"
CFG_BIBFORMAT_ELEMENTS_PATH
=
"
%s%s
invenio
%s
bibformat_elements"
%
(
CFG_PYLIBDIR
,
os
.
sep
,
os
.
sep
)
CFG_BIBFORMAT_OUTPUTS_PATH
=
"
%s%s
bibformat
%s
output_formats"
%
(
CFG_ETCDIR
,
os
.
sep
,
os
.
sep
)
# File extensions of formats
CFG_BIBFORMAT_FORMAT_TEMPLATE_EXTENSION
=
"bft"
CFG_BIBFORMAT_FORMAT_OUTPUT_EXTENSION
=
"bfo"
# Exceptions: errors
class
InvenioBibFormatError
(
Exception
):
"""A generic error for BibFormat."""
def
__init__
(
self
,
message
):
"""Initialisation."""
self
.
message
=
message
def
__str__
(
self
):
"""String representation."""
return
repr
(
self
.
message
)
# Exceptions: warnings
class
InvenioBibFormatWarning
(
Exception
):
"""A generic warning for BibFormat."""
def
__init__
(
self
,
message
):
"""Initialisation."""
self
.
message
=
message
def
__str__
(
self
):
"""String representation."""
return
repr
(
self
.
message
)
Event Timeline
Log In to Comment