Initial commit. - web-allergy - Stop the web industry poisoning your Internet e… | |
git clone git://bitreich.org/web-allergy git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfr… | |
Log | |
Files | |
Refs | |
Tags | |
README | |
LICENSE | |
--- | |
commit cd0fd3c4b21054420b117087b2125359e9f0ecc6 | |
Author: Christoph Lohmann <[email protected]> | |
Date: Wed, 31 Jul 2024 17:24:15 +0200 | |
Initial commit. | |
Diffstat: | |
A LICENSE | 1 + | |
A README.md | 22 ++++++++++++++++++++++ | |
A web.ttl | 48 +++++++++++++++++++++++++++++… | |
3 files changed, 71 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/LICENSE b/LICENSE | |
@@ -0,0 +1 @@ | |
+This repository is public domain. | |
diff --git a/README.md b/README.md | |
@@ -0,0 +1,22 @@ | |
+# Health On The Internet Is Important | |
+ | |
+We at Bitreich care for your health. | |
+ | |
+When using the web, we experience more and more itching, inner rage, | |
+changes of our mental position -- as a long term effect. The next time | |
+the same elements of the web are revisited, the itching and other | |
+symptoms are even bigger. | |
+ | |
+This means, the web industry is hiding allergens! They only do it for the | |
+profit! | |
+ | |
+We want to show transparency. | |
+ | |
+Do you feel the itching too? | |
+ | |
+## Bugs | |
+ | |
+If you see any bugs, please e-mail: | |
+ | |
+ Christoph Lohmann <[email protected]> | |
+ | |
diff --git a/web.ttl b/web.ttl | |
@@ -0,0 +1,48 @@ | |
+# An ontology of the Web for tracking allergies | |
+ | |
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>. | |
+@prefix s: <http://www.w3.org/2000/01/rdf-schema#>. | |
+@prefix owl: <http://www.w3.org/2002/07/owl#>. | |
+@prefix dc: <http://purl.org/dc/terms/>. | |
+@prefix : <https://w3.org/ns/pim/web#>. | |
+@prefix web: <https://w3.org/ns/pim/web#>. # @@ claim the space | |
+ | |
+<> a owl:Ontology; | |
+dc:title "An Ontology for Web Allergies"; | |
+s:comment """... """ . | |
+ | |
+:WebItem a s:Class; | |
+ s:label "web item"@en. | |
+ | |
+:Allergen a s:Class; = <https://www.wikidata.org/wiki/Q186752>; | |
+ s:label "allergen"@en | |
+ | |
+:MainAllergen a s:Class; s:subcClassOf :Allergen; | |
+ s:label "main allergen"; | |
+ s:comment """One of the main allergens when using the Web.""" ; | |
+ owl:disjointUnionOf | |
+( :Javascript | |
+:WebAssembly | |
+:HTML | |
+:XHTML | |
+:CSS | |
+:XPath | |
+:JSON | |
+:HTTP | |
+:Firefox | |
+:Chromium | |
+:RDF ) . | |
+ | |
+:Javascript a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "javascr… | |
+:WebAssembly a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "webass… | |
+:HTML a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "html"@en . | |
+:XHTML a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "xhtml"@en . | |
+:CSS a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "css"@en . | |
+:XPath a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "xpath"@en . | |
+:JSON a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "json"@en . | |
+:HTTP a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "http"@en . | |
+:Firefox a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "firefox"@e… | |
+:Chromium a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "chromium"… | |
+:RDF a s:Class; s:subClassOf :MainAllergen, :Allergen; s:label "rdf"@en . | |
+ | |
+# ENDS |