Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 24, 2018 16:00
Show Gist options
  • Save ryantm/46191fd0f0f4adabae439d3d94435af0 to your computer and use it in GitHub Desktop.
Save ryantm/46191fd0f0f4adabae439d3d94435af0 to your computer and use it in GitHub Desktop.
/nix/store/kjdwf2jirxiykpydp8hbpy20zpjsalnh-python3.6-django-hijack-2.1.9
├── lib
│   └── python3.6
│   └── site-packages
│   ├── django_hijack-2.1.9.dist-info
│   │   ├── AUTHORS
│   │   ├── INSTALLER
│   │   ├── LICENSE
│   │   ├── METADATA
│   │   ├── RECORD
│   │   ├── top_level.txt
│   │   └── WHEEL
│   └── hijack
│   ├── admin.py
│   ├── apps.py
│   ├── checks.py
│   ├── decorators.py
│   ├── helpers.py
│   ├── __init__.py
│   ├── locale
│   │   ├── cs
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── da
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── de
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── en
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── es
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── fr
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   ├── ru
│   │   │   └── LC_MESSAGES
│   │   │   ├── django.mo
│   │   │   └── django.po
│   │   └── sk
│   │   └── LC_MESSAGES
│   │   ├── django.mo
│   │   └── django.po
│   ├── middleware.py
│   ├── models.py
│   ├── __pycache__
│   │   ├── admin.cpython-36.pyc
│   │   ├── apps.cpython-36.pyc
│   │   ├── checks.cpython-36.pyc
│   │   ├── decorators.cpython-36.pyc
│   │   ├── helpers.cpython-36.pyc
│   │   ├── __init__.cpython-36.pyc
│   │   ├── middleware.cpython-36.pyc
│   │   ├── models.cpython-36.pyc
│   │   ├── settings.cpython-36.pyc
│   │   ├── signals.cpython-36.pyc
│   │   ├── urls.cpython-36.pyc
│   │   └── views.cpython-36.pyc
│   ├── settings.py
│   ├── signals.py
│   ├── static
│   │   └── hijack
│   │   └── hijack-styles.css
│   ├── templates
│   │   └── hijack
│   │   ├── notifications_bootstrap.html
│   │   └── notifications.html
│   ├── templatetags
│   │   ├── hijack_tags.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── hijack_tags.cpython-36.pyc
│   │   └── __init__.cpython-36.pyc
│   ├── tests
│   │   ├── __init__.py
│   │   ├── manage_settings.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-36.pyc
│   │   │   ├── manage_settings.cpython-36.pyc
│   │   │   ├── south_settings.cpython-36.pyc
│   │   │   ├── test_checks.cpython-36.pyc
│   │   │   ├── test_hijack.cpython-36.pyc
│   │   │   ├── test_hijack_url_settings.cpython-36.pyc
│   │   │   ├── test_settings.cpython-36.pyc
│   │   │   ├── urls.cpython-36.pyc
│   │   │   └── utils.cpython-36.pyc
│   │   ├── south_settings.py
│   │   ├── test_app
│   │   │   ├── authorization_checks.py
│   │   │   ├── decorators.py
│   │   │   ├── __init__.py
│   │   │   ├── models.py
│   │   │   ├── __pycache__
│   │   │   │   ├── authorization_checks.cpython-36.pyc
│   │   │   │   ├── decorators.cpython-36.pyc
│   │   │   │   ├── __init__.cpython-36.pyc
│   │   │   │   ├── models.cpython-36.pyc
│   │   │   │   ├── urls.cpython-36.pyc
│   │   │   │   └── views.cpython-36.pyc
│   │   │   ├── templates
│   │   │   │   ├── 404.html
│   │   │   │   ├── hello_filter.html
│   │   │   │   └── hello.html
│   │   │   ├── urls.py
│   │   │   └── views.py
│   │   ├── test_checks.py
│   │   ├── test_hijack.py
│   │   ├── test_hijack_url_settings.py
│   │   ├── test_settings.py
│   │   ├── urls.py
│   │   └── utils.py
│   ├── urls.py
│   └── views.py
└── nix-support
└── propagated-build-inputs
35 directories, 88 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment