├── .gitignore ├── ChangeLog ├── Dockerfile ├── Makefile ├── README.org ├── dia.tmpl ├── dot.tmpl ├── dot_shortfk.tmpl ├── env-example ├── html.tmpl ├── install-sh ├── neato.tmpl ├── postgresql_autodoc.1.in ├── postgresql_autodoc.pl ├── regressdatabase.sql ├── xml.tmpl └── zigzag.dia.tmpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/.gitignore -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/ChangeLog -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/README.org -------------------------------------------------------------------------------- /dia.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/dia.tmpl -------------------------------------------------------------------------------- /dot.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/dot.tmpl -------------------------------------------------------------------------------- /dot_shortfk.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/dot_shortfk.tmpl -------------------------------------------------------------------------------- /env-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/env-example -------------------------------------------------------------------------------- /html.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/html.tmpl -------------------------------------------------------------------------------- /install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/install-sh -------------------------------------------------------------------------------- /neato.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/neato.tmpl -------------------------------------------------------------------------------- /postgresql_autodoc.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/postgresql_autodoc.1.in -------------------------------------------------------------------------------- /postgresql_autodoc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/postgresql_autodoc.pl -------------------------------------------------------------------------------- /regressdatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/regressdatabase.sql -------------------------------------------------------------------------------- /xml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/xml.tmpl -------------------------------------------------------------------------------- /zigzag.dia.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbbrowne/autodoc/HEAD/zigzag.dia.tmpl --------------------------------------------------------------------------------