tree checksum vpatch file split hunks
all signers: asciilifeform diana_coman lobbes
antecedents: uptimefix_bye_cache.kv
press order:
patch:
(7 . 3)(7 . 4)
5 590458 line_wraps asciilifeform "Trinque's method to force wrap in long lines; Removed some commented rubbish from reader.py."
6 590714 znc2tmsr_etc lobbes "Converter of znc logs to the tmsr format used by the logotron. Small fixes to eat_dump.py."
7 593779 uptimefix_bye_cache lobbes "Fix in bot.py for global time_last_conn. Remove Cache from reader.py. Small README fix re: create database."
8 594463 raw_line_fix lobbes "Fix to raw line export in reader.py to remove semi-colon from right side of nick on action lines"
- D7226DD875D288B7CF41CBF6A8AA5BD9C9E3A066A0EF885065E1AE55D643833DFA74080CD80128F3D9D3EA75E67F92ADD8C9C7D44780C4B4C5ABC26411D43AF2(422 . 12)(422 . 14)
13 # Retrieve raw lines in classical Phf format:
14 for l in lines:
15 action = ""
16 speaker = "%s;" % l['speaker']
17 if l['self']:
18 action = "*;"
19 res += "%s;%s;%s%s;%s\n" % (l['idx'],
20 speaker = "%s " % l['speaker']
21 res += "%s;%s;%s%s%s\n" % (l['idx'],
22 l['t'].strftime('%s'),
23 action,
24 l['speaker'],
25 speaker,
26 l['payload'])
27
28 # Return plain text: