pngtile/wsgi.py
changeset 148 2a2d2d6f6f80
parent 147 77330e43c855
child 149 176a656031cb
--- a/pngtile/wsgi.py	Mon Sep 15 01:23:01 2014 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,38 +0,0 @@
-"""
-    Our WSGI web interface, which can serve the JS UI and any .png tiles via HTTP.
-"""
-
-from werkzeug import Request, responder
-from werkzeug import exceptions
-
-from pngtile import handlers
-
-
-class WSGIApplication (object) :
-    """
-        Simple WSGI application invoking the werkzeug handlers
-    """
-
-    def __init__ (self, cache=None) :
-        """
-            Use given cache if any
-        """
-
-        self.cache = cache
-
-    @responder
-    def __call__ (self, env, start_response) :
-        """
-            Main WSGI entry point.
-
-            This is wrapped with werkzeug, so we can return a Response object
-        """
-
-        req = Request(env, start_response)
-        
-        try :
-            return handlers.handle_req(req, self.cache)
-
-        except exceptions.HTTPException, e :
-            return e
-