2d30d99f5f6d3d6532166a0c70c89d38e6053fb1
braney
  Fri Apr 5 16:57:02 2024 -0700
ongoing work on quickLift

diff --git src/hg/hgTracks/exportedDataHubs.c src/hg/hgTracks/exportedDataHubs.c
index c636229..e86444d 100644
--- src/hg/hgTracks/exportedDataHubs.c
+++ src/hg/hgTracks/exportedDataHubs.c
@@ -9,44 +9,37 @@
 #include "dystring.h"
 #include "hCommon.h"
 #include "hgConfig.h"
 #include "htmshell.h"
 #include "hash.h"
 #include "web.h"
 #include "ra.h"
 #include "hgTracks.h"
 #include "hgFind.h"
 #include "obscure.h"
 #include "net.h"
 #include "hubConnect.h"
 #include "trackHub.h"
 #include "exportedDataHubs.h"
 
-boolean exportedDataHubsEnabled()
-/* Return TRUE if feature is available */
-{
-char *cfgEnabled = cfgOption("browser.exportedDataHubs");
-return cfgEnabled && (sameString(cfgEnabled, "on") || sameString(cfgEnabled, "true")) ;
-}
-
 void printExportedDataHubs(char *db)
 /* Fill out exported data hubs popup. */
 {
 if (!exportedDataHubsEnabled())
     return;
 
 hPrintf("<div style='display:none;' id='exportedDataHubsPopup' title='Exported Data Hubs'>\n");
 struct sqlConnection *conn = hConnectCentral();
 char **row;
 char query[2048];
-sqlSafef(query, sizeof(query), "select x.id,q.id,x.db,x.label,x.description,x.path,q.path from quickLiftChain q,exportedDataHubs x where q.fromDb=x.db and q.toDb='%s'", trackHubSkipHubName(db));
+sqlSafef(query, sizeof(query), "select x.id,q.id,x.db,x.label,x.description,x.path,q.path from quickLiftChain q,exportedDataHubs x where q.fromDb=x.db and q.toDb='%s' and x.label not like 'Private';", trackHubSkipHubName(db));
 
 hPrintf("<table style=\"border: 1px solid black\">\n");
 struct sqlResult *sr;
 sr = sqlGetResult(conn, query);
 while ((row = sqlNextRow(sr)) != NULL)
     {
     hPrintf("<tr><td>%s</td><td><A HREF=\"./hgTracks?quickLift.%s.%s=%s&%s=on&hgsid=%s\">%s</A></td><td>%s</td></tr>",row[2], row[0],trackHubSkipHubName(db), row[1], hgHubConnectRemakeTrackHub,cartSessionId(cart),  row[3],row[4]);
     }
 hPrintf("</table>\n");
 hDisconnectCentral(&conn);
 }