public inbox archive for pandoc-discuss@googlegroups.com
 help / color / mirror / Atom feed
* Possible Pandoc image bug
@ 2015-07-07  2:05 Brian Danielak
       [not found] ` <033f9a65-047a-4425-a459-d2d621132dfd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Brian Danielak @ 2015-07-07  2:05 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


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

Hi folks,

I've been trying to troubleshoot an odd pandoc behavior. Right now, it only 
seems to happen when I run pandoc inside of a docker container, but 
unfortunately that's a use case for my current work.

Here are the full details with instructions on how to reproduce the bug 
using a Docker image:

https://github.com/briandk/pandoc-image-bug

Please let me know if there's any other info/help I can provide to help 
figure this out.

- B

-- 
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/033f9a65-047a-4425-a459-d2d621132dfd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

* Re: Possible Pandoc image bug
       [not found] ` <033f9a65-047a-4425-a459-d2d621132dfd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
@ 2015-07-07 17:08   ` John MacFarlane
       [not found]     ` <20150707170804.GA23841-nFAEphtLEs/fysO+viCLMa55KtNWUUjk@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: John MacFarlane @ 2015-07-07 17:08 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw

I'll bet you're right about the cause (certificate issue).
You can confirm that by trying a similar test with an "http"
(rather than "https") URL.  Presumably you just need to make
sure relevant certs are installed in your docker instance.
Sorry, I'm not sure how to do that.

The haskell library http-client is used to do the https
fetching, so you may need to look at that to figure out
exactly what is required.

+++ Brian Danielak [Jul 06 15 19:05 ]:
>   Hi folks,
>   I've been trying to troubleshoot an odd pandoc behavior. Right now, it
>   only seems to happen when I run pandoc inside of a docker container,
>   but unfortunately that's a use case for my current work.
>   Here are the full details with instructions on how to reproduce the bug
>   using a Docker image:
>   https://github.com/briandk/pandoc-image-bug
>   Please let me know if there's any other info/help I can provide to help
>   figure this out.
>   - B
>
>   --
>   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 [1]pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To post to this group, send email to
>   [2]pandoc-discuss-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org
>   To view this discussion on the web visit
>   [3]https://groups.google.com/d/msgid/pandoc-discuss/033f9a65-047a-4425-
>   a459-d2d621132dfd%40googlegroups.com.
>   For more options, visit [4]https://groups.google.com/d/optout.
>
>References
>
>   1. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   2. mailto:pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
>   3. https://groups.google.com/d/msgid/pandoc-discuss/033f9a65-047a-4425-a459-d2d621132dfd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer
>   4. https://groups.google.com/d/optout


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

* Re: Possible Pandoc image bug
       [not found]     ` <20150707170804.GA23841-nFAEphtLEs/fysO+viCLMa55KtNWUUjk@public.gmane.org>
@ 2015-07-09 21:21       ` Brian Danielak
  0 siblings, 0 replies; 3+ messages in thread
From: Brian Danielak @ 2015-07-09 21:21 UTC (permalink / raw)
  To: pandoc-discuss-/JYPxA39Uh5TLH3MbocFFw


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

Thanks, John. I figured out how to fix the security certificates issue 
<https://github.com/briandk/pandoc-image-bug/commit/3b084a81bed37d98086b2df011cbce0bf217c35b>
.

I've also issued a pull request 
<https://github.com/jagregory/pandoc-docker/pull/2> to jagregory's Docker 
image, in case others have software that depends upon that image.

Also, thank you so much for making pandoc. It's changed how I work and 
opened up new frontiers for the software I make.

- B

On Tuesday, July 7, 2015 at 10:08:20 AM UTC-7, John MacFarlane wrote:
>
> I'll bet you're right about the cause (certificate issue). 
> You can confirm that by trying a similar test with an "http" 
> (rather than "https") URL.  Presumably you just need to make 
> sure relevant certs are installed in your docker instance. 
> Sorry, I'm not sure how to do that. 
>
> The haskell library http-client is used to do the https 
> fetching, so you may need to look at that to figure out 
> exactly what is required. 
>
> +++ Brian Danielak [Jul 06 15 19:05 ]: 
> >   Hi folks, 
> >   I've been trying to troubleshoot an odd pandoc behavior. Right now, it 
> >   only seems to happen when I run pandoc inside of a docker container, 
> >   but unfortunately that's a use case for my current work. 
> >   Here are the full details with instructions on how to reproduce the 
> bug 
> >   using a Docker image: 
> >   https://github.com/briandk/pandoc-image-bug 
> >   Please let me know if there's any other info/help I can provide to 
> help 
> >   figure this out. 
> >   - B 
> > 
> >   -- 
> >   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 [1]pandoc-discus...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To post to this group, send email to 
> >   [2]pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:>. 
> >   To view this discussion on the web visit 
> >   [3]
> https://groups.google.com/d/msgid/pandoc-discuss/033f9a65-047a-4425- 
> >   a459-d2d621132dfd%40googlegroups.com. 
> >   For more options, visit [4]https://groups.google.com/d/optout. 
> > 
> >References 
> > 
> >   1. mailto:pandoc-discuss+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >   2. mailto:pandoc-...-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org <javascript:> 
> >   3. 
> https://groups.google.com/d/msgid/pandoc-discuss/033f9a65-047a-4425-a459-d2d621132dfd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org?utm_medium=email&utm_source=footer 
> >   4. 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/09d0885c-1bd8-4165-9af1-049db8063511%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

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

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

end of thread, other threads:[~2015-07-09 21:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-07  2:05 Possible Pandoc image bug Brian Danielak
     [not found] ` <033f9a65-047a-4425-a459-d2d621132dfd-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org>
2015-07-07 17:08   ` John MacFarlane
     [not found]     ` <20150707170804.GA23841-nFAEphtLEs/fysO+viCLMa55KtNWUUjk@public.gmane.org>
2015-07-09 21:21       ` Brian Danielak

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