- further views: help-view.component, oai-view-component
- new .card header images
This commit is contained in:
parent
8590fa755b
commit
b120650121
18 changed files with 429 additions and 112 deletions
6
src/views/oai-view/oai-view-component.ts
Normal file
6
src/views/oai-view/oai-view-component.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
import { Options, Vue } from "vue-class-component";
|
||||
|
||||
@Options({
|
||||
name: "OaiViewComponent",
|
||||
})
|
||||
export default class OaiViewComponent extends Vue {}
|
40
src/views/oai-view/oai-view-component.vue
Normal file
40
src/views/oai-view/oai-view-component.vue
Normal file
|
@ -0,0 +1,40 @@
|
|||
<template>
|
||||
<div class="container">
|
||||
<div class="column is-full text-center">
|
||||
<p class="lead">OAI</p>
|
||||
<hr class="center-line" />
|
||||
</div>
|
||||
<div class="column is-full text-left">
|
||||
<p class="paragraph-justify">
|
||||
Die Open Archives Initiative (OAI; http://www.openarchives.org) dient der Entwicklung und Förderung von Interoperabilitätsstandards für die Auffindbarkeit von
|
||||
elektronischen Publikationen im Internet. Das dazu entwickelte Protokoll OAI-PMH (OAI Protocol for Metadata Harvesting) wird zum globalen „Ernten“ der durch
|
||||
Metadaten beschriebenen Publikationen im Internet herangezogen. Eine Liste aller OAI-Provider wird unter folgender Adresse zur Verfügung gestellt:
|
||||
<a href="https://www.openarchives.org/Register/BrowseSites" target="_blank">www.openarchives.org/Register/BrowseSites</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="column is-full text-center">
|
||||
<p class="lead">OAI-PMH</p>
|
||||
<hr class="center-line" />
|
||||
</div>
|
||||
<div class="column is-full text-left">
|
||||
<p class="paragraph-justify">
|
||||
Die OAI-PMH Basis URL für das Research Data Repository der Geologischen Bundesanstalt lautet
|
||||
<a href="https://tethys.at/oai">https://tethys.at/oai</a> <br />
|
||||
Derzeit unterstützt das OAI-Service den Metadatenstandard DC (OAI-PMH Dublin Core) und eingeschränkt den Standard DataCite (aktuell in dieser Testkonfiguration noch
|
||||
ohne Vergabe einer im Schema verpflichtenden DOI).
|
||||
</p>
|
||||
<!-- <ul class="quicklinks">
|
||||
<li><a href="?verb=Identify">Identify</a> |</li>
|
||||
<li><a href="?verb=ListRecords&metadataPrefix=oai_dc">ListRecords</a> |</li>
|
||||
<li><a href="?verb=ListSets">ListSets</a> |</li>
|
||||
<li><a href="?verb=ListMetadataFormats">ListMetadataFormats</a> |</li>
|
||||
<li><a href="?verb=ListIdentifiers&metadataPrefix=oai_dc">ListIdentifiers</a></li>
|
||||
</ul> -->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import OaiViewComponent from "./oai-view-component";
|
||||
export default OaiViewComponent;
|
||||
</script>
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue