From: Paul Eggleton <paul.eggleton@linux.intel.com>
To: yocto@yoctoproject.org
Subject: [layerindex-web][PATCH 1/2] context_processors.py: adjust default site name
Date: Mon, 26 Mar 2018 08:31:00 +1300 [thread overview]
Message-ID: <20180325193101.13451-1-paul.eggleton@linux.intel.com> (raw)
Default site name should be Layer Index, not metadata index as it was
before.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
---
layerindex/context_processors.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/layerindex/context_processors.py b/layerindex/context_processors.py
index e2852ee..c21c4a9 100644
--- a/layerindex/context_processors.py
+++ b/layerindex/context_processors.py
@@ -12,10 +12,10 @@ def layerindex_context(request):
if site and site.name and site.name != 'example.com':
site_name = site.name
else:
- site_name = 'OpenEmbedded metadata index'
+ site_name = 'OpenEmbedded Layer Index'
return {
'all_branches': Branch.objects.exclude(name='oe-classic').order_by('sort_priority'),
'unpublished_count': LayerItem.objects.filter(status='N').count(),
'oe_classic': Branch.objects.filter(name='oe-classic'),
'site_name': site_name
- }
\ No newline at end of file
+ }
--
2.14.3
next reply other threads:[~2018-03-25 19:31 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-25 19:31 Paul Eggleton [this message]
2018-03-25 19:31 ` [layerindex-web][PATCH 2/2] requirements.txt: use the most recent Django 1.8 version Paul Eggleton
2018-03-26 15:14 ` akuster808
2018-03-28 1:42 ` 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=20180325193101.13451-1-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.