e74715e9d666c58024f65db5a13d5047a4a65d52
greg
  Thu Jun 30 17:17:48 2011 -0700
added <ul> tags around the <li>'s in the data formats section bc it a.) is required in html, and b.) was not showing correctly in FF on Linux because of this omission.
diff --git src/hg/hgLiftOver/hgLiftOver.c src/hg/hgLiftOver/hgLiftOver.c
index a844c88..c6ff0c3 100644
--- src/hg/hgLiftOver/hgLiftOver.c
+++ src/hg/hgLiftOver/hgLiftOver.c
@@ -296,39 +296,41 @@
 cgiTableRowEnd();
 
 cgiSimpleTableRowStart();
 cgiTableField("If thickStart/thickEnd is not mapped, use the closest mapped base:");
 cgiSimpleTableFieldStart();
 printf("%s", fudgeThick ? "on" : "off");
 cgiTableFieldEnd();
 cgiTableRowEnd();
 
 cgiTableEnd();
 }
 
 void webDataFormats()
 {
 webNewSection("Data Formats");
+puts("<ul>");
 puts("<LI>");
 puts(
     "<A HREF=\"../goldenPath/help/customTrack.html#BED\" TARGET=_blank>"
     "Browser Extensible Data (BED)</A>\n");
 puts("</LI>");
 puts("<LI>");
 puts("Genomic Coordinate Position<BR>");
 puts("&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; chrN<B>:</B>start<B>-</B>end");
 puts("</LI>");
+puts("</ul>");
 }
 
 void webDownloads()
 {
 webNewSection("Command Line Tool");
 cgiParagraph(
 "To lift genome annotations locally on Linux systems, download the "
 "<A HREF=\"http://hgdownload.cse.ucsc.edu/admin/exe/\">" 
 "<I>liftOver</I></A> executable and the appropriate "
 "<A HREF=\"http://hgdownload.cse.ucsc.edu/downloads.html#liftover\">"
 "chain file</A>."
 " Run <I>liftOver</I> with no arguments to see the usage message.\n");
 }