Page MenuHomec4science

bibworkflow_config.py
No OneTemporary

File Metadata

Created
Wed, Aug 28, 04:42

bibworkflow_config.py

# -*- 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.
"""Invenio BibWorkflow config."""
import os
from invenio.config import CFG_PYLIBDIR
def enum(**enums):
return type('Enum', (), enums)
CFG_WORKFLOW_STATUS = enum(NEW=0, RUNNING=1, HALTED=2, ERROR=3, FINISHED=4, COMPLETED=5)
CFG_OBJECT_VERSION = enum(INITIAL=0, FINAL=1, HALTED=2, RUNNING=3)
CFG_OBJECT_STATUS = enum(ERROR="ERROR - Something went wrong!",
RUNNING="RUNNING - Workflow in process",
FINISHED="FINISHED - Workflow was finished" +
"for this object"
)
CFG_LOG_TYPE = enum(INFO=0, ERROR=1, DEBUG=2)
CFG_EXTRA_DATA_KEY = enum(PUBLISHER=0, SOURCE=1, OWNER=2, CATEGORY=3, LAST_TASK_NAME=4)

Event Timeline