Jocelyn Fiat
0d5011b03e
Added html encoding facility to WSF_STRING
...
Added WSF_STRING.is_empty
Improved HTML_ENCODER to be able to decode a STRING_8 or STRING_32 using general_decoded_string (s)
Improved tutorial example
Added precompilation for WSF library
Cosmetic (removed unused locals)
2012-05-30 09:36:55 +02:00
Jocelyn Fiat
445a27ddf8
Now inherit create_router ; but it is still possible to redefine it.
...
Added some wsf_reponse_message for redirection
Use "found" for the redirec_now ...
Added content to the tutorial
2012-05-28 10:54:05 +02:00
Jocelyn Fiat
171be24d2a
Better us OK status for redirection by default
2012-05-25 23:56:10 +02:00
Jocelyn Fiat
03bf467ee5
Added descriptions to WSF_RESPONSE about .send (mesg)
...
Fixed minor issues in other classes
2012-05-25 23:51:59 +02:00
Jocelyn Fiat
6cff00428b
Protected export of WSF_RESPONSE_MESSAGE.send_to
...
Added WSF_DEFAULT_RESPONSE_SERVICE
Added simple WSF_SERVICE_LAUNCHER_OPTIONS_FROM_INI class to load launch option from ini file.
Removed a few obsolete features
2012-05-25 20:17:55 +02:00
Jocelyn Fiat
f07fbbe450
Merge branch 'master' of github.com:EiffelWebFramework/EWF
2012-05-25 17:49:54 +02:00
Jocelyn Fiat
00a88e98e5
Updated indexing notes
...
started tutorial
Sync
2012-05-25 17:47:43 +02:00
Jocelyn Fiat
f1498e2a07
http_client PUT uploaded data is not correctly implemented using libcurl
...
so for now, let's use a real temporary file to use the upload filename implementation
2012-05-23 23:17:50 +02:00
Berend de Boer
2ff3cff70f
Do not use 307 but 302 response
2012-05-21 17:18:12 +02:00
Jocelyn Fiat
ddd9eb646d
removed commented lines
2012-05-14 22:07:48 +02:00
Jocelyn Fiat
c3c27c5027
Rather use (READABLE_)STRING_GENERAL for argument instead of _8 or _32 variant
...
Better design to set the WSF_REQUEST.path_parameters
especially handle the case where the request goes trought more than one route (could be the case when using WSF_ROUTING_HANDLER)
2012-05-14 18:12:28 +02:00
Jocelyn Fiat
64eebd32db
Updated URI Template to follow official RFC6570
2012-05-14 18:11:12 +02:00
Jocelyn Fiat
278a71eaaf
Reviewed WSF_REQUEST.item (..) and items to look into Form, Query, and Path (cookie are excluded for security)
...
Added WSF_REQUEST.path_parameter (a_name): detachable WSF_VALUE
- fill path_parameters using `import_raw_path_parameters"
when executing the route
- reset to previous value with reset_path_parameters (..),
just in case the request is executed via severals routes.
2012-05-07 23:16:52 +02:00
Jocelyn Fiat
e615026520
Reverted back to export upload_data and upload_filename to ANY (and related features)
2012-05-04 13:45:17 +02:00
Jocelyn Fiat
3a979915f5
Removed HTTP_CLIENT_SESSION.post_multipart .. because it was not doing what the name might evoque
...
Restrict export of HTTP_CLIENT_REQUEST_CONTEXT.upload_data and upload_filename (and related) to .._SESSION and .._REQUEST
this is mainly internal data, and is more about implementation than interface
2012-05-04 12:37:51 +02:00
Jocelyn Fiat
4508a76683
Now the http_client will send the form parameters urlencoded if this is possible (instead of multipart form data)
...
Note for now, the library does not support sending file and form parameters at the same time.
2012-05-04 12:23:37 +02:00
Jocelyn Fiat
eb04ac5405
Improved the libcurl implementation of http_client by adding HTTP_CLIENT_SESSION.is_debug: BOOLEAN
...
if True, this display verbose debug information in console
Implemented uploading of file for PUT and POST requests
Refactored LIBCURL_HTTP_CLIENT_REQUEST to free used pointer, and also ease extension of the class if needed.
Updated cURL library with addition of {CURL_EXTERNALS}.slist_free_all (..)
2012-05-03 16:21:42 +02:00
Jocelyn Fiat
31cf64f4ad
do not use implicit conversion from HTTP_CONTENT_TYPE
2012-05-02 19:25:14 +02:00
Jocelyn Fiat
face4550f2
Fixed wrong signature should be READABLE_STRING_32 instead of _8
2012-05-02 19:22:39 +02:00
Jocelyn Fiat
ee0e3df05f
Also removing the implicit conversion from STRING to HTTP_*_TYPE
2012-05-02 11:40:23 +02:00
Jocelyn Fiat
18ced46c99
Removed implicit conversion from HTTP_CONTENT_TYPE to STRING_8
...
because it could be a source of bug due to hidden conversion (and parameters)
Applied changes to autotest cases
Cosmetic
2012-05-02 11:35:53 +02:00
Jocelyn Fiat
7c95e514ad
Added comments
...
Added `url' to compute the url from base_url, path and query parameters
2012-04-30 15:54:21 +02:00
Jocelyn Fiat
e304113984
Fixed error in URL encoding, according to the RFC3986, space should not be encoded with '+' but with percent encoding.
2012-04-30 15:53:44 +02:00
Jocelyn Fiat
07b3eddefe
Fixed signature issue, the argument `name' should be READABLE_STRING_32
2012-04-30 15:51:10 +02:00
Jocelyn Fiat
dc2e535fe8
Code cleaning
2012-04-30 15:49:35 +02:00
Jocelyn Fiat
bd33aabd93
Added specific helper function related to `charset' parameter
2012-04-30 15:49:24 +02:00
Jocelyn Fiat
80a1c85844
added postcondition status_reason_phrase_unset to `set_status'
2012-04-27 08:52:58 +02:00
Jocelyn Fiat
9ba3caba12
cosmetic
2012-04-27 08:52:29 +02:00
Jocelyn Fiat
34c6288032
Fixed a last minute regression due to removal REQUEST.chunked_input
2012-04-13 17:19:14 +02:00
Jocelyn Fiat
21b03a05fd
Added WSF_ROUTER.pre_route_execution_actions: ACTION_SEQUENCE [like route]
...
This way, one can add logger hook to router, to see which "route" was taken by the request.
2012-04-13 16:40:19 +02:00
Jocelyn Fiat
0bd2d16c12
Made WGI_CHUNKED_INPUT_STREAM inherits from WGI_INPUT_STREAM
...
Merged REQUEST.input and REQUEST.chunked_input
Now REQUEST.input handles directly the chunked transfer encoding, or the non chunked.
Kept REQUEST.is_chunked_input since it matters that Content-Length is 0 even if there are input (chunked) data.
2012-04-13 16:33:49 +02:00
Jocelyn Fiat
1403cc5c09
Fixed compilation
2012-04-12 12:25:34 +02:00
Jocelyn Fiat
3bbf356f19
Missing commit related to changes on WSF_ROUTER
2012-04-12 11:59:14 +02:00
Jocelyn Fiat
b541efcc8f
Now WGI_RESPONSE.set_status_code (..) has a new argument to pass optional custom reason phrase.
...
This is a minor breaking change (but prior to the first release, so acceptable)
And then it is now possible to precise a custom reason phrase (useful for 4xx and 5xx response)
At the WSF_RESPONSE level, the status code is now sent only when the header are sent.
thus, it is possible to change the status code as long as no header is sent.
(in the future, we should also try to delay the sending of headers)
Removed WGI_RESPONSE.put_header_lines (..) which was not used, and WGI is not meant to provide such user friendly features
Now this is available directly on WSF_RESPONSE
2012-04-12 11:19:41 +02:00
Jocelyn Fiat
4bafa5b3c0
Added `transfered_content_length' to WSF_RESPONSE to provide the information to application
...
This can be used to build logs for instance.
2012-04-05 21:15:12 +02:00
Jocelyn Fiat
c89b19371e
Relaxed WSF_REDIRECTION_RESPONSE.set_content (.., ..) to allow Void for content type
...
in order to use the one set in header or the default one.
2012-04-05 21:14:10 +02:00
Jocelyn Fiat
10ebc12852
Removed default handler for WSF_ROUTER
...
Added WSF_ROUTE to replace a TUPLE [H, C]
WSF_ROUTER.route (req): detachable WSF_ROUTE
WSF_ROUTER.execute_route (a_route, req, res)
To help usage of Routers
Remove WSF_HANDLER_CONTEXT obsolete features.
Added comments
2012-04-05 21:13:04 +02:00
Olivier Ligot
ff713a42ab
[REM] Remove unneeded precondition
2012-04-02 09:28:22 +02:00
Jocelyn Fiat
874677ab7a
Renamed same_media_type as same_simple_type
...
Added comments
2012-03-23 19:00:49 +01:00
Jocelyn Fiat
ed200b93dd
updated tests.ecf
2012-03-23 18:40:29 +01:00
Jocelyn Fiat
bcccfb22ed
Added HTTP_MEDIA_TYPE (maybe it will just replace the HTTP_CONTENT_TYPE later)
...
renamed .media_type as .simple_type for now
allow more than one parameters
2012-03-23 18:39:19 +01:00
Jocelyn Fiat
5c98d7ba4e
Use media_type as replacement for type_and_subtype_string in HTTP_CONTENT_TYPE
2012-03-23 16:49:13 +01:00
Jocelyn Fiat
40c6aff423
Added class HTTP_CONTENT_TYPE to help manipulation of Content-Type value
...
Now WSF_REQUEST return a HTTP_CONTENT_TYPE if available
Adapted WSF_MIME_HANDLER to use this new class
Added one manual autotest to test MIME handler
2012-03-23 16:40:13 +01:00
Jocelyn Fiat
ac9cbb0bd2
in WSF_RESPONSE, put_header' now call put_header_text'
...
Removed unused local variable
2012-03-21 14:49:09 +01:00
Jocelyn Fiat
95c3bbf6e5
Fixed very bad mistake where no Result was ever set for WSF_REQUEST.item (..)
2012-03-21 14:43:32 +01:00
Jocelyn Fiat
6c7ba93062
Reverted a previous change, we should not truncated Content-Type after ;
...
In the case of multipart/form-data the parameter "boundary=" is essential
2012-03-20 14:35:04 +01:00
Jocelyn Fiat
743f26c376
Use WSF_DEFAULT_SERVICE for the test echo server
2012-03-20 12:18:44 +01:00
Jocelyn Fiat
d256ec3944
Fixing compilation of specific example using the WGI connector directly
2012-03-20 12:15:45 +01:00
Jocelyn Fiat
482f8e41e7
Added WSF_SERVICE.to_wgi_service to ease direct integration with existing WGI components
2012-03-20 11:40:13 +01:00
Jocelyn Fiat
9eef812795
Relaxed access to `send_to', now it is exported again to avoid breaking existing code.
2012-03-20 11:38:44 +01:00