i tried in one of my user-scripts to use html output, but the resulting code was changed. i had the following line in my userscript:
echo [Cleanup] Cleaning up download directory: ^%3^
and that gave me the following output:
[Cleanup] Cleaning up download directory: <a href=">">">"</a>
That means that cherrypy cleans the code before displaying it.
is it possible for cherrypy to detect if html code was in the output and NOT have it change thatpart of the output??
i already have found out that it has something to do with line 2024 in interface.py and the escape(msg) command on that line. but i can't make the necessary changes to it, as i don't understand python that well...