a8299e74cd03f6c7a44f4307e77381342cfce152 tdreszer Thu Jan 26 16:29:39 2012 -0800 Discovered there is still reason to distinguish 'configurable off' from 'configureByPopup off'. The first is a superset but the second pretains only to retrieving cfg dialog by ajax. diff --git src/hg/inc/trackDb.h src/hg/inc/trackDb.h index e3e10b3..3cf85f0 100644 --- src/hg/inc/trackDb.h +++ src/hg/inc/trackDb.h @@ -603,20 +603,20 @@ return startsWithWord("bigWig", tdb->type); } INLINE boolean tdbIsBam(struct trackDb *tdb) // Return TRUE if tdb corresponds to a BAM file. { return startsWithWord("bam", tdb->type); } INLINE boolean tdbIsVcf(struct trackDb *tdb) // Return TRUE if tdb corresponds to a VCF file. { return startsWithWord("vcfTabix", tdb->type); } -boolean trackDbSettingBlocksConfiguration(struct trackDb *tdb); -// Configuration dialogs amy be explicitly blocked in tracDb settings +boolean trackDbSettingBlocksConfiguration(struct trackDb *tdb, boolean onlyAjax); +// Configuration dialogs may be explicitly blocked in tracDb settings #endif /* TRACKDB_H */