all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#69329: [PATCH] Add pointer to bug-mumi@ on home page
@ 2024-02-23 14:09 Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
  2024-02-23 15:11 ` bug#69329: [PATCH 1/2] {html, config}: Change variable name for Guix patch submissions Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
  0 siblings, 1 reply; 3+ messages in thread
From: Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi. @ 2024-02-23 14:09 UTC (permalink / raw)
  To: 69329; +Cc: Felix Lechner

Hi,

Should we mention bug-guix@gnu.org on Mumi's home page?

Kind regards
Felix

Felix Lechner (2):
  {html, config}: Change variable name for Guix patch submissions.
  {html, config}: Add config value for Mumi bug submissions; mention it.

 mumi/config.scm.in     | 3 ++-
 mumi/web/view/html.scm | 9 +++++++--
 2 files changed, 9 insertions(+), 3 deletions(-)


base-commit: ba4750f0d12fedbbc9439c31715f95d0007dce8d
prerequisite-patch-id: 02d62b766b53f1c6bc87549c32c0bc4c3a738f73
-- 
2.41.0





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

* bug#69329: [PATCH 1/2] {html, config}: Change variable name for Guix patch submissions.
  2024-02-23 14:09 bug#69329: [PATCH] Add pointer to bug-mumi@ on home page Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
@ 2024-02-23 15:11 ` Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
  2024-02-23 15:11   ` bug#69329: [PATCH 2/2] {html, config}: Add config value for Mumi bug submissions; mention it Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
  0 siblings, 1 reply; 3+ messages in thread
From: Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi. @ 2024-02-23 15:11 UTC (permalink / raw)
  To: 69329; +Cc: Felix Lechner

Action take in order to avoid confusion and before adding a separate
variable for bug reports against Mumi.

May require changes on production equipment unless the standard
configuration is being deployed.

* mumi/config.scm.in: Change variable name for Guix patch submissions.
mumi/web/view/html.scm: Same.
---
 mumi/config.scm.in     | 2 +-
 mumi/web/view/html.scm | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/mumi/config.scm.in b/mumi/config.scm.in
index 8903f4d..11bc046 100644
--- a/mumi/config.scm.in
+++ b/mumi/config.scm.in
@@ -74,7 +74,7 @@
            (host        . "localhost")
            (port        . 1234)
            (cache-ttl   . 120)
-           (submission-email-address . "guix-patches@gnu.org")
+           (submission-patch-email-address . "guix-patches@gnu.org")
            (submission-bug-email-address . "bug-guix@gnu.org")
            (lists       . ("guix-patches@gnu.org" "bug-guix@gnu.org"))
            (packages    . ("guix-patches" "guix" "skribilo"))
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm
index 2599aeb..66c7d2a 100644
--- a/mumi/web/view/html.scm
+++ b/mumi/web/view/html.scm
@@ -259,8 +259,8 @@ simple query language.  Here is a list of supported query terms:")
       (h1 "Guix issue tracker")
       (p (@ (class "lead"))
          "This is a web frontend to the Guix patch and bug trackers.  Send an email to "
-         (a (@ (href ,(string-append "mailto:" (%config 'submission-email-address))))
-            ,(%config 'submission-email-address))
+         (a (@ (href ,(string-append "mailto:" (%config 'submission-patch-email-address))))
+            ,(%config 'submission-patch-email-address))
          " to submit a patch, or email "
          (a (@ (href ,(string-append "mailto:" (%config 'submission-bug-email-address))))
             ,(%config 'submission-bug-email-address))
-- 
2.41.0





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

* bug#69329: [PATCH 2/2] {html, config}: Add config value for Mumi bug submissions; mention it.
  2024-02-23 15:11 ` bug#69329: [PATCH 1/2] {html, config}: Change variable name for Guix patch submissions Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
@ 2024-02-23 15:11   ` Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
  0 siblings, 0 replies; 3+ messages in thread
From: Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi. @ 2024-02-23 15:11 UTC (permalink / raw)
  To: 69329; +Cc: Felix Lechner

The mailing address bug-mumi@gnu.org was not added to the 'lists'
configuration value, which appeared to be unused.

May require changes on production equipment unless the standard
configuration is being deployed.

* mumi/config.scm.in: Add config value for Mumi bug submissions.
mumi/web/view/html.scm: Mention it on the home page.
---
 mumi/config.scm.in     | 1 +
 mumi/web/view/html.scm | 5 +++++
 2 files changed, 6 insertions(+)

diff --git a/mumi/config.scm.in b/mumi/config.scm.in
index 11bc046..0d0cb3c 100644
--- a/mumi/config.scm.in
+++ b/mumi/config.scm.in
@@ -76,6 +76,7 @@
            (cache-ttl   . 120)
            (submission-patch-email-address . "guix-patches@gnu.org")
            (submission-bug-email-address . "bug-guix@gnu.org")
+           (submission-mumi-email-address . "bug-mumi@gnu.org")
            (lists       . ("guix-patches@gnu.org" "bug-guix@gnu.org"))
            (packages    . ("guix-patches" "guix" "skribilo"))
            (debbugs-domain . "debbugs.gnu.org")
diff --git a/mumi/web/view/html.scm b/mumi/web/view/html.scm
index 66c7d2a..58db863 100644
--- a/mumi/web/view/html.scm
+++ b/mumi/web/view/html.scm
@@ -265,6 +265,11 @@ simple query language.  Here is a list of supported query terms:")
          (a (@ (href ,(string-append "mailto:" (%config 'submission-bug-email-address))))
             ,(%config 'submission-bug-email-address))
          " to submit a bug report.")
+      (p (@ (class "lead"))
+         "Please send an email to "
+         (a (@ (href ,(string-append "mailto:" (%config 'submission-mumi-email-address))))
+            ,(%config 'submission-patch-email-address))
+         " to submit a bug report against this issue tracker.")
       ,(search-widget)
 
       (article
-- 
2.41.0





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

end of thread, other threads:[~2024-02-23 15:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-23 14:09 bug#69329: [PATCH] Add pointer to bug-mumi@ on home page Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
2024-02-23 15:11 ` bug#69329: [PATCH 1/2] {html, config}: Change variable name for Guix patch submissions Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.
2024-02-23 15:11   ` bug#69329: [PATCH 2/2] {html, config}: Add config value for Mumi bug submissions; mention it Felix Lechner via Bug-mumi via Bug reports for GNU Guix Mumi.

Code repositories for project(s) associated with this external index

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

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.