diff --git a/README b/README index c673216..e8864f0 100644 --- a/README +++ b/README @@ -2,7 +2,7 @@ === OJS DNB Export Plugin === Version: 1.3.2 === Author: Bozana Bokan, Ronald Steffen -=== Last update: January 15, 2021 +=== Last update: January 29, 2021 ============================================================= About @@ -35,7 +35,7 @@ Installation via command line without Git: - download archive from https://github.com/ojsde/dnb - unzip the archive to plugins/importexport and rename the main plugin folder to "dnb" if necessary - from your application's installation directory, run the upgrade script (it is recommended to back up your database first): - php tools/upgrade.php upgrade or php tools/installPluginVersion.php (see https://github.com/pkp/pkp-lib/issues/2503) + php tools/upgrade.php upgrade or php tools/installPluginVersion.php Installation with Git: - cd [my_ojs_installation]/plugins/importexport @@ -43,7 +43,7 @@ Installation with Git: - cd dnb - git checkout [branch] - cd [my_ojs_installation] - - php tools/upgrade.php upgrade or php tools/installPluginVersion.php (s. https://github.com/pkp/pkp-lib/issues/2503, it is recommended to back up your database first) + - php tools/upgrade.php upgrade or php tools/installPluginVersion.php Export ------------ diff --git a/README_DE b/README_DE index eb8872a..5f2cef6 100644 --- a/README_DE +++ b/README_DE @@ -2,7 +2,7 @@ === OJS DNB-Export-Plug-In === Version: 1.3.2 === Autor: Bozana Bokan, Ronald Steffen -=== Letzte Änderung: 15. Januar 2021 +=== Letzte Änderung: 29. Januar 2021 ============================================================= Über @@ -37,7 +37,7 @@ Installation über die Kommandozeile ohne Git: - ggf. Umbenennen des Hauptverzeichnisses in "dnb" - Aktualisierung der Datenbank (es empfiehlt sich, zuerst ein Backup der Datenbank zu erstellen), führen Sie dazu aus Ihrem OJS-Verzeichnis aus: php tools/upgrade.php upgrade oder - php tools/installPluginVersion.php (see https://github.com/pkp/pkp-lib/issues/2503) + php tools/upgrade.php upgrade or php tools/installPluginVersion.php Installation über die Kommandozeile mit Git: - cd [my_ojs_installation]/plugins/importexport @@ -45,7 +45,7 @@ Installation über die Kommandozeile mit Git: - cd dnb - git checkout [branch] - cd [my_ojs_installation] - - php tools/upgrade.php upgrade (es empfiehlt sich, zuerst ein Backup der Datenbank zu erstellen) oder php tools/installPluginVersion.php (s. https://github.com/pkp/pkp-lib/issues/2503) + - php tools/upgrade.php upgrade or php tools/installPluginVersion.php Export ------------ diff --git "a/docs/Handreichung_V1.1_DNB-Export-Plugin_f\303\274r_OJS3.1.2_und_3.2.0.pdf" "b/docs/Handreichung_V1.1_DNB-Export-Plugin_f\303\274r_OJS3.1.2_und_3.2.0.pdf" new file mode 100644 index 0000000..887d2de Binary files /dev/null and "b/docs/Handreichung_V1.1_DNB-Export-Plugin_f\303\274r_OJS3.1.2_und_3.2.0.pdf" differ diff --git a/filter/DNBXmlFilter.inc.php b/filter/DNBXmlFilter.inc.php index 9309b7a..f6a85d0 100644 --- a/filter/DNBXmlFilter.inc.php +++ b/filter/DNBXmlFilter.inc.php @@ -177,7 +177,7 @@ function &process(&$pubObject) { } // first author $datafield100 = $this->createDatafieldNode($doc, $recordNode, '100', '1', ' '); - $this->createSubfieldNode($doc, $datafield100, 'a', $firstAuthor->getFullName(true)); + $this->createSubfieldNode($doc, $datafield100, 'a', $firstAuthor->getFullName(false, true)); $this->createSubfieldNode($doc, $datafield100, '4', 'aut'); // title $title = $article->getTitle($galley->getLocale()); @@ -251,13 +251,13 @@ function &process(&$pubObject) { // other authors foreach ((array) $authors as $author) { $datafield700 = $this->createDatafieldNode($doc, $recordNode, '700', '1', ' '); - $this->createSubfieldNode($doc, $datafield700, 'a', $author->getFullName(true)); + $this->createSubfieldNode($doc, $datafield700, 'a', $author->getFullName(false, true)); $this->createSubfieldNode($doc, $datafield700, '4', 'aut'); } // translators foreach ((array) $translators as $translator) { $datafield700 = $this->createDatafieldNode($doc, $recordNode, '700', '1', ' '); - $this->createSubfieldNode($doc, $datafield700, 'a', $translator->getFullName(true)); + $this->createSubfieldNode($doc, $datafield700, 'a', $translator->getFullName(false, true)); $this->createSubfieldNode($doc, $datafield700, '4', 'trl'); } diff --git a/version.xml b/version.xml index d999981..c9bcf55 100644 --- a/version.xml +++ b/version.xml @@ -7,13 +7,13 @@ * Copyright (c) 2017 Center for Digital Systems (CeDiS), Freie Universität Berlin * Distributed under the GNU GPL v2. For full terms see the plugin file LICENSE. * Author: Bozana Bokan, Ronald Steffen - * Last update: April 24, 2020 + * Last update: January 29th, 2021 * * Plugin version information. --> dnb plugins.importexport - 1.3.1.1 - 2020-09-14 + 1.3.2 + 2021-01-29