55_GDS.pm: add gdsAlertsHeadlines()

git-svn-id: svn://svn.code.sf.net/p/fhem/code/trunk@10014 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen
2015-11-26 19:35:04 +00:00
parent 2c5f7c49d4
commit 67414076b6

View File

@@ -824,6 +824,12 @@ sub gdsHeadlines($;$) {
return $text; return $text;
} }
sub gdsAlertsHeadlines($;$) {
my ($d,$sep) = @_;
$sep //= '|';
return gdsHeadlines($d,$sep);
}
sub setHelp(){ sub setHelp(){
return "Use one of the following commands:\n". return "Use one of the following commands:\n".
sepLine(35)."\n". sepLine(35)."\n".
@@ -1925,6 +1931,9 @@ sub getListForecastStations($) {
# #
################################################################################################### ###################################################################################################
# #
# 2015-11-26 fixed wrong region handling
# added gdsAlertsHeadlines()
#
# 2015-11-17 changed decodeCAPData - fix wrong cumulation (first try) # 2015-11-17 changed decodeCAPData - fix wrong cumulation (first try)
# fixed minor bugs # fixed minor bugs
# #