├── .gitignore ├── CHANGELOG.txt ├── LICENSE ├── MANIFEST ├── MANIFEST.in ├── Makefile ├── PKG-INFO ├── README.markdown ├── __init__.py ├── debian ├── changelog ├── compat ├── control ├── copyright ├── pycompat ├── python-module-stampdir │ └── python-staticgenerator └── rules ├── setup.py └── staticgenerator ├── __init__.py ├── filesystem.py ├── handlers.py ├── middleware.py └── tests ├── __init__.py ├── functional ├── __init__.py └── test_filesystem.py └── unit ├── __init__.py └── test_staticgenerator.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | .coverage 4 | test_data -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/Makefile -------------------------------------------------------------------------------- /PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/PKG-INFO -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/README.markdown -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/pycompat: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /debian/python-module-stampdir/python-staticgenerator: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/debian/rules -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/setup.py -------------------------------------------------------------------------------- /staticgenerator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/staticgenerator/__init__.py -------------------------------------------------------------------------------- /staticgenerator/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/staticgenerator/filesystem.py -------------------------------------------------------------------------------- /staticgenerator/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/staticgenerator/handlers.py -------------------------------------------------------------------------------- /staticgenerator/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/staticgenerator/middleware.py -------------------------------------------------------------------------------- /staticgenerator/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticgenerator/tests/functional/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticgenerator/tests/functional/test_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/staticgenerator/tests/functional/test_filesystem.py -------------------------------------------------------------------------------- /staticgenerator/tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /staticgenerator/tests/unit/test_staticgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucky/staticgenerator/HEAD/staticgenerator/tests/unit/test_staticgenerator.py --------------------------------------------------------------------------------