unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* https://issues.guix.info
@ 2018-09-01 20:26 Ricardo Wurmus
  2018-09-01 21:46 ` https://issues.guix.info Amin Bandali
                   ` (3 more replies)
  0 siblings, 4 replies; 18+ messages in thread
From: Ricardo Wurmus @ 2018-09-01 20:26 UTC (permalink / raw)
  To: guix-devel

Hello Guix!

Some of you know this already, but I think it’s time for a proper
announcement here.  I made a little something:

    https://issues.guix.info

It tries to provide a friendlier web interface to Debbugs, the software
we use for tracking bugs that are sent to bug-guix@gnu.org and for
tracking patch submissions at guix-patches@gnu.org.  The software that
provides this web interface is called “mumi” (for reasons that are not
important).

Behind the scenes it uses guile-debbugs, a simple Guile client for the
SOAP service that Debbugs instances provide.

It isn’t very snappy, because it has to make requests to Debbugs, wait
for an answer, parse the XML, and then make some more requests.  It
tries to cache these SOAP requests for a while, but it’s rather
primitive.

The search box accepts issue numbers (for *any* bug on the GNU instance
of Debbugs), but it also supports a few special queries, such as

    is:open / is:pending –> only open issues
    is:done / is:closed  –> only completed issues
    title:foo -> issues containing “foo” in the title
    author:rekado –> issues that “rekado” contributed to

Other supported terms are “severity”, “tag”, and “submitter”, but not
all of them really work as they should, partly because of bugs in mumi,
partly because of limitations in Debbugs.

I haven’t yet thought about how to serve this reliably, so for the time
being it’s just a single Guile web server behind a proxy.

I hope that eventually we could offer extra features for people who are
members of the Guix project on Savannah, such as sending control
messages from within the web interface.  I’d also like to eventually
allow people to comment on issues and create new ones right from the web
interface, but that’s a little tricky to get right.

The code is available here:

    https://git.elephly.net/software/mumi.git

I would be delighted if any of you would like to help make mumi better.
Here are a couple of things that come to mind that could need some work:

- proper handling of attachments in multipart messages.  If a multipart
  message contains an attachment, mumi tries to display it like any
  other multipart type.

- processing of mail body.  Mumi goes through the mail body line by line
  and wraps matching lines in extra styles.  It would be nice if we
  could put all quotes in a single div and allow the visitor to toggle
  display of quoted lines, for example.  (On the other hand, maybe
  people will learn to avoid quoting irrelevant parts of other messages
  when they see how bad it looks on the web interface… :))

- make the search bar look good

- turn URLs into clickable links

- turn commit hashes into links to the commit on Savannah

Anyway, hope you’ll find this useful!

--
Ricardo

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

* Re: https://issues.guix.info
  2018-09-01 20:26 https://issues.guix.info Ricardo Wurmus
@ 2018-09-01 21:46 ` Amin Bandali
  2018-09-02 20:55   ` https://issues.guix.info Ricardo Wurmus
  2018-09-03  7:59 ` https://issues.guix.info Hartmut Goebel
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 18+ messages in thread
From: Amin Bandali @ 2018-09-01 21:46 UTC (permalink / raw)
  To: Ricardo Wurmus, guix-devel

Hi Ricardo,

> Some of you know this already, but I think it’s time for a proper
> announcement here.  I made a little something:
>
>     https://issues.guix.info

Awesome, it looks pretty neat!

> The search box accepts issue numbers (for *any* bug on the GNU instance
> of Debbugs), but it also supports a few special queries, such as
>
>     is:open / is:pending –> only open issues
>     is:done / is:closed  –> only completed issues
>     title:foo -> issues containing “foo” in the title
>     author:rekado –> issues that “rekado” contributed to
>
> Other supported terms are “severity”, “tag”, and “submitter”, but not
> all of them really work as they should, partly because of bugs in mumi,
> partly because of limitations in Debbugs.

I think It would be neat to present these to the user, right on
the website itself.

> - make the search bar look good

Adding class="form-control" would be a nice first step.  Also,
it'd probably be a good idea to wrap the <form> in a div with
class="row", and use bootstrap grids to make the search bar and
the button smaller (by putting them in a column), and display the
above information about the search syntax in another column to
the right of the form.

  -amin

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

* Re: https://issues.guix.info
  2018-09-01 21:46 ` https://issues.guix.info Amin Bandali
@ 2018-09-02 20:55   ` Ricardo Wurmus
  2018-09-02 21:17     ` https://issues.guix.info Clément Lassieur
  2018-09-02 22:08     ` https://issues.guix.info Amin Bandali
  0 siblings, 2 replies; 18+ messages in thread
From: Ricardo Wurmus @ 2018-09-02 20:55 UTC (permalink / raw)
  To: Amin Bandali; +Cc: guix-devel


Hi Amin,

>> The search box accepts issue numbers (for *any* bug on the GNU instance
>> of Debbugs), but it also supports a few special queries, such as
>>
>>     is:open / is:pending –> only open issues
>>     is:done / is:closed  –> only completed issues
>>     title:foo -> issues containing “foo” in the title
>>     author:rekado –> issues that “rekado” contributed to
>>
>> Other supported terms are “severity”, “tag”, and “submitter”, but not
>> all of them really work as they should, partly because of bugs in mumi,
>> partly because of limitations in Debbugs.
>
> I think It would be neat to present these to the user, right on
> the website itself.

I agree.  I don’t know how to present these things nicely, but I’ll play
around with this.

BTW: “submitter:who” should also work now.  Like “is:…” it’s a rather
expensive query because the result set from Debbugs has to be filtered
locally.

>> - make the search bar look good
>
> Adding class="form-control" would be a nice first step.  Also,
> it'd probably be a good idea to wrap the <form> in a div with
> class="row", and use bootstrap grids to make the search bar and
> the button smaller (by putting them in a column), and display the
> above information about the search syntax in another column to
> the right of the form.

Thanks for the suggestions.  I read the bootstrap CSS docs and came up
with something that I hope is an improvement.

--
Ricardo

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

* Re: https://issues.guix.info
  2018-09-02 20:55   ` https://issues.guix.info Ricardo Wurmus
@ 2018-09-02 21:17     ` Clément Lassieur
  2018-09-02 22:08     ` https://issues.guix.info Amin Bandali
  1 sibling, 0 replies; 18+ messages in thread
From: Clément Lassieur @ 2018-09-02 21:17 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Ricardo Wurmus <rekado@elephly.net> writes:

> Hi Amin,
>
>>> The search box accepts issue numbers (for *any* bug on the GNU instance
>>> of Debbugs), but it also supports a few special queries, such as
>>>
>>>     is:open / is:pending –> only open issues
>>>     is:done / is:closed  –> only completed issues
>>>     title:foo -> issues containing “foo” in the title
>>>     author:rekado –> issues that “rekado” contributed to
>>>
>>> Other supported terms are “severity”, “tag”, and “submitter”, but not
>>> all of them really work as they should, partly because of bugs in mumi,
>>> partly because of limitations in Debbugs.
>>
>> I think It would be neat to present these to the user, right on
>> the website itself.
>
> I agree.  I don’t know how to present these things nicely, but I’ll play
> around with this.
>
> BTW: “submitter:who” should also work now.  Like “is:…” it’s a rather
> expensive query because the result set from Debbugs has to be filtered
> locally.

Nice :-)  Thank you.

>>> - make the search bar look good
>>
>> Adding class="form-control" would be a nice first step.  Also,
>> it'd probably be a good idea to wrap the <form> in a div with
>> class="row", and use bootstrap grids to make the search bar and
>> the button smaller (by putting them in a column), and display the
>> above information about the search syntax in another column to
>> the right of the form.
>
> Thanks for the suggestions.  I read the bootstrap CSS docs and came up
> with something that I hope is an improvement.

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

* Re: https://issues.guix.info
  2018-09-02 20:55   ` https://issues.guix.info Ricardo Wurmus
  2018-09-02 21:17     ` https://issues.guix.info Clément Lassieur
@ 2018-09-02 22:08     ` Amin Bandali
  2018-09-03  6:30       ` https://issues.guix.info Pierre Neidhardt
  2018-09-03 13:01       ` https://issues.guix.info Ricardo Wurmus
  1 sibling, 2 replies; 18+ messages in thread
From: Amin Bandali @ 2018-09-02 22:08 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Hi Ricardo,

> I agree.  I don’t know how to present these things nicely, but I’ll play
> around with this.
>
> BTW: “submitter:who” should also work now.  Like “is:…” it’s a rather
> expensive query because the result set from Debbugs has to be filtered
> locally.

Cool, thanks!

>>> - make the search bar look good
>>
>> Adding class="form-control" would be a nice first step.  Also,
>> it'd probably be a good idea to wrap the <form> in a div with
>> class="row", and use bootstrap grids to make the search bar and
>> the button smaller (by putting them in a column), and display the
>> above information about the search syntax in another column to
>> the right of the form.
>
> Thanks for the suggestions.  I read the bootstrap CSS docs and came up
> with something that I hope is an improvement.

Thanks, that does looks better!  I'm not much of a UI person
either, but I'll see if I can manage to make a nice presentation
of the search syntax on the front page and will send a patch if
it turns out looking ok.

  -amin

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

* Re: https://issues.guix.info
  2018-09-02 22:08     ` https://issues.guix.info Amin Bandali
@ 2018-09-03  6:30       ` Pierre Neidhardt
  2018-09-03 13:01       ` https://issues.guix.info Ricardo Wurmus
  1 sibling, 0 replies; 18+ messages in thread
From: Pierre Neidhardt @ 2018-09-03  6:30 UTC (permalink / raw)
  To: Amin Bandali; +Cc: guix-devel

[-- Attachment #1: Type: text/plain, Size: 88 bytes --]

Looks great, thanks for the hard work!

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

* Re: https://issues.guix.info
  2018-09-01 20:26 https://issues.guix.info Ricardo Wurmus
  2018-09-01 21:46 ` https://issues.guix.info Amin Bandali
@ 2018-09-03  7:59 ` Hartmut Goebel
  2018-09-03 21:17 ` https://issues.guix.info Arun Isaac
  2018-09-04 21:37 ` https://issues.guix.info Ludovic Courtès
  3 siblings, 0 replies; 18+ messages in thread
From: Hartmut Goebel @ 2018-09-03  7:59 UTC (permalink / raw)
  To: guix-devel

Am 01.09.2018 um 22:26 schrieb Ricardo Wurmus:
> I hope that eventually we could offer extra features for people who are
> members of the Guix project on Savannah, such as sending control
> messages from within the web interface.  I’d also like to eventually
> allow people to comment on issues and create new ones right from the web
> interface, but that’s a little tricky to get right.

This would be really, really great! Interacting with debbugs is a pain
for occasional users.

-- 
Regards
Hartmut Goebel

| Hartmut Goebel          | h.goebel@crazy-compilers.com               |
| www.crazy-compilers.com | compilers which you thought are impossible |

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

* Re: https://issues.guix.info
  2018-09-02 22:08     ` https://issues.guix.info Amin Bandali
  2018-09-03  6:30       ` https://issues.guix.info Pierre Neidhardt
@ 2018-09-03 13:01       ` Ricardo Wurmus
  2018-09-03 18:51         ` https://issues.guix.info Amin Bandali
  1 sibling, 1 reply; 18+ messages in thread
From: Ricardo Wurmus @ 2018-09-03 13:01 UTC (permalink / raw)
  To: Amin Bandali; +Cc: guix-devel


Hi Amin,

> […] I'll see if I can manage to make a nice presentation
> of the search syntax on the front page and will send a patch if
> it turns out looking ok.

I went ahead and documented the supported query terms on
https://issues.guix.info/help and linked to it from the start page.

I also added support for “date:” (submission date) and “mdate:” (message
date) filters, which should look familiar to users of mu/mu4e.

--
Ricardo

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

* Re: https://issues.guix.info
  2018-09-03 13:01       ` https://issues.guix.info Ricardo Wurmus
@ 2018-09-03 18:51         ` Amin Bandali
  0 siblings, 0 replies; 18+ messages in thread
From: Amin Bandali @ 2018-09-03 18:51 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Hi Ricardo,

> I went ahead and documented the supported query terms on
> https://issues.guix.info/help and linked to it from the start page.
>
> I also added support for “date:” (submission date) and “mdate:” (message
> date) filters, which should look familiar to users of mu/mu4e.

Wonderful, looks great!  Thanks again for all your work.

  -amin

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

* Re: https://issues.guix.info
  2018-09-01 20:26 https://issues.guix.info Ricardo Wurmus
  2018-09-01 21:46 ` https://issues.guix.info Amin Bandali
  2018-09-03  7:59 ` https://issues.guix.info Hartmut Goebel
@ 2018-09-03 21:17 ` Arun Isaac
  2018-09-04  0:33   ` https://issues.guix.info Ricardo Wurmus
  2018-09-04 21:37 ` https://issues.guix.info Ludovic Courtès
  3 siblings, 1 reply; 18+ messages in thread
From: Arun Isaac @ 2018-09-03 21:17 UTC (permalink / raw)
  To: Ricardo Wurmus, guix-devel


> Some of you know this already, but I think it’s time for a proper
> announcement here.  I made a little something:
>
>     https://issues.guix.info
>
> It tries to provide a friendlier web interface to Debbugs, the software
> we use for tracking bugs that are sent to bug-guix@gnu.org and for
> tracking patch submissions at guix-patches@gnu.org.

Thanks for sharing! This is so much better than the old debbugs
interface! :-)

> - proper handling of attachments in multipart messages.  If a multipart
>   message contains an attachment, mumi tries to display it like any
>   other multipart type.

Is this about allowing attached patches to be downloaded? Is it
currently possible to download patches using mumi? It would be nice to
use mumi for my entire workflow, and not have to fallback to the old
debbugs web interface.

Also, is there any value in having a pure guile email parser instead of
using bindings to mailutils? I attempted a similar project, and for some
reason, I ended up writing an email parser from scratch using (ice-9
peg). But, now that I see how you have used mailutils bindings, I am
unsure if writing an email parser from scratch was wise. However, if you
think it is worthwhile, I can contribute that code to mumi.

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

* Re: https://issues.guix.info
  2018-09-03 21:17 ` https://issues.guix.info Arun Isaac
@ 2018-09-04  0:33   ` Ricardo Wurmus
  2018-09-05  6:50     ` https://issues.guix.info Arun Isaac
  0 siblings, 1 reply; 18+ messages in thread
From: Ricardo Wurmus @ 2018-09-04  0:33 UTC (permalink / raw)
  To: Arun Isaac; +Cc: guix-devel


Hi Arun,

>> - proper handling of attachments in multipart messages.  If a multipart
>>   message contains an attachment, mumi tries to display it like any
>>   other multipart type.
>
> Is this about allowing attached patches to be downloaded? Is it
> currently possible to download patches using mumi? It would be nice to
> use mumi for my entire workflow, and not have to fallback to the old
> debbugs web interface.

This is now possible.  I currently only decode attachments that are in
base64 and quoted printable formats; all others are sent as is.

> Also, is there any value in having a pure guile email parser instead of
> using bindings to mailutils? I attempted a similar project, and for some
> reason, I ended up writing an email parser from scratch using (ice-9
> peg). But, now that I see how you have used mailutils bindings, I am
> unsure if writing an email parser from scratch was wise. However, if you
> think it is worthwhile, I can contribute that code to mumi.

I’m not using a lot of mailutils.  I use the following procedures:

- mu-address-get-email
- mu-address-get-personal (problem: swallows non-ASCII characters)
- mu-header-decode
- mu-decoder-port

Of all these only “mu-decoder-port” would be non-trivial to implement.
It’s used to decode strings that are encoded as “quoted-printable”.  It
wouldn’t be too difficult to implement in pure Guile – I just wanted to
save time.

I’d be happy if your work on email parsers could end up in mumi and
replace some of my own poor quality code :)

--
Ricardo

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

* Re: https://issues.guix.info
  2018-09-01 20:26 https://issues.guix.info Ricardo Wurmus
                   ` (2 preceding siblings ...)
  2018-09-03 21:17 ` https://issues.guix.info Arun Isaac
@ 2018-09-04 21:37 ` Ludovic Courtès
  3 siblings, 0 replies; 18+ messages in thread
From: Ludovic Courtès @ 2018-09-04 21:37 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Hello!

Ricardo Wurmus <rekado@elephly.net> skribis:

> Some of you know this already, but I think it’s time for a proper
> announcement here.  I made a little something:
>
>     https://issues.guix.info

One word: awesome!

Hopefully contributors-to-be will be less scared than with the old
interface, and… hopefully more of the current contributors will feel
like reviewing patches too!  :-)

Ludo’.

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

* Re: https://issues.guix.info
  2018-09-04  0:33   ` https://issues.guix.info Ricardo Wurmus
@ 2018-09-05  6:50     ` Arun Isaac
  2018-09-05  7:10       ` https://issues.guix.info Ricardo Wurmus
  0 siblings, 1 reply; 18+ messages in thread
From: Arun Isaac @ 2018-09-05  6:50 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel


>> Is this about allowing attached patches to be downloaded? Is it
>> currently possible to download patches using mumi? It would be nice to
>> use mumi for my entire workflow, and not have to fallback to the old
>> debbugs web interface.
>
> This is now possible.  I currently only decode attachments that are in
> base64 and quoted printable formats; all others are sent as is.

How is it possible to download patches (or their mboxes) from the mumi
interface? I didn't see it anywhere in the web interface. Did I miss
something?

> I’d be happy if your work on email parsers could end up in mumi and
> replace some of my own poor quality code :)

Sure, I'll contribute to mumi. :-) Where do I send patches? It would be
nice to use debbugs (say, mumi@debbugs.gnu.org) to track the patches, so
that we can dogfood with mumi.

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

* Re: https://issues.guix.info
  2018-09-05  6:50     ` https://issues.guix.info Arun Isaac
@ 2018-09-05  7:10       ` Ricardo Wurmus
  2018-09-05  7:51         ` https://issues.guix.info Arun Isaac
  0 siblings, 1 reply; 18+ messages in thread
From: Ricardo Wurmus @ 2018-09-05  7:10 UTC (permalink / raw)
  To: Arun Isaac; +Cc: guix-devel


Hi Arun,

>>> Is this about allowing attached patches to be downloaded? Is it
>>> currently possible to download patches using mumi? It would be nice to
>>> use mumi for my entire workflow, and not have to fallback to the old
>>> debbugs web interface.
>>
>> This is now possible.  I currently only decode attachments that are in
>> base64 and quoted printable formats; all others are sent as is.
>
> How is it possible to download patches (or their mboxes) from the mumi
> interface? I didn't see it anywhere in the web interface. Did I miss
> something?

I haven’t yet added a way to download attached patches (they are only
displayed inline).  At the moment you can only download attachments that
cannot be displayed.  I’ll try to find time to change this today.

>> I’d be happy if your work on email parsers could end up in mumi and
>> replace some of my own poor quality code :)
>
> Sure, I'll contribute to mumi. :-) Where do I send patches? It would be
> nice to use debbugs (say, mumi@debbugs.gnu.org) to track the patches, so
> that we can dogfood with mumi.

I think that only GNU packages may use debbugs.gnu.org.  Mumi is not a
GNU package (yet?).

--
Ricardo

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

* Re: https://issues.guix.info
  2018-09-05  7:10       ` https://issues.guix.info Ricardo Wurmus
@ 2018-09-05  7:51         ` Arun Isaac
  2018-09-05  8:07           ` https://issues.guix.info Ricardo Wurmus
  0 siblings, 1 reply; 18+ messages in thread
From: Arun Isaac @ 2018-09-05  7:51 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel


> I haven’t yet added a way to download attached patches (they are only
> displayed inline).  At the moment you can only download attachments that
> cannot be displayed.  I’ll try to find time to change this today.

Sure, thanks!

> I think that only GNU packages may use debbugs.gnu.org.  Mumi is not a
> GNU package (yet?).

According to https://debbugs.gnu.org/Using.html , even "Savannah hosted
non-GNU free software" can use debbugs.

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

* Re: https://issues.guix.info
  2018-09-05  7:51         ` https://issues.guix.info Arun Isaac
@ 2018-09-05  8:07           ` Ricardo Wurmus
  2018-09-10 20:57             ` https://issues.guix.info Gábor Boskovits
  0 siblings, 1 reply; 18+ messages in thread
From: Ricardo Wurmus @ 2018-09-05  8:07 UTC (permalink / raw)
  To: Arun Isaac; +Cc: guix-devel


Arun Isaac <arunisaac@systemreboot.net> writes:

>> I haven’t yet added a way to download attached patches (they are only
>> displayed inline).  At the moment you can only download attachments that
>> cannot be displayed.  I’ll try to find time to change this today.
>
> Sure, thanks!
>
>> I think that only GNU packages may use debbugs.gnu.org.  Mumi is not a
>> GNU package (yet?).
>
> According to https://debbugs.gnu.org/Using.html , even "Savannah hosted
> non-GNU free software" can use debbugs.

Oh, I suppose I should apply for having Mumi hosted on Savannah then.
Thanks for checking!

-- 
Ricardo

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

* Re: https://issues.guix.info
  2018-09-05  8:07           ` https://issues.guix.info Ricardo Wurmus
@ 2018-09-10 20:57             ` Gábor Boskovits
  2018-09-13 22:29               ` https://issues.guix.info Pierre Neidhardt
  0 siblings, 1 reply; 18+ messages in thread
From: Gábor Boskovits @ 2018-09-10 20:57 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: Guix-devel

[-- Attachment #1: Type: text/plain, Size: 826 bytes --]

Ricardo Wurmus <rekado@elephly.net> ezt írta (időpont: 2018. szept. 5.,
Sze, 10:56):

>
> Arun Isaac <arunisaac@systemreboot.net> writes:
>
> >> I haven’t yet added a way to download attached patches (they are only
> >> displayed inline).  At the moment you can only download attachments that
> >> cannot be displayed.  I’ll try to find time to change this today.
> >
> > Sure, thanks!
> >
> >> I think that only GNU packages may use debbugs.gnu.org.  Mumi is not a
> >> GNU package (yet?).
> >
> > According to https://debbugs.gnu.org/Using.html , even "Savannah hosted
> > non-GNU free software" can use debbugs.
>
> Oh, I suppose I should apply for having Mumi hosted on Savannah then.
> Thanks for checking!
>
> --
> Ricardo
>
>  Hello Ricardo,
I'm now playing with this. It's really nice.

[-- Attachment #2: Type: text/html, Size: 1415 bytes --]

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

* Re: https://issues.guix.info
  2018-09-10 20:57             ` https://issues.guix.info Gábor Boskovits
@ 2018-09-13 22:29               ` Pierre Neidhardt
  0 siblings, 0 replies; 18+ messages in thread
From: Pierre Neidhardt @ 2018-09-13 22:29 UTC (permalink / raw)
  To: Gábor Boskovits; +Cc: Guix-devel

[-- Attachment #1: Type: text/plain, Size: 185 bytes --]

Just noticed something: on http://issues.guix.info/help, the "submitter" example
suggests "author:ludo" instead of "submitter:ludo" :)

-- 
Pierre Neidhardt
https://ambrevar.xyz/

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

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

end of thread, other threads:[~2018-09-13 22:29 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-01 20:26 https://issues.guix.info Ricardo Wurmus
2018-09-01 21:46 ` https://issues.guix.info Amin Bandali
2018-09-02 20:55   ` https://issues.guix.info Ricardo Wurmus
2018-09-02 21:17     ` https://issues.guix.info Clément Lassieur
2018-09-02 22:08     ` https://issues.guix.info Amin Bandali
2018-09-03  6:30       ` https://issues.guix.info Pierre Neidhardt
2018-09-03 13:01       ` https://issues.guix.info Ricardo Wurmus
2018-09-03 18:51         ` https://issues.guix.info Amin Bandali
2018-09-03  7:59 ` https://issues.guix.info Hartmut Goebel
2018-09-03 21:17 ` https://issues.guix.info Arun Isaac
2018-09-04  0:33   ` https://issues.guix.info Ricardo Wurmus
2018-09-05  6:50     ` https://issues.guix.info Arun Isaac
2018-09-05  7:10       ` https://issues.guix.info Ricardo Wurmus
2018-09-05  7:51         ` https://issues.guix.info Arun Isaac
2018-09-05  8:07           ` https://issues.guix.info Ricardo Wurmus
2018-09-10 20:57             ` https://issues.guix.info Gábor Boskovits
2018-09-13 22:29               ` https://issues.guix.info Pierre Neidhardt
2018-09-04 21:37 ` https://issues.guix.info Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).