From 628a9f9bec5a4fc6c0ae02b9225d1b99d702ca02 Mon Sep 17 00:00:00 2001 From: Jesse Andrews Date: Sun, 24 Apr 2011 13:11:49 -0700 Subject: httplib2 isn't used --- README.md | 8 ++++---- echo/echo/echo.py | 2 +- pip-requires | 1 - 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 137df46a..8ce1e29a 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Keystone is a proposed independent authentication service for [OpenStack](http:/ This initial proof of concept aims to address the current use cases in Swift and Nova which are: -* ReST-based, token auth for Swift +* REST-based, token auth for Swift * many-to-many relationship between identity and tenant for Nova. @@ -22,7 +22,6 @@ DEPENDENCIES: * bottle * eventlet -* httplib2 * lxml * Paste * PasteDeploy @@ -40,7 +39,6 @@ Install http://pypi.python.org/pypi/setuptools sudo easy_install bottle sudo easy_install eventlet - sudo easy_install httplib2 sudo easy_install lxml sudo easy_install paste sudo easy_install pastedeploy @@ -60,6 +58,7 @@ RUNNING KEYSTONE: $ python setup.py build $ sudo python setup.py install + $ cd keystone $ python identity.py @@ -67,7 +66,8 @@ RUNNING TEST SERVICE: --------------------- $ python setup.py build - $ sudo python setup.py install + $ sudo python setup.py install + $ cd echo/echo $ python echo.py diff --git a/echo/echo/echo.py b/echo/echo/echo.py index 677e16f0..a600b0d0 100644 --- a/echo/echo/echo.py +++ b/echo/echo/echo.py @@ -18,7 +18,7 @@ from os import path import eventlet from eventlet import wsgi -from httplib2 import Http +#from httplib2 import Http from lxml import etree from paste.deploy import loadapp try: diff --git a/pip-requires b/pip-requires index 3be5e46c..2388ec9b 100644 --- a/pip-requires +++ b/pip-requires @@ -1,6 +1,5 @@ bottle eventlet -httplib2 lxml paste pastedeploy -- cgit