2003-03-12 07:26:59 +01:00
#!/usr/bin/env python
###
# Copyright (c) 2002, Jeremiah Fincher
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice,
# this list of conditions, and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions, and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the author of this software nor the name of
# contributors to this software may be used to endorse or promote products
# derived from this software without specific prior written consent.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
###
2003-03-25 07:53:51 +01:00
"""
Silently listens to every message received on a channel and keeps statistics
concerning joins , parts , and various other commands in addition to tracking
statistics about smileys , actions , characters , and words .
"""
2003-03-12 07:26:59 +01:00
from baseplugin import *
import re
2003-08-12 21:38:23 +02:00
import sets
2003-03-12 07:26:59 +01:00
import time
2003-10-02 02:13:44 +02:00
import getopt
2003-03-12 07:26:59 +01:00
2003-03-26 11:04:26 +01:00
import sqlite
2003-04-01 10:38:53 +02:00
import debug
2003-04-12 12:39:04 +02:00
import utils
2003-04-01 10:38:53 +02:00
import ircdb
import ircmsgs
2003-03-12 07:26:59 +01:00
import privmsgs
import ircutils
import callbacks
2003-08-27 20:06:26 +02:00
example = utils . wrapLines ( """
< jemfinch > @list ChannelDB
< supybot > channelstats , karma , seen , stats
< jemfinch > @channelstats
< supybot > Error : Command must be sent in a channel or include a channel in its arguments .
< jemfinch > ( Obviously , you gotta give it a channel : ) )
< jemfinch > @channelstats #sourcereview
< supybot > On #sourcereview there have been 46965 messages, containing 1801703 characters, 319510 words, 4663 smileys, and 657 frowns; 2262 of those messages were ACTIONs. There have been 2404 joins, 139 parts, 1 kicks, 323 mode changes, and 129 topic changes.
< jemfinch > @stats #sourcereview jemfinch
< supybot > jemfinch has sent 16131 messages ; a total of 687961 characters , 118915 words , 1482 smileys , and 226 frowns ; 797 of those messages were ACTIONs . jemfinch has joined 284 times , parted 25 times , kicked someone 0 times been kicked 0 times , changed the topic 2 times , and changed the mode 2 times .
< jemfinch > @karma #sourcereview birthday_sex
< supybot > Karma for ' birthday_sex ' has been increased 1 time and decreased 0 times for a total karma of 1.
< jemfinch > @seen #sourcereview inkedmn
< supybot > inkedmn was last seen here 1 day , 18 hours , 42 minutes , and 23 seconds ago saying ' ah '
""" )
2003-03-12 07:26:59 +01:00
smileys = ( ' :) ' , ' ;) ' , ' :] ' , ' :-) ' , ' :-D ' , ' :D ' , ' :P ' , ' :p ' , ' (= ' , ' =) ' )
frowns = ( ' :| ' , ' :-/ ' , ' :- \\ ' , ' : \\ ' , ' :/ ' , ' :( ' , ' :-( ' , ' : \' ( ' )
2003-04-16 08:44:30 +02:00
smileyre = re . compile ( ' | ' . join ( map ( re . escape , smileys ) ) )
frownre = re . compile ( ' | ' . join ( map ( re . escape , frowns ) ) )
2003-03-12 07:26:59 +01:00
2003-08-12 00:31:16 +02:00
class ChannelDB ( callbacks . PrivmsgCommandAndRegexp , ChannelDBHandler ) :
2003-08-12 21:38:23 +02:00
regexps = sets . Set ( [ ' increaseKarma ' , ' decreaseKarma ' ] )
2003-03-12 07:26:59 +01:00
def __init__ ( self ) :
2003-03-28 06:15:08 +01:00
ChannelDBHandler . __init__ ( self )
2003-08-12 21:38:23 +02:00
callbacks . PrivmsgCommandAndRegexp . __init__ ( self )
2003-03-12 07:26:59 +01:00
2003-03-26 11:04:26 +01:00
def makeDb ( self , filename ) :
if os . path . exists ( filename ) :
return sqlite . connect ( filename )
db = sqlite . connect ( filename )
cursor = db . cursor ( )
2003-04-16 08:44:30 +02:00
cursor . execute ( """ CREATE TABLE user_stats (
2003-03-26 11:04:26 +01:00
id INTEGER PRIMARY KEY ,
2003-04-16 08:44:30 +02:00
name TEXT UNIQUE ,
2003-03-26 11:04:26 +01:00
last_seen TIMESTAMP ,
last_msg TEXT ,
smileys INTEGER ,
frowns INTEGER ,
chars INTEGER ,
words INTEGER ,
msgs INTEGER ,
actions INTEGER ,
joins INTEGER ,
parts INTEGER ,
kicks INTEGER ,
kicked INTEGER ,
modes INTEGER ,
2003-04-01 10:38:53 +02:00
topics INTEGER
2003-03-26 11:04:26 +01:00
) """ )
2003-04-16 08:44:30 +02:00
cursor . execute ( """ CREATE TABLE channel_stats (
smileys INTEGER ,
frowns INTEGER ,
chars INTEGER ,
words INTEGER ,
msgs INTEGER ,
actions INTEGER ,
joins INTEGER ,
parts INTEGER ,
kicks INTEGER ,
modes INTEGER ,
topics INTEGER
) """ )
2003-10-02 02:13:44 +02:00
cursor . execute ( """ CREATE TABLE nick_seen (
name TEXT UNIQUE ON CONFLICT REPLACE ,
last_seen TIMESTAMP ,
last_msg TEXT
) """ )
2003-04-16 08:44:30 +02:00
cursor . execute ( """ INSERT INTO channel_stats
VALUES ( 0 , 0 , 0 , 0 , 0 ,
0 , 0 , 0 , 0 , 0 , 0 ) """ )
2003-08-12 00:31:16 +02:00
cursor . execute ( """ CREATE TABLE karma (
id INTEGER PRIMARY KEY ,
name TEXT UNIQUE ON CONFLICT IGNORE ,
added INTEGER ,
subtracted INTEGER
) """ )
2003-03-26 11:04:26 +01:00
db . commit ( )
return db
2003-08-20 18:26:23 +02:00
2003-03-12 07:26:59 +01:00
def doPrivmsg ( self , irc , msg ) :
2003-08-12 21:38:23 +02:00
callbacks . PrivmsgCommandAndRegexp . doPrivmsg ( self , irc , msg )
2003-03-26 11:04:26 +01:00
if ircutils . isChannel ( msg . args [ 0 ] ) :
( channel , s ) = msg . args
db = self . getDb ( channel )
2003-04-01 10:38:53 +02:00
cursor = db . cursor ( )
2003-04-16 08:44:30 +02:00
chars = len ( s )
words = len ( s . split ( ) )
isAction = ircmsgs . isAction ( msg )
frowns = len ( frownre . findall ( s ) )
smileys = len ( smileyre . findall ( s ) )
2003-10-02 02:13:44 +02:00
s = ircmsgs . prettyPrint ( msg )
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE channel_stats
SET smileys = smileys + % s ,
frowns = frowns + % s ,
chars = chars + % s ,
words = words + % s ,
msgs = msgs + 1 ,
actions = actions + % s """ ,
2003-07-31 08:20:58 +02:00
smileys , frowns , chars , words , int ( isAction ) )
2003-10-02 02:13:44 +02:00
cursor . execute ( """ INSERT INTO nick_seen VALUES ( %s , %s , %s ) """ ,
msg . nick , int ( time . time ( ) ) , s )
2003-03-26 11:04:26 +01:00
try :
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( msg . prefix ) . name
2003-03-26 11:04:26 +01:00
except KeyError :
return
2003-04-16 08:44:30 +02:00
cursor . execute ( """ SELECT COUNT(*)
FROM user_stats
WHERE name = % s """ , name)
count = int ( cursor . fetchone ( ) [ 0 ] )
if count == 0 : # User isn't in database.
cursor . execute ( """ INSERT INTO user_stats VALUES (
2003-03-26 11:04:26 +01:00
NULL , % s , % s , % s , % s , % s ,
% s , % s , 1 , % s ,
2003-04-01 10:38:53 +02:00
0 , 0 , 0 , 0 , 0 , 0 ) """ ,
2003-10-02 02:13:44 +02:00
name , int ( time . time ( ) ) , s ,
2003-07-31 08:20:58 +02:00
smileys , frowns , chars , words , int ( isAction ) )
2003-03-26 11:04:26 +01:00
else :
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE user_stats SET
last_seen = % s , last_msg = % s , chars = chars + % s ,
words = words + % s , msgs = msgs + 1 ,
actions = actions + % s , smileys = smileys + % s ,
frowns = frowns + % s
WHERE name = % s """ ,
int ( time . time ( ) ) , s ,
2003-07-31 08:20:58 +02:00
chars , words , int ( isAction ) ,
smileys , frowns , name )
2003-03-26 11:04:26 +01:00
db . commit ( )
2003-03-12 07:26:59 +01:00
2003-03-26 11:04:26 +01:00
def doJoin ( self , irc , msg ) :
2003-04-16 08:44:30 +02:00
channel = msg . args [ 0 ]
db = self . getDb ( channel )
cursor = db . cursor ( )
cursor . execute ( """ UPDATE channel_stats SET joins=joins+1 """ )
2003-03-26 11:04:26 +01:00
try :
2003-04-20 03:40:55 +02:00
if ircutils . isUserHostmask ( msg . prefix ) :
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( msg . prefix ) . name
2003-04-20 03:40:55 +02:00
else :
name = msg . prefix
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE user_stats
SET joins = joins + 1
WHERE name = % s """ , name)
2003-03-26 11:04:26 +01:00
except KeyError :
2003-04-16 08:44:30 +02:00
pass
db . commit ( )
2003-08-20 18:26:23 +02:00
2003-03-26 11:04:26 +01:00
def doPart ( self , irc , msg ) :
2003-04-16 08:44:30 +02:00
channel = msg . args [ 0 ]
db = self . getDb ( channel )
cursor = db . cursor ( )
cursor . execute ( """ UPDATE channel_stats SET parts=parts+1 """ )
2003-03-26 11:04:26 +01:00
try :
2003-04-20 03:40:55 +02:00
if ircutils . isUserHostmask ( msg . prefix ) :
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( msg . prefix ) . name
2003-04-20 03:40:55 +02:00
else :
name = msg . prefix
2003-04-16 08:44:30 +02:00
cursor . execute ( " UPDATE user_stats SET parts=parts+1 WHERE name= %s " ,
name )
2003-03-26 11:04:26 +01:00
except KeyError :
2003-04-16 08:44:30 +02:00
pass
db . commit ( )
2003-03-26 11:04:26 +01:00
def doTopic ( self , irc , msg ) :
channel = msg . args [ 0 ]
2003-03-12 07:26:59 +01:00
db = self . getDb ( channel )
2003-03-26 11:04:26 +01:00
cursor = db . cursor ( )
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE channel_stats SET topics=topics+1 """ )
2003-03-12 07:26:59 +01:00
try :
2003-04-20 03:40:55 +02:00
if ircutils . isUserHostmask ( msg . prefix ) :
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( msg . prefix ) . name
2003-04-20 03:40:55 +02:00
else :
name = msg . prefix
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE user_stats
SET topics = topics + 1
WHERE name = % s """ , name)
2003-03-12 07:26:59 +01:00
except KeyError :
2003-04-16 08:44:30 +02:00
pass
db . commit ( )
def doMode ( self , irc , msg ) :
2003-03-26 11:04:26 +01:00
channel = msg . args [ 0 ]
db = self . getDb ( channel )
cursor = db . cursor ( )
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE channel_stats SET modes=modes+1 """ )
try :
2003-04-20 03:40:55 +02:00
if ircutils . isUserHostmask ( msg . prefix ) :
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( msg . prefix ) . name
2003-04-20 03:40:55 +02:00
else :
name = msg . prefix
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE user_stats
SET modes = modes + 1
WHERE name = % s """ , name)
except KeyError :
pass
2003-03-26 11:04:26 +01:00
db . commit ( )
def doKick ( self , irc , msg ) :
2003-04-16 08:44:30 +02:00
channel = msg . args [ 0 ]
db = self . getDb ( channel )
2003-03-26 11:04:26 +01:00
cursor = db . cursor ( )
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE channel_stats SET kicks=kicks+1 """ )
2003-03-26 11:04:26 +01:00
try :
2003-04-20 03:40:55 +02:00
if ircutils . isUserHostmask ( msg . prefix ) :
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( msg . prefix ) . name
2003-04-20 03:40:55 +02:00
else :
name = msg . prefix
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE user_stats
SET kicks = kicks + 1
WHERE name = % s """ , name)
2003-03-26 11:04:26 +01:00
except KeyError :
pass
try :
kicked = msg . args [ 1 ]
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( irc . state . nickToHostmask ( kicked ) ) . name
2003-04-16 08:44:30 +02:00
cursor . execute ( """ UPDATE user_stats
SET kicked = kicked + 1
WHERE name = % s """ , name)
2003-03-26 11:04:26 +01:00
except KeyError :
pass
db . commit ( )
def seen ( self , irc , msg , args ) :
2003-10-02 02:13:44 +02:00
""" [<channel>] [--user] <name>
2003-04-16 08:44:30 +02:00
2003-10-02 02:13:44 +02:00
Returns the last time < name > was seen and what < name > was last seen
saying . - - user will look for user < name > instead of using < name > as
a nick ( registered users , remember , can be recognized under any number
2003-10-02 02:24:36 +02:00
of nicks ) < channel > is only necessary if the message isn ' t sent on the
2003-04-16 08:44:30 +02:00
channel itself .
"""
2003-03-26 11:04:26 +01:00
channel = privmsgs . getChannel ( msg , args )
db = self . getDb ( channel )
cursor = db . cursor ( )
2003-10-02 02:13:44 +02:00
( optlist , rest ) = getopt . getopt ( args , ' ' , [ ' user ' ] )
name = privmsgs . getArgs ( rest )
if ' --user ' in optlist :
if not ircdb . users . hasUser ( name ) :
try :
hostmask = irc . state . nickToHostmask ( name )
name = ircdb . users . getUser ( hostmask ) . name
table = ' user_stats '
except KeyError :
irc . error ( msg , conf . replyNoUser )
return
else :
table = ' nick_seen '
sql = """ SELECT last_seen, last_msg FROM %s WHERE name= %% s """ % table
cursor . execute ( sql , name )
2003-03-26 11:04:26 +01:00
if cursor . rowcount == 0 :
2003-10-02 02:13:44 +02:00
irc . reply ( msg , ' I have not seen %s . ' % name )
2003-03-26 11:04:26 +01:00
else :
( seen , m ) = cursor . fetchone ( )
2003-04-01 10:38:53 +02:00
seen = int ( seen )
2003-09-02 08:19:58 +02:00
s = ' %s was last seen here %s ago saying %s ' % \
2003-08-15 04:56:29 +02:00
( name , utils . timeElapsed ( time . time ( ) - seen ) , m )
2003-04-12 12:39:04 +02:00
irc . reply ( msg , s )
2003-03-26 11:04:26 +01:00
2003-08-12 00:31:16 +02:00
def karma ( self , irc , msg , args ) :
2003-10-02 02:16:39 +02:00
""" [<channel>] [<text>]
2003-08-12 00:31:16 +02:00
2003-10-02 02:16:39 +02:00
Returns the karma of < text > . If < text > is not given , returns the top
three and bottom three karmas . < channel > is only necessary if the
2003-08-12 00:31:16 +02:00
message isn ' t sent on the channel itself.
"""
channel = privmsgs . getChannel ( msg , args )
db = self . getDb ( channel )
cursor = db . cursor ( )
2003-09-29 09:29:18 +02:00
if len ( args ) == 1 :
name = args [ 0 ]
2003-08-24 23:51:20 +02:00
cursor . execute ( """ SELECT added, subtracted
FROM karma
WHERE name = % s """ , name)
if cursor . rowcount == 0 :
irc . reply ( msg , ' %s has no karma. ' % name )
else :
( added , subtracted ) = map ( int , cursor . fetchone ( ) )
total = added - subtracted
s = ' Karma for %r has been increased %s %s ' \
' and decreased %s %s for a total karma of %s . ' % \
( name , added , added == 1 and ' time ' or ' times ' ,
subtracted , subtracted == 1 and ' time ' or ' times ' , total )
irc . reply ( msg , s )
2003-09-29 09:29:18 +02:00
elif len ( args ) > 1 :
criteria = ' OR ' . join ( [ ' name= %s ' ] * len ( args ) )
sql = """ SELECT name, added-subtracted
FROM karma WHERE % s
ORDER BY added - subtracted DESC """ % c riteria
cursor . execute ( sql , * args )
s = utils . commaAndify ( [ ' %s : %s ' % ( n , t )
for ( n , t ) in cursor . fetchall ( ) ] )
irc . reply ( msg , s + ' . ' )
2003-08-24 23:51:20 +02:00
else : # No name was given. Return the top/bottom 3 karmas.
cursor . execute ( """ SELECT name, added-subtracted
FROM karma
ORDER BY added - subtracted DESC
LIMIT 3 """ )
highest = [ ' %r ( %s ) ' % ( t [ 0 ] , t [ 1 ] ) for t in cursor . fetchall ( ) ]
cursor . execute ( """ SELECT name, added-subtracted
FROM karma
ORDER BY added - subtracted ASC
LIMIT 3 """ )
lowest = [ ' %r ( %s ) ' % ( t [ 0 ] , t [ 1 ] ) for t in cursor . fetchall ( ) ]
s = ' Highest karma: %s . Lowest karma: %s . ' % \
( utils . commaAndify ( highest ) , utils . commaAndify ( lowest ) )
irc . reply ( msg , s )
2003-08-12 00:31:16 +02:00
def increaseKarma ( self , irc , msg , match ) :
2003-08-25 09:24:11 +02:00
r " ^(.)( \ S+) \ + \ +$ "
( first , name ) = match . groups ( )
if first not in conf . prefixChars :
return
2003-08-12 00:31:16 +02:00
db = self . getDb ( msg . args [ 0 ] )
cursor = db . cursor ( )
2003-08-15 04:56:29 +02:00
cursor . execute ( """ INSERT INTO karma VALUES (NULL, %s , 0, 0) """ , name )
2003-08-12 00:31:16 +02:00
cursor . execute ( """ UPDATE karma SET added=added+1 WHERE name= %s """ , name )
def decreaseKarma ( self , irc , msg , match ) :
2003-08-25 09:24:11 +02:00
r " ^(.)( \ S+)--$ "
( first , name ) = match . groups ( )
if first not in conf . prefixChars :
return
2003-08-12 00:31:16 +02:00
db = self . getDb ( msg . args [ 0 ] )
cursor = db . cursor ( )
2003-08-15 04:56:29 +02:00
cursor . execute ( """ INSERT INTO karma VALUES (NULL, %s , 0, 0) """ , name )
2003-08-12 00:31:16 +02:00
cursor . execute ( """ UPDATE karma
SET subtracted = subtracted + 1
WHERE name = % s """ , name)
2003-03-26 11:04:26 +01:00
def stats ( self , irc , msg , args ) :
2003-04-16 08:44:30 +02:00
""" [<channel>] <nick>
Returns the statistics for < nick > on < channel > . < channel > is only
necessary if the message isn ' t sent on the channel itself.
"""
2003-03-26 11:04:26 +01:00
channel = privmsgs . getChannel ( msg , args )
name = privmsgs . getArgs ( args )
2003-04-01 10:38:53 +02:00
if not ircdb . users . hasUser ( name ) :
2003-03-26 11:04:26 +01:00
hostmask = irc . state . nickToHostmask ( name )
try :
2003-09-12 22:06:58 +02:00
name = ircdb . users . getUser ( hostmask ) . name
2003-03-26 11:04:26 +01:00
except KeyError :
irc . error ( msg , conf . replyNoUser )
return
db = self . getDb ( channel )
cursor = db . cursor ( )
cursor . execute ( """ SELECT smileys, frowns, chars, words, msgs, actions,
joins , parts , kicks , kicked , modes , topics
2003-04-16 08:44:30 +02:00
FROM user_stats WHERE name = % s """ , name)
2003-03-26 11:04:26 +01:00
if cursor . rowcount == 0 :
irc . reply ( msg , ' I have no stats for that user. ' )
return
values = cursor . fetchone ( )
2003-04-01 10:38:53 +02:00
s = ' %s has sent %s messages; a total of %s characters, %s words, ' \
2003-03-26 11:04:26 +01:00
' %s smileys, and %s frowns; %s of those messages were ACTIONs. ' \
' %s has joined %s times, parted %s times, kicked someone %s times ' \
' been kicked %s times, changed the topic %s times, ' \
' and changed the mode %s times. ' % \
2003-04-01 10:38:53 +02:00
( name , values . msgs , values . chars , values . words ,
2003-03-26 11:04:26 +01:00
values . smileys , values . frowns , values . actions ,
2003-04-01 10:38:53 +02:00
name , values . joins , values . parts , values . kicks ,
2003-03-26 11:04:26 +01:00
values . kicked , values . topics ,
values . modes )
irc . reply ( msg , s )
2003-03-12 07:26:59 +01:00
2003-04-16 08:44:30 +02:00
def channelstats ( self , irc , msg , args ) :
""" [<channel>]
Returns the statistics for < channel > . < channel > is only necessary if
the message isn ' t sent on the channel itself.
"""
channel = privmsgs . getChannel ( msg , args )
db = self . getDb ( channel )
cursor = db . cursor ( )
cursor . execute ( """ SELECT * FROM channel_stats """ )
values = cursor . fetchone ( )
s = ' On %s there have been %s messages, containing %s characters, ' \
' %s words, %s smileys, and %s frowns; %s of those messages were ' \
' ACTIONs. There have been %s joins, %s parts, %s kicks, ' \
' %s mode changes, and %s topic changes. ' % \
( channel , values . msgs , values . chars ,
values . words , values . smileys , values . frowns , values . actions ,
values . joins , values . parts , values . kicks ,
values . modes , values . topics )
irc . reply ( msg , s )
2003-03-12 07:26:59 +01:00
2003-08-12 00:31:16 +02:00
Class = ChannelDB
2003-03-26 11:04:26 +01:00
2003-03-24 09:41:19 +01:00
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78: