]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/python/oils/const.py
TPac: minor i18n string repairs
[working/Evergreen.git] / Open-ILS / src / python / oils / const.py
1 """
2 Defines Evergreen constants, including namespaces, events, and services
3
4 The OILS prefix derives from Evergreen's old working title, Open-ILS.
5 """
6 # -----------------------------------------------------------------------
7 # Copyright (C) 2007  Georgia Public Library Service
8 # Bill Erickson <erickson@esilibrary.com>
9
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version.
14
15 # This program is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 # GNU General Public License for more details.
19 # -----------------------------------------------------------------------
20
21 OILS_NS_OBJ = 'http://open-ils.org/spec/opensrf/IDL/objects/v1'
22 OILS_NS_PERSIST = 'http://open-ils.org/spec/opensrf/IDL/persistence/v1'
23 OILS_NS_REPORTER = 'http://open-ils.org/spec/opensrf/IDL/reporter/v1'
24
25 OILS_EVENT_SUCCESS = 'SUCCESS'
26
27 OILS_APP_AUTH = 'open-ils.auth'
28 OILS_APP_CIRC = 'open-ils.circ'
29 OILS_APP_CSTORE = 'open-ils.cstore'
30 OILS_APP_SEARCH = 'open-ils.search'
31 OILS_APP_ACQ = 'open-ils.acq'
32 OILS_APP_ACTOR = 'open-ils.actor'