1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-22 21:16:16 +01:00

fix osc my with obs 2.2 api

This commit is contained in:
Ludwig Nussel 2011-02-04 10:29:13 +01:00
parent ba3bed8ecc
commit 75b662534f

View File

@ -5056,12 +5056,17 @@ Please submit there instead, or use --nodevelproject to force direct submission.
if list_requests:
# try api side search as supported since OBS 2.2
try:
u = makeurl(apiurl, ['request'], ['view=collection&user=%s' % quote_plus(user)])
res = http_GET(u)
u = makeurl(apiurl, ['request'], {
'view' : 'collection',
'state': 'pending',
'user' : user,
})
f = http_GET(u)
root = ET.parse(f).getroot()
requests = []
for root in res['request'].findall('request'):
for node in root.findall('request'):
r = Request()
r.read(root)
r.read(node)
requests.append(r)
for r in requests:
print r.list_view(), '\n'