bc46fd2a2f8163134a0eade3842108962915c1ac tdreszer Wed Dec 15 15:07:38 2010 -0800 Fixed some sort issure and minor styling for metadata '...' diff --git src/hg/inc/fileUi.h src/hg/inc/fileUi.h index d2226ff..99abead 100644 --- src/hg/inc/fileUi.h +++ src/hg/inc/fileUi.h @@ -1,29 +1,29 @@ /* hui - human genome browser user interface controls that are shared * between more than one CGI. */ #ifndef FILEUI_H #define FILEUI_H #include "cart.h" #include "trackDb.h" struct fileDb // File in a list of downloadable files { struct fileDb *next; // single link list char *fileName; // File Name - off_t fileSize; // File size + unsigned long fileSize; // File size char *fileDate; // File Modified? date and time struct mdbObj *mdb; // The files are not trackDb entries but are found in the metaDb only char **sortFields; // Array of strings to sort on in sort Order boolean *reverse; // Direction of sort for array }; struct fileDb *fileDbGet(char *db, char *dir, char *subDir, char *fileName); // Returns NULL or if found a fileDb struct with name, size and date filled in. void fileDbFree(struct fileDb **pFileList); // free one or more fileDb objects void filesDownloadUi(char *db, struct cart *cart, struct trackDb *tdb); // UI for a "composite like" track: This will list downloadable files associated with