Re: [O] org-mode on Windows Emacs doesn't offer html export

2016-03-20 Thread Eric S Fraga
On Thursday, 17 Mar 2016 at 20:59, Lawrence Bottorff wrote:
> Yes, the title sums it up. I've just ported my .emacs.d, org stuff, etc.
> from my Linux to my work Windows 10, and I can't get the export to offer
> html or latex. Even org-export-html-to-html doesn't work, gives error
> message

What version of org?  I don't have org-export-html-to-html; the closest
I have is org-html-export-to-html.

Have you done

(require 'ox-html)

?
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.4-626-gb62d55



Re: [O] org-mode on Windows Emacs doesn't offer html export

2016-03-19 Thread Lawrence Bottorff
Thanks for the advice. Yes, a stripped-down org file did work. Will
troubleshoot till the culprit sinister is found.

On Fri, Mar 18, 2016 at 9:46 AM, Fabrice Popineau <
fabrice.popin...@supelec.fr> wrote:

>
>
> 2016-03-18 14:35 GMT+01:00 Lawrence Bottorff :
>
>> Yes, thanks Eric. Got latest-greatest 8.3. I did a (require 'ox-html) and
>> (require 'ox-latex) and the options did show up. Not sure why my Linux side
>> had these and the Windows side did not. But still I get this error:
>>
>> org-latex-compile: PDF file
>> c:/Users/Admin/AppData/Local/Temp/babel-6812T7_/latex-6812ivv.pdf wasn't
>> produced
>>
>> Not sure what this is about or what it has to do with exporting to html.
>>
>>
> Something is wrong in your setup.
> I can guarantee that HTML export is working out of the box under Windows.
> Start by trying with an org file not requiring any babel stuff.
> Depending on (possibly complex) image format conversions,
> you may need either some TeX distribution (TeXLive prefered AFAIC)
> and/or GhostScript and/or ImageMagick.
>
> Fabrice
>
>


Re: [O] org-mode on Windows Emacs doesn't offer html export

2016-03-19 Thread Lawrence Bottorff
Yes, thanks Eric. Got latest-greatest 8.3. I did a (require 'ox-html) and
(require 'ox-latex) and the options did show up. Not sure why my Linux side
had these and the Windows side did not. But still I get this error:

org-latex-compile: PDF file
c:/Users/Admin/AppData/Local/Temp/babel-6812T7_/latex-6812ivv.pdf wasn't
produced

Not sure what this is about or what it has to do with exporting to html.

LB

On Fri, Mar 18, 2016 at 3:13 AM, Eric S Fraga  wrote:

> On Thursday, 17 Mar 2016 at 20:59, Lawrence Bottorff wrote:
> > Yes, the title sums it up. I've just ported my .emacs.d, org stuff, etc.
> > from my Linux to my work Windows 10, and I can't get the export to offer
> > html or latex. Even org-export-html-to-html doesn't work, gives error
> > message
>
> What version of org?  I don't have org-export-html-to-html; the closest
> I have is org-html-export-to-html.
>
> Have you done
>
> (require 'ox-html)
>
> ?
> --
> : Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.4-626-gb62d55
>


[O] org-mode on Windows Emacs doesn't offer html export

2016-03-19 Thread Lawrence Bottorff
Yes, the title sums it up. I've just ported my .emacs.d, org stuff, etc.
from my Linux to my work Windows 10, and I can't get the export to offer
html or latex. Even org-export-html-to-html doesn't work, gives error
message

org-latex-compile: PDF file
c:/Users/Admin/AppData/Local/Temp/babel-73881pw/latex-73883Ta.pdf wasn't
produced

Not sure why it's concerned with latex for an html export. My html and
latex are checked on the org-export-backends customization page.

LB


Re: [O] org-mode on Windows Emacs doesn't offer html export

2016-03-19 Thread Eric S Fraga
On Friday, 18 Mar 2016 at 14:12, Lawrence Bottorff wrote:
> Yes, Eric, that's probably the case . . . and I just don't have my latex
> ducks in a row yet. I've been spoiled on Linux -- things just working. . .

Indeed.  I'm lucky in that I don't have to venture out of the Linux
world very often, if at all!  Hope you sort it out.
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.4-626-gb62d55



Re: [O] org-mode on Windows Emacs doesn't offer html export

2016-03-18 Thread Lawrence Bottorff
Yes, Eric, that's probably the case . . . and I just don't have my latex
ducks in a row yet. I've been spoiled on Linux -- things just working. . .

On Fri, Mar 18, 2016 at 1:30 PM, Eric S Fraga  wrote:

> On Friday, 18 Mar 2016 at 11:29, Lawrence Bottorff wrote:
> > Thanks for the advice. Yes, a stripped-down org file did work. Will
> > troubleshoot till the culprit sinister is found.
>
> One reason for LaTeX being required for HTML export is that you have
> equations or similar and these are being converted to images?  Just
> grasping at straws here.
>
> --
> : Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.4-626-gb62d55
>


Re: [O] org-mode on Windows Emacs doesn't offer html export

2016-03-18 Thread Eric S Fraga
On Friday, 18 Mar 2016 at 11:29, Lawrence Bottorff wrote:
> Thanks for the advice. Yes, a stripped-down org file did work. Will
> troubleshoot till the culprit sinister is found.

One reason for LaTeX being required for HTML export is that you have
equations or similar and these are being converted to images?  Just
grasping at straws here.

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 25.0.91.1, Org release_8.3.4-626-gb62d55



Re: [O] org-mode on Windows Emacs doesn't offer html export

2016-03-18 Thread Fabrice Popineau
2016-03-18 14:35 GMT+01:00 Lawrence Bottorff :

> Yes, thanks Eric. Got latest-greatest 8.3. I did a (require 'ox-html) and
> (require 'ox-latex) and the options did show up. Not sure why my Linux side
> had these and the Windows side did not. But still I get this error:
>
> org-latex-compile: PDF file
> c:/Users/Admin/AppData/Local/Temp/babel-6812T7_/latex-6812ivv.pdf wasn't
> produced
>
> Not sure what this is about or what it has to do with exporting to html.
>
>
Something is wrong in your setup.
I can guarantee that HTML export is working out of the box under Windows.
Start by trying with an org file not requiring any babel stuff.
Depending on (possibly complex) image format conversions,
you may need either some TeX distribution (TeXLive prefered AFAIC)
and/or GhostScript and/or ImageMagick.

Fabrice