summaryrefslogtreecommitdiffstats
path: root/ipa_server/context.py
diff options
context:
space:
mode:
authorRob Crittenden <rcritten@redhat.com>2008-09-30 00:48:53 -0400
committerJason Gerard DeRose <jderose@redhat.com>2008-09-30 19:37:35 -0600
commit77e6c99f9d8e34e85add7671d89bf7698a4fe5c2 (patch)
tree2093d7b2ecbffe747368c43981fdd354a23db00a /ipa_server/context.py
parentb965e558b5def14c6416beb36dc790cca96c3724 (diff)
downloadfreeipa-77e6c99f9d8e34e85add7671d89bf7698a4fe5c2.tar.gz
freeipa-77e6c99f9d8e34e85add7671d89bf7698a4fe5c2.tar.xz
freeipa-77e6c99f9d8e34e85add7671d89bf7698a4fe5c2.zip
Migrate to new source tree layoute
Diffstat (limited to 'ipa_server/context.py')
-rw-r--r--ipa_server/context.py29
1 files changed, 29 insertions, 0 deletions
diff --git a/ipa_server/context.py b/ipa_server/context.py
new file mode 100644
index 000000000..e20587cc6
--- /dev/null
+++ b/ipa_server/context.py
@@ -0,0 +1,29 @@
+# Authors: Rob Crittenden <rcritten@redhat.com>
+#
+# Copyright (C) 2008 Red Hat
+# see file 'COPYING' for use and warranty information
+#
+# This program 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; version 2 only
+#
+# This program 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 this program; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+#
+
+# This should only be imported once. Importing again will cause the
+# a new instance to be created in the same thread
+
+# To use:
+# from ipa_server.context import context
+# context.foo = "bar"
+
+import threading
+
+context = threading.local()