64291801a141fb6b037812d42666d6dbbb7f923c
braney
Wed Nov 5 10:37:24 2014 -0800
change "This hub not supported" message #14133
diff --git src/hg/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c
index 367a7de..42ba669 100644
--- src/hg/hgHubConnect/hgHubConnect.c
+++ src/hg/hgHubConnect/hgHubConnect.c
@@ -520,36 +520,35 @@
// if there is an error message, we stay in hgHubConnect
if (errorMessage != NULL)
return 0;
getDbAndGenome(cart, &database, &organism, oldVars);
int redirDelay = 3;
printf( "",
redirDelay,"../cgi-bin/hgGateway",cartSidUrlString(cart));
safef(headerText, sizeof(headerText), "Hub Connect Successful");
cartWebStart(cart, NULL, "%s", headerText);
hPrintf("You will be automatically redirected to the gateway page for this hub's default database "
"(%s) in %d seconds.
",
cartSidUrlString(cart),trackHubSkipHubName(database),redirDelay);
-hPrintf("This hub is not supported by UCSC. ");
struct trackHub *tHub = hub->trackHub;
if (tHub->email != NULL)
{
- hPrintf("Hub Contact: %s. ", tHub->email, tHub->email);
+ hPrintf("This hub is provided courtesy of %s.. Please contact them with any questions.", tHub->email, tHub->email);
}
hPrintf("
");
hPrintf("Hub: %s
", tHub->longLabel);
hPrintf("Hub Genomes: ");
struct trackHubGenome *genomeList = tHub->genomeList;
boolean firstTime = TRUE;
for(; genomeList; genomeList = genomeList->next)
{
if (!firstTime)
hPrintf(",");
firstTime = FALSE;
hPrintf("%s",genomeList->name,
cartSidUrlString(cart),trackHubSkipHubName(genomeList->name));