From: Vincent Le Gallic Date: Wed, 10 Apr 2013 04:12:24 +0000 (+0200) Subject: update_nob update_warpzone X-Git-Url: http://gitweb.pimeys.fr/?p=today.git;a=commitdiff_plain;h=dc9d0487a1ebd30c7f95842c15dd9ec564f33131 update_nob update_warpzone --- diff --git a/today.py b/today.py index c8a9e31..141376c 100755 --- a/today.py +++ b/today.py @@ -201,11 +201,20 @@ def update_xantah(newid): def update_visiteur(newid): update_last_seen({"visiteur" : int(newid)}) +def update_noob(newid): + update_last_seen({"noob" : int(newid)}) + +def update_warpzone(newid): + update_last_seen({"warpzone" : int(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", "birthdays" : u"Anniversaires à souhaiter", } @@ -332,6 +341,8 @@ OTHER_ACTIONS = { "xkcd" : update_xkcd, "xantah" : update_xantah, "visiteur" : update_visiteur, + "noob" : update_noob, + "warpzone" : update_warpzone, "dtc" : get_dtc, "ping" : ping,