File: genhtml.py

package info (click to toggle)
myghty 1.1-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 1,932 kB
  • ctags: 2,281
  • sloc: python: 11,705; makefile: 51
file content (18 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python

component_root = [
	{'components':'./components'},
	{'content':'./content'},
]
doccomp = ['document_base.myt']
output ='./html'

import sys,re,os.path
sys.path = ['../lib/', './lib/'] + sys.path

import documentgen

documentgen.genall(doccomp, component_root, output)