From 73cd4adf9ff2b38124501fba1a7d9800e4c1f0d0 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 9 Dec 2011 09:29:15 -0600 Subject: Add CSS classes to front page package update objects This adds the repo name, 'staging', and 'testing' as appropriate to a classes field on the package updates object. This means we don't have to update the CSS stylesheet to include hardcoded names of repositories (e.g., 'kde-unstable'). Signed-off-by: Dan McGee --- public/utils.py | 7 +++++++ sitestatic/archweb.css | 8 ++------ templates/public/index.html | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/public/utils.py b/public/utils.py index 30c76ac1..6566b8c4 100644 --- a/public/utils.py +++ b/public/utils.py @@ -11,6 +11,13 @@ class RecentUpdate(object): self.pkgbase = first.pkgbase self.repo = first.repo self.version = '' + self.classes = set() + + self.classes.add(self.repo.name.lower()) + if self.repo.testing: + self.classes.add('testing') + if self.repo.staging: + self.classes.add('staging') packages = sorted(packages, key=attrgetter('arch', 'pkgname')) # split the packages into two lists. we need to prefer packages diff --git a/sitestatic/archweb.css b/sitestatic/archweb.css index 3407cb4b..46fd7844 100644 --- a/sitestatic/archweb.css +++ b/sitestatic/archweb.css @@ -481,15 +481,11 @@ h3 span.arrow { text-align: right; } - #pkg-updates span.testing, - #pkg-updates span.community-testing, - span.multilib-testing { + #pkg-updates span.testing { font-style: italic; } - #pkg-updates span.staging, - #pkg-updates span.community-staging, - span.multilib-staging { + #pkg-updates span.staging { font-style: italic; color: #ff8040; } diff --git a/templates/public/index.html b/templates/public/index.html index 4bd26f6b..24e61558 100644 --- a/templates/public/index.html +++ b/templates/public/index.html @@ -104,7 +104,7 @@ {% for update in pkg_updates %} - +
{{ update.pkgbase }} {{ update.version }}{{ update.pkgbase }} {{ update.version }} {% for pkg in update.package_links %}{{ pkg.arch }}{% if not forloop.last %}/{% endif %}{% endfor %} -- cgit v1.2.3-55-g3dc8