Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-11-09 | [supervisor] Refactor to improve maintainability | Siri Hansen | |
2017-11-09 | [supervisor] Add macros to use in guards | Siri Hansen | |
2017-11-09 | [supervisor] Refactor handling of dynamic children | Siri Hansen | |
2017-11-09 | [supervisor] Improve test suite before refactoring | Siri Hansen | |
2017-11-07 | Merge pull request #1551 from peterdmv/peterdmv/stdlib/add_uri_string/OTP-14496 | Péter Dimitrov | |
Implement new uri_string module in stdlib | |||
2017-11-06 | Fix typo in test/ets_SUITE.erl | Dimitris Zorbas | |
2017-11-06 | stdlib: Remove compose_query and dissect_query | Péter Dimitrov | |
compose_query/{1,2} and dissect_query/1 removed as the implemented specification (HTML 2.0) is old. They will be re-implemented based on HTML5. | |||
2017-11-03 | stdlib: Refactor functions in uri_string | Péter Dimitrov | |
2017-11-01 | stdlib: Add uri_string module to stdlib.app.src | Péter Dimitrov | |
2017-11-01 | Tweak statistics limits | Raimo Niskanen | |
2017-10-31 | Improve check on normal distribution tail | Raimo Niskanen | |
2017-10-31 | stdlib: Fix case normalization (normalize/1) | Péter Dimitrov | |
2017-10-31 | stdlib: Refactor helper functions in uri_string | Péter Dimitrov | |
2017-10-31 | Refactor xmllint check and make it fail on failure | Lukas Larsson | |
This commit also adds a check to see that all files that are part of an xi:include also have part of XML_FILES and vice versa. It also fixes any applications where this was not true. | |||
2017-10-31 | Merge branch 'maint' | Hans Bolinder | |
* maint: stdlib: Fix a minor issue with the qlc suite | |||
2017-10-30 | stdlib: Update documentation (normalize/1) | Péter Dimitrov | |
2017-10-30 | stdlib: Fix a minor issue with the qlc suite | Hans Bolinder | |
When comparing the process dictionary before and after a test, only (a sorted list of) qlc keys are compared. | |||
2017-10-27 | stdlib: Implement normalize/1 | Péter Dimitrov | |
Implements the following Syntax-Based Normalizations: - Case Normalization - Percent-Encoding Normalization - Path Segment Normalization - Scheme-Based Normalization - HTTP(S) - Basic support for FTP, SSH, SFTP, TFTP | |||
2017-10-27 | stdlib: Allow undefined port in uri_map() | Péter Dimitrov | |
uri_map() updated to allow 'undefined' ports in order to align the implementation with RFC 3986: port = *DIGIT An 'undefined' port is mapped to a ":" during recompose operation. | |||
2017-10-27 | Test normal distribution | Raimo Niskanen | |
2017-10-26 | stdlib: Update documentation, error tuples | Péter Dimitrov | |
2017-10-25 | Return error when unable to make dir | Eric Meadows-Jönsson | |
2017-10-25 | stdlib: Refactor dissect_query | Péter Dimitrov | |
2017-10-25 | stdlib: Refactor compose_query | Péter Dimitrov | |
2017-10-24 | stdlib: Refactor parsed binary calculation | Péter Dimitrov | |
2017-10-24 | stdlib: Fix title in uri_string.xml | Péter Dimitrov | |
2017-10-24 | stdlib: Update supported separators (query string) | Péter Dimitrov | |
Update list of supported separators: - escaped_amp (default): "&" - amp: "&" - semicolon: ";" | |||
2017-10-23 | stdlib: Update documentation (uri_string) | Péter Dimitrov | |
2017-10-23 | stdlib: Improve error handling | Péter Dimitrov | |
2017-10-23 | stdlib: Implement compose_query and dissect_query | Péter Dimitrov | |
2017-10-23 | stdlib: Improve support of mixed lists (transcode) | Péter Dimitrov | |
- transcode/2 flattens input lists in order to be able to handle lists with percent-encoded parts that are split into muliple list and binary segments. - Add additional tests for transcoding mixed lists. | |||
2017-10-23 | stdlib: Change handling of queries ["?" query] | Péter Dimitrov | |
Previously when parsing queries the first "?" was part of the parsed query in the result Map. This behavior has been changed to follow the patterns used with other URI components and to not include the special character(s) that mark the start of a specific component. | |||
2017-10-23 | stdlib: Implement transcode/2. | Péter Dimitrov | |
2017-10-23 | stdlib: Add property tests, bugfixes | Péter Dimitrov | |
- Add property tests using PropEr. - Add new testcases to uri_string_SUITE. - Improve calculation of parsed binary. - Verify if input to parse() is UTF8 encoded. - Update is_valid_map(): added check for path and host. | |||
2017-10-23 | stdlib: Improve calculation of parsed binary | Péter Dimitrov | |
- Improved calculation of parsed binary. - Added tests for special corner cases. - Fixed dialyzer warnings. | |||
2017-10-23 | stdlib: Implement recompose | Péter Dimitrov | |
- Implemented recompose function with percent-encoding and validation of IPv4/IPv6 addresses. - Added test for recompose that uses a generated test vector (URI combinations based on a fix set of URI components). - Added test for parse-recompose using a generated test vector. - Removed parsing functions for lists. Lists are converted to binary before parsing. | |||
2017-10-23 | stdlib: Add support to parse percent-encoded URIs | Péter Dimitrov | |
2017-10-23 | stdlib: Add support for parsing IPv4 and IPv6 | Péter Dimitrov | |
2017-10-23 | stdlib: Implement uri_string:parse | Péter Dimitrov | |
2017-10-23 | stdlib: Add API and doc of uri_string module | Péter Dimitrov | |
2017-10-23 | Merge pull request #1565 from mikpe/stdlib-base64-decode-speedup | Hans Bolinder | |
base64:decode(List) optimized reimplementation OTP-14624 | |||
2017-10-23 | Merge branch 'maint' | Dan Gudmundsson | |
* maint: fix win32 share filename join/split (#1604) Correct io_vec handling | |||
2017-10-23 | fix win32 share filename join/split (#1604) | Bikram Chatterjee | |
Handle UNC (shared) path on win32, previously "//dir/.." and "\\\\dir\.." was cleaned up to "/dir/.." which was not correct. OTP-14693 | |||
2017-10-18 | Merge pull request #1574 from RaimoNiskanen/raimo/stdlib/rand-uniformity | Raimo Niskanen | |
OTP-13764 Implement uniform floats with decreasing distance towards 0.0 | |||
2017-10-18 | Scale down measure rounds | Raimo Niskanen | |
2017-10-18 | Implement uniform_real/0 and uniform_real_s/1 | Raimo Niskanen | |
2017-10-17 | Merge branch 'maint' | Hans Bolinder | |
* maint: stdlib: Make ets:i/1 exit cleaner upon ^D (old Erlang shell) | |||
2017-10-17 | Merge branch 'hasse/stdlib/fix_ets_i_1/OTP-14663' into maint | Hans Bolinder | |
* hasse/stdlib/fix_ets_i_1/OTP-14663: stdlib: Make ets:i/1 exit cleaner upon ^D (old Erlang shell) | |||
2017-10-17 | Merge branch 'dgud/dot_erlang/OTP-14439' | Dan Gudmundsson | |
* dgud/dot_erlang/OTP-14439: fixup! Do not load .erlang from current dir erlc: Do not load .erlang escript: Do not load .erlang dialyzer: Do not load .erlang reltool: Add no_dot_erlang bootfiles Enable usage of no_dot_erlang in bootstrap Do not load .erlang from current dir | |||
2017-10-13 | erts: Implement maps path iterator | Lukas Larsson | |