From: Ross Jones Date: Fri, 04 Jan 2013 13:46:29 +0000 Subject: Make sure we total the vals for 'All' rather than just duplicate the entry X-Git-Url: http://maxious.lambdacomplex.org/git/?p=ckanext-ga-report.git&a=commitdiff&h=833f8ddece3371506f49bbf80d83b8511b6162d5 --- Make sure we total the vals for 'All' rather than just duplicate the entry --- --- a/ckanext/ga_report/controller.py +++ b/ckanext/ga_report/controller.py @@ -216,12 +216,17 @@ q = q.filter(GA_Stat.period_name==c.month) if c.month else q q = q.order_by("ga_stat.value::int desc") + data = collections.defaultdict(int) for entry in q.all(): r = model.Session.query(model.Resource).filter(model.Resource.url==entry.key).first() - if r: - c.downloads.append((r,entry.value)) - else: - log.info("Failed to find resource for %s" % entry.key) + if not r: + continue + data[r] += int(entry.value) + + for k,v in data.iteritems(): + c.downloads.append((k,v)) + + c.downloads = sorted(c.downloads, key=operator.itemgetter(1), reverse=True) return render('ga_report/site/downloads.html')