Fixed various Unicode text handling.

Moved example folder inside the library, and renamed it "demo"
Improved example code.
This commit is contained in:
2014-04-22 16:36:29 +02:00
parent cc7d268610
commit 3c8dc0a9e1
47 changed files with 233 additions and 98 deletions

View File

@@ -43,7 +43,7 @@ feature {WSF_PAGE_CONTROL, WSF_CONTROL} -- State management
update
-- Send new renederd control to client on update
do
state_changes.replace (create {JSON_STRING}.make_json (render), "_html")
state_changes.replace (create {JSON_STRING}.make_json_from_string_32 (render), "_html")
end
feature --Event handling

View File

@@ -37,9 +37,9 @@ feature {NONE} -- Initialization
feature {WSF_PAGE_CONTROL, WSF_CONTROL} -- State management
update
-- Send new renederd control to client on update
-- Send new rendered control to client on update
do
state_changes.replace (create {JSON_STRING}.make_json (render_body), "_body")
state_changes.replace (create {JSON_STRING}.make_json_from_string_32 (render_body), "_body")
state_changes.replace (datasource.state, "datasource")
end