Updated cms library with comments, and removed a few JSON obsolete calls.

This commit is contained in:
2014-11-20 14:11:28 +01:00
parent d84f164dbd
commit ba58fcdf75
3 changed files with 29 additions and 17 deletions

View File

@@ -1,5 +1,7 @@
note
description: "Summary description for {WSF_CMS_PAGE_TEMPLATE}."
description: "[
Abstract interface for a CMS Template, as part of the theme design.
]"
date: "$Date$"
revision: "$Revision$"
@@ -9,18 +11,22 @@ deferred class
feature -- Access
theme: CMS_THEME
-- Associated theme.
deferred
end
variables: STRING_TABLE [detachable ANY]
-- Variables used for Current template rendering.
deferred
end
prepare (page: CMS_HTML_PAGE)
-- Prepare `page' with current template.
deferred
end
to_html (page: CMS_HTML_PAGE): STRING
-- HTML rendering for page `page'.
deferred
end