e408d52de2f812c4dc407b1865c97c45090dcf16 chmalee Mon Oct 11 16:40:46 2021 -0700 Renaming the trackDb settings extraDetailsTable and extraTableFields to the more descriptive and more accurate detailsStaticTable and detailsDynamicTable. Also rename detailsTabUrls to detailsUrls, luckily that setting has not been documented yet, so a simple rename is possible diff --git src/hg/hgc/hgc.h src/hg/hgc/hgc.h index e4f7027..7950bcb 100644 --- src/hg/hgc/hgc.h +++ src/hg/hgc/hgc.h @@ -539,31 +539,31 @@ /* Parse the trackDb field "extraTableFields" into the field names and titles specified, * and fill out a hash keyed on the bigBed field name (which may be in an external file * and not in the bigBed itself) to a helper struct for storing user defined tables. */ int extraFieldsPrintAs(struct trackDb *tdb,struct sqlResult *sr,char **fields,int fieldCount, struct asObject *as); // Any extra bed or bigBed fields (defined in as and occurring after N in bed N + types. // sr may be null for bigBeds. // Returns number of extra fields actually printed. int extraFieldsPrint(struct trackDb *tdb,struct sqlResult *sr,char **fields,int fieldCount); // Any extra bed or bigBed fields (defined in as and occurring after N in bed N + types. // sr may be null for bigBeds. // Returns number of extra fields actually printed. struct slPair *parseDetailsTablUrls(struct trackDb *tdb); -/* Parse detailsTabUrls setting string into an slPair list of {offset column name, fileOrUrl} */ +/* Parse detailsUrls setting string into an slPair list of {offset column name, fileOrUrl} */ char *readOneLineMaybeBgzip(char *fileOrUrl, bits64 offset, bits64 len); /* If fileOrUrl is bgzip-compressed and indexed, then use htslib's bgzf functions to * retrieve uncompressed data from offset; otherwise (plain text) use udc. If len is 0, * read up to next '\n' delimiter. */ #define NUCCORE_SEARCH "https://www.ncbi.nlm.nih.gov/sites/entrez?db=nuccore&cmd=search&term=" void doJRepeat (struct trackDb *tdb, char *repeat); /* New RepeatMasker Visualization defined in joinedRmskClick.c */ INLINE char* strOrNbsp(char* val) /* return val if not empty otherwise HTML entity   */ { return isEmpty(val) ? " " : val;