Mercurial > hg > MakeItSo
comparison makeitso/template.py @ 56:728cae02a6ed
* fix another variable-related bug
* API templates may have descriptions (and *should*!)
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Thu, 06 Jan 2011 14:25:51 -0800 |
parents | 6e08cca7d656 |
children | 112bf081148c |
comparison
equal
deleted
inserted
replaced
55:b087a14a664b | 56:728cae02a6ed |
---|---|
47 class MakeItSoTemplate(ContentTemplate): | 47 class MakeItSoTemplate(ContentTemplate): |
48 """API template for MakeItSo""" | 48 """API template for MakeItSo""" |
49 | 49 |
50 # name of the template | 50 # name of the template |
51 name = '' | 51 name = '' |
52 | |
53 # description of the template | |
54 description = '' | |
52 | 55 |
53 # templates to interpolate | 56 # templates to interpolate |
54 # paths are relative to __file__ unless absolute or URIs | 57 # paths are relative to __file__ unless absolute or URIs |
55 templates = [] | 58 templates = [] |
56 | 59 |