77677dac32325aa1defe4bb93c775daa8f84f4a2 lrnassar Fri Jun 27 09:43:39 2025 -0700 Removing the redirect warning message which was meant to be temporary and help prevent users used to the redirect from sitting on the page indefinitely. Refs #35987 diff --git src/hg/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c index b56fbd2a6f3..a372f009176 100644 --- src/hg/hgHubConnect/hgHubConnect.c +++ src/hg/hgHubConnect/hgHubConnect.c @@ -1426,32 +1426,30 @@ char *errorMessage; hubFindOrAddUrlInStatusTable(cart, hub->hubUrl, &errorMessage); // if there is an error message, we stay in hgHubConnect if (errorMessage != NULL) return 0; getDbAndGenome(cart, &database, &organism, oldVars); char headerText[1024]; safef(headerText, sizeof(headerText), "Hub Connect Successful"); cartWebStart(cart, NULL, "%s", headerText); struct trackHub *tHub = hub->trackHub; -hPrintf("<P><i><B style='color: red;'>Note:</B> As of May 27 this page <B>no longer redirects</B> to our Genome Gateway page. Make a genome selection below to go directly to the tracks display. This message will be removed July 8th.</i></P>"); - hPrintf("<P><B>Connected Hub: </B>%s</P>", tHub->shortLabel); hPrintf("<P><B>Hub Description:</B> %s</P>", tHub->longLabel); hPrintf("<P><B>Contact email:</B> <A HREF=\"mailto:%s\">%s</A>.</B> Use this contact for all data questions.</P>", tHub->email, tHub->email); struct trackHubGenome *genomeList = tHub->genomeList; hPrintf("<P><B>Assemblies:</B> Select an assembly below to starting browsing the tracks of this hub:<P>"); hPrintf("<ul>"); for(; genomeList; genomeList = genomeList->next) { char *desc = genomeList->description; if (desc==NULL) desc = hFreezeFromDb(genomeList->name);