From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: yocto@yoctoproject.org
Subject: [layerindex-web][PATCH 1/4] admin: add an action to duplicate a branch
Date: Wed, 16 Nov 2016 16:18:31 +1300 [thread overview]
Message-ID: <1479266314-8574-1-git-send-email-paul.eggleton@linux.intel.com> (raw)
Add an action to duplicate a Branch object, along with all of the
LayerBranches (and LayerMaintainers and LayerDependencies) underneath
it.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
layerindex/admin.py | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/layerindex/admin.py b/layerindex/admin.py
index 7339ce1..f50aae4 100644
--- a/layerindex/admin.py
+++ b/layerindex/admin.py
@@ -17,6 +17,32 @@ class LayerDependencyInline(admin.StackedInline):
class BranchAdmin(CompareVersionAdmin):
model = Branch
+ actions = ['duplicate']
+
+ def duplicate(self, request, queryset):
+ for branch in queryset:
+ layerbranches = branch.layerbranch_set.all()
+ branch.pk = None
+ branch.name += '-copy'
+ branch.save()
+ for layerbranch in layerbranches:
+ layerbranch_maintainers = layerbranch.layermaintainer_set.all()
+ layerbranch_dependencies = layerbranch.dependencies_set.all()
+ layerbranch.pk = None
+ layerbranch.branch = branch
+ layerbranch.vcs_last_fetch = None
+ layerbranch.vcs_last_rev = ''
+ layerbranch.vcs_last_commit = None
+ layerbranch.save()
+ for layermaintainer in layerbranch_maintainers:
+ layermaintainer.pk = None
+ layermaintainer.layerbranch = layerbranch
+ layermaintainer.save()
+ for layerdependency in layerbranch_dependencies:
+ layerdependency.pk = None
+ layerdependency.layerbranch = layerbranch
+ layerdependency.save()
+ duplicate.short_description = "Duplicate selected Branches"
class LayerItemAdmin(CompareVersionAdmin):
list_filter = ['status', 'layer_type']
--
2.5.5
next reply other threads:[~2016-11-16 3:18 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-16 3:18 Paul Eggleton [this message]
2016-11-16 3:18 ` [layerindex-web][PATCH 2/4] utils: fix error in runcmd() if printerr=False Paul Eggleton
2016-11-16 3:18 ` [layerindex-web][PATCH 3/4] Record and display update logs Paul Eggleton
2016-11-16 3:18 ` [layerindex-web][PATCH 4/4] views: support querying class inheritance Paul Eggleton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1479266314-8574-1-git-send-email-paul.eggleton@linux.intel.com \
--to=paul.eggleton@linux.intel.com \
--cc=yocto@yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.