sites/irclogs.qmsk.net/log_event.py
author Tero Marttila <terom@fixme.fi>
Sun, 08 Feb 2009 02:29:23 +0200
branchsites
changeset 42 5a72c00c4ae4
parent 41 9585441a4bfb
permissions -rw-r--r--
more fiddling around with the irclogs layout/css, add query args to URL
"""
    An IRC logfile consists of a series of events, a.k.a. "lines"
"""

class LogEvent (object) :
    """
        An event on some specific channel
    """

    # the event ype
    type = None

    # the UTC timestamp of the event
    timestamp = None

    # the event source
    source = None

    # associated data (message, etc)
    data = None