Added WSF_WIDGET_RAW_TEXT to render text via html encoding.

Added WSF_WIDGET_COMPOSITE.extend_html_text (READABLE_STRING_8) that should replace the now obsolete "extend_text"
Added WSF_WIDGET_COMPOSITE.extend_raw_text (READABLE_STRING_GENERAL), for text that need to be html encoded during html rendering.
Made WSF_FORM_RAW_TEXT obsolete.
This commit is contained in:
2013-09-06 15:34:38 +02:00
parent 3c139315e5
commit ea9161b2f2
5 changed files with 59 additions and 5 deletions

View File

@@ -32,7 +32,7 @@ feature {NONE} -- Initialization
make_with_text (s: READABLE_STRING_8)
do
make_with_item (create {WSF_FORM_RAW_TEXT}.make (s))
make_with_item (create {WSF_WIDGET_TEXT}.make_with_text (s))
end
make_with_item (i: WSF_WIDGET)

View File

@@ -1,12 +1,13 @@
note
description: "Summary description for {WSF_FORM_RAW_TEXT}."
author: ""
date: "$Date$"
revision: "$Revision$"
class
WSF_FORM_RAW_TEXT
obsolete "Use WSF_WIDGET_TEXT 2013-Sept-06"
inherit
WSF_WIDGET_TEXT
rename