0dc3dba8c97201b69523bbcf01b4c19b17fce05a braney Fri Oct 10 13:09:38 2025 -0700 ongoing work on quickLift diff --git src/hg/hgTracks/quickLiftPull.c src/hg/hgTracks/quickLiftPull.c index 8ce6ac9bd49..ea673f19dbf 100644 --- src/hg/hgTracks/quickLiftPull.c +++ src/hg/hgTracks/quickLiftPull.c @@ -20,31 +20,31 @@ #include "hubConnect.h" #include "trackHub.h" #include "exportedDataHubs.h" boolean quickLiftPullEnabled() { return TRUE; } void quickLiftPull(char *db) /* Fill out exported data hubs popup. */ { if (!quickLiftPullEnabled()) return; -hPrintf("<div style='display:none;' id='quickLiftPullPopup' title='Quicklift One Track'>\n"); +hPrintf("<div style='display:none;' id='quickLiftPullPopup' title='QuickLift One Track'>\n"); hPrintf("<FORM ACTION=\"%s\" NAME=\"mainForm\" METHOD=%s>\n", hgTracksName(), cartUsualString(cart, "formMethod", "POST")); hPrintf("<br>Choose an assembly:<div> <input id=\"speciesSearch\" value=\"\" size=42> </div>\n"); hPrintf("<br>Choose a track:<div> <input id=\"trackSearch\" value=\"\" size=42> </div>\n"); cgiMakeButton("topSubmit", "Submit"); hPrintf("</div>"); #ifdef NOTNOW 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' and x.label not like 'Private';", trackHubSkipHubName(db)); hPrintf("<table style=\"border: 1px solid black\">\n"); struct sqlResult *sr; sr = sqlGetResult(conn, query);