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("\n");
printf("
\n");
printf(" For more information about the tracks and tables listed on this page, refer to the "
"User's Guide.
\n");
strftime (now, sizeof(now), "%02d %b %Y", loctime); /* default to today's date */
printf("Last updated %s. Inquiries and feedback welcome.\n",now);
/* 10 LATEST CHANGES */
webNewSection(" 10 Latest Changes (all assemblies)");
printf("
\n"
"\n"
- "Track/Table Name | \n"
- "Assembly | \n"
- "Release Date | \n"
+ "Track/Table Name | \n"
+ "Assembly | \n"
+ "Release Date | \n"
"
\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("
\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),"%s",ki->genome);
}
webNewSection("%s %s (%s, %s)",
ki->name, tempName, ki->description, ki->name, ki->sourceName);
printf("\n"
- "Track/Table Name | \n"
- " Release Date\n"
+ " |
Track/Table Name | \n"
+ " Release Date\n"
" |
\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)
{