summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorPatrick Totzke <patricktotzke@gmail.com>2012-07-04 22:01:26 +0100
committerPatrick Totzke <patricktotzke@gmail.com>2012-07-04 22:01:26 +0100
commit9965080461392e56780e58a04dcbd5688c94d3bf (patch)
treef7054db0b366e59def7146b39a66b10c7300313a /extra
parent1628e8809f215955e5783228ff2aa0a35f48aa9a (diff)
fix missing brackets in theme files
Diffstat (limited to 'extra')
-rwxr-xr-xextra/theme_convert.py12
1 files changed, 6 insertions, 6 deletions
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']))