-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from zshafiqu/force-SSL
SSL Redirect Setup
- Loading branch information
Showing
888 changed files
with
28,181 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/Users/zainshafique/Desktop/vehicleinfo.org/env/bin/python3.8 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from gunicorn.app.wsgiapp import run | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(run()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/Users/zainshafique/Desktop/vehicleinfo.org/env/bin/python3.8 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from virtualenv import main | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(main()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/Users/zainshafique/Desktop/vehicleinfo.org/env/bin/python3.8 | ||
# -*- coding: utf-8 -*- | ||
import re | ||
import sys | ||
from waitress.runner import run | ||
if __name__ == '__main__': | ||
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) | ||
sys.exit(run()) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
/* vim:set noet ts=8 sw=8 : */ | ||
|
||
/* Greenlet object interface */ | ||
|
||
#ifndef Py_GREENLETOBJECT_H | ||
#define Py_GREENLETOBJECT_H | ||
|
||
#include <Python.h> | ||
|
||
#ifdef __cplusplus | ||
extern "C" { | ||
#endif | ||
|
||
#define GREENLET_VERSION "0.4.15" | ||
|
||
#if PY_VERSION_HEX >= 0x030700A3 | ||
# define GREENLET_USE_EXC_INFO | ||
#endif | ||
|
||
typedef struct _greenlet { | ||
PyObject_HEAD | ||
char* stack_start; | ||
char* stack_stop; | ||
char* stack_copy; | ||
intptr_t stack_saved; | ||
struct _greenlet* stack_prev; | ||
struct _greenlet* parent; | ||
PyObject* run_info; | ||
struct _frame* top_frame; | ||
int recursion_depth; | ||
PyObject* weakreflist; | ||
#ifdef GREENLET_USE_EXC_INFO | ||
_PyErr_StackItem* exc_info; | ||
_PyErr_StackItem exc_state; | ||
#else | ||
PyObject* exc_type; | ||
PyObject* exc_value; | ||
PyObject* exc_traceback; | ||
#endif | ||
PyObject* dict; | ||
} PyGreenlet; | ||
|
||
#define PyGreenlet_Check(op) PyObject_TypeCheck(op, &PyGreenlet_Type) | ||
#define PyGreenlet_MAIN(op) (((PyGreenlet*)(op))->stack_stop == (char*) -1) | ||
#define PyGreenlet_STARTED(op) (((PyGreenlet*)(op))->stack_stop != NULL) | ||
#define PyGreenlet_ACTIVE(op) (((PyGreenlet*)(op))->stack_start != NULL) | ||
#define PyGreenlet_GET_PARENT(op) (((PyGreenlet*)(op))->parent) | ||
|
||
#if (PY_MAJOR_VERSION == 2 && PY_MINOR_VERSION >= 7) || (PY_MAJOR_VERSION == 3 && PY_MINOR_VERSION >= 1) || PY_MAJOR_VERSION > 3 | ||
#define GREENLET_USE_PYCAPSULE | ||
#endif | ||
|
||
/* C API functions */ | ||
|
||
/* Total number of symbols that are exported */ | ||
#define PyGreenlet_API_pointers 8 | ||
|
||
#define PyGreenlet_Type_NUM 0 | ||
#define PyExc_GreenletError_NUM 1 | ||
#define PyExc_GreenletExit_NUM 2 | ||
|
||
#define PyGreenlet_New_NUM 3 | ||
#define PyGreenlet_GetCurrent_NUM 4 | ||
#define PyGreenlet_Throw_NUM 5 | ||
#define PyGreenlet_Switch_NUM 6 | ||
#define PyGreenlet_SetParent_NUM 7 | ||
|
||
#ifndef GREENLET_MODULE | ||
/* This section is used by modules that uses the greenlet C API */ | ||
static void **_PyGreenlet_API = NULL; | ||
|
||
#define PyGreenlet_Type (*(PyTypeObject *) _PyGreenlet_API[PyGreenlet_Type_NUM]) | ||
|
||
#define PyExc_GreenletError \ | ||
((PyObject *) _PyGreenlet_API[PyExc_GreenletError_NUM]) | ||
|
||
#define PyExc_GreenletExit \ | ||
((PyObject *) _PyGreenlet_API[PyExc_GreenletExit_NUM]) | ||
|
||
/* | ||
* PyGreenlet_New(PyObject *args) | ||
* | ||
* greenlet.greenlet(run, parent=None) | ||
*/ | ||
#define PyGreenlet_New \ | ||
(* (PyGreenlet * (*)(PyObject *run, PyGreenlet *parent)) \ | ||
_PyGreenlet_API[PyGreenlet_New_NUM]) | ||
|
||
/* | ||
* PyGreenlet_GetCurrent(void) | ||
* | ||
* greenlet.getcurrent() | ||
*/ | ||
#define PyGreenlet_GetCurrent \ | ||
(* (PyGreenlet * (*)(void)) _PyGreenlet_API[PyGreenlet_GetCurrent_NUM]) | ||
|
||
/* | ||
* PyGreenlet_Throw( | ||
* PyGreenlet *greenlet, | ||
* PyObject *typ, | ||
* PyObject *val, | ||
* PyObject *tb) | ||
* | ||
* g.throw(...) | ||
*/ | ||
#define PyGreenlet_Throw \ | ||
(* (PyObject * (*) \ | ||
(PyGreenlet *self, PyObject *typ, PyObject *val, PyObject *tb)) \ | ||
_PyGreenlet_API[PyGreenlet_Throw_NUM]) | ||
|
||
/* | ||
* PyGreenlet_Switch(PyGreenlet *greenlet, PyObject *args) | ||
* | ||
* g.switch(*args, **kwargs) | ||
*/ | ||
#define PyGreenlet_Switch \ | ||
(* (PyObject * (*)(PyGreenlet *greenlet, PyObject *args, PyObject *kwargs)) \ | ||
_PyGreenlet_API[PyGreenlet_Switch_NUM]) | ||
|
||
/* | ||
* PyGreenlet_SetParent(PyObject *greenlet, PyObject *new_parent) | ||
* | ||
* g.parent = new_parent | ||
*/ | ||
#define PyGreenlet_SetParent \ | ||
(* (int (*)(PyGreenlet *greenlet, PyGreenlet *nparent)) \ | ||
_PyGreenlet_API[PyGreenlet_SetParent_NUM]) | ||
|
||
/* Macro that imports greenlet and initializes C API */ | ||
#ifdef GREENLET_USE_PYCAPSULE | ||
#define PyGreenlet_Import() \ | ||
{ \ | ||
_PyGreenlet_API = (void**)PyCapsule_Import("greenlet._C_API", 0); \ | ||
} | ||
#else | ||
#define PyGreenlet_Import() \ | ||
{ \ | ||
PyObject *module = PyImport_ImportModule("greenlet"); \ | ||
if (module != NULL) { \ | ||
PyObject *c_api_object = PyObject_GetAttrString( \ | ||
module, "_C_API"); \ | ||
if (c_api_object != NULL && PyCObject_Check(c_api_object)) { \ | ||
_PyGreenlet_API = \ | ||
(void **) PyCObject_AsVoidPtr(c_api_object); \ | ||
Py_DECREF(c_api_object); \ | ||
} \ | ||
Py_DECREF(module); \ | ||
} \ | ||
} | ||
#endif | ||
|
||
#endif /* GREENLET_MODULE */ | ||
|
||
#ifdef __cplusplus | ||
} | ||
#endif | ||
#endif /* !Py_GREENLETOBJECT_H */ |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+3.63 KB
env/lib/python3.8/site-packages/MySQLdb/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+3.33 KB
env/lib/python3.8/site-packages/MySQLdb/__pycache__/_exceptions.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+367 Bytes
env/lib/python3.8/site-packages/MySQLdb/__pycache__/compat.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+11.3 KB
env/lib/python3.8/site-packages/MySQLdb/__pycache__/connections.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+3.6 KB
env/lib/python3.8/site-packages/MySQLdb/__pycache__/converters.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+15.7 KB
env/lib/python3.8/site-packages/MySQLdb/__pycache__/cursors.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+311 Bytes
env/lib/python3.8/site-packages/MySQLdb/__pycache__/release.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+3.6 KB
env/lib/python3.8/site-packages/MySQLdb/__pycache__/times.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+931 Bytes
env/lib/python3.8/site-packages/MySQLdb/constants/__pycache__/CLIENT.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+870 Bytes
env/lib/python3.8/site-packages/MySQLdb/constants/__pycache__/FIELD_TYPE.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+651 Bytes
env/lib/python3.8/site-packages/MySQLdb/constants/__pycache__/FLAG.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+250 Bytes
env/lib/python3.8/site-packages/MySQLdb/constants/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+76.1 KB
env/lib/python3.8/site-packages/__pycache__/virtualenv.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+251 Bytes
env/lib/python3.8/site-packages/certifi/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+467 Bytes
env/lib/python3.8/site-packages/certifi/__pycache__/core.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+844 Bytes
env/lib/python3.8/site-packages/chardet/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+26.5 KB
env/lib/python3.8/site-packages/chardet/__pycache__/big5freq.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.1 KB
env/lib/python3.8/site-packages/chardet/__pycache__/big5prober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+6.07 KB
env/lib/python3.8/site-packages/chardet/__pycache__/chardistribution.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.19 KB
env/lib/python3.8/site-packages/chardet/__pycache__/charsetgroupprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+3.4 KB
env/lib/python3.8/site-packages/chardet/__pycache__/charsetprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.84 KB
env/lib/python3.8/site-packages/chardet/__pycache__/codingstatemachine.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+349 Bytes
env/lib/python3.8/site-packages/chardet/__pycache__/compat.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.11 KB
env/lib/python3.8/site-packages/chardet/__pycache__/cp949prober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.58 KB
env/lib/python3.8/site-packages/chardet/__pycache__/enums.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.57 KB
env/lib/python3.8/site-packages/chardet/__pycache__/escprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+7.29 KB
env/lib/python3.8/site-packages/chardet/__pycache__/escsm.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.39 KB
env/lib/python3.8/site-packages/chardet/__pycache__/eucjpprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+11.8 KB
env/lib/python3.8/site-packages/chardet/__pycache__/euckrfreq.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.11 KB
env/lib/python3.8/site-packages/chardet/__pycache__/euckrprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+26.5 KB
env/lib/python3.8/site-packages/chardet/__pycache__/euctwfreq.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.11 KB
env/lib/python3.8/site-packages/chardet/__pycache__/euctwprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+18.7 KB
env/lib/python3.8/site-packages/chardet/__pycache__/gb2312freq.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.12 KB
env/lib/python3.8/site-packages/chardet/__pycache__/gb2312prober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.95 KB
env/lib/python3.8/site-packages/chardet/__pycache__/hebrewprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+21.6 KB
env/lib/python3.8/site-packages/chardet/__pycache__/jisfreq.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+36.7 KB
env/lib/python3.8/site-packages/chardet/__pycache__/jpcntx.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+23.1 KB
env/lib/python3.8/site-packages/chardet/__pycache__/langbulgarianmodel.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+28.4 KB
env/lib/python3.8/site-packages/chardet/__pycache__/langcyrillicmodel.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+23 KB
env/lib/python3.8/site-packages/chardet/__pycache__/langgreekmodel.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+21.7 KB
env/lib/python3.8/site-packages/chardet/__pycache__/langhebrewmodel.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+21.7 KB
env/lib/python3.8/site-packages/chardet/__pycache__/langthaimodel.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+21.7 KB
env/lib/python3.8/site-packages/chardet/__pycache__/langturkishmodel.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+3.32 KB
env/lib/python3.8/site-packages/chardet/__pycache__/latin1prober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.21 KB
env/lib/python3.8/site-packages/chardet/__pycache__/mbcharsetprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.1 KB
env/lib/python3.8/site-packages/chardet/__pycache__/mbcsgroupprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+16.4 KB
env/lib/python3.8/site-packages/chardet/__pycache__/mbcssm.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.94 KB
env/lib/python3.8/site-packages/chardet/__pycache__/sbcharsetprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.58 KB
env/lib/python3.8/site-packages/chardet/__pycache__/sbcsgroupprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.42 KB
env/lib/python3.8/site-packages/chardet/__pycache__/sjisprober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+5.69 KB
env/lib/python3.8/site-packages/chardet/__pycache__/universaldetector.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.94 KB
env/lib/python3.8/site-packages/chardet/__pycache__/utf8prober.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+433 Bytes
env/lib/python3.8/site-packages/chardet/__pycache__/version.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.71 KB
env/lib/python3.8/site-packages/click/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+16.7 KB
env/lib/python3.8/site-packages/click/__pycache__/_compat.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+3.28 KB
env/lib/python3.8/site-packages/click/__pycache__/_unicodefun.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+58.8 KB
env/lib/python3.8/site-packages/click/__pycache__/core.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+11.2 KB
env/lib/python3.8/site-packages/click/__pycache__/decorators.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+8.42 KB
env/lib/python3.8/site-packages/click/__pycache__/exceptions.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+8.41 KB
env/lib/python3.8/site-packages/click/__pycache__/formatting.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.86 KB
env/lib/python3.8/site-packages/click/__pycache__/globals.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+11.3 KB
env/lib/python3.8/site-packages/click/__pycache__/parser.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+20.4 KB
env/lib/python3.8/site-packages/click/__pycache__/termui.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+21.2 KB
env/lib/python3.8/site-packages/click/__pycache__/types.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+2.09 KB
env/lib/python3.8/site-packages/flask/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+4.6 KB
env/lib/python3.8/site-packages/flask/__pycache__/_compat.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+22.3 KB
env/lib/python3.8/site-packages/flask/__pycache__/blueprints.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+9.96 KB
env/lib/python3.8/site-packages/flask/__pycache__/config.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+1.71 KB
env/lib/python3.8/site-packages/flask/__pycache__/globals.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+34 KB
env/lib/python3.8/site-packages/flask/__pycache__/helpers.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+3.09 KB
env/lib/python3.8/site-packages/flask/__pycache__/logging.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+12 KB
env/lib/python3.8/site-packages/flask/__pycache__/sessions.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+2.37 KB
env/lib/python3.8/site-packages/flask/__pycache__/signals.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+4.93 KB
env/lib/python3.8/site-packages/flask/__pycache__/templating.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+4.25 KB
env/lib/python3.8/site-packages/flask/__pycache__/wrappers.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+11.4 KB
env/lib/python3.8/site-packages/flask/json/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+10.7 KB
env/lib/python3.8/site-packages/flask/json/__pycache__/tag.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+34.8 KB
env/lib/python3.8/site-packages/flask_sqlalchemy/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.16 KB
env/lib/python3.8/site-packages/flask_sqlalchemy/__pycache__/_compat.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+4.59 KB
env/lib/python3.8/site-packages/flask_sqlalchemy/__pycache__/model.cpython-38.pyc
Binary file not shown.
Binary file added
BIN
+1.46 KB
env/lib/python3.8/site-packages/flask_sqlalchemy/__pycache__/utils.cpython-38.pyc
Binary file not shown.
1 change: 1 addition & 0 deletions
1
env/lib/python3.8/site-packages/flask_talisman-0.7.0.dist-info/INSTALLER
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
Oops, something went wrong.