summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/hosting/server/user.py
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2012-05-28 16:49:36 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2012-05-28 16:49:36 +0000
commita7a8f4f9c9bbbd3bd16605235440dec29f581ad7 (patch)
treef01ccb8694da3d6207302a09eac725094b243d3f /sca-cpp/trunk/hosting/server/user.py
parent7519724a171bb85246bb86bce453cbdd408691d9 (diff)
Improvements to the hosted composite management app. Simplify and optimize the Web UI a bit. Add test cases and fix some of the logic in the management components.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1343316 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/hosting/server/user.py')
-rw-r--r--sca-cpp/trunk/hosting/server/user.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/sca-cpp/trunk/hosting/server/user.py b/sca-cpp/trunk/hosting/server/user.py
index 227722ac48..9be48b33da 100644
--- a/sca-cpp/trunk/hosting/server/user.py
+++ b/sca-cpp/trunk/hosting/server/user.py
@@ -17,12 +17,13 @@
# User info service component
-# Return the user id
-def id(user, email, nick, full, first, last, realm):
+# Return the current user id
+def get(i, user, email, nick, full, first, last, realm, host):
if email.eval() != '?':
return email.eval()
if nick.eval() != '?':
return nick.eval() + '@' + realm.eval()
if user.eval() != '?':
return user.eval() + '@' + realm.eval()
- return 'joe@localhost'
+ return 'anonymous@' + host.eval();
+