├── .browserslistrc ├── .dir-locals.el ├── .editorconfig ├── .env ├── .envrc ├── .gitignore ├── .prettierrc ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── Procfile ├── README.md ├── babel.config.js ├── data ├── README.md ├── classes │ └── .keepdir ├── exampleData │ ├── classes.json │ ├── properties.json │ └── statistics.json ├── format.md ├── properties │ └── .keepdir ├── rules.json └── rules.schema.json ├── flake.lock ├── flake.nix ├── helpers ├── README.md ├── ansible │ ├── ansible.cfg │ ├── build.yml │ ├── deploy.yml │ ├── group_vars │ │ └── sqid.yml │ ├── production │ ├── requirements.txt │ ├── roles │ │ ├── build │ │ │ └── tasks │ │ │ │ ├── main.yml │ │ │ │ ├── sqid-helper.yml │ │ │ │ └── sqid.yml │ │ └── deploy │ │ │ └── tasks │ │ │ ├── main.yml │ │ │ ├── sqid-helper.yml │ │ │ └── sqid.yml │ └── site.yml └── rust │ ├── .containerignore │ ├── .logrotate.conf │ ├── Cargo.toml │ ├── Containerfile │ ├── README.md │ ├── src │ ├── classes.rs │ ├── main.rs │ ├── properties.rs │ ├── rules.rs │ ├── sparql.rs │ ├── statistics.rs │ ├── types.rs │ └── types │ │ ├── ids.rs │ │ ├── json.rs │ │ ├── php.rs │ │ ├── sparql.rs │ │ ├── sql.rs │ │ └── statistics.rs │ └── toolforge.yaml ├── jest.config.js ├── nix ├── default.nix └── sqid-helper │ └── default.nix ├── package.json ├── postcss.config.js ├── public ├── icon.svg ├── index.html ├── logo.svg ├── oauth │ ├── composer.json │ ├── composer.lock │ ├── config.php │ ├── oauth.php │ └── rsa_client.php └── toolinfo.json ├── rust-toolchain.toml ├── shell.nix ├── src ├── App.vue ├── api │ ├── commons.ts │ ├── endpoints.ts │ ├── index.ts │ ├── rules │ │ ├── ast.ts │ │ ├── index.ts │ │ ├── parser.ts │ │ └── types.ts │ ├── sparql.ts │ ├── sqid.ts │ ├── types.ts │ └── wikidata.ts ├── assets │ └── logo.svg ├── components │ ├── AppFooter.vue │ ├── AppNavbar.vue │ ├── AppNavbarLogin.vue │ ├── AppNavbarNavlinks.vue │ ├── AppNavbarSearchBox.vue │ ├── Claim.vue │ ├── ClaimGroup.vue │ ├── ClaimReference.vue │ ├── ClaimTable.vue │ ├── DataValue.vue │ ├── Entity.vue │ ├── EntityLink.vue │ ├── Snak.vue │ ├── SnakValue.vue │ ├── SqidBars.vue │ ├── SqidCollapseButton.vue │ ├── SqidCollapsibleCard.vue │ ├── SqidImage.vue │ └── SqidQualifierIcon.vue ├── http.ts ├── i18n.ts ├── locales │ ├── de.json │ └── en.json ├── main.ts ├── plugins │ └── bootstrap-vue.js ├── progress.ts ├── router.ts ├── shims-tsx.d.ts ├── shims-vue.d.ts ├── store │ ├── entity │ │ ├── actions.ts │ │ ├── claims │ │ │ ├── actions.ts │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ ├── mutations.ts │ │ │ └── types.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ ├── terms │ │ │ ├── actions.ts │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ ├── mutations.ts │ │ │ └── types.ts │ │ └── types.ts │ ├── i18n │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ └── types.ts │ ├── index.ts │ ├── login │ │ ├── actions.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── mutations.ts │ │ └── types.ts │ ├── statistics │ │ ├── actions.ts │ │ ├── classes │ │ │ ├── actions.ts │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ ├── mutations.ts │ │ │ └── types.ts │ │ ├── getters.ts │ │ ├── index.ts │ │ ├── items │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ ├── mutations.ts │ │ │ └── types.ts │ │ ├── mutations.ts │ │ ├── properties │ │ │ ├── actions.ts │ │ │ ├── getters.ts │ │ │ ├── index.ts │ │ │ ├── mutations.ts │ │ │ └── types.ts │ │ └── types.ts │ └── types.ts └── views │ ├── About.vue │ ├── Construction.vue │ ├── Entity.vue │ ├── Home.vue │ ├── InvalidEntity.vue │ ├── NotFound.vue │ └── Status.vue ├── tests └── unit │ ├── home.spec.ts │ └── rules.spec.ts ├── tsconfig.json ├── tslint.json └── vue.config.js /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/.env -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/.prettierrc -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/Procfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/babel.config.js -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/data/README.md -------------------------------------------------------------------------------- /data/classes/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/exampleData/classes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/data/exampleData/classes.json -------------------------------------------------------------------------------- /data/exampleData/properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/data/exampleData/properties.json -------------------------------------------------------------------------------- /data/exampleData/statistics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/data/exampleData/statistics.json -------------------------------------------------------------------------------- /data/format.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/data/format.md -------------------------------------------------------------------------------- /data/properties/.keepdir: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/data/rules.json -------------------------------------------------------------------------------- /data/rules.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/data/rules.schema.json -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/flake.nix -------------------------------------------------------------------------------- /helpers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/README.md -------------------------------------------------------------------------------- /helpers/ansible/ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/ansible.cfg -------------------------------------------------------------------------------- /helpers/ansible/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/build.yml -------------------------------------------------------------------------------- /helpers/ansible/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/deploy.yml -------------------------------------------------------------------------------- /helpers/ansible/group_vars/sqid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/group_vars/sqid.yml -------------------------------------------------------------------------------- /helpers/ansible/production: -------------------------------------------------------------------------------- 1 | [sqid] 2 | tools-login.wmflabs.org 3 | -------------------------------------------------------------------------------- /helpers/ansible/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/requirements.txt -------------------------------------------------------------------------------- /helpers/ansible/roles/build/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/roles/build/tasks/main.yml -------------------------------------------------------------------------------- /helpers/ansible/roles/build/tasks/sqid-helper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/roles/build/tasks/sqid-helper.yml -------------------------------------------------------------------------------- /helpers/ansible/roles/build/tasks/sqid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/roles/build/tasks/sqid.yml -------------------------------------------------------------------------------- /helpers/ansible/roles/deploy/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/roles/deploy/tasks/main.yml -------------------------------------------------------------------------------- /helpers/ansible/roles/deploy/tasks/sqid-helper.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/roles/deploy/tasks/sqid-helper.yml -------------------------------------------------------------------------------- /helpers/ansible/roles/deploy/tasks/sqid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/roles/deploy/tasks/sqid.yml -------------------------------------------------------------------------------- /helpers/ansible/site.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/ansible/site.yml -------------------------------------------------------------------------------- /helpers/rust/.containerignore: -------------------------------------------------------------------------------- 1 | Containerfile 2 | README.md 3 | .logrotate.conf 4 | -------------------------------------------------------------------------------- /helpers/rust/.logrotate.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/.logrotate.conf -------------------------------------------------------------------------------- /helpers/rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/Cargo.toml -------------------------------------------------------------------------------- /helpers/rust/Containerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/Containerfile -------------------------------------------------------------------------------- /helpers/rust/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/README.md -------------------------------------------------------------------------------- /helpers/rust/src/classes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/classes.rs -------------------------------------------------------------------------------- /helpers/rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/main.rs -------------------------------------------------------------------------------- /helpers/rust/src/properties.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/properties.rs -------------------------------------------------------------------------------- /helpers/rust/src/rules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/rules.rs -------------------------------------------------------------------------------- /helpers/rust/src/sparql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/sparql.rs -------------------------------------------------------------------------------- /helpers/rust/src/statistics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/statistics.rs -------------------------------------------------------------------------------- /helpers/rust/src/types.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/types.rs -------------------------------------------------------------------------------- /helpers/rust/src/types/ids.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/types/ids.rs -------------------------------------------------------------------------------- /helpers/rust/src/types/json.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/types/json.rs -------------------------------------------------------------------------------- /helpers/rust/src/types/php.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/types/php.rs -------------------------------------------------------------------------------- /helpers/rust/src/types/sparql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/types/sparql.rs -------------------------------------------------------------------------------- /helpers/rust/src/types/sql.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/types/sql.rs -------------------------------------------------------------------------------- /helpers/rust/src/types/statistics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/src/types/statistics.rs -------------------------------------------------------------------------------- /helpers/rust/toolforge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/helpers/rust/toolforge.yaml -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/jest.config.js -------------------------------------------------------------------------------- /nix/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/nix/default.nix -------------------------------------------------------------------------------- /nix/sqid-helper/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/nix/sqid-helper/default.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/icon.svg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/logo.svg -------------------------------------------------------------------------------- /public/oauth/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/oauth/composer.json -------------------------------------------------------------------------------- /public/oauth/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/oauth/composer.lock -------------------------------------------------------------------------------- /public/oauth/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/oauth/config.php -------------------------------------------------------------------------------- /public/oauth/oauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/oauth/oauth.php -------------------------------------------------------------------------------- /public/oauth/rsa_client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/oauth/rsa_client.php -------------------------------------------------------------------------------- /public/toolinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/public/toolinfo.json -------------------------------------------------------------------------------- /rust-toolchain.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/rust-toolchain.toml -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/shell.nix -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/api/commons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/commons.ts -------------------------------------------------------------------------------- /src/api/endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/endpoints.ts -------------------------------------------------------------------------------- /src/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/index.ts -------------------------------------------------------------------------------- /src/api/rules/ast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/rules/ast.ts -------------------------------------------------------------------------------- /src/api/rules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/rules/index.ts -------------------------------------------------------------------------------- /src/api/rules/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/rules/parser.ts -------------------------------------------------------------------------------- /src/api/rules/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/rules/types.ts -------------------------------------------------------------------------------- /src/api/sparql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/sparql.ts -------------------------------------------------------------------------------- /src/api/sqid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/sqid.ts -------------------------------------------------------------------------------- /src/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/types.ts -------------------------------------------------------------------------------- /src/api/wikidata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/api/wikidata.ts -------------------------------------------------------------------------------- /src/assets/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/assets/logo.svg -------------------------------------------------------------------------------- /src/components/AppFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/AppFooter.vue -------------------------------------------------------------------------------- /src/components/AppNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/AppNavbar.vue -------------------------------------------------------------------------------- /src/components/AppNavbarLogin.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/AppNavbarLogin.vue -------------------------------------------------------------------------------- /src/components/AppNavbarNavlinks.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/AppNavbarNavlinks.vue -------------------------------------------------------------------------------- /src/components/AppNavbarSearchBox.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/AppNavbarSearchBox.vue -------------------------------------------------------------------------------- /src/components/Claim.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/Claim.vue -------------------------------------------------------------------------------- /src/components/ClaimGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/ClaimGroup.vue -------------------------------------------------------------------------------- /src/components/ClaimReference.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/ClaimReference.vue -------------------------------------------------------------------------------- /src/components/ClaimTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/ClaimTable.vue -------------------------------------------------------------------------------- /src/components/DataValue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/DataValue.vue -------------------------------------------------------------------------------- /src/components/Entity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/Entity.vue -------------------------------------------------------------------------------- /src/components/EntityLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/EntityLink.vue -------------------------------------------------------------------------------- /src/components/Snak.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/Snak.vue -------------------------------------------------------------------------------- /src/components/SnakValue.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/SnakValue.vue -------------------------------------------------------------------------------- /src/components/SqidBars.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/SqidBars.vue -------------------------------------------------------------------------------- /src/components/SqidCollapseButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/SqidCollapseButton.vue -------------------------------------------------------------------------------- /src/components/SqidCollapsibleCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/SqidCollapsibleCard.vue -------------------------------------------------------------------------------- /src/components/SqidImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/SqidImage.vue -------------------------------------------------------------------------------- /src/components/SqidQualifierIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/components/SqidQualifierIcon.vue -------------------------------------------------------------------------------- /src/http.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/http.ts -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/locales/de.json -------------------------------------------------------------------------------- /src/locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/locales/en.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/plugins/bootstrap-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/plugins/bootstrap-vue.js -------------------------------------------------------------------------------- /src/progress.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/progress.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/shims-tsx.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/shims-tsx.d.ts -------------------------------------------------------------------------------- /src/shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/shims-vue.d.ts -------------------------------------------------------------------------------- /src/store/entity/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/actions.ts -------------------------------------------------------------------------------- /src/store/entity/claims/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/claims/actions.ts -------------------------------------------------------------------------------- /src/store/entity/claims/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/claims/getters.ts -------------------------------------------------------------------------------- /src/store/entity/claims/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/claims/index.ts -------------------------------------------------------------------------------- /src/store/entity/claims/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/claims/mutations.ts -------------------------------------------------------------------------------- /src/store/entity/claims/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/claims/types.ts -------------------------------------------------------------------------------- /src/store/entity/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/getters.ts -------------------------------------------------------------------------------- /src/store/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/index.ts -------------------------------------------------------------------------------- /src/store/entity/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/mutations.ts -------------------------------------------------------------------------------- /src/store/entity/terms/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/terms/actions.ts -------------------------------------------------------------------------------- /src/store/entity/terms/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/terms/getters.ts -------------------------------------------------------------------------------- /src/store/entity/terms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/terms/index.ts -------------------------------------------------------------------------------- /src/store/entity/terms/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/terms/mutations.ts -------------------------------------------------------------------------------- /src/store/entity/terms/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/terms/types.ts -------------------------------------------------------------------------------- /src/store/entity/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/entity/types.ts -------------------------------------------------------------------------------- /src/store/i18n/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/i18n/actions.ts -------------------------------------------------------------------------------- /src/store/i18n/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/i18n/getters.ts -------------------------------------------------------------------------------- /src/store/i18n/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/i18n/index.ts -------------------------------------------------------------------------------- /src/store/i18n/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/i18n/mutations.ts -------------------------------------------------------------------------------- /src/store/i18n/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/i18n/types.ts -------------------------------------------------------------------------------- /src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/index.ts -------------------------------------------------------------------------------- /src/store/login/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/login/actions.ts -------------------------------------------------------------------------------- /src/store/login/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/login/getters.ts -------------------------------------------------------------------------------- /src/store/login/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/login/index.ts -------------------------------------------------------------------------------- /src/store/login/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/login/mutations.ts -------------------------------------------------------------------------------- /src/store/login/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/login/types.ts -------------------------------------------------------------------------------- /src/store/statistics/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/actions.ts -------------------------------------------------------------------------------- /src/store/statistics/classes/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/classes/actions.ts -------------------------------------------------------------------------------- /src/store/statistics/classes/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/classes/getters.ts -------------------------------------------------------------------------------- /src/store/statistics/classes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/classes/index.ts -------------------------------------------------------------------------------- /src/store/statistics/classes/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/classes/mutations.ts -------------------------------------------------------------------------------- /src/store/statistics/classes/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/classes/types.ts -------------------------------------------------------------------------------- /src/store/statistics/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/getters.ts -------------------------------------------------------------------------------- /src/store/statistics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/index.ts -------------------------------------------------------------------------------- /src/store/statistics/items/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/items/getters.ts -------------------------------------------------------------------------------- /src/store/statistics/items/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/items/index.ts -------------------------------------------------------------------------------- /src/store/statistics/items/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/items/mutations.ts -------------------------------------------------------------------------------- /src/store/statistics/items/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/items/types.ts -------------------------------------------------------------------------------- /src/store/statistics/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/mutations.ts -------------------------------------------------------------------------------- /src/store/statistics/properties/actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/properties/actions.ts -------------------------------------------------------------------------------- /src/store/statistics/properties/getters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/properties/getters.ts -------------------------------------------------------------------------------- /src/store/statistics/properties/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/properties/index.ts -------------------------------------------------------------------------------- /src/store/statistics/properties/mutations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/properties/mutations.ts -------------------------------------------------------------------------------- /src/store/statistics/properties/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/properties/types.ts -------------------------------------------------------------------------------- /src/store/statistics/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/statistics/types.ts -------------------------------------------------------------------------------- /src/store/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/store/types.ts -------------------------------------------------------------------------------- /src/views/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/views/About.vue -------------------------------------------------------------------------------- /src/views/Construction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/views/Construction.vue -------------------------------------------------------------------------------- /src/views/Entity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/views/Entity.vue -------------------------------------------------------------------------------- /src/views/Home.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/views/Home.vue -------------------------------------------------------------------------------- /src/views/InvalidEntity.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/views/InvalidEntity.vue -------------------------------------------------------------------------------- /src/views/NotFound.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/views/NotFound.vue -------------------------------------------------------------------------------- /src/views/Status.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/src/views/Status.vue -------------------------------------------------------------------------------- /tests/unit/home.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/tests/unit/home.spec.ts -------------------------------------------------------------------------------- /tests/unit/rules.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/tests/unit/rules.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/tslint.json -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wikidata/SQID/HEAD/vue.config.js --------------------------------------------------------------------------------