From: Michael Tremer Date: Mon, 27 Aug 2012 15:04:05 +0000 (+0200) Subject: Remove the "updates in the last 24h" bit. X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e1e40cb94b61f7484a2cf9767b98c706c1ea3eae;p=ipfire.org.git Remove the "updates in the last 24h" bit. --- diff --git a/www/static/netboot/vesamenu.c32 b/www/static/netboot/vesamenu.c32 old mode 100644 new mode 100755 index a5a37750..f3480947 Binary files a/www/static/netboot/vesamenu.c32 and b/www/static/netboot/vesamenu.c32 differ diff --git a/www/templates/stasy-stats-admin.html b/www/templates/stasy-stats-admin.html index 6083e2f1..71f759a2 100644 --- a/www/templates/stasy-stats-admin.html +++ b/www/templates/stasy-stats-admin.html @@ -23,8 +23,5 @@ - -

{{ _("Updates in the last 24 hours") }}

- {{ modules.StasyTable(updated_since_24h, percentage=False, sortby="percentage") }} {% end block %} diff --git a/www/webapp/handlers_stasy.py b/www/webapp/handlers_stasy.py index 0f281b74..979feb00 100644 --- a/www/webapp/handlers_stasy.py +++ b/www/webapp/handlers_stasy.py @@ -186,10 +186,10 @@ class AdminFireinfoStatsHandler(StasyBaseHandler): data["archives_count"] = self.stasy.get_archives_count() # updated since 24h - since = { "hours" : 24 } - updates = self.stasy.get_updates_by_release_since(since) + #since = { "hours" : 24 } + #updates = self.stasy.get_updates_by_release_since(since) #updates[_("All versions")] = self.stasy.get_updated_since(since).count() - data["updated_since_24h"] = updates + #data["updated_since_24h"] = updates self.render("stasy-stats-admin.html", **data)