Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/bazarr/src/commit/ee41b78f4e4fe015ce915d1721b880b6d2d4d40f/libs/rebulk/test/rebulk_rules_module.py You should set ROOT_URL correctly, otherwise the web may not work correctly.
bazarr/libs/rebulk/test/rebulk_rules_module.py

39 lines
1.3 KiB

#!/usr/bin/env python
# -*- coding: utf-8 -*-
# pylint: disable=no-self-use, pointless-statement, missing-docstring, invalid-name, len-as-condition
from rebulk.rules import Rule, RemoveMatch, CustomRule
class RemoveAllButLastYear(Rule):
consequence = RemoveMatch
def when(self, matches, context):
entries = matches.named('year')
return entries[:-1]
class PrefixedSuffixedYear(CustomRule):
def when(self, matches, context):
toRemove = []
years = matches.named('year')
for year in years:
if not matches.previous(year, lambda p: p.name == 'yearPrefix') and \
not matches.next(year, lambda n: n.name == 'yearSuffix'):
toRemove.append(year)
return toRemove
def then(self, matches, when_response, context):
for to_remove in when_response:
matches.remove(to_remove)
class PrefixedSuffixedYearNoLambda(Rule):
consequence = RemoveMatch
def when(self, matches, context):
toRemove = []
years = matches.named('year')
for year in years:
if not [m for m in matches.previous(year) if m.name == 'yearPrefix'] and \
not [m for m in matches.next(year) if m.name == 'yearSuffix']:
toRemove.append(year)
return toRemove