sites/irclogs.qmsk.net/handlers.py
author Tero Marttila <terom@fixme.fi>
Sun, 08 Feb 2009 00:29:36 +0200
branchsites
changeset 41 9585441a4bfb
parent 40 71ab68f31a1c
child 42 5a72c00c4ae4
permissions -rw-r--r--
working basic logs stuff
"""
    Our URL action handlers
"""

from lib import http, template

# load templates from here
templates = template.TemplateLoader("sites/irclogs.qmsk.net/templates")

def index (request) :
    """
        The topmost index page, display a list of available channels, perhaps some general stats
    """
    
    return templates.render_to_response("index")

def channel_view (request, channel) :
    """
        The main channel view page, display the most important info, and all requisite links
    """

    return templates.render_to_response("channel",
        channel         = channel,
    )

    pass

def channel_last (request, channel, count, format) :
    """
        Display the last x lines of channel messages in various formats
    """

    if format == 'txt' :
        return http.Response('\n'.join(channel.source.get_latest(count)), 'text/plain')
    
    else :
        raise http.ResponseError("Unknown filetype %r" % format)

def channel_search (request, channel) :
    """
        Display the search form for the channel for GET, or do the search for POST
    """

    pass