├── .coveragerc ├── .gitignore ├── .travis.yml ├── AUTHORS ├── CHANGES.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── django_activeurl ├── __about__.py ├── __init__.py ├── conf.py ├── ext │ ├── __init__.py │ └── django_jinja.py ├── models.py ├── templatetags │ ├── __init__.py │ └── activeurl.py └── utils.py ├── docs ├── Makefile ├── _static │ └── .gitkeep ├── _templates │ └── .gitkeep ├── changes.rst ├── conf.py └── index.rst ├── pytest.ini ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── jinja_config.py ├── templates │ ├── django │ │ └── django.html │ └── jinja │ │ └── jinja.html ├── test_activeurl.py ├── urls.py └── views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/README.rst -------------------------------------------------------------------------------- /django_activeurl/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/__about__.py -------------------------------------------------------------------------------- /django_activeurl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/__init__.py -------------------------------------------------------------------------------- /django_activeurl/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/conf.py -------------------------------------------------------------------------------- /django_activeurl/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/ext/__init__.py -------------------------------------------------------------------------------- /django_activeurl/ext/django_jinja.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/ext/django_jinja.py -------------------------------------------------------------------------------- /django_activeurl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/models.py -------------------------------------------------------------------------------- /django_activeurl/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/templatetags/__init__.py -------------------------------------------------------------------------------- /django_activeurl/templatetags/activeurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/templatetags/activeurl.py -------------------------------------------------------------------------------- /django_activeurl/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/django_activeurl/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/_templates/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/changes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/docs/changes.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/docs/index.rst -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/jinja_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tests/jinja_config.py -------------------------------------------------------------------------------- /tests/templates/django/django.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tests/templates/django/django.html -------------------------------------------------------------------------------- /tests/templates/jinja/jinja.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tests/templates/jinja/jinja.html -------------------------------------------------------------------------------- /tests/test_activeurl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tests/test_activeurl.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellysmile/django-activeurl/HEAD/tox.ini --------------------------------------------------------------------------------