forked from geolba/tethys.frontend
- xslt file for oai
This commit is contained in:
parent
fb40b230d9
commit
f3536847df
4 changed files with 659 additions and 2 deletions
|
@ -132,7 +132,7 @@
|
|||
</footer>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="copyright-notice">Copyright 2021 TETHYS RDR</div>
|
||||
<div class="copyright-notice">Copyright 2022 TETHYS RDR</div>
|
||||
</div>
|
||||
|
||||
<!-- <vs-input
|
||||
|
|
|
@ -5,6 +5,7 @@ import DatasetService from "../../services/dataset.service";
|
|||
import { Subscription } from "rxjs";
|
||||
import moment from "moment";
|
||||
import SimpleSearchComponent from "@/components/simple-search/simple-search-component.vue";
|
||||
import { VUE_APP_PORTAL } from "@/constants";
|
||||
|
||||
@Options({
|
||||
name: "DatasetDetailComponent",
|
||||
|
@ -21,6 +22,7 @@ export default class DatasetDetailComponent extends Vue {
|
|||
private error = "";
|
||||
public loaded = false;
|
||||
public openAccessLicences: Array<string> = ["CC-BY-4.0", "CC-BY-SA-4.0"];
|
||||
public portal = VUE_APP_PORTAL + "/file/download/";
|
||||
|
||||
created(): void {
|
||||
this.getDataset(this.datasetId);
|
||||
|
|
|
@ -107,7 +107,7 @@
|
|||
<tbody>
|
||||
<tr v-for="file in dataset.files" :key="file.id">
|
||||
<td>
|
||||
<a class="link-label" target="_blank" v-bind:href="'/portal/file/download/' + file.id"> {{ file.label }} </a>
|
||||
<a class="link-label" target="_blank" v-bind:href="portal + file.id"> {{ file.label }} </a>
|
||||
</td>
|
||||
<td>
|
||||
<span>{{ getExtension(file.path_name) }}</span>
|
||||
|
|
Loading…
Add table
editor.link_modal.header
Reference in a new issue