removed: ezn patterns for rawcontent and ajaxcontent:
index_rawcontent.html, index_ajaxcontent.html
now we have out_streams in Request and some special
keyword in ezc templates for sending content to the
specified streams
changed: the way how winix answers to the client's browsers:
info from Request class:
winix answer send to the client's browser
|
|
depending on send_bin_stream
-------------------------------------------------
| |
text answer binary answer
| |
depending on return_json sending out_bin_stream
------------------------------------
| |
normal request ajax request
| |
sending out_streams[0] depending on return_info_only
------------------------------------------------------
| |
generating JSON object from: generating JSON object only from info
out_streams and info, e.g.: e.g.:
{ { info object serialized here }
"stream_1": "some html content",
"stream_2": "some other html content",
"info": { info object serialized here }
}
note that out_streams[0] is not sent
in JSON answers
git-svn-id: svn://ttmath.org/publicrep/winix/trunk@937 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
@@ -464,9 +464,9 @@ void Rm::Clear()
|
||||
void Rm::CreateJSON(bool status)
|
||||
{
|
||||
if( status )
|
||||
cur->request->page << "[true]\n";
|
||||
cur->request->out_streams[0] << "[true]\n";
|
||||
else
|
||||
cur->request->page << "[false]\n";
|
||||
cur->request->out_streams[0] << "[false]\n";
|
||||
|
||||
cur->request->page_generated = true;
|
||||
cur->request->use_html_filter = false;
|
||||
|
||||
Reference in New Issue
Block a user