summaryrefslogtreecommitdiffstats
path: root/pym/portage/news.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-08-17 23:44:42 +0000
committerZac Medico <zmedico@gentoo.org>2009-08-17 23:44:42 +0000
commitd5a9a9948d75ee5ae6d4a63cef0471d65f95433c (patch)
tree0a869549b773399c6c55405eba269e92457f3730 /pym/portage/news.py
parentb0d24f3025e239b8f9826c9fda0e4d0f7163387d (diff)
downloadportage-d5a9a9948d75ee5ae6d4a63cef0471d65f95433c.tar.gz
portage-d5a9a9948d75ee5ae6d4a63cef0471d65f95433c.tar.bz2
portage-d5a9a9948d75ee5ae6d4a63cef0471d65f95433c.zip
Bug #277619 - Fix news item relevance logic. Thanks to Alec Warner
<antarus@gentoo.org> for this patch. svn path=/main/trunk/; revision=14081
Diffstat (limited to 'pym/portage/news.py')
-rw-r--r--pym/portage/news.py33
1 files changed, 22 insertions, 11 deletions
diff --git a/pym/portage/news.py b/pym/portage/news.py
index 9251f030e..a5e533fe1 100644
--- a/pym/portage/news.py
+++ b/pym/portage/news.py
@@ -199,7 +199,6 @@ class NewsItem(object):
"display if arch: x86" and so forth.
Creation of a news item involves passing in the path to the particular news item.
-
"""
def __init__(self, path, name):
@@ -218,24 +217,33 @@ class NewsItem(object):
and a vardb so we can look at installed packages).
Each restriction will pluck out the items that are required for it to match
or raise a ValueError exception if the required object is not present.
+
+ Restrictions of the form Display-X are OR'd with like-restrictions;
+ otherwise restrictions are AND'd. any_match is the ORing and
+ all_match is the ANDing.
"""
if not self._parsed:
self.parse()
if not len(self.restrictions):
- return True # no restrictions to match means everyone should see it
+ return True
kwargs = \
{ 'vardb' : vardb,
'config' : config,
'profile' : profile }
- for restriction in self.restrictions:
- if restriction.checkRestriction(**kwargs):
- return True
+ all_match = True
+ for values in self.restrictions.itervalues():
+ any_match = False
+ for restriction in values:
+ if restriction.checkRestriction(**kwargs):
+ any_match = True
+ if not any_match:
+ all_match = False
- return False # No restrictions were met; thus we aren't relevant :(
+ return all_match
def isValid(self):
if not self._parsed:
@@ -246,11 +254,11 @@ class NewsItem(object):
lines = codecs.open(_unicode_encode(self.path,
encoding=_fs_encoding, errors='strict'),
mode='r', encoding=_content_encoding, errors='replace').readlines()
- self.restrictions = []
+ self.restrictions = {}
invalids = []
for i, line in enumerate(lines):
- #Optimization to ignore regex matchines on lines that
- #will never match
+ # Optimization to ignore regex matchines on lines that
+ # will never match
if not line.startswith('D'):
continue
restricts = { _installedRE : DisplayInstalledRestriction,
@@ -259,9 +267,12 @@ class NewsItem(object):
for regex, restriction in restricts.iteritems():
match = regex.match(line)
if match:
- self.restrictions.append(restriction(match.groups()[0].strip()))
- if not self.restrictions[-1].isValid():
+ restrict = restriction(match.groups()[0].strip())
+ if not restrict.isValid():
invalids.append((i + 1, line.rstrip("\n")))
+ else:
+ self.restrictions.setdefault(
+ id(restriction), []).append(restrict)
continue
if invalids:
self._valid = False