summaryrefslogtreecommitdiffstats
path: root/sca-cpp/trunk/hosting/server/user.py
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2012-07-16 06:47:49 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2012-07-16 06:47:49 +0000
commit11522a4b90a4056319cdbc204fffc63780cbfa51 (patch)
treefde77f10429bc13b042d6ac779f0b89149c8334d /sca-cpp/trunk/hosting/server/user.py
parentf82576588fc9672a011655e709179eb43e5ab5b4 (diff)
Add an HTTPD auth provider allowing the authentication logic to be implemented by a component, and cleanup the SSL and mod-security config a bit.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1361915 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/hosting/server/user.py')
-rw-r--r--sca-cpp/trunk/hosting/server/user.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/sca-cpp/trunk/hosting/server/user.py b/sca-cpp/trunk/hosting/server/user.py
index 9be48b33da..8038e43563 100644
--- a/sca-cpp/trunk/hosting/server/user.py
+++ b/sca-cpp/trunk/hosting/server/user.py
@@ -21,9 +21,7 @@
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 'anonymous@' + host.eval();
+ return user.eval()
+ return 'anonymous'