Re: [O] Problem loading org-odt [Re: Release 7.6]

2011-07-07 Thread Pere Quintana Seguí
2011/7/7 Nick Dokos :
> Pere Quintana Seguí  wrote:
>
>
>> 4. Modify ~/e.macs.d/org.el (which is loaded from init.el)
>>
>> (setq load-path (cons "~/.emacs.d/lisp/org-7.6/lisp" load-path))
>> (require 'org-install)
>>
>
> It's in contrib, so you need to add one more thing to your load path:
>
> (add-to-list 'load-path "~/.emacs.d/lisp/org-7.6/contrib/lisp")
>
> Nick
>

Thanks Nick! That was easy and simple.

I didn't know org-odt. I just tested it and it is impressive.

Thanks to those that made it possible.

Pere


-- 
Dr. Pere Quintana Seguí
Observatori de l'Ebre (Universitat Ramon Llull - CSIC)
Horta Alta, 38. 43520 Roquetes (Tarragona), Spain.
T. (+34) 977 500 511 - F. (+34) 977 504 660
http://www.obsebre.es - http://pere.quintanasegui.com



Re: [O] Problem loading org-odt [Re: Release 7.6]

2011-07-07 Thread Tassilo Horn
Pere Quintana Seguí  writes:

Hi!

> 5. Then I loaded an org file and tried to export: C-c C-e o, and I got
> the following message: =Cannot open load file: org-odt=
>
> I'm sure I'm missing something very simple.

org-odt.el is in $org/contrib/lisp/, so you must add that to load-path
as well.

Bye,
Tassilo




Re: [O] Problem loading org-odt [Re: Release 7.6]

2011-07-07 Thread Nick Dokos
Pere Quintana Seguí  wrote:


> 4. Modify ~/e.macs.d/org.el (which is loaded from init.el)
> 
> (setq load-path (cons "~/.emacs.d/lisp/org-7.6/lisp" load-path))
> (require 'org-install)
> 

It's in contrib, so you need to add one more thing to your load path:

(add-to-list 'load-path "~/.emacs.d/lisp/org-7.6/contrib/lisp")

Nick






Re: [O] Problem loading org-odt [Re: Release 7.6]

2011-07-07 Thread Giovanni Ridolfi
Pere Quintana Seguí  writes:

> I was very happy to see the new release with ODT support. This is great.
>
> I downloaded org-mode 7.6 and installed it as I always do.
>
> 1. Untar
[...]
>
> (setq load-path (cons "~/.emacs.d/lisp/org-7.6/lisp" load-path))
> (require 'org-install)
[...]
>
> 5. Then I loaded an org file and tried to export: C-c C-e o, and I got
> the following message: =Cannot open load file: org-odt=
>
> I'm sure I'm missing something very simple.
>

(setq load-path (cons "~/.emacs.d/lisp/org-7.6/CONTRIB/lisp" load-path))
 ^^^

cheers
Giovanni



[O] Problem loading org-odt [Re: Release 7.6]

2011-07-07 Thread Pere Quintana Seguí
Hello,

I was very happy to see the new release with ODT support. This is great.

I downloaded org-mode 7.6 and installed it as I always do.

1. Untar
2. Copy to ~/.emacs.d/lisp/
3. make
4. Modify ~/e.macs.d/org.el (which is loaded from init.el)

(setq load-path (cons "~/.emacs.d/lisp/org-7.6/lisp" load-path))
(require 'org-install)

5. Restart Emacs and modify the org-modules variable with the
Customize menu option, which added the following line to init.el:

(custom-set-variables

... stuff ...

 '(org-modules (quote (org-bbdb org-bibtex org-docview org-gnus org-id
org-info org-jsinfo org-irc org-mew org-mhe org-rmail org-vm org-wl
org-w3m org-odt)))

... stuff

)

5. Then I loaded an org file and tried to export: C-c C-e o, and I got
the following message: =Cannot open load file: org-odt=

I'm sure I'm missing something very simple.

Any idea?

Thanks,

Pere



2011/7/7 Bastien 
>
> Dear all,
>
> I'm releasing Org 7.6.
>
> You can get it from the website as an archive:
>
>  http://orgmode.org/org-7.6.zip
>  http://orgmode.org/org-7.6.tar.gz
>
> Apologies for the delay between 7.5 and 7.6 -- it has been hectic times.
> I owe a big *thank* to everyone who maintain a high level of activity,
> both in the code and on the mailing list.
>
> In particular: Carsten, Eric Schulte, Nicolas Goaziou, David Maus,
> Julien Danjou, Jambunathan K, Michael Brand, Achim Gratz, Eric S. Fraga,
> Nick Dokos, Lawrence Mitchell, Memnon Anon, Bernt Hansen, Sébastien
> Vauban, Thomas S. Dye, Manuel Giraud, Karl Voit, Huy, ... and many
> more!  Thanks to all.
>
> The highlight of this release is the new ODT exporter, which lives in
> the contrib/ directory but will soon make its way to the core: kudos to
> Jambunathan for this addition, and thanks to him for his patience.
>
> Below is the (incomplete) list of changes:
>
>
> Version 7.6
> 
>
> New features and user-visible improvements
> ===
>
> Integration of Jambunathan's OpenDocumentText Exporter
> ~~~
>
> * Activation
>
>  Org-mode 7.6 supports exporting to OpenDocument Text (=odt=)
>  format using org-odt.el.  Depending on how you installed Org,
>  this module can be enabled in one of the following ways:
>
>  1. If you have downloaded the Org from the Web, either as a
>     distribution =.zip= or =.tar.gz= file, or as a Git archive,
>     enable the =odt= option in the variable =org-modules=.
>
>  2. If you are using Org-mode 7.6 that comes bundled with
>     Emacs-24.0.50 (or future Emacs-24.1), then you can install the
>     OpenDocumentText exporter using the package manager.  Check
>     the list of available packages with =M-x list-packages= and
>     install the =org-odt= package.
>
>  Thanks a lot to Jambunathan K for this great contribution.
>
> * Keybindings
>
>  The following interactive commands are provided:
>
>  1. =C-c C-e o= (=org-export-as-odt=): Export as an =odt= file.
>
>  2. =C-c C-e O= (=org-export-as-odt-and-open=): Export as an =odt=
>     file and open the resulting file.
>
>  See the =contrib/odt/README.org= file for further details; you
>  may check in particular the commands =M-x org-lparse= and =M-x
>  org-export-convert=.
>
>
> Ob-Lilypond -- new Babel language to allow score generation
> 
>
> ob-lilypond - an org-babel language, provided to allow LilyPond
> music score generation, complete with optional auditioning via
> midi, whilst leveraging the full power of org mode, and literate
> programming.  See [https://github.com/mjago/ob-lilypond] for more
> documentation.
>
> Thanks to Martyn Jago for this addition.
>
> Org-Bibtex -- major improvements
> ~
>
> Provides support for managing bibtex bibliographical references
> data in headline properties.  Each headline corresponds to a
> single reference and the relevant bibliographic meta-data is
> stored in headline properties, leaving the body of the headline
> free to hold notes and comments.  Org-bibtex is aware of all
> standard bibtex reference types and fields.
>
> The key new functions are
>
> org-bibtex-check: queries the user to flesh out all required
>     (and with prefix argument optional) bibtex fields available
>     for the specific reference =type= of the current headline.
>
> org-bibtex-create: Create a new entry at the given level,
>     using org-bibtex-check to flesh out the relevant fields.
>
> org-bibtex-yank: Yank a bibtex entry on the kill ring as a
>     formatted Org-mode headline into the current buffer
>
> org-bibtex-export-to-kill-ring: Export the current headline
>     to the kill ring as a formatted bibtex entry.
>
> Spreadsheet computation of durations and time values
> ~
>
> If you want to compute time values use the =T= flag, either in
> Calc formulas or Elisp formulas:
>
>  Task 1   Task 2     Total
>  ++