6a4153496eac6a158f48f5c3972f2c33ff37b7d0 max Mon May 19 08:37:52 2025 -0700 last minute wording changes to hub connect page, refs #29899 diff --git src/hg/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c index 5e361875348..250b26792c6 100644 --- src/hg/hgHubConnect/hgHubConnect.c +++ src/hg/hgHubConnect/hgHubConnect.c @@ -1426,53 +1426,59 @@ 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("

Note: As of May 27 this page no longer redirects to the gateway. Make a genome selection below to go directly to the tracks display. This message will be removed July 8th.

"); +hPrintf("

Note: As of May 27 this page no longer redirects to our Genome Gateway page. Make a genome selection below to go directly to the tracks display. This message will be removed July 8th.

"); + +hPrintf("

Connected Hub: %s

", tHub->shortLabel); -hPrintf("

%s now connected. Select a genome below to see the tracks display, or connect another hub.

", tHub->shortLabel); hPrintf("

Hub Description: %s

", tHub->longLabel); hPrintf("

Contact email: %s. Use this contact for all data questions.

", tHub->email, tHub->email); struct trackHubGenome *genomeList = tHub->genomeList; +hPrintf("

Assemblies: Select an assembly below to starting browsing the tracks of this hub:

"); + hPrintf("

"); +hPrintf("

Connect another hub to add even more tracks.

"); + hPrintf("

Hubs are created and maintained by external sources. UCSC is not responsible for their content and status.

"); return 1; } static void doResetHub(struct cart *theCart) { char *url = cartOptionalString(cart, hgHubCheckUrl); if (url != NULL) { udcSetCacheTimeout(1); unsigned id = hubResetError(url); tryHubOpen(id); }