All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] add sashiko URLs
@ 2026-04-16 11:21 Mike Rapoport
  2026-04-16 19:17 ` Kees Cook
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Mike Rapoport @ 2026-04-16 11:21 UTC (permalink / raw)
  To: Dan Rue; +Cc: Konstantin Ryabitsev, tools, Mike Rapoport

sashiko is gaining traction and it's easy to add its URLs along with
lore ones.

Signed-off-by: Mike Rapoport <rppt@kernel.org>
---
 lorifier.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/lorifier.py b/lorifier.py
index be7294b..96529bd 100755
--- a/lorifier.py
+++ b/lorifier.py
@@ -25,6 +25,7 @@ import sys
 from email.utils import mktime_tz, parsedate_tz, formatdate
 
 LORE_MASK = "https://lore.kernel.org/all/%s"
+SASHIKO_MASK = "https://sashiko.dev/#/message/%s"
 
 
 class muttemail:
@@ -65,7 +66,9 @@ class muttemail:
             return
 
         lore_url = LORE_MASK % str(message_id).strip("<>")
+        sashiko_url = SASHIKO_MASK % str(message_id).strip("<>")
         self.message.add_header("X-URI", lore_url)
+        self.message.add_header("X-URI", sashiko_url)
 
 
 if __name__ == "__main__":
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] add sashiko URLs
  2026-04-16 11:21 [PATCH] add sashiko URLs Mike Rapoport
@ 2026-04-16 19:17 ` Kees Cook
  2026-04-16 19:26 ` Konstantin Ryabitsev
  2026-04-17  6:50 ` Sudeep Holla
  2 siblings, 0 replies; 6+ messages in thread
From: Kees Cook @ 2026-04-16 19:17 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Dan Rue, Konstantin Ryabitsev, tools

On Thu, Apr 16, 2026 at 02:21:56PM +0300, Mike Rapoport wrote:
> sashiko is gaining traction and it's easy to add its URLs along with
> lore ones.
> 
> Signed-off-by: Mike Rapoport <rppt@kernel.org>

Oh yes please. :)

Reviewed-by: Kees Cook <kees@kernel.org>

-- 
Kees Cook

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] add sashiko URLs
  2026-04-16 11:21 [PATCH] add sashiko URLs Mike Rapoport
  2026-04-16 19:17 ` Kees Cook
@ 2026-04-16 19:26 ` Konstantin Ryabitsev
  2026-04-17  6:50 ` Sudeep Holla
  2 siblings, 0 replies; 6+ messages in thread
From: Konstantin Ryabitsev @ 2026-04-16 19:26 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Dan Rue, tools

On Thu, Apr 16, 2026 at 02:21:56PM +0300, Mike Rapoport wrote:
> sashiko is gaining traction and it's easy to add its URLs along with
> lore ones.

OK, but FWIW, lorifier lives here -- it's not one of LF tools.

    https://github.com/danrue/lorifier

-K

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] add sashiko URLs
  2026-04-16 11:21 [PATCH] add sashiko URLs Mike Rapoport
  2026-04-16 19:17 ` Kees Cook
  2026-04-16 19:26 ` Konstantin Ryabitsev
@ 2026-04-17  6:50 ` Sudeep Holla
  2026-04-17  7:38   ` Mike Rapoport
  2 siblings, 1 reply; 6+ messages in thread
From: Sudeep Holla @ 2026-04-17  6:50 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Dan Rue, Konstantin Ryabitsev, Sudeep Holla, tools

On Thu, Apr 16, 2026 at 02:21:56PM +0300, Mike Rapoport wrote:
> sashiko is gaining traction and it's easy to add its URLs along with
> lore ones.
> 
> Signed-off-by: Mike Rapoport <rppt@kernel.org>
> ---
>  lorifier.py | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/lorifier.py b/lorifier.py
> index be7294b..96529bd 100755
> --- a/lorifier.py
> +++ b/lorifier.py
> @@ -25,6 +25,7 @@ import sys
>  from email.utils import mktime_tz, parsedate_tz, formatdate
>  
>  LORE_MASK = "https://lore.kernel.org/all/%s"
> +SASHIKO_MASK = "https://sashiko.dev/#/message/%s"

Just curious on the choice of
"https://sashiko.dev/#/message/%s"
over
"https://sashiko.dev/#/patchset/%s"

As the latter points to former while the reverse is not true unless I am
missing something.

-- 
Regards,
Sudeep

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] add sashiko URLs
  2026-04-17  6:50 ` Sudeep Holla
@ 2026-04-17  7:38   ` Mike Rapoport
  2026-04-17  8:28     ` Sudeep Holla
  0 siblings, 1 reply; 6+ messages in thread
From: Mike Rapoport @ 2026-04-17  7:38 UTC (permalink / raw)
  To: Sudeep Holla; +Cc: Dan Rue, Konstantin Ryabitsev, tools

On Fri, Apr 17, 2026 at 07:50:09AM +0100, Sudeep Holla wrote:
> On Thu, Apr 16, 2026 at 02:21:56PM +0300, Mike Rapoport wrote:
> > sashiko is gaining traction and it's easy to add its URLs along with
> > lore ones.
> > 
> > Signed-off-by: Mike Rapoport <rppt@kernel.org>
> > ---
> >  lorifier.py | 3 +++
> >  1 file changed, 3 insertions(+)
> > 
> > diff --git a/lorifier.py b/lorifier.py
> > index be7294b..96529bd 100755
> > --- a/lorifier.py
> > +++ b/lorifier.py
> > @@ -25,6 +25,7 @@ import sys
> >  from email.utils import mktime_tz, parsedate_tz, formatdate
> >  
> >  LORE_MASK = "https://lore.kernel.org/all/%s"
> > +SASHIKO_MASK = "https://sashiko.dev/#/message/%s"
> 
> Just curious on the choice of
> "https://sashiko.dev/#/message/%s"
> over
> "https://sashiko.dev/#/patchset/%s"
> 
> As the latter points to former while the reverse is not true unless I am
> missing something.

Patchset URL does not include message id, e.g:

https://sashiko.dev/#/patchset/20260417223004.1-evm-xattrs-v2-pengpeng%40iscas.ac.cn

I talked to Roman and he said he'll add links to patchsets from messages
Really Soon.
 
> -- 
> Regards,
> Sudeep

-- 
Sincerely yours,
Mike.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] add sashiko URLs
  2026-04-17  7:38   ` Mike Rapoport
@ 2026-04-17  8:28     ` Sudeep Holla
  0 siblings, 0 replies; 6+ messages in thread
From: Sudeep Holla @ 2026-04-17  8:28 UTC (permalink / raw)
  To: Mike Rapoport; +Cc: Dan Rue, Sudeep Holla, Konstantin Ryabitsev, tools

On Fri, Apr 17, 2026 at 10:38:20AM +0300, Mike Rapoport wrote:
> On Fri, Apr 17, 2026 at 07:50:09AM +0100, Sudeep Holla wrote:
> > On Thu, Apr 16, 2026 at 02:21:56PM +0300, Mike Rapoport wrote:
> > > sashiko is gaining traction and it's easy to add its URLs along with
> > > lore ones.
> > > 
> > > Signed-off-by: Mike Rapoport <rppt@kernel.org>
> > > ---
> > >  lorifier.py | 3 +++
> > >  1 file changed, 3 insertions(+)
> > > 
> > > diff --git a/lorifier.py b/lorifier.py
> > > index be7294b..96529bd 100755
> > > --- a/lorifier.py
> > > +++ b/lorifier.py
> > > @@ -25,6 +25,7 @@ import sys
> > >  from email.utils import mktime_tz, parsedate_tz, formatdate
> > >  
> > >  LORE_MASK = "https://lore.kernel.org/all/%s"
> > > +SASHIKO_MASK = "https://sashiko.dev/#/message/%s"
> > 
> > Just curious on the choice of
> > "https://sashiko.dev/#/message/%s"
> > over
> > "https://sashiko.dev/#/patchset/%s"
> > 
> > As the latter points to former while the reverse is not true unless I am
> > missing something.
> 
> Patchset URL does not include message id, e.g:
> 
> https://sashiko.dev/#/patchset/20260417223004.1-evm-xattrs-v2-pengpeng%40iscas.ac.cn

Yes it does not directly specify message id, but it does presents links to it.

For example, above patchset link has links to these:

https://sashiko.dev/#/message/20260407153002.2-evm-xattrs-pengpeng%40iscas.ac.cn
https://sashiko.dev/#/message/d95993e3d879bec4c9e3416906d409cca9c8ffeb.camel%40huaweicloud.com
https://sashiko.dev/#/message/20260417190004.4-evm-xattrs-reply-pengpeng%40iscas.ac.cn
https://sashiko.dev/#/message/20260417223004.1-evm-xattrs-v2-pengpeng%40iscas.ac.cn

> 
> I talked to Roman and he said he'll add links to patchsets from messages
> Really Soon.
>  

Cool, that would be great.

-- 
Regards,
Sudeep

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-04-17  8:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-16 11:21 [PATCH] add sashiko URLs Mike Rapoport
2026-04-16 19:17 ` Kees Cook
2026-04-16 19:26 ` Konstantin Ryabitsev
2026-04-17  6:50 ` Sudeep Holla
2026-04-17  7:38   ` Mike Rapoport
2026-04-17  8:28     ` Sudeep Holla

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.