diff --git a/README b/README index 75c471a..bea4419 100644 --- a/README +++ b/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. \ No newline at end of file +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. \ No newline at end of file diff --git a/axes/__init__.py b/axes/__init__.py index 498db06..35e04e4 100644 --- a/axes/__init__.py +++ b/axes/__init__.py @@ -1,4 +1,4 @@ -VERSION = (0, 1, 1, 'alpha') +VERSION = (0, 1, 1, 'rc1') def get_version(): return '%s.%s.%s-%s' % VERSION diff --git a/dist/django-axes-0.1.1-rc1.tar.bz2 b/dist/django-axes-0.1.1-rc1.tar.bz2 new file mode 100644 index 0000000..aac2907 Binary files /dev/null and b/dist/django-axes-0.1.1-rc1.tar.bz2 differ diff --git a/dist/django-axes-0.1.1-rc1.tar.bz2.asc b/dist/django-axes-0.1.1-rc1.tar.bz2.asc new file mode 100644 index 0000000..8f6b9e2 --- /dev/null +++ b/dist/django-axes-0.1.1-rc1.tar.bz2.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEABECAAYFAkk6Tm4ACgkQPhnaFjTndGD1GgCeN3PvaokGRmOvZYsyo57a2mbs +ptkAoJWH4bqam1zdCduV1OKB7W+jMSAM +=/uKH +-----END PGP SIGNATURE----- diff --git a/dist/django-axes-0.1.1-rc1.tar.gz b/dist/django-axes-0.1.1-rc1.tar.gz new file mode 100644 index 0000000..61d445f Binary files /dev/null and b/dist/django-axes-0.1.1-rc1.tar.gz differ diff --git a/dist/django-axes-0.1.1-rc1.tar.gz.asc b/dist/django-axes-0.1.1-rc1.tar.gz.asc new file mode 100644 index 0000000..94ed7d4 --- /dev/null +++ b/dist/django-axes-0.1.1-rc1.tar.gz.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEABECAAYFAkk6TmoACgkQPhnaFjTndGApyACfaiDRGIMCjw4xUiv8Elcw4xs2 +dHgAoPcQYJFqpANkysZzmCMa3kuSwBdG +=fW02 +-----END PGP SIGNATURE----- diff --git a/dist/django-axes-0.1.1-rc1.zip b/dist/django-axes-0.1.1-rc1.zip new file mode 100644 index 0000000..2639755 Binary files /dev/null and b/dist/django-axes-0.1.1-rc1.zip differ diff --git a/dist/django-axes-0.1.1-rc1.zip.asc b/dist/django-axes-0.1.1-rc1.zip.asc new file mode 100644 index 0000000..a4d2a1f --- /dev/null +++ b/dist/django-axes-0.1.1-rc1.zip.asc @@ -0,0 +1,7 @@ +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.9 (GNU/Linux) + +iEYEABECAAYFAkk6TnIACgkQPhnaFjTndGA5RwCfbMbzIHDomconpo9fv5Aiv2qE +QT0AnjE8V4JDxjsZ4Y8UAzERYGBT2/s+ +=d9lj +-----END PGP SIGNATURE----- diff --git a/setup.py b/setup.py index 9576848..5157cc2 100644 --- a/setup.py +++ b/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=[