sites/irclogs.qmsk.net/handlers.py
branchsites
changeset 29 b06ff4c05d42
child 36 02d4040d5946
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sites/irclogs.qmsk.net/handlers.py	Sat Feb 07 06:05:10 2009 +0200
@@ -0,0 +1,25 @@
+"""
+    Our URL action handlers
+"""
+
+def index (request) :
+    """
+        The topmost index page, display a list of available channels, perhaps some general stats
+    """
+
+    pass
+
+def channel_view (request, channel) :
+    """
+        The main channel view page, display the most important info, and all requisite links
+    """
+
+    pass
+
+def channel_last (request, channel, lines, type='html') :
+    """
+        Display the last x lines of channel messages in various formats
+    """
+
+    pass
+