summaryrefslogtreecommitdiff
path: root/utils/rhrd-pool
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-07-28 16:37:43 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-07-28 16:37:43 (GMT)
commit990e9ce17301895110e6d74546c084f772b6ab9f (patch)
tree99c53385b5840c34c9acec8cf69c9e95c113ffc0 /utils/rhrd-pool
parent24ec6833f3bb6c665506612105137c71cd82debe (diff)
implemented list_musicpools lib function
Diffstat (limited to 'utils/rhrd-pool')
-rwxr-xr-xutils/rhrd-pool16
1 files changed, 8 insertions, 8 deletions
diff --git a/utils/rhrd-pool b/utils/rhrd-pool
index 7d95082..6152d92 100755
--- a/utils/rhrd-pool
+++ b/utils/rhrd-pool
@@ -38,7 +38,7 @@ sub list
{
my ($ctx) = @_;
- my @pools = RHRD::rddb::list_pools($ctx);
+ my @pools = RHRD::rddb::list_musicpools($ctx);
if(!defined $pools[0] && defined $pools[1]) {
print STDERR "$pools[1]: $pools[2]";
return 1;
@@ -53,7 +53,7 @@ sub show
{
my ($ctx, $shortname) = @_;
- my ($pool, $status, $errorstring) = RHRD::rddb::get_pool_info($ctx, $shortname);
+ my ($pool, $status, $errorstring) = RHRD::rddb::get_musicpool_info($ctx, $shortname);
unless (defined $pool) {
print STDERR "$errorstring\n";
return 1;
@@ -103,27 +103,27 @@ sub add
}
print " * creating group '" . $groupname . "'\n";
- ($result, $status, $errorstring) = RHRD::rddb::create_pool_group($ctx, $groupname);
+ ($result, $status, $errorstring) = RHRD::rddb::create_musicpool_group($ctx, $groupname);
unless(defined $result) {
print STDERR $status . ": " . $errorstring . "\n";
return 1;
}
- ($result, $status, $errorstring) = RHRD::rddb::create_pool_event($ctx, $shortname, $groupname);
+ ($result, $status, $errorstring) = RHRD::rddb::create_musicpool_event($ctx, $shortname, $groupname);
unless(defined $result) {
print STDERR $status . ": " . $errorstring . "\n";
return 1;
}
print " * created event\n";
- ($result, $status, $errorstring) = RHRD::rddb::create_pool_clock($ctx, $shortname, $color);
+ ($result, $status, $errorstring) = RHRD::rddb::create_musicpool_clock($ctx, $shortname, $color);
unless(defined $result) {
print STDERR $status . ": " . $errorstring . "\n";
return 1;
}
print " * created clock (color: " . $color . ")\n";
- ($result, $status, $errorstring) = RHRD::rddb::create_show_dropbox($ctx, $groupname, $shortname);
+ ($result, $status, $errorstring) = RHRD::rddb::create_musicpool_dropbox($ctx, $groupname, $shortname);
unless(defined $result) {
print STDERR $status . ": " . $errorstring . "\n";
return 1;
@@ -140,7 +140,7 @@ sub edit
{
my ($ctx, $shortname, $title) = @_;
- my ($result, $status, $errorstring) = RHRD::rddb::update_pool_title($ctx, $shortname, $title);
+ my ($result, $status, $errorstring) = RHRD::rddb::update_musicpool_title($ctx, $shortname, $title);
unless(defined $result) {
print STDERR $status . ": " . $errorstring . "\n";
return 1;
@@ -158,7 +158,7 @@ sub remove
{
my ($ctx, $shortname) = @_;
- my @results = RHRD::rddb::remove_pool($ctx, $shortname);
+ my @results = RHRD::rddb::remove_musicpool($ctx, $shortname);
if(!defined $results[0] && defined $results[2]) {
print STDERR $results[1] . ": " . $results[2] . "\n";
return 1;