Cleaned the node module, to remove for now the REST api attempt.

This will be redone with care once the web cms is ready.
This commit is contained in:
2015-04-29 20:02:09 +02:00
parent c982f0ea9c
commit 0eb2b70d0f
10 changed files with 89 additions and 316 deletions

View File

@@ -69,4 +69,16 @@ feature -- Response helpers
r.execute
end
send_not_implemented (a_message: detachable READABLE_STRING_8; req: WSF_REQUEST; res: WSF_RESPONSE)
-- Send via `res' a not implemented response.
local
r: CMS_RESPONSE
do
create {NOT_IMPLEMENTED_ERROR_CMS_RESPONSE} r.make (req, res, api)
if a_message /= Void then
r.set_main_content (a_message)
end
r.execute
end
end