Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop:
  make conference stored field for migration analysis
  Added new publication types for KDSF compliance (#386)
  UBO-328 Allow to provide dropdown dividers in user menu via navigation.xml (#385)
  UBO-327 fixed xpath
  fixed typo
  UBO-327 also delete accidentally imported license information with non..
  UBO-327 Added migration stylesheet migrate-lang-genre-accessCondition.xsl combining migration of mods:genre, mods:languageTerm and mods:accessCondition
  UBO-321 Do not display placeholders in identity picker search result (#377)
  UBO-325 Improve accessibility of result page (#381)
  UBO-284 Added migrate-mods-accessCondition.xsl. Fixed migrate-mods-ge… (#383)
  UBO-326 Added classification importSourceType.xml and adopted import-list.xed to the use of new classification (#382)
  UBO-291 Store mods:genre with authorityURI and valueURI (#342)
  UBO-309 Add rate-limiting URI-Resolver (#365)
  UBO-324 Made generated id's in ubo-dialog.xsl unique (#380)
  UBO-319 Added rfc5646.xml, added migrate-rfc4646-to-rfc5646.xsl, updated <xed:template id="languages"/> to use rfc5646 in import-editor.xed (#375)
  UBO-323 Index corresponding author (#379)
  UBO-322 Display realname (if any) rather than uid of user on profile page (#378)
  UBO-320 Ugrade MCR.user2.LDAP.Mapping.labeledURI.id_gnd.schema to https (#376)
  UBO-317 Add button to copy url to result set to clipboard (#373)
  UBO-318 Read request handler from $RequestURL (#374)
  UBO-316 Made request handler for statistics configurable (#372)
  • Loading branch information
kkrebs committed May 27, 2024
2 parents b35999c + 1fc8b10 commit ebd7315
Show file tree
Hide file tree
Showing 53 changed files with 43,424 additions and 300 deletions.
5 changes: 5 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,11 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.bucket4j</groupId>
<artifactId>bucket4j-core</artifactId>
<version>8.9.0</version>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
Expand Down
26 changes: 26 additions & 0 deletions ubo-cli/src/main/setup/classifications/importSourceType.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<mycoreclass ID="importSourceType" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="MCRClassification.xsd">

<label xml:lang="en" text="Typ der Importquelle"/>
<label xml:lang="de" text="Type of import source"/>

<categories>
<category ID="BibTeX">
<label xml:lang="de" text="BibTeX Quellcode"/>
<label xml:lang="en" text="BibTeX source code"/>
</category>
<category ID="ORCID">
<label xml:lang="de" text="Publikationen aus dem ORCID Profil"/>
<label xml:lang="en" text="Publications from the ORCID profile"/>
</category>
<category ID="PPNList">
<label xml:lang="de" text="Literaturliste im PPN-Listenformat"/>
<label xml:lang="en" text="Bibliography in PPN list format"/>
</category>
<category ID="DOIList">
<label xml:lang="de" text="Literaturliste im DOI-Listenformat"/>
<label xml:lang="en" text="Bibliography in DOI list format"/>
</category>
</categories>
</mycoreclass>
Loading

0 comments on commit ebd7315

Please sign in to comment.