├── .gitignore ├── LICENSE ├── README.md ├── manage.py ├── myapp ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── handles.py ├── models.py ├── static │ └── myapp │ │ ├── css │ │ ├── edit.css │ │ ├── index.css │ │ ├── login-signup.css │ │ └── style.css │ │ ├── fonts │ │ └── Andale_Mono │ │ ├── img │ │ └── iu.jpeg │ │ └── js │ │ ├── jquery-3.3.1.js │ │ └── upload.js ├── templates │ └── myapp │ │ ├── base.html │ │ ├── confirm.html │ │ ├── edit.html │ │ ├── index.html │ │ ├── login.html │ │ ├── mkdir.html │ │ └── signup.html ├── templatetags │ ├── __init__.py │ └── extra_filters.py ├── urls.py ├── utils.py └── views.py ├── requirements.txt └── webdrive ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/manage.py -------------------------------------------------------------------------------- /myapp/__init__.py: -------------------------------------------------------------------------------- 1 | #! /Users/michael/anaconda3/bin/python 2 | # @Date: 2018-07-31 14:07:57 -------------------------------------------------------------------------------- /myapp/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/admin.py -------------------------------------------------------------------------------- /myapp/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/apps.py -------------------------------------------------------------------------------- /myapp/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/forms.py -------------------------------------------------------------------------------- /myapp/handles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/handles.py -------------------------------------------------------------------------------- /myapp/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/models.py -------------------------------------------------------------------------------- /myapp/static/myapp/css/edit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/static/myapp/css/edit.css -------------------------------------------------------------------------------- /myapp/static/myapp/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/static/myapp/css/index.css -------------------------------------------------------------------------------- /myapp/static/myapp/css/login-signup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/static/myapp/css/login-signup.css -------------------------------------------------------------------------------- /myapp/static/myapp/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/static/myapp/css/style.css -------------------------------------------------------------------------------- /myapp/static/myapp/fonts/Andale_Mono: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/static/myapp/img/iu.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/static/myapp/img/iu.jpeg -------------------------------------------------------------------------------- /myapp/static/myapp/js/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/static/myapp/js/jquery-3.3.1.js -------------------------------------------------------------------------------- /myapp/static/myapp/js/upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/static/myapp/js/upload.js -------------------------------------------------------------------------------- /myapp/templates/myapp/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templates/myapp/base.html -------------------------------------------------------------------------------- /myapp/templates/myapp/confirm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templates/myapp/confirm.html -------------------------------------------------------------------------------- /myapp/templates/myapp/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templates/myapp/edit.html -------------------------------------------------------------------------------- /myapp/templates/myapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templates/myapp/index.html -------------------------------------------------------------------------------- /myapp/templates/myapp/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templates/myapp/login.html -------------------------------------------------------------------------------- /myapp/templates/myapp/mkdir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templates/myapp/mkdir.html -------------------------------------------------------------------------------- /myapp/templates/myapp/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templates/myapp/signup.html -------------------------------------------------------------------------------- /myapp/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/templatetags/extra_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/templatetags/extra_filters.py -------------------------------------------------------------------------------- /myapp/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/urls.py -------------------------------------------------------------------------------- /myapp/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/utils.py -------------------------------------------------------------------------------- /myapp/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/myapp/views.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | django==1.11.14 2 | python-magic>=0.4.15 3 | mysqlclient 4 | pillow 5 | -------------------------------------------------------------------------------- /webdrive/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webdrive/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/webdrive/settings.py -------------------------------------------------------------------------------- /webdrive/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/webdrive/urls.py -------------------------------------------------------------------------------- /webdrive/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruxtain/webdrive/HEAD/webdrive/wsgi.py --------------------------------------------------------------------------------