Fix #107265: Compositor: output node remove note that z-depth can be saved #104457

Closed
Habib Gahbiche wants to merge 53 commits from zazizizou/blender-manual:com-outputfile into blender-v3.6-release

When changing the target branch, be careful to rebase the branch in your fork to match. See documentation.
Showing only changes of commit eadd5f1697 - Show all commits

View File

@ -49,39 +49,53 @@ def check_word(w):
return dict_spelling.check(w)
# Match HTML link `Text <url>`__
# A URL may span multiple lines.
RE_URL_LINKS = re.compile(r"(`)([^`<]+)(<[^`>]+>)(`)(__)", re.MULTILINE)
# Match `|substitution|` for removal.
RE_SUBST = re.compile(r"\|[a-zA-Z0-9_]+\|")
# :some_role:`Text <ref>`
RE_ROLE_WITH_TEXT = re.compile(r"(:[A-Za-z_]+:)(`)([^`<]+)(<[^`>]+>)(`)", flags=re.MULTILINE)
RE_ROLE_INCLUDE = re.compile(r"(:(menuselection|guilabel):)(`)([^`]+)(`)", flags=re.MULTILINE)
RE_ROLE_EXCLUDE = re.compile(r"(:(kbd|ref|doc|abbr):)(`)([^`]+)(`)", flags=re.MULTILINE)
RE_ROLE_ANY = re.compile(r"(:[A-Za-z_]+:)(`)([^`]+)(`)", flags=re.MULTILINE)
RE_WORDS = re.compile(
r"\b("
# Capital words, with optional '-' and "'".
r"[A-Z]+[\-'A-Z]*[A-Z]|"
# Lowercase words, with optional '-' and "'".
r"[A-Za-z][\-'a-z]*[a-z]+"
r")\b"
)
def regex_key_raise(x):
raise Exception("Unknown role! " + "".join(x.groups()))
def check_spelling_body(text):
for w in text.split():
# skip directive args (e.g. figure target), could do differently?
if w.startswith(":") and w.endswith(":"):
continue
if w.startswith("<") and w.endswith(">"):
continue
w = w.strip("{}[](),.!?;\"'1234567890-_*")
text = re.sub(RE_URL_LINKS, lambda x: x.groups()[1].strip(), text)
text = re.sub(RE_ROLE_WITH_TEXT, lambda x: x.groups()[2].strip(), text)
text = re.sub(RE_ROLE_INCLUDE, lambda x: x.groups()[3].strip(), text)
if w.startswith(":") and w.endswith(":"):
continue
if w.startswith("<") and w.endswith(">"):
continue
text = re.sub(RE_ROLE_EXCLUDE, lambda _: " ", text)
text = re.sub(RE_ROLE_ANY, regex_key_raise, text)
# skip character and name entities
if w.startswith("\\") or w.startswith("|"):
continue
# Remove substitutions.
text = re.sub(RE_SUBST, lambda _: " ", text)
# now we've gotten rid of typical roles, strip other chars
w = w.strip(":`()<>{}.,")
for re_match in RE_WORDS.finditer(text):
w = re_match.group(0)
# skip python references
if w.startswith("bpy."):
continue
# skip document references and keyboard shortcuts
if w.startswith(("doc:", "kbd:", "menuselection:", "ref:", "https:", "http:", "abbr:")):
continue
w_ = w
for w in w_.split("/"):
if not w:
# Skip entirely uppercase words.
# These are typically used for acronyms: XYZ, UDIM, API ... etc.
if w.isupper():
continue
w_lower = w.lower()