diff src/common/constants.py @ 606:7af8f4ab3675 frontends_multi_profiles

browser side: fixed avatar getting + better DEFAULT/EMPTY avatars constants + use of jid.JID for microblog's author
author Goffi <goffi@goffi.org>
date Mon, 09 Feb 2015 21:55:16 +0100
parents 0bbbef1d53a8
children deddd1cd8aa5
line wrap: on
line diff
--- a/src/common/constants.py	Mon Feb 09 21:46:15 2015 +0100
+++ b/src/common/constants.py	Mon Feb 09 21:55:16 2015 +0100
@@ -19,6 +19,7 @@
 
 from sat.core.i18n import D_
 from sat_frontends import constants
+import os.path
 
 
 class Const(constants.Const):
@@ -46,8 +47,12 @@
     UPLOAD_KO = 'UPLOAD KO'
     UNKNOWN_ERROR = 'UNMANAGED FAULT STRING (%s)'
 
-    # PATHS
+    # directories
     AVATARS_DIR = "avatars/"
+    MEDIA_DIR = "media/"
 
-    # Default avatar
-    DEFAULT_AVATAR = "/media/misc/default_avatar.png"
+    # avatars
+    DEFAULT_AVATAR_FILE = "default_avatar.png"
+    DEFAULT_AVATAR_URL = os.path.join(MEDIA_DIR, "misc", DEFAULT_AVATAR_FILE)
+    EMPTY_AVATAR_FILE = "empty_avatar"
+    EMPTY_AVATAR_URL = os.path.join(MEDIA_DIR, "misc", EMPTY_AVATAR_FILE)