qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: marcandre.lureau@redhat.com
To: qemu-devel@nongnu.org
Cc: "Peter Maydell" <peter.maydell@linaro.org>,
	"Michael Roth" <michael.roth@amd.com>,
	"Markus Armbruster" <armbru@redhat.com>,
	"Marc-André Lureau" <marcandre.lureau@redhat.com>,
	pbonzini@redhat.com
Subject: [PATCH v2 2/8] docs/sphinx: add static files to generated depfile
Date: Fri, 15 Oct 2021 14:53:38 +0400	[thread overview]
Message-ID: <20211015105344.152591-3-marcandre.lureau@redhat.com> (raw)
In-Reply-To: <20211015105344.152591-1-marcandre.lureau@redhat.com>

From: Marc-André Lureau <marcandre.lureau@redhat.com>

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 docs/sphinx/depfile.py | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/docs/sphinx/depfile.py b/docs/sphinx/depfile.py
index b6fb926df1..99539adb48 100644
--- a/docs/sphinx/depfile.py
+++ b/docs/sphinx/depfile.py
@@ -13,6 +13,7 @@
 import os
 import sphinx
 import sys
+from pathlib import Path
 
 __version__ = '1.0'
 
@@ -25,6 +26,10 @@ def get_infiles(env):
         if hasattr(mod, '__file__'):
             if mod.__file__:
                 yield mod.__file__
+    # this is perhaps going to include unused files:
+    for static_path in env.config.html_static_path:
+        for path in Path(static_path).rglob('*'):
+            yield str(path)
 
 
 def write_depfile(app, exception):
-- 
2.33.0.721.g106298f7f9



  parent reply	other threads:[~2021-10-15 10:59 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-15 10:53 [PATCH v2 0/8] Some Sphinx improvements marcandre.lureau
2021-10-15 10:53 ` [PATCH v2 1/8] docs/sphinx: add loaded modules to generated depfile marcandre.lureau
2021-10-26 21:04   ` John Snow
2021-10-15 10:53 ` marcandre.lureau [this message]
2021-10-15 10:53 ` [PATCH v2 3/8] docs/sphinx: add templates files " marcandre.lureau
2021-10-15 10:53 ` [PATCH v2 4/8] tests/qapi-schema/meson: add depfile to sphinx doc marcandre.lureau
2021-10-15 10:53 ` [PATCH v2 5/8] meson: drop sphinx_extn_depends marcandre.lureau
2021-10-15 10:53 ` [PATCH v2 6/8] meson: drop sphinx_template_files marcandre.lureau
2021-10-15 10:53 ` [PATCH v2 7/8] docs/sphinx: set navigation_with_keys=True marcandre.lureau
2021-10-15 10:53 ` [PATCH v2 8/8] docs/sphinx: add 's' keyboard binding to focus search marcandre.lureau
2021-10-15 11:29 ` [PATCH v2 0/8] Some Sphinx improvements Paolo Bonzini
2021-10-26 21:10 ` John Snow

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20211015105344.152591-3-marcandre.lureau@redhat.com \
    --to=marcandre.lureau@redhat.com \
    --cc=armbru@redhat.com \
    --cc=michael.roth@amd.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).