net/httpserver.lua
Fri, 23 Mar 2018 13:20:19 +0100 Kim Alvefur net.httpserver: Make function local, fixes loading since there is no environment [luacheck]
Wed, 28 Feb 2018 20:06:26 +0100 Kim Alvefur vairious: Add annotation when an empty environment is set [luacheck]
Sat, 16 Apr 2016 21:08:05 +0100 Emmanuel Gil Peyrot Update every link to the documentation to use HTTPS
Sat, 21 Feb 2015 10:45:24 +0100 Kim Alvefur net.*: Remove use of module() function
Sun, 29 Apr 2012 02:10:55 +0100 Matthew Wild Merge 0.9->trunk
Sat, 28 Apr 2012 16:41:35 +0100 Matthew Wild net.httpserver: Add compatibility stub
Sun, 22 Apr 2012 23:43:34 +0500 Waqas Hussain net.httpserver: Comment dependency on connlisteners. Further cleanup to follow.
Fri, 09 Dec 2011 11:38:35 +0500 Waqas Hussain net.httpserver: Removed unused import.
Mon, 21 Mar 2011 19:35:53 +0000 Matthew Wild net.httpserver: Revert commit eccd3c87d717 which has since been fixed in a better way
Wed, 23 Feb 2011 07:26:54 +0500 Waqas Hussain net.httpserver: Removed an unused function.
Wed, 23 Feb 2011 00:31:12 +0000 Matthew Wild net.httpserver: Fix HTTP after commit c299726d2b4e and add a 500 error response if a request handler fails to make a response to the client
Wed, 23 Feb 2011 02:03:55 +0500 Waqas Hussain net.httpserver: Catch errors thrown in HTTP handlers.
Sun, 13 Feb 2011 22:57:17 +0000 Matthew Wild net.httpserver: Log when an error occurs inside a HTTP request handler
Wed, 05 Jan 2011 06:34:23 +0500 Waqas Hussain net.httpserver: Removed unused import and variables.
Wed, 05 Jan 2011 06:26:49 +0500 Waqas Hussain net.httpserver: Changed an unnecessary global access.
Wed, 05 Jan 2011 06:23:17 +0500 Waqas Hussain net.httpserver: Decode percent-encoded characters in URL path.
Fri, 17 Dec 2010 01:24:59 +0000 Matthew Wild net.httpserver: Default 'ports' = {5280}
Sat, 16 Oct 2010 23:00:42 +0500 Waqas Hussain Monster whitespace commit (beware the whitespace monster).
Fri, 17 Sep 2010 04:06:07 +0500 Waqas Hussain net.httpserver: Removed old HTTP parser, and updated to use util.httpstream.
Sat, 28 Aug 2010 23:41:09 +0100 Matthew Wild net.httpserver: Join multiple headers with the same name as per RFC (thanks darkhippo)
Mon, 22 Mar 2010 17:24:55 +0000 Matthew Wild Merge 0.6->0.7
Mon, 22 Mar 2010 17:06:15 +0000 Matthew Wild Update copyright headers for 2010
Wed, 03 Mar 2010 22:05:05 +0000 Matthew Wild Merge 0.6.2/waqas with 0.6.2/MattJ
Thu, 21 Jan 2010 14:53:01 +0000 Matthew Wild net.httpserver: More robust handling of headers split across multiple packets
Thu, 21 Jan 2010 13:14:52 +0000 Matthew Wild net.httpserver: Make it possible to return responses with no body
Thu, 21 Jan 2010 13:10:13 +0000 Matthew Wild net.httpserver: Close connection on invalid HTTP status line
Thu, 10 Dec 2009 16:36:33 +0500 Waqas Hussain net.httpserver: Removed mime handling (now in mod_httpserver). Unknown dynamic content is now always served as text/html.
Fri, 04 Dec 2009 09:48:08 -0800 Paul Aurich Disable SSLv2 by default, it's known to be insecure.
Wed, 02 Dec 2009 18:02:47 +0000 Matthew Wild net.httpserver: Quick fix to set the correct Content-Type on simple (string) responses, for a few known types
Mon, 08 Feb 2010 11:22:21 +0000 Matthew Wild net.httpserver: Make request.conn be the server.lua conn instead of the underlying socket (more useful this way)
Mon, 08 Feb 2010 11:20:19 +0000 Matthew Wild net.httpserver: Trailing whitespace
Thu, 21 Jan 2010 14:53:01 +0000 Matthew Wild net.httpserver: More robust handling of headers split across multiple packets
Thu, 21 Jan 2010 13:14:52 +0000 Matthew Wild net.httpserver: Make it possible to return responses with no body
Thu, 21 Jan 2010 13:10:13 +0000 Matthew Wild net.httpserver: Close connection on invalid HTTP status line
Sun, 27 Dec 2009 10:09:22 +0500 Waqas Hussain net.httpserver: Optimized response serialization.
Thu, 17 Dec 2009 20:10:11 +0000 Matthew Wild net.httpserver: Fix usage of old connection API syntax
Thu, 10 Dec 2009 16:36:33 +0500 Waqas Hussain net.httpserver: Removed mime handling (now in mod_httpserver). Unknown dynamic content is now always served as text/html.
Fri, 04 Dec 2009 09:48:08 -0800 Paul Aurich Disable SSLv2 by default, it's known to be insecure.
Wed, 02 Dec 2009 18:03:10 +0000 Matthew Wild net.httpserver: Fix to work with new server API
Wed, 02 Dec 2009 18:02:47 +0000 Matthew Wild net.httpserver: Quick fix to set the correct Content-Type on simple (string) responses, for a few known types
Sun, 22 Nov 2009 04:44:26 +0000 Matthew Wild net.httpserver, net.http: Update for new net.server API (untested)
Sun, 01 Nov 2009 19:41:49 +0000 Matthew Wild net.httpserver: Pass correct connection object to disconnect listener, which fixes a small leak
Mon, 19 Oct 2009 17:56:39 +0100 Matthew Wild net.httpserver: Pass on interface option from new_from_config() (thanks Chris)
Sat, 03 Oct 2009 00:54:58 +0100 Matthew Wild net.httpserver: Allow modules registering to provide more than just a default path when using httpserver.new_from_config
Tue, 11 Aug 2009 20:49:19 +0100 Matthew Wild net.httpserver: Allow overriding default request handler
Tue, 11 Aug 2009 19:40:38 +0100 Matthew Wild net.httpserver: Don't log response bodies!
Wed, 05 Aug 2009 03:07:45 +0100 Matthew Wild net.httpserver: Allow response.body to be a non-string
Mon, 27 Jul 2009 14:26:59 +0100 Matthew Wild net.httpserver: Reduce log level of 'request left open' message
Tue, 14 Jul 2009 21:03:30 +0100 Matthew Wild net.httpserver: Allow specification of the default base URL when using new_from_config()
Sun, 12 Jul 2009 15:20:43 +0100 Matthew Wild net.httpserver: Add helper function to set up HTTP server according to given config options
Fri, 10 Jul 2009 03:08:38 +0100 Matthew Wild Add copyright header to those files missing one
Sun, 28 Jun 2009 14:17:07 +0100 Matthew Wild net.httpserver: Don't upset logger when response is nil
Tue, 05 May 2009 14:20:26 +0100 Matthew Wild Merge with 0.4
Mon, 04 May 2009 20:35:44 +0100 Matthew Wild net.httpserver: Fix for urlencoding to always produce 2 digits
Mon, 04 May 2009 19:57:05 +0100 Matthew Wild Merge with 0.4
Mon, 04 May 2009 19:53:31 +0100 Matthew Wild net.http, net.httpserver: Remove urlcodes table... it really isn't needed (thanks Jan Harkes)
Wed, 22 Apr 2009 20:31:45 +0100 Matthew Wild net.httpserver: Fix potential nil access
Thu, 23 Apr 2009 21:06:08 +0100 Matthew Wild Merge with 0.4 branch
Thu, 23 Apr 2009 21:04:56 +0100 Matthew Wild net.httpserver: Fix traceback when sending response to a destroyed request
Thu, 23 Apr 2009 21:04:07 +0100 Matthew Wild net.httpserver: Don't log the response body (can be binary data...)
less more (0) -60 tip