From ba3bd92c6b9b93a324854a02bfe77d25cf61c452 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Mon, 19 Sep 2011 10:17:10 +0200 Subject: [PATCH] fix some writing in the README file --- README.rst | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index f547239..cd803cb 100644 --- a/README.rst +++ b/README.rst @@ -1,14 +1,19 @@ -===================================== +=============================================== Mandaye - modular reverse proxy to authenticate -===================================== +=============================================== -Mandaye is a modular reverse proxy which could be couple -with an authentification system. -It dispatch HTTP requests to your applications and allow you to transform and filter -the request and the response. -Mandaye allows to couple your authentification provider with incompatible web applications. +Mandaye is a modular rewriting reverse proxy. Its main use is to add external +authentication systems to legacy application, i.e. SSO. +It dispatches HTTP requests to your applications and allow you to transform and +filter the request and the response. +Mandaye allows to couple your authentication provider with incompatible web +applications. -Mandaye is under the GNU AGPL version 3 licence. +Copying +------- + +This software copyrighted by Entr'ouvert and is licensed under the GNU AGPL +version 3 for distribution. Features -------- @@ -28,7 +33,7 @@ Installation Dependencies ------------ -You must install the following packages to use Madaye +You must install the following packages to use Mandaye * Gevent 0.13:: @@ -40,13 +45,17 @@ You must install the following packages to use Madaye From sources: http://pypi.python.org/pypi/poster/ Debian based distribution: apt-get install python-poster -You install all the django libraries quickly using pip:: + * SQLAlchemy 0.7.2:: - pip install gevent poster + From sources: http://pypi.python.org/pypi/SQLAlchemy + +You can install all those dependencies quickly using pip:: + + pip install gevent poster SQLAlchemy or easy_install:: - easy_install gevent poster + easy_install gevent poster SQLAlchemy Quick Start -----------