├── .gitignore ├── .travis.yml ├── CHANGELOG.markdown ├── MANIFEST.in ├── README.markdown ├── macrosurl └── __init__.py ├── setup.py └── tests ├── __init__.py ├── settings.py ├── urls.py └── views.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.egg-info/ 2 | .idea/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdude/django-macros-url/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdude/django-macros-url/HEAD/CHANGELOG.markdown -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.markdown -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdude/django-macros-url/HEAD/README.markdown -------------------------------------------------------------------------------- /macrosurl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdude/django-macros-url/HEAD/macrosurl/__init__.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdude/django-macros-url/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- 1 | DEBUG = True 2 | SECRET_KEY = '123' 3 | USE_I18N=False -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdude/django-macros-url/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phpdude/django-macros-url/HEAD/tests/views.py --------------------------------------------------------------------------------