Skip to content

Commit

Permalink
Merge pull request 'Release v24.08.1' (#11) from release_24.08.1 into…
Browse files Browse the repository at this point in the history
… master
  • Loading branch information
janvonde committed Sep 7, 2024
2 parents 87384bb + 686e79c commit 1c7d5cb
Show file tree
Hide file tree
Showing 10 changed files with 94 additions and 4 deletions.
11 changes: 10 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ pipeline {
anyOf {
branch 'master'
branch 'release_*'
branch 'hotfix_release_*'
allOf {
branch 'PR-*'
expression { env.CHANGE_BRANCH.startsWith("release_") }
Expand All @@ -43,6 +44,7 @@ pipeline {
anyOf {
branch 'master'
branch 'release_*'
branch 'hotfix_release_*'
allOf {
branch 'PR-*'
expression { env.CHANGE_BRANCH.startsWith("release_") }
Expand All @@ -59,6 +61,7 @@ pipeline {
anyOf {
branch 'master'
branch 'release_*'
branch 'hotfix_release_*'
branch 'sonar_*'
allOf {
branch 'PR-*'
Expand All @@ -83,6 +86,7 @@ pipeline {
anyOf {
branch 'master'
branch 'develop'
branch 'hotfix_release_*'
}
}
steps {
Expand All @@ -95,7 +99,12 @@ pipeline {
}
}
stage('tag release') {
when { branch 'master' }
when {
anyOf {
branch 'master'
branch 'hotfix_release_*'
}
}
steps {
withCredentials([gitUsernamePassword(credentialsId: '93f7e7d3-8f74-4744-a785-518fc4d55314',
gitToolName: 'git-tool')]) {
Expand Down
41 changes: 41 additions & 0 deletions docs/index_de.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
title: Benutzerzuweisung
identifier: intranda_step_user_assignment
description: Step Plugin für die Zuweisung von Aufgaben an Benutzer
published: true
---

## Einführung
Diese Dokumentation erläutert das Plugin zur Zuweisung von Benutzern an bestimmte Aufgaben im Workflow.

## Installation
Um das Plugin nutzen zu können, müssen folgende Dateien installiert werden:

```bash
/opt/digiverso/goobi/plugins/step/plugin-step-user-assignment-base.jar
/opt/digiverso/goobi/config/plugin_intranda_step_user_assignment.xml
```

Für die Verwendung des Plugins muss dieses in einem Arbeitsschritt ausgewählt sein:

![Konfiguration des Arbeitsschritts für die Nutzung des Plugins](screen1_de.png)

Nach der Ausführung des Plugins sieht die Oberfläche des Plugins folgendermaßen aus:

![Zuweisung von Benutzern an Aufgaben](screen2_de.png)

## Überblick und Funktionsweise
Zuerst müssen in der Konfigurationsdatei die jeweiligen individuellen Werte eingetragen werden. Anschließend kann das Plugin ausgeführt werden. Dabei sammelt es zunächst alle angegebenen Parameter und lädt anschließend alle Benutzer. Diesen können dann Aufgaben in der Benutzeroberfläche des Plugins zugewiesen werden.

## Konfiguration
Die Konfiguration des Plugins erfolgt in der Datei `plugin_intranda_step_user_assignment.xml` wie hier aufgezeigt:

{{CONFIG_CONTENT}}

{{CONFIG_DESCRIPTION_PROJECT_STEP}}

Parameter | Erläuterung
------------------------|------------------------------------
`workflow` | Der Name der Produktionsvorlage, die genutzt wird.|
`assignmentStep` | Der Arbeitsschritt, in dem das Plugin aktiv wird, um Benutzer für den nächsten Schritt (`targetStep`) zuzuweisen. |
`targetStep` | Der Arbeitsschritt, welcher der Benutzer zugewiesen wird.|
40 changes: 40 additions & 0 deletions docs/index_en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
---
title: User Assignment
identifier: intranda_step_user_assignment
description: Step Plugin for Assigning Tasks to Users
published: true
---

## Introduction
This documentation explains the plugin used for assigning users to specific tasks within the workflow.

## Installation
To be able to use the plugin, the following files must be installed:

```bash
/opt/digiverso/goobi/plugins/step/plugin-step-user-assignment-base.jar
/opt/digiverso/goobi/config/plugin_intranda_step_user_assignment.xml
```
To use the plugin, it must be selected in a workflow step:

![Configuration of the workflow step for using the plugin](screen1_en.png)

After executing the plugin, the plugin interface will appear as follows:

![Assigning users to tasks](screen2_en.png)

## Overview and functionality
First, the respective individual values must be entered in the configuration file. Afterward, the plugin can be executed. It initially collects all specified parameters and then loads all users. These users can then be assigned tasks within the plugin's user interface.

## Configuration
The plugin is configured in the file `plugin_intranda_step_user_assignment.xml` as shown here:

{{CONFIG_CONTENT}}

{{CONFIG_DESCRIPTION_PROJECT_STEP}}

Parameter | Explanation
------------------------|------------------------------------
`workflow` | The name of the production template being used.|
`assignmentStep` | The workflow step where the plugin activates to assign users for the next step (`targetStep`). |
`targetStep` | The workflow step to which the user is assigned.|
Binary file added docs/screen1_de.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screen1_en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screen2_de.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/screen2_en.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion module-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.goobi.workflow.plugin</groupId>
<artifactId>plugin-step-user-assignment</artifactId>
<version>24.07</version>
<version>24.08.1</version>
</parent>
<artifactId>plugin-step-user-assignment-base</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion module-gui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.goobi.workflow.plugin</groupId>
<artifactId>plugin-step-user-assignment</artifactId>
<version>24.07</version>
<version>24.08.1</version>
</parent>
<artifactId>plugin-step-user-assignment-gui</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>io.goobi.workflow</groupId>
<artifactId>workflow-base</artifactId>
<version>24.07</version>
<version>24.08.1</version>
<relativePath />
</parent>
<groupId>io.goobi.workflow.plugin</groupId>
Expand Down

0 comments on commit 1c7d5cb

Please sign in to comment.