Commit graph

1911 commits

Author SHA1 Message Date
Camilo Nova
a82ae1673a Improved code readability 2013-03-16 18:06:09 -05:00
Camilo Nova
eabb14cd0f Improved code readability 2013-03-16 18:06:01 -05:00
Camilo Nova
3f860e9368 Improved documentation adding testing 2013-03-16 17:03:11 -05:00
Camilo Nova
ea170a2a2a Fixed setting env variable 2013-03-16 16:39:17 -05:00
Camilo Nova
01c539d90b Added missing python path 2013-03-16 16:34:18 -05:00
Camilo Nova
86bb31e195 Move travis.yml to root folder 2013-03-16 16:18:07 -05:00
Camilo Nova
f6914c3c08 Added travis support for testing 2013-03-16 16:15:54 -05:00
Camilo Nova
58c3a82881 Added better testing schema 2013-03-16 16:09:55 -05:00
Camilo Nova
cdb294f8f5 Updated version number 2013-03-16 11:52:28 -05:00
Alex Clark
8b81b8a8cd Release 1.3.0 2013-02-27 15:28:15 -05:00
Alex Clark ☺
22125e7deb Merge pull request #31 from csghormley/30_logging
To fix issue #30.
2013-02-27 12:19:46 -08:00
Christopher Ghormley
b3892da605 Refactor for better logical flow. 2013-02-20 23:08:28 +00:00
Christopher Ghormley
6888cf41cb Don't set up logging if settings module already has LOGGING defined.
If LOGGING is defined, you can add something like this to LOGGING.loggers:

        'axes.watch_login': {
            'handlers': ['syslog'],
            'level': 'INFO',
        },
2013-02-20 22:47:15 +00:00
Alex Clark
1ed2b5fb5a Release 1.2.9 2013-02-20 09:08:51 -05:00
Alex Clark
1a1a7243dc Release 1.2.9 2013-02-20 09:06:03 -05:00
Alex Clark ☺
a69f5f4e2b Merge pull request #28 from camilonova/fix-tests
Fix tests
2013-02-19 09:51:27 -08:00
Camilo Nova
1e2d521584 Added a test for a valid login case and make a better assert for the admin page because is not redirected to another url 2013-01-26 17:33:14 -05:00
Alex Clark ☺
b4ed181f2f Merge pull request #27 from camilonova/remove-mercurial
Removed unused mercurial files
2013-01-26 14:17:39 -08:00
Camilo Nova
cbc07d0f98 Cleaned up tests. Fixes #7 and closes #9 since it works with django-admin by default 2013-01-26 17:01:49 -05:00
Camilo Nova
b79c56ae7f Removed unused mercurial files 2013-01-26 16:03:51 -05:00
Alex Clark ☺
6eb24795fa Merge pull request #25 from jslatts/master
Pull request to increase http accept header length
2013-01-22 05:46:27 -08:00
Justin Slattery
184458416b Increased http accept header length per issue #24. 2013-01-22 08:38:29 -05:00
Alex Clark
bc4e0a5728 Release 1.2.7 2013-01-17 20:16:50 -05:00
Alex Clark ☺
4b2157aa1d Merge pull request #23 from rmagee/master
Reverse Proxy Support
2013-01-17 17:10:13 -08:00
Robert Magee
2a91f0bf80 accidentally committed this file. 2013-01-16 18:54:43 -07:00
Robert Magee
1705188c99 Added warning if config is wrong when configured for reverse proxy. 2013-01-16 18:40:50 -07:00
Robert Magee
aea343c191 forgot to pass request... 2013-01-16 18:03:15 -07:00
Robert Magee
f24ce0bea2 oooops. 2013-01-16 18:00:34 -07:00
Robert Magee
112b61b97b added get_ip function 2013-01-16 17:56:51 -07:00
Robert Magee
f4a7469e0e Added fixes for reverse proxy. 2013-01-16 17:32:38 -07:00
Alex Clark ☺
646609d9ba Merge pull request #22 from martey/point2github
Bitbucket and Google Code repositories are out of date
2012-12-13 13:28:00 -08:00
Martey Dodoo
64633a69aa Remove outdated Mercurial repos from README.
The Google Code and Bitbucket repositories have not been recently
updated. People who attempt to checkout the application from them will
receive outdated versions.
2012-12-13 16:11:22 -05:00
Alex Clark
61b17b4d56 Release 1.2.6 2012-12-04 12:33:57 -05:00
Alex Clark
8e026f54e5 Release 1.2.5 2012-11-28 21:09:25 -05:00
Alex Clark
0cf6f4f3b6 Release 1.2.5 2012-11-28 21:07:45 -05:00
Alex Clark
11c405b0c3 Release 1.2.5 2012-11-28 21:05:47 -05:00
Alex Clark
ae5934fbd1 Be more careful 2012-11-28 20:43:11 -05:00
Alex Clark
9bd1724aee Should be username not user, I think 2012-11-28 20:34:05 -05:00
Alex Clark ☺
f86f61a214 Merge pull request #20 from aclark4life/master
Don't import from axes
2012-11-28 06:49:21 -08:00
Alex Clark ☺
ce00422a72 Merge pull request #21 from kencochrane/master
New Lockout signal, Log all access attempts and unlock-able user accounts.
2012-11-27 08:39:24 -08:00
Ken Cochrane
3b58e9bc16 fixed a couple of issues from previous commits, imported signals in models to load them correctly. 2012-11-25 19:41:55 -05:00
Ken Cochrane
82296db695 Added ability to flag user accounts as unlockable, by having a field in the UserProfile called nolockout and set to True, if not there it is ignored 2012-11-25 18:39:14 -05:00
Ken Cochrane
4e16a85aed added ipaddress as a param to the user_locked_out signal; also added a signal reciever for user_logged_out so that we can log when the user logs out in the accessLog table. 2012-11-25 18:20:56 -05:00
Ken Cochrane
2b77673336 added a signal for when a user gets locked out 2012-11-25 17:42:55 -05:00
Ken Cochrane
9682a39528 Added AccessLog model to log all access attempts. refactored the models so there is a common abstract base class. Also added the model to django admin 2012-11-25 15:46:45 -05:00
Alex Clark ☺
f8028ddb63 Update setup.py
Don't import from axes
2012-10-25 19:46:37 -03:00
Josh VanderLinden
bd88ac1e7c Incorporating changes offered by kostrom in pull request #6 a flippin year ago... 2012-08-26 00:36:52 -06:00
Josh VanderLinden
6cb6b37a64 Merge pull request #15 from benkonrath/timezone
Use django timezone.now() to get current time.
2012-07-05 20:08:16 -07:00
Ben Konrath
9225835dd1 Use django timezone.now() to get current time.
Fallback to python datetime.now() when timezone is not available (Django <
1.4). This has been tested with Django 1.4 and 1.3.1.
2012-07-03 11:29:25 +02:00
Josh VanderLinden
6789ab6e24 Removed tag 1.2.4-rc1 2012-06-11 08:48:32 -06:00