Compare commits

..

2 Commits

Author SHA1 Message Date
7f4bf09d84 updated readme.md to link to workbook. 2016-05-25 19:17:38 +02:00
Colin Adams
ad90e7c135 Fix for missing error reporting in WSF_PUT/POST_HELPER 2016-05-20 17:37:47 +02:00
3 changed files with 9 additions and 12 deletions

View File

@@ -1,13 +1,4 @@
Introduction
Basic Concepts
Generating Plain Text
Generation HTML
The [Workbook](/doc/workbook.md) lets you discover the EiffelWeb framework.
Handling Client Request:
Form Data
Request Heders
Query Parameters.
[Enter the documentation](/doc/workbook.md)

View File

@@ -62,6 +62,9 @@ feature {NONE} -- Implementation
a_handler.append_resource (req, res)
-- 200 or 204 or 303 or 500 (add support for this?)
-- FIXME: more support, such as includes_response_entity
if not a_handler.response_ok (req) then
write_error_response (req, res)
end
end
end
end

View File

@@ -62,6 +62,9 @@ feature {NONE} -- Implementation
a_handler.update_resource (req, res)
-- 204 or 500 (add support for this?)
-- FIXME: more support, such as includes_response_entity
if not a_handler.response_ok (req) then
write_error_response (req, res)
end
end
end
end