b9d7723866095088387017765ea962f83e87bbfd kate Wed May 6 16:23:13 2020 -0700 Add supertrack to supertrack member title bar. Part of attempt to make supertrack member UI page easier to understand (show hierarchy but subtly). refs #24948 diff --git src/hg/lib/web.c src/hg/lib/web.c index 055826e..355585c 100644 --- src/hg/lib/web.c +++ src/hg/lib/web.c @@ -364,31 +364,33 @@ void webFirstSection(char *title) /* Put up the first section (normally done by webStartWrap). */ { puts( // TODO: Replace nested tables with CSS (difficulty is that tables are closed elsewhere) "" "\n" "\n" "
" " \n" "
\n" "
\n" "
" ); -htmlTextOut(title); +// FIXME: Need a more general solution here to support styling in blue bar title. +// Perhaps support escaped < and > by doubling or backslash +htmTextOutWithEscapes(stdout, title); puts("
\n" " " "\n" "
 \n\n" ); } void webNewSectionHeaderStart() /* Start the header for a new section on the web page. * May be used to maintain table layout without a proper section header */ { webEndSection(); puts("
"); puts("");