Mercurial > hg > IntentMadeManifest
comparison intentmademanifest/template.py @ 0:67cfeffa0d90
stub from template
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Sun, 07 Apr 2013 03:07:39 -0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:67cfeffa0d90 |
|---|---|
| 1 #!/usr/bin/env python | |
| 2 | |
| 3 """ | |
| 4 IntentMadeManifest template for makeitso | |
| 5 """ | |
| 6 | |
| 7 import sys | |
| 8 from cli import MakeItSoCLI | |
| 9 from optparse import OptionParser | |
| 10 from template import MakeItSoTemplate | |
| 11 | |
| 12 class IntentMadeManifestTemplate(MakeItSoTemplate): | |
| 13 """ | |
| 14 IntentMadeManifest template | |
| 15 """ | |
| 16 name = 'IntentMadeManifest' | |
| 17 templates = ['template'] | |
| 18 look = True | |
| 19 | |
| 20 class TemplateCLI(MakeItSoCLI): | |
| 21 """ | |
| 22 CLI driver for the IntentMadeManifest template | |
| 23 """ | |
| 24 | |
| 25 def main(args=sys.argv[:]): | |
| 26 cli = TemplateCLI() | |
| 27 cli(*args) | |
| 28 | |
| 29 if __name__ == '__main__': | |
| 30 main() | |
| 31 | |
| 32 |
