├── .idea ├── dataSources.local.xml ├── dataSources.xml ├── dataSources │ └── 3b219465-8f70-4088-8b88-4750d130e9ef.xml ├── deployment.xml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── searchAnswer.iml ├── webServers.xml └── workspace.xml ├── Pipfile ├── Pipfile.lock ├── README.md ├── __pycache__ └── manage.cpython-37.pyc ├── db.sqlite3 ├── index ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── admin.cpython-37.pyc │ ├── models.cpython-37.pyc │ ├── ppkao.cpython-37.pyc │ ├── shangxueba.cpython-37.pyc │ ├── tisousou.cpython-37.pyc │ └── views.cpython-37.pyc ├── admin.py ├── apps.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-37.pyc ├── models.py ├── ppkao.py ├── shangxueba.py ├── tests.py ├── tisousou.py └── views.py ├── manage.py ├── searchAnswer ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── settings.cpython-37.pyc │ ├── urls.cpython-37.pyc │ └── wsgi.cpython-37.pyc ├── settings.py ├── urls.py └── wsgi.py ├── static ├── 1.jpg ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap-theme.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ └── bootstrap.min.css.map │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── fontawesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ └── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 └── jquery-3.3.1.js ├── templates ├── 404.html ├── index.html └── search.html ├── tss.png └── tss2.png /.idea/dataSources.local.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/dataSources.local.xml -------------------------------------------------------------------------------- /.idea/dataSources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/dataSources.xml -------------------------------------------------------------------------------- /.idea/dataSources/3b219465-8f70-4088-8b88-4750d130e9ef.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/dataSources/3b219465-8f70-4088-8b88-4750d130e9ef.xml -------------------------------------------------------------------------------- /.idea/deployment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/deployment.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/searchAnswer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/searchAnswer.iml -------------------------------------------------------------------------------- /.idea/webServers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/webServers.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/manage.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/__pycache__/manage.cpython-37.pyc -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /index/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /index/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /index/__pycache__/ppkao.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/__pycache__/ppkao.cpython-37.pyc -------------------------------------------------------------------------------- /index/__pycache__/shangxueba.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/__pycache__/shangxueba.cpython-37.pyc -------------------------------------------------------------------------------- /index/__pycache__/tisousou.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/__pycache__/tisousou.cpython-37.pyc -------------------------------------------------------------------------------- /index/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /index/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/admin.py -------------------------------------------------------------------------------- /index/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/apps.py -------------------------------------------------------------------------------- /index/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index/migrations/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/migrations/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /index/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/models.py -------------------------------------------------------------------------------- /index/ppkao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/ppkao.py -------------------------------------------------------------------------------- /index/shangxueba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/shangxueba.py -------------------------------------------------------------------------------- /index/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/tests.py -------------------------------------------------------------------------------- /index/tisousou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/tisousou.py -------------------------------------------------------------------------------- /index/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/index/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/manage.py -------------------------------------------------------------------------------- /searchAnswer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /searchAnswer/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/searchAnswer/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /searchAnswer/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/searchAnswer/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /searchAnswer/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/searchAnswer/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /searchAnswer/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/searchAnswer/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /searchAnswer/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/searchAnswer/settings.py -------------------------------------------------------------------------------- /searchAnswer/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/searchAnswer/urls.py -------------------------------------------------------------------------------- /searchAnswer/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/searchAnswer/wsgi.py -------------------------------------------------------------------------------- /static/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/1.jpg -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/bootstrap/js/npm.js -------------------------------------------------------------------------------- /static/fontawesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/css/font-awesome.css -------------------------------------------------------------------------------- /static/fontawesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /static/fontawesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fontawesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fontawesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fontawesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fontawesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/fontawesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/fontawesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static/jquery-3.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/static/jquery-3.3.1.js -------------------------------------------------------------------------------- /templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/templates/404.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/templates/search.html -------------------------------------------------------------------------------- /tss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/tss.png -------------------------------------------------------------------------------- /tss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpu-cxm/tisoso/HEAD/tss2.png --------------------------------------------------------------------------------