Revision: 3833
Author: pekka.klarck
Date: Tue Aug 17 04:24:04 2010
Log: added project name to index cards
http://code.google.com/p/robotframework/source/detail?r=3833
Modified:
/wiki/tools/get_issues.py
=======================================
--- /wiki/tools/get_issues.py Mon Aug 16 06:16:39 2010
+++ /wiki/tools/get_issues.py Tue Aug 17 04:24:04 2010
@@ -59,6 +59,8 @@
}
.container {
position: relative;
+ width: 100%;
+ height: 100%;
}
.id {
position: absolute;
@@ -83,6 +85,15 @@
right: 0em;
font-size: 0.8em;
}
+.project {
+ position: absolute;
+ bottom: 0em;
+ left: 0em;
+ right: 0em;
+ font-size: 0.7em;
+ text-align: center;
+ color: gray;
+}
</style>
<style media="print" type="text/css">
body {
@@ -135,6 +146,7 @@
print ' <div class="type">%s</div>' % issue.type
print ' <div class="priority">%s</div>' % issue.priority
print ' <div class="summary">%s</div>' % issue.summary
+ print ' <div class="project">%s</div>' % project
print '</div></div>'
print '</body>\n</html>\n'
@@ -145,4 +157,3 @@
programs[sys.argv[1]](*sys.argv[2:])
except (KeyError, IndexError, TypeError):
print __doc__
-