├── .gitignore ├── README.md └── docs ├── assets ├── .DS_Store ├── next.jpeg ├── tatdqa-sample.jpg └── tatdqa-sample.png ├── fonts ├── Lobster-Regular.ttf ├── OFL.txt ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── index.html ├── scripts ├── bootstrap.min.js ├── jquery-3.2.1.min.js ├── jquery.easing.min.js ├── scrolling-nav.js └── show-json.js └── styles ├── bootstrap.min.css ├── common.css └── show-json.css /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/assets/.DS_Store -------------------------------------------------------------------------------- /docs/assets/next.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/assets/next.jpeg -------------------------------------------------------------------------------- /docs/assets/tatdqa-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/assets/tatdqa-sample.jpg -------------------------------------------------------------------------------- /docs/assets/tatdqa-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/assets/tatdqa-sample.png -------------------------------------------------------------------------------- /docs/fonts/Lobster-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/fonts/Lobster-Regular.ttf -------------------------------------------------------------------------------- /docs/fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/fonts/OFL.txt -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/scripts/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/scripts/bootstrap.min.js -------------------------------------------------------------------------------- /docs/scripts/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/scripts/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /docs/scripts/jquery.easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/scripts/jquery.easing.min.js -------------------------------------------------------------------------------- /docs/scripts/scrolling-nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/scripts/scrolling-nav.js -------------------------------------------------------------------------------- /docs/scripts/show-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/scripts/show-json.js -------------------------------------------------------------------------------- /docs/styles/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/styles/bootstrap.min.css -------------------------------------------------------------------------------- /docs/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/styles/common.css -------------------------------------------------------------------------------- /docs/styles/show-json.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NExTplusplus/TAT-DQA/HEAD/docs/styles/show-json.css --------------------------------------------------------------------------------