all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Eli Zaretskii <eliz@gnu.org>
To: phillip.lord@newcastle.ac.uk (Phillip Lord)
Cc: emacs-devel@gnu.org, sb@dod.no, rms@gnu.org, kyle.c.andrews@gmail.com
Subject: Re: On being web-friendly and why info must die
Date: Wed, 17 Dec 2014 17:39:00 +0200	[thread overview]
Message-ID: <8361dawajv.fsf@gnu.org> (raw)
In-Reply-To: <871tnywkjt.fsf@newcastle.ac.uk>

> From: phillip.lord@newcastle.ac.uk (Phillip Lord)
> Date: Wed, 17 Dec 2014 12:03:02 +0000
> Cc: kyle.c.andrews@gmail.com, sb@dod.no, emacs-devel@gnu.org
> 
> >   > I find texinfo a fairly busy format because of all the menus and node
> >   > information.
> >
> > I'm sorry you dislike it, but that information has to be specified
> > in the manual source somehow.
> 
> No, it really doesn't.

I think you only say that because you consider a subset of Texinfo's
capabilities wrt document structuring, and/or assume that such a
subset is all that's needed.  See below.

> Well, Eli says that this is a non-issue because Emacs can put it in
> place with a few keypresses. Okay, well, why does Emacs have to do it?
> Why does texinfo not do the job? 

It does.

> Consider this snippet....
> 
> @node Abbrevs
> @chapter Abbrevs
> 
>   A defined @dfn{abbrev} is a word which @dfn{expands}, if you insert
> it, into some different text. 
> 
> @menu
> * Abbrev Concepts::   Fundamentals of defined abbrevs.
> * Defining Abbrevs::  Defining an abbrev, so it will expand when typed.
> @end menu
> 
> @node Abbrev Concepts
> @section Abbrev Concepts
> 
>   An @dfn{abbrev} is a word that has been defined to @dfn{expand} into
> a specified @dfn{expansion}.
> 
> 
> In org this would be:
> 
> * Abbrevs
> 
> A defined \abbrev\ is a word which \expands\, if you insert it into some
> different text.
> 
> ** Abbrev Concepts
> 
> An \abbrev\ is a word that has been defined to \expand\ into a
> specificed \expansion\.
> 
> 
> Now, I agree that the loss of semantics from @dfn is not good. But org
> (or markdown or asciidoc or latex) can work out the navigation from the
> document structure.

So does 'makeinfo', but I guess you are not aware of that.  I explain
a little bit of that below, but there's more to Texinfo than meets the
eye, so you are encouraged to study it in more detail, because IMO
criticizing Texinfo without detailed knowledge of its features frankly
doesn't feel right.

What you wrote above in Org format defines a chapter and its
subordinate section.  And that's the _only_ structure supported by the
above paradigm: a tree, whereby the child nodes must immediately
follow their parents, in the depth-first order.

By contrast, Texinfo manuals do not have to have a tree structure.
Their structure can be an arbitrary graph.  At least one popular Info
manual (info.info) actually uses this feature: it doesn't present a
tree-like structure, but instead has a cycle or two within it.

_That_ is why there are node pointers in Texinfo.  And what the Emacs
commands I briefly mentioned do is create them automatically on the
assumption that the manual structure is indeed a simple tree.
Moreover, as long as the structure is indeed a tree, and the menus
(see below) are correctly written in each parent node naming its child
nodes, the Prev/Next/Up node pointers are not needed at all, because
'makeinfo' will deduce them automatically, and also validate the
document structure as a nice bonus.

As for menus, they provide one more degree of freedom for arranging a
manual in a non-tree structure: each menu item is a link to another
node, and can in general lead anywhere, including to another manual.

AFAIK, to do that in Org, you need to create a link; the outline-style
document you show above won't cut it.  IOW, Org requires you in that
case to insert links very similar to Texinfo menus.

As with node pointers, the Emacs Texinfo mode commands can
automatically create the menus as well, again on the assumption that
the section nodes immediately following a chapter node are child nodes
of that chapter, recursively.  Thus, in simple tree-like documents,
generating these menus is a keystroke away.

So, as you see, both Org and Texinfo solve the same problems, and they
do that in similar, albeit different, ways.  I see no advantage to Org
methods here, as long as you consider Texinfo together with its Emacs
support.  On the contrary, I see an advantage to Texinfo, because it
can easily express non-tree structured documents, something that in
Org is not so easy, perhaps even not easy at all.



  reply	other threads:[~2014-12-17 15:39 UTC|newest]

Thread overview: 492+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-12-05 12:35 On being web-friendly and why info must die Eric S. Raymond
2014-12-05 12:46 ` joakim
2014-12-05 13:05   ` Eric S. Raymond
2014-12-05 13:34 ` David Kastrup
2014-12-05 13:57 ` Rasmus
2014-12-05 14:08   ` joakim
2014-12-05 14:15     ` Rasmus
2014-12-05 14:01 ` Phillip Lord
2014-12-05 15:46   ` Eli Zaretskii
2014-12-05 15:55     ` Lars Magne Ingebrigtsen
2014-12-05 16:01       ` Lars Magne Ingebrigtsen
2014-12-08 12:08     ` Phillip Lord
2014-12-08 12:47       ` David Kastrup
2014-12-05 14:34 ` Alan Mackenzie
2014-12-05 17:45   ` Eric S. Raymond
2014-12-05 14:56 ` Ivan Shmakov
2014-12-05 18:12   ` Stefan Monnier
2014-12-05 19:10     ` Ivan Shmakov
2014-12-05 20:26     ` Eli Zaretskii
2014-12-06  3:02       ` Lars Magne Ingebrigtsen
2014-12-06  3:20         ` Lennart Borgman
2014-12-06  7:33           ` Eli Zaretskii
2014-12-05 21:43     ` David Kastrup
2014-12-05 15:07 ` Stefan Monnier
2014-12-05 17:52   ` Eric S. Raymond
2014-12-05 19:23     ` Stefan Monnier
2014-12-05 19:38       ` Eric S. Raymond
2014-12-05 20:24         ` Eli Zaretskii
2014-12-05 21:32         ` David Kastrup
2014-12-06 10:50           ` Steinar Bang
2014-12-06  4:35         ` Stefan Monnier
2014-12-05 18:12   ` Stefan Monnier
2014-12-05 15:43 ` Eli Zaretskii
2014-12-05 17:55   ` Eric S. Raymond
2014-12-05 20:00     ` Eli Zaretskii
2014-12-05 21:34     ` David Kastrup
2014-12-05 21:47       ` Eric S. Raymond
2014-12-05 18:12   ` Glenn Morris
2014-12-05 19:18     ` Rüdiger Sonderfeld
2014-12-05 20:17       ` Eli Zaretskii
2014-12-05 20:41         ` Óscar Fuentes
2014-12-05 22:45           ` Eli Zaretskii
2014-12-07  4:02         ` Thien-Thi Nguyen
2014-12-05 15:54 ` Rüdiger Sonderfeld
2014-12-05 16:02   ` David Kastrup
2014-12-05 17:12     ` Rüdiger Sonderfeld
2014-12-05 18:27       ` Stefan Monnier
2014-12-05 19:54       ` Eli Zaretskii
2014-12-05 21:23       ` David Kastrup
2014-12-05 17:58   ` Eric S. Raymond
2014-12-05 18:08     ` Óscar Fuentes
2014-12-06 12:04       ` Richard Stallman
2014-12-06 12:35         ` Achim Gratz
2014-12-06 15:46         ` Steinar Bang
2014-12-07  9:21           ` Richard Stallman
2014-12-07 11:23             ` Steinar Bang
2014-12-07 11:34               ` Ivan Shmakov
2014-12-07 12:54                 ` Steinar Bang
2014-12-08  0:25                   ` Richard Stallman
2014-12-08  0:42                     ` Alexis
2014-12-08 20:59                       ` Richard Stallman
2014-12-08 21:21                         ` Steinar Bang
2014-12-09 11:01                           ` Richard Stallman
2014-12-08  9:11                     ` Steinar Bang
2014-12-09 19:51                     ` Karl Fogel
2014-12-10  8:24                       ` Ulrich Mueller
2014-12-10  8:47                         ` Eric S. Raymond
2014-12-08  0:25                   ` Alternative input formats Richard Stallman
2014-12-08  1:49                     ` Rasmus
2014-12-08 20:59                       ` Richard Stallman
2014-12-08  2:38                     ` Stefan Monnier
2014-12-08  3:42                       ` Stephen J. Turnbull
2014-12-08  7:27                         ` Ivan Shmakov
2014-12-08 14:48                         ` Stefan Monnier
2014-12-08 20:59                         ` Richard Stallman
2014-12-09  4:24                         ` Mike Gerwitz
2014-12-09  7:52                           ` Stephen J. Turnbull
2014-12-08 12:15                       ` joakim
2014-12-08 14:42                         ` Stefan Monnier
2014-12-11 14:33                     ` Ludovic Courtès
2014-12-11 20:46                       ` Grim Schjetne
2014-12-12 16:41                       ` Richard Stallman
2014-12-12 20:51                         ` Info replacement? Ludovic Courtès
2014-12-13 12:48                           ` Richard Stallman
2014-12-07 14:20                 ` On being web-friendly and why info must die Rasmus
2014-12-06 16:43         ` Rasmus
2014-12-07  2:33           ` Jonathan Leech-Pepin
2014-12-07  9:21           ` Richard Stallman
2014-12-07 12:24             ` Steinar Bang
2014-12-10  8:24               ` Richard Stallman
2014-12-10 10:08                 ` Rasmus
2014-12-11 12:54                   ` Richard Stallman
2014-12-10 10:48                 ` Steinar Bang
2014-12-10 11:44                   ` Lars Magne Ingebrigtsen
2014-12-10 11:47                     ` Lars Magne Ingebrigtsen
2014-12-10 15:18                     ` Steinar Bang
2014-12-10 14:20                   ` Stefan Monnier
2014-12-11 12:56                   ` Richard Stallman
2014-12-10 18:06                 ` Kyle Andrews
2014-12-10 19:18                   ` Jay Belanger
2014-12-10 19:36                     ` Phillip Lord
2014-12-11 19:49                   ` Richard Stallman
2014-12-12 11:26                     ` Phillip Lord
2014-12-12 15:09                       ` David Engster
2014-12-12 18:51                         ` Achim Gratz
2014-12-12 19:44                           ` David Engster
2014-12-13  1:47                       ` Richard Stallman
2014-12-15 16:47                         ` Phillip Lord
2014-12-15 17:49                           ` Eli Zaretskii
2014-12-17  3:30                           ` Richard Stallman
2014-12-17 12:03                             ` Phillip Lord
2014-12-17 15:39                               ` Eli Zaretskii [this message]
2014-12-19 20:06                                 ` Phillip Lord
2014-12-18 11:24                               ` Richard Stallman
2014-12-18 14:14                                 ` Stefan Monnier
2014-12-18 15:50                                   ` Eli Zaretskii
2014-12-19  7:18                                   ` Richard Stallman
2014-12-19 20:22                                   ` Phillip Lord
2014-12-19 20:16                                 ` Phillip Lord
2014-12-21 10:55                                   ` Richard Stallman
2014-12-07 14:11             ` Rasmus
2014-12-05 18:58     ` Christopher Allan Webber
2014-12-05 19:36       ` Eric S. Raymond
2014-12-05 20:23         ` Eli Zaretskii
2014-12-08 12:33           ` Phillip Lord
2014-12-08 16:08             ` Eli Zaretskii
2014-12-08 16:29               ` Ted Zlatanov
2014-12-08 17:00                 ` Eli Zaretskii
2014-12-08 18:00                   ` Ted Zlatanov
2014-12-08 18:08                     ` Lars Magne Ingebrigtsen
2014-12-08 18:25                       ` Eli Zaretskii
2014-12-08 18:57                         ` Stefan Monnier
2014-12-08 20:42                           ` Eli Zaretskii
2014-12-08 20:27                     ` David Kastrup
2014-12-09  1:14                       ` Ted Zlatanov
2014-12-09  1:26                         ` David Kastrup
2014-12-09  1:31                           ` Lars Magne Ingebrigtsen
2014-12-09  2:18                             ` David Kastrup
2014-12-09 12:43                               ` Ted Zlatanov
2014-12-09 12:58                                 ` David Kastrup
2014-12-09 13:04                                 ` Jay Belanger
2014-12-09 19:27                               ` Ivan Shmakov
2014-12-10  9:09                                 ` David Kastrup
2014-12-09  8:11                             ` Thierry Volpiatto
2014-12-09  9:03                               ` David Kastrup
2014-12-09 16:59                             ` Eli Zaretskii
2014-12-08 17:14                 ` Eric S. Raymond
2014-12-08 17:41                   ` David Kastrup
2014-12-08 17:52                   ` Eli Zaretskii
2014-12-08 19:00                 ` Steinar Bang
2014-12-08 17:16               ` Alan Mackenzie
2014-12-05 21:29         ` Christopher Allan Webber
2014-12-06  9:09           ` David Kastrup
2014-12-05 21:40         ` David Kastrup
2014-12-05 21:51           ` Eric S. Raymond
2014-12-05 22:47             ` Paul Eggert
2014-12-05 23:15               ` Eric S. Raymond
2014-12-06  8:20               ` Eli Zaretskii
2014-12-06 10:24                 ` Paul Eggert
2014-12-06 10:44                   ` Eli Zaretskii
2014-12-06 10:49                   ` Eric S. Raymond
2014-12-06 11:01                     ` Eli Zaretskii
2014-12-06 22:35                   ` Stefan Monnier
2014-12-07  8:47                     ` David Kastrup
2014-12-08  1:30                     ` Paul Eggert
2014-12-08  2:30                       ` Stefan Monnier
2014-12-08 19:30                         ` Paul Eggert
2014-12-08 20:17                           ` David Engster
2014-12-08 20:32                             ` David Kastrup
2014-12-09  7:38                               ` Paul Eggert
2014-12-09  8:57                                 ` David Kastrup
2014-12-09 21:54                                   ` Paul Eggert
2014-12-09 22:00                                     ` Lars Magne Ingebrigtsen
2014-12-09 22:30                                       ` Paul Eggert
2014-12-10  8:28                                         ` Lars Magne Ingebrigtsen
2014-12-10  9:11                                           ` David Kastrup
2014-12-10 16:11                                           ` Eli Zaretskii
2014-12-10 17:09                                             ` Paul Eggert
2014-12-10 18:04                                               ` Eli Zaretskii
2014-12-10 19:12                                                 ` Paul Eggert
2014-12-10 17:32                                           ` Stephen Leake
2014-12-10  9:40                                       ` Stephen Leake
2014-12-10 16:20                                         ` Eli Zaretskii
2014-12-10  9:01                                     ` David Kastrup
2014-12-10 19:09                                       ` Paul Eggert
2014-12-10 19:18                                         ` Óscar Fuentes
2014-12-10 19:30                                           ` Paul Eggert
2014-12-10 19:47                                             ` Óscar Fuentes
2014-12-10 20:51                                               ` Eli Zaretskii
2014-12-10 21:43                                                 ` Óscar Fuentes
2014-12-10 22:20                                               ` Paul Eggert
2014-12-10 23:06                                                 ` Óscar Fuentes
2014-12-10 23:49                                                   ` Paul Eggert
2014-12-11  8:54                                                     ` David Kastrup
2014-12-11 11:44                                                       ` Lennart Borgman
2014-12-11 11:52                                                         ` David Kastrup
2014-12-11 12:07                                                           ` Lennart Borgman
2014-12-11 12:40                                                             ` David Kastrup
2014-12-11 16:14                                                             ` Eli Zaretskii
2014-12-11 16:17                                                               ` Lennart Borgman
2014-12-11 11:50                                                       ` Phillip Lord
2014-12-11 11:55                                                         ` David Kastrup
2014-12-11 12:41                                                           ` Phillip Lord
2014-12-11 13:45                                                             ` David Kastrup
2014-12-11 14:44                                                               ` Phillip Lord
2014-12-11 15:07                                                                 ` David Kastrup
2014-12-11 16:12                                                         ` Eli Zaretskii
2014-12-11 17:40                                                     ` Eli Zaretskii
2014-12-11 18:33                                                       ` Achim Gratz
2014-12-12 16:41                                                         ` Richard Stallman
2014-12-12 19:02                                                           ` Achim Gratz
2014-12-13 12:46                                                             ` Richard Stallman
2014-12-13 21:18                                                               ` Achim Gratz
2014-12-15  8:38                                                                 ` Richard Stallman
2014-12-15 17:58                                                                   ` Achim Gratz
2014-12-16 11:34                                                                     ` Phillip Lord
2014-12-17  3:30                                                                     ` Richard Stallman
2014-12-17  4:29                                                                       ` Yuri Khan
2014-12-17 15:45                                                                         ` Richard Stallman
2014-12-17 17:51                                                                       ` Achim Gratz
2014-12-21 10:55                                                                         ` Richard Stallman
2014-12-15  8:39                                                                 ` Richard Stallman
2014-12-15 17:55                                                                   ` Achim Gratz
2014-12-17  3:30                                                                     ` Richard Stallman
2014-12-17  9:22                                                                       ` Alan Mackenzie
2014-12-17  9:54                                                                         ` Stephen J. Turnbull
2014-12-17 15:45                                                                         ` Richard Stallman
2014-12-17 17:55                                                                       ` Achim Gratz
2014-12-17 18:19                                                                         ` David Kastrup
2014-12-11 17:40                                                   ` Eli Zaretskii
2014-12-12  1:05                                                     ` Stephen J. Turnbull
2014-12-12  7:56                                                       ` Eli Zaretskii
2014-12-11 19:49                                                   ` Richard Stallman
2014-12-11 22:51                                                     ` Lennart Borgman
2014-12-12 16:42                                                       ` Richard Stallman
2014-12-10  9:38                                 ` Stephen Leake
2014-12-10 19:02                                   ` Paul Eggert
2014-12-09  7:29                             ` Paul Eggert
2014-12-08 21:41                           ` Stefan Monnier
2014-12-08 23:39                             ` chad
2014-12-09  2:19                               ` Stefan Monnier
2014-12-09 17:04                                 ` Eli Zaretskii
2014-12-09 17:28                                   ` David Kastrup
2014-12-09 17:39                                     ` Eli Zaretskii
2014-12-09 19:50                                       ` andres.ramirez
2014-12-09 20:03                                         ` Eli Zaretskii
2014-12-09  3:43                               ` Eli Zaretskii
2014-12-09  7:29                             ` Paul Eggert
2014-12-09 17:03                               ` Stefan Monnier
2014-12-08  3:51                       ` Eli Zaretskii
2014-12-06  6:51             ` David Kastrup
2014-12-07  9:20               ` Richard Stallman
2014-12-06 10:31         ` Steinar Bang
2014-12-06 10:54           ` Eric S. Raymond
2014-12-06 12:19             ` Eli Zaretskii
2014-12-05 18:39 ` Christopher Allan Webber
2014-12-05 19:09   ` Eric S. Raymond
2014-12-05 20:13     ` Eli Zaretskii
2014-12-05 20:53       ` Eric S. Raymond
2014-12-05 21:09         ` Romain Francoise
2014-12-05 21:18           ` Eric S. Raymond
2014-12-05 21:26             ` having heterogenous doc (was Re: On being web-friendly and why info must die) Nic Ferrier
2014-12-06  9:01               ` David Kastrup
2014-12-05 21:47         ` On being web-friendly and why info must die David Kastrup
2014-12-05 22:39           ` Eric S. Raymond
2014-12-05 23:01             ` Eli Zaretskii
2014-12-06  9:19             ` David Kastrup
2014-12-06 10:40               ` Steinar Bang
2014-12-05 22:46         ` Eli Zaretskii
2014-12-06 12:06           ` Richard Stallman
2014-12-06 12:16             ` James Fuller
2014-12-05 21:13     ` Karl Fogel
2014-12-05 21:21       ` Eric S. Raymond
2014-12-05 22:00         ` Christopher Allan Webber
2014-12-05 22:23           ` Óscar Fuentes
2014-12-05 23:18             ` Christopher Allan Webber
2014-12-05 23:31               ` Óscar Fuentes
2014-12-06  8:13                 ` Fabrice Niessen
2014-12-06  9:41               ` Achim Gratz
2014-12-05 22:48           ` Drew Adams
2014-12-06  9:30           ` David Kastrup
2014-12-06 20:37             ` Christopher Allan Webber
2014-12-06 21:44               ` David Kastrup
2014-12-05 21:49       ` David Kastrup
2014-12-05 22:02         ` Drew Adams
2014-12-06  4:28     ` Stefan Monnier
2014-12-06  6:10       ` Eric S. Raymond
2014-12-06  7:56         ` Eli Zaretskii
2014-12-06 11:03           ` Eric S. Raymond
2014-12-06 11:18             ` David Kastrup
2014-12-06 12:13             ` Eli Zaretskii
2014-12-06 13:02               ` Ivan Shmakov
2014-12-06 19:06             ` Stephen Leake
2014-12-06 19:39               ` Eli Zaretskii
2014-12-06 19:53               ` David Kastrup
2014-12-07 22:50                 ` Stephen Leake
2014-12-07  9:20             ` Richard Stallman
2014-12-07  9:54               ` David Kastrup
2014-12-07  9:20             ` Richard Stallman
2014-12-07  9:20           ` Richard Stallman
2014-12-07  9:57             ` David Kastrup
2014-12-07 10:27             ` Info and HTML Ivan Shmakov
2014-12-26 17:40               ` bug#19445: eww-up-url: no-op, due to a typo in eww-handle-link Ivan Shmakov
2014-12-27  2:07                 ` Stefan Monnier
2014-12-28 13:55                 ` Lars Ingebrigtsen
2014-12-06  9:48         ` On being web-friendly and why info must die David Kastrup
2014-12-06 11:50           ` Eric S. Raymond
2014-12-06 12:13             ` David Kastrup
2014-12-06 16:44           ` Drew Adams
2014-12-06 17:25             ` David Kastrup
2014-12-06 18:00               ` Drew Adams
2014-12-06 18:38                 ` David Kastrup
2014-12-06 19:41                   ` Drew Adams
2014-12-07 22:49                   ` Stephen Leake
2014-12-21  0:29             ` Getting to online manuals from Info [was: On being web-friendly...] Drew Adams
2014-12-06 22:26         ` On being web-friendly and why info must die Stefan Monnier
2014-12-07  8:38           ` David Kastrup
2014-12-07  9:23             ` Stephen J. Turnbull
2014-12-07  9:37               ` David Kastrup
2014-12-07 10:42                 ` Info and HTML Ivan Shmakov
2014-12-06  7:35       ` On being web-friendly and why info must die Eli Zaretskii
2014-12-08 13:21 ` Filipp Gunbin
2014-12-08 14:21   ` Tom
2014-12-08 14:31     ` Eric S. Raymond
2014-12-08 16:08     ` Stefan Monnier
2014-12-08 17:09       ` David Kastrup
2014-12-08 18:29         ` Stefan Monnier
2014-12-08 18:54           ` David Kastrup
2014-12-08 20:32             ` Lars Magne Ingebrigtsen
2014-12-08 20:37               ` David Kastrup
2014-12-08 16:23     ` Eli Zaretskii
2014-12-08 18:38       ` Paul Eggert
2014-12-08 16:39     ` Filipp Gunbin
2014-12-09 11:00     ` Richard Stallman
2014-12-11 14:27 ` Ludovic Courtès
2014-12-11 14:38   ` Ted Zlatanov
2014-12-11 14:55   ` Phillip Lord
2014-12-11 15:23     ` David Kastrup
2014-12-11 15:52       ` Lennart Borgman
2014-12-11 16:10         ` David Kastrup
2014-12-11 16:53     ` Ludovic Courtès
2014-12-12  4:01       ` Paul Eggert
2014-12-12  8:07         ` Ludovic Courtès
2014-12-12  9:26           ` Steinar Bang
2014-12-12 11:20           ` Phillip Lord
2014-12-12 11:32             ` David Kastrup
2014-12-13  1:47               ` Richard Stallman
2014-12-12  9:58         ` David Kastrup
2014-12-12 10:24           ` Eric S. Raymond
2014-12-12 10:40             ` David Kastrup
2014-12-12 14:09               ` Correspondence between web-pages and Info-pages Stefan Monnier
2014-12-12 14:34                 ` David Kastrup
2014-12-12 16:31                   ` Stefan Monnier
2014-12-12 15:09                 ` Drew Adams
2014-12-30 11:17                 ` Kelly Dean
2014-12-30 15:43                   ` Drew Adams
2015-01-01  4:20                     ` Kelly Dean
2014-12-30 16:08                   ` Eli Zaretskii
2015-01-01  4:21                     ` Kelly Dean
2014-12-30 16:55                   ` Stefan Monnier
2015-01-01  4:24                     ` Kelly Dean
2015-01-01 10:20                       ` chad
2015-01-01 10:38                         ` Kelly Dean
2015-01-01 20:00                           ` chad
2015-01-02 19:08                             ` Kelly Dean
2015-01-02 23:24                               ` Richard Stallman
2015-01-03  2:40                                 ` Stefan Monnier
2015-01-03  8:15                                   ` Kelly Dean
2015-01-04  2:17                                     ` Stefan Monnier
2015-01-03 10:34                                   ` Nic Ferrier
2015-01-03  8:14                                 ` Kelly Dean
2015-01-03 15:48                                   ` Richard Stallman
2015-01-03 15:48                                   ` Richard Stallman
2015-01-04  6:13                                     ` Kelly Dean
2015-01-04 13:50                                       ` Stefan Monnier
2015-01-04 14:50                                         ` Nic Ferrier
2015-01-05 17:51                                         ` Richard Stallman
2015-01-06  2:17                                           ` Stefan Monnier
2015-01-07  4:26                                             ` Richard Stallman
2015-01-07  4:46                                               ` Stefan Monnier
2015-01-07 19:26                                                 ` Richard Stallman
2015-01-07 20:16                                                   ` Stefan Monnier
2015-01-08  2:45                                                     ` Richard Stallman
2015-01-08  3:25                                                       ` Stefan Monnier
2015-01-05 17:50                                       ` Richard Stallman
2015-01-06  6:44                                         ` Kelly Dean
2015-01-07  4:27                                           ` Richard Stallman
2015-01-08  9:30                                             ` Kelly Dean
2015-01-08 13:17                                               ` Ivan Shmakov
2014-12-12 11:19       ` On being web-friendly and why info must die Phillip Lord
2014-12-12 12:45         ` martin rudalics
2014-12-12 13:38           ` Phillip Lord
2014-12-12 14:10             ` martin rudalics
2014-12-12 14:50               ` Phillip Lord
2014-12-12 15:04                 ` Eli Zaretskii
2014-12-12 15:27                   ` David Kastrup
2014-12-12 17:19                 ` martin rudalics
2014-12-13 12:47             ` Richard Stallman
2014-12-15 16:54               ` Phillip Lord
2014-12-15 17:50                 ` Eli Zaretskii
2014-12-17  3:30                 ` Richard Stallman
2014-12-17  9:08                   ` Steinar Bang
2014-12-12 14:46         ` Eli Zaretskii
2014-12-12 20:09         ` Ludovic Courtès
2014-12-12 16:41       ` Richard Stallman
2014-12-12 20:21         ` Ludovic Courtès
2014-12-13 12:48           ` Richard Stallman
2014-12-13 14:34             ` Ludovic Courtès
2014-12-14  9:07               ` Richard Stallman
2014-12-14 13:40                 ` Stefan Monnier
2014-12-14 14:10                   ` Achim Gratz
2014-12-14 16:53                   ` Yuri Khan
2014-12-15  8:39                   ` Richard Stallman
2014-12-15 16:46                   ` Phillip Lord
2014-12-14 14:25             ` Stephen J. Turnbull
2014-12-14 18:34               ` chad
2014-12-15  8:39               ` Richard Stallman
2014-12-15 12:26                 ` Stephen J. Turnbull
2014-12-15 12:32                   ` David Kastrup
2014-12-15 17:11                     ` Stephen J. Turnbull
2014-12-15 17:15                       ` David Kastrup
2014-12-15 17:33                         ` Stephen J. Turnbull
2014-12-15 17:49                           ` David Kastrup
2014-12-15 18:27                             ` David Kastrup
2014-12-17  3:30                       ` Richard Stallman
2014-12-16  5:20                   ` Richard Stallman
2014-12-16 15:57                     ` Ludovic Courtès
2014-12-17  9:07                       ` Thien-Thi Nguyen
2014-12-17 15:44                       ` Richard Stallman
2014-12-17 22:40                         ` Thien-Thi Nguyen
2014-12-21 10:56                           ` Richard Stallman
2014-12-16 19:17                     ` URIs for GNU documentation Ivan Shmakov
2014-12-21 10:57                       ` Richard Stallman
2014-12-15 13:58                 ` On being web-friendly and why info must die Stefan Monnier
2014-12-17  3:30                   ` Richard Stallman
2014-12-17  9:02                     ` Steinar Bang
2014-12-17 15:46                       ` Richard Stallman
2014-12-17 13:57                     ` Stefan Monnier
2014-12-17 14:11                       ` Phillip Lord
2014-12-11 15:57   ` Lennart Borgman
2014-12-11 16:12     ` David Kastrup
2014-12-11 16:20       ` Lennart Borgman
2014-12-11 16:36         ` David Kastrup
2014-12-11 16:43           ` Lennart Borgman
2014-12-11 17:20             ` David Kastrup
2014-12-12  1:06               ` Lennart Borgman
2014-12-12  9:56                 ` David Kastrup
2014-12-12 12:03                   ` Lennart Borgman
2014-12-12 14:05                     ` David Kastrup
2014-12-12 10:57                 ` Phillip Lord
2014-12-12 11:54                   ` Lennart Borgman
2014-12-12 13:36                     ` Phillip Lord
2014-12-12 14:18                       ` Lennart Borgman
2014-12-12 14:44                         ` David Kastrup
2014-12-12 15:11                           ` Lennart Borgman
2014-12-12 14:46                         ` Phillip Lord
2014-12-12 14:52                           ` David Kastrup
2014-12-13  7:37                             ` Alexis
2014-12-12 14:59                           ` Eli Zaretskii
2014-12-12 15:16                             ` Lennart Borgman
2014-12-12 15:08                         ` Drew Adams
2014-12-13  1:47                       ` Richard Stallman
2014-12-13 21:14                         ` chad
2014-12-14 14:20                           ` Stephen J. Turnbull
2014-12-14 18:46                             ` chad
2014-12-15  1:32                               ` Stephen J. Turnbull
2014-12-15 20:23                                 ` chad
2014-12-16  5:31                                   ` Stephen J. Turnbull
2014-12-17 15:43                                     ` Richard Stallman
2014-12-16  5:19                                 ` Richard Stallman
2014-12-14 22:33                             ` Stefan Monnier
2014-12-15  1:40                               ` Stephen J. Turnbull
2014-12-15  8:15                                 ` David Engster
2014-12-15  8:39                             ` Richard Stallman
2014-12-15 12:12                               ` Stephen J. Turnbull
2014-12-16  5:20                                 ` Richard Stallman
2014-12-16  7:41                                   ` On beincg " Stephen J. Turnbull
2014-12-15 15:51                               ` On being " Ivan Andrus
2014-12-17  3:31                                 ` Richard Stallman
2014-12-15  8:38                           ` Richard Stallman
2014-12-12 16:24                 ` Tom
2014-12-12 17:30                   ` Lennart Borgman
2014-12-13  1:47                   ` Richard Stallman
2014-12-13 12:13                     ` Nic Ferrier
2014-12-14  9:07                       ` Richard Stallman
2014-12-14 10:05                         ` Achim Gratz
2014-12-12 16:41     ` Richard Stallman
2014-12-15 17:34       ` Steinar Bang
2014-12-17  3:30         ` Richard Stallman
2014-12-18 23:47       ` Lennart Borgman
2014-12-20  7:54         ` Richard Stallman
  -- strict thread matches above, loose matches on Subject: below --
2014-12-12 11:22 Pádraig Brady

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=8361dawajv.fsf@gnu.org \
    --to=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=kyle.c.andrews@gmail.com \
    --cc=phillip.lord@newcastle.ac.uk \
    --cc=rms@gnu.org \
    --cc=sb@dod.no \
    /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.
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.