mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-04-06 06:08: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:
parent
080867ee62
commit
64ffe26c0c
@ -2639,21 +2639,7 @@ sub CreateMetadataList ($$$) {
|
|||||||
: $modMeta->{$mAttr};
|
: $modMeta->{$mAttr};
|
||||||
$mAttrVal =~ s/\\n/$lb/g;
|
$mAttrVal =~ s/\\n/$lb/g;
|
||||||
|
|
||||||
if ( $mAttr eq 'license' ) {
|
if ( $mAttr eq 'version' ) {
|
||||||
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 ( $mAttrVal eq '0.000000001' ) {
|
if ( $mAttrVal eq '0.000000001' ) {
|
||||||
$mAttrVal = '-';
|
$mAttrVal = '-';
|
||||||
}
|
}
|
||||||
@ -2689,7 +2675,24 @@ sub CreateMetadataList ($$$) {
|
|||||||
{
|
{
|
||||||
$l .= $tdOpen;
|
$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 $authorCount = scalar @{ $modMeta->{$mAttr} };
|
||||||
my $counter = 0;
|
my $counter = 0;
|
||||||
|
|
||||||
|
@ -410,9 +410,9 @@ our %keywordDescription = (
|
|||||||
'FHEM Entwickler Paket, welches lokal auf der Maschine verwaltet wird',
|
'FHEM Entwickler Paket, welches lokal auf der Maschine verwaltet wird',
|
||||||
},
|
},
|
||||||
'fhem-mod-command' => {
|
'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' =>
|
'de' =>
|
||||||
'FHEM Konsolen Text Kommando ohne sichtbares FHEM Geräte-Objekt',
|
'FHEM Systembefehl ohne sichtbares FHEM Geräte-Objekt.',
|
||||||
},
|
},
|
||||||
'fhem-mod-device' => {
|
'fhem-mod-device' => {
|
||||||
'en' => 'represents a physical device',
|
'en' => 'represents a physical device',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user