mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 03:49:10 +02:00

Change the data structure to support multiple branches. At the top level there is a set list of Branch objects, and then a LayerBranch object between each layer and the maintainers, dependencies, recipes and machines, so that the set of each can be different per branch. The branch is a session option, and can be selected via a drop-down that is shown for all pages. Additionally, with this change we avoid the need to run the update script within a build environment set up with oe-init-build-env - since we need a specific version of BitBake per branch we now use our own copy of BitBake which is fetched by the script itself. The update script will need to be called multiple times however - once per branch. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
16 lines
445 B
Python
16 lines
445 B
Python
# layerindex-web - custom context processor
|
|
#
|
|
# Copyright (C) 2013 Intel Corporation
|
|
#
|
|
# Licensed under the MIT license, see COPYING.MIT for details
|
|
|
|
from layerindex.models import Branch
|
|
|
|
def layerindex_context(request):
|
|
current_branch = request.session.get('branch', None)
|
|
if not current_branch:
|
|
current_branch = 'master'
|
|
return {
|
|
'all_branches': Branch.objects.all(),
|
|
'current_branch': current_branch,
|
|
} |