Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-10-11 | Fixed passing false in namespace flags. | Tiago Natel | 1 | -0/+7 | |
This patch closes #328 in github. | |||||
2019-09-18 | Configuration: added ability to modify object members with slashes. | Valentin Bartenev | 1 | -39/+49 | |
Example: PUT/POST/DELETE /config/listeners/unix:%2Fpath%2Fto%2Fsocket This follows a49ee872e83d. | |||||
2019-09-16 | Configuration: added ability to access object members with slashes. | Valentin Bartenev | 1 | -0/+15 | |
Now URI encoding can be used to escape "/" in the request path: GET /config/listeners/unix:%2Fpath%2Fto%2Fsocket/ | |||||
2019-04-24 | Configuration: support for POST operations on arrays. | Valentin Bartenev | 1 | -11/+36 | |
It allows to add an array element without specifying the index. | |||||
2019-04-24 | Configuration: support for manipulations of array elements. | Valentin Bartenev | 1 | -29/+141 | |
Now PUT and DELETE operations also work on elements. This closes #242 issue on GitHub. | |||||
2019-04-24 | Refactored nxt_conf_op_compile(). | Valentin Bartenev | 1 | -7/+8 | |
Now index is always initialized for create operations. The changes in nxt_conf_op_compile() simplify adding upcoming support of operations with arrays. No functional changes. | |||||
2019-04-24 | Removed unused field from nxt_conf_op_s. | Valentin Bartenev | 1 | -2/+1 | |
2019-02-26 | Introduced nxt_conf_array_qsort(). | Igor Sysoev | 1 | -0/+16 | |
2019-02-26 | Introduced nxt_conf_array_elements_count(). | Igor Sysoev | 1 | -0/+7 | |
2018-11-15 | Fixed discovering of modules on 64-bit big-endian systems. | Valentin Bartenev | 1 | -1/+1 | |
The nxt_conf_map_object() function used nxt_int_t for NXT_CONF_MAP_INT, which was 8 bytes long on 64-bit systems. But the nxt_port_main_start_worker_handler() used it to map into the int field of the nxt_common_app_conf_t structure, which was 4 bytes. As the result, on a 64-bit big-endian system all the meaningful module type numbers were assigned into the gap above the "type" field. The bug was discovered on IBM/S390x. | |||||
2018-09-20 | Controller: addressing of array elements in requests. | Valentin Bartenev | 1 | -1/+20 | |
2018-09-20 | Controller: certificates storage interface. | Valentin Bartenev | 1 | -0/+99 | |
2018-09-20 | Deduplicated string value initializations. | Valentin Bartenev | 1 | -64/+22 | |
2018-06-25 | Introduced nxt_length() macro. | Valentin Bartenev | 1 | -4/+4 | |
2018-04-04 | Style: capitalized letters in hexadecimal literals. | Valentin Bartenev | 1 | -7/+7 | |
2018-03-29 | nxt_lvlhsh_each() refactoring and nxt_lvlhsh_each_init(). | Igor Sysoev | 1 | -2/+1 | |
2018-01-29 | Introducing extended app process management. | Max Romanov | 1 | -0/+7 | |
- Pre-fork 'processes.spare' application processes; - fork more processes to keep 'processes.spare' idle processes; - fork on-demand up to 'processes.max' count; - scale down idle application processes above 'processes.spare' after 'processes.idle_timeout'; - number of concurrently started application processes also limited by 'processes.spare' (or 1, if spare is 0). | |||||
2017-11-21 | Fixed crash on invalid JSON number. | Valentin Bartenev | 1 | -0/+4 | |
2017-09-15 | Introducing application timeout. | Max Romanov | 1 | -1/+1 | |
2017-09-12 | Fixed error messages grammar. | Nick Shadrin | 1 | -49/+48 | |
2017-08-16 | Introduced nxt_conf_get_array_element(). | Valentin Bartenev | 1 | -0/+19 | |
2017-08-16 | Object mapping interface extended with more string types. | Valentin Bartenev | 1 | -6/+41 | |
2017-08-15 | Fixed building on ppc. | Valentin Bartenev | 1 | -1/+1 | |
2017-08-11 | Controller: more HTTP headers and detailed JSON parsing errors. | Valentin Bartenev | 1 | -37/+320 | |
2017-08-11 | Fixed parsing of JSON encoded UTF-16 surrogate pairs. | Valentin Bartenev | 1 | -16/+13 | |
2017-08-08 | Fixed JSON escape sequence parsing. | Valentin Bartenev | 1 | -2/+4 | |
2017-08-02 | Using old-style packed attribute specification for compatibility. | Max Romanov | 1 | -4/+4 | |
2017-07-25 | Fixed building on Solaris by Sun C. | Max Romanov | 1 | -2/+2 | |
2017-07-18 | Configuration: improved declaration of short strings. | Valentin Bartenev | 1 | -10/+14 | |
2017-07-18 | Configuration: reduced memory consumption of long strings. | Valentin Bartenev | 1 | -24/+33 | |
2017-07-18 | Configuration: reduced memory consumption. | Valentin Bartenev | 1 | -4/+4 | |
2017-07-10 | Configuration: nxt_conf_map_object() improvements. | Valentin Bartenev | 1 | -14/+9 | |
2017-07-07 | Controller: relaxed JSON parser. | Valentin Bartenev | 1 | -80/+72 | |
Now it allows commas after the last elements in objects and arrays, as it's a common Igor's mistake. | |||||
2017-07-06 | Controller: sending JSON configuration to router. | Valentin Bartenev | 1 | -1/+65 | |
2017-07-06 | Fixed mapping of int32_t in nxt_conf_map_object(). | Valentin Bartenev | 1 | -1/+1 | |
2017-07-05 | Configuration: basic validation of schema. | Valentin Bartenev | 1 | -51/+85 | |
2017-06-29 | Added nxt_msec_t element to nxt_conf_map_object(). | Igor Sysoev | 1 | -9/+15 | |
2017-06-28 | Configuration: reduced names of structures, functions, and macros. | Valentin Bartenev | 1 | -0/+1882 | |