From: dbs Date: Sat, 19 Mar 2011 05:48:01 +0000 (+0000) Subject: A docstring and spaces for Evergreen constants in const.py X-Git-Url: http://git.equinoxoli.org/?p=evergreen-equinox.git;a=commitdiff_plain;h=8489b8ef0ee27998e626fd697030e8dd3db948f0 A docstring and spaces for Evergreen constants in const.py git-svn-id: svn://svn.open-ils.org/ILS/trunk@19822 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/python/oils/const.py b/Open-ILS/src/python/oils/const.py index a7bfc38..2c4d240 100644 --- a/Open-ILS/src/python/oils/const.py +++ b/Open-ILS/src/python/oils/const.py @@ -1,3 +1,8 @@ +""" +Defines Evergreen constants, including namespaces, events, and services + +The OILS prefix derives from Evergreen's old working title, Open-ILS. +""" # ----------------------------------------------------------------------- # Copyright (C) 2007 Georgia Public Library Service # Bill Erickson @@ -13,17 +18,15 @@ # GNU General Public License for more details. # ----------------------------------------------------------------------- - -OILS_NS_OBJ='http://open-ils.org/spec/opensrf/IDL/objects/v1' -OILS_NS_PERSIST='http://open-ils.org/spec/opensrf/IDL/persistence/v1' -OILS_NS_REPORTER='http://open-ils.org/spec/opensrf/IDL/reporter/v1' - +OILS_NS_OBJ = 'http://open-ils.org/spec/opensrf/IDL/objects/v1' +OILS_NS_PERSIST = 'http://open-ils.org/spec/opensrf/IDL/persistence/v1' +OILS_NS_REPORTER = 'http://open-ils.org/spec/opensrf/IDL/reporter/v1' OILS_EVENT_SUCCESS = 'SUCCESS' OILS_APP_AUTH = 'open-ils.auth' OILS_APP_CIRC = 'open-ils.circ' -OILS_APP_CSTORE='open-ils.cstore' -OILS_APP_SEARCH='open-ils.search' -OILS_APP_ACQ='open-ils.acq' -OILS_APP_ACTOR='open-ils.actor' +OILS_APP_CSTORE = 'open-ils.cstore' +OILS_APP_SEARCH = 'open-ils.search' +OILS_APP_ACQ = 'open-ils.acq' +OILS_APP_ACTOR = 'open-ils.actor'