summaryrefslogtreecommitdiff
path: root/src/leap/common/config/__init__.py
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2013-09-12 13:59:21 +0200
committerKali Kaneko <kali@leap.se>2013-09-12 13:59:21 +0200
commit91da9e7839f58114471b22bb2694732d6775c6e4 (patch)
tree0d48c8b3990971354b4c5517cd1abd69f4d29aeb /src/leap/common/config/__init__.py
parent08d9cd69e8f3e58d38a176ce4983e88fa00d693a (diff)
parent23b96758a217f5a7b6f1ea7c99294c68b53fae65 (diff)
Merge tag '0.3.2' into debian-0.3.2
Tag leap.common release 0.3.2
Diffstat (limited to 'src/leap/common/config/__init__.py')
-rw-r--r--src/leap/common/config/__init__.py39
1 files changed, 39 insertions, 0 deletions
diff --git a/src/leap/common/config/__init__.py b/src/leap/common/config/__init__.py
index e69de29..68d92dc 100644
--- a/src/leap/common/config/__init__.py
+++ b/src/leap/common/config/__init__.py
@@ -0,0 +1,39 @@
+# -*- coding: utf-8 -*-
+# __init__.py
+# Copyright (C) 2013 LEAP
+#
+# 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, either version 3 of the License, or
+# (at your option) any later version.
+#
+# 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, see <http://www.gnu.org/licenses/>.
+"""
+Common configs
+"""
+import os
+
+from dirspec.basedir import get_xdg_config_home
+
+
+def get_path_prefix(standalone=False):
+ """
+ Returns the platform dependent path prefix.
+
+ :param standalone: if True it will return the prefix for a standalone
+ application.
+ Otherwise, it will return the system default for
+ configuration storage.
+ :type standalone: bool
+ """
+ config_home = get_xdg_config_home()
+ if standalone:
+ config_home = os.path.join(os.getcwd(), "config")
+
+ return config_home