Update yunohost_app.py

This commit is contained in:
titoko 2013-12-03 21:02:34 +01:00
parent b333c5e5b4
commit acb4094193

View file

@ -150,7 +150,7 @@ def app_list(offset=None, limit=None, filter=None, raw=False):
continue continue
with open( apps_setting_path + app +'/manifest.json') as json_manifest: with open( apps_setting_path + app +'/manifest.json') as json_manifest:
app_dict[app] = {"manifest":json.loads(str(json_manifest.read()))} app_dict[app] = {"manifest":json.loads(str(json_manifest.read()))}
app_dict[app]['manifest']['orphan']=True#{ 'orphan': True } app_dict[app]['manifest']['orphan']=True
if len(app_dict) > (0 + offset) and limit > 0: if len(app_dict) > (0 + offset) and limit > 0:
sorted_app_dict = {} sorted_app_dict = {}
@ -411,7 +411,6 @@ def app_install(app, label=None, args=None):
except: except:
args_dict = {} args_dict = {}
# Execute App install script # Execute App install script
os.system('chown -hR admin: '+ install_tmp) os.system('chown -hR admin: '+ install_tmp)
# Move scripts and manifest to the right place # Move scripts and manifest to the right place
@ -701,7 +700,6 @@ def app_ssowatconf():
for domain in domains: for domain in domains:
skipped_uri.extend([domain +'/ynhadmin', domain +'/ynhapi']) skipped_uri.extend([domain +'/ynhadmin', domain +'/ynhapi'])
conf_dict = { conf_dict = {
'portal_domain': main_domain, 'portal_domain': main_domain,
'portal_path': '/ynhsso/', 'portal_path': '/ynhsso/',