Skip to content

Initial update to add links to content #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,11 @@ gist-doc

This repository contains documentation of the [Semantic Arts gist minimalist upper ontology](https://github.com/semanticarts/gist/tree/master) in three formats: narrative, graphical, and Widoco-style.

Current version of gist: 11.0

Contents
-----

* **gist Constellations (eBook)**
* The organization of the eBook is based around the idea of 'constellations' of classes and predicates that deal with related concepts.
* The organization of the eBook is based around the idea of 'constellations' of classes and predicates that deal with related concepts.
* epub and mobi formats
* **gist Constellations (visualizations)**
* A collection of images built using the [Turtle Editor Viewer](http://semantechs.co.uk/turtle-editor-viewer/). Each image is made up of a single 'constellation' of classes as described above and shows the classes and their relationships, the literal annotations, and any anonymous classes used in class definitions.
Expand All @@ -19,5 +17,11 @@ More Information
-----

* [Download gist](https://www.semanticarts.com/gist/)
* [gist council meeting recordings](https://www.youtube.com/playlist?list=PLk2kJrehubb4dc3e5Db5Lvv9WMaOhV3V7)
* [Clone the gist repository](https://github.com/semanticarts/gist/tree/master)
* [Semantic Arts](https://www.semanticarts.com/)

Versions
-----

[gist version 11.0.0](https://gist-doc.semanticarts.com/gist-11.0/index-en.html)
63 changes: 63 additions & 0 deletions gist-11.0/index-en.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title id="title">gist docs </title>
<script>
const gistVersion = "11.0.0";
const imageNames = [
"agreement.png",
"category.png",
"collection.png",
"contact.png",
"content.png",
"date_and_time.png",
"event.png",
"human_behaviour.png",
"id.png",
"IoT.png",
"magnitude.png",
"organization.png",
"physical_world.png",
"place.png",
"project.png",
"specification.png",
"system.png",
"unit.png",
];
</script>
</head>
<body>
<noscript>You need to enable JavaScript to view this page.</noscript>
<h1 id="bodyTitle">gist-docs for gist Version </h1>
<p>Source: <a href="https://github.com/semanticarts/gist-doc">gist-docs git repository</a></p>
<h2>Ontology Browser</h2>
<p>
<a href="widoco-documentation/index-en.html">Widoco ontology documentation page</a>
</p>
<h2>eBook</h2>
<p>
<a id="ebook-epub" href="eBook/">epub format</a> or
<a id="ebook-mobi" href="ebook/">epub format</a>
</p>
<h2>Visualizations</h2>
<div id="imageList"></div>
<hr>
<div id="imageDiv"></div>
<script>
document.title += gistVersion;
document.getElementById("bodyTitle").innerHTML += gistVersion;
document.getElementById("ebook-epub").href = `eBook/gist_${gistVersion}_constellations.epub`;
document.getElementById("ebook-mobi").href = `eBook/gist_${gistVersion}_constellations.mobi`;

function replaceImage(image) {
document.getElementById("imageDiv").innerHTML =
`<img width="100%" src="${image}" alt="${image}">`;
}
imageNames.forEach((image) => {
var el = document.createElement('li');
el.innerHTML = `<a title="${image}" href="#" onclick="replaceImage('${image}')">${image}</a>`;
document.getElementById("imageList").appendChild(el);
});
</script>
</body>
</html>
12 changes: 12 additions & 0 deletions index-en.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title id="title">gist docs </title>
</head>
<body>

<h1>gist docs</h1>

<a href="https://gist-doc.semanticarts.com/gist-11.0/index-en.html">gist version 11.0.0</a>

</body>