Re: [Orgmode] Re: Using latexmk for LaTeX compilation

2011-02-08 Thread Dror Atariah
> This setting works for me to produce pdfs via latexmk. > > (setq org-latex-to-pdf-process (list "latexmk -f -pdf %f")) > This almost solved my problem - after changing %f to %s it worked as expected. Thnx! ___ Emacs-orgmode mailing list Please use `

[Orgmode] org-agende changes mode in buffer to fundamental

2011-02-08 Thread Detlef Steuer
Hi! Just trying to start my workday ... As always the first command is emacs todo.org Everthing looks like it should, mode is Org . But now, if I type C-a a to view my agenda, mode is reverted back to fundamental. That also happens if I use M-x org-agenda to start it. Mode line tells me: Age

[Orgmode] Re: Table cells containing more than one line

2011-02-08 Thread Jambunathan K
srinivas writes: > orgmode tables do not allow row or column span. I believe this is by design. > > table.el allows you to do that but I haven't been able to get it to work in > org files. > Could you please clarify what you mean by 'get it to work'. May be you are experiencing some issues w

Re: [Orgmode] Automatic noexport tag based on rules?

2011-02-08 Thread Jeff Horn
On Tue, Feb 8, 2011 at 9:39 PM, John Hendy wrote: > I just don't know what the elegant, "right" elisp/org method is for > something like this. I'll leave that to the experts. ;) Best wishes. -- Jeffrey Horn http://www.failuretorefrain.com/jeff/ ___

Re: [Orgmode] Automatic noexport tag based on rules?

2011-02-08 Thread John Hendy
On Tue, Feb 8, 2011 at 7:58 PM, Jeff Horn wrote: > I'm not handy with emacs-lisp, but perhaps someone could whip up a > handy function that iterates org-refile over each TODO heading to move > it into a new, top-level * Tasks headline? > > Thanks for the suggestion. I'm not a huge fan, but it wou

Re: [Orgmode] Automatic noexport tag based on rules?

2011-02-08 Thread Jeff Horn
I'm not handy with emacs-lisp, but perhaps someone could whip up a handy function that iterates org-refile over each TODO heading to move it into a new, top-level * Tasks headline? Then you can tag the tasks headline with :noexport:. This would destroy the "context", but I find keeping tasks in a

[Orgmode] Automatic noexport tag based on rules?

2011-02-08 Thread John Hendy
Hi, My apologies if this has been discussed. I couldn't find it. I write everything from work in org-mode for several reasons. Primarily, it's my documentation system for research in order to properly document Intellectual Property (IP) information. It's also for todos and contacts. When it comes

[Orgmode] custom agenda view with tags-todo not work

2011-02-08 Thread OSiRiS
I tried to set the custom view in the calendar, but does not work. #+BEGIN_SRC elisp (setq org-agenda-custom-commands '( ("f" "FIXED" tags-todo "+bug+TODO=\"DONE\"+STATUS=\"FIXED\"+CLOSED>=\"\"") ) ) #+END_SRC No error occurs when run: #+BEGIN_EXAMPLE Press key for an age

[Orgmode] Re: [Feature Request] Cross headings in tables

2011-02-08 Thread Achim Gratz
If anybody wants to test the current state of affairs, I've just set up a fork repository to make it easier. Assuming you already have orgmode.git cloned, do a git remote add -t tableheadings remote-tableheadings git://repo.or.cz/org-mode/org-tableheadings.git git fetch remote-tableheadings tab

[Orgmode] Re: Table cells containing more than one line

2011-02-08 Thread srinivas
orgmode tables do not allow row or column span. table.el allows you to do that but I haven't been able to get it to work in org files. ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lis

Re: [Orgmode] Re: Export error. Have a look at my backtrace?

2011-02-08 Thread Jeff Horn
Forwarded to Aquamacs. Thanks. On Tue, Feb 8, 2011 at 11:55 AM, Lawrence Mitchell wrote: > Jeff Horn wrote: > >> Hey orgsters, > >> Export started behaving weirdly for me earlier this week. When I >> export to HTML or ASCII to a temporary buffer, I get the attached >> backtrace. This occurs in em

[Orgmode] Re: Fontification of blocks

2011-02-08 Thread Sébastien Vauban
Hi Dan, Dan Davison wrote: > Sébastien Vauban > writes: >> Dan Davison wrote: >>> Sébastien Vauban >>> >>> writes: Dan Davison wrote: > Just quickly, one thing I noticed is that the begin/end lines were > visible even inside folded trees. I.e., in a folded org file, containing >>

Re: [Orgmode] Re: [ANN] Changes to lists

2011-02-08 Thread Nicolas Goaziou
Hello, > Karl Maihofer writes: > This does not work for me. Lists in inline tasks are still exported > as follows: > * > item 1 > * > item 2 > What do I miss? Well, nothing. I just pushed a small patch to remove unneeded newline characters. It does help a bit in you situation. Though,

[Orgmode] Re: Problem exporting table with images

2011-02-08 Thread Sébastien Vauban
Hi Rainer, Rainer M Krug wrote: > #+TITLE: Export of images in table to pdf > #+AUTHOR:Rainer M. Krug > #+DATE: 2011-02-08 Tue > > Hi > > I have problems exporting this table with graphs to pdf: > 1) when exporting, the links are retained, and okular tells me > "malformed url" > 2) I

Re: [Orgmode] export weekly completed/late items

2011-02-08 Thread Kyle Farrell
I'm a bit of a newbie to org-mode, so where should I start to look at this? Is there existing functionality in either org-agenda or org-export that would be a good starting point? Marcelo de Moraes Serpa wrote: > This is a great idea, and one I would use myself. I don't think you > could configu

[Orgmode] Re: Fontification of blocks

2011-02-08 Thread Dan Davison
Sébastien Vauban writes: > Hi Dan, > > Dan Davison wrote: >> Sébastien Vauban >> >> writes: >>> Dan Davison wrote: Just quickly, one thing I noticed is that the begin/end lines were visible even inside folded trees. I.e., in a folded org file, containing many src blocks, I could

[Orgmode] [PATCH] Solved the problem of org-capture apparently not working

2011-02-08 Thread Puneeth Chaganti
Hi, Resending the patch, since it seems like patchwork hasn't grabbed it. -- Puneeth -- Forwarded message -- From: Puneeth Chaganti Date: Sat, Feb 5, 2011 at 12:18 PM Subject: Re: [Orgmode] [PATCH] Solved the problem of org-capture apparently not working To: Charles Cave Cc: e

Re: [Orgmode] Call org-map-entries just on children?

2011-02-08 Thread Richard Lawrence
Hi Bastien, >> How can I apply f just to the *children* of "Paper 1"? > > You can simply add > > (setq org-map-continue-from (outline-next-heading)) > > at the very beginning of your `f' function. Ah, very good. Thanks so much! Best, Richard ___

Re: [Orgmode] crypt entries and journal

2011-02-08 Thread Julien Danjou
On Mon, Feb 07 2011, Richard Riley wrote: > I would like them to. Best way? Decrypt them on file loading. (defun jd:org-decrypt-entires-silently () (let ((m (buffer-modified-p))) (org-decrypt-entries) (unless m (set-buffer-modified-p nil (add-hook 'org-mode-hook 'jd:org-decry

Re: [Orgmode] export weekly completed/late items

2011-02-08 Thread Marcelo de Moraes Serpa
This is a great idea, and one I would use myself. I don't think you could configure the agenda to build something like that though, I'd say we'd need to come up with some custom elisp code or a script that parses the org archive file and does the dirty job. Marcelo. On Mon, Feb 7, 2011 at 2:04 PM

Re: [Orgmode] [Patch 2/2] org-publish

2011-02-08 Thread Bastien
Hi Manuel, Manuel Giraud writes: > This second patch (that should be applied after the first one) adds a > formating option to sitemap entries. One can now use a formated string > to generate a sitemap entry. This formated string currently understands > title (%T), author (%A) and date (%D). I

[Accepted] [Orgmode] Re: [Accepted] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-02-08 Thread Bastien Guerry
Patch 587 (http://patchwork.newartisans.com/patch/587/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C87sjvzaezr.fsf%40keller.adm.naquadah.org%3E Here is the original message containing the patch: > Content-Type: text/plain; chars

Re: [Orgmode] [Patch 1/2] org-publish

2011-02-08 Thread Bastien
Hi Manuel, Manuel Giraud writes: > This first patch adds sort options to the sitemap. In addition to > alphabetical order, one can choose chronological or anti-chronological > ordering of sitemap entries. To retrieve file date, it tries to parse > the "#+date" keyword and if not present defaults

[Orgmode] Re: Export error. Have a look at my backtrace?

2011-02-08 Thread Lawrence Mitchell
Jeff Horn wrote: > Hey orgsters, > Export started behaving weirdly for me earlier this week. When I > export to HTML or ASCII to a temporary buffer, I get the attached > backtrace. This occurs in emacs 24 (Aquamacs) with org-mode 7.4. The > error does not occur if I export to file. > Also, expor

[Orgmode] [Accepted] [Orgmode,1/2] org-publish

2011-02-08 Thread Bastien Guerry
Patch 429 (http://patchwork.newartisans.com/patch/429/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C87mxop7qp3.fsf%40univ-nantes.fr%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8

[Orgmode] Re: Using latexmk for LaTeX compilation

2011-02-08 Thread Lawrence Mitchell
Dror Atariah wrote: > I want to use latexmk as the LaTeX exporting engine, I following this > link's > (http://orgmode.org/worg/org-faq.html#using-xelatex-for-pdf-export) > instruction, but it didn't work. > Note, that exporting the .org to .tex file and then manually running > latexmk -pdf works

[Orgmode] Export error. Have a look at my backtrace?

2011-02-08 Thread Jeff Horn
Hey orgsters, Export started behaving weirdly for me earlier this week. When I export to HTML or ASCII to a temporary buffer, I get the attached backtrace. This occurs in emacs 24 (Aquamacs) with org-mode 7.4. The error does not occur if I export to file. Also, exporting to a temporary buffer wor

[Orgmode] Using latexmk for LaTeX compilation

2011-02-08 Thread Dror Atariah
I want to use latexmk as the LaTeX exporting engine, I following this link's (http://orgmode.org/worg/org-faq.html#using-xelatex-for-pdf-export) instruction, but it didn't work. Note, that exporting the .org to .tex file and then manually running latexmk -pdf works flawlessly. I'm very new to

[Orgmode] Re: [PATCH] org-bbdb: allow anniversaries with unknown years

2011-02-08 Thread Thomas Baumann
Christoph Groth writes: > Anniversaries in BBDB can be now also specified in the format MM-DD > next to -MM-DD. > --- > doc/org.texi | 11 ++- > lisp/org-bbdb.el | 27 ++- > 2 files changed, 24 insertions(+), 14 deletions(-) > > diff --git a/doc/org.te

Re: [Orgmode] Store link in message mode

2011-02-08 Thread Bastien
Hi Ulf, Ulf Stegemann writes: > If you think --despite of those issues-- it's worth adding the creation > of gnus links while in message mode I could provide a patch. FWIW, I think it would be useful. > I'd probably add the functionality to `org-gnus-store-link' but I'm > not an org code exp

Re: [Orgmode] [PATCH] org-bbdb: allow anniversaries with unknown years

2011-02-08 Thread Bastien
Christoph Groth writes: > Anniversaries in BBDB can be now also specified in the format MM-DD > next to -MM-DD. I've now applied this patch, thanks for it! -- Bastien ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the

[Accepted] [Orgmode] org-bbdb: allow anniversaries with unknown years

2011-02-08 Thread Bastien Guerry
Patch 585 (http://patchwork.newartisans.com/patch/585/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1297078995-9030-1-git-send-email-cwg%40falma.de%3E Here is the original message containing the patch: > Content-Type: text/plain

[Accepted] [Orgmode] org-crypt: cache encrypted text

2011-02-08 Thread Bastien Guerry
Patch 586 (http://patchwork.newartisans.com/patch/586/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1297102717-5071-1-git-send-email-julien%40danjou.info%3E Here is the original message containing the patch: > Content-Type: text

Re: [Orgmode] Re: org-mhe-store-link alters window layout

2011-02-08 Thread Bastien
Thomas Baumann writes: > Looks good to me, thank you for bringing this up. > > Carsten, could you please check the patch in? I applied this patch, thanks for double-checking it! -- Bastien ___ Emacs-orgmode mailing list Please use `Reply All' to se

[Accepted] [Orgmode] org-mhe-store-link alters window layout

2011-02-08 Thread Bastien Guerry
Patch 584 (http://patchwork.newartisans.com/patch/584/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C1337.1297074568%40maps%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8" > MIME-

Re: [Orgmode] Problems with source code listings in PDF

2011-02-08 Thread Thomas S. Dye
On Feb 8, 2011, at 4:59 AM, Avdi Grimm wrote: I'm working on creating a PDF eBook with Org-Mode, and I'm running into some difficulty getting them to come out looking decent. I've followed the directions I found in the list archives for outputting colorized source code listings. I set org-expo

[Orgmode] Re: org-mhe-store-link alters window layout

2011-02-08 Thread Thomas Baumann
Looks good to me, thank you for bringing this up. Carsten, could you please check the patch in? Thanks again Thomas Stephen Eglen writes: > If I run M-x org-store-link when my current emacs frame is just showing > one MH-E window (and nothing else in the frame), e.g. the "show-+inbox" > buffe

Re: [Orgmode] IMPORTANT: let's make the biggest gift of FLOSS history!

2011-02-08 Thread Bastien
Jeff Horn writes: > Great! Looks like I was the first. Consider yourself flattr'd. I do, thanks a lot! -- Bastien ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/

Re: [Orgmode] Call org-map-entries just on children?

2011-02-08 Thread Bastien
Hi Richard, Richard Lawrence writes: > I want to call org-map-entries in a way that calls a function at each > *child* of the current tree, but not at the current tree itself. That > is, for some function f, if my Org file looks like this: > > * Paper 1 > ** Student 1 > ** Student 2 > ... > > I

Re: [Orgmode] Problems with source code listings in PDF

2011-02-08 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/08/2011 03:59 PM, Avdi Grimm wrote: > I'm working on creating a PDF eBook with Org-Mode, and I'm running > into some difficulty getting them to come out looking decent. > > I've followed the directions I found in the list archives for > outputti

[Orgmode] Multiple var definitions in :PROPERTIES: block?

2011-02-08 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi assuming the following: * Test case with two var definitions in :PROPERTIES: drawer: :PROPERTIES: :tangle: var.sh :var: FIRST="test13" :var: SECOND="test14" :END: #+begin_src sh echo $FIRST echo $SECOND #+end_src #+results: : test13 Only the

Re: [Orgmode] Problems with source code listings in PDF

2011-02-08 Thread Eric S Fraga
Avdi Grimm writes: > I'm working on creating a PDF eBook with Org-Mode, and I'm running > into some difficulty getting them to come out looking decent. > > I've followed the directions I found in the list archives for > outputting colorized source code listings. I set > org-export-latex-listings

[Orgmode] Problems with source code listings in PDF

2011-02-08 Thread Avdi Grimm
I'm working on creating a PDF eBook with Org-Mode, and I'm running into some difficulty getting them to come out looking decent. I've followed the directions I found in the list archives for outputting colorized source code listings. I set org-export-latex-listings to t, and customized org-export-

[Orgmode] Re: [ANN] Changes to lists

2011-02-08 Thread Karl Maihofer
Nicolas, Nicolas Goaziou gmail.com> writes: > > 2. Lists in inline tasks are not exported properly (item 2a in the > > example below). > > This should be fixed now. Thanks. This does not work for me. Lists in inline tasks are still exported as follows: * item 1 * item 2 What do I miss? R

[Orgmode] allout-mode + Babel

2011-02-08 Thread Jambunathan K
Discovered allout-mode today. It permits outline navigation in code buffers. I am surprised to see that some of the stuff within org-mode itself is inspired by the allout library. If Babel could tangle so that the output file is allout navigable that would be interesting. This has never before su

[Orgmode] Problem exporting table with images

2011-02-08 Thread Rainer M Krug
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 #+TITLE: Export of images in table to pdf #+AUTHOR:Rainer M. Krug #+DATE: 2011-02-08 Tue Hi I have problems exporting this table with graphs to pdf: 1) when exporting, the links are retained, and okular tells me "malformed url" 2) I woul