From 96659f703781c4223a9db5013cac10b850daa46b Mon Sep 17 00:00:00 2001 From: jsdelfino Date: Sat, 6 Aug 2011 05:59:04 +0000 Subject: Make authentication work with wildcard domains and increase authentication cookie max-age. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1154445 13f79535-47bb-0310-9956-ffa450edef68 --- .../samples/store-cluster/domains/jane/htdocs/login/index.html | 9 ++++++--- .../samples/store-cluster/domains/jane/htdocs/logout/index.html | 3 ++- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs') diff --git a/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/login/index.html b/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/login/index.html index 4e3b5a2f61..346e3fcea8 100644 --- a/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/login/index.html +++ b/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/login/index.html @@ -56,7 +56,8 @@ if (typeof(openauthReferrer()) == 'undefined') { } function submitOpenIDSignin(w) { - document.cookie = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';path=/;secure=TRUE'; + var reset = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';domain=.' + domainname(window.location.hostname) + ';path=/;secure=TRUE'; + document.cookie = reset; document.openIDSignin.openid_identifier.value = w(); document.openIDSignin.action = openauthReferrer(); document.openIDSignin.submit(); @@ -104,7 +105,8 @@ function withXRDSEndpoint() { function submitOAuth2Signin(w) { parms = w(); - document.cookie = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';path=/;secure=TRUE'; + var reset = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';domain=.' + domainname(window.location.hostname) + ';path=/;secure=TRUE'; + document.cookie = reset; document.oauth2Signin.mod_oauth2_authorize.value = parms[0]; document.oauth2Signin.mod_oauth2_access_token.value = parms[1]; document.oauth2Signin.mod_oauth2_client_id.value = parms[2]; @@ -125,7 +127,8 @@ function withGithub() { function submitOAuth1Signin(w) { parms = w(); - document.cookie = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';path=/;secure=TRUE'; + var reset = 'TuscanyOpenAuth=;expires=' + new Date(1970,01,01).toGMTString() + ';domain=.' + domainname(window.location.hostname) + ';path=/;secure=TRUE'; + document.cookie = reset; document.oauth1Signin.mod_oauth1_request_token.value = parms[0]; document.oauth1Signin.mod_oauth1_authorize.value = parms[1]; document.oauth1Signin.mod_oauth1_access_token.value = parms[2]; diff --git a/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/logout/index.html b/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/logout/index.html index 37c2594ffb..7780e9dec3 100644 --- a/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/logout/index.html +++ b/sca-cpp/trunk/samples/store-cluster/domains/jane/htdocs/logout/index.html @@ -32,7 +32,8 @@