tree checksum vpatch file split hunks
all signers: asciilifeform diana_coman lobbes
antecedents: line_wraps.kv uniturds_etc.kv znc2tmsr_etc.kv
press order:
patch:
(6 . 3)(6 . 4)
5 590448 uniturds_etc asciilifeform "Phf's algo for uniturd digestion; cosmetic improvements to WWW displayer."
6 590458 line_wraps asciilifeform "Trinque's method to force wrap in long lines; Removed some commented rubbish from reader.py."
7 590714 znc2tmsr_etc lobbes "Converter of znc logs to the tmsr format used by the logotron. Small fixes to eat_dump.py."
8 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."
- 90A1C2E178DEC4991603E7295A180DDEC5DC9B07C14FB924B8B78645A00797EDDA0B01FC872FA2B5BA346DFAC2E769D526C002808CB8091BFE98AAF328F8C918(16 . 7)(16 . 7)
13
14 create user nsabot createdb;
15 alter role nsabot superuser;
16 createdb nsalog;
17 create database nsalog;
18 grant all privileges on database nsalog to nsabot ;
19
20 ... you can take 'super' away from this user after 1st run,
- F8AAAC719D30714FB9D79E3A0E59DAF3FC306D75D1AEF8837919696FF81787C082EAFFB5C42CC4CDFA85C78267C2CF362C5BD2C623D11CAFC4AE32AC471D1D19(218 . 6)(218 . 7)
25 # IRCate until we get disconnected
26 def irc():
27 global connected
28 global time_last_conn
29
30 # Connect to one among the specified servers, in given priority :
31 while not connected:
- D1406F0AB9794EA23ABD5FE7CA87A66320A5B2F56ED22976A0AFAE51E2A0755B7C42BA4BDF29AB2B0B045FE0E2C700FD2E6AF50B1279D54E3BC13CFE01EA8CA7(21 . 7)(21 . 6)
36 render_template, abort, g, flash, _app_ctx_stack, make_response, \
37 jsonify
38 from flask import Flask
39 from flask.ext.cache import Cache
40 ##############################################################################
41
42 ##############################################################################
(71 . 7)(70 . 6)
44 ##############################################################################
45
46 app = Flask(__name__)
47 cache = Cache(app,config={'CACHE_TYPE': 'simple'})
48 app.config.from_object(__name__)
49
50 def get_db():