Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | modified auth/__init__ hooks to work better with multiple plugins. Removed ↵ | Rodney Ewing | 2013-05-24 | 1 | -83/+0 |
| | | | | auth/lib.py. And added a basic_extra_verification function that all plugins will use. | ||||
* | moved fake_login_attempt to plugins | Rodney Ewing | 2013-05-24 | 1 | -24/+0 |
| | |||||
* | moved bcrypt_gen_password_hash to basic_auth/tools and added ↵ | Rodney Ewing | 2013-05-24 | 1 | -16/+0 |
| | | | | gen_password_hash function to auth/__init__ | ||||
* | moved bcrypt_check_password to basic_auth/tools from auth/lib | Rodney Ewing | 2013-05-24 | 1 | -32/+0 |
| | |||||
* | moved forgot pw views to basic_auth plugin | Rodney Ewing | 2013-05-24 | 1 | -1/+1 |
| | |||||
* | Move DBModel._id -> DBModel.id | Sebastian Spaeth | 2012-12-21 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | We were refering to model._id in most of the code base as this is what Mongo uses. However, each use of _id required a) fixup of queries: e.g. what we did in our find() and find_one() functions moving all '_id' to 'id'. It also required using AliasFields to make the ._id attribute available. This all means lots of superfluous fixing and transitioning in a SQL world. It will also not work in the long run. Much newer code already refers to the objects by model.id (e.g. in the oauth plugin), which will break with Mongo. So let's be honest, rip out the _id mongoism and live with .id as the one canonical way to address objects. This commit modifies all users and providers of model._id to use model.id instead. This patch works with or without Mongo removed first, but will break Mongo usage (even more than before) I have not bothered to fixup db.mongo.* and db.sql.convert (which converts from Mongo to SQL) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> | ||||
* | Fix problems from pyflakes output | Will Kahn-Greene | 2012-06-03 | 1 | -1/+0 |
| | |||||
* | Changes for 293. Tests pass, encode UTF8 on password on registration (and ↵ | Derek Moore | 2012-03-12 | 1 | -2/+3 |
| | | | | also for subsequent logins once the user is created) is working. | ||||
* | It's 2012 all up in here | Christopher Allan Webber | 2012-02-02 | 1 | -1/+1 |
| | |||||
* | Dot-Notation for Users.fp_verification_key | Elrond | 2011-12-05 | 1 | -1/+1 |
| | |||||
* | Dot-Notation for Users.verification_key | Elrond | 2011-12-05 | 1 | -1/+1 |
| | |||||
* | Dot-Notation for Users.email | Elrond | 2011-12-05 | 1 | -2/+2 |
| | |||||
* | Dot-Notation for Users.username | Elrond | 2011-12-05 | 1 | -2/+2 |
| | |||||
* | Dot-Notation for "_id" | Elrond | 2011-11-15 | 1 | -2/+2 |
| | | | | | | | | | Note: Migrations can't use "Dot Notation"! Migrations run on pymongo, not mongokit. So they can't use the "Dot Notation". This isn't really a big issue, as migrations are anyway quite mongo specific. | ||||
* | Merge remote-tracking branch 'remotes/nyergler/pep8-ification' | Christopher Allan Webber | 2011-11-13 | 1 | -1/+2 |
|\ | | | | | | | | | | | | | | | Conflicts: mediagoblin/db/migrations.py mediagoblin/db/models.py mediagoblin/user_pages/views.py mediagoblin/util.py | ||||
| * | Whitespace and formatting cleanup. | Nathan Yergler | 2011-10-01 | 1 | -1/+2 |
| | | | | | | | | | | | | | | * Removed trailing whitespace * Line length < 80 where possible * Honor conventions on number of blank lines * Honor conventions about spaces around :, = | ||||
* | | Finished splitting util.py into separate files. | Aaron Williamson | 2011-10-01 | 1 | -1/+1 |
| | | |||||
* | | Moved common, translation, template, and url code out of util.py and into ↵ | Aaron Williamson | 2011-10-01 | 1 | -1/+2 |
|/ | | | | tools/[file].py | ||||
* | Merge branch 'gullydwarf-cfdv-f357_lost_password_functionality' | Christopher Allan Webber | 2011-09-08 | 1 | -5/+35 |
|\ | | | | | | | | | Conflicts: mediagoblin/auth/routing.py | ||||
| * | Adjusting spacing between function arguments | Christopher Allan Webber | 2011-09-07 | 1 | -1/+1 |
| | | |||||
| * | needed to access email_sender_address through mg_globals.app_config | Caleb Forbes Davis V | 2011-08-28 | 1 | -1/+1 |
| | | | | | | | | instead of mg_globals.email_sender_address. | ||||
| * | Adding fotgot password functionality | Alejandro Villanueva | 2011-08-28 | 1 | -5/+35 |
| | | |||||
* | | 508. Updates copyright/license information | Will Kahn-Greene | 2011-09-01 | 1 | -1/+1 |
|/ | |||||
* | removed email variables from globals module | Deb | 2011-07-12 | 1 | -1/+1 |
| | |||||
* | mediagoblin.globals->mediagoblin.mg_globals | Christopher Allan Webber | 2011-06-12 | 1 | -2/+2 |
| | |||||
* | Use render_template utility so we can test whether or not this email | Christopher Allan Webber | 2011-06-05 | 1 | -11/+10 |
| | | | | sends | ||||
* | Moved the verification url generation string template to a global variable | Christopher Allan Webber | 2011-06-05 | 1 | -5/+9 |
| | |||||
* | Refactored the sending of verification emails. | Aleksandar Micovic | 2011-06-02 | 1 | -0/+34 |
| | |||||
* | Changes Mediagoblin -> MediaGoblin. | Will Kahn-Greene | 2011-04-13 | 1 | -1/+1 |
| | |||||
* | Clarified documentation on fake_login_attempt and restored bcrypt import | Christopher Allan Webber | 2011-04-03 | 1 | -2/+5 |
| | |||||
* | Added a fake_login_attempt utility. | Christopher Allan Webber | 2011-04-03 | 1 | -1/+18 |
| | |||||
* | We should return a unicode object in bcrypt_gen_password_hash | Christopher Allan Webber | 2011-04-03 | 1 | -1/+1 |
| | |||||
* | Basic authentication tools using py-bcrypt | Christopher Allan Webber | 2011-04-02 | 1 | -0/+66 |