From b2035e0835c1ceb89137ab6fa0fa1b33ece5885b Mon Sep 17 00:00:00 2001 From: Vincent Le Gallic Date: Fri, 14 Feb 2014 23:15:16 +0100 Subject: [PATCH] =?utf8?q?[client]=20on=20vire=20les=20commentaires=20hard?= =?utf8?q?cod=C3=A9s?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- today.py | 28 +++++----------------------- 1 file changed, 5 insertions(+), 23 deletions(-) diff --git a/today.py b/today.py index 41479d8..b05a455 100755 --- a/today.py +++ b/today.py @@ -264,25 +264,8 @@ def update_jl8(newid): update_last_seen({"dc" : newid}) -THINGS = { - "dtc" : u"Quotes DTC", - "xkcd" : u"Épisodes de XKCD", - "xantah" : u"Épisodes de La Légende de Xantah", - "visiteur" : u"Épisodes du Visiteur du Futur", - "noob" : u"Épisodes de NOOB", - "warpzone" : u"Épisodes de WARPZONE PROJECT", - "hugo" : u"Vidéos de Hugo Tout Seul", - "norman" : u"Vidéos de Norman", - "cyprien" : u"Vidéos de Cyprien", - "grenier" : u"Épisodes du joueur du grenier", - "dc" : u"Épisodes de la BD youngDC", - - "birthdays" : u"Anniversaires à souhaiter", - "saints" : u"Fêtes à souhaiter", - } - def get_whatsup(): - """Récuère sur le serveur les derniers trucs.""" + """Récupère sur le serveur les derniers trucs.""" cmd = "%s whatsup" % (config.path_today_server,) proc = subprocess.Popen(["ssh", "-4", config.distant_server, cmd], stdout=subprocess.PIPE) out, err = proc.communicate() @@ -293,15 +276,14 @@ def check_all(): """Vérifie si il y a des derniers trucs non lus/vus.""" news = get_whatsup() seen = get_last_seen() - news["birthdays"] = check_birthdays() - news["saints"] = check_saints() checks = [] - for (thing, comm) in THINGS.iteritems(): - n = news[thing] - seen.get(thing, 0) + length = max([len(thing) for thing in news.keys()]) + for (thing, lastid) in news.items(): + n = lastid - seen.get(thing, 0) if type(n) != int: print n elif n > 0: - checks.append("%s : %s (last : %s)" % (comm, n, news[thing])) + checks.append("%s :%s%s (last : %s)" % (thing, " " *(length + 1 - len(thing)), n, news[thing])) checks = u"\n".join(checks) checks = add_title(u"Checks", checks) return checks -- 2.39.2