app/soc/middleware/value_store.py
changeset 2906 6fb53ed7aff4
parent 2903 bf17c6a843dd
child 2910 60d56cf01b54
--- a/app/soc/middleware/value_store.py	Sat Sep 12 14:38:42 2009 +0200
+++ b/app/soc/middleware/value_store.py	Sat Sep 12 14:42:37 2009 +0200
@@ -50,11 +50,28 @@
     core.endRequest(request)
 
   def process_request(self, request):
+    """Called when a request is made.
+
+    See the Django middleware documentation for an explanation of
+    the method signature.
+    """
     self.start(request)
 
   def process_response(self, request, response):
+    """Called when a response is returned.
+
+    See the Django middleware documentation for an explanation of
+    the method signature.
+    """
+
     self.end(request)
     return response
 
   def process_exception(self, request, exception):
+    """Called when an uncaught exception is raised.
+
+    See the Django middleware documentation for an explanation of
+    the method signature.
+    """
+
     self.end(request)