src/hg/hgTables/wikiTrack.c 1.3
1.3 2010/05/11 01:43:25 kent
Refactoring to split the trackDb.tableName field into separate track and table fields. Similarly track.mapName field goes to the same track and table fields.
Index: src/hg/hgTables/wikiTrack.c
===================================================================
RCS file: /projects/compbio/cvsroot/kent/src/hg/hgTables/wikiTrack.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -b -B -U 4 -r1.2 -r1.3
--- src/hg/hgTables/wikiTrack.c 9 Jan 2009 00:58:27 -0000 1.2
+++ src/hg/hgTables/wikiTrack.c 11 May 2010 01:43:25 -0000 1.3
@@ -14,15 +14,16 @@
{
struct trackDb *tdb;
AllocVar(tdb);
-tdb->tableName = WIKI_TRACK_TABLE;
+tdb->track = WIKI_TRACK_TABLE;
+tdb->table = WIKI_TRACK_TABLE;
tdb->shortLabel = WIKI_TRACK_LABEL;
tdb->longLabel = WIKI_TRACK_LONGLABEL;
tdb->visibility = tvFull;
tdb->priority = WIKI_TRACK_PRIORITY;
-tdb->html = hFileContentsOrWarning(hHelpFile(tdb->tableName));
+tdb->html = hFileContentsOrWarning(hHelpFile(tdb->track));
tdb->type = "none";
tdb->grp = "map";
tdb->canPack = FALSE;