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/hgHubConnect/hgHubConnect.c src/hg/hgHubConnect/hgHubConnect.c index c2e9964..caf7446 100644 --- src/hg/hgHubConnect/hgHubConnect.c +++ src/hg/hgHubConnect/hgHubConnect.c @@ -209,31 +209,31 @@ /* main form */ printf("<FORM ACTION=\"%s\" METHOD=\"%s\" " " ENCTYPE=\"multipart/form-data\" NAME=\"mainForm\">\n", "../cgi-bin/hgHubConnect", cartUsualString(cart, "formMethod", "POST")); cartSaveSession(cart); cgiMakeHiddenVar(hgHubConnectRemakeTrackHub, "on"); /* intro text */ puts("<P>"); puts("Add your own private data hub for the browser."); addIntro(); puts("<P>"); /* row for error message */ if (err) - printf("<P><B> <I><FONT COLOR='RED'>Error</I></FONT> %s</B><P>", err); + printf("<P><B> <span style='color:red; font-style:italic;'>Error</span> %s</B><P>", err); printf("Enter URL:"); hTextVar(hgHubDataText, "", 60); cgiMakeSubmitButton(); puts("</FORM>"); } void helpPrivateHub() { printf("Private hubs are constructed the same way as public hubs, but they " "aren't listed in hgcentral<BR>\n"); }