summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Oliver <excid3@gmail.com>2010-10-08 19:01:14 -0500
committerChris Oliver <excid3@gmail.com>2010-10-08 19:01:14 -0500
commit8e912648105a134cad090d00cdc37007855b0bc2 (patch)
treede2a9a4bba5e5c9676da553b2fc5fe6936f6f12a
parenta951fd8e9f0d221db2c4dee98b6be4047435082c (diff)
downloadlogbot-8e912648105a134cad090d00cdc37007855b0bc2.tar.xz
Removed index writing for better or for worse
-rw-r--r--conf/example.conf2
-rw-r--r--logbot.py31
2 files changed, 17 insertions, 16 deletions
diff --git a/conf/example.conf b/conf/example.conf
index 4289321..d640430 100644
--- a/conf/example.conf
+++ b/conf/example.conf
@@ -2,7 +2,7 @@
server = irc.freenode.net
port = 6667
server_password = password
-channels = #excid3
+channels = #keryx,#excid3
nick = Timber
nick_password = password
diff --git a/logbot.py b/logbot.py
index ea731b4..ae11729 100644
--- a/logbot.py
+++ b/logbot.py
@@ -187,22 +187,23 @@ class LogBot(SingleServerIRCBot):
time = strftime("%H:%M:%S")
date = strftime("%Y-%m-%d")
if channel:
- print "%s> %s %s" % (channel, time, message)
+ #print "%s> %s %s" % (channel, time, message)
channels = [channel]
else:
# Quit/nick don't have channels
- print "%s %s" % (time, message)
+ #print "%s %s" % (time, message)
channels = self.chans
- index = os.path.join(self.folder, "index.html")
+ # Create the log folder if we need to
+
if not os.path.exists(self.folder):
- # Create the log folder if we need to
os.mkdir(self.folder)
- if not os.path.exists(index):
- create_html_file(index, "Logged Channels")
- append_to_index(index, index_header % "Logged Channels")
- shutil.copy2(self.stylesheet, self.folder)
+ #index = os.path.join(self.folder, "index.html")
+ #if not os.path.exists(index):
+ # create_html_file(index, "Logged Channels")
+ # append_to_index(index, index_header % "Logged Channels")
+ # shutil.copy2(self.stylesheet, self.folder)
for channel in channels:
path = os.path.abspath(os.path.join(self.folder, channel))
@@ -213,18 +214,18 @@ class LogBot(SingleServerIRCBot):
if not os.path.exists(os.path.join(path, "stylesheet.css")):
shutil.copy2(self.stylesheet, path)
- chan_index = os.path.join(path, "index.html")
+ #chan_index = os.path.join(path, "index.html")
path = os.path.join(path, date+".html")
if not os.path.exists(path):
- create_html_file(chan_index, "%s | Logs" % channel)
- append_to_index(chan_index, index_header % "%s | Logs" % channel)
+ #create_html_file(chan_index, "%s | Logs" % channel)
+ #append_to_index(chan_index, index_header % "%s | Logs" % channel)
- append_to_index(index, "<a href=\"%%23%s\">%s</a>" % \
- (channel[1:]+"/index.html", channel))
+ #append_to_index(index, "<a href=\"%%23%s\">%s</a>" % \
+ # (channel[1:]+"/index.html", channel))
create_html_file(path, "%s | Logs for %s" % (channel, date))
- append_to_index(chan_index, "<a href=\"%s\">%s</a>" % \
- (date+".html", date))
+ #append_to_index(chan_index, "<a href=\"%s\">%s</a>" % \
+ # (date+".html", date))
str = "<a href=\"#%s\" name=\"%s\" class=\"time\">[%s]</a> %s" % \
(time, time, time, message)