aab4f66a2aca5293f3536cc1d1438b17d2b09dfd
tdreszer
  Thu May 5 16:14:15 2011 -0700
A large set of tiny changes.  These fix a lot of discrepencies with bgcolor and font color declarations which were tripping up docttype 4.01.
diff --git src/hg/hgGene/altSplice.c src/hg/hgGene/altSplice.c
index 9a41cd8..7e021f4 100644
--- src/hg/hgGene/altSplice.c
+++ src/hg/hgGene/altSplice.c
@@ -137,31 +137,31 @@
 {
 char *altId = section->items;
 char query[256];
 struct sqlResult *sr;
 char **row;
 struct altGraphX *ag;
 char table[64];
 boolean hasBin;
 
 hFindSplitTable(sqlGetDatabase(conn), curGeneChrom, "altGraphX", table, &hasBin);
 safef(query, sizeof(query), "select * from %s where name='%s'", table, altId);
 sr = sqlGetResult(conn, query);
 if ((row = sqlNextRow(sr)) != NULL)
     {
     ag = altGraphXLoad(row+hasBin);
-    hPrintf("<TABLE><TR><TD BGCOLOR=#888888>\n");
+    hPrintf("<TABLE><TR><TD BGCOLOR='#888888'>\n");
     altGraphXMakeImage(ag);
     hPrintf("</TD></TR></TABLE><BR>");
     }
 sqlFreeResult(&sr);
 hPrintf("This graph shows alternative splicing observed in mRNAs and "
         "ESTs that is either conserved in mouse, present in full length "
 	"mRNAs, or observed at least three times in ESTs.");
 }
 
 struct section *altSpliceSection(struct sqlConnection *conn,
 	struct hash *sectionRa)
 /* Create altSplice section. */
 {
 struct section *section = sectionNew(sectionRa, "altSplice");
 section->exists = altSpliceExists;