本文整理汇总了Python中models.Manifest.delete方法的典型用法代码示例。如果您正苦于以下问题:Python Manifest.delete方法的具体用法?Python Manifest.delete怎么用?Python Manifest.delete使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.Manifest
的用法示例。
在下文中一共展示了Manifest.delete方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: delete
# 需要导入模块: from models import Manifest [as 别名]
# 或者: from models.Manifest import delete [as 别名]
def delete(request, manifest_name=None):
if request.method == 'POST':
Manifest.delete(manifest_name, request.user)
return HttpResponseRedirect('/manifest/')
else:
c = RequestContext(request, {'manifest_name': manifest_name})
c.update(csrf(request))
return render_to_response('manifests/delete.html', c)
示例2: detail
# 需要导入模块: from models import Manifest [as 别名]
# 或者: from models.Manifest import delete [as 别名]
def detail(request, manifest_path):
if request.method == 'GET':
print "Got read request for %s" % manifest_path
manifest = Manifest.read(manifest_path)
#autocomplete_data = Manifest.getAutoCompleteData(manifest_path)
if manifest is None:
raise Http404("%s does not exist" % manifest_path)
c = {'plist_text': manifest,
'pathname': manifest_path}
return render(request, 'manifests/detail.html', context=c)
if request.method == 'POST':
# could be PUT, POST, or DELETE
if request.META.has_key('HTTP_X_METHODOVERRIDE'):
http_method = request.META['HTTP_X_METHODOVERRIDE']
if http_method.lower() == 'delete':
print "Got delete request for %s" % manifest_path
if not request.user.has_perm('manifest.delete_manifestfile'):
raise PermissionDenied
Manifest.delete(manifest_path, request.user)
return HttpResponse(
json.dumps('success'), content_type='application/json')
elif http_method.lower() == 'put':
# regular POST (update/change)
print "Got write request for %s" % manifest_path
if not request.user.has_perm('manifest.change_manifestfile'):
raise PermissionDenied
if request.is_ajax():
json_data = json.loads(request.body)
if json_data and 'plist_data' in json_data:
plist_data = json_data['plist_data'].encode('utf-8')
Manifest.write(
json_data['plist_data'], manifest_path,
request.user)
return HttpResponse(
json.dumps('success'),
content_type='application/json')
else:
print "Got unknown HTTP_X_METHODOVERRIDE for %s: %s" % (
manifest_path, http_method)
else:
# true POST request; create new resource
print "Got create request for %s" % manifest_path
try:
json_data = json.loads(request.body)
except ValueError:
json_data = None
if json_data and 'plist_data' in json_data:
plist_data = json_data['plist_data'].encode('utf-8')
Manifest.write(
json_data['plist_data'], manifest_path,
request.user)
else:
plist_data = Manifest.new(manifest_path, request.user)
c = {'plist_text': plist_data,
'pathname': manifest_path,}
return render(request, 'manifests/detail.html', context=c)
示例3: delete
# 需要导入模块: from models import Manifest [as 别名]
# 或者: from models.Manifest import delete [as 别名]
def delete(request, manifest_name=None):
if not request.user.has_perm('reports.delete_machine'):
return HttpResponse(json.dumps('error'))
if request.method == 'POST':
Manifest.delete(manifest_name, request.user)
return HttpResponseRedirect('/manifest/')
else:
c = RequestContext(request, {'manifest_name': manifest_name})
c.update(csrf(request))
return render_to_response('manifests/delete.html', c)
示例4: delete
# 需要导入模块: from models import Manifest [as 别名]
# 或者: from models.Manifest import delete [as 别名]
def delete(request, manifest_name=None):
if not request.user.has_perm("reports.delete_machine"):
return HttpResponse(json.dumps("error"))
if request.method == "POST":
Manifest.delete(manifest_name, request.user)
return HttpResponseRedirect("/%smanifest/" % SUB_PATH)
else:
c = RequestContext(request, {"manifest_name": manifest_name})
c.update(csrf(request))
return render_to_response("manifests/delete.html", c)