Updated CMS code.

Separated code to have a lib and an example.
Improved design, fixed a few issues related to folder location.

This is still experimental and require more work to be really friendly to use.
This commit is contained in:
Jocelyn Fiat
2013-01-31 15:33:24 +01:00
parent 40ea982293
commit ce469b6ede
136 changed files with 1841 additions and 299 deletions

View File

@@ -0,0 +1,58 @@
note
description: "[
This class implements the web service
It inherits from WSF_DEFAULT_SERVICE to get default EWF connector ready
And from WSF_URI_TEMPLATE_ROUTED_SERVICE to use the router service
`initialize' can be redefine to provide custom options if needed.
]"
class
ANY_CMS_EXECUTION
inherit
CMS_EXECUTION
create
make,
make_with_text
feature {NONE} -- Initialization
make_with_text (req: WSF_REQUEST; res: WSF_RESPONSE; h: like service; t: like text)
do
make (req, res, h)
text := t
end
text: detachable STRING
feature -- Execution
process
-- Computed response message.
local
b: STRING_8
s: STRING
do
create b.make_empty
if attached text as t then
s := request.path_info
if attached service.base_url as l_base_url then
if s.starts_with (l_base_url) then
s.remove_head (l_base_url.count)
if s.starts_with ("/") then
s.remove_head (1)
end
end
end
set_title (s)
b.append (t)
else
set_title ("Page Not Found")
end
set_main_content (b)
end
end