Re: [Orgmode] Re: Aligning Columns in HTML Export Tables

2010-10-22 Thread Carsten Dominik
On Oct 20, 2010, at 7:16 PM, Bernt Hansen wrote: Jeff Horn jrhorn...@gmail.com writes: Is there a way to specify a particular column in org-mode that will be exported right-aligned in HTML? | A | B | C | | 1 | 2 | 3 | For the table above, I would like column C right aligned when I

[Orgmode] Re: C-c / r key-setting bug (?)

2010-10-22 Thread Carsten Dominik
On Oct 22, 2010, at 9:40 AM, Andreas Röhler wrote: [ ... ] Still an issue: No brand of Emacs org-mode knows org-occur here M-x where-is org-occur == org-occur is not on any key Also when C-c / is pressed, there is no `r'-key displayed, see screenshot. As I have been trying to explain

[Orgmode] Re: RFI -- Which completion system?

2010-10-22 Thread Tassilo Horn
Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Hi Seb, Before spending a lot of time trying to choose for the best completion mechanism inside Emacs (and sticking to it), setting it up all the way through, I wanted to know if you had had: - particularly good or bad experiences with one

[Orgmode] Re: A few questions about how you write e-mails

2010-10-22 Thread Sébastien Vauban
Hi Nick, Nick Dokos wrote: Jeff Horn jrhorn...@gmail.com wrote: I use boxquote.el (see http://www.emacswiki.org/emacs/BoxQuote) for the above style, but as Samuel and Bernt point out that's not the best way for quoting material where the recipient is expected to use the quoted material (e.g.

Re: [Orgmode] suggesting a new function org-export-string

2010-10-22 Thread Carsten Dominik
Looks good to me. - Carsten On Oct 17, 2010, at 11:22 PM, Eric Schulte wrote: The attached patch adds a new functions org-export-as-string. , | org-export-string is a Lisp function in `org-exp.el'. | | (org-export-string STRING FMT optional DIR) | | Export STRING to FMT using existing

Re: [Orgmode] Re: [PATCH] Alphabetical ordered lists

2010-10-22 Thread Carsten Dominik
Hi Nathaniel, I get patch does not apply. Can you please update the patch to the current git master? Thanks - Carsten On Oct 22, 2010, at 7:30 AM, Nathaniel Flath wrote: I think I've fixed the issues brought up with this new patch. Please let me know what you think. On Wed, Oct 20,

Re: [Orgmode] [PATCH] Update all ++ repeaters in an entry (loop variables weren't getting reset)

2010-10-22 Thread Carsten Dominik
Applied, thanks. - Carsten On Oct 21, 2010, at 2:28 PM, Andrew J. Korty wrote: See http://www.mail-archive.com/emacs-orgmode@gnu.org/msg30284.html. This patch is against release_7.01h. ajk --- lisp/org.el | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) diff

[Orgmode] Re: Difference between org-footnote.el and footnote.el

2010-10-22 Thread Sébastien Vauban
Hi all, Eric S Fraga wrote: On Thu, 21 Oct 2010 17:28:20 +0200, Tassilo Horn tass...@member.fsf.org wrote: Charles Philip Chan cpc...@sympatico.ca writes: How does footnote.el find the signature? I presume by looking for the line -- which precedes the signature. That's not

[Orgmode] Re: A few questions about how you write e-mails

2010-10-22 Thread Tassilo Horn
Sébastien Vauban wxhgmqzgw...@spammotel.com writes: --8---cut here---start-8--- date --8---cut here---end---8--- is still good. for code.. ;-) and maybe supported in other emailers than Gnus? I'm not sure, but `C-u C-c

[Orgmode] Bug/feature : crypt encrypts empty string.

2010-10-22 Thread Richard Riley
I was just saving a cleaned up org file as a template for later projects when and a crypt region I had just removed magically reappeared! e.g , | * Domain | ** Registrar:crypt: | -BEGIN PGP MESSAGE- | Version: GnuPG v1.4.10

[Orgmode] Re: Difference between org-footnote.el and footnote.el

2010-10-22 Thread Tassilo Horn
* repos/el/org-mode/lisp/org-footnote.el (org-footnote-create-definition) (org-footnote-goto-local-insertion-point): Add footnotes before signature when in message-mode. --- lisp/org-footnote.el | 26 -- 1 files changed, 16 insertions(+), 10 deletions(-) diff --git

[Orgmode] [PATCH] Make footnotes work correctly in message-mode (was: Difference between org-footnote.el and footnote.el)

2010-10-22 Thread Tassilo Horn
* repos/el/org-mode/lisp/org-footnote.el (org-footnote-create-definition) (org-footnote-goto-local-insertion-point): Add footnotes before signature when in message-mode. --- lisp/org-footnote.el | 25 +++-- 1 files changed, 15 insertions(+), 10 deletions(-) diff --git

Re: [Orgmode] Bug: Another possible error for in-line math parsing

2010-10-22 Thread Eric S Fraga
On Thu, 21 Oct 2010 22:25:14 +0200, Carsten Dominik carsten.domi...@gmail.com wrote: On Oct 21, 2010, at 7:52 PM, Jeff Horn wrote: Org-mode will never be a perfect TeX scanner, and this is really hard. Help yourself and Org by using \( and \) as math delimiters when you wish to

Re: [Orgmode] RFI -- Which completion system?

2010-10-22 Thread Eric S Fraga
On Thu, 21 Oct 2010 23:16:19 +0200, Sébastien Vauban wxhgmqzgw...@spammotel.com wrote: Hello, Before spending a lot of time trying to choose for the best completion mechanism inside Emacs (and sticking to it), setting it up all the way through, I wanted to know if you had had: -

Re: [Orgmode] Re: Aligning Columns in HTML Export Tables

2010-10-22 Thread Carsten Dominik
Hi Sebastian, my guess would be that you have customized the td and th tags? If yes, please reset the customization, you need the new default values (which you then can still modify). Please check the variables org-export-table-header-tags and org-export-table-data-tags. - Carsten On

[Orgmode] capture initial level and refile of capture buffer

2010-10-22 Thread Richard Riley
What determines the level of a new capture element? e.g I just created one and it started at . feature request : when I added some sub elements to a capture buffer e.g * my new capture ** sub point *** sub sub point 1 *** sub sub point 2 and hit C-c C-w to refile, it only refiled the sub

[Orgmode] Re: [PATCH] Make footnotes work correctly in message-mode

2010-10-22 Thread Sébastien Vauban
Hi Tassilo, Tassilo Horn wrote: * repos/el/org-mode/lisp/org-footnote.el (org-footnote-create-definition) (org-footnote-goto-local-insertion-point): Add footnotes before signature when in message-mode. --- lisp/org-footnote.el | 25 +++-- 1 files changed, 15

[Orgmode] Re: A few questions about how you write e-mails

2010-10-22 Thread Matthias Danzl
On 10/21/2010 10:10 AM, suvayu ali wrote: On 20 October 2010 20:40, Nick Dokos nicholas.do...@hp.com wrote: Given the mangling that mailers do to replies (e.g. the idiotic default top posting of Thunderbird and its ilk), how they handle signatures, and the non-standard nature of signatures

[Orgmode] Re: [PATCH] Make footnotes work correctly in message-mode

2010-10-22 Thread Tassilo Horn
Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Hi Seb, I tried to use this patch, but failed doing so: [...@mediacenter] ~/src/org-modegit apply patch patch:18: trailing whitespace. (let ((max (if (and (eq major-mode 'message-mode) patch:19: trailing whitespace.

[Orgmode] Invisible parent tasks (request)

2010-10-22 Thread Magnus Nilsson
Dear all, When using Getting Things Done, it would be nice to customize org-mode such that parent tasks are not seen from the agenda view with C-a t... ...unless all subtasks are in a done state! A variable like org-show-parent-tasks could perhaps be introduced. I know that

Re: [Orgmode] suggesting a new function org-export-string

2010-10-22 Thread Eric Schulte
Applied, Thanks -- Eric Carsten Dominik carsten.domi...@gmail.com writes: Looks good to me. - Carsten On Oct 17, 2010, at 11:22 PM, Eric Schulte wrote: The attached patch adds a new functions org-export-as-string. , | org-export-string is a Lisp function in `org-exp.el'. | |

[Orgmode] Re: Was ...questions about...email - orgmode + email + company firewall

2010-10-22 Thread John Hendy
On Thu, Oct 21, 2010 at 11:52 PM, Noorul Islam K M noo...@noorul.comwrote: John Hendy jw.he...@gmail.com writes: Hi, I followed the conversation about email writing with org-mode and *loved* it. I would absolutely like to live in emacs for email as it offers so many neat tricks. My

[Orgmode] Re: [PATCH] Make footnotes work correctly in message-mode

2010-10-22 Thread Sébastien Vauban
Hi Tassilo, Tassilo Horn wrote: Sébastien Vauban wxhgmqzgw...@spammotel.com writes: I tried to use this patch, but failed doing so: [...@mediacenter] ~/src/org-modegit apply patch patch:18: trailing whitespace. (let ((max (if (and (eq major-mode 'message-mode) patch:19: trailing

Re: [Orgmode] Re: Aligning Columns in HTML Export Tables

2010-10-22 Thread Sebastian Rose
Carsten Dominik carsten.domi...@gmail.com writes: Hi Sebastian, my guess would be that you have customized the td and th tags? If yes, please reset the customization, you need the new default values (which you then can still modify). Please check the variables org-export-table-header-tags

[Orgmode] Tweaking org-laxtex-export-classes

2010-10-22 Thread Marvin Doyley
Dear all, I am planning to write an article using org - most of my notes are = already in org so this seems logical. The journal that I plan to submit = to provides latex class so it just a matter of customizing = org-export-latex-classes, which I have done=20 (add-to-list

[Orgmode] Re: A few questions about how you write e-mails

2010-10-22 Thread suvayu ali
Hi Matthias, On 22 October 2010 05:27, Matthias Danzl mdan...@aol.com wrote: On 10/21/2010 10:10 AM, suvayu ali wrote: On 20 October 2010 20:40, Nick Dokos nicholas.do...@hp.com wrote: Given the mangling that mailers do to replies (e.g. the idiotic default top posting of Thunderbird and its

[Orgmode] Re: [PATCH] Make footnotes work correctly in message-mode

2010-10-22 Thread Sébastien Vauban
Hi Tassilo, Tassilo Horn wrote: * repos/el/org-mode/lisp/org-footnote.el (org-footnote-create-definition) (org-footnote-goto-local-insertion-point): Add footnotes before signature when in message-mode. --- lisp/org-footnote.el | 25 +++-- 1 files changed, 15

[Orgmode] exporting a html table with gridlines - is it possible

2010-10-22 Thread Cook, Malcolm
I don't see any hooks for this. Malcolm Cook Stowers Institute for Medical Research - Bioinformatics Kansas City, Missouri USA ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

[Orgmode] Re: [PATCH] Make footnotes work correctly in message-mode

2010-10-22 Thread Sébastien Vauban
Hi Dan, Dan Davison wrote: Sébastien Vauban wxhgmqzgwmuf-genee64ty+gs+fvcfc7...@public.gmane.org writes: error: lisp/org-footnote.el: patch does not apply Any help? (I don't know anything of git) I've been in this situation before! It's quite frustrating. That's why I've suggested

[Orgmode] Re: [PATCH] Make footnotes work correctly in message-mode

2010-10-22 Thread Tassilo Horn
Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Hi Seb, Tested. Works perfectly for me. Fan-tas-tic! Great! :-) Did you only test `org-footnote-action', or also the delete and normalize stuff? Just to make sure I didn't break that... Bye, Tassilo

[Orgmode] Possible Calc support for Org-Babel?

2010-10-22 Thread Matthew Oesting
A few of us at my institution have started using CALC in our documents (not embedded, which is far too clumsy for most of us, but C-x * u and simple embedded phrases, often to the tune of several pages) to use Emacs text files rather like Maple and Mathematica files. We're starting to use GIT

Re: [Orgmode] variables governing archiving gone?

2010-10-22 Thread Carsten Dominik
On Oct 17, 2010, at 10:05 PM, Brian van den Broek wrote: Hi all, I've been overhauling my use or orgmode and have also started keeping current with the git repository. From a pull less than 24hrs ago, the documentation refers to the variables: - org-archive-default-command -

Re: [Orgmode] Org and ido mode

2010-10-22 Thread Carsten Dominik
On Oct 19, 2010, at 5:20 PM, Christopher Witte wrote: Hi, I have org-completion-use-ido set to true but when I try and attach a file it doesn't use ido, is there any way to change this? Do you press `C-c a a', or where exactly are you? - Carsten

Re: [Orgmode] Re: 7.01 Xemacs 21.4.22: decompose-region is not known

2010-10-22 Thread Carsten Dominik
On Oct 15, 2010, at 3:30 PM, Uwe Brauer wrote: On Fri, 15 Oct Dr. Volker Zell dr.volker.z...@oracle.com wrote: Hi Volker, [snip] Right now with these changes the latest org-mode works fine for me (at least for my usage pattern). This was extremely useful thanks very much, I will

Re: [Orgmode] VISIBILITY property and C-u C-u TAB

2010-10-22 Thread Carsten Dominik
On Oct 17, 2010, at 5:41 PM, Gez wrote: I've just discovered the VISIBILITY property, although I had some trouble working out how to apply it .I discovered C-u C-u TAB from reading http://thread.gmane.org/gmane.emacs.orgmode/6623. C-u C-u TAB is documented in the reference card but not

Re: RE [Orgmode] Re: Issues with org-mode and LaTeX export.

2010-10-22 Thread Scot Becker
I do hear you about not wanting to add maintenance overhead to yourself, but when they install the new Emacs, you even then may find you need a more recent recent org-mode release in your home directory. It does come with Emacs, to be sure, but they've been quite conservative about their cutoff

[Orgmode] Re: [PATCH] Make footnotes work correctly in message-mode

2010-10-22 Thread Sébastien Vauban
Tassilo, Tassilo Horn wrote: Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Tested. Works perfectly for me. Fan-tas-tic! Great! :-) Did you only test `org-footnote-action', or also the delete and normalize stuff? Just to make sure I didn't break that... Good question... I only

[Orgmode] Unbillable clock time

2010-10-22 Thread Ross Patterson
I would like to be able to designate some of my clock time as unbillable such that when using a clockreport the unbillable time is not included. I would also like to compare billable and unbillable time if possible. Currently I either manually change CLOCK: * to UNBILLABLE: * preserving history

Re: [Orgmode] Re: Aligning Columns in HTML Export Tables

2010-10-22 Thread Sebastian Rose
Carsten Dominik carsten.domi...@gmail.com writes: On Oct 22, 2010, at 3:59 PM, Sebastian Rose wrote: Carsten Dominik carsten.domi...@gmail.com writes: Hi Sebastian, my guess would be that you have customized the td and th tags? If yes, please reset the customization, you need the new

Re: [Orgmode] Re: Aligning Columns in HTML Export Tables

2010-10-22 Thread Sebastian Rose
Carsten Dominik carsten.domi...@gmail.com writes: On Oct 22, 2010, at 3:59 PM, Sebastian Rose wrote: Carsten Dominik carsten.domi...@gmail.com writes: Hi Sebastian, my guess would be that you have customized the td and th tags? If yes, please reset the customization, you need the new

Re: [Orgmode] MobileOrg : Reminders

2010-10-22 Thread Martin Stemplinger
Hallo Magnus Nilsson, am 21.10.2010 schriebst Du: Hi, Does MobileOrg support reminders, like a buzz from the phone 10 (or a customizable number of) minutes before any appointment from the agenda? As far as I know (and see on my iPhone) it does not yet provide such a feature. But i agree that

[Orgmode] TikZ to separate file (babel?) possible?

2010-10-22 Thread John Hendy
Hi, I've recently gotten into TikZ and love it. It is simply fantastic for creating neat diagrams and other thingies. One question... I created an org file with a flow chart in it and simply put my TikZ code in between #+begin_latex and #+end_latex. This is fine when the picture is in a

Re: [Orgmode] MobileOrg : Reminders

2010-10-22 Thread A. Ryan Reynolds
I am definitely also interested in such a feature. -- A. Ryan Reynolds ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Re: [Orgmode] TikZ to separate file (babel?) possible?

2010-10-22 Thread Erik Iverson
John, Does http://orgmode.org/worg/org-contrib/babel/languages/ob-doc-LaTeX.php#sec-4_2 help? There is a tikz example there. The :file argument may be all you're missing, and putting your code in a latex source block. Here is what I do when I have an R code block that generates LaTeX code.

Re: [Orgmode] TikZ to separate file (babel?) possible?

2010-10-22 Thread Eric Schulte
Hi John, I use blocks like the following to create standalone pdfs. #+begin_src latex :file stuff/epr-logo.pdf :border 1.75em :packages '(( tikz)) :exports none \usetikzlibrary{shapes,arrows,shadows,decorations,decorations.text} \tikzstyle{line} = [draw, ultra thick, -latex'] {\huge

Re: [Orgmode] TikZ to separate file (babel?) possible?

2010-10-22 Thread John Hendy
This is fantastic. Honestly, I had no idea that one could use LaTeX with babel! This is just perfect. I was googling around for export tikz pgf jpg and things like that with no luck. This will do perfectly. Thanks for the help. John On Fri, Oct 22, 2010 at 4:25 PM, Eric Schulte

[Orgmode] Re: Unbillable clock time

2010-10-22 Thread Bernt Hansen
Ross Patterson m...@rpatterson.net writes: I would like to be able to designate some of my clock time as unbillable such that when using a clockreport the unbillable time is not included. I would also like to compare billable and unbillable time if possible. Currently I either manually

[Orgmode] [PATCH] unicode nbsp in org-emphasis-regexp-components

2010-10-22 Thread Łukasz Stelmach
Hi. The Unicode contains a NON-BREAK SPACE character at position 0xA0. IMHO org-mode's emphasis code should by default treat this (any other?) character the same as normal space. When i write: It was a /big bang/. I'd like the big bang to be put in italic especially when exported to HTML.

Re: [Orgmode] TikZ to separate file (babel?) possible?

2010-10-22 Thread Eric S Fraga
On Fri, 22 Oct 2010 16:36:10 -0500, John Hendy jw.he...@gmail.com wrote: This is fantastic. Honestly, I had no idea that one could use LaTeX with babel! This is just perfect. I was googling around for export tikz pgf jpg and things like that with no luck. This will do perfectly. For

Re: [Orgmode] Re: [PATCH] Alphabetical ordered lists

2010-10-22 Thread Nathaniel Flath
Sorry about that - patch attached. Thanks, Nathaniel Flath On Fri, Oct 22, 2010 at 1:13 AM, Carsten Dominik carsten.domi...@gmail.com wrote: Hi Nathaniel, I get patch does not apply.  Can you please update the patch to the current git master? Thanks - Carsten On Oct 22, 2010, at 7:30

[Orgmode] fr: capture to kill buffer if requested

2010-10-22 Thread Samuel Wales
Here is an idea for a minor feature in capture. Sometimes you don't want the buffer to stay around, but you want to capture to it. Perhaps the plist notation could include the possibility of killing the buffer after capturing to it? I didn't find a hook, but maybe this is useful enough for the

Re: [Orgmode] Re: Aligning Columns in HTML Export Tables

2010-10-22 Thread Carsten Dominik
On Oct 22, 2010, at 9:30 PM, Sebastian Rose wrote: Carsten Dominik carsten.domi...@gmail.com writes: On Oct 22, 2010, at 3:59 PM, Sebastian Rose wrote: Carsten Dominik carsten.domi...@gmail.com writes: Hi Sebastian, my guess would be that you have customized the td and th tags? If yes,

Re: [Orgmode] Re: Aligning Columns in HTML Export Tables

2010-10-22 Thread Carsten Dominik
On Oct 22, 2010, at 9:37 PM, Sebastian Rose wrote: Carsten Dominik carsten.domi...@gmail.com writes: On Oct 22, 2010, at 3:59 PM, Sebastian Rose wrote: Carsten Dominik carsten.domi...@gmail.com writes: Hi Sebastian, my guess would be that you have customized the td and th tags? If yes,

Re: [Orgmode] Invisible parent tasks (request)

2010-10-22 Thread Carsten Dominik
On Oct 22, 2010, at 2:46 PM, Magnus Nilsson wrote: Dear all, When using Getting Things Done, it would be nice to customize org- mode such that parent tasks are not seen from the agenda view with C-a t... ...unless all subtasks are in a done state! A variable like org-show-parent-tasks