├── .gitignore ├── LICENSE ├── README.md ├── gasp ├── __init__.py ├── concept.py ├── doxtools.py ├── doxygen.py └── templates │ ├── class │ ├── members.html │ └── synopsis.html │ ├── concept │ ├── _complexity_table.html │ ├── _naming.html │ ├── _semantics_table.html │ ├── _synopsis_table.html │ ├── _validexpr_table.html │ ├── complexity.html │ ├── description.html │ ├── extensive.html │ ├── semantics.html │ ├── synopsis.html │ └── validexpr.html │ └── test.html └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *~ 3 | #*# 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/README.md -------------------------------------------------------------------------------- /gasp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/__init__.py -------------------------------------------------------------------------------- /gasp/concept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/concept.py -------------------------------------------------------------------------------- /gasp/doxtools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/doxtools.py -------------------------------------------------------------------------------- /gasp/doxygen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/doxygen.py -------------------------------------------------------------------------------- /gasp/templates/class/members.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/class/members.html -------------------------------------------------------------------------------- /gasp/templates/class/synopsis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/class/synopsis.html -------------------------------------------------------------------------------- /gasp/templates/concept/_complexity_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/_complexity_table.html -------------------------------------------------------------------------------- /gasp/templates/concept/_naming.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/_naming.html -------------------------------------------------------------------------------- /gasp/templates/concept/_semantics_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/_semantics_table.html -------------------------------------------------------------------------------- /gasp/templates/concept/_synopsis_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/_synopsis_table.html -------------------------------------------------------------------------------- /gasp/templates/concept/_validexpr_table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/_validexpr_table.html -------------------------------------------------------------------------------- /gasp/templates/concept/complexity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/complexity.html -------------------------------------------------------------------------------- /gasp/templates/concept/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/description.html -------------------------------------------------------------------------------- /gasp/templates/concept/extensive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/extensive.html -------------------------------------------------------------------------------- /gasp/templates/concept/semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/semantics.html -------------------------------------------------------------------------------- /gasp/templates/concept/synopsis.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/synopsis.html -------------------------------------------------------------------------------- /gasp/templates/concept/validexpr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/concept/validexpr.html -------------------------------------------------------------------------------- /gasp/templates/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/gasp/templates/test.html -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/troels-im/Gasp/HEAD/setup.py --------------------------------------------------------------------------------