Skip to content
Snippets Groups Projects
Commit c8350578 authored by Jens Steidl's avatar Jens Steidl :baby_chick:
Browse files

- updated usage infos

parent 40262069
No related branches found
No related tags found
No related merge requests found
......@@ -26,8 +26,8 @@ How to automatically add Mappings between extracted Technical Metadata and DNX S
== How to run
* general invocation
** $# perl -I path/to/perl/modules .add_dnx_mappings.pl "Rosetta-Host.Domain.tld" "Rosetta-User" "Rosetta-Password" "Institution-Name" ":Portnumber"
** $# perl -I path/to/perl/modules .add_dnx_mappings.pl "Rosetta-Host.Domain.tld" "Rosetta-User" "Rosetta-Password" "Institution-Name" "Portnumber"
* example invocation:
** $# perl -I ~/perl5/lib/perl5 ./add_dnx_mappings.pl "sdvrosetta-test.slub-dresden.de" "su-user" "Sw0rdF!$h" "SLUB" ":1801"
** $# perl -I ~/perl5/lib/perl5 ./add_dnx_mappings.pl "sdvrosetta-test.slub-dresden.de" "su-user" "Sw0rdF!$h" "SLUB" "8443"
......@@ -2,8 +2,8 @@
# adds all dnx properties
# by Andreas Romeyke (andreas.romeyke@slub-dresden.de) and Serhiy Bolkun (serhiy.bolkun@slub-dresden.de)
#
# usage: perl add_dnx_mappings.pl host user password institution port
# example: perl add_dnx_mappings.pl sdvdev.slub-dresden.de mustermann 12345 slub 8080
# usage: perl add_dnx_mappings.pl rosetta-host rosetta-user rosetta-user-password rosetta-institution rosetta-login-port
# example: perl add_dnx_mappings.pl rosetta.my-archive.domain user1 12345 MYINSTITUTE 8443
#
# needs a geckodriver and the Selenium::Remote::Driver module
# see http://www.seleniumhq.org/
......@@ -35,7 +35,7 @@ my $host = shift;
my $user = shift;
my $passwd = shift;
my $institution = shift;
my $ui_port = shift; # 1801, 80 for Produktion
my $ui_port = shift;
my $protocol = 'https';
my %exiftool2dnx = (
"ICC-header:ColorSpaceData" => "icc.colorspacedata",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment