├── .gitignore ├── LICENSE ├── README.md ├── django_url_shortener ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── requirements.txt ├── shortener ├── __init__.py ├── admin.py ├── baseconv.py ├── forms.py ├── models.py ├── templatetags │ ├── __init__.py │ └── shortener_helpers.py ├── tests.py ├── urls.py └── views.py └── templates ├── 404.html ├── base.html └── shortener ├── form.inc.html ├── index.html ├── link_info.html ├── submit_failed.html └── submit_success.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | *.pyc 3 | .DS_Store 4 | settings_local.py 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/README.md -------------------------------------------------------------------------------- /django_url_shortener/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /django_url_shortener/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/django_url_shortener/settings.py -------------------------------------------------------------------------------- /django_url_shortener/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/django_url_shortener/urls.py -------------------------------------------------------------------------------- /django_url_shortener/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/django_url_shortener/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django>=1.4,<1.5 2 | -------------------------------------------------------------------------------- /shortener/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortener/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/admin.py -------------------------------------------------------------------------------- /shortener/baseconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/baseconv.py -------------------------------------------------------------------------------- /shortener/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/forms.py -------------------------------------------------------------------------------- /shortener/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/models.py -------------------------------------------------------------------------------- /shortener/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortener/templatetags/shortener_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/templatetags/shortener_helpers.py -------------------------------------------------------------------------------- /shortener/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/tests.py -------------------------------------------------------------------------------- /shortener/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/urls.py -------------------------------------------------------------------------------- /shortener/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/shortener/views.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/shortener/form.inc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/templates/shortener/form.inc.html -------------------------------------------------------------------------------- /templates/shortener/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/templates/shortener/index.html -------------------------------------------------------------------------------- /templates/shortener/link_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/templates/shortener/link_info.html -------------------------------------------------------------------------------- /templates/shortener/submit_failed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/templates/shortener/submit_failed.html -------------------------------------------------------------------------------- /templates/shortener/submit_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tehranian/django-url-shortener/HEAD/templates/shortener/submit_success.html --------------------------------------------------------------------------------