Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update include_patterns implementation #10680

Merged
merged 6 commits into from Jul 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions doc/usage/configuration.rst
Expand Up @@ -233,9 +233,6 @@ General configuration
- ``'**/doc'`` -- all ``doc`` directories (this might be useful if
documentation is co-located with source files)

:confval:`include_patterns` is also consulted when looking for static files
in :confval:`html_static_path` and :confval:`html_extra_path`.

.. versionadded:: 5.1

.. confval:: templates_path
Expand Down
5 changes: 2 additions & 3 deletions sphinx/builders/html/__init__.py
Expand Up @@ -840,8 +840,7 @@ def onerror(filename: str, error: Exception) -> None:
logger.warning(__('Failed to copy a file in html_static_file: %s: %r'),
filename, error)

excluded = Matcher(self.config.exclude_patterns + ["**/.*"],
self.config.include_patterns)
excluded = Matcher(self.config.exclude_patterns + ["**/.*"])
for entry in self.config.html_static_path:
copy_asset(path.join(self.confdir, entry),
path.join(self.outdir, '_static'),
Expand Down Expand Up @@ -881,7 +880,7 @@ def copy_extra_files(self) -> None:
"""copy html_extra_path files."""
try:
with progress_message(__('copying extra files')):
excluded = Matcher(self.config.exclude_patterns, self.config.include_patterns)
excluded = Matcher(self.config.exclude_patterns)
for extra_path in self.config.html_extra_path:
entry = path.join(self.confdir, extra_path)
copy_asset(entry, self.outdir, excluded)
Expand Down
2 changes: 1 addition & 1 deletion sphinx/directives/other.py
Expand Up @@ -84,7 +84,7 @@ def parse_content(self, toctree: addnodes.toctree) -> List[Node]:
all_docnames.remove(self.env.docname) # remove current document

ret: List[Node] = []
excluded = Matcher(self.config.exclude_patterns, self.config.include_patterns)
excluded = Matcher(self.config.exclude_patterns)
for entry in self.content:
if not entry:
continue
Expand Down
5 changes: 4 additions & 1 deletion sphinx/environment/adapters/toctree.py
Expand Up @@ -74,7 +74,8 @@ def resolve(self, docname: str, builder: "Builder", toctree: addnodes.toctree,
# interactions between marking and pruning the tree (see bug #1046).

toctree_ancestors = self.get_toctree_ancestors(docname)
excluded = Matcher(self.env.config.exclude_patterns, self.env.config.include_patterns)
included = Matcher(self.env.config.include_patterns)
excluded = Matcher(self.env.config.exclude_patterns)

def _toctree_add_classes(node: Element, depth: int) -> None:
"""Add 'toctree-l%d' and 'current' classes to the toctree."""
Expand Down Expand Up @@ -166,6 +167,8 @@ def _entries_from_toctree(toctreenode: addnodes.toctree, parents: List[str],
# this is raised if the included file does not exist
if excluded(self.env.doc2path(ref, False)):
message = __('toctree contains reference to excluded document %r')
elif not included(self.env.doc2path(ref, False)):
message = __('toctree contains reference to non-included document %r')
else:
message = __('toctree contains reference to nonexisting document %r')

Expand Down
2 changes: 1 addition & 1 deletion sphinx/ext/autosummary/__init__.py
Expand Up @@ -237,7 +237,7 @@ def run(self) -> List[Node]:

tree_prefix = self.options['toctree'].strip()
docnames = []
excluded = Matcher(self.config.exclude_patterns, self.config.include_patterns)
excluded = Matcher(self.config.exclude_patterns)
filename_map = self.config.autosummary_filename_map
for _name, _sig, _summary, real_name in items:
real_name = filename_map.get(real_name, real_name)
Expand Down
2 changes: 1 addition & 1 deletion sphinx/project.py
Expand Up @@ -38,8 +38,8 @@ def discover(self, exclude_paths: Iterable[str] = (),
self.docnames = set()
for filename in get_matching_files(
self.srcdir,
[*exclude_paths] + EXCLUDE_PATHS,
include_paths,
[*exclude_paths] + EXCLUDE_PATHS,
):
docname = self.path2doc(filename)
if docname:
Expand Down
5 changes: 2 additions & 3 deletions sphinx/util/matching.py
Expand Up @@ -64,8 +64,7 @@ class Matcher:
For example, "**/index.rst" matches with "index.rst"
"""

def __init__(self, exclude_patterns: Iterable[str],
include_patterns: Iterable[str] = ()) -> None:
def __init__(self, exclude_patterns: Iterable[str]) -> None:
expanded = [pat[3:] for pat in exclude_patterns if pat.startswith('**/')]
self.patterns = compile_matchers(list(exclude_patterns) + expanded)

Expand Down Expand Up @@ -105,8 +104,8 @@ def patfilter(names: Iterable[str], pat: str) -> List[str]:

def get_matching_files(
dirname: str,
include_patterns: Iterable[str] = ("**",),
exclude_patterns: Iterable[str] = (),
include_patterns: Iterable[str] = ("**",)
) -> Iterator[str]:
"""Get all file names in a directory, recursively.

Expand Down
16 changes: 8 additions & 8 deletions tests/test_util_matching.py
Expand Up @@ -98,7 +98,7 @@ def test_get_matching_files_all(rootdir):


def test_get_matching_files_all_exclude_single(rootdir):
files = get_matching_files(rootdir / "test-root", ["**.html"])
files = get_matching_files(rootdir / "test-root", exclude_patterns=["**.html"])
assert sorted(files) == [
'Makefile', 'autodoc.txt', 'autodoc_target.py', 'bom.txt', 'conf.py',
'extapi.txt', 'extensions.txt', 'file_with_special_#_chars.xyz', 'footnote.txt',
Expand All @@ -112,7 +112,7 @@ def test_get_matching_files_all_exclude_single(rootdir):


def test_get_matching_files_all_exclude_multiple(rootdir):
files = get_matching_files(rootdir / "test-root", ["**.html", "**.inc"])
files = get_matching_files(rootdir / "test-root", exclude_patterns=["**.html", "**.inc"])
assert sorted(files) == [
'Makefile', 'autodoc.txt', 'autodoc_target.py', 'bom.txt', 'conf.py',
'extapi.txt', 'extensions.txt', 'file_with_special_#_chars.xyz', 'footnote.txt',
Expand All @@ -125,7 +125,7 @@ def test_get_matching_files_all_exclude_multiple(rootdir):


def test_get_matching_files_all_exclude_nonexistent(rootdir):
files = get_matching_files(rootdir / "test-root", ["halibut/**"])
files = get_matching_files(rootdir / "test-root", exclude_patterns=["halibut/**"])
assert sorted(files) == [
'Makefile', '_templates/contentssb.html', '_templates/customsb.html',
'_templates/layout.html', 'autodoc.txt', 'autodoc_target.py', 'bom.txt', 'conf.py',
Expand All @@ -140,35 +140,35 @@ def test_get_matching_files_all_exclude_nonexistent(rootdir):


def test_get_matching_files_all_include_single(rootdir):
files = get_matching_files(rootdir / "test-root", [], ["subdir/**"])
files = get_matching_files(rootdir / "test-root", include_patterns=["subdir/**"])
assert sorted(files) == [
'subdir/excluded.txt', 'subdir/images.txt', 'subdir/img.png', 'subdir/include.inc',
'subdir/includes.txt', 'subdir/simg.png',
]


def test_get_matching_files_all_include_multiple(rootdir):
files = get_matching_files(rootdir / "test-root", [], ["special/**", "subdir/**"])
files = get_matching_files(rootdir / "test-root", include_patterns=["special/**", "subdir/**"])
assert sorted(files) == [
'special/api.h', 'special/code.py', 'subdir/excluded.txt', 'subdir/images.txt',
'subdir/img.png', 'subdir/include.inc', 'subdir/includes.txt', 'subdir/simg.png',
]


def test_get_matching_files_all_include_nonexistent(rootdir):
files = get_matching_files(rootdir / "test-root", [], ["halibut/**"])
files = get_matching_files(rootdir / "test-root", include_patterns=["halibut/**"])
assert sorted(files) == []


def test_get_matching_files_all_include_prefix(rootdir):
files = get_matching_files(rootdir / "test-root", [], ["autodoc*"])
files = get_matching_files(rootdir / "test-root", include_patterns=["autodoc*"])
assert sorted(files) == [
'autodoc.txt', 'autodoc_target.py',
]


def test_get_matching_files_all_include_question_mark(rootdir):
files = get_matching_files(rootdir / "test-root", [], ["img.???"])
files = get_matching_files(rootdir / "test-root", include_patterns=["img.???"])
assert sorted(files) == [
'img.gif', 'img.pdf', 'img.png',
]