1618f943df5d435b2ec6b1fa6738b0d50f90a19a jcasper Fri Jan 11 15:47:11 2019 -0800 Revamp of CIRM CGI look to match static pages, refs #22765 diff --git src/hg/inc/web.h src/hg/inc/web.h index 6580794..5f77877 100644 --- src/hg/inc/web.h +++ src/hg/inc/web.h @@ -37,30 +37,34 @@ 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 with * quite a few options. See also next: */ void webStartWrapperDetailedNoArgs(struct cart *theCart, char *db, char *headerText, char *format, boolean withHttpHeader, boolean withLogo, boolean skipSectionHeader, boolean withHtmlHeader); /* output a CGI and HTML header with the given title in printf format with * quite a few options. Same as above without va_list args */ void webPragmasEtc(); /* Print out stuff that tells people not to cache us, and that we use the * usual character set and scripting langauge. (Normally done by webStartWrap) */ +void webCirmPragmasEtc(); +/* Print out stuff similar to webPragmasEtc (don't cache us, character set, etc.), but + * use values appropriate for a more modern website (like CIRM). */ + void webStartSectionTables(); /* Put up start of nepharious table layout stuff. (Normally done by webStartWrap). */ void webFirstSection(char *title); /* Put up the first section (normally done by webStartWrap). */ void webNewSection(char* format, ...) /* create a new section on the web page */ #if defined(__GNUC__) __attribute__((format(printf, 1, 2))) #endif ; void webNewEmptySection(); /* create a new section on the web page to maintain table layout */