7c23357a1a7352445e138c74cc19931a70722761 galt Thu Aug 11 14:08:04 2016 -0700 Revert "Finishing touches on html-encoding of errors for warn/abort when using html output." This reverts commit 4aa7141dedea619f3bc7d42316f886bcfd554349. diff --git src/hg/hgc/hgc.c src/hg/hgc/hgc.c index e0383a9..6601eec 100644 --- src/hg/hgc/hgc.c +++ src/hg/hgc/hgc.c @@ -26204,31 +26204,31 @@ else if (tdb != NULL && startsWithWord("vcfTabix", tdb->type)) { doVcfTabixDetails(tdb, item); } else if (tdb != NULL && startsWithWord("vcf", tdb->type)) { doVcfDetails(tdb, item); } else if (tdb != NULL) { genericClickHandler(tdb, item, NULL); } else { cartWebStart(cart, database, "%s", track); - warn("Sorry, clicking there doesn't do anything yet (%s).", track); + printf("Sorry, clicking there doesn't do anything yet (%s).", track); } /* End of 1000+ line dispatch on table involving 100+ if/elses. */ cartHtmlEnd(); } struct hash *orgDbHash = NULL; void initOrgDbHash() /* Function to initialize a hash of organism names that hash to a database ID. * This is used to show alignments by hashing the organism associated with the * track to the database name where the chromInfo is stored. For example, the * mousBlat track in the human browser would hash to the mm2 database. */ { orgDbHash = hashNew(8);