306429a79f9eedb8614ad52c6f5e2ad60bc50449 kate Mon May 11 16:54:58 2020 -0700 Reverting html and web lib changes for allowing tags in title bars. (For now, limiting to trackUi). refs #24948 diff --git src/inc/htmshell.h src/inc/htmshell.h index a63efdc..9d85f45 100644 --- src/inc/htmshell.h +++ src/inc/htmshell.h @@ -45,33 +45,30 @@ 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.