[O] Dokuwiki backend ?

2019-02-08 Thread FAb
Hi,

Is there a discussion why there is no more export to dokuwiki ? (Or
someone will be nice to sum it up to me ?)

I'm sad, I have a lot of documentation to write and share in a dokuwiki.

Thank you

FAb




Re: [O] Syncing methods for org files and org-mobile.el

2017-01-16 Thread FAb
On 01/16/2017 03:48 PM, Karl Voit wrote:
> * Sean Escriva  wrote:
>> What do you use to sync org files across different machines?
> I am using WebDav for syncing with Android. I will switch from
> WebDav to SyncThing since it turned out to be a very neat and easy
> to use sync method with enhanced privacy.
>
> Apple decided not to support tools like SyncThing for political
> reasons, so no luck for iOS here.
>
> For non-mobile devices, I am using unison/rsync, git, and
> SyncThing.
>
Hi,

I used WebDav (ownCloud) with OrgMobile (Android) but for some php
reason I switched to ssh/scp and a dedicated key.

For my PCs I use git.

I works fine.


Best,

0xFAb




Re: [O] Release 9.0

2016-11-04 Thread FAb
On 11/04/2016 12:53 PM, Matt Price wrote:
> One more thank you -- I went through the changelog and man there is a
> lot of new stuff. Always a thrill.  Thanks folks.
>
Thank you very much!

FAb




Re: [O] LaTeX export TOC decorations : how to

2014-03-09 Thread FAb

On 03/08/2014 04:24 PM, Nick Dokos wrote:

FAb 0x...@free.fr writes:


Hi,
When I org-export in pdf the items in TOC have red box around them
like decoration for link in css.
How can I get ride of them ?
Or how to customize this stuff ?


Assuming you are going to PDF through latex, this is done by hyperref, so
you'll need to familiarize yourself with hyperref options and then
customize org-latex-hyperref-template. The default value of that
variable is

\\hypersetup{\n pdfkeywords={%k},\n  pdfsubject={%d},\n  pdfcreator={%c}}\n

You need to modify it to something like this:

\\hypersetup{\n  linkbordercolor={0 0 1}\n  pdfkeywords={%k},\n  pdfsubject={%d},\n 
 pdfcreator={%c}}\n

If you want to use color names rather than RGB values, you can
add

#+LATEX_HEADER: \usepackage{xcolor}

to your org file (or do a more permanent modification if so desired).
You can then use

\\hypersetup{\n  linkbordercolor=blue\n  pdfkeywords={%k},\n  pdfsubject={%d},\n  
pdfcreator={%c}}\n

as the value of org-latex-hyperref-template.

The hyperref manual can be found at

 https://www.tug.org/applications/hyperref/ftp/doc/manual.html


Ok thanks,
When I use that \hypersetup in #+LATEX_HEADER the job is perfectly done.

But I don't find the org-latex-hyperref-template and if I delcare it 
in my .emacs, nothing changes.

Are you sure about this name ?
Now as I know the keyword hyperref I find a lot of documentation on 
the web, but clue for that variable.


Closest variables :
org-export-latex-hyperref-format
org-export-latex-hyperref-options-format
org-latex-with-hyperref


I imagine that I could hack latex template to have the good 
'#+LaTeX_HEADER' but if there is a nice way to do it, I'd rather learn it.


Regards,

FAb
PS : thank you Tim



Re: [O] LaTeX export TOC decorations : how to

2014-03-09 Thread FAb

On 03/09/2014 12:51 PM, Nick Dokos wrote:

FAb 0x...@free.fr writes:


On 03/08/2014 04:24 PM, Nick Dokos wrote:
When I use that \hypersetup in #+LATEX_HEADER the job is perfectly done.

But I don't find the org-latex-hyperref-template and if I delcare it
in my .emacs, nothing changes.
Are you sure about this name ?

That's the name in org 8.0 or later. If you are using a 7.x version of
org, many names are indeed different. My advice would be to upgrade to a
more recent org: these name changes are a continuing source of problems,
so the sooner everybody upgrades, the sooner we can put these problems
behind us.

Uh... I'm already in 8.2.5h-elpa...
An update later : 8.2.5h-30-gdd810b-elpa (M-x org-version)
but no trace for org-latex-hyperref-template... Neither C-h v
nor grep -R

I need to investigate further.




Closest variables :
org-export-latex-hyperref-format
org-export-latex-hyperref-options-format
org-latex-with-hyperref

Still there.

FAb



[O] LaTeX export TOC decorations : how to

2014-03-08 Thread FAb

Hi,
When I org-export in pdf the items in TOC have red box around them like 
decoration for link in css.

How can I get ride of them ?
Or how to customize this stuff ?

Thanks