From 8782b3a55ce6c613c2509e627bc281f366928e9d Mon Sep 17 00:00:00 2001 From: dbeeson Date: Sat, 31 Aug 2024 13:59:52 -0400 Subject: [PATCH] First commit --- moneygraph/.htaccess | 21 +++++++++++++++++++++ moneygraph/README.md | 11 +++++++++++ 2 files changed, 32 insertions(+) create mode 100644 moneygraph/.htaccess create mode 100644 moneygraph/README.md diff --git a/moneygraph/.htaccess b/moneygraph/.htaccess new file mode 100644 index 000000000..acac7b47b --- /dev/null +++ b/moneygraph/.htaccess @@ -0,0 +1,21 @@ +RewriteEngine on + +# https://w3id.org/moneygraph/ns/ontology/* +# This is the moneygraph ontology namespace; we are redirecting it to a web page +RewriteRule ^ns/ontology/$ https://github.com/turingtest37/moneygraph/blob/main/ontologies/moneygraph.ttl [R=302,L] + +# https://w3id.org/moneygraph/ns/taxonomy/* +# This is the moneygraph ontology namespace; we are redirecting it to a web page +RewriteRule ^ns/taxonomy/$ https://github.com/turingtest37/moneygraph/blob/main/ontologies/moneygraph.ttl [R=302,L] + +# https://w3id.org/moneygraph/ns/data/* +# This is the moneygraph ontology namespace; we are redirecting it to a web page +RewriteRule ^ns/data/$ https://github.com/turingtest37/moneygraph/blob/main/ontologies/moneygraph.ttl [R=302,L] + + + +# everything else to be redirected to a similar URL on our server +# Ex: https://w3id.org/semanticarts/gistCore +# Ex: https://w3id.org/semanticarts/gistCore.ttl +# Ex: https://w3id.org/semanticarts/ns/ontology/gist/Person +RewriteRule ^(.+)$ https://moneygraph.info/$1 [R=302,L] \ No newline at end of file diff --git a/moneygraph/README.md b/moneygraph/README.md new file mode 100644 index 000000000..038108910 --- /dev/null +++ b/moneygraph/README.md @@ -0,0 +1,11 @@ +Moneygraph is a project to use RDF, OWL ontologies, and graph databases to model and implement a personal investment portfolio database. + +The Moneygraph namespaces are: + +`PREFIX mg: ` # Definitions of Moneygraph # classes, properties, and named individual. + +`PREFIX mgx: ` # Instances of classes that may be organized as a taxonomy. This includes simple lists and tree-like hierachies of concepts. Control of taxonomies is often delegated to specific business units or departments. + +`PREFIX mg3: ` # Triples involving regular data + +Eventually this will have a more public face at https://moneygraph.info