-
Notifications
You must be signed in to change notification settings - Fork 58
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to 3.43.15 (3.43.x Release Candidate 15)
- Loading branch information
Wolfgang Willinghöfer
authored and
Wolfgang Willinghöfer
committed
Feb 18, 2019
1 parent
8c82c09
commit 9fff131
Showing
57 changed files
with
669 additions
and
307 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
## | ||
# Channel.hasProgramIds | ||
# Prüft, ob der Kanal in Programmen verwendet wird | ||
# | ||
# Paramter: | ||
# id: [string] Id des Kanals | ||
# | ||
# Rückgabewert: boolean true/false | ||
# | ||
## | ||
|
||
set script { | ||
var channel = dom.GetObject(id); | ||
if ( (channel) ) | ||
{ | ||
string programIds = channel.ChnEnumDPUsagePrograms(); | ||
if (programIds.Length() > 0) { | ||
Write(true); | ||
} else { | ||
Write(false); | ||
} | ||
} | ||
} | ||
|
||
jsonrpc_response [hmscript $script args] |
Oops, something went wrong.