tree checksum vpatch file split hunks

all signers: asciilifeform diana_coman lobbes

antecedents: uptimefix_bye_cache.kv

press order:

logotron_genesis.kvasciilifeform diana_coman
multsel_and_datefix.kvasciilifeform diana_coman
raw_line_export.kvasciilifeform diana_coman
rle_errata.kvasciilifeform diana_coman
irssi2tmsr.kvasciilifeform diana_coman
uniturds_etc.kvasciilifeform diana_coman
line_wraps.kvasciilifeform diana_coman
znc2tmsr_etc.kvasciilifeform diana_coman lobbes
uptimefix_bye_cache.kvasciilifeform diana_coman lobbes
raw_line_fix.kvasciilifeform diana_coman lobbes

patch:

- 3F84FD0800BE6139CEB1BF422AF7D524B8A5FAABE79D64AD2EBA86C2F1CD9C311B537466ACA94A65AF4ADAF0B5A156E14E0EBFB70B475490BFCC24CE4CD97593
+ B22DBB3579AAB3629907F6EE3690C6EFA9FC883F48F95591DB1242755C5CBB34A75CCED595562444B472B1DE5448D9652C9B7335E28FFD2531550A1AF670DA84
logotron/MANIFEST.TXT
(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
+ 932DB323BE19AE3D24ECEC90B63D8E0E551EDDFE2278233CFB73E66E89CF36108768D3FB8A0E5BB330D25BA31B0634F7805ADF2BE3E0ABE2D18E6A546179C6F9
logotron/reader.py
(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: