| 24 months | Manlio | Updated the BUGS file. |
| 24 months | Manlio | Reverted changes made in changeset c4e4a1c829b3, since it causes troubles. |
| 24 months | Manlio | Implemented wsgi.file_wrapper. |
| 24 months | Manlio | Bug fix: it was not possible to specify a timeout equal to 0 in ngx.poll. |
| 24 months | Manlio | Bug fix: we need to call Py_EndInterpreter, otherwise destructors of global objects are not executed. |
| 24 months | Manlio | Added a new implementation for the curl client, since in the `curl_client` module there is a memory leak. |
| 24 months | Manlio | Bug fix: there was a memory leak introduced in changeset ea81a71979b8. |
| 24 months | Manlio | Added more examples about the use of the ngx.poll extension. |
| 24 months | Manlio | Some improvements to code organization, logging and robustness. |
| 2 years | Manlio | Removed the ngx.sleep extension, since the same functionality can be obtained with the ngx.poll extension. |
| 2 years | Manlio | Changed the API and the internal implementation of the ngx.poll extension. |
| 2 years | Manlio | Bug fix: mod_wsgi did not compile on Mac OS X with gcc 4.0.1. |
| 2 years | Manlio | Implemented the ngx.poll extension, that allows WSGI applications to asynchronously poll for I/O events. |
| 2 years | Manlio | Implemented the ngx.sleep extension, for supporting asynchronous WSGI applications. |
| 2 years | Manlio | Reorganized the code, by moving all the HTTP request related functions to a separate source file. |
| 2 years | Manlio | Minor corrections. |
| 2 years | Manlio | Added tag 0.0.6 for changeset 23a0eba07d2d. |
| 2 years | Manlio | Bug fix: incorrect syntax in the config file that prevented a correct compilation on Mac OS X. |
| 2 years | Manlio | Fixed the syntax in the directives documentation. |
| 2 years | Manlio | Updated the README, BUGS and TODO. |
| 2 years | Manlio | Pointed out problems with buffer chains in the nginx-generator example. |
| 2 years | Manlio | Bug fix: the value of PYTHON_LDFLAGS in the config script does not includes all the required libraries. |
| 2 years | Manlio | Updated the NEWS. |
| 2 years | Manlio | Updated the patches for support to nginx development branch and older versions. |
| 2 years | Manlio | Added support for nginx 0.5.34 and dropped support for older versions. |
| 2 years | Manlio | Bug fix: incorrect error handling for ngx_set_environment that may cause a segmentation fault (since the Python interpreter is not initialized). |
| 2 years | Manlio | Bug fix: incorrect handling of empty array configuration directive in ngx_wsgi script. |
| 2 years | Manlio | Added a simple setup file for the post installation of mod_wsgi for Nginx. |
| 2 years | Manlio | Added copyroght information to the bin scripts. |
| 2 years | Manlio | Updated the TODO, for the next version. |
| 2 years | Manlio | Bug fix: SERVER_PORT must be a string, not an integer in ngx_wsgitest script. |
| 2 years | Manlio | Wrong directive name (wsgi_vars instead of wsgi_var). |
| 2 years | Manlio | Added support for the wsgi_middleware directive in the bin scripts. |
| 2 years | Manlio | Always save the process id, even if not daemon. |
| 2 years | Manlio | Several corrections for the bin scripts. |
| 2 years | Manlio | Bug fix: invalid command type for directive wsgi_write_buffer_size. |
| 2 years | Manlio | Bug fix: unhandler error for PyModule_AddObject. |
| 2 years | Manlio | Bug fix: incorrect initialization of nginx buf in the write callable. |
| 2 years | Manlio | Minor corrections. |
| 2 years | Manlio | Added wsgi_optimize_send_headers directive. |
| 2 years | Manlio | Added experimental support for interpreter finalization. |
| 2 years | Manlio | Splitted wsgi_log_python_error into two separate functions, for improving the reusability. |
| 2 years | Manlio | Merge in the environment dictionary wsgi_vars after HTTP headers, so that received headers can be overridden. |
| 2 years | Manlio | Since the module name of a WSGI application does not change, call wsgi_module_name at configuration time and not at request time. |
| 2 years | Manlio | Renamed the wsgi_params directive to wsgi_var. |
| 2 years | Manlio | Improved documentation of supported directives. |
| 2 years | Manlio | Added the wsgi_allow_ranges directive, for integrated support to partial HTTP requests. |
| 2 years | Manlio | Bug fix: buf->start and buf->end must have correct values, not NULL. |
| 2 years | Manlio | Updated the NEWS file. |
| 2 years | Manlio | Commented the wsgi_middleware directives in the example configuration, since they require extra packages that may not be installed in the system. |
| 2 years | Manlio | Removed the simple testing code from the examples, since now we can use ngx_wsgitest. |
| 2 years | Manlio | Added the ngx_wsgitest, for running a WSGI application in a testing environment. |
| 2 years | Manlio | ngx_str_t strings created in configuration are always null terminated, so we can avoid to allocate a new buffer in ngx_conf_set_c_str_slot. |
| 2 years | Manlio | Removed the ngx_copy_pointer function. |
| 2 years | Manlio | Added the ngx_wsgiref.py script, for quick test of WSGI applications. |
| 2 years | Manlio | Used NGX_ADDON_DEPS instead of HTTP_DEPS in config file to declare mod_wsgi internal dependencies. |
| 2 years | Manlio | wsgi_params are now fully configurable in the ngx_wsgi script. |
| 2 years | Manlio | Added preliminary support for wsgi_params in the ngx_wsgi script. |
| 2 years | Manlio | Small code reorganization for the ngx_wsgi script. |
| 2 years | Manlio | Added the first draft of the ngx_wsgi wrapper. |