]> piware.de Git - bin.git/commitdiff
workitems: add initial HTML report
authormartin@piware.de <>
Wed, 5 Aug 2009 11:41:39 +0000 (12:41 +0100)
committermartin@piware.de <>
Wed, 5 Aug 2009 11:41:39 +0000 (12:41 +0100)
workitems.py

index b2295a28fe742f0b9b9745334d62937b4bcc073d..6dc4d6b58e4da51f2276dc973e3698863f091ec0 100755 (executable)
@@ -5,7 +5,7 @@ import sqlite3 as dbapi2
 
 blueprints_base_url = 'https://blueprints.launchpad.net'
 
-valid_states = set(['todo', 'done', 'postponed'])
+valid_states = ['todo', 'done', 'postponed']
 
 def get_db(dbpath):
     '''Open/initialize database.
@@ -48,6 +48,8 @@ def parse_argv():
         help='Print work item summary in text format', dest='text')
     optparser.add_option('-c', '--csv', action='store_true', default=False,
         help='Print work item summary in CSV format', dest='csv')
+    optparser.add_option('-H', '--html', action='store_true', default=False,
+        help='Generate work item HTML report', dest='html')
     optparser.add_option('--from', metavar='YYYY-MM-DD',
         help='Generate CSV data from this day on', dest='from_date')
     optparser.add_option('--to', metavar='YYYY-MM-DD',
@@ -57,7 +59,7 @@ def parse_argv():
 
     if not opts.database:
         optparser.error('No database given')
-    if not opts.dump and not opts.text and not opts.csv:
+    if not opts.dump and not opts.text and not opts.csv and not opts.html:
         if not opts.release:
             optparser.error('No release given')
         if not opts.pattern:
@@ -261,6 +263,54 @@ def csv(db, from_date, to_date):
                 entry.get('postponed', 0))
         d += datetime.timedelta(days=1)
 
+def html(db):
+    '''Print work item status as HTML.'''
+
+    print '''<html>
+<head>
+  <title>Work item status</title>
+  <style type="text/css">
+    body { background: #CCCCB0; color: black; }
+    a { text-decoration: none; }
+    table { border-collapse: collapse; border-style: solid none; 
+            border-width: 3px; margin-bottom: 3ex; empty-cells: show; }
+    table th { text-align: left; border-style: none none solid none; 
+               border-width: 3px; padding-right: 10px; }
+    table td { text-align: left; border-style: none none dotted none; 
+               border-width: 1px; padding-right: 10px; }
+
+    a { color: blue; }
+  </style>
+</head>
+
+<body>
+
+<h1>History</h1>
+<p><img src="burndown.png" alt="burndown" /></p>
+
+<h1>Status by blueprint</h1>
+<table>
+  <tr><th>Blueprint</th> <th>todo/postponed/done</th> <th>Completion</th></tr>
+'''
+
+    data = blueprint_status(db)
+
+    completion = []
+    for (bp, (todo, done, postponed)) in data.iteritems():
+        completion.append((bp,
+            int(float(postponed+done)/(todo+done+postponed)*100 + 0.5)))
+
+    completion.sort(key=lambda k: k[1], reverse=True)
+
+    for (bp, percent) in completion:
+        print '  <tr><td><a href="%s/ubuntu/+spec/%s">%s</a></td> <td>%i/%i/%i</td> <td>%i%%</td></tr>' % (
+                blueprints_base_url, bp, bp, data[bp][0], data[bp][2],
+                data[bp][1], percent)
+
+    print '</table>'
+
+    print '</body></html>'
+
 def import_moin(db, urls):
     '''Collect blueprint work items from a moin wiki.'''
 
@@ -280,6 +330,8 @@ if opts.dump:
     dump(db)
 elif opts.text:
     text(db)
+elif opts.html:
+    html(db)
 elif opts.csv:
     csv(db, opts.from_date, opts.to_date)
 else: