Path to this page:
Subject: CVS commit: pkgsrc/www/py-cherrypy
From: Adam Ciarcinski
Date: 2018-04-25 14:24:40
Message id: 20180425122440.3B79DFBEC@cvs.NetBSD.org
Log Message:
py-cherrypy: updatede to 14.2.0
v14.2.0
* :issue:1680 via :pr:1683: HTTP Basic Auth supports :rfc:7617 UTF-8
charset decoding where possible. Uses latin1 as a fallback.
v14.1.0
* :cr-pr:37: Add support for peercreds lookup over UNIX domain socket.
This enables app to automatically identify "who's on the other
end of the wire".
This is how you enable it::
server.peercreds: True
server.peercreds_resolve: True
The first option will put remote numeric data to WSGI env vars:
app's PID, user's id and group.
Second option will resolve that into user and group names.
To prevent expensive syscalls, data is cached on per connection
basis.
Files: