Add Justin Gordon to the list of signed contributors
[worg.git] / org-translators.org
blobd757265a9f3016b99cbe8068655803a06b6c047e
1 #+TITLE:      Org-mode Import/Export Tools
2 #+AUTHOR:     Worg people
3 #+EMAIL:      mdl AT imapmail DOT org
4 #+OPTIONS:    H:3 num:nil toc:t \n:nil ::t |:t ^:t -:t f:t *:t tex:t d:(HIDE) tags:not-in-toc
5 #+STARTUP:    align fold nodlcheck hidestars oddeven lognotestate
6 #+SEQ_TODO:   TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@)
7 #+TAGS:       Write(w) Update(u) Fix(f) Check(c)
8 #+LANGUAGE:   en
9 #+PRIORITIES: A C B
10 #+CATEGORY:   worg
12 # This file is the default header for new Org files in Worg.  Feel free
13 # to tailor it to your needs.
15 [[file:index.org][{Back to Worg's index}]]
17 This page lists the various conversion tools that have been written to
18 export Org-mode data and import external data into the Org-mode system.
20 * Org-mode Export Tools
22   - [[http://www.cognition.ens.fr/~guerry/u/org2rem.el][From Org-mode to remind]] by [[http://www.cognition.ens.fr/~guerry/][Bastien Guerry]].
23     
24   - From Org-mode to Freemind by Marco Vezzoli, this is available in
25     the contrib directory of the distribution.
27   - From Org-mode to [[http://en.wikipedia.org/wiki/ICalendar][ICal]]endar applications:
29     - there are an export tool already implemented in org mode, is
30       [[http://orgmode.org/manual/iCalendar-export.html#iCalendar-export][explained at the org manual]].
32     - For Google users, read [[file:org-tutorials/org-google-sync.org][this tutorial]]. 
34 * Org-mode Import Tools
36   - [[http://www.olafdietsche.de/palm/palm2orgmode.pl][From Palm TODO database to Orgmode]].  This Translator was
37     written by [[http://www.olafdietsche.de/][Olaf Dietsche]].
39   - From [[http://thread.gmane.org/gmane.emacs.orgmode/5073][Remind to Org]] by Detlef Steuer.
41   - From [[http://bitbucket.org/legoscia/of2org][OmniFocus to Org]] by Magnus Henoch.
43   - From [[http://www.hogbaysoftware.com/products/taskpaper][TaskPaper]] to Org by Carsten Dominik.  A quite complete
44     translation can be achieved by a compact Perl program:
46     #+begin_src perl
47       #!/usr/bin/perl
48       /^(\t*)-(.*?)((@\w+ *)*)$/;
49       @u=grep{$_ ne'@done'}(@t=split/ +/,$3);
50       @v=@u?('',@u,''):();
51       $t{$_}++for@u;
52       $_="*"x(2+length$1).(@t==@u?" TODO":" DONE").$2.join(":",@v)."\n"if$&;
53       s/^\w.*:\s*$/* $&/;
54       END{printf "* Setup\n#+TAGS: %s\n",join' ',keys%t}
55     #+end_src
57     This program is quite unreadable because it resulted from a
58     [[http://thread.gmane.org/gmane.emacs.orgmode/6224/focus%3D6266][contest for the most compact translator]] - but it works very well
59     anyway.
61   - From [[https://bitbucket.org/josemaria.alkala/odt2org/wiki/Home][ODT to Org]], by Jose Maria Alkala.
63   - From ICalendar to Org. There are some tools and documentation related:
65     - There is a mention of some tools at the [[file:org-tools/index.org][org-tools]] section, [[file:org-tools/index.org::*ical2org.awk%20-%20convert%20ics%20files%20to%20Org][here]].
67     - For Google users, see [[file:org-tutorials/org-google-sync.org::*From%20Google%20Calendar%20into%20org%20using%20.ics%20files][this]].
69 * Bi-directional
70    
71   - Google Calendar :: There is a method for synching. Read [[file:org-tutorials/org-google-sync.org][this tutorial]].
72