public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* broken pipes error with zotxt
@ 2015-03-03  3:52 willo
       [not found] ` <f03fba72-be42-4a6b-ba23-9e05f916890f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: willo @ 2015-03-03  3:52 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


[-- Attachment #1.1: Type: text/plain, Size: 1142 bytes --]

 

I had been using pandoc for about 6 months now to successfully to convert 
.md files to.docx and .html. I've been using zotxt to manage citations. 
Then I installed new versions of pandoc and of zotxt. 

Now when I run pandoc in a command like: 

pandoc ch6.md -o ch6.html --filter pandoc-zotxt -F pandoc-citeproc --csl=chicago-note-bibliography.csl

 It gives me the following error:
pandoc: Error running filter pandoc-zotxt fd:4: hPutBuf: resource vanished (
Broken pipe)


I tried a reinstall of pandoc-citeproc, to no avail. 


Any ideas? I'm using OSX 10.9.5. 

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/f03fba72-be42-4a6b-ba23-9e05f916890f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 4857 bytes --]

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

* Re: broken pipes error with zotxt
       [not found] ` <f03fba72-be42-4a6b-ba23-9e05f916890f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2015-03-03  4:10   ` John MacFarlane
       [not found]     ` <20150303041051.GA63602-bi+AKbBUZKbivNSvqvJHCtPlBySK3R6THiGdP5j34PU@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: John MacFarlane @ 2015-03-03  4:10 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

The best way to diagnose filter problems is to run the filters manually.

    pandoc ch6.md -s -t json --csl=chicago-note-bibliography.csl | \
      pandoc-zotxt | \
      pandoc-citeproc | \
      pandoc -f json -s -o ch6.html

This may give you more information about what is breaking.
You can also use the first line of this sequence to find out what
input is being passed to pandoc-zotxt.

+++ willo [Mar 02 15 19:52 ]:
>
>
>I had been using pandoc for about 6 months now to successfully to convert
>.md files to.docx and .html. I've been using zotxt to manage citations.
>Then I installed new versions of pandoc and of zotxt.
>
>Now when I run pandoc in a command like:
>
>pandoc ch6.md -o ch6.html --filter pandoc-zotxt -F pandoc-citeproc --csl=chicago-note-bibliography.csl
>
> It gives me the following error:
>pandoc: Error running filter pandoc-zotxt fd:4: hPutBuf: resource vanished (
>Broken pipe)
>
>
>I tried a reinstall of pandoc-citeproc, to no avail.
>
>
>Any ideas? I'm using OSX 10.9.5.
>
>-- 
>You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
>To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/f03fba72-be42-4a6b-ba23-9e05f916890f%40googlegroups.com.
>For more options, visit https://groups.google.com/d/optout.


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

* Re: broken pipes error with zotxt
       [not found]     ` <20150303041051.GA63602-bi+AKbBUZKbivNSvqvJHCtPlBySK3R6THiGdP5j34PU@public.gmane.org>
@ 2015-03-03 13:40       ` Tom Okie
  2015-03-03 15:56         ` Richard Lawrence
       [not found]         ` <CANqfxPkmysW494VhW7dskcuy4z3RCKr2AHhwAgfAkySqETvjtg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 2 replies; 9+ messages in thread
From: Tom Okie @ 2015-03-03 13:40 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

Thanks for the quick response! I've tried running the filters manually, and
I get the following, which I'm not sure how to interpret:

  File
"/Library/Frameworks/Python.framework/Versions/2.7/bin/pandoc-zotxt", line
9, in <module>
    load_entry_point('pandoc-zotxt==0.1.26', 'console_scripts',
'pandoc-zotxt')()
  File
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
line 82, in run
    toJSONFilter(filters=[extractCites], metafilters=[alterMetadata])
  File
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
line 29, in toJSONFilter
    doc = json.loads(sys.stdin.read('utf8'))
TypeError: an integer is required
pandoc-citeproc: not enough input
pandoc: not enough input

I also tried running the conversion without the pandoc-zotxt filter, and I
didn't get the error. So perhaps it's an issue with zotxt alone?



On Mon, Mar 2, 2015 at 11:10 PM, John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> wrote:

> The best way to diagnose filter problems is to run the filters manually.
>
>    pandoc ch6.md -s -t json --csl=chicago-note-bibliography.csl | \
>      pandoc-zotxt | \
>      pandoc-citeproc | \
>      pandoc -f json -s -o ch6.html
>
> This may give you more information about what is breaking.
> You can also use the first line of this sequence to find out what
> input is being passed to pandoc-zotxt.
>
> +++ willo [Mar 02 15 19:52 ]:
>
>>
>>
>> I had been using pandoc for about 6 months now to successfully to convert
>> .md files to.docx and .html. I've been using zotxt to manage citations.
>> Then I installed new versions of pandoc and of zotxt.
>>
>> Now when I run pandoc in a command like:
>>
>> pandoc ch6.md -o ch6.html --filter pandoc-zotxt -F pandoc-citeproc
>> --csl=chicago-note-bibliography.csl
>>
>> It gives me the following error:
>> pandoc: Error running filter pandoc-zotxt fd:4: hPutBuf: resource
>> vanished (
>> Broken pipe)
>>
>>
>> I tried a reinstall of pandoc-citeproc, to no avail.
>>
>>
>> Any ideas? I'm using OSX 10.9.5.
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "pandoc-discuss" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>> To view this discussion on the web visit https://groups.google.com/d/
>> msgid/pandoc-discuss/f03fba72-be42-4a6b-ba23-9e05f916890f%
>> 40googlegroups.com.
>> For more options, visit https://groups.google.com/d/optout.
>>
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "pandoc-discuss" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/pandoc-discuss/hMBuR75kFbg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/pandoc-discuss/20150303041051.GA63602%40localhost.hsd1.ca.comcast.
> net.
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CANqfxPkmysW494VhW7dskcuy4z3RCKr2AHhwAgfAkySqETvjtg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: broken pipes error with zotxt
  2015-03-03 13:40       ` Tom Okie
@ 2015-03-03 15:56         ` Richard Lawrence
       [not found]         ` <CANqfxPkmysW494VhW7dskcuy4z3RCKr2AHhwAgfAkySqETvjtg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  1 sibling, 0 replies; 9+ messages in thread
From: Richard Lawrence @ 2015-03-03 15:56 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

Tom Okie <wtokie-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> writes:
> ...
> "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
> line 29, in toJSONFilter
>     doc = json.loads(sys.stdin.read('utf8'))
> TypeError: an integer is required
> pandoc-citeproc: not enough input
> pandoc: not enough input
>
> I also tried running the conversion without the pandoc-zotxt filter, and I
> didn't get the error. So perhaps it's an issue with zotxt alone?

Yes, that looks like a zotxt bug.  The 'read' method on a Python file
object takes a number of bytes to read, not an encoding.

I'll add a comment to the BitBucket issue:
https://bitbucket.org/egh/zotxt/issue/19/pandoc-error-after-fresh-install

Best,
Richard


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

* Re: broken pipes error with zotxt
       [not found]         ` <CANqfxPkmysW494VhW7dskcuy4z3RCKr2AHhwAgfAkySqETvjtg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2015-03-03 18:41           ` John MacFarlane
       [not found]             ` <20150303184137.GF52906-0VdLhd/A9Pm0ooXD8Eul3coeWC+rr2vXTVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: John MacFarlane @ 2015-03-03 18:41 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

+++ Tom Okie [Mar 03 15 08:40 ]:
>Thanks for the quick response! I've tried running the filters manually, and
>I get the following, which I'm not sure how to interpret:
>
>  File
>"/Library/Frameworks/Python.framework/Versions/2.7/bin/pandoc-zotxt", line
>9, in <module>
>    load_entry_point('pandoc-zotxt==0.1.26', 'console_scripts',
>'pandoc-zotxt')()
>  File
>"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
>line 82, in run
>    toJSONFilter(filters=[extractCites], metafilters=[alterMetadata])
>  File
>"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
>line 29, in toJSONFilter
>    doc = json.loads(sys.stdin.read('utf8'))
>TypeError: an integer is required
>pandoc-citeproc: not enough input
>pandoc: not enough input
>
>I also tried running the conversion without the pandoc-zotxt filter, and I
>didn't get the error. So perhaps it's an issue with zotxt alone?

One possibility is that the zotxt version you're using is expecting the
kind of json encoding produced by an earlier (or later) version of
pandoc.  What version of pandoc?


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

* Re: broken pipes error with zotxt
       [not found]             ` <20150303184137.GF52906-0VdLhd/A9Pm0ooXD8Eul3coeWC+rr2vXTVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
@ 2015-03-03 19:09               ` Tom Okie
       [not found]                 ` <CANqfxPkA388bmTSQi63s6NECZPn5woJd1c0PJNs+EPPSkScuSg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: Tom Okie @ 2015-03-03 19:09 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

I'm using 1.13.2.

On Tue, Mar 3, 2015 at 1:41 PM, John MacFarlane <jgm-TVLZxgkOlNX2fBVCVOL8/A@public.gmane.org> wrote:

> +++ Tom Okie [Mar 03 15 08:40 ]:
>
>> Thanks for the quick response! I've tried running the filters manually,
>> and
>> I get the following, which I'm not sure how to interpret:
>>
>>  File
>> "/Library/Frameworks/Python.framework/Versions/2.7/bin/pandoc-zotxt",
>> line
>> 9, in <module>
>>    load_entry_point('pandoc-zotxt==0.1.26', 'console_scripts',
>> 'pandoc-zotxt')()
>>  File
>> "/Library/Frameworks/Python.framework/Versions/2.7/lib/
>> python2.7/site-packages/pandoczotxt/__init__.py",
>> line 82, in run
>>    toJSONFilter(filters=[extractCites], metafilters=[alterMetadata])
>>  File
>> "/Library/Frameworks/Python.framework/Versions/2.7/lib/
>> python2.7/site-packages/pandoczotxt/__init__.py",
>> line 29, in toJSONFilter
>>    doc = json.loads(sys.stdin.read('utf8'))
>> TypeError: an integer is required
>> pandoc-citeproc: not enough input
>> pandoc: not enough input
>>
>> I also tried running the conversion without the pandoc-zotxt filter, and I
>> didn't get the error. So perhaps it's an issue with zotxt alone?
>>
>
> One possibility is that the zotxt version you're using is expecting the
> kind of json encoding produced by an earlier (or later) version of
> pandoc.  What version of pandoc?
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "pandoc-discuss" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/pandoc-discuss/hMBuR75kFbg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/pandoc-discuss/20150303184137.GF52906%40dhcp-
> 128-32-252-20.lips.berkeley.edu.
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CANqfxPkA388bmTSQi63s6NECZPn5woJd1c0PJNs%2BEPPSkScuSg%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: broken pipes error with zotxt
       [not found]                 ` <CANqfxPkA388bmTSQi63s6NECZPn5woJd1c0PJNs+EPPSkScuSg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2015-03-03 19:41                   ` John MacFarlane
       [not found]                     ` <20150303194124.GA32650-nFAEphtLEs/fysO+viCLMa55KtNWUUjk@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: John MacFarlane @ 2015-03-03 19:41 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

+++ Tom Okie [Mar 03 15 14:09 ]:
>   I'm using 1.13.2.

You might want to confirm with the zotxt author that it
works with this version of pandoc.


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

* Re: broken pipes error with zotxt
       [not found]                     ` <20150303194124.GA32650-nFAEphtLEs/fysO+viCLMa55KtNWUUjk@public.gmane.org>
@ 2015-03-06 20:17                       ` Andrew Dunning
       [not found]                         ` <337ad3bc-0689-4b06-b325-6a70bb6d92c9-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 9+ messages in thread
From: Andrew Dunning @ 2015-03-06 20:17 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


[-- Attachment #1.1: Type: text/plain, Size: 893 bytes --]

This was a bug introduced in a recent update, and is fixed with 
pandoc-zotxt 0.1.27.

On Tuesday, March 3, 2015 at 2:41:39 PM UTC-5, John MacFarlane wrote:
>
> +++ Tom Okie [Mar 03 15 14:09 ]: 
> >   I'm using 1.13.2. 
>
> You might want to confirm with the zotxt author that it 
> works with this version of pandoc. 
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/337ad3bc-0689-4b06-b325-6a70bb6d92c9%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #1.2: Type: text/html, Size: 1455 bytes --]

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

* Re: broken pipes error with zotxt
       [not found]                         ` <337ad3bc-0689-4b06-b325-6a70bb6d92c9-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2015-03-10 15:13                           ` Tom Okie
  0 siblings, 0 replies; 9+ messages in thread
From: Tom Okie @ 2015-03-10 15:13 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

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

I posted this over at the zotxt page (
https://bitbucket.org/egh/zotxt/issue/19/pandoc-error-after-fresh-install#comment-16141475)
as well, but after updating zotxt 0.1.27 and running

pandoc ch0.md -o ch0.docx -F pandoc-zotxt -F pandoc-citeproc
--csl=chicago-note-bibliography.csl

I get the following:

Traceback (most recent call last):

File "/Library/Frameworks/Python.framework/Versions/2.7/bin/pandoc-zotxt",
line 9, in <module>
    load_entry_point('pandoc-zotxt==0.1.27', 'console_scripts',
'pandoc-zotxt')()

File
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
line 84, in run
    toJSONFilter(filters=[extractCites], metafilters=[alterMetadata])

File
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
line 40, in toJSONFilter
    action(altered[0]['unMeta'])

File
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
line 74, in alterMetadata
    cites.append(fetchItem('betterbibtexkey', citekey))

File
"/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandoczotxt/__init__.py",
line 61, in fetchItem
    cite = json.load(urllib2.urlopen(url))[0]

IndexError: list index out of range

pandoc: Error running filter pandoc-zotxt

On Fri, Mar 6, 2015 at 3:17 PM, Andrew Dunning <andunning-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:

> This was a bug introduced in a recent update, and is fixed with
> pandoc-zotxt 0.1.27.
>
> On Tuesday, March 3, 2015 at 2:41:39 PM UTC-5, John MacFarlane wrote:
>>
>> +++ Tom Okie [Mar 03 15 14:09 ]:
>> >   I'm using 1.13.2.
>>
>> You might want to confirm with the zotxt author that it
>> works with this version of pandoc.
>>
>  --
> You received this message because you are subscribed to a topic in the
> Google Groups "pandoc-discuss" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/pandoc-discuss/hMBuR75kFbg/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/pandoc-discuss/337ad3bc-0689-4b06-b325-6a70bb6d92c9%40googlegroups.com
> <https://groups.google.com/d/msgid/pandoc-discuss/337ad3bc-0689-4b06-b325-6a70bb6d92c9%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups "pandoc-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To post to this group, send email to pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
To view this discussion on the web visit https://groups.google.com/d/msgid/pandoc-discuss/CANqfxPkyEFurfmzHrdDEhapCD7u4Z4Np1gPBdj5JyLt_4%3D%2BBAw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

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

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

end of thread, other threads:[~2015-03-10 15:13 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-03  3:52 broken pipes error with zotxt willo
     [not found] ` <f03fba72-be42-4a6b-ba23-9e05f916890f-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2015-03-03  4:10   ` John MacFarlane
     [not found]     ` <20150303041051.GA63602-bi+AKbBUZKbivNSvqvJHCtPlBySK3R6THiGdP5j34PU@public.gmane.org>
2015-03-03 13:40       ` Tom Okie
2015-03-03 15:56         ` Richard Lawrence
     [not found]         ` <CANqfxPkmysW494VhW7dskcuy4z3RCKr2AHhwAgfAkySqETvjtg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-03-03 18:41           ` John MacFarlane
     [not found]             ` <20150303184137.GF52906-0VdLhd/A9Pm0ooXD8Eul3coeWC+rr2vXTVLZxgkOlNX2fBVCVOL8/A@public.gmane.org>
2015-03-03 19:09               ` Tom Okie
     [not found]                 ` <CANqfxPkA388bmTSQi63s6NECZPn5woJd1c0PJNs+EPPSkScuSg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-03-03 19:41                   ` John MacFarlane
     [not found]                     ` <20150303194124.GA32650-nFAEphtLEs/fysO+viCLMa55KtNWUUjk@public.gmane.org>
2015-03-06 20:17                       ` Andrew Dunning
     [not found]                         ` <337ad3bc-0689-4b06-b325-6a70bb6d92c9-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2015-03-10 15:13                           ` Tom Okie

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).