-
Notifications
You must be signed in to change notification settings - Fork 8
Open
Labels
Description
Maintaining the lists is hard work – we should find a solution there. Some kind of assertions per rule could help. An example could be:
„In order to maintain the ‚allow‘ rule
some-blog.com -> youtube.comin list ‚allow_embedded‘, there must be at least one request fromhttp://some-blog.com/some-blog-entry.htmlto*.youtube.com.“
That assertion could be checked automatically, and the rule could be removed if the assertion fails, e.g. if the site goes down permanently.
The implementation could look like this (json format):
{
"entries": {
"allow": [
{
"o": {"h": "*.heise.de"},
"d": {"h": "*.ix.de"},
"assertions": [
{
"site": "http://www.heise.de/",
"minMatchedRequests": 5,
"minMatchedImages": 5
}
]
}
]
}
}The discussion started at #41 (comment).