Linux Test Project
 help / color / mirror / Atom feed
From: Andrea Cervesato via ltp <ltp@lists.linux.it>
To: Petr Vorel <pvorel@suse.cz>, ltp@lists.linux.it
Subject: Re: [LTP] [PATCH v2 1/1] doc/conf.py: Replace all titles
Date: Tue, 18 Feb 2025 15:33:39 +0100	[thread overview]
Message-ID: <f4fd8977-94cc-489a-8e66-3ae7e8a2b991@suse.com> (raw)
In-Reply-To: <20250218133443.2484512-1-pvorel@suse.cz>

Hi Petr,

Acked-by: Andrea Cervesato <andrea.cervesato@suse.com>

Feel free to merge.

Andrea

On 2/18/25 14:34, Petr Vorel wrote:
> This fixes titles like "[Race Description]".
>
> Fixes: 1bf344a3db ("doc: add tests catalog page")
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
> Link to v1:
> https://patchwork.ozlabs.org/project/ltp/patch/20250218121553.2470592-1-pvorel@suse.cz/
>
> Changes from v1:
> * Use re.compile (Andrea)
>
>   doc/conf.py | 9 +++------
>   1 file changed, 3 insertions(+), 6 deletions(-)
>
> diff --git a/doc/conf.py b/doc/conf.py
> index 03fcff67e8..2be847d90b 100644
> --- a/doc/conf.py
> +++ b/doc/conf.py
> @@ -434,6 +434,7 @@ def generate_test_catalog(_):
>           metadata = json.load(data)
>   
>       timeout_def = metadata['defaults']['timeout']
> +    regexp = re.compile(r'^\[([A-Za-z][\w\W]+)\]')
>   
>       for test_name, conf in sorted(metadata['tests'].items()):
>           text.extend([
> @@ -455,12 +456,8 @@ def generate_test_catalog(_):
>           if desc:
>               desc_text = []
>               for line in desc:
> -                if line.startswith("[Description]"):
> -                    desc_text.append("**Description**")
> -                elif line.startswith("[Algorithm]"):
> -                    desc_text.append("**Algorithm**")
> -                else:
> -                    desc_text.append(line)
> +                line = regexp.sub(r'**\1**', line)
> +                desc_text.append(line)
>   
>               text.extend([
>                   '\n'.join(desc_text),

-- 
Mailing list info: https://lists.linux.it/listinfo/ltp

  reply	other threads:[~2025-02-18 14:34 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-18 13:34 [LTP] [PATCH v2 1/1] doc/conf.py: Replace all titles Petr Vorel
2025-02-18 14:33 ` Andrea Cervesato via ltp [this message]
2025-02-19  8:44   ` Petr Vorel

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=f4fd8977-94cc-489a-8e66-3ae7e8a2b991@suse.com \
    --to=ltp@lists.linux.it \
    --cc=andrea.cervesato@suse.com \
    --cc=pvorel@suse.cz \
    /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