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/qaPushQ/qaPushQ.c src/hg/qaPushQ/qaPushQ.c index 9839733..4d7489d 100644 --- src/hg/qaPushQ/qaPushQ.c +++ src/hg/qaPushQ/qaPushQ.c @@ -3465,33 +3465,33 @@ ki->name,tempName,ki->description,ki->name); } printf("</ul>\n"); printf("<p>\n"); printf(" For more information about the tracks and tables listed on this page, refer to the " "<a href=/goldenPath/help/hgTracksHelp.html#IndivTracks>User's Guide</a>.<p>\n"); strftime (now, sizeof(now), "%02d %b %Y", loctime); /* default to today's date */ printf("<em>Last updated %s. <a HREF=\"/contacts.html\">Inquiries and feedback welcome</a>.</em>\n",now); /* 10 LATEST CHANGES */ webNewSection("<A NAME=recent></A> 10 Latest Changes (all assemblies)"); printf("<TABLE BORDER=1 BORDERCOLOR=\"#aaaaaa\" CELLPADDING=4 WIDTH=\"100%%\">\n" "<TR>\n" - "<TD nowrap><FONT color=\"#006666\"><B>Track/Table Name</B></FONT></TD>\n" - "<TD nowrap><FONT color=\"#006666\"><B>Assembly</B></FONT></TD>\n" - "<TD nowrap><FONT color=\"#006666\"><B>Release Date</B></FONT></TD>\n" + "<TD nowrap><B style='color:#006666;'>Track/Table Name</B></TD>\n" + "<TD nowrap><B style='color:#006666;'>Assembly</B></TD>\n" + "<TD nowrap><B style='color:#006666;'>Release Date</B></TD>\n" "</TR>\n" ); safef(query,sizeof(query), "select releaseLog, dbs, qadate, releaseLogUrl from pushQ " "where priority='L' and releaseLog != '' and dbs != '' %s" "order by qadate desc, qid desc ", encodeClause ); sr = sqlGetResult(conn, query); while ((row = sqlNextRow(sr)) != NULL) { sscanf(cloneStringZ(&row[2][5],2),"%d",&m); sscanf(cloneStringZ(&row[2][8],2),"%d",&d); { /* parse dblist and make sure it's kosher and active=1 good */ char* dbs = cloneString(row[1]); char dbsComma[1024]; @@ -3553,32 +3553,32 @@ sqlFreeResult(&sr); printf("</table>\n"); /* REGULAR LOG */ for (ki = kiList; ki != NULL; ki = ki->next) { safef(tempName,sizeof(tempName),ki->organism); if (!sameString(ki->organism, ki->genome)) { safef(tempName,sizeof(tempName),"<em>%s</em>",ki->genome); } webNewSection("<A NAME=%s></A>%s %s (%s, %s)", ki->name, tempName, ki->description, ki->name, ki->sourceName); printf("<TABLE BORDER=1 BORDERCOLOR=\"#aaaaaa\" CELLPADDING=4 WIDTH=\"100%%\">\n" - "<TR><TD nowrap><FONT color=\"#006666\"><B>Track/Table Name</B></FONT></TD>\n" - " <TD nowrap><FONT color=\"#006666\"><B>Release Date</B></FONT>\n" + "<TR><TD nowrap><B style='color:#006666;'>Track/Table Name</B></TD>\n" + " <TD nowrap><B style='color:#006666;'>Release Date</B>\n" "</TD></TR>\n" ); safef(query,sizeof(query), "select releaseLog, qadate, releaseLogUrl from pushQ " "where priority='L' and releaseLog != '' and dbs like '%%%s%%' %s" "order by qadate desc, qid desc", ki->name, encodeClause ); //printf("query=%s\n",query); sr = sqlGetResult(conn, query); while ((row = sqlNextRow(sr)) != NULL) {