9723799cf6f1a8fb714ae1493b224b8e91aebf09
tdreszer
Mon Jul 30 12:17:38 2012 -0700
Making final pass through tree of checkins as dictated by Jim. None of these changes should affect executables in any way. This pass is due to expanding fingerprint caused by kompare.
diff --git src/hg/lib/web.c src/hg/lib/web.c
index 08817ef..06d0fab 100644
--- src/hg/lib/web.c
+++ src/hg/lib/web.c
@@ -275,32 +275,31 @@
/* this HTML must be in calling code if skipSectionHeader is TRUE */
{
puts( // TODO: Replace nested tables with CSS (difficulty is that tables are closed elsewhere)
"" "\n"
"
\n"
""
" \n"
" \n"
" \n"
" "
);
htmlTextOut(textOutBuf);
- puts(
- " \n"
+ puts(" \n"
" "
" | \n"
" | \n\n"
);
};
webPushErrHandlers();
/* set the flag */
webHeadAlreadyOutputed = TRUE;
} /* static void webStartWrapperDetailedInternal() */
void webStartWrapperDetailedArgs(struct cart *theCart, char *db,
char *headerText, char *format, va_list args, boolean withHttpHeader,
boolean withLogo, boolean skipSectionHeader, boolean withHtmlHeader)
/* output a CGI and HTML header with the given title in printf format */
{
@@ -389,41 +388,38 @@
/* create a new section on the web page */
{
va_list args;
va_start(args, format);
webEndSection();
puts("");
puts("");
puts( // TODO: Replace nested tables with CSS (difficulty is that tables are closed elsewhere)
" \n\n"
" \n"
" \n"
" \n"
- " "
-);
+ " ");
vprintf(format, args);
-puts(
- " \n"
+puts(" \n"
" "
" | \n"
- " | \n\n"
-);
+ " | | \n\n");
va_end(args);
}
void webEndSectionTables()
/* Finish with section tables (but don't do /BODY /HTML like
* webEnd does. */
{
webEndSection();
puts(" | \n");
}
void webEnd()
/* output the footer of the HTML page */
{
|
|
| |
|
|