-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
51 lines (37 loc) · 1.47 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
THIS BREAKS ALL BACKWARDS COMPATIBILITY.
This means that existing auth systems need to be modified - check the install
instructions as you'll need to slightly modify your SQL, do some imports,
and make sure you're running Velruse trunk.
Authentication, Form Library, I18N/L10N, Flash Message Template
(not associated with Pyramid, a Pylons project)
Uses pyramid_routesalchemy
* Authentication
Authentication has a single authentication id which can have multiple
associated credentials. A user can create a username and associate their
Facebook and Google login records with their current record and log in
with any of them. It is planned that Apex will act as an endpoint for
multi-domain multi-site installations - allowing one to associate a login
account from one domain to another.
Local authentication uses salt + BCrypt
http://codahale.com/how-to-safely-store-a-password/
Velruse is used for OpenID/OpenAuth providers and supports
* Google
* Facebook
* Twitter
* Yahoo
* Microsoft Live
* Bitbucket
* Github
* Identi.ca
* Last.fm
* LinkedIn
* Any OpenID provider
Ability to overload the login form, extend the AuthUser class through
polymorphism or a Foreign Key user profile table.
* Form Library
WTForms is used to help those transitioning over from Django to Pyramid.
* I18N/L10N
Babel is used to support Internationalization and Localization.
* Flash Messages
Templates and helpers for Mako and Jinja2 are included to support Flash
Messages in your application.