Re: [O] capture problem

2011-12-30 Thread Nick Dokos
Thomas S. Dye t...@tsdye.com wrote: Aloha all, I'm sometimes running into this error message when I capture: condition-case: Capture abort: (quit pasteboard doesn't contain valid data) Unfortunately, this doesn't mean anything to me. The problem arises after I've been working for a

Re: [O] Location of OpenDocument style files should be configurable

2011-12-30 Thread Achim Gratz
Am 29.12.2011 17:06, schrieb Jambunathan K: Side Note: I am little bit hesitant to make org-odt-styles-dir a defcustom. Already there are defcustoms for org-export-odt-styles-file and org-export-odt-content-template-file and making org-odt-styles-dir will add needless confusion to the users.

Re: [O] capture problem

2011-12-30 Thread Sebastien Vauban
Hi Thomas, Thomas S. Dye wrote: I'm sometimes running into this error message when I capture: condition-case: Capture abort: (quit pasteboard doesn't contain valid data) Unfortunately, this doesn't mean anything to me. The problem arises after I've been working for a while, but I haven't

[O] Honour existing restrictions if possible when visiting tasks from the agenda

2011-12-30 Thread Bernt Hansen
The following short patch series fixes org file restriction handling for me. I'm regularly narrowing to subtrees for a project from the agenda and then using the agenda to visit tasks in the subtree. Each time I visit a task, clock in, or regenerate the agenda my restriction is removed in the

[O] [PATCH 1/3] Honour existing restrictions when regenerating the agenda

2011-12-30 Thread Bernt Hansen
* lisp/org.el: Honour existing restrictions when regenerating the agenda Narrowed org buffers are now retained when regenerating the agenda with org-agenda-redo --- lisp/org.el | 14 +++--- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index

[O] [PATCH 2/3] Honour existing restrictions when clocking in from the agenda

2011-12-30 Thread Bernt Hansen
* lisp/org-agenda.el (org-agenda-clock-in): Save restriction when clocking in from the agenda Narrowed org buffers are now retained when clocking in from the agenda. We only widen the buffer when the task to clock in is outside the existing restriction. --- lisp/org-agenda.el | 17

[O] [PATCH 3/3] Honour existing restrictions when visiting tasks from the agenda

2011-12-30 Thread Bernt Hansen
* lisp/org-agenda.el (org-agenda-switch-to): Widen org buffer only if point is outside the current restriction Widen org buffer when visiting from agenda only if point is outside current restriction. Visiting a task with RET or TAB in the agenda should not affect the org-mode buffer

[O] error Capture abort: (void-function org-pop-to-buffer-same-window)

2011-12-30 Thread Eric Belpaire
Hello I'm trying to fix Lisp error: (error Capture abort: (void-function org-pop-to-buffer-same-window)). I'm using GNU Emacs 24.0.91.1 (i386-mingw-nt5.1.2600) of 2011-11-08 on MARVIN started with the Emacs starter kit and using org-20111229. I've done the following analysis: - function

[O] How to make python files being found by the function executable-find?

2011-12-30 Thread Sheng Xue
Hi all, I added .py to the exec-suffixed : (setq exec-suffixes (cons .py exec-suffixes)) but the function exectuable-find still can't find *.py files. Any idea? I am running emacs on Windows 7. Thanks. Best regards, Sheng

Re: [O] [babel] noweb and results for ob-screen?

2011-12-30 Thread Eric S Fraga
Torsten Wagner torsten.wag...@gmail.com writes: Hi Eric, thanks for pushing this up :) Well as far as I understood, ob-sh is at the final end (after org-babel did its job) a shell script which will be executed. ob-screen is an interactive connection to a screen session. Everything inside

Re: [O] DAG structure / hard links / shared subtrees

2011-12-30 Thread Eric S Fraga
Jan Kybic ky...@fel.cvut.cz writes: Dear org-mode users, this is my first post, so let me first state that I am using org-mode more and more for organizing my daily agenda and I find it really useful. I have a feature request. The structure of the org file is a tree. yes, due to the

Re: [O] Fw: [REQUEST] Microsecond timestamps

2011-12-30 Thread Eric S Fraga
Christian Moe m...@christianmoe.com writes: I'm forwarding this to the list as it was sent only to my mailbox by mistake. -- Christian :-) Hope you all had a very merry Christmas and all the best for a very happy new year! -- : Eric S Fraga (GnuPG: 0xC89193D8FFFCF67D) in Emacs 24.0.92.1 :

Re: [O] Orthogonality of blocks

2011-12-30 Thread Eric S Fraga
Charles Turner chtu...@gmail.com writes: Problem: I have two code blocks (#+BEGIN_SRC .. #+END) and I want to display them side by side on the page, perhaps within an org table. Is this possible? It doesn't seem to be. I think it would be nice to shove collapsed blocks into org table cells

[O] Off-topic: *.gpg files and EasyPG

2011-12-30 Thread Ramon Diaz-Uriarte
Dear All, Apologies if this is totally off-topic, but I think many people use org-mode + EasyPG to encrypt *.org.gpg files, and I could not think of a more knowledgeable list than this one ;-). * Summary: If an encrypted buffer is killed right when it is being opened (when you just typed

[O] latex command for org-preview-latex-fragment

2011-12-30 Thread Ista Zahn
Hello all, I'm having troubel getting org-preview-latex-fragment to work when using minted for exported code highlighting. Checking the log files in /tmp/orgtexlog I find that tex fails with the error message Package minted Error: You must invoke LaTeX with the -shell-escape flag. OK,

Re: [O] How to make python files being found by the function executable-find?

2011-12-30 Thread Nick Dokos
Sheng Xue xuesheng.h...@gmail.com wrote: I added .py to the exec-suffixed :   (setq exec-suffixes (cons .py exec-suffixes))   but the function exectuable-find still can't find *.py files.  Any idea?   I am running emacs on Windows 7. Thanks.   Can't help with Windows, but when I tried

Re: [O] latex command for org-preview-latex-fragment

2011-12-30 Thread Nick Dokos
Ista Zahn istaz...@gmail.com wrote: Hello all, I'm having troubel getting org-preview-latex-fragment to work when using minted for exported code highlighting. Checking the log files in /tmp/orgtexlog I find that tex fails with the error message Package minted Error: You must invoke

Re: [O] latex command for org-preview-latex-fragment

2011-12-30 Thread Nick Dokos
Ista Zahn istaz...@gmail.com wrote: I'm having troubel getting org-preview-latex-fragment to work when using minted for exported code highlighting. Checking the log files in /tmp/orgtexlog I find that tex fails with the error message Package minted Error: You must invoke LaTeX with the

Re: [O] capture problem

2011-12-30 Thread Thomas S. Dye
Sebastien Vauban wxhgmqzgw...@spammotel.com writes: Hi Thomas, Thomas S. Dye wrote: I'm sometimes running into this error message when I capture: condition-case: Capture abort: (quit pasteboard doesn't contain valid data) Unfortunately, this doesn't mean anything to me. The problem

[O] inline src_R also in latex src block

2011-12-30 Thread Michael Bach
Hello, I am using org-mode version 7.8.02 I can successfully do inline `src_R' e.g. via --8---cut here---start-8--- \begin{equation} src_R{4 + 4} \end{equation} --8---cut here---end---8--- where `8' is put into the

Re: [O] mailto link problem

2011-12-30 Thread Eric S Fraga
Scott Randby sran...@gmail.com writes: On 12/29/2011 05:42 PM, Nick Dokos wrote: and if that's the case for you as well, then org is off the hook: you have to look downstream from browse-url to figure out where it's going off the rails. In particular, check if browse-url-mailto-function is

Re: [O] Export visible part of tree to latex

2011-12-30 Thread John MacCallum
Hi everyone, I just wanted to make sure my original questions / problems were clearly stated since no one responded to my original email. 1. I think there is a bug when exporting the visible part of the outline tree to a latex file (C-c C-e v l). Html export of the visible part works fine,

Re: [O] Location of OpenDocument style files should be configurable

2011-12-30 Thread Jambunathan K
Ulrich I have pushed a fix so that make install will do the right thing. Package maintainers have to modify just the $(lispdir) and $(datadir) vars in the Makefile. (Hopefully) They don't have to do anything special at all. You may also want to read the comments under DATAFILES to have an idea of

Re: [O] Export visible part of tree to latex

2011-12-30 Thread Nick Dokos
John MacCallum joh...@ccallum.com wrote: Hi everyone, I just wanted to make sure my original questions / problems were clearly stated since no one responded to my original email. 1. I think there is a bug when exporting the visible part of the outline tree to a latex file (C-c C-e v l).

Re: [O] DAG structure / hard links / shared subtrees

2011-12-30 Thread Jan Kybic
I have a feature request. The structure of the org file is a tree. I wondered if it could be made a directed acyclic graph (DAG) instead. Thanks for the reaction. or simply refile the notes? I always go through the notes I have taken at a meeting after the meeting, in my case to define

Re: [O] [BUG] org-agenda-switch-to fails with void function org-pop-to-buffer-same-window

2011-12-30 Thread Jeff Horn
It looks like git org-mode is at the front of my load-path already. I'm assuming that emacs' load-path works similar to a shell load-path, with lower-indexed directories being searched (and used) before higher-indexed ones. This bug is really messing with my workflow. Anything else I should try?

Re: [O] [BUG] org-agenda-switch-to fails with void function org-pop-to-buffer-same-window

2011-12-30 Thread Jeff Horn
Manually loading `org-mode/lisp/org-compat.el` loads the missing function. Is it weird to have so much functionality depend on a compatibility library? (I don't do software for a living, this is an innocent question.) Also, does anyone have a clue as to why org-compat.el isn't being loaded

Re: [O] Clock time implied as 00:00

2011-12-30 Thread Nick Dokos
François Pinard pin...@iro.umontreal.ca wrote: Hi, Org people. This morning, I just noticed this line: CLOCK: [2011-12-29 jeu 9:30]--[2011-12-29 jeu 11:44] = 11:44 because of the strange 11:44 total. My error is clear, as I wrote 9:30 instead of 09:30. Correcting it gives a move

Re: [O] Export visible part of tree to latex

2011-12-30 Thread John MacCallum
Thanks for the response, Nick. It looks like you have the variable org-show-hierarchy-above set to 't'---if I set it to 't' on my machine, I get output that looks like yours. Would you mind setting it to 'nil' and trying again? Thanks, JM On Dec 30, 2011, at 1:02 PM, Nick Dokos wrote:

Re: [O] Location of OpenDocument style files should be configurable

2011-12-30 Thread Ulrich Mueller
On Sat, 31 Dec 2011, Jambunathan K wrote: I have pushed a fix so that make install will do the right thing. Package maintainers have to modify just the $(lispdir) and $(datadir) vars in the Makefile. (Hopefully) They don't have to do anything special at all. Hi Jambunathan, So you're

[O] ca47d10e commit broke the build

2011-12-30 Thread Martyn Jago
Frankly I'm not sure why, but my build is broken against emacs 22,23,24 Ref: http://martynjago.co.uk:/builds/Org-mode_on_Emacs_24/ca47d10e1f0070f5c6461ff763486b693ff77209 Best, Martyn

[O] LaTeX export

2011-12-30 Thread York Zhao
Hi there, I'm wondering if there is a way to export ONLY the LaTeX code within #+begin_latex and #+end_latex. I want the exact literal export without adding anything before and after my code. The result should be exactly the same as if I have copied the block between #+begin_latex and #+end_latex

Re: [O] just made org-mode.8.4.02

2011-12-30 Thread Jude DaShiell
Here's my .emacs file Cut here. (setq emacspeak-play-emacspeak-startup-icon t) (add-hook 'text-mode-hook 'turn-on-auto-fill) (add-hook 'mail-setup-hook 'spook) (add-hook 'mail-setup-hook 'fortune-to-signature) (setq mh-send-uses-spost-flag t) (setq mail-user-agent 'mh-e-user-agent) (setq

[O] Generating burndown charts using org mode

2011-12-30 Thread Marco Craveiro
Hi Org-Moders, I've been using Org-Mode quite a bit, but I'm afraid I'm not an advanced user. I'm trying to generate burndown charts [1] which basically follow coding progress over a bounded period of time (an iteration). I started by generating a file for each iteration: snippet_of_org_file *

[O] book: checklist Manifesto: How To Get It Right

2011-12-30 Thread Jude DaShiell
Has anyone else read this book? The approach the author advocates for complex situations is to use both a simple check list along with what the construction industry calls a submittal list. The simple check lists get used to cover normal circumstances and the submittal list gets used when

Re: [O] ca47d10e commit broke the build

2011-12-30 Thread Jambunathan K
Martyn The probelmatic commit could actually be this: commit - 07f006e4fd9a7b66643cd7b404c8994665ba8300 which touches the Makefile. I am unable to reproduce this locally. Ulrich - the intended consumer of [1]the above commit - also hasn't noted any build failures with his setup [1].

[O] [PATCH] Fix regexps in org-clock.el

2011-12-30 Thread Joe Vornehm Jr.
I have been seeing persistent errors of Cannot restart clock because task does not contain unfinished clock when auto-resuming a saved (persistent) clock. I believe I've tracked the error down to an extraneous space in a regexp (^[ \t]* when it should be ^[ \t]*). This patch fixes the issue