added: to HtmlTextStream: Escape(bool) method
now the output html streams can be turn into no-escaping mode default true (set when a request is clearing) git-svn-id: svn://ttmath.org/publicrep/winix/trunk@990 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -71,12 +71,16 @@ size_t len = 16;
|
||||
if( len < 1 || len > 64 )
|
||||
len = 16;
|
||||
|
||||
out_streams.resize(len);
|
||||
use_html_filter.resize(len);
|
||||
if( out_streams.size() != len )
|
||||
out_streams.resize(len);
|
||||
|
||||
if( use_html_filter.size() != len )
|
||||
use_html_filter.resize(len);
|
||||
|
||||
for(size_t i=0 ; i<out_streams.size() ; ++i)
|
||||
{
|
||||
out_streams[i].Clear();
|
||||
out_streams[i].Escape(true);
|
||||
use_html_filter[i] = true;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user