r5402 - branches/stability/cumin/python/cumin

croberts at fedoraproject.org croberts at fedoraproject.org
Tue Jun 5 17:36:50 UTC 2012


Author: croberts
Date: 2012-06-05 17:36:50 +0000 (Tue, 05 Jun 2012)
New Revision: 5402

Modified:
   branches/stability/cumin/python/cumin/main.py
Log:
Now calling add_page for stats.png (StatChartPage) and pie.png (PieChartPage) in _init_persona so that the png pie charts and png stat charts will work properly.

Modified: branches/stability/cumin/python/cumin/main.py
===================================================================
--- branches/stability/cumin/python/cumin/main.py	2012-06-04 16:48:11 UTC (rev 5401)
+++ branches/stability/cumin/python/cumin/main.py	2012-06-05 17:36:50 UTC (rev 5402)
@@ -147,6 +147,9 @@
         self.about_page = AboutPage(self, "about.html")
         self.add_page(self.about_page)        
 
+        self.add_page(PieChartPage(self, "pie.png"))
+        self.add_page(StatChartPage(self, "stats.png"))
+
         self.resource_page.protected = False
 
         # Enable the modules that are associated with the



More information about the cumin-developers mailing list