Added some documentation for the ATGv2 templates.

This commit is contained in:
KaiSD
2013-05-05 13:04:50 +04:00
parent ea1f12b474
commit 9feae23690
10 changed files with 509 additions and 38 deletions

10
scripts/gendoc.cmd Normal file
View File

@@ -0,0 +1,10 @@
@echo off
set PYDOC=C:\Python27\Lib\pydoc.py
set OUTDIR=docs
cd ..
for %%I in (atg atr data template) do (
%PYDOC% -w %%I
move %%I.html %OUTDIR%
)