-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
348 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"html.format.wrapAttributes": "force-expand-multiline", | ||
//PHP | ||
"intelephense.format.braces": "k&r", | ||
"intelephense.format.enable": false, | ||
//Typescript | ||
"typescript.format.insertSpaceBeforeFunctionParenthesis": false, | ||
// JavaScript | ||
"javascript.format.enable": true, | ||
"javascript.format.insertSpaceBeforeFunctionParenthesis": false, | ||
"javascript.format.insertSpaceAfterKeywordsInControlFlowStatements": false, | ||
// "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false, | ||
// VUE | ||
"vue.format.wrapAttributes": "force-expand-multiline", | ||
"vue.format.script.initialIndent": true, | ||
"vue.format.style.initialIndent": true, | ||
"vue.format.template.initialIndent": true, | ||
// Volar | ||
"volar.format.initialIndent": { | ||
"html": true, | ||
"css": true, | ||
"javascript": true | ||
}, | ||
// General | ||
"editor.trimAutoWhitespace": false, | ||
// CSS | ||
"css.format.spaceAroundSelectorSeparator": true, | ||
//SCSS | ||
"scss.format.spaceAroundSelectorSeparator": true, | ||
// XML | ||
"xml.format.splitAttributes": "splitNewLine" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "dev", | ||
"type": "shell", | ||
"command": "npm run docs:dev" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { defineClientConfig } from '@vuepress/client'; | ||
import GridLayout from "./components/GridLayout.vue"; | ||
|
||
export default defineClientConfig({ | ||
layouts: { | ||
GridLayout | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
<!-- .vuepress/components/GridLayout.vue --> | ||
<template> | ||
<Layout> | ||
<template #page> | ||
<main class="vp-page"> | ||
<div | ||
class="theme-default-content" | ||
vp-content | ||
> | ||
<Content /> | ||
|
||
<div | ||
class="vp-features" | ||
v-if="$frontmatter?.grid && $frontmatter.grid?.length > 0" | ||
> | ||
<component | ||
class="vp-feature" | ||
v-for="item in $frontmatter.grid" | ||
:is="item.link ? 'a' : 'div'" | ||
:href="hrefOf(item)" | ||
:key="item.title" | ||
> | ||
<div style="padding: 0.2rem 1rem;"> | ||
<img | ||
v-if="item.icon" | ||
class="no-zoom" | ||
:src="item.icon" | ||
alt="" | ||
> | ||
</div> | ||
<header> | ||
<h2>{{ item.title }}</h2> | ||
</header> | ||
<p>{{ item.details }}</p> | ||
</component> | ||
</div> | ||
</div> | ||
</main> | ||
|
||
</template> | ||
</Layout> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Layout from '@vuepress/theme-default/lib/client/layouts/Layout.vue' | ||
import { Content, resolveRoutePath } from 'vuepress/client'; | ||
|
||
export default { | ||
components: { | ||
Layout, | ||
}, | ||
setup() { | ||
|
||
const hrefOf = (item) => { | ||
if (item.link) { | ||
return resolveRoutePath(item.link); | ||
} | ||
return ''; | ||
} | ||
|
||
return { | ||
Content, | ||
hrefOf, | ||
resolveRoutePath, | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
|
||
.vp-features { | ||
align-items: stretch; | ||
|
||
img { | ||
display: block; | ||
max-width: 33vw; | ||
margin: auto; | ||
} | ||
} | ||
|
||
.vp-feature { | ||
filter: brightness(0.7) grayscale(0.8); | ||
padding: .5rem 1rem; | ||
box-sizing: border-box; | ||
margin-bottom: 1rem; | ||
|
||
header { | ||
|
||
display: flex; | ||
flex-direction: column; | ||
justify-content: flex-end; | ||
min-height: 4rem; | ||
|
||
h2 { | ||
margin: 0; | ||
padding-top: 0; | ||
} | ||
} | ||
} | ||
|
||
a.vp-feature { | ||
color: inherit; | ||
text-decoration: none; | ||
border: 1px solid #eaecef; | ||
border-radius: 1rem; | ||
filter: brightness(0.85); | ||
transition: all 0.1s; | ||
|
||
&:hover { | ||
filter: brightness(1); | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Attribute | ||
|
||
An attribute is a certain implementation of an Attribute in combination with a [Dictionary Label](./thesaurex). | ||
An attribute is a certain implementation of an Attribute in combination with a [Dictionary Label](./thesaurus). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,40 @@ | ||
--- | ||
layout: GridLayout | ||
grid: | ||
- icon: "./images/feature-icons/web-based.svg" | ||
title: Web-based Software | ||
details: The client can be accessed on any computer using a standard browser. | ||
- icon: "./images/feature-icons/custom.svg" | ||
link: "./data-model.md" | ||
title: Customizable Data Model | ||
details: Highly flexible project-specific data models with a wide range of attribute types. | ||
- icon: "./images/feature-icons/thesaurus.svg" | ||
link: "./thesaurus.md" | ||
title: Thesaurus | ||
details: Multilingual and centrally controlled vocabulary for compliant with the SKOS standard. | ||
- icon: "./images/feature-icons/bib.svg" | ||
title: Bibliography | ||
details: Basic bibliography management, allowing BibTex import and export. | ||
- icon: "./images/feature-icons/user.svg" | ||
title: User & Role Management | ||
details: Manages user accounts and assign them specific roles with fully customizable rights and permissions. | ||
- icon: "./images/feature-icons/collab.svg" | ||
title: Collaboration | ||
details: Working on the same dataset as a team, managing certainty, literature and commenting on the data directly. | ||
- icon: "./images/feature-icons/plugins.svg" | ||
title: Plugins | ||
details: Application is extensible through a plugin system. Adding existing functionality or writing custom plugins. | ||
- icon: "./images/feature-icons/import.svg" | ||
title: Files | ||
details: The file plugin enables a file system, where files can be linked to single entities. | ||
- icon: "./images/feature-icons/map.svg" | ||
title: Map | ||
details: The map plugin provides a light-weight GIS interface to visualize the data on maps. | ||
- icon: "./images/feature-icons/analysis.svg" | ||
title: Analysis | ||
details: User-Interface to run elaborate queries without the need to write SQL. | ||
--- | ||
# User Guide | ||
|
||
Here will be more informations for Spacialist users soon. | ||
Spacialist is a versatile, highly customizable, user-friendly database management solution for the sciences and the digital humanities in peticular. The application has a wide variety of features. | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.