[O] Out on the week-end

2011-03-13 Thread Bastien
Dear all, I'm out on the week-end, will be back on tuesday. http://www.youtube.com/watch?v=UCElUItrLZc Best, -- Bastien

[O] [PATCH] Goto correct footnote insertion point in org-mode buffers

2011-03-13 Thread Matt Lundin
* lisp/org-footnote.el: (org-footnote-create-definition): Don't search for last footnote when in org-mode file. The recent changes to accommodate signatures in message-mode instruct org-mode to search for the last footnote in the entire buffer when inserting a new footnote definition. This

[O] [PATCH] Prevent creation of duplicate footnote sections.

2011-03-13 Thread Matt Lundin
* lisp/org-footnote.el: (org-footnote-create-definition): Allow for footnote sections above the current footnote insertion point. Fixes bug in which org-mode will create a new footnote section if the current footnote section is not beneath the current insertion point. --- lisp/org-footnote.el

[O] [PATCH] New option to create unique, random labels for footnotes.

2011-03-13 Thread Matt Lundin
* lisp/org-footnote.el: (org-footnote-auto-label): New random option * lisp/org-footnote.el: (org-footnote-new): Create random footnote labels with unique ids --- lisp/org-footnote.el | 16 1 files changed, 12 insertions(+), 4 deletions(-) diff --git a/lisp/org-footnote.el

[O] Section between #+latex: declarations not converted during export

2011-03-13 Thread Matt Lundin
In the following example... --8---cut here---start-8--- * Testing #+latex: \custommacro{% [[http:www.google.com][Google]] /The quick brown fox./ #+latex: } --8---cut here---end---8--- ...the lines between the latex

[O] Re: [Orgmode] IMPORTANT Modified link escaping in Org mode

2011-03-13 Thread Michael Brand
Hi David The current version of dmaus/org-check-percent-escapes from Worg http://orgmode.org/worg/org-hacks.html#check-old-link-escapes loops forever in the outer while when used on a one line Org buffer containing just [[http://www.orgmode.org]] except I hack something like (goto-char end)

[O] RE: Alinea filling (hanlding of explicit line-breaks)

2011-03-13 Thread Vincent Belaïche
Date: Sat, 12 Mar 2011 22:41:02 + From: k...@freefriends.org To: vincent@hotmail.fr CC: monn...@iro.umontreal.ca; emacs-de...@gnu.org Subject: RE: Alinea filling (hanlding of explicit line-breaks) [...] 1. Sure, @* forces a line break in Texinfo. How that technically compares to

Re: [O] Re: [BUG] Unmatched #+end-src

2011-03-13 Thread Eric Schulte
The real problem is: how should Org react when parsing syntactically erroneous buffers? I concede that freezing Emacs isn't nice, but otoh, code can't deal with every possible user error. So, what is the expected behavior here? Consider orphan #+end_ as normal text, throw an error, or both?

Re: [O] org-sparse-tree on region or subtree?

2011-03-13 Thread Lee Hinman
Bernt Suvayu, Thanks. Narrowing to subtree and then running org-sparse-tree worked great. -- Lee On Fri, Mar 11, 2011 at 7:18 PM, Bernt Hansen be...@norang.ca wrote: Lee Hinman hin...@gmail.com writes: Is it possible to run org-sparse-tree on a specific region or subtree of an org file?

[O] [PATCH] Bugfix: org-agenda-open-link

2011-03-13 Thread Bert Burgemeister
* Org-agenda.el (org-agenda-open-link): C-c C-o didn't open links inserted via the `%%( )' mechanism, affecting usability of `%%(org-bbdb-anniversaries). TINYCHANGE --- The bug was apparently introduced in commit ba1e90893d128d8004e4cb6763af692c5a6cd677. -- Bert lisp/org-agenda.el |

[O] RE: Alinea filling (hanlding of explicit line-breaks)‏

2011-03-13 Thread Vincent Belaïche
Salut Stéfan, Actually, no, because paragraph-separate would cause the whole line that ends with \\ to be treated as not being part of a paragraph, and paragraph-start wouldn't be appropriate either. Hence the good above :-( [...] I have implemented the thing locally on my machine. It

[O] [dev] org-indent-mode patch

2011-03-13 Thread Nicolas
Hello, I'd like to submit the following org-indent-mode patch for testing. git://github.com/ngz/org-mode-lists.git indent-patch-no-timer It implements two things: 1. It indents correctly text when using visual-line-mode; 2. It removes the idle timer previous implementation was using,

[O] org-mac-protocol usage under Snow Leopard ?

2011-03-13 Thread Urs Rau (UK)
Gents, Sorry to come back on this topic for the third time. But I have kept bashing at it and even gone to IRC on freenode to try to get help, but I think I need to re-state where I get stuck and then I will likely get hundreds of answers form the people that are used to applescript or

[O] Re: [Orgmode] org export not working

2011-03-13 Thread David Maus
Hi John, At Sun, 27 Feb 2011 22:48:03 -0500, John Rakestraw wrote: --8---cut here---end---8--- So far as I know, I've changed nothing in my set-up since last week, when I successfully exported the exam that I just finished grading. I have, however,

Re: [O] Re: can't export custom time stamps

2011-03-13 Thread David Maus
At Fri, 11 Mar 2011 10:10:08 +0100, Daniel Clemente wrote: I tracked down this problem to this commit: 163cd58ffd6461c98a96b1b63a3cf082b2825a52 is the first bad commit commit 163cd58ffd6461c98a96b1b63a3cf082b2825a52 Author: David Maus dm...@ictsoc.de Date: Fri Jan 14 06:37:52 2011

Re: [O] Section between #+latex: declarations not converted during export

2011-03-13 Thread Nick Dokos
Matt Lundin m...@imapmail.org wrote: In the following example... * Testing #+latex: \custommacro{% [[http:www.google.com][Google]] /The quick brown fox./ #+latex: } ...the lines between the latex declarations are not exported: \section{Testing} \label{sec-1} \custommacro{%

[O] Re: Question about org-beamer overlays

2011-03-13 Thread Eric S Fraga
Matt Lundin m...@imapmail.org writes: [...] I discovered one org-mode solution here. I can use org-beamer-environments-extra to wrap an only macro around an image link. (add-to-list 'org-beamer-environments-extra '(only o \\only%a{%h%x })) A sequence of images in the same column

Re: [O] dates before 1970

2011-03-13 Thread Eric S Fraga
Carsten Dominik carsten.domi...@gmail.com writes: [...] I am attaching a patch which tries to implement some kind of a solution for this problem. The patch introduces a new variable which will allow you to use dates outside the safe range 1970-2037 Thanks Carsten. [...] The patch also

[O] Re: Alinea filling (hanlding of explicit line-breaks)‏

2011-03-13 Thread Stefan Monnier
But it seems that it does not exactly does the job this way: if the argument sign is 0 and you are in the middle of a paragraph, then, unless the paragraph is at beginning of buffer you are going to the character before the 1st one, rather than to the 1st character of paragraph. Actually,

[O] [BUG] Did COMMENT break?

2011-03-13 Thread Rasmus
Hi, It seems that , | #+BEGIN_COMMENT | ... | #+END_COMMENT ` Might be broken in Org-mode 7.5. According to the manual, , | Finally, regions surrounded by | ‘#+BEGIN_COMMENT’ ... ‘#+END_COMMENT’ will not be exported. ` Consider the following example generated with Org-mode

[O] Re: [Orgmode] org export not working

2011-03-13 Thread John Rakestraw
Hi, David -- On Sun, 13 Mar 2011, David Maus wrote: Too late for your student but does this problem still persists? It was user error. I found an old copy of org-export.el lurking in my load path. -- John Rakestraw

Re: [O] [BUG] Did COMMENT break?

2011-03-13 Thread Nick Dokos
Rasmus rasmus.p...@gmail.com wrote: Hi, It seems that , | #+BEGIN_COMMENT | ... | #+END_COMMENT ` Might be broken in Org-mode 7.5. According to the manual, , | Finally, regions surrounded by | ‘#+BEGIN_COMMENT’ ... ‘#+END_COMMENT’ will not be exported. `

Re: [O] Something like 'org-clock-in-at-time'?

2011-03-13 Thread Richard Lawrence
John Hendy jw.he...@gmail.com writes: Could someone fill me in on your process for clocking in things after the fact? I've been trying to get into to clocking, but, especially at home, I don't return to my computer in between every different thing. Instead, I stop at it when I get a pause

[O] Set the beginning section number

2011-03-13 Thread lbmlist
Greetings, I may have not read sufficiently, but I have not yet found how to set the beginning number when exporting to HTML and I'm desiring to start with a number other than 1. * This ** is the example *** that I play *** with Exports to: 1 This 1.1 is the example 1.1.1 that I play

[O] Re: FR: broken links and footnote references

2011-03-13 Thread Samuel Wales
Example of what I think would work: * top * first document -- this is exported and we get the URL when we post * anchor in first document go to [[anchor in second document]] * second document -- this is exported and we get the URL when we post #+URL-FOR-EXTERNAL-ANCHORS

Re: [O] Re: [Orgmode] bug: invalid export key in export visible region

2011-03-13 Thread Samuel Wales
On 2011-03-06, Bastien b...@altern.org wrote: David Maus dm...@ictsoc.de writes: Samuel Wales wrote: c-c c-e v H c-c c-e v R Emacs 22, latest org git master. Thanks for the report, should be fixed by now. Thanks, David. Doesn't work for me. Also, the region gets set to only one