From 9965080461392e56780e58a04dcbd5688c94d3bf Mon Sep 17 00:00:00 2001 From: Patrick Totzke Date: Wed, 4 Jul 2012 22:01:26 +0100 Subject: fix missing brackets in theme files --- extra/theme_convert.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'extra') diff --git a/extra/theme_convert.py b/extra/theme_convert.py index 1d30db73..45446bed 100755 --- a/extra/theme_convert.py +++ b/extra/theme_convert.py @@ -54,21 +54,21 @@ if __name__ == "__main__": out.write(' ' * 8 + 'focus = %s\n' % lookup(['search', 'thread_focus'])) out.write(' ' * 8 + 'order = date,mailcount,tags,authors,subject\n') - out.write(' ' * 8 + '[[date]]\n') + out.write(' ' * 8 + '[[[date]]]\n') out.write(' ' * 12 + 'normal = %s\n' % lookup(['search', 'thread_date'])) out.write(' ' * 12 + 'focus = %s\n' % lookup(['search', 'thread_date_focus'])) - out.write(' ' * 8 + '[[mailcount]]\n') + out.write(' ' * 8 + '[[[mailcount]]]\n') out.write(' ' * 12 + 'normal = %s\n' % lookup(['search', 'thread_mailcount'])) out.write(' ' * 12 + 'focus = %s\n' % lookup(['search', 'thread_mailcount_focus'])) - out.write(' ' * 8 + '[[tags]]\n') + out.write(' ' * 8 + '[[[tags]]]\n') out.write(' ' * 12 + 'normal = %s\n' % lookup(['search', 'thread_tags'])) out.write(' ' * 12 + 'focus = %s\n' % lookup(['search', 'thread_tags_focus'])) - out.write(' ' * 8 + '[[authors]]\n') + out.write(' ' * 8 + '[[[authors]]]\n') out.write(' ' * 12 + 'normal = %s\n' % lookup(['search', 'thread_authors'])) out.write(' ' * 12 + 'focus = %s\n' % lookup(['search', 'thread_authors_focus'])) - out.write(' ' * 8 + '[[subject]]\n') + out.write(' ' * 8 + '[[[subject]]]\n') out.write(' ' * 12 + 'normal = %s\n' % lookup(['search', 'thread_subject'])) out.write(' ' * 12 + 'focus = %s\n' % lookup(['search', 'thread_subject_focus'])) - out.write(' ' * 8 + '[[content]]\n') + out.write(' ' * 8 + '[[[content]]]\n') out.write(' ' * 12 + 'normal = %s\n' % lookup(['search', 'thread_content'])) out.write(' ' * 12 + 'focus = %s\n' % lookup(['search', 'thread_content_focus'])) -- cgit v1.2.3