Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/exporthtml.py
diff options
context:
space:
mode:
authorWalter Bender <walter.bender@gmail.com>2011-11-16 18:45:27 (GMT)
committer Walter Bender <walter.bender@gmail.com>2011-11-16 18:45:27 (GMT)
commite7bea6183466b3b5de7d1a23b9102d0b042b6992 (patch)
tree4e9322f8c2b29d7b33dba4e8e3bb9f5c41a91485 /exporthtml.py
parent8ed994e7dcd827dd22e6b0e988ed6a72fcff13d6 (diff)
added nick as title slide
Diffstat (limited to 'exporthtml.py')
-rw-r--r--exporthtml.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/exporthtml.py b/exporthtml.py
index bdc8135..3adf432 100644
--- a/exporthtml.py
+++ b/exporthtml.py
@@ -62,6 +62,13 @@ def save_html(activity, nick):
if len(activity.dsobjects) == 0:
return None
+ htmlcode += HTML_GLUE['slide'][0]
+ htmlcode += HTML_GLUE['slide'][1] + \
+ HTML_GLUE['div'][0]
+ htmlcode += HTML_GLUE['h1'][0] + nick + HTML_GLUE['h1'][1]
+ htmlcode += HTML_GLUE['div'][1]
+ # TODO: Add date
+
for i, dsobj in enumerate(activity.dsobjects):
htmlcode += HTML_GLUE['slide'][0] + str(i)
htmlcode += HTML_GLUE['slide'][1] + \