support HTTPS URLs for auth_domain guessing, part of MKWS-102
authorWolfram Schneider <wosch@indexdata.dk>
Wed, 22 Jan 2014 15:51:59 +0000 (15:51 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Wed, 22 Jan 2014 15:51:59 +0000 (15:51 +0000)
tools/htdocs/mkws.js

index f7f324b..4df6f70 100644 (file)
@@ -1084,7 +1084,7 @@ function mkws_service_proxy_auth(auth_url, auth_domain, pp2_url) {
     debug("Run service proxy auth URL: " + auth_url);
 
     if (!auth_domain) {
-       auth_domain = pp2_url.replace(/^http:\/\/(.*?)\/.*/, '$1');
+       auth_domain = pp2_url.replace(/^https?:\/\/(.*?)\/.*/, '$1');
        debug("guessed auth_domain '" + auth_domain + "' from pp2_url '" + pp2_url + "'");
     }