5a9c106607b38401620354b237667b53332017ea
braney
  Thu Feb 21 11:04:39 2013 -0800
change trackHubRemoveHubName to trackHubSkipName (per code review #10237)
diff --git src/hg/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c
index cef48b9..9328a92 100644
--- src/hg/hgHubConnect/hgHubConnect.c
+++ src/hg/hgHubConnect/hgHubConnect.c
@@ -63,31 +63,31 @@
 
     if ( string[len - 1] == ',')
 	string[len - 1]  = 0;
     }
 return string;
 }
 
 static void printGenomes(struct trackHub *thub)
 /* print supported assembly names from trackHub */
 {
 /* List of associated genomes. */
 struct trackHubGenome *genomes = thub->genomeList;	
 struct dyString *dy = newDyString(100);
 
 for(; genomes; genomes = genomes->next)
-    dyStringPrintf(dy,"%s,", trackHubRemoveHubName(genomes->name));
+    dyStringPrintf(dy,"%s,", trackHubSkipHubName(genomes->name));
 ourPrintCell(removeLastComma( dyStringCannibalize(&dy)));
 }
 
 static void hgHubConnectUnlisted(struct hubConnectStatus *hubList, 
     struct hash *publicHash)
 /* Put up the list of unlisted hubs and other controls for the page. */
 /* uses publicHash to distingusih public hubs from unlisted ones */
 /* NOTE: Destroys hubList */
 {
 // put out the top of our page
 printf("<div id=\"unlistedHubs\" class=\"hubList\"> \n"
     "<table id=\"unlistedHubsTable\"> \n"
     "<thead><tr> \n"
 	"<th colspan=\"6\" id=\"addHubBar\"><label for=\"hubUrl\">URL:</label> \n"
 	"<input name=\"hubText\" id=\"hubUrl\" class=\"hubField\""