6109f0f2c4742e3c1ba6fea26d386135a8830949
kent
  Mon Feb 16 14:47:43 2015 -0800
Adding routine to fetch list of formats and their descriptions.

diff --git src/hg/inc/web.h src/hg/inc/web.h
index c9d7b3d..9e81b63 100644
--- src/hg/inc/web.h
+++ src/hg/inc/web.h
@@ -263,30 +263,36 @@
 void webPrintIntCell(int val);
 /* Print right-justified int cell in our colors. */
 
 void webPrintDoubleCell(double val);
 /* Print right-justified cell in our colors with two digits to right of decimal. */
 
 void webPrintLabelCell(char *label);
 /* Print label cell in our colors. */
 
 void webPrintWideLabelCell(char *label, int colSpan);
 /* Print label cell over multiple columns in our colors. */
 
 void webPrintWideCenteredLabelCell(char *label, int colSpan);
 /* Print label cell over multiple columns in our colors and centered. */
 
+void webPrintLabelCellStart();
+/* Print start of wrapper around a label in a table. */
+
+void webPrintLabelCellEnd();
+/* Print end of wrapper around a label in a table. */
+
 void webPrintLinkTableNewRow();
 /* start a new row */
 
 void webFinishPartialLinkTable(int rowIx, int itemPos, int maxPerRow);
 /* Fill out partially empty last row. */
 
 void webFinishPartialLinkOutTable(int rowIx, int itemPos, int maxPerRow);
 /* Fill out partially empty last row. */
 
 boolean validateGisaidUser(struct cart *cart);
 /* validate if the web user is an authenticated GISAID user */
 
 char *webTimeStampedLinkToResource(char *fileName, boolean wrapInHtml);
 // Returns full path of timestamped link to the requested resource file (js, or css).
 // If wrapInHtml, then returns link embedded in style or script html. Free after use.