From: Joey Hess <joey@gnu.kitenet.net>
Date: Wed, 7 Oct 2009 23:40:44 +0000 (-0400)
Subject: make success and failreason objects carry an influences hash
X-Git-Tag: 3.20091017~27^2~78
X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/commitdiff_plain/c72fda7d695142cc29ac986125234140f6414d97?ds=sidebyside;hp=c72fda7d695142cc29ac986125234140f6414d97

make success and failreason objects carry an influences hash

The hash will be used used to record a set of pages that influenced the
result of a pagespec match.

The influences are merged together when boolean and/or are encountered
in a pagespec. That means using a non-short-circuiting OR operator. And
so I use & and | when translating pagespecs, since those bitwise operators
can be overloaded. ("and" and "or" cannot, apparently).
---