log_event.py
author Tero Marttila <terom@fixme.fi>
Sun, 08 Feb 2009 04:59:22 +0200
changeset 49 aaa62c8e5bd5
parent 46 185504387370
permissions -rw-r--r--
add search form to menu, remove styling from inputs/selects other than the submit button
"""
    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