Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-05-08 | Update signal syntax for django 4.2 | Magnus Hagander | |
2023-06-07 | Sync up to latest version of pgweb auth plugin (again) | Magnus Hagander | |
2023-06-07 | Sync up to latest version of pgweb auth plugin | Magnus Hagander | |
2020-08-11 | Import latest version of community auth plugin | Magnus Hagander | |
This includes an URL endpoint to receive push updates (enabled inividually for each instance) when using postgresql.org community authentication. | |||
2020-07-13 | Remove unused imports | Magnus Hagander | |
2020-04-04 | User.is_authenticated is no longer a callable in newer django | Magnus Hagander | |
2020-02-26 | Sync up postgresql community auth plugin to latest-and-greatest | Magnus Hagander | |
2019-11-01 | Switch to using pycryptodome instead of pycrypto | Magnus Hagander | |
pycrypto is not being maintained, and pycryptodome is theoretically a drop-in replacement (in practice, it seems it was close) | |||
2019-01-10 | Update authentication plugin for py3 | Magnus Hagander | |
Lots of encoding things around the encryption and base64 changes needed. | |||
2019-01-10 | Import related fixes from 2to3 | Magnus Hagander | |
2019-01-04 | Switch to using requests for http requests | Magnus Hagander | |
It's a lot cleaner API than urllib2, and will be easier once we port version. Hopefully this doesn't break something. Probably it does break encoding somewhere, because py2. | |||
2018-12-15 | Replace usage of has_key() | Magnus Hagander | |
It has been deprecated, and instead we should use "in" and "not in", so make that change across the board. | |||
2018-12-14 | Fix blankline related warnings | Magnus Hagander | |
2018-12-14 | Fix comment warnings | Magnus Hagander | |
In passing remove some comments that were pointless | |||
2018-12-14 | Fix spacing around operators | Magnus Hagander | |
2018-12-14 | Manual fix of further whitespace issues | Magnus Hagander | |
Many of these were masked with the using of tabs, but were basically incorrect all the time. It's all in places where whitespace doesn't actually matter, but let's try to match up to PEP8. | |||
2018-12-14 | Replace tabs with spaces | Magnus Hagander | |
In an effort to close up with PEP8, we should use spaces for indent rather than tabs... Time to update your editor config! | |||
2018-12-12 | Make pg community auth optional | Magnus Hagander | |
Adds very basic support for running without pg community auth. No support for signup, password change, or anything like that yet, but at least users can be managed in /admin/ for dev environments. | |||
2018-01-13 | Fix typo in comment | Magnus Hagander | |
2017-08-28 | Support setting up without community auth without ugly hacks | Magnus Hagander | |
2015-12-12 | Replace simpljson imports with json | Magnus Hagander | |
This has been in standard python since 2.6, and we don't really care about supporting anything older than that (even our old and soon to be upgraded environments use 2.7) | |||
2015-04-21 | Return proper errorcodes from auth plugin | Magnus Hagander | |
Instead of raising an exception which will cause both a server log and an email to be sent, return a proper http 400 message when the incoming authentication request is bad. This will also show the proper error message to the client, instead of a generic internal server error. | |||
2015-04-21 | Removed unused variable | Magnus Hagander | |
2014-12-30 | Add suppot for importing upstream users | Magnus Hagander | |
Initially, support this for invoices and for managers of sponsorships, which are the most likely usecases for it. More usecases can be added in the future as they are found. | |||
2014-01-01 | Remove unused code and fix bugs uncovered by explicit importing | Magnus Hagander | |
2013-11-07 | Give a nicer error than internal server error on duplicate email | Magnus Hagander | |
This can happen in the pgeu system due to some legacy data. We have a constraint in the db preventing it from happen, which turns it into an Internal Server Error. Change that so we instead give a message that tells people to email webmaster@ to get it fixed. | |||
2013-06-20 | Update community authentication to use encrypted parameters for redirection | Magnus Hagander | |
2011-12-28 | Implement postgresql.org community authentication 2.0 | Magnus Hagander | |
2010-04-14 | Enforce lowercase usernames | Magnus Hagander | |
2009-02-20 | Move connection string for authentication services to config file | Magnus Hagander | |
2009-02-20 | Inherit authentication from ModelBackend, should fix admin permissions | Magnus Hagander | |
issues. | |||
2009-02-20 | Add community login auth module | Magnus Hagander | |