├── .ckr.json ├── .cm ├── alias-a-module ├── alias-a-wfe ├── alias-u-032630d041b4fd8a └── alias-u-1e4e644996b7f2a0 ├── .gitignore ├── AUTHORS ├── CHANGES ├── CONTRIBUTIONS ├── COPYRIGHT.txt ├── LICENSE.txt ├── README.md ├── module ├── .cm │ ├── alias-a-dashboard │ ├── alias-a-qr-code │ ├── alias-a-user │ ├── alias-a-wfe │ ├── alias-u-1e4e644996b7f2a0 │ ├── alias-u-31945a474d940ab0 │ ├── alias-u-4a4581c2dddde890 │ └── alias-u-5fd6485380ef9ff2 ├── dashboard │ ├── .cm │ │ ├── desc.json │ │ ├── info.json │ │ ├── meta.json │ │ └── updates.json │ └── module.py ├── qr-code │ ├── .cm │ │ ├── info.json │ │ └── meta.json │ ├── PyQRNative.py │ └── module.py ├── user │ ├── .cm │ │ ├── desc.json │ │ ├── info.json │ │ ├── meta.json │ │ └── updates.json │ └── module.py └── wfe │ ├── .cm │ ├── desc.json │ ├── info.json │ ├── meta.json │ ├── meta.json.arc1 │ └── updates.json │ └── module.py └── wfe ├── .cm ├── alias-a-dashboard ├── alias-a-default ├── alias-u-0c59982d4480b4ee └── alias-u-6b411f75e774059b ├── dashboard ├── .cm │ ├── desc.json │ ├── info.json │ └── meta.json ├── ck-repo-widget │ ├── widget.css │ ├── widget.js │ └── workflows.json ├── css │ ├── plugins │ │ └── plugins.css │ └── style.css ├── fonts │ ├── LeagueSpartan-Bold.otf │ ├── raleway │ │ ├── Raleway-Bold.ttf │ │ └── Raleway-ExtraBold.ttf │ └── roboto │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-Medium.ttf │ │ └── Roboto-Regular.ttf ├── images │ └── dividiti │ │ └── logo.png ├── js │ ├── d3.v5.min.js │ └── plugins │ │ └── plugins.js └── template.html └── default ├── .cm ├── info.json └── meta.json ├── css └── layout-fixed.css ├── images ├── ck-logo-small.png ├── ck-logo.png ├── ck-logo1.png ├── ctuning-logo.png ├── ctuning-logo1.png ├── ctuning-logo2.png ├── email_50px.png ├── linkedin_34px.png ├── linkedin_50px.png ├── logo_sunrise5.png ├── stamp-validated-by-the-community.png ├── twitter_32px.png └── twitter_50px.png ├── template.html ├── template.v0.html ├── template.v1.html └── template.v2.html /.ckr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/.ckr.json -------------------------------------------------------------------------------- /.cm/alias-a-module: -------------------------------------------------------------------------------- 1 | 032630d041b4fd8a 2 | -------------------------------------------------------------------------------- /.cm/alias-a-wfe: -------------------------------------------------------------------------------- 1 | 1e4e644996b7f2a0 2 | -------------------------------------------------------------------------------- /.cm/alias-u-032630d041b4fd8a: -------------------------------------------------------------------------------- 1 | module 2 | -------------------------------------------------------------------------------- /.cm/alias-u-1e4e644996b7f2a0: -------------------------------------------------------------------------------- 1 | wfe 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/CHANGES -------------------------------------------------------------------------------- /CONTRIBUTIONS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/CONTRIBUTIONS -------------------------------------------------------------------------------- /COPYRIGHT.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2015-2021 cTuning foundation 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/README.md -------------------------------------------------------------------------------- /module/.cm/alias-a-dashboard: -------------------------------------------------------------------------------- 1 | 4a4581c2dddde890 2 | -------------------------------------------------------------------------------- /module/.cm/alias-a-qr-code: -------------------------------------------------------------------------------- 1 | 5fd6485380ef9ff2 2 | -------------------------------------------------------------------------------- /module/.cm/alias-a-user: -------------------------------------------------------------------------------- 1 | 31945a474d940ab0 2 | -------------------------------------------------------------------------------- /module/.cm/alias-a-wfe: -------------------------------------------------------------------------------- 1 | 1e4e644996b7f2a0 2 | -------------------------------------------------------------------------------- /module/.cm/alias-u-1e4e644996b7f2a0: -------------------------------------------------------------------------------- 1 | wfe 2 | -------------------------------------------------------------------------------- /module/.cm/alias-u-31945a474d940ab0: -------------------------------------------------------------------------------- 1 | user 2 | -------------------------------------------------------------------------------- /module/.cm/alias-u-4a4581c2dddde890: -------------------------------------------------------------------------------- 1 | dashboard 2 | -------------------------------------------------------------------------------- /module/.cm/alias-u-5fd6485380ef9ff2: -------------------------------------------------------------------------------- 1 | qr-code 2 | -------------------------------------------------------------------------------- /module/dashboard/.cm/desc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/dashboard/.cm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/dashboard/.cm/info.json -------------------------------------------------------------------------------- /module/dashboard/.cm/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/dashboard/.cm/meta.json -------------------------------------------------------------------------------- /module/dashboard/.cm/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/dashboard/.cm/updates.json -------------------------------------------------------------------------------- /module/dashboard/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/dashboard/module.py -------------------------------------------------------------------------------- /module/qr-code/.cm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/qr-code/.cm/info.json -------------------------------------------------------------------------------- /module/qr-code/.cm/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/qr-code/.cm/meta.json -------------------------------------------------------------------------------- /module/qr-code/PyQRNative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/qr-code/PyQRNative.py -------------------------------------------------------------------------------- /module/qr-code/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/qr-code/module.py -------------------------------------------------------------------------------- /module/user/.cm/desc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/user/.cm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/user/.cm/info.json -------------------------------------------------------------------------------- /module/user/.cm/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/user/.cm/meta.json -------------------------------------------------------------------------------- /module/user/.cm/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/user/.cm/updates.json -------------------------------------------------------------------------------- /module/user/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/user/module.py -------------------------------------------------------------------------------- /module/wfe/.cm/desc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /module/wfe/.cm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/wfe/.cm/info.json -------------------------------------------------------------------------------- /module/wfe/.cm/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/wfe/.cm/meta.json -------------------------------------------------------------------------------- /module/wfe/.cm/meta.json.arc1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/wfe/.cm/meta.json.arc1 -------------------------------------------------------------------------------- /module/wfe/.cm/updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/wfe/.cm/updates.json -------------------------------------------------------------------------------- /module/wfe/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/module/wfe/module.py -------------------------------------------------------------------------------- /wfe/.cm/alias-a-dashboard: -------------------------------------------------------------------------------- 1 | 0c59982d4480b4ee 2 | -------------------------------------------------------------------------------- /wfe/.cm/alias-a-default: -------------------------------------------------------------------------------- 1 | 6b411f75e774059b 2 | -------------------------------------------------------------------------------- /wfe/.cm/alias-u-0c59982d4480b4ee: -------------------------------------------------------------------------------- 1 | dashboard 2 | -------------------------------------------------------------------------------- /wfe/.cm/alias-u-6b411f75e774059b: -------------------------------------------------------------------------------- 1 | default 2 | -------------------------------------------------------------------------------- /wfe/dashboard/.cm/desc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /wfe/dashboard/.cm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/.cm/info.json -------------------------------------------------------------------------------- /wfe/dashboard/.cm/meta.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /wfe/dashboard/ck-repo-widget/widget.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/ck-repo-widget/widget.css -------------------------------------------------------------------------------- /wfe/dashboard/ck-repo-widget/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/ck-repo-widget/widget.js -------------------------------------------------------------------------------- /wfe/dashboard/ck-repo-widget/workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/ck-repo-widget/workflows.json -------------------------------------------------------------------------------- /wfe/dashboard/css/plugins/plugins.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/css/plugins/plugins.css -------------------------------------------------------------------------------- /wfe/dashboard/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/css/style.css -------------------------------------------------------------------------------- /wfe/dashboard/fonts/LeagueSpartan-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/fonts/LeagueSpartan-Bold.otf -------------------------------------------------------------------------------- /wfe/dashboard/fonts/raleway/Raleway-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/fonts/raleway/Raleway-Bold.ttf -------------------------------------------------------------------------------- /wfe/dashboard/fonts/raleway/Raleway-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/fonts/raleway/Raleway-ExtraBold.ttf -------------------------------------------------------------------------------- /wfe/dashboard/fonts/roboto/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/fonts/roboto/Roboto-Bold.ttf -------------------------------------------------------------------------------- /wfe/dashboard/fonts/roboto/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/fonts/roboto/Roboto-Medium.ttf -------------------------------------------------------------------------------- /wfe/dashboard/fonts/roboto/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/fonts/roboto/Roboto-Regular.ttf -------------------------------------------------------------------------------- /wfe/dashboard/images/dividiti/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/images/dividiti/logo.png -------------------------------------------------------------------------------- /wfe/dashboard/js/d3.v5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/js/d3.v5.min.js -------------------------------------------------------------------------------- /wfe/dashboard/js/plugins/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/js/plugins/plugins.js -------------------------------------------------------------------------------- /wfe/dashboard/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/dashboard/template.html -------------------------------------------------------------------------------- /wfe/default/.cm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/.cm/info.json -------------------------------------------------------------------------------- /wfe/default/.cm/meta.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /wfe/default/css/layout-fixed.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/css/layout-fixed.css -------------------------------------------------------------------------------- /wfe/default/images/ck-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/ck-logo-small.png -------------------------------------------------------------------------------- /wfe/default/images/ck-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/ck-logo.png -------------------------------------------------------------------------------- /wfe/default/images/ck-logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/ck-logo1.png -------------------------------------------------------------------------------- /wfe/default/images/ctuning-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/ctuning-logo.png -------------------------------------------------------------------------------- /wfe/default/images/ctuning-logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/ctuning-logo1.png -------------------------------------------------------------------------------- /wfe/default/images/ctuning-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/ctuning-logo2.png -------------------------------------------------------------------------------- /wfe/default/images/email_50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/email_50px.png -------------------------------------------------------------------------------- /wfe/default/images/linkedin_34px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/linkedin_34px.png -------------------------------------------------------------------------------- /wfe/default/images/linkedin_50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/linkedin_50px.png -------------------------------------------------------------------------------- /wfe/default/images/logo_sunrise5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/logo_sunrise5.png -------------------------------------------------------------------------------- /wfe/default/images/stamp-validated-by-the-community.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/stamp-validated-by-the-community.png -------------------------------------------------------------------------------- /wfe/default/images/twitter_32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/twitter_32px.png -------------------------------------------------------------------------------- /wfe/default/images/twitter_50px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/images/twitter_50px.png -------------------------------------------------------------------------------- /wfe/default/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/template.html -------------------------------------------------------------------------------- /wfe/default/template.v0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/template.v0.html -------------------------------------------------------------------------------- /wfe/default/template.v1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/template.v1.html -------------------------------------------------------------------------------- /wfe/default/template.v2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ctuning/ck-web/HEAD/wfe/default/template.v2.html --------------------------------------------------------------------------------