2a941ab53227d6b7aab8ffc9054b71a250e0ea73 max Tue Oct 17 03:29:23 2023 -0700 adding a file that I forgot to commit, found in code review by Jonathan, refs #32312, thanks to Jonathan! diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index 9cbffb2..137ab02 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -26446,42 +26446,46 @@ struct dupTrack *dupList = dupTrackListFromCart(cart); struct dupTrack *dup = dupTrackFindInList(dupList, dupWholeName); if (dup != NULL) { tdb = dupTdbFrom(tdb, dup); track = dupWholeName; } } char* handler = trackDbSetting(tdb, "trackHandler"); /* Start of 1000+ line dispatch on table involving 100+ if/elses. */ char *table = (tdb ? tdb->table : track); if (sameWord(table, "getDna")) { + htmlDoNotTranslate(); doGetDna1(); } else if (sameWord(table, "htcGetDna2")) { + htmlDoNotTranslate(); doGetDna2(); } else if (sameWord(table, "htcGetDna3")) { + htmlDoNotTranslate(); doGetDna3(); } else if (sameWord(table, "htcGetDnaExtended1")) { + htmlDoNotTranslate(); doGetDnaExtended1(); } else if (sameWord(table, "buildBigPsl")) { buildBigPsl(item); } else if (sameWord(table, "htcListItemsAssayed")) { doPeakClusterListItemsAssayed(); } /* Lowe Lab Stuff */ #ifdef LOWELAB else if (loweLabClick(table, item, tdb)) {