From 8489b8ef0ee27998e626fd697030e8dd3db948f0 Mon Sep 17 00:00:00 2001
From: dbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Date: Sat, 19 Mar 2011 05:48:01 +0000
Subject: [PATCH] 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
---
 Open-ILS/src/python/oils/const.py | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/Open-ILS/src/python/oils/const.py b/Open-ILS/src/python/oils/const.py
index a7bfc38788..2c4d240c5a 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 <erickson@esilibrary.com>
@@ -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'
-- 
2.11.0