From f92e4847f138c03abac09767a2dea05b236091be Mon Sep 17 00:00:00 2001 From: Roland Hedberg Date: Tue, 27 Jul 2010 21:45:48 +0200 Subject: [PATCH] Changed name to be able to distinguish easily --- example/idp/idp.py | 2 +- example/sp/sp.conf | 2 +- example/sp/sp.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/example/idp/idp.py b/example/idp/idp.py index 2e0c642..f6297c5 100755 --- a/example/idp/idp.py +++ b/example/idp/idp.py @@ -177,7 +177,7 @@ def application(environ, start_response): from repoze.who.config import make_middleware_with_config APP_WITH_AUTH = make_middleware_with_config(application, {"here":"."}, - './who.ini', log_file="who.log") + './who.ini', log_file="who_idp.log") # ---------------------------------------------------------------------------- diff --git a/example/sp/sp.conf b/example/sp/sp.conf index 6a80564..00573a2 100644 --- a/example/sp/sp.conf +++ b/example/sp/sp.conf @@ -4,7 +4,7 @@ "sp":{ "name" : "Rolands SP", "endpoints":{ - "assertion_consumer_service": ["http://lingon.catalogix.se:8087/"], + "assertion_consumer_service": ["http://localhost:8087/"], }, "required_attributes": ["surname", "givenname", "edupersonaffiliation"], "optional_attributes": ["title"], diff --git a/example/sp/sp.py b/example/sp/sp.py index 34664ce..2b19539 100755 --- a/example/sp/sp.py +++ b/example/sp/sp.py @@ -111,7 +111,7 @@ def application(environ, start_response): from repoze.who.config import make_middleware_with_config app_with_auth = make_middleware_with_config(application, {"here":"."}, - './who.ini', log_file="who.log") + './who.ini', log_file="who_sp.log") # ---------------------------------------------------------------------------- PORT = 8087