mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-10 06:46:15 +01:00
renamed get_group to get_group_meta.
This commit is contained in:
parent
8746ea7ee3
commit
10e6619250
@ -909,7 +909,7 @@ class Osc(cmdln.Cmdln):
|
||||
if r:
|
||||
sys.stdout.write(''.join(r))
|
||||
elif cmd == 'group':
|
||||
r = get_group(apiurl, group)
|
||||
r = get_group_meta(apiurl, group)
|
||||
if r:
|
||||
sys.stdout.write(''.join(r))
|
||||
elif cmd == 'pattern':
|
||||
@ -1659,7 +1659,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
actionxml = """ <action type="add_role"> <target project="%s" package="%s" /> <group name="%s" role="%s" /> </action> """ % \
|
||||
(project, package, group, role)
|
||||
|
||||
if get_group(apiurl, group) == None:
|
||||
if get_group_meta(apiurl, group) == None:
|
||||
raise oscerr.WrongArgs('osc: an error occured.')
|
||||
|
||||
return actionxml
|
||||
@ -1682,7 +1682,7 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
group = user.replace('group:', '')
|
||||
actionxml = """ <action type="set_bugowner"> <target project="%s" %s /> <group name="%s" /> </action> """ % \
|
||||
(project, package, group)
|
||||
if get_group(apiurl, group) == None:
|
||||
if get_group_meta(apiurl, group) == None:
|
||||
raise oscerr.WrongArgs('osc: an error occured.')
|
||||
else:
|
||||
actionxml = """ <action type="set_bugowner"> <target project="%s" %s /> <person name="%s" /> </action> """ % \
|
||||
|
@ -4478,7 +4478,12 @@ def check_existing_maintenance_requests(apiurl, src_project, src_packages, dst_p
|
||||
raise oscerr.UserAbort()
|
||||
return repl == 'y', reqs
|
||||
|
||||
# old function for compat reasons. Some plugins may call this function.
|
||||
# and we do not want to break the plugins.
|
||||
def get_group(apiurl, group):
|
||||
return get_group_meta(apiurl, group)
|
||||
|
||||
def get_group_meta(apiurl, group):
|
||||
u = makeurl(apiurl, ['group', quote_plus(group)])
|
||||
try:
|
||||
f = http_GET(u)
|
||||
@ -4516,7 +4521,7 @@ def get_user_data(apiurl, user, *tags):
|
||||
|
||||
|
||||
def get_group_data(apiurl, group, *tags):
|
||||
meta = get_group(apiurl, group)
|
||||
meta = get_group_meta(apiurl, group)
|
||||
return _get_xml_data(meta, *tags)
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user