Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-17 | Merge branch 'dev' into ↵ | Micael Karlberg | |
bmk/inets/httpd/make_mod_esi_deliver_accept_binary_data/OTP-9123 | |||
2011-03-17 | Merge branch 'dev' into bmk/inets/httpd/prevent_xss_in_error_pages/OTP-9124 | Micael Karlberg | |
2011-03-17 | Merge branch 'dev' into ↵ | Micael Karlberg | |
bmk/inets/ftp/missing_spec_causes_dialyxer_problems/OTP-9114 Also fixed a bunch of "end-years" (was 2010 but should have been 2011, which the commit hook not happy with). | |||
2011-03-17 | Fix timeout message generated by mod_esi | Bernard Duggan | |
When a mod_esi request times out, the code to send a timeout response was incorrect and generated an internal server error as well as an invalid response line. | |||
2011-03-17 | Fix log messages formating in httpd | Ricardo Catalinas Jiménez | |
2011-03-14 | Used the wrong security property names in documentation. | Micael Karlberg | |
2011-03-11 | Update copyright years | Björn-Egil Dahlberg | |
2011-03-11 | [httpd] Prevent XSS in error pages. | Micael Karlberg | |
Prevent user controlled input from being interpreted as HTML in error pages by encoding the reserved HTML characters. | |||
2011-03-10 | Add original auther (Bernard Duggan) in release notes. | Micael Karlberg | |
2011-03-10 | Added proper release notes, appup and version. | Micael Karlberg | |
2011-03-10 | Merge branch 'ms/inets-prevent_xss_in_error_pages' into ↵ | Micael Karlberg | |
bmk/inets/httpd/prevent_xss_in_error_pages/OTP-9124 | |||
2011-03-10 | Removed email address. | Micael Karlberg | |
2011-03-10 | Added proper release notes, appup and version. | Micael Karlberg | |
2011-03-10 | Merge branch 'bd/mod_esi_binary' into ↵ | Micael Karlberg | |
bmk/inets/httpd/make_mod_esi_deliver_accept_binary_data/OTP-9123 | |||
2011-03-09 | Added (type) specs for all "public" functions in the ftp module. | Micael Karlberg | |
2011-03-09 | Remove link_check warnings re httpc.xml,sys.xml and unicode.xml | Patrik Nyblom | |
2011-03-07 | Fixed release notes. | Micael Karlberg | |
2011-03-07 | Wrong version (downgrade for 5.5 was 5.4 instead which made | Micael Karlberg | |
5.4 appear in two places). | |||
2011-03-07 | Adding missing "send loop" for raw sending. | Micael Karlberg | |
Also fixed some of the documentation (types). | |||
2011-03-04 | Merge branch 'fm/httpc-upload-body-streaming' into ↵ | Micael Karlberg | |
bmk/inets/httpc/support_upload_body_streaming/OTP-OTP-9094 Conflicts: lib/inets/src/http_client/httpc.erl lib/inets/test/httpc_SUITE.erl | |||
2011-03-03 | Handling encoding of empty chunks. | Micael Karlberg | |
2011-03-02 | Fix typo in httpc documentation | Tuncer Ayaz | |
2011-03-02 | inets/httpc: Polish documentation | Christian von Roques | |
* Assure store_cookies (and verify_cookies) is documented instead of the nonexistent store_cookie and verify_cookie. * Make sure the cookies option is not called cookie in comments. * Sprinkle <c>...</c> arround symbols and code snippets in text. * Grammar, wording, and punctuation fixes. * Formalize See gen_tcp:connect/3,4 using <seealso>. | |||
2011-03-02 | Merge branch 'fd/httpc-man-page-fixes' into dev | Niclas Axelsson | |
* fd/httpc-man-page-fixes: Grammar and typo fixes for the httpc module documentation OTP-9090 | |||
2011-02-24 | Modify mod_esi:deliver/2 to accept binary data | Bernard Duggan | |
This change allows for more efficient delivery of large amounts of data through the mod_esi interface when the handling process has that data in binary format. It avoids the need to convert to list and the extra memory involved in passing that list between processes. | |||
2011-02-22 | inets: prevent XSS in error pages | Michael Santos | |
Prevent user controlled input from being interpreted as HTML in error pages by encoding the reserved HTML characters. The reserved character set should be safe for displaying data within the body of HTML pages as outlined here: http://www.owasp.org/index.php/XSS_(Cross_Site_Scripting)_Prevention_Cheat_Sheet Previously, weird URLs were URI encoded in the error page. This worked quite well but the URL would be displayed in the HTML in percent encoded format. There was also a check for URIs that were already escaped (by the browser) that would fail if the browser sent an URI containing a "%", e.g.: w3m "http://localhost:8080/<b>foo</b>?%" Also encode the HTTP method and version, since it's possible they may be manipulated: <b>FOO</b> /index.html HTTP/1.0 GET /index.html <b>foo</b>/1.0 Encode the static messages to prevent characters from being interpreted as HTML such as "heavy load (>~w processes)". | |||
2011-02-17 | Update ipv6 testcase to be skipped if no ipv6 hosts are defined | Lukas Larsson | |
2011-02-17 | Update ftp suite to take config from ct:get_config | Lukas Larsson | |
2011-02-17 | Rename Suite Callback to Common Test Hook | Lukas Larsson | |
2011-02-17 | Update and add cover spec files to work with common_test | Lukas Larsson | |
2011-02-17 | Update all test specs | Lukas Larsson | |
2011-02-17 | Fix formatting for inets | Lukas Larsson | |
2011-02-17 | Add init_per_suite and end_per_suite | Lukas Larsson | |
2011-02-17 | Add ts_install_scb to suite/0 | Lukas Larsson | |
2011-02-17 | Update inets tests to conform with common_test standard | Lukas Larsson | |
2011-02-17 | Update all fin_per_testcase to end_per_testcase. | Lukas Larsson | |
2011-02-17 | Updated test cases to work with ts conversion algorithm | Lukas Larsson | |
2010-12-16 | External include files | Micael Karlberg | |
HTTPD header file install "fixed". That is, the include files in the include dir are installed in the include dir (by the Makefile in the src/inets_app). New wrapper header files (with the same names httpd.hrl and mod_auth.hrl) has been created in the src/http_server dir (which in turn is installed in the src/http_server dir by the Makefile in the src/http_server dir). | |||
2010-12-16 | Grammar and typo fixes for the httpc module documentation | Filipe David Manana | |
2010-12-06 | Prepare release | Erlang/OTP | |
2010-12-02 | Teach inet_test_lib to understand enetunreach | Patrik Nyblom | |
2010-12-01 | Fix format_man_pages so it handles all man sections and remove ↵ | Lars Thorsen | |
warnings/errors in man pages | |||
2010-12-01 | Merge branch 'bmk/inets/httpc_meybe_retry_queue_terminating/OTP-8906' into dev | Ingela Anderton Andin | |
* bmk/inets/httpc_meybe_retry_queue_terminating/OTP-8906: Pipelined requests not handled properly when terminating. | |||
2010-12-01 | Merge branch 'ia/ssl/test-improvments' into dev | Ingela Anderton Andin | |
2010-12-01 | Merge branch 'ia/inets/url-encoding/OTP-8940' into dev | Ingela Anderton Andin | |
* ia/inets/url-encoding/OTP-8940: Changed file error handling to be consistent URL-encoding - add support in client and more usage in server. Also added missing include directory. | |||
2010-11-30 | Merge branch 'bmk/httpc_suite_ipfamily_fix/20101109/OTP-8927' of ↵ | Ingela Anderton Andin | |
super:bmk_otp into dev | |||
2010-11-30 | Changed file error handling to be consistent | Ingela Anderton Andin | |
Internal server error is only used for emfile and enfile all other errors are treated as 404 file not found, except 403 eacces. | |||
2010-11-30 | Replaced error report with debug printout. | Micael Karlberg | |
Also added some verbosity (dbg) printouts in the transport module (for ip_comm listen). | |||
2010-11-29 | Merge branch 'bmk/httpc_suite_ipfamily_fix/20101109/OTP-8927' of ↵ | Ingela Anderton Andin | |
super:bmk_otp into dev | |||
2010-11-29 | More IPv6 fixing. This time in actual code (in the client). | Micael Karlberg | |