* bug#34460: https://elpa.gnu.org should list a contact address @ 2019-02-12 18:31 Glenn Morris 2019-02-19 1:16 ` Glenn Morris 2020-08-15 14:54 ` Stefan Kangas 0 siblings, 2 replies; 15+ messages in thread From: Glenn Morris @ 2019-02-12 18:31 UTC (permalink / raw) To: 34460 Package: emacs Severity: minor I think https://elpa.gnu.org should list a contact address to report any issues with the system. ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-02-12 18:31 bug#34460: https://elpa.gnu.org should list a contact address Glenn Morris @ 2019-02-19 1:16 ` Glenn Morris 2019-02-19 15:01 ` Stefan Monnier 2020-08-15 14:54 ` Stefan Kangas 1 sibling, 1 reply; 15+ messages in thread From: Glenn Morris @ 2019-02-19 1:16 UTC (permalink / raw) To: 34460; +Cc: Stefan Monnier Glenn Morris wrote: > I think https://elpa.gnu.org should list a contact address to report any > issues with the system. In fact for public-facing infrastructure like this I think a contact address is a requirement. I suggest some alias like admin@elpa.gnu.org that can expand to whatever you like. (Example of confusion caused by current situation: http://lists.gnu.org/r/savannah-hackers-public/2019-02/msg00015.html ) ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-02-19 1:16 ` Glenn Morris @ 2019-02-19 15:01 ` Stefan Monnier 2019-11-04 20:21 ` Stefan Kangas 2019-11-06 17:06 ` Glenn Morris 0 siblings, 2 replies; 15+ messages in thread From: Stefan Monnier @ 2019-02-19 15:01 UTC (permalink / raw) To: Glenn Morris; +Cc: 34460 >> I think https://elpa.gnu.org should list a contact address to report any >> issues with the system. > In fact for public-facing infrastructure like this I think a contact > address is a requirement. Indeed. I think emacs-devel@gnu.org is likely the better place (it's bound to get someone's attention). > I suggest some alias like admin@elpa.gnu.org that can expand to > whatever you like. This kind of "obvious" address should ideally work, indeed. This said, I'm not sufficiently familiar with the gnu.org mail system to know how @elpa.gnu.org is handled, but before recommending such an address we should make sure it works even when elpa.gnu.org is down (like it is now :-( ) Stefan ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-02-19 15:01 ` Stefan Monnier @ 2019-11-04 20:21 ` Stefan Kangas 2019-11-17 19:28 ` Lars Ingebrigtsen 2019-11-06 17:06 ` Glenn Morris 1 sibling, 1 reply; 15+ messages in thread From: Stefan Kangas @ 2019-11-04 20:21 UTC (permalink / raw) To: Stefan Monnier; +Cc: 34460 [-- Attachment #1: Type: text/plain, Size: 861 bytes --] Stefan Monnier <monnier@iro.umontreal.ca> writes: >>> I think https://elpa.gnu.org should list a contact address to report any >>> issues with the system. >> In fact for public-facing infrastructure like this I think a contact >> address is a requirement. > > Indeed. I think emacs-devel@gnu.org is likely the better place (it's > bound to get someone's attention). How about the attached patch? >> I suggest some alias like admin@elpa.gnu.org that can expand to >> whatever you like. > > This kind of "obvious" address should ideally work, indeed. > > This said, I'm not sufficiently familiar with the gnu.org mail system to > know how @elpa.gnu.org is handled, but before recommending such an > address we should make sure it works even when elpa.gnu.org is down > (like it is now :-( ) Who could we ask for help with that? Best regards, Stefan Kangas [-- Warning: decoded text below may be mangled, UTF-8 assumed --] [-- Attachment #2: contact.diff --] [-- Type: text/x-diff, Size: 2083 bytes --] diff --git a/html/index.html b/html/index.html index 1dcecc3d8..053315183 100644 --- a/html/index.html +++ b/html/index.html @@ -42,11 +42,27 @@ (see the <a href="https://savannah.gnu.org/projects/emacs">GNU Emacs project page</a> for clone instructions). </p> - - <p> - To contribute new packages refer to the + + <h3>Contact</h3> + + <ul> + <li> + To contribute a new package refer to the <a href="http://git.savannah.gnu.org/cgit/emacs/elpa.git/plain/README">README</a>. - </p> + </li> + <li> + To report a bug, use the <code>M-x report-emacs-bug</code> + command in Emacs.<br />For more information on reporting bugs, see + <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Bugs.html">the + Emacs Manual</a>. + </li> + <li> + If you need help, you could try the <a href="https://lists.gnu.org/mailman/listinfo/help-gnu-emacs">help-gnu-emacs mailing list</a>. + </li> + <li> + For general inquiries, please contact <a href="https://lists.gnu.org/mailman/listinfo/emacs-devel">emacs-devel mailing list</a>. + </li> + </ul> <!-- <p> You can grab the <a href="emacs-packages-latest.tgz">latest package snapshot</a>. --> </div> diff --git a/html/layout.css b/html/layout.css index c75e0ea05..eb38ee9d3 100644 --- a/html/layout.css +++ b/html/layout.css @@ -76,6 +76,11 @@ h2 { margin: 1.2em 0px; } +h3 { + font-size: 1.5em; + margin: 1.2em 0px; +} + a { color: #c73a6c; text-decoration: none; @@ -292,3 +297,12 @@ td { font-size: 1.2em; } } + +ul { + list-style-type: circle; + margin-left: 1.2em; +} + +li { + margin-bottom: 0.25em; +} ^ permalink raw reply related [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-11-04 20:21 ` Stefan Kangas @ 2019-11-17 19:28 ` Lars Ingebrigtsen 2019-11-19 14:37 ` Stefan Kangas 0 siblings, 1 reply; 15+ messages in thread From: Lars Ingebrigtsen @ 2019-11-17 19:28 UTC (permalink / raw) To: Stefan Kangas; +Cc: 34460, Stefan Monnier Stefan Kangas <stefan@marxist.se> writes: > How about the attached patch? [...] > + To report a bug, use the <code>M-x report-emacs-bug</code> > + command in Emacs.<br />For more information on reporting bugs, see > + <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Bugs.html">the > + Emacs Manual</a>. (etc) Looks good to me. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-11-17 19:28 ` Lars Ingebrigtsen @ 2019-11-19 14:37 ` Stefan Kangas 2020-01-22 7:36 ` Stefan Kangas 0 siblings, 1 reply; 15+ messages in thread From: Stefan Kangas @ 2019-11-19 14:37 UTC (permalink / raw) To: Lars Ingebrigtsen; +Cc: 34460, Stefan Monnier Lars Ingebrigtsen <larsi@gnus.org> writes: > Stefan Kangas <stefan@marxist.se> writes: > > > How about the attached patch? > > [...] > > > + To report a bug, use the <code>M-x report-emacs-bug</code> > > + command in Emacs.<br />For more information on reporting bugs, see > > + <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Bugs.html">the > > + Emacs Manual</a>. > > (etc) > > Looks good to me. Thanks. I'll push it to the ELPA repository in a couple of days if no one has protested by then. Best regards, Stefan Kangas ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-11-19 14:37 ` Stefan Kangas @ 2020-01-22 7:36 ` Stefan Kangas 2020-01-23 15:08 ` Stefan Kangas 0 siblings, 1 reply; 15+ messages in thread From: Stefan Kangas @ 2020-01-22 7:36 UTC (permalink / raw) To: Lars Ingebrigtsen; +Cc: 34460, Stefan Monnier Stefan Kangas <stefan@marxist.se> writes: > Lars Ingebrigtsen <larsi@gnus.org> writes: > >> Stefan Kangas <stefan@marxist.se> writes: >> >> > How about the attached patch? >> >> [...] >> >> > + To report a bug, use the <code>M-x report-emacs-bug</code> >> > + command in Emacs.<br />For more information on reporting bugs, see >> > + <a href="https://www.gnu.org/software/emacs/manual/html_node/emacs/Bugs.html">the >> > + Emacs Manual</a>. >> >> (etc) >> >> Looks good to me. > > Thanks. I'll push it to the ELPA repository in a couple of days if no > one has protested by then. No one has protested within 9 weeks, so I've now pushed this to elpa.git as commit f242659bb. Best regards, Stefan Kangas ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2020-01-22 7:36 ` Stefan Kangas @ 2020-01-23 15:08 ` Stefan Kangas 2020-01-24 17:52 ` Stefan Monnier 0 siblings, 1 reply; 15+ messages in thread From: Stefan Kangas @ 2020-01-23 15:08 UTC (permalink / raw) To: Lars Ingebrigtsen; +Cc: 34460, Stefan Monnier Stefan Kangas <stefan@marxist.se> writes: > No one has protested within 9 weeks, so I've now pushed this to > elpa.git as commit f242659bb. This doesn't show up yet on elpa.gnu.org yet. Is it waiting for some automatic rebuild or does it need manual intervention? Also, how would one go about changing the look of these two pages? https://elpa.gnu.org/packages/ https://elpa.gnu.org/packages/ada-mode.html I can't find the relevant files in elpa.git. Best regards, Stefan Kangas ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2020-01-23 15:08 ` Stefan Kangas @ 2020-01-24 17:52 ` Stefan Monnier 0 siblings, 0 replies; 15+ messages in thread From: Stefan Monnier @ 2020-01-24 17:52 UTC (permalink / raw) To: Stefan Kangas; +Cc: Lars Ingebrigtsen, 34460 >> No one has protested within 9 weeks, so I've now pushed this to >> elpa.git as commit f242659bb. > This doesn't show up yet on elpa.gnu.org yet. Is it waiting for some > automatic rebuild or does it need manual intervention? It needed manual intervention. Should be better now. Let me know if something is still missing, Stefan ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-02-19 15:01 ` Stefan Monnier 2019-11-04 20:21 ` Stefan Kangas @ 2019-11-06 17:06 ` Glenn Morris 2019-11-19 14:36 ` Stefan Kangas 1 sibling, 1 reply; 15+ messages in thread From: Glenn Morris @ 2019-11-06 17:06 UTC (permalink / raw) To: Stefan Monnier; +Cc: 34460 Stefan Monnier wrote: >> I suggest some alias like admin@elpa.gnu.org that can expand to >> whatever you like. [...] > This said, I'm not sufficiently familiar with the gnu.org mail system to > know how @elpa.gnu.org is handled, but before recommending such an > address we should make sure it works even when elpa.gnu.org is down If you want it to work when elpa is down, I think you need to ask sysadmin@gnu to create an alias elpa-admin@gnu or somesuch. ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-11-06 17:06 ` Glenn Morris @ 2019-11-19 14:36 ` Stefan Kangas 2020-01-22 7:42 ` Stefan Kangas 0 siblings, 1 reply; 15+ messages in thread From: Stefan Kangas @ 2019-11-19 14:36 UTC (permalink / raw) To: Glenn Morris; +Cc: 34460, Stefan Monnier Glenn Morris <rgm@gnu.org> writes: > >> I suggest some alias like admin@elpa.gnu.org that can expand to > >> whatever you like. > [...] > > This said, I'm not sufficiently familiar with the gnu.org mail system to > > know how @elpa.gnu.org is handled, but before recommending such an > > address we should make sure it works even when elpa.gnu.org is down > > If you want it to work when elpa is down, I think you need to ask > sysadmin@gnu to create an alias elpa-admin@gnu or somesuch. I could ask, but what e-mail address should the alias point to? emacs-devel? Best regards, Stefan Kangas ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-11-19 14:36 ` Stefan Kangas @ 2020-01-22 7:42 ` Stefan Kangas 2020-01-22 16:06 ` Stefan Monnier 0 siblings, 1 reply; 15+ messages in thread From: Stefan Kangas @ 2020-01-22 7:42 UTC (permalink / raw) To: sysadmin; +Cc: 34460, Stefan Monnier Dear GNU sysadmins, Could you please help Emacs create an email alias from elpa-admin@gnu to emacs-devel@gnu? Please see below for background, and also: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=34460 Thanks in advance. Best regards, Stefan Kangas Stefan Kangas <stefan@marxist.se> writes: > Glenn Morris <rgm@gnu.org> writes: > >> >> I suggest some alias like admin@elpa.gnu.org that can expand to >> >> whatever you like. >> [...] >> > This said, I'm not sufficiently familiar with the gnu.org mail system to >> > know how @elpa.gnu.org is handled, but before recommending such an >> > address we should make sure it works even when elpa.gnu.org is down >> >> If you want it to work when elpa is down, I think you need to ask >> sysadmin@gnu to create an alias elpa-admin@gnu or somesuch. > > I could ask, but what e-mail address should the alias point to? emacs-devel? > > Best regards, > Stefan Kangas ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2020-01-22 7:42 ` Stefan Kangas @ 2020-01-22 16:06 ` Stefan Monnier 0 siblings, 0 replies; 15+ messages in thread From: Stefan Monnier @ 2020-01-22 16:06 UTC (permalink / raw) To: Stefan Kangas; +Cc: 34460, sysadmin > Could you please help Emacs create an email alias from elpa-admin@gnu > to emacs-devel@gnu? Should be done now, Stefan ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2019-02-12 18:31 bug#34460: https://elpa.gnu.org should list a contact address Glenn Morris 2019-02-19 1:16 ` Glenn Morris @ 2020-08-15 14:54 ` Stefan Kangas 2020-10-11 1:51 ` Lars Ingebrigtsen 1 sibling, 1 reply; 15+ messages in thread From: Stefan Kangas @ 2020-08-15 14:54 UTC (permalink / raw) To: Glenn Morris; +Cc: 34460 Glenn Morris <rgm@gnu.org> writes: > I think https://elpa.gnu.org should list a contact address to report any > issues with the system. Could you please take a look at elpa.gnu.org and see if you think there's anything missing there? Stefan M created the alias elpa-admin@gnu.org (forwarded to emacs-devel), which we could possibly add. I'm just not sure where we should add it, or if we should do it at all. Best regards, Stefan Kangas ^ permalink raw reply [flat|nested] 15+ messages in thread
* bug#34460: https://elpa.gnu.org should list a contact address 2020-08-15 14:54 ` Stefan Kangas @ 2020-10-11 1:51 ` Lars Ingebrigtsen 0 siblings, 0 replies; 15+ messages in thread From: Lars Ingebrigtsen @ 2020-10-11 1:51 UTC (permalink / raw) To: Stefan Kangas; +Cc: Glenn Morris, 34460 Stefan Kangas <stefan@marxist.se> writes: > Could you please take a look at elpa.gnu.org and see if you think > there's anything missing there? This was two weeks ago, so I'm assuming there's nothing more to be done here, and I'm closing this bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no ^ permalink raw reply [flat|nested] 15+ messages in thread
end of thread, other threads:[~2020-10-11 1:51 UTC | newest] Thread overview: 15+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-02-12 18:31 bug#34460: https://elpa.gnu.org should list a contact address Glenn Morris 2019-02-19 1:16 ` Glenn Morris 2019-02-19 15:01 ` Stefan Monnier 2019-11-04 20:21 ` Stefan Kangas 2019-11-17 19:28 ` Lars Ingebrigtsen 2019-11-19 14:37 ` Stefan Kangas 2020-01-22 7:36 ` Stefan Kangas 2020-01-23 15:08 ` Stefan Kangas 2020-01-24 17:52 ` Stefan Monnier 2019-11-06 17:06 ` Glenn Morris 2019-11-19 14:36 ` Stefan Kangas 2020-01-22 7:42 ` Stefan Kangas 2020-01-22 16:06 ` Stefan Monnier 2020-08-15 14:54 ` Stefan Kangas 2020-10-11 1:51 ` Lars Ingebrigtsen
Code repositories for project(s) associated with this external index https://git.savannah.gnu.org/cgit/emacs.git https://git.savannah.gnu.org/cgit/emacs/org-mode.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.