Re: [O] [org-mobile] iOS MobileOrg transition updates

2012-10-02 Thread Chris Trompette
Kyle Sexton wrote: > ** Documentation for MobileOrg > Confluence is an easy to use wiki system that we have been granted an > open-source license for, but users may prefer something based on Worg > for maintaining information. Any preference which direction I should > build the website? I would

[O] Control the entries of the index in org-mode exporting

2012-10-02 Thread twiki
I have a document in Org and I would like to add an index exporting to LaTeX, I would like to control the formatting of the entries in the index as is done in LaTeX with the command \index, e.g. \index{Actors!Jack Nicholson} Any suggestions? THANKS

[O] error capturing with emacs 24

2012-10-02 Thread Martin Gross
Dear helpers, trying to capture with Emacs 24.1.50.1 (i686-pc-linux-gnu, GTK+ Version 2.22.0) the same way I have done successfully with Emacs 23, I get an error. In both cases I am using org-mode 7.7. The relevant lines in my .emacs I suppose are: (custom-set-variables '(org-capture-templates

Re: [O] error capturing with emacs 24

2012-10-02 Thread Giovanni Ridolfi
Da: Martin Gross Inviato: Martedì 2 Ottobre 2012 11:34 Dear Martin, > trying to capture with Emacs 24.1.50.1 (i686-pc-linux-gnu, GTK+ > Version 2.22.0) the same way I have done successfully with Emacs 23, I > get an error.  > In both cases I am using org-mode 7.7. > What could I do? You colud

[O] Symbol's function definition is void: search

2012-10-02 Thread Sanjib Sikder
Hi, I was trying to manage my technical journal papers using Orgmode. I followed instructions from the following links http://tincman.wordpress.com/2011/01/04/research-paper-management-with-emacs-org-mode-and-reftex/ http://www-public.it-sudparis.eu/~berger_o/weblog/2012/03/23/how-to-manage-and-e

Re: [O] Orgmode Latex export of multiple org file

2012-10-02 Thread Sebastien Vauban
Hello Sanjib Sikder, Sanjib Sikder wrote: > Like in latex, i can include another .tex file (like chapter1.tex, > conclusion.tex etc.), how can I do that with org files (like chapter1.org, > conclusion.org etc.) ? See the first hit of http://www.google.be/search?q=org-mode+include+file, that is ht

Re: [O] Clocktable: Put summary line as table caption

2012-10-02 Thread Nicolas Goaziou
Hello, "Sebastien Vauban" writes: > Hello, > > Looking at the presentation of the clocktable, I find that its "summary" line > should be converted into a caption, as any legend would be for any regular > table. > > You can test it, and see its effect, with such a ECM file: > > * Development >

[O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Bastien
Hi all, there is no need to (require 'org-install) anymore from the maint and master branches. When using the Org distribution that comes with Emacs, Emacs will add Org's autoloaded core functions to [emacs]/lisp/loaddefs.el and the rest of the autoloaded functions to [emacs]/lisp/org/org-loaddef

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Torsten Wagner
Hi Bastien, nice. One line less in u how long is my emacs config, but it was a constant trap for people and hence this is smoothed out... good job ;) Anyhow I just realized that ELPA contains "org" and "org-plus-contrib" I stupidly overlooked that and always read "org" or "org-contrib" W

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Bastien
Hi Torsten, Torsten Wagner writes: > Anyhow I just realized that ELPA contains > "org" and "org-plus-contrib" > I stupidly overlooked that and always read > "org" or "org-contrib" > > Well, thats the way many Linux distros does that kind of things. Sure > enough org-contrib would need org as a r

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Bastien
Hi Sanjib, Sanjib Sikder writes: >     (cond ((eq format 'latex) >   (if (or (not desc) >   (equal 0 (search "rtcite:" desc))) ^^^ Replace this last line with this (or search "rtcite:" desc))) I did no tes

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/10/12 15:15, Bastien wrote: > Hi all, > > there is no need to (require 'org-install) anymore from the maint and master > branches. > > When using the Org distribution that comes with Emacs, Emacs will add Org's > autoloaded core > functions

Re: [O] Control the entries of the index in org-mode exporting

2012-10-02 Thread Bastien
Hi, twiki writes: > I have a document in Org and I would like to add > an index exporting to LaTeX, I would like to control > the formatting of the entries in the index > as is done in LaTeX with the command \index, e.g. > > \index{Actors!Jack Nicholson} > > Any suggestions? You can simpl

Re: [O] capture encrypted for some reason

2012-10-02 Thread Bastien
Hi Samuel, Samuel Wales writes: > I can't reproduce this now, but recently I have had issues with > capture encrypting upon finalizing. The entry was not encrypted to > begin with. > > It only occurred with a certain template. > > Is this a known bug? The feature was unstable for one day or tw

Re: [O] Conditional capture template headline based on tag?

2012-10-02 Thread Bastien
Hi John, John Hendy writes: > As in the expansion elements or defining a custom function for the > =target= element? I'm thinking of this part of org-capture-templates's docstring: (function function-finding-location) Most general way, write your own function to find both

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Bastien
Hi Rainer, Rainer M Krug writes: > Org-mode version 7.9.2 (release_7.9.2-352-g7f74da.dirty @ > /home/rkrug/.emacs.d/org-mode/lisp/) Looks fine. > I use org mode from git, and my update script for org from git is: > > #!/bin/sh > cd ~/.emacs.d/org-mode-git/org-mode Okay. > git checkout master

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Sanjib Sikder
Hi, Shall i replace >(equal 0 (search "rtcite:" desc))) > ^^^ > or only > (search "rtcite:" desc))) > with this (or search "rtcite:" desc))) I tried with replacing the whole line i.e (equal 0 (search "rtcite:" desc))) Now the last error message os go

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Bastien
Hi Sanjib, Sanjib Sikder writes: > or only > > (search "rtcite:" desc))) > > > > with this > >   (or search "rtcite:" desc)))    only this line. You get this error because Emacs tries to evaluate (search "rtcite:" desc) ... and it cannot, because search is not a function. Search

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Sanjib Sikder
Hi, I did what you said but still it is giving the same error,..[undefined reference] There is one line in the org file [[papers:paper2012][paper2012-paper]] [[bib:paper2012][paper2012-bib]] [[biblist:paper2012][paper2012-biblist]] This line is giving the error. If I remove this line from my or

Re: [O] Clean logs for all tasks

2012-10-02 Thread Michael Brand
Hi Ilya On Wed, Sep 19, 2012 at 9:44 PM, Ilya Zonov wrote: > I have calendar.org file with some tasks which should be done every day or > week. Logging is on for them (in :LOGBOOK: drawer). After few month I have > too big file with many logs and only ten tasks. So I want to clean up logs > which

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/10/12 16:20, Bastien wrote: > Hi Rainer, > > Rainer M Krug writes: > >> Org-mode version 7.9.2 (release_7.9.2-352-g7f74da.dirty @ >> /home/rkrug/.emacs.d/org-mode/lisp/) > > Looks fine. Good to know. > >> I use org mode from git, and my u

Re: [O] Add number of items in the lists

2012-10-02 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > * org-agenda.el (org-todo-list): Add the number of items in the lists. I don't think this is useful in general, but might be useful for some users with a lot of items in their agendas :) Maybe some `org-agenda-header-format' custom variable could d

Re: [O] From latest maint/master, no need to (require 'org-install): Lisp error

2012-10-02 Thread Rainer Stengele
Am 02.10.2012 16:20, schrieb Bastien: > Hi Rainer, > > Rainer M Krug writes: > >> Org-mode version 7.9.2 (release_7.9.2-352-g7f74da.dirty @ >> /home/rkrug/.emacs.d/org-mode/lisp/) > > Looks fine. > >> I use org mode from git, and my update script for org from git is: >> >> #!/bin/sh >> cd ~/.e

Re: [O] From latest maint/master, no need to (require 'org-install): Lisp error

2012-10-02 Thread Bastien
Rainer Stengele writes: > What is wrong in my setup? run make autoloads at least once before make update -- Bastien

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Bastien
Rainer M Krug writes: > I guess you mean instead of the make ... commands - right? The git > ... have to stay I assume? Nope... `make update' will do everything for you. Try `make helpall' to get more info. > now I can sleep a little better, :) -- Bastien

Re: [O] From latest maint/master, no need to (require 'org-install): Lisp error

2012-10-02 Thread Rainer Stengele
Am 02.10.2012 17:20, schrieb Bastien: > Rainer Stengele writes: > >> What is wrong in my setup? > > run > > make autoloads > > at least once before > > make update > sorry but no. Still complaining about org-version .. Rainer

Re: [O] From latest maint/master, no need to (require 'org-install): Lisp error

2012-10-02 Thread Bastien
Rainer Stengele writes: > Still complaining about org-version .. Dong! Fixed. Please pull again. -- Bastien

Re: [O] From latest maint/master, no need to (require 'org-install): Lisp error

2012-10-02 Thread johnlist
On 02.10.2012 11:28, Rainer Stengele wrote: run make autoloads at least once before make update sorry but no. Still complaining about org-version .. Rainer fwiw, I updated via git this morning and entered the same problem with the same error message. I'm swamped and didn't have time to

Re: [O] From latest maint/master, no need to (require 'org-install): Lisp error

2012-10-02 Thread Achim Gratz
johnl...@johnrakestraw.com writes: > fwiw, I updated via git this morning and entered the same problem with > the same error message. I'm swamped and didn't have time to debug > further (though I did check list-load-path-shadows and didn't see a > problem there). That's what Git is for: git reflo

Re: [O] Clocktable: Put summary line as table caption

2012-10-02 Thread Sebastien Vauban
Hello Nicolas, Nicolas Goaziou wrote: > "Sebastien Vauban" writes: >> Looking at the presentation of the clocktable, I find that its "summary" line >> should be converted into a caption, as any legend would be for any regular >> table. >> >> You can see its effect: >> >> #+BEGIN: clocktable :maxle

[O] ORG_ADD_CONTRIB and org-e-odt.el don't always play well together

2012-10-02 Thread Nick Dokos
I added the following to my local.mk ORG_ADD_CONTRIB = org-e-* so when I do "make autoloads" (running from the git directory and without compiling), it copies (among others) contrib/lisp/org-e-odt.el to lisp/: , | $ make autoloads | make -C lisp autoloads | make[1]: Entering directory `/home

Re: [O] Add number of items in the lists

2012-10-02 Thread Sebastien Vauban
Hi Bastien, Bastien wrote: > "Sebastien Vauban" writes: > >> * org-agenda.el (org-todo-list): Add the number of items in the lists. > > I don't think this is useful in general, but might be useful for some users > with a lot of items in their agendas :) I personally think that, even for small num

[O] [PATCH] make org-agenda-later honor arg when current span is a number

2012-10-02 Thread Ingo Lohmar
Hi All, I just fixed an oversight (I suppose) in org-agenda.el. When org-current-agenda-span is a number of days (my standard agenda shows 2 days), org-agenda-later does not respect the argument. In particular that means pressing "b" goes forward instead of backward! The trivial patch for releas

[O] Source code files and org mode files

2012-10-02 Thread Fabrice Popineau
Hi, Is it possible to link to an external source code file from an org mode file (for example from an org mode code block) so that the source code file will be exported "inline" wrt to the org-mode file ? Thanks for any clue, Fabrice

Re: [O] Source code files and org mode files

2012-10-02 Thread Nick Dokos
Fabrice Popineau wrote: > Hi, > > Is it possible to link to an external source code file from an org mode file  > (for example from an org mode code block) > so that the source code file will be exported "inline" wrt to the org-mode > file ? > > Thanks for any clue, > --8<---cut

Re: [O] Source code files and org mode files

2012-10-02 Thread Fabrice Popineau
--8<---cut here---start->8--- > #+include: "foo.c" src c > --8<---cut here---end--->8--- > > See (info "(org) Include files") for details. > > Thanks a lot. I was looking around "block_example" and source code handling. I shoul

[O] Bug: Bad timestamp 'habit'

2012-10-02 Thread T.F. Torrey
Hello, I am currently unable to produce an agenda from my files. This bug crept in somewhere in the last few days, but I'm not sure exactly when. This habit timestamp: SCHEDULED: <2012-08-08 Wed .+1d> Produces this error: condition-case: Bad timestamp `habit' at 210773 in buffer `Writing.org'

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Charles
Bastien, Early this morning, i.e. before your message, I pulled from git, ran make update2 and at the end of compiling org-loaddefs.el was mentioned as not loaded. This in cygwin. This evening I followed your instructions (I think!) and ran ~/elisp/org-mode && make autoloads Then make u

Re: [O] tables once again

2012-10-02 Thread Neuwirth Erich
Here is my example (slightly modified) again, I still cannot get it to work the way I want it: In my .emacs I have (among other things) (require 'org-install) (require 'org-e-latex) (require 'org-e-html) ;;(require 'org-e-ascii) ;; using the new exporter (global-set-key (kbd "C-c C-e") 'org-e

Re: [O] Bug: Bad timestamp 'habit'

2012-10-02 Thread Bill Jacobson
On 10/02/2012 05:05 PM, T.F. Torrey wrote: Hello, I am currently unable to produce an agenda from my files. This bug crept in somewhere in the last few days, but I'm not sure exactly when. This habit timestamp: SCHEDULED: <2012-08-08 Wed .+1d> Produces this error: condition-case: Bad timest

Re: [O] tables once again

2012-10-02 Thread Thomas S. Dye
Neuwirth Erich writes: > Here is my example (slightly modified) again, > I still cannot get it to work the way I want it: > > > > In my .emacs I have (among other things) > > > (require 'org-install) > (require 'org-e-latex) > (require 'org-e-html) > ;;(require 'org-e-ascii) > > ;; using the new

Re: [O] Clocktable: Put summary line as table caption

2012-10-02 Thread Nicolas Goaziou
Hello, "Sebastien Vauban" writes: > Here it is: It looks good to me. My only concern is about export back-ends that do not support captions (I can't think of any atm). For them, the information will be lost. On the other hand, adding a defcustom or a dynamic block property to toggle between

Re: [O] From latest maint/master, no need to (require 'org-install)

2012-10-02 Thread Torsten Wagner
On 2 October 2012 22:49, Bastien wrote: > Hi Torsten, > > Torsten Wagner writes: > >> Anyhow I just realized that ELPA contains >> "org" and "org-plus-contrib" >> I stupidly overlooked that and always read >> "org" or "org-contrib" >> >> Well, thats the way many Linux distros does that kind of th

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Sanjib Sikder
Hi, Can anybody help me out please ? I still could not export it to pdf. Thanks. - *Sanjib Sikder *Ph.D. Fellow Chemical Engineering IIT Bombay* * On Tue, Oct 2, 2012 at 8:02 PM, Sanjib Sikder wrote: > Hi, > > I did what you said but still it is giving the same e

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Bastien
Hi Sanjib, Sanjib Sikder writes: > Can anybody help me out please ? I still could not export it to pdf. It looks like this is a problem of a missing reference, not a problem with Org. You need to check the BibTeX references. -- Bastien

Re: [O] ORG_ADD_CONTRIB and org-e-odt.el don't always play well together

2012-10-02 Thread Achim Gratz
Nick Dokos writes: > I added the following to my local.mk > > ORG_ADD_CONTRIB = org-e-* > > so when I do "make autoloads" (running from the git directory and > without compiling), it copies (among others) contrib/lisp/org-e-odt.el > to lisp/: > > , > | $ make autoloads > | make -C lisp autoload

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Sanjib Sikder
Hi, I am sure it is not a case of missing reference. The reasons are 1) I have checked it 2) The reftex shows those references correctly and I can incorporate the reference from the search in my org file 3) rtcite successfully links the references and I can jump to those references using the links

Re: [O] ORG_ADD_CONTRIB and org-e-odt.el don't always play well together

2012-10-02 Thread Nick Dokos
Achim Gratz wrote: > Nick Dokos writes: > > I added the following to my local.mk > > > > ORG_ADD_CONTRIB = org-e-* > > > > so when I do "make autoloads" (running from the git directory and > > without compiling), it copies (among others) contrib/lisp/org-e-odt.el > > to lisp/: > > > > , > > |

Re: [O] Symbol's function definition is void: search

2012-10-02 Thread Sanjib Sikder
Hi, UPDATE: The same files when I ran and exported on my department computer, it is working fine. Thanks a lot. Yesterday I was trying on my laptop. Both the machines have latest emacs-snapshot and Ubuntu 12.04. Any comment on this will be appreciated. Thanks again. ---