├── .gitignore ├── LICENSE ├── NOTICE ├── README.md ├── css ├── check.png ├── checkinfo.png ├── checkmark.png ├── cross.png └── page.css ├── dconv.py ├── img ├── HAProxyCommunityEdition_60px.png └── logo-med.png ├── parser ├── __init__.py ├── arguments.py ├── converter.py ├── example.py ├── git_parser.py ├── keyword.py ├── seealso.py ├── table.py └── underline.py ├── requirements.txt ├── templates ├── _summary.html ├── parser │ ├── arguments.tpl │ ├── example.tpl │ ├── example │ │ └── comment.tpl │ ├── seealso.tpl │ ├── table.tpl │ ├── table │ │ ├── header.tpl │ │ └── row.tpl │ └── underline.tpl ├── summary.html └── template.html └── tools └── generate-docs.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/README.md -------------------------------------------------------------------------------- /css/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/css/check.png -------------------------------------------------------------------------------- /css/checkinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/css/checkinfo.png -------------------------------------------------------------------------------- /css/checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/css/checkmark.png -------------------------------------------------------------------------------- /css/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/css/cross.png -------------------------------------------------------------------------------- /css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/css/page.css -------------------------------------------------------------------------------- /dconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/dconv.py -------------------------------------------------------------------------------- /img/HAProxyCommunityEdition_60px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/img/HAProxyCommunityEdition_60px.png -------------------------------------------------------------------------------- /img/logo-med.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/img/logo-med.png -------------------------------------------------------------------------------- /parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/__init__.py -------------------------------------------------------------------------------- /parser/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/arguments.py -------------------------------------------------------------------------------- /parser/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/converter.py -------------------------------------------------------------------------------- /parser/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/example.py -------------------------------------------------------------------------------- /parser/git_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/git_parser.py -------------------------------------------------------------------------------- /parser/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/keyword.py -------------------------------------------------------------------------------- /parser/seealso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/seealso.py -------------------------------------------------------------------------------- /parser/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/table.py -------------------------------------------------------------------------------- /parser/underline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/parser/underline.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Mako 2 | 3 | -------------------------------------------------------------------------------- /templates/_summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/templates/_summary.html -------------------------------------------------------------------------------- /templates/parser/arguments.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/templates/parser/arguments.tpl -------------------------------------------------------------------------------- /templates/parser/example.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/templates/parser/example.tpl -------------------------------------------------------------------------------- /templates/parser/example/comment.tpl: -------------------------------------------------------------------------------- 1 | \1 -------------------------------------------------------------------------------- /templates/parser/seealso.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/templates/parser/seealso.tpl -------------------------------------------------------------------------------- /templates/parser/table.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/templates/parser/table.tpl -------------------------------------------------------------------------------- /templates/parser/table/header.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/templates/parser/table/header.tpl -------------------------------------------------------------------------------- /templates/parser/table/row.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbonte/haproxy-dconv/HEAD/templates/parser/table/row.tpl -------------------------------------------------------------------------------- /templates/parser/underline.tpl: -------------------------------------------------------------------------------- 1 |