]> gitweb.pimeys.fr Git - today.git/commitdiff
update_nob update_warpzone
authorVincent Le Gallic <legallic@crans.org>
Wed, 10 Apr 2013 04:12:24 +0000 (06:12 +0200)
committerVincent Le Gallic <legallic@crans.org>
Wed, 10 Apr 2013 04:12:24 +0000 (06:12 +0200)
today.py

index c8a9e3194d6c1a9062a883e38c00cc62c6df4a2a..141376cd01688defef6eff0c26fe263e9b8bf298 100755 (executable)
--- 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,