|
Last change
on this file was
3943,
checked in by Jeff Hammel, 15 years ago
|
|
initial import of pastescript template for a trac plugin
|
|
File size:
394 bytes
|
| Line | |
|---|
| 1 | from paste.script import templates |
|---|
| 2 | |
|---|
| 3 | var = templates.var |
|---|
| 4 | |
|---|
| 5 | class TracPluginSkelTemplate(templates.Template): |
|---|
| 6 | _template_dir = 'template' |
|---|
| 7 | summary = "a plugin skeleton for trac" |
|---|
| 8 | vars = [ |
|---|
| 9 | var('description', 'One-line description of the package'), |
|---|
| 10 | var('author', 'Author name'), |
|---|
| 11 | var('author_email', 'Author email'), |
|---|
| 12 | var('url', 'URL of homepage'), |
|---|
| 13 | ] |
|---|
Note: See
TracBrowser
for help on using the repository browser.