Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/items.py
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-07-02 03:27:01 (GMT)
committer Richard Darst <rkd@zgib.net>2009-07-02 03:27:01 (GMT)
commitc2112bd55d03594268565bef941eb658d58bfe67 (patch)
treed066823ddd6c3ee9a624021abf5a92b030b7cf1c /items.py
parente4fc22906e98687a84ed0fa9c830b1f9354211bc (diff)
rename `start` to `starthtml`, same for `end`
darcs-hash:20090702032701-82ea9-0f0223c19b88610da48783755a0700cf9e4da61c.gz
Diffstat (limited to 'items.py')
-rw-r--r--items.py16
1 files changed, 9 insertions, 7 deletions
diff --git a/items.py b/items.py
index 000dc6a..6815b33 100644
--- a/items.py
+++ b/items.py
@@ -68,8 +68,10 @@ class Topic(_BaseItem):
class GenericItem(_BaseItem):
itemtype = ''
- start = ''
- end = ''
+ starthtml = ''
+ endhtml = ''
+ startrst = ''
+ endrst = ''
def __init__(self, nick, line, linenum, time_):
self.nick = nick ; self.line = line ; self.linenum = linenum
self.time = time.strftime("%H:%M:%S", time_)
@@ -79,7 +81,7 @@ class GenericItem(_BaseItem):
repl['line'] = writers.html(self.line)
repl['link'] = M.config.basename+'.log.html'
return """<tr><td><a href='%(link)s#%(anchor)s'>%(time)s</a></td>
- <td>%(itemtype)s</td><td>%(nick)s</td><td>%(start)s%(line)s%(end)s</td>
+ <td>%(itemtype)s</td><td>%(nick)s</td><td>%(starthtml)s%(line)s%(endhtml)s</td>
</tr>"""%repl
def rst(self, M):
self.link = M.config.basename+'.log.html'
@@ -99,12 +101,12 @@ class Halp(GenericItem):
itemtype = 'HALP'
class Accepted(GenericItem):
itemtype = 'ACCEPTED'
- start = '<font color="green">'
- end = '</font>'
+ starthtml = '<font color="green">'
+ endhtml = '</font>'
class Rejected(GenericItem):
itemtype = 'REJECTED'
- start = '<font color="red">'
- end = '</font>'
+ starthtml = '<font color="red">'
+ endhtml = '</font>'
class Link(_BaseItem):
itemtype = 'LINK'
def __init__(self, nick, line, linenum, time_):