2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-05 17:48:44 +00:00

98_Installer: fix license link

git-svn-id: https://svn.fhem.de/fhem/trunk@19123 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
jpawlowski 2019-04-06 09:04:57 +00:00
parent 080867ee62
commit 64ffe26c0c
2 changed files with 21 additions and 18 deletions

View File

@ -2639,21 +2639,7 @@ sub CreateMetadataList ($$$) {
: $modMeta->{$mAttr};
$mAttrVal =~ s/\\n/$lb/g;
if ( $mAttr eq 'license' ) {
if ( defined( $modMeta->{resources} )
&& defined( $modMeta->{resources}{license} )
&& ref( $modMeta->{resources}{license} ) eq 'ARRAY'
&& @{ $modMeta->{resources}{license} } > 0
&& $modMeta->{resources}{license}[0] ne '' )
{
$mAttrVal =
'<a href="'
. $modMeta->{resources}{license}[0]
. '" target="_blank">'
. $mAttrVal . '</a>';
}
}
elsif ( $mAttr eq 'version' ) {
if ( $mAttr eq 'version' ) {
if ( $mAttrVal eq '0.000000001' ) {
$mAttrVal = '-';
}
@ -2689,7 +2675,24 @@ sub CreateMetadataList ($$$) {
{
$l .= $tdOpen;
if ( $mAttr eq 'author' ) {
if ( $mAttr eq 'license' ) {
if ( defined( $modMeta->{resources} )
&& defined( $modMeta->{resources}{license} )
&& ref( $modMeta->{resources}{license} ) eq 'ARRAY'
&& @{ $modMeta->{resources}{license} } > 0
&& $modMeta->{resources}{license}[0] ne '' )
{
$l .=
'<a href="'
. $modMeta->{resources}{license}[0]
. '" target="_blank">'
. $modMeta->{$mAttr}[0] . '</a>';
}
else {
$l .= $modMeta->{$mAttr}[0];
}
}
elsif ( $mAttr eq 'author' ) {
my $authorCount = scalar @{ $modMeta->{$mAttr} };
my $counter = 0;

View File

@ -410,9 +410,9 @@ our %keywordDescription = (
'FHEM Entwickler Paket, welches lokal auf der Maschine verwaltet wird',
},
'fhem-mod-command' => {
'en' => 'FHEM console text command w/o any FHEM device object visible',
'en' => 'FHEM system command w/o any FHEM device object visible',
'de' =>
'FHEM Konsolen Text Kommando ohne sichtbares FHEM Geräte-Objekt',
'FHEM Systembefehl ohne sichtbares FHEM Geräte-Objekt.',
},
'fhem-mod-device' => {
'en' => 'represents a physical device',