mirror of
https://github.com/jazzband/django-axes.git
synced 2026-03-16 22:30:23 +00:00
Created tag 0.1.1-rc1
--HG-- extra : convert_revision : svn%3A6515f4ec-ab5a-11dd-8fd9-859366ca643a/trunk%404
This commit is contained in:
parent
8dd2141605
commit
e1e68ee2c0
9 changed files with 29 additions and 5 deletions
9
README
9
README
|
|
@ -1,4 +1,7 @@
|
|||
django-axes is a very simple way for you to keep track of failed login attempts, both for the Django admin and for the rest of your site.
|
||||
django-axes is a very simple way for you to keep track of failed login attempts, both for the Django admin and for the rest of your site. The name is sort of a geeky pun, since `axes` can be read interpretted as:
|
||||
|
||||
# "access", as in monitoring access attempts
|
||||
# "axes", as in tools you can use hack (generally on wood). In this case, however, the "hacking" part of it can be taken a bit further: `django-axes` is intended to help you *stop* people from hacking (popular media definition) your website. Hilarious, right? That's what I thougth too!
|
||||
|
||||
==Requirements==
|
||||
|
||||
|
|
@ -24,7 +27,7 @@ Download the latest `.tar.gz` file from the downloads section and extract it som
|
|||
|
||||
===Checkout from Subversion===
|
||||
|
||||
Execute the following command (or use the equivalent function in a GUI such as TortoiseSVN), and make sure you're checking `django-axes` out somewhere on the `PYTHONPATH`.
|
||||
Execute the following command (or use the equivalent function in a GUI such as TortoiseSVN or Versions), and make sure you're checking `django-axes` out somewhere on the `PYTHONPATH`.
|
||||
|
||||
{{{
|
||||
svn co http://django-axes.googlecode.com/svn/trunk/axes axes
|
||||
|
|
@ -79,4 +82,4 @@ You have a couple options available to you to customize `django-axes` a bit. Th
|
|||
|
||||
==Usage==
|
||||
|
||||
Using `django-axes` is extremely simple. Once you install the application and the middleware, all you need to do is periodically check the Access Attempts section of the admin.
|
||||
Using `django-axes` is extremely simple. Once you install the application and the middleware, all you need to do is periodically check the Access Attempts section of the admin. A log file is also created for you to keep track of the events surrounding failed login attempts. This log file can be found in your Django project directory, by the name of `axes.log`. In the future I plan on offering a way to customize options for logging a bit more.
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
VERSION = (0, 1, 1, 'alpha')
|
||||
VERSION = (0, 1, 1, 'rc1')
|
||||
|
||||
def get_version():
|
||||
return '%s.%s.%s-%s' % VERSION
|
||||
|
|
|
|||
BIN
dist/django-axes-0.1.1-rc1.tar.bz2
vendored
Normal file
BIN
dist/django-axes-0.1.1-rc1.tar.bz2
vendored
Normal file
Binary file not shown.
7
dist/django-axes-0.1.1-rc1.tar.bz2.asc
vendored
Normal file
7
dist/django-axes-0.1.1-rc1.tar.bz2.asc
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.9 (GNU/Linux)
|
||||
|
||||
iEYEABECAAYFAkk6Tm4ACgkQPhnaFjTndGD1GgCeN3PvaokGRmOvZYsyo57a2mbs
|
||||
ptkAoJWH4bqam1zdCduV1OKB7W+jMSAM
|
||||
=/uKH
|
||||
-----END PGP SIGNATURE-----
|
||||
BIN
dist/django-axes-0.1.1-rc1.tar.gz
vendored
Normal file
BIN
dist/django-axes-0.1.1-rc1.tar.gz
vendored
Normal file
Binary file not shown.
7
dist/django-axes-0.1.1-rc1.tar.gz.asc
vendored
Normal file
7
dist/django-axes-0.1.1-rc1.tar.gz.asc
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.9 (GNU/Linux)
|
||||
|
||||
iEYEABECAAYFAkk6TmoACgkQPhnaFjTndGApyACfaiDRGIMCjw4xUiv8Elcw4xs2
|
||||
dHgAoPcQYJFqpANkysZzmCMa3kuSwBdG
|
||||
=fW02
|
||||
-----END PGP SIGNATURE-----
|
||||
BIN
dist/django-axes-0.1.1-rc1.zip
vendored
Normal file
BIN
dist/django-axes-0.1.1-rc1.zip
vendored
Normal file
Binary file not shown.
7
dist/django-axes-0.1.1-rc1.zip.asc
vendored
Normal file
7
dist/django-axes-0.1.1-rc1.zip.asc
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.9 (GNU/Linux)
|
||||
|
||||
iEYEABECAAYFAkk6TnIACgkQPhnaFjTndGA5RwCfbMbzIHDomconpo9fv5Aiv2qE
|
||||
QT0AnjE8V4JDxjsZ4Y8UAzERYGBT2/s+
|
||||
=d9lj
|
||||
-----END PGP SIGNATURE-----
|
||||
2
setup.py
2
setup.py
|
|
@ -46,7 +46,7 @@ setup(
|
|||
data_files=data_files,
|
||||
description="Keep track of failed login attempts in Django-powered sites.",
|
||||
long_description="""
|
||||
django-axes is a very simple way for you to keep track of failed login attempts, both for the Django admin and for the rest of your site.
|
||||
django-axes is a very simple way for you to keep track of failed login attempts, both for the Django admin and for the rest of your site. All you need to do is install the application, a middleware, and syncdb!
|
||||
""",
|
||||
keywords='django, security, authentication',
|
||||
classifiers=[
|
||||
|
|
|
|||
Loading…
Reference in a new issue