├── .coveragerc ├── .dockerignore ├── .editorconfig ├── .envs └── .local │ ├── .django │ └── .postgres ├── .gitattributes ├── .gitignore ├── .pylintrc ├── .runenv ├── .vscode ├── launch.json ├── settings l.json └── settings.json ├── README.md ├── Untitled.ipynb ├── Untitled1.ipynb ├── __init__.py ├── admin_interface ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── cache.py ├── fixtures │ ├── admin_interface_theme_bootstrap.json │ ├── admin_interface_theme_django.json │ ├── admin_interface_theme_foundation.json │ ├── admin_interface_theme_uswds.json │ └── initial_data.json ├── locale │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── it │ │ └── LC_MESSAGES │ │ └── django.po ├── migrations │ └── __init__.py ├── models.py ├── settings.py ├── static │ ├── admin_interface │ │ ├── css │ │ │ ├── adminlte.core.css │ │ │ ├── iconfont.css │ │ │ ├── iconfont.eot │ │ │ ├── iconfont.json │ │ │ ├── iconfont.svg │ │ │ ├── iconfont.ttf │ │ │ ├── iconfont.woff │ │ │ ├── iconfont.woff2 │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ ├── jquery.mCustomScrollbar.min.css │ │ │ ├── mCSB_buttons.png │ │ │ ├── sidebar-main.css │ │ │ └── sidebar-themes.css │ │ ├── favico │ │ │ ├── favico-0.3.10-patched.js │ │ │ └── favico-0.3.10-patched.min.js │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.js │ │ ├── magnific-popup │ │ │ ├── jquery.magnific-popup.js │ │ │ └── magnific-popup.css │ │ ├── related-modal │ │ │ └── related-modal.js │ │ └── sidebar-main.js │ └── ckeditor │ │ └── ckeditor │ │ └── skins │ │ └── light │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dialog.css │ │ ├── editor.css │ │ ├── editor_gecko.css │ │ ├── editor_ie.css │ │ ├── editor_ie7.css │ │ ├── editor_ie8.css │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── images │ │ ├── arrow.png │ │ ├── close.png │ │ ├── hidpi │ │ │ ├── close.png │ │ │ ├── lock-open.png │ │ │ ├── lock.png │ │ │ └── refresh.png │ │ ├── lock-open.png │ │ ├── lock.png │ │ └── refresh.png │ │ └── skin.js ├── templates │ ├── admin │ │ ├── base.html │ │ ├── base_site.html │ │ ├── edit_inline │ │ │ ├── stacked.html │ │ │ └── tabular.html │ │ ├── filter.html │ │ ├── login.html │ │ └── popup_response.html │ └── admin_interface │ │ ├── css │ │ ├── admin-interface-fix.css │ │ ├── admin-interface.css │ │ ├── ckeditor.css │ │ ├── jquery.ui.tabs.css │ │ ├── list-filter-dropdown.css │ │ ├── modeltranslation.css │ │ ├── recent-actions.css │ │ ├── related-modal.css │ │ ├── sorl-thumbnail.css │ │ ├── tabbed-admin.css │ │ └── tinymce.css │ │ ├── dropdown_filter.html │ │ ├── favicon.html │ │ ├── language_chooser.html │ │ └── related-modal.html ├── templatetags │ ├── __init__.py │ └── admin_interface_tags.py ├── urls.py └── version.py ├── blog ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── common ├── jsonrender.py ├── models.py ├── pagination.py ├── selffield.py ├── serializers.py ├── utils.py ├── view.py └── viewset.py ├── compose ├── local │ └── django │ │ ├── Dockerfile │ │ ├── celery │ │ ├── beat │ │ │ └── start │ │ ├── flower │ │ │ └── start │ │ └── worker │ │ │ └── start │ │ └── start └── production │ ├── caddy │ ├── Caddyfile │ └── Dockerfile │ ├── django │ ├── Dockerfile │ ├── celery │ │ ├── beat │ │ │ └── start │ │ ├── flower │ │ │ └── start │ │ └── worker │ │ │ └── start │ ├── entrypoint │ └── start │ └── postgres │ ├── Dockerfile │ └── maintenance │ ├── _sourced │ ├── constants.sh │ ├── countdown.sh │ ├── messages.sh │ └── yes_no.sh │ ├── backup │ ├── backups │ └── restore ├── config ├── __init__.py ├── settings │ ├── __init__.py │ ├── base.py │ ├── local.py │ ├── production.py │ └── test.py ├── urls.py └── wsgi.py ├── conftest.py ├── contrib ├── __init__.py └── sites │ ├── __init__.py │ └── migrations │ └── __init__.py ├── course ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── filter.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── dashboards.py ├── docs ├── Makefile ├── __init__.py ├── conf.py ├── deploy.rst ├── docker_ec2.rst ├── index.rst ├── install.rst └── make.bat ├── exampaper ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── filter.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── examplan ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── filter.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── experimate └── metaclass.py ├── frontend ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── static │ └── frontend │ │ ├── asset-manifest.json │ │ ├── favicon.png │ │ ├── header_bg.bab1e6cd.png │ │ ├── iconfont.js │ │ ├── index.html │ │ ├── login_bg.1c2ab076.png │ │ ├── pdfjsWorker.async.js │ │ ├── umi.css │ │ └── umi.js ├── templates │ └── frontend │ │ └── index.html ├── tests.py ├── urls.py └── views.py ├── geo ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── city.json ├── migrations │ └── __init__.py ├── models.py ├── province.json ├── tests.py ├── urls.py └── views.py ├── learn ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── filter.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── local.yml ├── locale └── README.rst ├── manage.py ├── merge_production_dotenvs_in_dotenv.py ├── mystatistics ├── VisitTimesMiddleware.py ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── notifications ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── filter.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── settings.py ├── signals.py ├── templates │ └── notifications │ │ ├── list.html │ │ ├── notice.html │ │ └── test_tags.html ├── templatetags │ ├── __init__.py │ └── notifications_tags.py ├── tests │ ├── __init__.py │ ├── settings.py │ ├── static │ │ └── notifications │ │ │ └── live-test.js │ ├── templates │ │ └── test_live.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── urls.py ├── utils.py └── views.py ├── openapi-schema.json ├── orgs ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── filter.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── permissions ├── .ipynb ├── __init__.py ├── admin.py ├── api_views.py ├── apps.py ├── classes.py ├── exceptions.py ├── filterregist.py ├── filters.py ├── fixtures │ ├── RoleOperationshipWithFilter.json │ └── role.json ├── handlers.py ├── icons.py ├── inlineadmin.py ├── links.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ ├── purgepermissions.py │ │ └── rolepermission.py ├── managers.py ├── migrations │ └── __init__.py ├── models.py ├── permissions.py ├── permissonregist.py ├── search.py ├── serializers.py ├── templates │ └── admin │ │ └── edit_inline │ │ ├── stacked.html │ │ └── tabular_select.html ├── tests │ ├── __init__.py │ ├── literals.py │ ├── test_api.py │ ├── test_inlineadmin.py │ ├── test_models.py │ └── test_views.py ├── urls.py └── views.py ├── production.yml ├── pytest.ini ├── questions ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── settings.py ├── signals.py ├── templates │ └── notifications │ │ ├── list.html │ │ ├── notice.html │ │ └── test_tags.html ├── templatetags │ ├── __init__.py │ └── notifications_tags.py ├── urls.py ├── utils.py └── views.py ├── requirements ├── base.txt ├── local.txt └── production.txt ├── rest_framework ├── __init__.py ├── apps.py ├── authentication.py ├── authtoken │ ├── __init__.py │ ├── admin.py │ ├── apps.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── drf_create_token.py │ ├── migrations │ │ └── __init__.py │ ├── models.py │ ├── serializers.py │ └── views.py ├── checks.py ├── compat.py ├── decorators.py ├── documentation.py ├── exceptions.py ├── fields.py ├── filters.py ├── generics.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── generateschema.py ├── metadata.py ├── mixins.py ├── negotiation.py ├── pagination.py ├── parsers.py ├── permissions.py ├── relations.py ├── renderers.py ├── request.py ├── response.py ├── reverse.py ├── routers.py ├── schemas │ ├── __init__.py │ ├── coreapi.py │ ├── generators.py │ ├── inspectors.py │ ├── openapi.py │ ├── utils.py │ └── views.py ├── serializers.py ├── settings.py ├── static │ └── rest_framework │ │ ├── css │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-tweaks.css │ │ ├── bootstrap.min.css │ │ ├── default.css │ │ ├── font-awesome-4.0.3.css │ │ └── prettify.css │ │ ├── docs │ │ ├── css │ │ │ ├── base.css │ │ │ ├── highlight.css │ │ │ └── jquery.json-view.min.css │ │ ├── img │ │ │ ├── favicon.ico │ │ │ └── grid.png │ │ └── js │ │ │ ├── api.js │ │ │ ├── highlight.pack.js │ │ │ └── jquery.json-view.min.js │ │ ├── fonts │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ ├── glyphicons-halflings.png │ │ └── grid.png │ │ └── js │ │ ├── ajax-form.js │ │ ├── bootstrap.min.js │ │ ├── coreapi-0.1.1.js │ │ ├── csrf.js │ │ ├── default.js │ │ ├── jquery-3.4.1.min.js │ │ └── prettify-min.js ├── status.py ├── templates │ └── rest_framework │ │ ├── admin.html │ │ ├── admin │ │ ├── detail.html │ │ ├── dict_value.html │ │ ├── list.html │ │ ├── list_value.html │ │ └── simple_list_value.html │ │ ├── api.html │ │ ├── base.html │ │ ├── docs │ │ ├── auth │ │ │ ├── basic.html │ │ │ ├── session.html │ │ │ └── token.html │ │ ├── document.html │ │ ├── error.html │ │ ├── index.html │ │ ├── interact.html │ │ ├── langs │ │ │ ├── javascript-intro.html │ │ │ ├── javascript.html │ │ │ ├── python-intro.html │ │ │ ├── python.html │ │ │ ├── shell-intro.html │ │ │ └── shell.html │ │ ├── link.html │ │ └── sidebar.html │ │ ├── filters │ │ ├── base.html │ │ ├── ordering.html │ │ └── search.html │ │ ├── horizontal │ │ ├── checkbox.html │ │ ├── checkbox_multiple.html │ │ ├── dict_field.html │ │ ├── fieldset.html │ │ ├── form.html │ │ ├── input.html │ │ ├── list_field.html │ │ ├── list_fieldset.html │ │ ├── radio.html │ │ ├── select.html │ │ ├── select_multiple.html │ │ └── textarea.html │ │ ├── inline │ │ ├── checkbox.html │ │ ├── checkbox_multiple.html │ │ ├── dict_field.html │ │ ├── fieldset.html │ │ ├── form.html │ │ ├── input.html │ │ ├── list_field.html │ │ ├── list_fieldset.html │ │ ├── radio.html │ │ ├── select.html │ │ ├── select_multiple.html │ │ └── textarea.html │ │ ├── login.html │ │ ├── login_base.html │ │ ├── pagination │ │ ├── numbers.html │ │ └── previous_and_next.html │ │ ├── raw_data_form.html │ │ ├── schema.js │ │ └── vertical │ │ ├── checkbox.html │ │ ├── checkbox_multiple.html │ │ ├── dict_field.html │ │ ├── fieldset.html │ │ ├── form.html │ │ ├── input.html │ │ ├── list_field.html │ │ ├── list_fieldset.html │ │ ├── radio.html │ │ ├── select.html │ │ ├── select_multiple.html │ │ └── textarea.html ├── templatetags │ ├── __init__.py │ └── rest_framework.py ├── test.py ├── throttling.py ├── urlpatterns.py ├── urls.py ├── utils │ ├── __init__.py │ ├── breadcrumbs.py │ ├── encoders.py │ ├── field_mapping.py │ ├── formatting.py │ ├── html.py │ ├── humanize_datetime.py │ ├── json.py │ ├── mediatypes.py │ ├── model_meta.py │ ├── representation.py │ ├── serializer_helpers.py │ └── urls.py ├── validators.py ├── versioning.py ├── views.py └── viewsets.py ├── rest_framework_serializer_extensions ├── __init__.py ├── fields.py ├── serializers.py ├── utils.py └── views.py ├── setup.cfg ├── static └── .gitignore ├── supervisord.conf ├── taskapp ├── __init__.py └── celery.py ├── tessss.py ├── traingroup ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── filter.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── uploadfile ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── serializers.py ├── tests.py ├── urls.py └── views.py ├── users ├── __init__.py ├── admin.py ├── api.py ├── app_settings.py ├── apps.py ├── filter.py ├── fixtures │ └── user.json ├── locale │ ├── cs │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── de │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── es │ │ └── LC_MESSAGES │ │ │ └── django.po │ ├── pl │ │ └── LC_MESSAGES │ │ │ └── django.po │ └── ru │ │ └── LC_MESSAGES │ │ └── django.po ├── migrations │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── tests │ ├── __init__.py │ ├── django_urls.py │ ├── mixins.py │ ├── requirements.pip │ ├── settings.py │ ├── test_api.py │ ├── test_social.py │ └── urls.py ├── urls.py ├── utils.py ├── validators.py └── views.py └── utils.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.editorconfig -------------------------------------------------------------------------------- /.envs/.local/.django: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.envs/.local/.django -------------------------------------------------------------------------------- /.envs/.local/.postgres: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.envs/.local/.postgres -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.pylintrc -------------------------------------------------------------------------------- /.runenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.runenv -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings l.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.vscode/settings l.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/README.md -------------------------------------------------------------------------------- /Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/Untitled.ipynb -------------------------------------------------------------------------------- /Untitled1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/Untitled1.ipynb -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/__init__.py -------------------------------------------------------------------------------- /admin_interface/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/__init__.py -------------------------------------------------------------------------------- /admin_interface/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/admin.py -------------------------------------------------------------------------------- /admin_interface/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/api.py -------------------------------------------------------------------------------- /admin_interface/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/apps.py -------------------------------------------------------------------------------- /admin_interface/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/cache.py -------------------------------------------------------------------------------- /admin_interface/fixtures/admin_interface_theme_bootstrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/fixtures/admin_interface_theme_bootstrap.json -------------------------------------------------------------------------------- /admin_interface/fixtures/admin_interface_theme_django.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/fixtures/admin_interface_theme_django.json -------------------------------------------------------------------------------- /admin_interface/fixtures/admin_interface_theme_foundation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/fixtures/admin_interface_theme_foundation.json -------------------------------------------------------------------------------- /admin_interface/fixtures/admin_interface_theme_uswds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/fixtures/admin_interface_theme_uswds.json -------------------------------------------------------------------------------- /admin_interface/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/fixtures/initial_data.json -------------------------------------------------------------------------------- /admin_interface/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /admin_interface/locale/fr/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/locale/fr/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /admin_interface/locale/it/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/locale/it/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /admin_interface/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_interface/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/models.py -------------------------------------------------------------------------------- /admin_interface/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/settings.py -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/adminlte.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/adminlte.core.css -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/iconfont.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/iconfont.css -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/iconfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/iconfont.eot -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/iconfont.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/iconfont.json -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/iconfont.svg -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/iconfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/iconfont.ttf -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/iconfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/iconfont.woff -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/iconfont.woff2 -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/jquery.mCustomScrollbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/jquery.mCustomScrollbar.css -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/jquery.mCustomScrollbar.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/jquery.mCustomScrollbar.min.css -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/mCSB_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/mCSB_buttons.png -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/sidebar-main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/sidebar-main.css -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/css/sidebar-themes.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/css/sidebar-themes.css -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/favico/favico-0.3.10-patched.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/favico/favico-0.3.10-patched.js -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/favico/favico-0.3.10-patched.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/favico/favico-0.3.10-patched.min.js -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/jquery.mCustomScrollbar.concat.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/jquery.mCustomScrollbar.concat.min.js -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/jquery.mCustomScrollbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/jquery.mCustomScrollbar.js -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/magnific-popup/jquery.magnific-popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/magnific-popup/jquery.magnific-popup.js -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/magnific-popup/magnific-popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/magnific-popup/magnific-popup.css -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/related-modal/related-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/related-modal/related-modal.js -------------------------------------------------------------------------------- /admin_interface/static/admin_interface/sidebar-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/admin_interface/sidebar-main.js -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/LICENSE -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/README.md -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/bower.json -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/dialog.css -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/editor.css -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/editor_gecko.css -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/editor_ie.css -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/editor_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/editor_ie7.css -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/editor_ie8.css -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/icons.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/icons_hidpi.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/arrow.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/close.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/close.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/lock.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/hidpi/refresh.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/lock-open.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/lock.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/images/refresh.png -------------------------------------------------------------------------------- /admin_interface/static/ckeditor/ckeditor/skins/light/skin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/static/ckeditor/ckeditor/skins/light/skin.js -------------------------------------------------------------------------------- /admin_interface/templates/admin/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin/base.html -------------------------------------------------------------------------------- /admin_interface/templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin/base_site.html -------------------------------------------------------------------------------- /admin_interface/templates/admin/edit_inline/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin/edit_inline/stacked.html -------------------------------------------------------------------------------- /admin_interface/templates/admin/edit_inline/tabular.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin/edit_inline/tabular.html -------------------------------------------------------------------------------- /admin_interface/templates/admin/filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin/filter.html -------------------------------------------------------------------------------- /admin_interface/templates/admin/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin/login.html -------------------------------------------------------------------------------- /admin_interface/templates/admin/popup_response.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin/popup_response.html -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/admin-interface-fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/admin-interface-fix.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/admin-interface.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/admin-interface.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/ckeditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/ckeditor.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/jquery.ui.tabs.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/list-filter-dropdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/list-filter-dropdown.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/modeltranslation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/modeltranslation.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/recent-actions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/recent-actions.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/related-modal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/related-modal.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/sorl-thumbnail.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/sorl-thumbnail.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/tabbed-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/tabbed-admin.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/css/tinymce.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/css/tinymce.css -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/dropdown_filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/dropdown_filter.html -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/favicon.html -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/language_chooser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/language_chooser.html -------------------------------------------------------------------------------- /admin_interface/templates/admin_interface/related-modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templates/admin_interface/related-modal.html -------------------------------------------------------------------------------- /admin_interface/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin_interface/templatetags/admin_interface_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/templatetags/admin_interface_tags.py -------------------------------------------------------------------------------- /admin_interface/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/admin_interface/urls.py -------------------------------------------------------------------------------- /admin_interface/version.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | 3 | __version__ = '0.12.0' 4 | -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/blog/admin.py -------------------------------------------------------------------------------- /blog/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/blog/api.py -------------------------------------------------------------------------------- /blog/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/blog/apps.py -------------------------------------------------------------------------------- /blog/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/blog/models.py -------------------------------------------------------------------------------- /blog/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/blog/serializers.py -------------------------------------------------------------------------------- /blog/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/blog/tests.py -------------------------------------------------------------------------------- /blog/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/blog/urls.py -------------------------------------------------------------------------------- /blog/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /common/jsonrender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/jsonrender.py -------------------------------------------------------------------------------- /common/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/models.py -------------------------------------------------------------------------------- /common/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/pagination.py -------------------------------------------------------------------------------- /common/selffield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/selffield.py -------------------------------------------------------------------------------- /common/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/serializers.py -------------------------------------------------------------------------------- /common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/utils.py -------------------------------------------------------------------------------- /common/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/view.py -------------------------------------------------------------------------------- /common/viewset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/common/viewset.py -------------------------------------------------------------------------------- /compose/local/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/local/django/Dockerfile -------------------------------------------------------------------------------- /compose/local/django/celery/beat/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/local/django/celery/beat/start -------------------------------------------------------------------------------- /compose/local/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/local/django/celery/flower/start -------------------------------------------------------------------------------- /compose/local/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/local/django/celery/worker/start -------------------------------------------------------------------------------- /compose/local/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/local/django/start -------------------------------------------------------------------------------- /compose/production/caddy/Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/caddy/Caddyfile -------------------------------------------------------------------------------- /compose/production/caddy/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/caddy/Dockerfile -------------------------------------------------------------------------------- /compose/production/django/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/django/Dockerfile -------------------------------------------------------------------------------- /compose/production/django/celery/beat/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/django/celery/beat/start -------------------------------------------------------------------------------- /compose/production/django/celery/flower/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/django/celery/flower/start -------------------------------------------------------------------------------- /compose/production/django/celery/worker/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/django/celery/worker/start -------------------------------------------------------------------------------- /compose/production/django/entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/django/entrypoint -------------------------------------------------------------------------------- /compose/production/django/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/django/start -------------------------------------------------------------------------------- /compose/production/postgres/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/Dockerfile -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/constants.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/maintenance/_sourced/constants.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/countdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/maintenance/_sourced/countdown.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/messages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/maintenance/_sourced/messages.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/_sourced/yes_no.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/maintenance/_sourced/yes_no.sh -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/maintenance/backup -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/backups: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/maintenance/backups -------------------------------------------------------------------------------- /compose/production/postgres/maintenance/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/compose/production/postgres/maintenance/restore -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/settings/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/config/settings/base.py -------------------------------------------------------------------------------- /config/settings/local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/config/settings/local.py -------------------------------------------------------------------------------- /config/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/config/settings/production.py -------------------------------------------------------------------------------- /config/settings/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/config/settings/test.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/conftest.py -------------------------------------------------------------------------------- /contrib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/contrib/__init__.py -------------------------------------------------------------------------------- /contrib/sites/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/contrib/sites/__init__.py -------------------------------------------------------------------------------- /contrib/sites/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/contrib/sites/migrations/__init__.py -------------------------------------------------------------------------------- /course/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /course/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/admin.py -------------------------------------------------------------------------------- /course/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/api.py -------------------------------------------------------------------------------- /course/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/apps.py -------------------------------------------------------------------------------- /course/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/filter.py -------------------------------------------------------------------------------- /course/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /course/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/models.py -------------------------------------------------------------------------------- /course/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/serializers.py -------------------------------------------------------------------------------- /course/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/tests.py -------------------------------------------------------------------------------- /course/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/course/urls.py -------------------------------------------------------------------------------- /course/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /dashboards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/dashboards.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/__init__.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/deploy.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/deploy.rst -------------------------------------------------------------------------------- /docs/docker_ec2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/docker_ec2.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/docs/make.bat -------------------------------------------------------------------------------- /exampaper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampaper/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/admin.py -------------------------------------------------------------------------------- /exampaper/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/api.py -------------------------------------------------------------------------------- /exampaper/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/apps.py -------------------------------------------------------------------------------- /exampaper/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/filter.py -------------------------------------------------------------------------------- /exampaper/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampaper/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/models.py -------------------------------------------------------------------------------- /exampaper/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/serializers.py -------------------------------------------------------------------------------- /exampaper/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/tests.py -------------------------------------------------------------------------------- /exampaper/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/exampaper/urls.py -------------------------------------------------------------------------------- /exampaper/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /examplan/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examplan/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/admin.py -------------------------------------------------------------------------------- /examplan/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/api.py -------------------------------------------------------------------------------- /examplan/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/apps.py -------------------------------------------------------------------------------- /examplan/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/filter.py -------------------------------------------------------------------------------- /examplan/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examplan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/models.py -------------------------------------------------------------------------------- /examplan/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/serializers.py -------------------------------------------------------------------------------- /examplan/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/tests.py -------------------------------------------------------------------------------- /examplan/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/examplan/urls.py -------------------------------------------------------------------------------- /examplan/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /experimate/metaclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/experimate/metaclass.py -------------------------------------------------------------------------------- /frontend/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/admin.py -------------------------------------------------------------------------------- /frontend/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/apps.py -------------------------------------------------------------------------------- /frontend/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /frontend/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/models.py -------------------------------------------------------------------------------- /frontend/static/frontend/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/asset-manifest.json -------------------------------------------------------------------------------- /frontend/static/frontend/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/favicon.png -------------------------------------------------------------------------------- /frontend/static/frontend/header_bg.bab1e6cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/header_bg.bab1e6cd.png -------------------------------------------------------------------------------- /frontend/static/frontend/iconfont.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/iconfont.js -------------------------------------------------------------------------------- /frontend/static/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/index.html -------------------------------------------------------------------------------- /frontend/static/frontend/login_bg.1c2ab076.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/login_bg.1c2ab076.png -------------------------------------------------------------------------------- /frontend/static/frontend/pdfjsWorker.async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/pdfjsWorker.async.js -------------------------------------------------------------------------------- /frontend/static/frontend/umi.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/umi.css -------------------------------------------------------------------------------- /frontend/static/frontend/umi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/static/frontend/umi.js -------------------------------------------------------------------------------- /frontend/templates/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/templates/frontend/index.html -------------------------------------------------------------------------------- /frontend/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/tests.py -------------------------------------------------------------------------------- /frontend/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/urls.py -------------------------------------------------------------------------------- /frontend/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/frontend/views.py -------------------------------------------------------------------------------- /geo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geo/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/admin.py -------------------------------------------------------------------------------- /geo/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/api.py -------------------------------------------------------------------------------- /geo/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/apps.py -------------------------------------------------------------------------------- /geo/city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/city.json -------------------------------------------------------------------------------- /geo/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /geo/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/models.py -------------------------------------------------------------------------------- /geo/province.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/province.json -------------------------------------------------------------------------------- /geo/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/tests.py -------------------------------------------------------------------------------- /geo/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/geo/urls.py -------------------------------------------------------------------------------- /geo/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /learn/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learn/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/admin.py -------------------------------------------------------------------------------- /learn/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/api.py -------------------------------------------------------------------------------- /learn/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/apps.py -------------------------------------------------------------------------------- /learn/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/filter.py -------------------------------------------------------------------------------- /learn/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /learn/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/models.py -------------------------------------------------------------------------------- /learn/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/serializers.py -------------------------------------------------------------------------------- /learn/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/tests.py -------------------------------------------------------------------------------- /learn/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/learn/urls.py -------------------------------------------------------------------------------- /learn/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /local.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/local.yml -------------------------------------------------------------------------------- /locale/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/locale/README.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/manage.py -------------------------------------------------------------------------------- /merge_production_dotenvs_in_dotenv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/merge_production_dotenvs_in_dotenv.py -------------------------------------------------------------------------------- /mystatistics/VisitTimesMiddleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/mystatistics/VisitTimesMiddleware.py -------------------------------------------------------------------------------- /mystatistics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mystatistics/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/mystatistics/admin.py -------------------------------------------------------------------------------- /mystatistics/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/mystatistics/api.py -------------------------------------------------------------------------------- /mystatistics/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/mystatistics/apps.py -------------------------------------------------------------------------------- /mystatistics/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mystatistics/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/mystatistics/models.py -------------------------------------------------------------------------------- /mystatistics/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/mystatistics/tests.py -------------------------------------------------------------------------------- /mystatistics/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/mystatistics/urls.py -------------------------------------------------------------------------------- /mystatistics/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /notifications/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/__init__.py -------------------------------------------------------------------------------- /notifications/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/admin.py -------------------------------------------------------------------------------- /notifications/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/api.py -------------------------------------------------------------------------------- /notifications/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/apps.py -------------------------------------------------------------------------------- /notifications/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/filter.py -------------------------------------------------------------------------------- /notifications/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/models.py -------------------------------------------------------------------------------- /notifications/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/serializers.py -------------------------------------------------------------------------------- /notifications/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/settings.py -------------------------------------------------------------------------------- /notifications/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/signals.py -------------------------------------------------------------------------------- /notifications/templates/notifications/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/templates/notifications/list.html -------------------------------------------------------------------------------- /notifications/templates/notifications/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/templates/notifications/notice.html -------------------------------------------------------------------------------- /notifications/templates/notifications/test_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/templates/notifications/test_tags.html -------------------------------------------------------------------------------- /notifications/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/templatetags/notifications_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/templatetags/notifications_tags.py -------------------------------------------------------------------------------- /notifications/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /notifications/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/tests/settings.py -------------------------------------------------------------------------------- /notifications/tests/static/notifications/live-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/tests/static/notifications/live-test.js -------------------------------------------------------------------------------- /notifications/tests/templates/test_live.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/tests/templates/test_live.html -------------------------------------------------------------------------------- /notifications/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/tests/tests.py -------------------------------------------------------------------------------- /notifications/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/tests/urls.py -------------------------------------------------------------------------------- /notifications/tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/tests/views.py -------------------------------------------------------------------------------- /notifications/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/urls.py -------------------------------------------------------------------------------- /notifications/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/utils.py -------------------------------------------------------------------------------- /notifications/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/notifications/views.py -------------------------------------------------------------------------------- /openapi-schema.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orgs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orgs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/admin.py -------------------------------------------------------------------------------- /orgs/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/api.py -------------------------------------------------------------------------------- /orgs/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/apps.py -------------------------------------------------------------------------------- /orgs/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/filter.py -------------------------------------------------------------------------------- /orgs/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orgs/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/models.py -------------------------------------------------------------------------------- /orgs/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/serializers.py -------------------------------------------------------------------------------- /orgs/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/tests.py -------------------------------------------------------------------------------- /orgs/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/orgs/urls.py -------------------------------------------------------------------------------- /orgs/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /permissions/.ipynb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /permissions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/__init__.py -------------------------------------------------------------------------------- /permissions/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/admin.py -------------------------------------------------------------------------------- /permissions/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/api_views.py -------------------------------------------------------------------------------- /permissions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/apps.py -------------------------------------------------------------------------------- /permissions/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/classes.py -------------------------------------------------------------------------------- /permissions/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/exceptions.py -------------------------------------------------------------------------------- /permissions/filterregist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/filterregist.py -------------------------------------------------------------------------------- /permissions/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/filters.py -------------------------------------------------------------------------------- /permissions/fixtures/RoleOperationshipWithFilter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/fixtures/RoleOperationshipWithFilter.json -------------------------------------------------------------------------------- /permissions/fixtures/role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/fixtures/role.json -------------------------------------------------------------------------------- /permissions/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/handlers.py -------------------------------------------------------------------------------- /permissions/icons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/icons.py -------------------------------------------------------------------------------- /permissions/inlineadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/inlineadmin.py -------------------------------------------------------------------------------- /permissions/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/links.py -------------------------------------------------------------------------------- /permissions/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /permissions/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /permissions/management/commands/purgepermissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/management/commands/purgepermissions.py -------------------------------------------------------------------------------- /permissions/management/commands/rolepermission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/management/commands/rolepermission.py -------------------------------------------------------------------------------- /permissions/managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/managers.py -------------------------------------------------------------------------------- /permissions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /permissions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/models.py -------------------------------------------------------------------------------- /permissions/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/permissions.py -------------------------------------------------------------------------------- /permissions/permissonregist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/permissonregist.py -------------------------------------------------------------------------------- /permissions/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/search.py -------------------------------------------------------------------------------- /permissions/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/serializers.py -------------------------------------------------------------------------------- /permissions/templates/admin/edit_inline/stacked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/templates/admin/edit_inline/stacked.html -------------------------------------------------------------------------------- /permissions/templates/admin/edit_inline/tabular_select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/templates/admin/edit_inline/tabular_select.html -------------------------------------------------------------------------------- /permissions/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from .literals import * # NOQA 2 | -------------------------------------------------------------------------------- /permissions/tests/literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/tests/literals.py -------------------------------------------------------------------------------- /permissions/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/tests/test_api.py -------------------------------------------------------------------------------- /permissions/tests/test_inlineadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/tests/test_inlineadmin.py -------------------------------------------------------------------------------- /permissions/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/tests/test_models.py -------------------------------------------------------------------------------- /permissions/tests/test_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/tests/test_views.py -------------------------------------------------------------------------------- /permissions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/urls.py -------------------------------------------------------------------------------- /permissions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/permissions/views.py -------------------------------------------------------------------------------- /production.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/production.yml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | DJANGO_SETTINGS_MODULE=config.settings.test 3 | -------------------------------------------------------------------------------- /questions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/__init__.py -------------------------------------------------------------------------------- /questions/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | -------------------------------------------------------------------------------- /questions/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/apps.py -------------------------------------------------------------------------------- /questions/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /questions/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/models.py -------------------------------------------------------------------------------- /questions/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/serializers.py -------------------------------------------------------------------------------- /questions/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/settings.py -------------------------------------------------------------------------------- /questions/signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/signals.py -------------------------------------------------------------------------------- /questions/templates/notifications/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/templates/notifications/list.html -------------------------------------------------------------------------------- /questions/templates/notifications/notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/templates/notifications/notice.html -------------------------------------------------------------------------------- /questions/templates/notifications/test_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/templates/notifications/test_tags.html -------------------------------------------------------------------------------- /questions/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /questions/templatetags/notifications_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/templatetags/notifications_tags.py -------------------------------------------------------------------------------- /questions/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/urls.py -------------------------------------------------------------------------------- /questions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/utils.py -------------------------------------------------------------------------------- /questions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/questions/views.py -------------------------------------------------------------------------------- /requirements/base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/requirements/base.txt -------------------------------------------------------------------------------- /requirements/local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/requirements/local.txt -------------------------------------------------------------------------------- /requirements/production.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/requirements/production.txt -------------------------------------------------------------------------------- /rest_framework/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/__init__.py -------------------------------------------------------------------------------- /rest_framework/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/apps.py -------------------------------------------------------------------------------- /rest_framework/authentication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authentication.py -------------------------------------------------------------------------------- /rest_framework/authtoken/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authtoken/__init__.py -------------------------------------------------------------------------------- /rest_framework/authtoken/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authtoken/admin.py -------------------------------------------------------------------------------- /rest_framework/authtoken/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authtoken/apps.py -------------------------------------------------------------------------------- /rest_framework/authtoken/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework/authtoken/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework/authtoken/management/commands/drf_create_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authtoken/management/commands/drf_create_token.py -------------------------------------------------------------------------------- /rest_framework/authtoken/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework/authtoken/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authtoken/models.py -------------------------------------------------------------------------------- /rest_framework/authtoken/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authtoken/serializers.py -------------------------------------------------------------------------------- /rest_framework/authtoken/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/authtoken/views.py -------------------------------------------------------------------------------- /rest_framework/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/checks.py -------------------------------------------------------------------------------- /rest_framework/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/compat.py -------------------------------------------------------------------------------- /rest_framework/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/decorators.py -------------------------------------------------------------------------------- /rest_framework/documentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/documentation.py -------------------------------------------------------------------------------- /rest_framework/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/exceptions.py -------------------------------------------------------------------------------- /rest_framework/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/fields.py -------------------------------------------------------------------------------- /rest_framework/filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/filters.py -------------------------------------------------------------------------------- /rest_framework/generics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/generics.py -------------------------------------------------------------------------------- /rest_framework/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework/management/commands/generateschema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/management/commands/generateschema.py -------------------------------------------------------------------------------- /rest_framework/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/metadata.py -------------------------------------------------------------------------------- /rest_framework/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/mixins.py -------------------------------------------------------------------------------- /rest_framework/negotiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/negotiation.py -------------------------------------------------------------------------------- /rest_framework/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/pagination.py -------------------------------------------------------------------------------- /rest_framework/parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/parsers.py -------------------------------------------------------------------------------- /rest_framework/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/permissions.py -------------------------------------------------------------------------------- /rest_framework/relations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/relations.py -------------------------------------------------------------------------------- /rest_framework/renderers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/renderers.py -------------------------------------------------------------------------------- /rest_framework/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/request.py -------------------------------------------------------------------------------- /rest_framework/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/response.py -------------------------------------------------------------------------------- /rest_framework/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/reverse.py -------------------------------------------------------------------------------- /rest_framework/routers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/routers.py -------------------------------------------------------------------------------- /rest_framework/schemas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/schemas/__init__.py -------------------------------------------------------------------------------- /rest_framework/schemas/coreapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/schemas/coreapi.py -------------------------------------------------------------------------------- /rest_framework/schemas/generators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/schemas/generators.py -------------------------------------------------------------------------------- /rest_framework/schemas/inspectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/schemas/inspectors.py -------------------------------------------------------------------------------- /rest_framework/schemas/openapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/schemas/openapi.py -------------------------------------------------------------------------------- /rest_framework/schemas/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/schemas/utils.py -------------------------------------------------------------------------------- /rest_framework/schemas/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/schemas/views.py -------------------------------------------------------------------------------- /rest_framework/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/serializers.py -------------------------------------------------------------------------------- /rest_framework/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/settings.py -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/css/bootstrap-tweaks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/css/bootstrap-tweaks.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/css/bootstrap.min.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/css/default.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/css/font-awesome-4.0.3.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/css/font-awesome-4.0.3.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/css/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/css/prettify.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/css/base.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/css/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/css/highlight.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/css/jquery.json-view.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/css/jquery.json-view.min.css -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/img/favicon.ico -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/img/grid.png -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/js/api.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/js/highlight.pack.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/docs/js/jquery.json-view.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/docs/js/jquery.json-view.min.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/img/grid.png -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/js/ajax-form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/js/ajax-form.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/js/bootstrap.min.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/js/coreapi-0.1.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/js/coreapi-0.1.1.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/js/csrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/js/csrf.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/js/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/js/default.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /rest_framework/static/rest_framework/js/prettify-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/static/rest_framework/js/prettify-min.js -------------------------------------------------------------------------------- /rest_framework/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/status.py -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/admin.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/admin/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/admin/detail.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/admin/dict_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/admin/dict_value.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/admin/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/admin/list.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/admin/list_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/admin/list_value.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/admin/simple_list_value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/admin/simple_list_value.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/api.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/base.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/auth/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/auth/basic.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/auth/session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/auth/session.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/auth/token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/auth/token.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/document.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/error.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/index.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/interact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/interact.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/langs/javascript-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/langs/javascript-intro.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/langs/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/langs/javascript.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/langs/python-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/langs/python-intro.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/langs/python.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/langs/python.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/langs/shell-intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/langs/shell-intro.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/langs/shell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/langs/shell.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/link.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/docs/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/docs/sidebar.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/filters/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/filters/base.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/filters/ordering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/filters/ordering.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/filters/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/filters/search.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/checkbox.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/checkbox_multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/checkbox_multiple.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/dict_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/dict_field.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/fieldset.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/form.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/input.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/list_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/list_field.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/list_fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/list_fieldset.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/radio.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/select.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/select_multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/select_multiple.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/horizontal/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/horizontal/textarea.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/checkbox.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/checkbox_multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/checkbox_multiple.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/dict_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/dict_field.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/fieldset.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/form.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/input.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/list_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/list_field.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/list_fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/list_fieldset.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/radio.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/select.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/select_multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/select_multiple.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/inline/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/inline/textarea.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/login.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/login_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/login_base.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/pagination/numbers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/pagination/numbers.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/pagination/previous_and_next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/pagination/previous_and_next.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/raw_data_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/raw_data_form.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/schema.js -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/checkbox.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/checkbox_multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/checkbox_multiple.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/dict_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/dict_field.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/fieldset.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/form.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/input.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/list_field.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/list_field.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/list_fieldset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/list_fieldset.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/radio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/radio.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/select.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/select_multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/select_multiple.html -------------------------------------------------------------------------------- /rest_framework/templates/rest_framework/vertical/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templates/rest_framework/vertical/textarea.html -------------------------------------------------------------------------------- /rest_framework/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework/templatetags/rest_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/templatetags/rest_framework.py -------------------------------------------------------------------------------- /rest_framework/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/test.py -------------------------------------------------------------------------------- /rest_framework/throttling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/throttling.py -------------------------------------------------------------------------------- /rest_framework/urlpatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/urlpatterns.py -------------------------------------------------------------------------------- /rest_framework/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/urls.py -------------------------------------------------------------------------------- /rest_framework/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rest_framework/utils/breadcrumbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/breadcrumbs.py -------------------------------------------------------------------------------- /rest_framework/utils/encoders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/encoders.py -------------------------------------------------------------------------------- /rest_framework/utils/field_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/field_mapping.py -------------------------------------------------------------------------------- /rest_framework/utils/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/formatting.py -------------------------------------------------------------------------------- /rest_framework/utils/html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/html.py -------------------------------------------------------------------------------- /rest_framework/utils/humanize_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/humanize_datetime.py -------------------------------------------------------------------------------- /rest_framework/utils/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/json.py -------------------------------------------------------------------------------- /rest_framework/utils/mediatypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/mediatypes.py -------------------------------------------------------------------------------- /rest_framework/utils/model_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/model_meta.py -------------------------------------------------------------------------------- /rest_framework/utils/representation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/representation.py -------------------------------------------------------------------------------- /rest_framework/utils/serializer_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/serializer_helpers.py -------------------------------------------------------------------------------- /rest_framework/utils/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/utils/urls.py -------------------------------------------------------------------------------- /rest_framework/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/validators.py -------------------------------------------------------------------------------- /rest_framework/versioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/versioning.py -------------------------------------------------------------------------------- /rest_framework/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/views.py -------------------------------------------------------------------------------- /rest_framework/viewsets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework/viewsets.py -------------------------------------------------------------------------------- /rest_framework_serializer_extensions/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '0.6.0' 2 | -------------------------------------------------------------------------------- /rest_framework_serializer_extensions/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework_serializer_extensions/fields.py -------------------------------------------------------------------------------- /rest_framework_serializer_extensions/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework_serializer_extensions/serializers.py -------------------------------------------------------------------------------- /rest_framework_serializer_extensions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework_serializer_extensions/utils.py -------------------------------------------------------------------------------- /rest_framework_serializer_extensions/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/rest_framework_serializer_extensions/views.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/setup.cfg -------------------------------------------------------------------------------- /static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/supervisord.conf -------------------------------------------------------------------------------- /taskapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /taskapp/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/taskapp/celery.py -------------------------------------------------------------------------------- /tessss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/tessss.py -------------------------------------------------------------------------------- /traingroup/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traingroup/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/admin.py -------------------------------------------------------------------------------- /traingroup/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/api.py -------------------------------------------------------------------------------- /traingroup/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/apps.py -------------------------------------------------------------------------------- /traingroup/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/filter.py -------------------------------------------------------------------------------- /traingroup/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /traingroup/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/models.py -------------------------------------------------------------------------------- /traingroup/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/serializers.py -------------------------------------------------------------------------------- /traingroup/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/tests.py -------------------------------------------------------------------------------- /traingroup/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/traingroup/urls.py -------------------------------------------------------------------------------- /traingroup/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /uploadfile/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploadfile/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/uploadfile/admin.py -------------------------------------------------------------------------------- /uploadfile/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/uploadfile/api.py -------------------------------------------------------------------------------- /uploadfile/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/uploadfile/apps.py -------------------------------------------------------------------------------- /uploadfile/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uploadfile/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/uploadfile/models.py -------------------------------------------------------------------------------- /uploadfile/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/uploadfile/serializers.py -------------------------------------------------------------------------------- /uploadfile/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/uploadfile/tests.py -------------------------------------------------------------------------------- /uploadfile/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/uploadfile/urls.py -------------------------------------------------------------------------------- /uploadfile/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/api.py -------------------------------------------------------------------------------- /users/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/app_settings.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/filter.py -------------------------------------------------------------------------------- /users/fixtures/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/fixtures/user.json -------------------------------------------------------------------------------- /users/locale/cs/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/locale/cs/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /users/locale/de/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/locale/de/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /users/locale/es/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/locale/es/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /users/locale/pl/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/locale/pl/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /users/locale/ru/LC_MESSAGES/django.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/locale/ru/LC_MESSAGES/django.po -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/models.py -------------------------------------------------------------------------------- /users/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/permissions.py -------------------------------------------------------------------------------- /users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/serializers.py -------------------------------------------------------------------------------- /users/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/tests/django_urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/tests/django_urls.py -------------------------------------------------------------------------------- /users/tests/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/tests/mixins.py -------------------------------------------------------------------------------- /users/tests/requirements.pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/tests/requirements.pip -------------------------------------------------------------------------------- /users/tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/tests/settings.py -------------------------------------------------------------------------------- /users/tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/tests/test_api.py -------------------------------------------------------------------------------- /users/tests/test_social.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/tests/test_social.py -------------------------------------------------------------------------------- /users/tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/tests/urls.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/utils.py -------------------------------------------------------------------------------- /users/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/users/validators.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fangaofeng/trainserver/HEAD/utils.py --------------------------------------------------------------------------------