72ab5ade9fcc72e242d987bb84c92df08ba7601b mspeir Thu Aug 27 11:10:59 2026 -0700 CIRM: remove references to the retired cirmdcm.soe.ucsc.edu host, refs #38191 cirmdcm.soe.ucsc.edu was the private server CESCG labs used to reach their prepublication data. It is retired, no longer answers on port 80 or 443, and is not being replaced. - cirmBasics.html: drop the "private server" paragraph from the Accounts section, adjust the heading and table of contents to match, and unlink the dead URL in the commented-out video block. - cirmStuff.js: drop the cirmdcm and cirm-01 clauses from isSecureSite(). cirm-01 was the same machine internally. hgwdev and sspsygene are unaffected. - gateway/htdocs/README: remove the dead login-for-testing URL and stop using the retired host as an example. proxy-host.conf is kept: it is the Apache config that stood the gateway up and the README beside it is the recipe that installs it. That README now says up front that the host is retired. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com> diff --git src/hg/cirm/gateway/js/cirmStuff.js src/hg/cirm/gateway/js/cirmStuff.js index faf23e2462a..4ed122a1d4e 100644 --- src/hg/cirm/gateway/js/cirmStuff.js +++ src/hg/cirm/gateway/js/cirmStuff.js @@ -1,30 +1,28 @@ // cirmStuff - Generally useful functions for CIRM site pages // // Copyright (C) 2019 The Regents of the University of California // // This file contains a few functions and invocations for adjusting the look of pages on the // public and private CIRM sites. Depending on the site, users may be logged in using // basic auth or using hgLogin. Either way, login/logout buttons should be presented as // appropriate (and those buttons should actually work). var cirmSiteFunctions = (function() { var isSecureSite = function() { - if ((document.domain == "cirmdcm.soe.ucsc.edu") || - (document.domain.search(/^cirm-01/) >= 0) || - (document.domain.search(/^hgwdev/) >= 0) || + if ((document.domain.search(/^hgwdev/) >= 0) || (document.domain.search(/sspsygene.gi.ucsc.edu/) >= 0)) { return true; } return false; }; // copied from http://stackoverflow.com/questions/233507/how-to-log-out-user-from-web-site-using-basic-authentication function basicAuthLogout(secUrl, redirUrl) { if (bowser.msie) { document.execCommand('ClearAuthenticationCache', 'false'); } else if (bowser.gecko) { $.ajax({ async: false, url: secUrl, type: 'GET',