├── .gitignore ├── LICENSE ├── README ├── __init__.py ├── deploy └── deploy.wsgi ├── manage.py ├── settings.py ├── shortener ├── __init__.py ├── admin.py ├── baseconv.py ├── models.py ├── tests.py └── views.py ├── templates ├── 404.html ├── base.html └── shortener │ ├── index.html │ ├── link_info.html │ ├── submit_failed.html │ └── submit_success.html └── urls.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/README -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/deploy.wsgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/deploy/deploy.wsgi -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/manage.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/settings.py -------------------------------------------------------------------------------- /shortener/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shortener/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/shortener/admin.py -------------------------------------------------------------------------------- /shortener/baseconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/shortener/baseconv.py -------------------------------------------------------------------------------- /shortener/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/shortener/models.py -------------------------------------------------------------------------------- /shortener/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/shortener/tests.py -------------------------------------------------------------------------------- /shortener/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/shortener/views.py -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/shortener/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/templates/shortener/index.html -------------------------------------------------------------------------------- /templates/shortener/link_info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/templates/shortener/link_info.html -------------------------------------------------------------------------------- /templates/shortener/submit_failed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/templates/shortener/submit_failed.html -------------------------------------------------------------------------------- /templates/shortener/submit_success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/templates/shortener/submit_success.html -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nileshk/url-shortener/HEAD/urls.py --------------------------------------------------------------------------------