blob: c251dc58b93626b91c4be7c2613d4d67b5a42318 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
/*
* FedoraClient is a PHP classe to interact with web services
*
* fedcli.php is a command line tools to test FedoraClient clmsses
*
* Copyright (C) 2010 Remi Collet
* http://github.com/remicollet/rpmphp.
*
* Inspired from python-fedora
*
* FedoraClient is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* python-fedora is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* See <http://www.gnu.org/licenses/>
*/
require('FedoraClient.php');
$client = new FedoraPkgdb(array('debug'=>5));
echo "FedoraPkgdb::getBranches():\n";
$branches = $client->getBranches();
foreach ($branches as $name => $branch) {
echo $name." ";
}
echo "\ndone.\n";
?>
|