public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Decoupling citeproc and highlighting-kate from pandoc
@ 2013-08-25 19:15 John MacFarlane
       [not found] ` <20130825191545.GA80583-9Rnp8PDaXcZ2EAH53EmH34tHsfhOvSUSZkel5v8DVj8@public.gmane.org>
  0 siblings, 1 reply; 283+ messages in thread
From: John MacFarlane @ 2013-08-25 19:15 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Pandoc currently includes built-in support for citation processing
(using citeproc-hs) and syntax highlighting (using highlighting-kate).
This is not ideal, since many users don't use either of these features,
and few, I would imagine, use both.  Both citeproc-hs and
highlighting-kate are big libraries, which bloat the pandoc binary.

So I am moving towards decoupling these components from core pandoc.
As noted earlier, I've added a --filter flag to pandoc, which makes it
easy to run JSON filters.  So, to process citations, you'll now do

    pandoc --filter pandoc-citeproc input.txt

and specify the bibliography and csl file in the document's metadata.
Similarly, to highlight source code using highlighting kate, you'll do

    pandoc --filter pandoc-highlight input.txt

(Highlighting style will be specified in the metadata rather than on
the command line.) Both pandoc-citeproc and pandoc-highlight will be
optional add-ons. The packages that provide them will also provide
Haskell libraries for processing citations and doing code highlighting
in pandoc documents, for those who use pandoc as a library.

I have already made the citations change; I have not yet made the
highlighting change, and could still back down if there is a lot of
protest.  The main drawback I can see is that performance will be a
*little* worse -- but the difference is pretty negligible.  The
command line will also be a bit longer for those who use highlighting.
But I think this change makes a lot of sense.  It will also make it
easier for users to use their own highlighting libraries; they just need
to write a simple filter.

Another nice feature I'm adding is inline references.  Instead of
putting your bibliographic references in an external file, you can
now include them directly in the document, in a YAML metadata block.
(This can occur at the end of the document if you like.)
This makes the document more self-contained.  The YAML format is
basically a YAML representation of the JSON format used by citeproc-js.
Here's an example:

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Some claim [fenner12a].

---
csl: tests/mhra.csl
references:
- id: fenner12a
  title: One-click science marketing
  author:
   family: Fenner
   given: [Martin]
  container-title: Nature Materials
  volume: 11
  url: 'http://dx.doi.org/10.1038/nmat3283'
  doi: '10.1038/nmat3283'
  issue: 4
  publisher: Nature Publishing Group
  page: 261-263
  type: article-journal
  issued:
    year: 2012
    month: 3
...
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Of course, you can also store the YAML bibliography in a separate file,
and provide it to pandoc on the command line with the main file.

The pandoc-citations package will include an executable, biblio2yaml,
that translates from common bibliographic formats (e.g. bibtex) into
this YAML format.

I'm pretty excited about these changes, which I would like to include
in the 1.12 release.  The release has been held up waiting for Andrea
to release citeproc-hs.  I haven't heard from Andrea in a long time, so
I now have a contingency plan.  I will simply include the code from
citeproc-hs, including a couple of bug fixes, in the pandoc-citations
package.  When Andrea comes back, as I hope he does, I'll remove this
and depend once more on citeproc-hs.  But at least this will let us
go ahead with the release.

If you want to play with the new pandoc-citations stuff, it's on github:
http://github.com/jgm/pandoc-citations
It assumes you've installed a very recent dev version of pandoc and
pandoc-types.

John


^ permalink raw reply	[flat|nested] 283+ messages in thread
* Re: Decoupling citeproc and highlighting-kate from pandoc
@ 2013-09-09 21:10 John MacFarlane
  0 siblings, 0 replies; 283+ messages in thread
From: John MacFarlane @ 2013-09-09 21:10 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

You want

[@fenner12a]

not

[fenner12a]

+++ Joseph Reagle [Sep 09 13 16:54 ]:
> On 09/09/2013 04:42 PM, Joseph Reagle wrote:
> > Could you attach a minimal example and the exact command line?
> 
> For instance, with the attached, I do know the filter is kicking in
> (because it throws a file not found error if I don't specify the '.csl'
> extension) but I get no bibliography...? (I'm using the
> chicago-author-date.csl from git tests).
> 
> ~~~~
> 
> urd:~/data/2web/reagle.org/joseph/2013/test$ pandoc -s --filter
> pandoc-citeproc small.md
> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
> <html xmlns="http://www.w3.org/1999/xhtml">
> <head>
>   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
>   <meta http-equiv="Content-Style-Type" content="text/css" />
>   <meta name="generator" content="pandoc" />
>   <title>Test</title>
>   <style type="text/css">code{white-space: pre;}</style>
> </head>
> <body>
> <div id="header">
> <h1 class="title">Test</h1>
> </div>
> <p>Some claim [fenner12a].</p>
> <div class="references">
> <h1>References</h1>
> </div>
> </body>
> </html>
> 
> ~~~~
> 

> % Test
> 
> Some claim [fenner12a]. 
> 
> # References
> 
> --- 
> csl: chicago-author-date.csl
> references: 
> - id: fenner12a 
>   title: One-click science marketing 
>   author: 
>    family: Fenner 
>    given: [Martin] 
>   container-title: Nature Materials 
>   volume: 11 
>   url: 'http://dx.doi.org/10.1038/nmat3283' 
>   doi: '10.1038/nmat3283' 
>   issue: 4 
>   publisher: Nature Publishing Group 
>   page: 261-263 
>   type: article-journal 
>   issued: 
>     year: 2012 
>     month: 3 
> ---

----- End forwarded message -----


^ permalink raw reply	[flat|nested] 283+ messages in thread
* Re: Decoupling citeproc and highlighting-kate from pandoc
@ 2013-09-09 21:11 John MacFarlane
       [not found] ` <20130909211107.GD732-0VdLhd/A9Pm0ooXD8Eul3deFUF7NV0gRTVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
  0 siblings, 1 reply; 283+ messages in thread
From: John MacFarlane @ 2013-09-09 21:11 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

+++ Joseph Reagle [Sep 09 13 16:42 ]:
> On 08/25/2013 03:15 PM, John MacFarlane wrote:
> > Pandoc currently includes built-in support for citation processing
> > (using citeproc-hs) and syntax highlighting (using highlighting-kate).
> 
> I'm in a bit of a pickle, I need something after 1.11.1 for my slides,
> but haven't adapted to the new citation processing. Is there a coherent
> version of pandoc and its dependencies that supports reveal.js natively
> but is before the citation switch?

Yes.  Try the version before the citation switch.  You'll need to
install citeproc-hs from darcs.

> > and specify the bibliography and csl file in the document's metadata.
> 
> Is the '---' preceding a YAML section in your examples necessary to
> designate a metadata block?

Yes.

> Could you attach a minimal example and the exact command line?

Note, in the latest versions, you can use --bibliography and --csl
as before to specify these things, if you don't want to put them in
the document's metadata.   So your old workflow should work fine if
you just add '--filter pandoc-citeproc' to your command line, and
make sure you've installed pandoc-citeproc.


^ permalink raw reply	[flat|nested] 283+ messages in thread
[parent not found: <20130909210913.GB732@dhcp-128-32-252-11.lips.berkeley.edu>]

end of thread, other threads:[~2014-02-26 22:08 UTC | newest]

Thread overview: 283+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-25 19:15 Decoupling citeproc and highlighting-kate from pandoc John MacFarlane
     [not found] ` <20130825191545.GA80583-9Rnp8PDaXcZ2EAH53EmH34tHsfhOvSUSZkel5v8DVj8@public.gmane.org>
2013-08-26 15:23   ` Joseph Reagle
     [not found]     ` <521B730A.50901-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2013-08-27 12:16       ` BP Jonsson
2013-08-27 13:18   ` Nick Bart
     [not found]     ` <d479b8cf-95f2-4182-bc16-8dca53420eb8-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-08-27 13:53       ` John MacFarlane
     [not found]         ` <20130827135349.GB4394-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-08-27 15:46           ` John MacFarlane
2013-08-30 15:24           ` Nick Bart
2013-08-30 15:41   ` Bruce D'Arcus
     [not found]     ` <28ef090f-b33e-4fd1-91cb-5da1eadf386b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-08-30 16:56       ` Rintze Zelle
2013-08-30 19:36       ` Joseph Reagle
     [not found]         ` <5220F425.5050002-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2013-08-30 20:16           ` Jorge Peña
2013-08-31 14:19           ` Nick Bart
     [not found]             ` <b00f2f74-ae3a-4a4b-9f3e-a6ce2a5e5e04-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-08-31 15:23               ` John MacFarlane
     [not found]                 ` <20130831152309.GA39551-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-08-31 18:25                   ` Nick Bart
     [not found]                     ` <b423b3ba-5a81-4d16-aa32-83131b6c441b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-01  4:07                       ` Nick Bart
     [not found]                         ` <03d50535-8cba-4844-958d-2a8fc1ee77b1-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-02 15:57                           ` John MacFarlane
     [not found]                             ` <20130902155711.GB31156-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-02 18:43                               ` Matthias Hüning
2013-09-03  7:42                               ` Nick Bart
     [not found]                                 ` <4d09f924-b9ca-4f29-8c64-de355407a90a-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-03 11:54                                   ` Joseph Reagle
     [not found]                                     ` <5225CDE2.2090109-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2013-09-03 17:36                                       ` Nick Bart
2013-09-03 14:54                                   ` Bruce D'Arcus
     [not found]                                     ` <CAF-FPGNwUX9rSnJoBFbTp-od3nmJ6jo-i_=xh+DL1KEOL60RKw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-09-03 15:46                                       ` Nick Bart
     [not found]                                         ` <9703dae4-9816-4508-a1cd-8272c0c6ea0c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-03 15:56                                           ` Bruce D'Arcus
     [not found]                                             ` <CAF-FPGOjxF=8vDBOtL3RY5dRO-zetra3EXvddNgKZMf8tiEB-A-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-09-03 17:51                                               ` Nick Bart
     [not found]                                                 ` <1ae7a028-9095-4365-a874-179cabf6b702-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-03 17:53                                                   ` Bruce D'Arcus
2013-09-04 18:38                                                   ` Rintze Zelle
2013-09-03 20:44                                               ` Joseph Reagle
     [not found]                                                 ` <52264A45.3000909-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2013-09-03 21:07                                                   ` Bruce D'Arcus
2013-09-04  9:02                                                   ` Nick Bart
     [not found]                                                     ` <83ebfc01-27a8-4f45-a3f8-3ee4378e66e2-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-04 11:00                                                       ` Bruce D'Arcus
     [not found]                                                         ` <CAF-FPGOb+h48xYH9S04gNi-hZ3m7Hph9gdWLzBFcZHc6-qoUbw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-09-05  7:01                                                           ` Nick Bart
     [not found]                                                             ` <b1c9a0f2-11af-4e30-bb26-57cfb5503571-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-05  7:12                                                               ` Nick Bart
2013-09-03 15:20                                   ` John MacFarlane
     [not found]                                     ` <20130903152008.GC45840-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-07 17:16                                       ` John MacFarlane
     [not found]                                         ` <20130907171630.GA66328-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-11 17:38                                           ` Joseph Reagle
2013-09-12  8:57                                           ` Nick Bart
     [not found]                                             ` <fd109d63-2add-4956-b1f3-dbaf706634fb-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-12 18:19                                               ` John MacFarlane
2013-09-13  6:24                                               ` John MacFarlane
     [not found]                                                 ` <20130913062445.GA95508-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-13 14:26                                                   ` Nick Bart
     [not found]                                                     ` <b01350cd-72e7-49e5-aa50-6c25382376f6-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-13 14:36                                                       ` John MacFarlane
     [not found]                                                         ` <20130913143645.GF95716-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-13 15:34                                                           ` Nick Bart
2013-09-24 13:11                                                           ` Nick Bart
     [not found]                                                             ` <73c9fc49-d61e-457e-9304-cb42ca1ccac7-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-24 14:05                                                               ` Bruce D'Arcus
2013-09-25 16:36                                                               ` John MacFarlane
2013-09-25 17:25                                                               ` Joseph Reagle
2013-09-13 14:44                                                       ` Bruce D'Arcus
2013-09-27 18:26                                                       ` John MacFarlane
     [not found]                                                         ` <20130927182634.GA37542-0VdLhd/A9Pm0ooXD8Eul3deFUF7NV0gRTVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
2013-09-27 22:38                                                           ` Nick Bart
     [not found]                                                             ` <cfd2f13e-48f4-4b0e-8415-a68597649e17-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28  7:16                                                               ` John MacFarlane
     [not found]                                                                 ` <20130928071616.GA42338-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-28  7:40                                                                   ` John MacFarlane
     [not found]                                                                     ` <20130928074012.GA42449-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-28  8:43                                                                       ` Nick Bart
     [not found]                                                                         ` <35b0f493-82e9-486b-838d-09aa3b48a618-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28 17:52                                                                           ` John MacFarlane
     [not found]                                                                             ` <20130928175258.GA42972-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-28 18:35                                                                               ` John MacFarlane
     [not found]                                                                                 ` <20130928183516.GA43235-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-28 20:09                                                                                   ` Nick Bart
     [not found]                                                                                     ` <93ff8b26-a132-4da8-a75a-09924f725d34-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28 21:33                                                                                       ` John MacFarlane
2013-09-28 10:52                                                                       ` Nick Bart
     [not found]                                                                         ` <09c521a8-1f44-474b-8829-60dd95cf0f94-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28 17:56                                                                           ` John MacFarlane
2013-09-28 19:34                                                                           ` John MacFarlane
     [not found]                                                                             ` <20130928193409.GA45018-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-28 20:37                                                                               ` Nick Bart
     [not found]                                                                                 ` <a86067ec-6b4a-437b-b2f0-3ee666209dae-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28 21:34                                                                                   ` John MacFarlane
     [not found]                                                                                     ` <20130928213433.GB45256-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-28 22:19                                                                                       ` Nick Bart
     [not found]                                                                                         ` <605aad90-4967-42b9-8efe-0aa033c670da-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28 22:59                                                                                           ` John MacFarlane
     [not found]                                                                                             ` <20130928225947.GA45508-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-28 23:16                                                                                               ` Nick Bart
     [not found]                                                                                                 ` <b268960d-ddc1-4346-8535-f90124e1e890-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28 23:30                                                                                                   ` Nick Bart
     [not found]                                                                                                     ` <2e3d65a5-01f8-4be5-94b5-2346160886ac-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-28 23:48                                                                                                       ` Nick Bart
     [not found]                                                                                                         ` <ebae1a26-c6cb-44c4-add2-5dc57f620a4c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-29  1:25                                                                                                           ` John MacFarlane
     [not found]                                                                                                             ` <20130929012541.GC45785-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-29  1:41                                                                                                               ` John MacFarlane
     [not found]                                                                                                                 ` <20130929014129.GA45834-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-29 11:39                                                                                                                   ` Nick Bart
     [not found]                                                                                                                     ` <fd944048-488f-4d68-a27e-5db0f5d41723-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-29 14:49                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                         ` <20130929144959.GD1060-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-29 17:02                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                             ` <20130929170210.GA24069-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-29 20:33                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                 ` <2e05de82-6208-49bf-be01-1f5f710c89de-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-30  2:51                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                     ` <20130930025139.GA1405-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-09-30 15:48                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                         ` <e39a1944-d7c8-46d1-80ce-1ee66b8c12bd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-30 16:07                                                                                                                                           ` John MacFarlane
2013-09-30 18:59                                                                                                                                           ` Benct Philip jonsson
     [not found]                                                                                                                                             ` <5249C9FC.4010603-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-09-30 20:04                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                 ` <f61e532e-8d2b-4264-83ce-41e15ca2adea-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-30 21:31                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                     ` <66a61c32-a3b4-45c2-b548-442592eab56d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-01  2:49                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                         ` <20131001024928.GA24084-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-01  9:24                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                             ` <15bfac5e-d7df-476c-8a42-193962e6bca3-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-01 11:06                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                 ` <f93e4825-005b-42e0-85f1-e7964da2887d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-01 14:19                                                                                                                                                                   ` Nick Bart
2013-10-01 14:21                                                                                                                                                                   ` Nick Bart
2013-10-05  5:23                                                                                                                                                                   ` fiddlosopher
     [not found]                                                                                                                                                                     ` <d52d9518-9832-45c3-96a0-c3d5b9de3090-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-05  7:41                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                         ` <e590b84d-7a2f-40b7-9b4d-26d1644b8a53-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-05  9:32                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                             ` <967cb63f-a612-4ded-bc2b-6273c0239f68-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-06  0:58                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                 ` <20131006005856.GA89343-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-06  6:29                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                     ` <733d7104-44b1-440a-a386-ec356d2197bd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-07  4:43                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                         ` <20131007044345.GA41791-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-07  5:55                                                                                                                                                                                           ` John MacFarlane
2013-10-06 11:29                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                     ` <cc118a6c-260a-4ed1-9eb9-4f5dab8bb879-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-06 12:26                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                         ` <928cefbc-dcf7-411c-8dee-e555e7cfaf6f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-06 14:35                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                             ` <20131006143549.GC89520-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-06 15:11                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                 ` <bfbc1a45-3031-4f2e-bf7f-0c14537011bf-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-06 15:40                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                     ` <20131006154016.GE89729-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-06 15:47                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                         ` <20131006154747.GA89796-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-06 17:46                                                                                                                                                                                                           ` Nick Bart
2013-10-06 14:46                                                                                                                                                                                       ` John MacFarlane
2013-10-06  0:56                                                                                                                                                                           ` John MacFarlane
2013-10-05  5:19                                                                                                                                                               ` fiddlosopher
     [not found]                                                                                                                                                                 ` <30423993-afdf-4a47-bb2b-8ae27c6130b6-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-05 16:52                                                                                                                                                                   ` Bruce D'Arcus
     [not found]                                                                                                                                                                     ` <615c9846-d27b-4fa0-a549-40748f524a35-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-06  8:35                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                         ` <b717ff1f-ab65-4f1f-85b9-05b7b5bcb9b6-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-07  4:45                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                             ` <20131007044516.GB41791-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-07  6:15                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                 ` <a72be8d7-27fe-4560-ad38-739e4f1287d7-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-08  3:14                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                     ` <20131008031419.GA49273-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-08  6:25                                                                                                                                                                                       ` Nick Bart
2013-10-08  6:26                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                         ` <28779dd0-99a6-448c-8967-6d37bdba58ad-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-08  6:39                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                             ` <3e0e0fc9-ea6c-454e-a12a-5562d48c94cb-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-08 13:40                                                                                                                                                                                               ` John MacFarlane
2013-10-08 13:39                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                             ` <9910B96C-195A-4D16-B944-1A1314A94F7F-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-08 17:45                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                 ` <63edb53b-b03c-468a-a60b-6bba4777cbf4-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-08 18:10                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                     ` <20131008181040.GA15025-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-08 18:33                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                         ` <233c21c4-cff5-452d-8269-80981156bddc-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-08 18:56                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                             ` <20131008185602.GB21820-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-08 19:06                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                 ` <8470226a-c385-42bd-a6ba-71037729c707-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-08 20:49                                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                                     ` <20131008204913.GB26656-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-08 21:58                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                         ` <86ec8122-f24b-4251-a8f3-89953c0cf7a5-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-09  3:12                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                             ` <20131009031248.GA51945-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-09  4:04                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                 ` <20131009040446.GC51945-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-09  6:09                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                     ` <3892d517-a405-4c70-a9ab-0b7195d28203-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-09  7:07                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                         ` <b3d481a7-5937-41b5-a1a7-eb4706a57884-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-09  8:26                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                             ` <5689c697-743a-4bb4-a97b-be60c2ded766-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-09 19:57                                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                 ` <20131009195731.GA14633-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-09 20:31                                                                                                                                                                                                                                                   ` andrea rossato
     [not found]                                                                                                                                                                                                                                                     ` <87iox69ofc.fsf-46C4ZU908FJ9y4XLxYaG4V6hYfS7NtTn@public.gmane.org>
2013-10-09 23:37                                                                                                                                                                                                                                                       ` Nick Bart
2013-10-09 20:07                                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                                             ` <20131009200732.GB14633-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-09 20:41                                                                                                                                                                                                                                               ` andrea rossato
2013-10-08 19:25                                                                                                                                                                                                           ` Joseph Reagle
2013-10-07  6:24                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                 ` <31d1a9fa-e3d5-450a-af7c-89242e0bc0cd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-07  6:43                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                     ` <8858a440-482b-43fe-abc7-ca41409511e9-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-07 15:40                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                         ` <20131007154055.GA44833-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-07 19:32                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                             ` <e8741a5b-2bf7-45f4-8790-6d73011ea95f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-07 19:46                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                 ` <7b95017f-3db5-40eb-aecf-bf57a71e94e1-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-07 19:50                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                     ` <828e6e6d-708f-4722-b331-df029341bacc-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-08  2:39                                                                                                                                                                                                       ` John MacFarlane
2013-10-09 20:32                                                                                                                                                                                                       ` John MacFarlane
2013-10-08 18:27                                                                                                                                                                                                   ` Tillmann Rendel
2013-10-09 20:35                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                     ` <20131009203515.GB17209-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-10  0:00                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                         ` <100d2d3a-78ef-4daa-a23a-33acad3e0df3-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-10  0:38                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                             ` <20131010003851.GA24278-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-10  1:11                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                 ` <20131010011115.GA27831-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-10  4:40                                                                                                                                                                                                                   ` John MacFarlane
2013-10-10 11:14                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                     ` <162da1be-e24c-4b90-86ec-d10959146f42-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-10 17:00                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                         ` <20131010170041.GB5487-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-11  9:26                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                             ` <9f372a93-08e8-4565-83d0-b04caa1b8a8f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-12  4:37                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                 ` <20131012043715.GA89985-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-14  6:23                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                     ` <9247c44f-d639-4b7a-903b-96c02c0d4f8e-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-14  6:39                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                         ` <fbf636ef-d74c-44a6-8be7-69513f60042f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-15  2:56                                                                                                                                                                                                                                           ` John MacFarlane
2013-11-17  6:17                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                         ` <20131117061737.GA80492-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-11-18 12:14                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                             ` <941bbcaa-276e-40ec-bae6-baa209d26d30-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-18 15:01                                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                 ` <20131118150100.GC4963-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-11-18 17:05                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                     ` <4b28864c-fd8b-4215-9c6d-ba75185bf61d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-18 18:22                                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                         ` <20131118182226.GD21483-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-11-18 19:21                                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                                             ` <60857372-304b-4d5a-9868-f24516a5badb-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-19 20:06                                                                                                                                                                                                                                                               ` John MacFarlane
2013-11-20  4:46                                                                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                     ` <20131120044650.GA10228-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-11-20  6:56                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                         ` <8ba91205-1c5d-4944-9fc6-3dd3860ccfc1-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-20 17:19                                                                                                                                                                                                                                                           ` John MacFarlane
2013-12-06 10:26                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                         ` <c1b2e9fb-5ce7-44bc-aa96-f2f531cec906-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-12-06 10:57                                                                                                                                                                                                                                                           ` Nick Bart
2013-11-18 12:21                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                             ` <f5538813-bf05-4f74-9037-05f7439fe61e-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-18 12:28                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                 ` <d44c4d6e-f527-4b9f-8485-245e84c33325-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-20 18:02                                                                                                                                                                                                                                                   ` John MacFarlane
2013-10-12  5:23                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                 ` <20131012052333.GA93270-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-13 23:03                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                     ` <01c4f8e0-bcb6-4f43-a456-1b3194e68b01-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-14  0:56                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                         ` <20131014005601.GA30096-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-14  5:18                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                             ` <2a6dfa90-5eb4-42a2-b0df-ed51e1533e74-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-15  5:43                                                                                                                                                                                                                                               ` John MacFarlane
2013-10-15  6:06                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                         ` <20131015060638.GC10253-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-15 14:06                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                             ` <a6478e98-967e-4c44-9298-263435722095-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-15 14:12                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                 ` <7554cc47-919e-451a-aac1-78986fdedd71-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-16  3:03                                                                                                                                                                                                                                                   ` John MacFarlane
2013-10-16  1:32                                                                                                                                                                                                                                               ` John MacFarlane
2013-10-15 14:16                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                             ` <a1cb129e-221c-40bc-9431-617be8116006-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-15 14:30                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                 ` <818df23f-ff11-4357-824b-7b863c75332d-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-15 14:45                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                     ` <4bb3bb13-b90b-4204-90a6-78db9705262a-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-15 18:16                                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                         ` <20131015181630.GA28168-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-15 20:09                                                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                             ` <20131015200928.GA1809-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-16 11:18                                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                 ` <3a15c700-5397-4a0c-b97d-860fec8b4146-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-17  6:31                                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                     ` <1e21d06f-63e8-4ac8-83e9-ad03ee7b812b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-17  7:01                                                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                         ` <20131017070120.GA64966-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-18  6:59                                                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                             ` <01963ff0-a123-4dd3-bcd6-32a150e6828e-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-18  7:04                                                                                                                                                                                                                                                                               ` Nick Bart
2013-10-18 15:10                                                                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                 ` <20131018151010.GB74779-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-18 15:45                                                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                     ` <afd215e6-4482-4ce4-b6a4-2184a4c160f7-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-18 16:19                                                                                                                                                                                                                                                                                       ` Nick Bart
2013-11-23 23:40                                                                                                                                                                                                                                                                                         ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                         ` <259dcbfd-1596-4955-b2e6-f9b1532ed8a3-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-28  2:23                                                                                                                                                                                                                                                                                           ` John MacFarlane
2013-10-19  0:41                                                                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                         ` <20131019004115.GA18998-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-19  5:24                                                                                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                             ` <20131019052434.GA83531-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-19 11:45                                                                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                 ` <bcd8674d-af74-47ed-a088-7268152a4b6c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-19 14:19                                                                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                     ` <0a54dd61-a375-4bfa-8b80-8b1709ddec34-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-19 23:23                                                                                                                                                                                                                                                                                                       ` John MacFarlane
2013-10-22  1:33                                                                                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                         ` <20131022013305.GA71166-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-22  5:14                                                                                                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                             ` <20131022051454.GA80364-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-22  8:15                                                                                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                 ` <94195ec7-4de6-45b9-930e-30523ff04477-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-23 10:20                                                                                                                                                                                                                                                                                                                   ` Nick Bart
2013-10-25  3:30                                                                                                                                                                                                                                                                                                                   ` John MacFarlane
2013-10-25  5:37                                                                                                                                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                     ` <20131025053720.GA40082-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-25 10:33                                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                         ` <39973df3-822d-4f25-96b9-466a7ad669e9-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-25 17:17                                                                                                                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                             ` <20131025171704.GD41641-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-25 18:39                                                                                                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                 ` <5bd1f091-3114-4e1a-b477-20f1ed8c0777-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-25 21:38                                                                                                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                     ` <a88bfdf5-f8a2-4cde-b4d1-a7bcbfc54810-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-25 22:12                                                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                         ` <ec945e8b-2e50-4716-aefe-d7a7ccf792e0-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-26  3:12                                                                                                                                                                                                                                                                                                                                           ` John MacFarlane
2013-10-26  3:13                                                                                                                                                                                                                                                                                                                                       ` John MacFarlane
2013-10-28  3:30                                                                                                                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                         ` <20131028033052.GA12640-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-28 12:43                                                                                                                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                             ` <78a76dee-7c31-4323-8d66-21de3212d267-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-28 12:54                                                                                                                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                 ` <7b646c3e-be17-44f0-b56a-d49519e63b6c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-28 13:27                                                                                                                                                                                                                                                                                                                                                   ` Matthias Hüning
     [not found]                                                                                                                                                                                                                                                                                                                                                     ` <7efb5264-92d3-4970-8b52-88efb285ec69-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-28 15:02                                                                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                         ` <05de5fac-df12-454a-a771-98a96278ecbe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-28 19:11                                                                                                                                                                                                                                                                                                                                                           ` Matthias Hüning
2013-10-28 14:59                                                                                                                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                     ` <e4205d49-e559-428c-99e1-a090bfd9b00e-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-29 17:15                                                                                                                                                                                                                                                                                                                                                       ` John MacFarlane
2013-10-28 16:03                                                                                                                                                                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                                     ` <20131028160326.GA22220-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-28 19:00                                                                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                         ` <5c690247-2054-4198-87b3-92521dd489bb-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-29  4:36                                                                                                                                                                                                                                                                                                                                                           ` John MacFarlane
2013-10-29  4:39                                                                                                                                                                                                                                                                                                                                                           ` John MacFarlane
2013-10-29  4:47                                                                                                                                                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                                             ` <20131029044704.GD23351-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-29 14:25                                                                                                                                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                                 ` <25f97fa9-4ec7-4414-a13a-1d69e84e5fde-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-29 14:41                                                                                                                                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                                     ` <663baeef-dcc3-4fc4-af80-f36e0a8a509c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-30  6:42                                                                                                                                                                                                                                                                                                                                                                       ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                                                         ` <20131030064201.GB35821-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-30  8:13                                                                                                                                                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                                             ` <55a6616f-948d-49eb-bbd5-5de5ef48344a-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-30 16:34                                                                                                                                                                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                                                                 ` <20131030163434.GB40216-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-30 17:57                                                                                                                                                                                                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                                                                     ` <20131030175702.GA49946-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-11-04  8:19                                                                                                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                                                         ` <a0649979-54f8-4647-99ca-c98bec0d69cc-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-11-04 16:04                                                                                                                                                                                                                                                                                                                                                                                           ` John MacFarlane
2013-10-28 20:53                                                                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                         ` <0b566c5f-d991-43f8-bc65-52c843bef62c-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-28 21:16                                                                                                                                                                                                                                                                                                                                                           ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                                             ` <20131028211635.GA8276-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-28 21:34                                                                                                                                                                                                                                                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                                                 ` <572bb2df-907e-4bb0-ac0e-31fd0a038f5f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-29  4:34                                                                                                                                                                                                                                                                                                                                                                   ` John MacFarlane
2013-10-26  3:14                                                                                                                                                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                                     ` <20131026031441.GC54079-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-27 14:12                                                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                         ` <9dc5392b-5152-46cb-b76c-0ddd89dfdd9a-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-27 14:28                                                                                                                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                                             ` <0b13117f-caee-48d4-8323-50ded709c103-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-27 21:14                                                                                                                                                                                                                                                                                                                                               ` Nick Bart
2013-10-19 22:31                                                                                                                                                                                                                                                                                                   ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                     ` <20131019223112.GD84789-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-20  6:10                                                                                                                                                                                                                                                                                                       ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                         ` <40fcf73d-5a6d-45dd-9cad-a79ee246b9e2-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-20 11:41                                                                                                                                                                                                                                                                                                           ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                             ` <797dd21b-5a51-48aa-900e-12eb5cd59d79-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-21  5:50                                                                                                                                                                                                                                                                                                               ` John MacFarlane
     [not found]                                                                                                                                                                                                                                                                                                                 ` <20131021055049.GA47629-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-21  9:30                                                                                                                                                                                                                                                                                                                   ` Nick Bart
     [not found]                                                                                                                                                                                                                                                                                                                     ` <a6d828b7-11a1-4cbd-bf9a-0da86af74cf2-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-21 16:46                                                                                                                                                                                                                                                                                                                       ` John MacFarlane
2013-10-21  2:36                                                                                                                                                                                                                                                                                                           ` John MacFarlane
2013-10-16  3:03                                                                                                                                                                                                                                                       ` John MacFarlane
2013-10-15 15:42                                                                                                                                                                                                                                               ` John MacFarlane
2013-10-15 15:43                                                                                                                                                                                                                                               ` John MacFarlane
2013-09-29 20:49                                                                                                                           ` Nick Bart
     [not found]                                                                                                                             ` <4e1cb117-16ba-4526-b956-f5700b833198-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-29 20:57                                                                                                                               ` Nick Bart
     [not found]                                                                                                                                 ` <87563807-c8d8-47ff-a774-bc13342f76a2-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-29 21:56                                                                                                                                   ` John MacFarlane
2013-09-29 21:57                                                                                                                                   ` John MacFarlane
2013-09-29 22:58                                                                                                                   ` Rintze Zelle
     [not found]                                                                                                                     ` <ebfe0ce3-e011-4716-8669-a28d7813ba50-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-03  2:40                                                                                                                       ` Paulo Ney de Souza
     [not found]                                                                                                                         ` <524CD904.4000405-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-03  7:04                                                                                                                           ` Nick Bart
     [not found]                                                                                                                             ` <3f290ad0-44ff-4559-a614-a0add2b5089b-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-03 12:08                                                                                                                               ` Paulo Ney de Souza
     [not found]                                                                                                                                 ` <524D5E27.1070706-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-03 13:51                                                                                                                                   ` Rintze Zelle
     [not found]                                                                                                                                 ` <CA+pmmQR6qO76WSagECbvb5jWxKT1c8H9O0O Y3Xvb3m8iWvoM6Q@mail.gmail.com>
     [not found]                                                                                                                                   ` <CA+pmmQR6qO76WSagECbvb5jWxKT1c8H9O0OY3Xvb3m8iWvoM6Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2013-10-03 16:57                                                                                                                                     ` CSL locale files Paulo Ney de Souza
     [not found]                                                                                                                                       ` <524DA1E5.3050303-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-03 17:55                                                                                                                                         ` Rintze Zelle
     [not found]                                                                                                                                           ` <9d91d79f-8fe1-4eb6-b0d9-31312756c6d7-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-03 18:34                                                                                                                                             ` Paulo Ney de Souza
     [not found]                                                                                                                                               ` <524DB89B.1090401-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2013-10-04 12:05                                                                                                                                                 ` Rintze Zelle
2013-10-03 18:37                                                                                                                                         ` BP Jonsson
2013-09-28 21:47                                                                               ` Decoupling citeproc and highlighting-kate from pandoc Nick Bart
2013-09-28  9:38                                                                   ` Nick Bart
2013-09-09 20:42   ` Joseph Reagle
     [not found]     ` <522E32D3.9090302-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2013-09-09 20:54       ` Joseph Reagle
2013-09-12  9:09   ` Nick Bart
     [not found]     ` <38cf4434-b15b-4ad1-9423-869182709bf3-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-12 18:20       ` John MacFarlane
2013-09-12 18:24       ` John MacFarlane
2013-10-03 14:17   ` bib-yaml on the command line (Was: Decoupling citeproc and highlighting-kate from pandoc) Joseph Reagle
     [not found]     ` <524D7C6A.7070704-T1oY19WcHSwdnm+yROfE0A@public.gmane.org>
2013-10-03 15:20       ` Nick Bart
     [not found]         ` <a54e9afd-db7e-4ac1-91a4-4fb0f5e02b67-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-04  3:13           ` John MacFarlane
     [not found]             ` <20131004031336.GA80363-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2013-10-04  5:31               ` Nick Bart
     [not found]                 ` <70a255af-aae0-4fae-90f9-9c6d95dae746-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-10-04 17:19                   ` John MacFarlane
     [not found]                     ` <20131004171927.GC807-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-05  1:35                       ` Tillmann Rendel
2013-10-03 15:45       ` John MacFarlane
     [not found]         ` <524DB245.8000600@neu.edu>
     [not found]           ` <20131003181525.GA20423@protagoras.phil.berkeley.edu>
     [not found]             ` <20131003181525.GA20423-nFAEphtLEs+AA6luYCgp0U1S2cYJDpTV9nwVQlTi/Pw@public.gmane.org>
2013-10-23 13:45               ` Joseph Reagle
     [not found]         ` <20131003154522.GB67983-9Rnp8PDaXcadBw3G0RLmbRFnWt+6NQIA@public.gmane.org>
2014-02-26 22:08           ` Joseph Reagle
2013-10-03 17:28   ` Decoupling citeproc and highlighting-kate from pandoc andrea rossato
     [not found]     ` <87hacyjmb7.fsf-46C4ZU908FJ9y4XLxYaG4V6hYfS7NtTn@public.gmane.org>
2013-10-03 20:44       ` John MacFarlane
2013-09-09 21:10 John MacFarlane
2013-09-09 21:11 John MacFarlane
     [not found] ` <20130909211107.GD732-0VdLhd/A9Pm0ooXD8Eul3deFUF7NV0gRTVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
2013-09-10 14:06   ` David Sanson
     [not found]     ` <3456a162-43cb-42aa-b2de-6a0d3793e877-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2013-09-10 16:06       ` John MacFarlane
2013-09-11  3:29       ` John MacFarlane
     [not found] <20130909210913.GB732@dhcp-128-32-252-11.lips.berkeley.edu>
     [not found] ` <20130909210913.GB732-0VdLhd/A9Pm0ooXD8Eul3deFUF7NV0gRTVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
2013-09-10 22:41   ` Joseph Reagle

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 NNTP newsgroup(s).