Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/writers.py
diff options
context:
space:
mode:
authorRichard Darst <rkd@zgib.net>2009-11-24 06:54:42 (GMT)
committer Richard Darst <rkd@zgib.net>2009-11-24 06:54:42 (GMT)
commit4198e4ae74322321046661c3c010c337ba8fac00 (patch)
tree22b9713974f0c39dc809b44921d6cd2970afd8bc /writers.py
parent4e700134867dcffd33fc53e710f272c519c2cca1 (diff)
Update template writers to use absolute/relative URLs
- This should bring the template writers in line with what the other writers do. darcs-hash:20091124065442-82ea9-61ecf0ee5343d0b679fa70f0f41e12eeb3a002c4.gz
Diffstat (limited to 'writers.py')
-rw-r--r--writers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/writers.py b/writers.py
index ea3e623..7a6738b 100644
--- a/writers.py
+++ b/writers.py
@@ -242,7 +242,7 @@ class _BaseWriter(object):
repl = self.get_template(escape=escape)
repl = {
'time': { 'start': repl['starttime'], 'end': repl['endtime'], 'timezone': repl['timeZone'] },
- 'meeting': { 'title': repl['pageTitle'], 'owner': repl['owner'], 'logs': repl['fullLogsFullURL'] },
+ 'meeting': { 'title': repl['pageTitle'], 'owner': repl['owner'], 'logs': repl['fullLogs'], 'logsFullURL': repl['fullLogsFullURL'] },
'attendees': [ person for person in repl['PeoplePresent'] ],
'agenda': [ { 'topic': item['topic'], 'notes': item['items'] } for item in repl['MeetingItems'] ],
'actions': [ action for action in repl['ActionItems'] ],