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/inc/htmshell.h src/inc/htmshell.h index 9d85f45..a63efdc 100644 --- src/inc/htmshell.h +++ src/inc/htmshell.h @@ -45,30 +45,33 @@ void htmlVaEncodeErrorText(char *format, va_list args); /* Write an error message encoded against XSS. */ void htmlHorizontalLine(); /* Print a horizontal line. */ void htmlNbSpaces(int count); /* Print a number of non-breaking spaces. */ void htmHorizontalLine(FILE *f); /* Print a horizontal line. */ void htmTextOut(FILE *f, char *s); /* Print out string to file, if necessary replacing > with > and the like */ +void htmTextOutWithEscapes(FILE *f, char *s); +/* Print out string to file */ + void htmlTextOut(char *s); /* Print out string, if necessary replacing > with > and the like */ char *htmlTextStripTags(char *s); /* Returns a cloned string with all html tags stripped out */ char *htmlTextStripJavascriptCssAndTags(char *s); /* Returns a cloned string with all inline javascript, css, and html tags stripped out */ char *htmlTextReplaceTagsWithChar(char *s, char ch); /* Returns a cloned string with all html tags replaced with given char (useful for tokenizing) */ char *htmlEncode(char *s); /* Returns a cloned string with quotes replaced by html codes. Changes ',",\n and >,<,& to code equivalents.