mirror of
https://github.com/Cian-H/invenio-theme-iform.git
synced 2025-12-23 05:01:58 +00:00
Compare commits
22 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8b606007cd | ||
|
|
32e785cb28 | ||
|
|
765c43c283 | ||
|
|
bfe2c45b09 | ||
|
|
d511a3d9c7 | ||
|
|
83fe44db8e | ||
|
|
41bfcf0cee | ||
|
|
bc1c9bcc9c | ||
|
|
ae21366bfa | ||
|
|
9e92934451 | ||
|
|
0df53c42fa | ||
|
|
88d7125acf | ||
|
|
8425d410f2 | ||
|
|
c4f80c42a1 | ||
|
|
4698c797b2 | ||
|
|
0e5f08768d | ||
|
|
e4d38632a9 | ||
|
|
4fa0e2851f | ||
|
|
2c10cc885d | ||
|
|
f993fda3f6 | ||
|
|
ecacf0ba59 | ||
|
|
592d59e54d |
@@ -33,6 +33,7 @@ recursive-include invenio_theme_tugraz *.scss
|
||||
recursive-include invenio_theme_tugraz *.svg
|
||||
recursive-include invenio_theme_tugraz *.less
|
||||
recursive-include invenio_theme_tugraz *.ico
|
||||
recursive-include invenio_theme_tugraz *.pdf
|
||||
recursive-include tests *.py
|
||||
recursive-include invenio_theme_tugraz *.jpg
|
||||
recursive-include invenio_theme_tugraz *.gitkeep
|
||||
|
||||
@@ -58,10 +58,11 @@ export class DoiMint extends Component {
|
||||
// get the prefix from backend
|
||||
const prefix = this.configs.datacite_prefix;
|
||||
const suffix = this.configs.datacite_suffix;
|
||||
const host_url = this.configs.datacite_host_url
|
||||
|
||||
if (prefix !== null && suffix !== null) {
|
||||
// get mapped DOI
|
||||
const mapped = MapDatacite(this.metadata, this.record.id, prefix, suffix);
|
||||
const mapped = MapDatacite(this.metadata, this.record.id, prefix, suffix, host_url);
|
||||
|
||||
const _fetchdoi = new FetchDoi("/getdoi");
|
||||
|
||||
@@ -113,10 +114,10 @@ export class DoiMint extends Component {
|
||||
}
|
||||
};
|
||||
|
||||
// get a link of dio
|
||||
var doiLink = (doiId) => {
|
||||
window.open(`https://doi.org/${doiId}`, "_blank");
|
||||
};
|
||||
// // get a link of dio
|
||||
// var doiLink = (doiId) => {
|
||||
// window.open(`https://doi.org/${doiId}`, "_blank");
|
||||
// };
|
||||
|
||||
return (
|
||||
<Card className="actions">
|
||||
@@ -187,13 +188,8 @@ export class DoiMint extends Component {
|
||||
</Message>
|
||||
)}
|
||||
<Label
|
||||
style={{
|
||||
cursor: "pointer",
|
||||
}}
|
||||
size="large"
|
||||
as="a"
|
||||
color="blue"
|
||||
onClick={() => doiLink(this.state.doi_id || this.id_doi)}
|
||||
>
|
||||
<strong>DOI: </strong>
|
||||
<Label.Detail>{this.state.doi_id || this.id_doi}</Label.Detail>
|
||||
|
||||
@@ -428,8 +428,10 @@ export class RDMDepositForm extends Component {
|
||||
label="Subjects"
|
||||
labelIcon="tag"
|
||||
/> */}
|
||||
|
||||
<LanguagesField
|
||||
{/**TODO- enable once issue is solved:
|
||||
* https://github.com/inveniosoftware/invenio-app-rdm/issues/738
|
||||
*/}
|
||||
{/* <LanguagesField
|
||||
initialOptions={_get(
|
||||
this.props.record,
|
||||
"ui.languages",
|
||||
@@ -442,7 +444,7 @@ export class RDMDepositForm extends Component {
|
||||
key: item.id,
|
||||
}))
|
||||
}
|
||||
/>
|
||||
/> */}
|
||||
<DatesField options={this.vocabularies.metadata.dates} />
|
||||
<VersionField />
|
||||
<PublisherField required />
|
||||
@@ -479,7 +481,7 @@ export class RDMDepositForm extends Component {
|
||||
</Grid.Column>
|
||||
<Ref innerRef={this.sidebarRef}>
|
||||
<Grid.Column width={5} className="deposit-sidebar">
|
||||
<Sticky context={this.sidebarRef} offset={20}>
|
||||
<Sticky context={this.sidebarRef} offset={50}>
|
||||
<Card className="actions">
|
||||
<Card.Content>
|
||||
<SaveButton fluid className="save-button" />
|
||||
|
||||
@@ -1,6 +1,12 @@
|
||||
import $ from 'jquery';
|
||||
import 'semantic-ui-css';
|
||||
|
||||
// called on document ready
|
||||
$(function() {
|
||||
importZammadScript();
|
||||
});
|
||||
|
||||
function importZammadScript() {
|
||||
let scriptNode = document.createElement("hidden"); //needed for zammad script
|
||||
scriptNode.id = "zammad_form_script";
|
||||
scriptNode.src = "https://ub-support.tugraz.at/assets/form/form.js";
|
||||
@@ -15,7 +21,15 @@ $(function() {
|
||||
modal: true
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
// used for sticky test instance notification
|
||||
$('.ui.sticky.test-instance')
|
||||
.sticky({
|
||||
context: 'body'
|
||||
})
|
||||
;
|
||||
|
||||
export function toggleVisibility(id) {
|
||||
var element = document.getElementById(id);
|
||||
|
||||
@@ -30,9 +30,19 @@
|
||||
text-decoration: none;
|
||||
color: @footerGrey;
|
||||
|
||||
&:hover, &:focus {
|
||||
// :focus-visible activates on keyboard only
|
||||
&:hover, &:focus:focus-visible {
|
||||
color: @primaryLink;
|
||||
background-color: @primaryLinkHoverBackground;
|
||||
|
||||
i.icon.download {
|
||||
color: @tugrazRed;
|
||||
}
|
||||
}
|
||||
|
||||
// remove blue focus outline if clicked with mouse
|
||||
&:focus:not(:focus-visible) {
|
||||
outline-style: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -247,3 +247,10 @@ svg:not(:root) {
|
||||
span.home-inline{
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.test-instance{
|
||||
text-align: center;
|
||||
background-color: @notificationBackground;
|
||||
border: solid @notificationBorder 1px;
|
||||
z-index: 100000;
|
||||
}
|
||||
|
||||
@@ -67,3 +67,7 @@
|
||||
|
||||
// input
|
||||
@outlineColor: #85B7D9;
|
||||
|
||||
// notification
|
||||
@notificationBackground: #fffaf3;
|
||||
@notificationBorder: #e2d5c2;
|
||||
|
||||
@@ -17,7 +17,9 @@ INVENIO_THEME_TUGRAZ_DEFAULT_VALUE = _("TU Graz Repository")
|
||||
INVENIO_THEME_TUGRAZ_BASE_TEMPLATE = "invenio_theme_tugraz/base.html"
|
||||
"""TU Graz Default base template"""
|
||||
|
||||
INVENIO_THEME_TUGRAZ_ACCOUNT_BASE = "invenio_theme_tugraz/accounts/accounts_base.html"
|
||||
INVENIO_THEME_TUGRAZ_ACCOUNT_BASE = (
|
||||
"invenio_theme_tugraz/accounts/accounts_base.html"
|
||||
)
|
||||
"""TU Graz Default account base template"""
|
||||
|
||||
INVENIO_THEME_TUGRAZ_ICON = "images/icon_use.png"
|
||||
@@ -26,9 +28,16 @@ INVENIO_THEME_TUGRAZ_ICON = "images/icon_use.png"
|
||||
INVENIO_THEME_TUGRAZ_LOGIN_IMG = "images/login_logo.png"
|
||||
"""TU Logo for forms"""
|
||||
|
||||
INVENIO_THEME_TUGRAZ_CONTACT_FORM = False
|
||||
THEME_TUGRAZ_CONTACT_FORM = False
|
||||
"""Enable/Disable Contact form."""
|
||||
|
||||
THEME_TUGRAZ_PRODUCTION = False
|
||||
"""Production environment.
|
||||
|
||||
Can also be set as an environment variable in a .env file. Then the name
|
||||
has to be 'INVENIO_THEME_TUGRAZ_PRODUCTION'.
|
||||
"""
|
||||
|
||||
# Invenio-theme
|
||||
# ============
|
||||
# See https://invenio-theme.readthedocs.io/en/latest/configuration.html
|
||||
@@ -67,7 +76,9 @@ THEME_SITENAME = _("Repository")
|
||||
SECURITY_LOGIN_USER_TEMPLATE = "invenio_theme_tugraz/accounts/login_user.html"
|
||||
"""Login template"""
|
||||
|
||||
SECURITY_REGISTER_USER_TEMPLATE = "invenio_theme_tugraz/accounts/register_user.html"
|
||||
SECURITY_REGISTER_USER_TEMPLATE = (
|
||||
"invenio_theme_tugraz/accounts/register_user.html"
|
||||
)
|
||||
"""Sigup template"""
|
||||
|
||||
# Invenio-I18N
|
||||
|
||||
@@ -34,5 +34,5 @@ class InvenioThemeTugraz(object):
|
||||
def init_config(self, app):
|
||||
"""Initialize configuration."""
|
||||
for k in dir(config):
|
||||
if k.startswith("INVENIO_THEME_TUGRAZ_"):
|
||||
if k.startswith("INVENIO_THEME_TUGRAZ_") or k.startswith("THEME_TUGRAZ_"):
|
||||
app.config.setdefault(k, getattr(config, k))
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -56,6 +56,12 @@
|
||||
{%- endblock head %}
|
||||
</head>
|
||||
<body ng-csp {% if body_css_classes %} class="{{ body_css_classes|join(' ') }}"{% endif %}{% if g.ln %} lang="{{ g.ln.split('_', 1)[0]|safe }}"{% if rtl_direction %} {{ rtl_direction|safe }}{% endif %}{% endif %} itemscope itemtype="http://schema.org/WebPage" data-spy="scroll" data-target=".scrollspy-target">
|
||||
{% if not config.THEME_TUGRAZ_PRODUCTION %}
|
||||
<div class="ui sticky test-instance">
|
||||
<h4>{{_ ("Test Instance") }}</h4>
|
||||
<p>{{_ ("This is the test instance of the TU Graz Repository.") }}</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
{%- block body %}
|
||||
{%- block browserupgrade %}
|
||||
<!--[if lt IE 8]>
|
||||
|
||||
@@ -25,12 +25,10 @@
|
||||
<div class="ui divider"></div>
|
||||
<!--Log in with SSO-->
|
||||
{%- if config.INVENIO_CONFIG_TUGRAZ_SHIBBOLETH %}
|
||||
<div class="login-page-button ui fluid large button">
|
||||
<a href="{{ url_for('sso_saml.sso', idp='idp') }}" class="inverted tiny image label">
|
||||
<a href="{{ url_for('sso_saml.sso', idp='idp') }}" class="login-page-button ui fluid large button">
|
||||
{% trans type='TUGRAZ' %} Log in with {{ type }}{% endtrans %}
|
||||
<img src="{{ url_for('static', filename=config.INVENIO_THEME_TUGRAZ_ICON)}}" height="20px" />
|
||||
</a>
|
||||
</div>
|
||||
<div class="spacer-long"></div>
|
||||
<div class="ui inverted horizontal divider"><span class="text-color">{{_ ("Or")}}</span></div>
|
||||
{%- endif %}
|
||||
|
||||
@@ -46,8 +46,7 @@
|
||||
<!--Sigup with SSO-->
|
||||
{%- if config.INVENIO_CONFIG_TUGRAZ_SHIBBOLETH %}
|
||||
<div class="ui divider"></div>
|
||||
<div class="login-page-button ui fluid large button">
|
||||
<a href="{{ url_for('sso_saml.sso', idp='idp') }}" class="inverted tiny image label">
|
||||
<a href="{{ url_for('sso_saml.sso', idp='idp') }}" class="login-page-button ui fluid large button">
|
||||
<span style="font-size: 18px;">{{ _('Sign up with TUGRAZ ') }}</span>
|
||||
<img src="{{ url_for('static', filename=config.INVENIO_THEME_TUGRAZ_ICON)}}" height="20px" />
|
||||
</a>
|
||||
|
||||
@@ -29,18 +29,30 @@
|
||||
|
||||
<h2>{{_ ("Repository")}}</h2>
|
||||
<p class="bodytext">
|
||||
<a href="https://tu-graz-library.github.io/docs-repository" title="Repository documentation" target="_blank">
|
||||
<a href="https://tu-graz-library.github.io/docs-repository" title="Repository documentation"
|
||||
target="_blank">
|
||||
{{_ ("Documentation")}} <i class="external alternate icon"></i>
|
||||
</a>
|
||||
<br>
|
||||
<a href="{{ url_for('static', filename='documents/TUGraz_Repository_Guide_01_de.pdf') }}"
|
||||
title="Quick guide" target="_blank">
|
||||
{{_ ("Reference Guide")}} <i class="download icon"></i>
|
||||
</a>
|
||||
<br>
|
||||
<a href="{{ url_for('static', filename='documents/TUGraz_Repository_General_Data_Protection_Rights_de.pdf') }}"
|
||||
title="General Data Protection Rights" target="_blank">
|
||||
{{_ ("Data Protection")}} <i class="download icon"></i>
|
||||
</a>
|
||||
<br>
|
||||
<a href="{{ url_for('static', filename='documents/TUGraz_Repository_Terms_And_Conditions_de.pdf') }}"
|
||||
title="Terms and Conditions" target="_blank">
|
||||
{{_ ("Terms and Conditions")}} <i class="download icon"></i>
|
||||
</a>
|
||||
<br>
|
||||
<!-- <a href="{{ url_for('invenio_theme_tugraz.comingsoon') }}">
|
||||
{{_ ("Impressum")}}<i class="angle right icon"></i>
|
||||
</a>
|
||||
<br>
|
||||
<a href="{{ url_for('invenio_theme_tugraz.comingsoon') }}">
|
||||
{{_ ("Data protection")}}<i class="angle right icon"></i>
|
||||
</a>
|
||||
<br>
|
||||
<a href="{{ url_for('invenio_theme_tugraz.comingsoon') }}">
|
||||
{{_ ("Feedback")}}<i class="angle right icon"></i>
|
||||
</a> -->
|
||||
@@ -87,7 +99,8 @@
|
||||
|
||||
<div class="column">
|
||||
<h2>{{_ ("Accessibility")}}</h2>
|
||||
<p class="bodytext">{{_ ("Tipp:")}}<br> {{_ ("Use Ctrl + and Crtl -")}}<br> {{_ ("to change the font size.")}}</p>
|
||||
<p class="bodytext">{{_ ("Tipp:")}}<br> {{_ ("Use Ctrl + and Crtl -")}}<br> {{_ ("to change the font size.")}}
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
@@ -6,9 +6,14 @@
|
||||
details.
|
||||
#}
|
||||
|
||||
{% if not config.THEME_TUGRAZ_PRODUCTION %}
|
||||
<div class="ui sticky test-instance">
|
||||
<h4>{{_ ("Test Instance") }}</h4>
|
||||
<p>{{_ ("This is the test instance of the TU Graz Repository.") }}</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
<header>
|
||||
|
||||
{%- block navbar %}
|
||||
<nav>
|
||||
{%- block navbar_header %}
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
{% endif %}
|
||||
|
||||
{%- for r in records %}
|
||||
{%- set creation_date = r._created|from_isodatetime -%}
|
||||
{%- set creation_date = r.created|from_isodatetime -%}
|
||||
{%- set record_url = url_for('invenio_app_rdm_records.record_detail', pid_value=r.id) %}
|
||||
|
||||
<article>
|
||||
@@ -134,7 +134,7 @@
|
||||
<!--contact us-->
|
||||
<div class="ui segment" style="padding-bottom: 10px;">
|
||||
<h4>{{_ ("Need help?")}}</h4>
|
||||
{%- if config.INVENIO_THEME_TUGRAZ_CONTACT_FORM %}
|
||||
{%- if config.THEME_TUGRAZ_CONTACT_FORM %}
|
||||
<div style="padding-bottom: 10px;">
|
||||
<a id="feedback-form" class="fluid ui button">
|
||||
{{_ ("Contact us")}}
|
||||
|
||||
@@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: invenio-theme-tugraz 1.0.4\n"
|
||||
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
||||
"POT-Creation-Date: 2021-03-19 10:53+0100\n"
|
||||
"POT-Creation-Date: 2021-04-12 13:20+0200\n"
|
||||
"PO-Revision-Date: 2020-10-06 10:27+0200\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language: de\n"
|
||||
@@ -19,16 +19,16 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.9.0\n"
|
||||
|
||||
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:54
|
||||
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:63
|
||||
msgid "TU Graz Repository"
|
||||
msgstr "TU Graz Repository"
|
||||
|
||||
#: invenio_theme_tugraz/config.py:57
|
||||
#: invenio_theme_tugraz/config.py:66
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:30
|
||||
msgid "Repository"
|
||||
msgstr "Repository"
|
||||
|
||||
#: invenio_theme_tugraz/config.py:80
|
||||
#: invenio_theme_tugraz/config.py:91
|
||||
msgid "German"
|
||||
msgstr "Deutsche"
|
||||
|
||||
@@ -46,8 +46,8 @@ msgid ""
|
||||
"your research is stored safely for the future in TU Graz library for as "
|
||||
"long as TU Graz library exists."
|
||||
msgstr ""
|
||||
"Ihre Forschung wird für die Zukunft sicher in der Bibliothek der TU Graz "
|
||||
"gespeichert als solange die Bibliothek TU Graz existiert."
|
||||
"Ihre Forschung ist in der Bibliothek der TU Graz für die Zukunft "
|
||||
"gespeichert,solange die Bibliothek der TU Graz existiert."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:4
|
||||
msgid "Trusted"
|
||||
@@ -58,8 +58,8 @@ msgid ""
|
||||
"built and operated by CERN and OpenAIRE to ensure that everyone can join "
|
||||
"in Open Science."
|
||||
msgstr ""
|
||||
"Gebaut und betrieben von CERN und OpenAIRE; um sicherzugehen, dass jedeR "
|
||||
"Zugang zu Open Science hat"
|
||||
"Aufgebaut und betrieben von CERN und OpenAIRE, um sicherzustellen, dass "
|
||||
"jeder an Open Science teilnehmen kann."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:5
|
||||
msgid "Citeable"
|
||||
@@ -70,8 +70,8 @@ msgid ""
|
||||
"every upload is assigned a Digital Object Identifier (DOI), to make them "
|
||||
"citable and trackable."
|
||||
msgstr ""
|
||||
"Jeder Upload erhält eine DOI um sicherzustellen,dass er zitierbar und "
|
||||
"auffindbar ist"
|
||||
"Jeder Upload wird mit einem Digital Object Identifier (DOI) versehen,um "
|
||||
"ihn zitierfähig und nachverfolgbar zu"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:6
|
||||
msgid "No waiting time"
|
||||
@@ -103,7 +103,7 @@ msgstr "Versionierung"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:8
|
||||
msgid "Easily update your dataset with our versioning feature."
|
||||
msgstr "Einfaches Updaten ihrer Datensätze mit unserere Versionierung."
|
||||
msgstr "Einfaches Updaten ihrer Datensätze mit unserer Versionierung."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/benefits.html:9
|
||||
msgid "Usage statisics"
|
||||
@@ -113,79 +113,101 @@ msgstr "Nutzungsstatistiken"
|
||||
msgid "All uploads display standards compliant usage statistics"
|
||||
msgstr "Alle Uploads entsprechen den Standards der Nutzungsstatistiken."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:33
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:34
|
||||
msgid "Documentation"
|
||||
msgstr "Dokumentation"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:39
|
||||
msgid "Reference Guide"
|
||||
msgstr "Handbuch"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:44
|
||||
msgid "Data Protection"
|
||||
msgstr "Datenschutzerklärung"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:49
|
||||
msgid "Terms and Conditions"
|
||||
msgstr "Nutzungsbedingungen"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:53
|
||||
msgid "Impressum"
|
||||
msgstr "Imprint"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:37
|
||||
msgid "Data protection"
|
||||
msgstr "Datenschutzerklärung"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:41
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:57
|
||||
msgid "Feedback"
|
||||
msgstr "Feedback"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:50
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:66
|
||||
msgid "Features"
|
||||
msgstr "Features"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:52
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:68
|
||||
msgid "Scalability"
|
||||
msgstr "Skalierbarkeit"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:54
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:70
|
||||
msgid "Institutional integration"
|
||||
msgstr "Institutionelle Einbindung"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:56
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
||||
msgid "Next Generation Repository"
|
||||
msgstr "Repositorium der nächsten Generation"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:59
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:75
|
||||
msgid "Repository Profiles"
|
||||
msgstr "Repositorienprofile"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:61
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:77
|
||||
msgid "Resilient"
|
||||
msgstr "Resilient, widerstandsfähig"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:68
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:84
|
||||
msgid "Connected Services"
|
||||
msgstr "Verbundene Services "
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:88
|
||||
msgid "PURE"
|
||||
msgstr "PURE"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:75
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:91
|
||||
msgid "CampusOnline"
|
||||
msgstr "CampusOnline"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:78
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:94
|
||||
msgid "Research Data Management"
|
||||
msgstr "Forschungsdatenmanagement"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:85
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:101
|
||||
msgid "Accessibility"
|
||||
msgstr "Barrierefreiheit"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:102
|
||||
msgid "Tipp:"
|
||||
msgstr ""
|
||||
msgstr "Tipp"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:102
|
||||
msgid "Use Ctrl + and Crtl -"
|
||||
msgstr "Verwenden Sie Strg+ und Strg-"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:102
|
||||
msgid "to change the font size."
|
||||
msgstr "Um die Schriftgröße zu ändern."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:34
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:61
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:11
|
||||
msgid "Test Instance"
|
||||
msgstr "Testumgebung"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:62
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:12
|
||||
msgid "This is the test instance of the TU Graz Repository."
|
||||
msgstr "Dies ist die Testumgebung des TU Graz Repositorys."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:39
|
||||
msgid "Home"
|
||||
msgstr "Startseite"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:47
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:52
|
||||
msgid "Uploads"
|
||||
msgstr "Hochladen"
|
||||
|
||||
@@ -233,11 +255,11 @@ msgstr "Kontaktiere uns"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:145
|
||||
msgid "prioritizes all Recent uploads."
|
||||
msgstr "Reiht die neuesten Uploads vor."
|
||||
msgstr "reiht die neuesten Uploads vor."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:148
|
||||
msgid "We can help with:"
|
||||
msgstr "Wir können helfen bei:"
|
||||
msgstr "Dabei können wir helfen:"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:153
|
||||
msgid "Uploading your research data, software, preprints, etc."
|
||||
@@ -245,7 +267,7 @@ msgstr "Hochladen Ihrer Forschungsdaten, Software, Preprints usw."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:154
|
||||
msgid "One-on-one with"
|
||||
msgstr "Eins-zu-eins mit"
|
||||
msgstr "One-on-one mit"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:154
|
||||
msgid "supporters."
|
||||
@@ -253,7 +275,7 @@ msgstr "Unterstützern"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:155
|
||||
msgid "Quota increases beyond our default policy."
|
||||
msgstr "Erhöhung Ihres Kontingents über das vertraglich Zugesicherte hinaus."
|
||||
msgstr "Quota Erhöhungen über unsere Standard Policy hinaus."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/index.html:156
|
||||
msgid "Scripts for automated uploading of larger datasets."
|
||||
@@ -375,7 +397,18 @@ msgstr "RDM DOI Abzeichen"
|
||||
msgid "DOI"
|
||||
msgstr "DOI"
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:44
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:35
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\n"
|
||||
" There is a %(link_start)snewer version%(link_end)s of the "
|
||||
"record available.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
"Es ist eine %(link_start)sneuere Version%(link_end)s des Eintrags "
|
||||
"verfügbar."
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:64
|
||||
msgid "Open Access"
|
||||
msgstr ""
|
||||
|
||||
@@ -392,3 +425,6 @@ msgstr ""
|
||||
#~ " "
|
||||
#~ msgstr "Hochgeladen am %(date)s\n"
|
||||
|
||||
#~ msgid "Handbook"
|
||||
#~ msgstr "Handbuch"
|
||||
|
||||
|
||||
@@ -7,9 +7,9 @@
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: invenio-theme-tugraz 1.9.3\n"
|
||||
"Project-Id-Version: invenio-theme-tugraz 2.0.7\n"
|
||||
"Report-Msgid-Bugs-To: mojib.wali@tugraz.at\n"
|
||||
"POT-Creation-Date: 2021-03-19 10:53+0100\n"
|
||||
"POT-Creation-Date: 2021-04-12 13:20+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@@ -18,16 +18,16 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Generated-By: Babel 2.9.0\n"
|
||||
|
||||
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:54
|
||||
#: invenio_theme_tugraz/config.py:14 invenio_theme_tugraz/config.py:63
|
||||
msgid "TU Graz Repository"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/config.py:57
|
||||
#: invenio_theme_tugraz/config.py:66
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:30
|
||||
msgid "Repository"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/config.py:80
|
||||
#: invenio_theme_tugraz/config.py:91
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
|
||||
@@ -102,79 +102,101 @@ msgstr ""
|
||||
msgid "All uploads display standards compliant usage statistics"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:33
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:34
|
||||
msgid "Documentation"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:39
|
||||
msgid "Reference Guide"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:44
|
||||
msgid "Data Protection"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:49
|
||||
msgid "Terms and Conditions"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:53
|
||||
msgid "Impressum"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:37
|
||||
msgid "Data protection"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:41
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:57
|
||||
msgid "Feedback"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:50
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:66
|
||||
msgid "Features"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:52
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:68
|
||||
msgid "Scalability"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:54
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:70
|
||||
msgid "Institutional integration"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:56
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
||||
msgid "Next Generation Repository"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:59
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:75
|
||||
msgid "Repository Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:61
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:77
|
||||
msgid "Resilient"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:68
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:84
|
||||
msgid "Connected Services"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:72
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:88
|
||||
msgid "PURE"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:75
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:91
|
||||
msgid "CampusOnline"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:78
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:94
|
||||
msgid "Research Data Management"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:85
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:101
|
||||
msgid "Accessibility"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:102
|
||||
msgid "Tipp:"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:102
|
||||
msgid "Use Ctrl + and Crtl -"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:86
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/footer.html:102
|
||||
msgid "to change the font size."
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:34
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:61
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:11
|
||||
msgid "Test Instance"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/accounts/accounts_base.html:62
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:12
|
||||
msgid "This is the test instance of the TU Graz Repository."
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:39
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:47
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/header.html:52
|
||||
msgid "Uploads"
|
||||
msgstr ""
|
||||
|
||||
@@ -359,7 +381,16 @@ msgstr ""
|
||||
msgid "DOI"
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:44
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:35
|
||||
#, python-format
|
||||
msgid ""
|
||||
"\n"
|
||||
" There is a %(link_start)snewer version%(link_end)s of the "
|
||||
"record available.\n"
|
||||
" "
|
||||
msgstr ""
|
||||
|
||||
#: invenio_theme_tugraz/templates/invenio_theme_tugraz/landingpage/detail.html:64
|
||||
msgid "Open Access"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -12,4 +12,4 @@ This file is imported by ``invenio_theme_tugraz.__init__``,
|
||||
and parsed by ``setup.py``.
|
||||
"""
|
||||
|
||||
__version__ = "2.0.1"
|
||||
__version__ = "2.0.9"
|
||||
|
||||
@@ -86,10 +86,12 @@ def get_datacite_details():
|
||||
"""Application credentials for DOI."""
|
||||
prefix = environ.get("INVENIO_DATACITE_PREFIX")
|
||||
suffix = environ.get("INVENIO_DATACITE_SUFFIX")
|
||||
host_url = environ.get("INVENIO_SITE_HOSTNAME")
|
||||
|
||||
details = {
|
||||
"datacite_prefix": prefix,
|
||||
"datacite_suffix": suffix,
|
||||
"datacite_host_url": host_url,
|
||||
}
|
||||
return details
|
||||
|
||||
@@ -105,7 +107,7 @@ def retrieve_doi():
|
||||
|
||||
doi_response = requests.post(
|
||||
url,
|
||||
auth=(username, password),
|
||||
auth=(username, password.encode('utf-8')),
|
||||
json=doi_metadata,
|
||||
)
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ theme = WebpackThemeBundle(
|
||||
'@ckeditor/ckeditor5-react': '^2.1.0',
|
||||
|
||||
# datacite - rest api plugin
|
||||
'datacite-rest': '^0.1.7',
|
||||
'datacite-rest': '^0.1.8',
|
||||
|
||||
},
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user