[O] Error message could be improved - Specified time is not representable

2011-05-24 Thread Julian Bean
Hi all, On upgrading to emacs 23.3 (from emacs 23.1) my daily/weekly agenda became unusable, giving the error message Specified time is not representable. After a bit of poking around in the backtrace I tracked this down to an erroneous SCHEDULED date of 1st January 1904 buried inside a task.

Re: [O] Completing with anything

2011-05-24 Thread Julien Danjou
On Tue, May 24 2011, Stefan Monnier wrote: I've now added a :exit-function property that completion-at-point-functions can return which is a function that gets called when completion is finished. It operates outside of the completion-table, so has access to the buffer text and can do things

[O] automatically closing example?

2011-05-24 Thread Steinar Bang
Is there a shortcut to quickly add an #+END_EXAMPLE at the same indentation level as the #+BEGIN_EXAMPLE I have just typed? I have googled but not found. I know that I can type C-j # + b M-TAB e M-TAB, but what I get then is basically what I wanted after I had completed the BEGIN_EXAMPLE. Ie. I

Re: [O] Error message could be improved - Specified time is not representable

2011-05-24 Thread Giovanni Ridolfi
Julian Bean ju...@jellybean.co.uk writes: Hi Jules, On upgrading to emacs 23.3 (from emacs 23.1) my daily/weekly agenda became unusable, giving the error message Specified time is not representable. [...] I tracked this down to an erroneous SCHEDULED date of 1st January 1904 buried

Re: [O] automatically closing example?

2011-05-24 Thread Puneeth Chaganti
Hello, On Tue, May 24, 2011 at 1:38 PM, Steinar Bang s...@dod.no wrote: Is there a shortcut to quickly add an #+END_EXAMPLE at the same indentation level as the #+BEGIN_EXAMPLE I have just typed?  I have googled but not found. I know that I can type C-j # + b M-TAB e M-TAB, but what I get

Re: [O] Error message could be improved - Specified time is not representable

2011-05-24 Thread Julian Bean
On 24 May 2011, at 09:16, Giovanni Ridolfi wrote: Julian Bean ju...@jellybean.co.uk writes: [...] I tracked this down to an erroneous SCHEDULED date of 1st January 1904 buried inside a task. [...] Evidently, for some reason, calling (encode-time 0 0 0 1 1 1904) on 23.3 causes the

[O] org babel support for tcl and awk

2011-05-24 Thread orgm...@h-rd.org
Hi, I am looking for support for Tcl (and AWK) for org-babel. Both have a supplied emacs mode and Tcl also has an inferior interpreter mode. I was trying to do it myself, however I am quite lost in the instructions. Is there someone with the knowledge and willingness to provide a

Re: [O] Org Contacts, Gnus and Yasnippet Not Playing Nicely

2011-05-24 Thread Tassilo Horn
Ian Barton li...@manor-farm.org writes: Hi Ian, I am trying to set up Org Contacts and gnus. Org Contacts suggests that pressing + Tab in the To: field in a message buffer should offer a list of tags from my contacts file. However, I just get a Tab. I suspect that Yasnippet is interfering,

Re: [O] org-capture in message-mode buffer

2011-05-24 Thread Tassilo Horn
Leo sdl@gmail.com writes: Hi! is there an agreement here on whether the patch appearing in this thread http://patchwork.newartisans.com/patch/783/ should be applied or not? I don't really know. Ditto. :-) The problem is that creating a link to a message with no Gcc errors right

Re: [O] Adjust org-contacts-wl functions to used standards

2011-05-24 Thread Carsten Dominik
Hi Michael, I did apply the patches, but had problems. Please verify that it came out right Thanks. - Carsten On May 12, 2011, at 9:15 PM, Michael Markert wrote: On 12 May 2011, Julien Danjou wrote: On Thu, May 12 2011, Michael Markert wrote: I missed a nasty bit:

Re: [O] org-capture in message-mode buffer

2011-05-24 Thread Carsten Dominik
On May 24, 2011, at 12:41 PM, Tassilo Horn wrote: Leo sdl@gmail.com writes: Hi! is there an agreement here on whether the patch appearing in this thread http://patchwork.newartisans.com/patch/783/ should be applied or not? I don't really know. Ditto. :-) The problem is

Re: [O] [PATCH] customize latex table export

2011-05-24 Thread Carsten Dominik
Hi Christophe, On May 19, 2011, at 2:34 PM, Christophe Rhodes wrote: Hi, To produce documents in something approaching my organization's house style, I need to be able to style the headers of tables. It's nice that orgtbl has the functionality for this, but the call to orgtbl-to-latex

Re: [O] LaTeX export: underscores and the syntax package

2011-05-24 Thread Carsten Dominik
On May 18, 2011, at 9:23 AM, Peter Frings wrote: Good morning Nicholas, Your suggested change in org-exp.el did the trick, thanks! I have not observed any side-effects, but then again, my files aren’t that complicated either, only using rather simple markup and a few floating images, no

[O] [Accepted] Change underscores to hyphens in section labels

2011-05-24 Thread Carsten Dominik
Patch 809 (http://patchwork.newartisans.com/patch/809/) is now Accepted. Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C5905.1305748720%40alphaville.americas.hpqcorp.net%3E Here is the original message containing the patch: Content-Type:

Re: [O] org-capture in message-mode buffer

2011-05-24 Thread Tassilo Horn
Carsten Dominik carsten.domi...@gmail.com writes: Basically, there should be a possibility to let the link creator functions return yes, I was the right handler, but because of reason X, I couldn't create a link. Is there something like that? What happens if you return t in this case,

Re: [O] org-capture in message-mode buffer

2011-05-24 Thread Carsten Dominik
On May 24, 2011, at 1:35 PM, Tassilo Horn wrote: Carsten Dominik carsten.domi...@gmail.com writes: Basically, there should be a possibility to let the link creator functions return yes, I was the right handler, but because of reason X, I couldn't create a link. Is there something like

Re: [O] [BUG] Crash with LaTeX exporter

2011-05-24 Thread Carsten Dominik
On Apr 6, 2011, at 11:14 AM, Lawrence Mitchell wrote: Jambunathan K wrote: [1. text/plain] Exporting the below table to LaTeX throws an error. Let me know if you need any additional info. [2. text/x-verbatim] *** Table.el Table with no Spanning

Re: [O] Completing with anything

2011-05-24 Thread Stefan Monnier
So, could you add 'failed, which means that no function was able to complete? That way I could do something like (setq completion-extra-properties '(:exit-function my-exit-function)) (defun my-exit-function (string finished) (when (eq finished 'failed) (dabbrev-expand))) and always

Re: [O] Performance problem

2011-05-24 Thread Matt Lundin
Michael Welle mwe012...@gmx.net writes: Matt Lundin m...@imapmail.org writes: Michael Welle mwe012...@gmx.net writes: I use Emacs 23.2.1 and org-mode 7.5. After some time, usually after a few days of 'uptime', building an agenda becomes very slw. Is this the standard agenda or a

Re: [O] org babel support for tcl and awk

2011-05-24 Thread Eric Schulte
Hi, Are you aware of the ob-template.el file [1], which can be used as a jumping off point to simplify the addition of new languages? After globally replacing the term template with you language name, the only function that necessarily needs to be re-written is the main

[O] [Accepted] org-html.el: Fix export of table.el tables.

2011-05-24 Thread Carsten Dominik
Patch 764 (http://patchwork.newartisans.com/patch/764/) is now Accepted. Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C81hb9nclv4.fsf%40gmail.com%3E Here is the original message containing the patch: Content-Type: text/plain; charset=utf-8

Re: [O] [Patch] For the Manual: using org-crypt

2011-05-24 Thread Carsten Dominik
Hi, Is anyone working on making this a complete patch? Thanks - Carsten On Mar 23, 2011, at 5:03 PM, Jambunathan K wrote: Thanks Christian. Some minor improvements. The intention is not to nitpick but to build on top of what you have provided and help the reviewer. +org-crypt will

Re: [O] indirect buffer for properties

2011-05-24 Thread Bernt Hansen
Michael Brand michael.ch.br...@gmail.com writes: What do you think about an indirect buffer for properties (or is there already one I don't know of yet?) that lets one view and maybe even edit all properties of the typically folded current heading of the primary buffer in an indirect buffer?

[O] [Accepted] Allow inactive timestamps in org-expiry (copy of lost patch)

2011-05-24 Thread Carsten Dominik
Patch 722 (http://patchwork.newartisans.com/patch/722/) is now Accepted. Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C20110328202149.67a32bdc%40hsdev.com%3E Here is the original message containing the patch: Content-Type: text/plain;

Re: [O] Completing with anything

2011-05-24 Thread Antoine Levitt
24/05/11 14:47, Stefan Monnier So, could you add 'failed, which means that no function was able to complete? That way I could do something like (setq completion-extra-properties '(:exit-function my-exit-function)) (defun my-exit-function (string finished) (when (eq finished 'failed)

Re: [O] Org Contacts, Gnus and Yasnippet Not Playing Nicely

2011-05-24 Thread Ian Barton
On 24/05/11 11:21, Tassilo Horn wrote: Ian Bartonli...@manor-farm.org writes: Hi Ian, I am trying to set up Org Contacts and gnus. Org Contacts suggests that pressing +Tab in the To: field in a message buffer should offer a list of tags from my contacts file. However, I just get a Tab. I

Re: [O] [ANN] ELPA Repo for org-html/org-odt

2011-05-24 Thread Jambunathan K
Suvayu A quick question, I follow the org-mode HEAD. Does using your fork mean I fall behind the org-mode HEAD, or does it still track the org-mode HEAD and includes your commits? Sorry if my question is trivial, never tried a forked project before. I plan to publish a tarball whenever 1.

Re: [O] Completing with anything

2011-05-24 Thread Stefan Monnier
Oh well, I guess that I'm the only one who wants this kind of behaviour, No, I'm interested as well, but haven't found a good solution yet. Stefan

Re: [O] Completing with anything

2011-05-24 Thread Stefan Monnier
(defadvice completion-at-point (after completion-at-point-complete-if-failed activate) Fallback on dabbrev if completion didn't do anything useful. (unless ad-return-value (dabbrev-expand nil))) BTW, you can avoid the advice by using your own (defun al-completion-at-point ()

Re: [O] Completing with anything

2011-05-24 Thread Antoine Levitt
24/05/11 16:05, Stefan Monnier (defadvice completion-at-point (after completion-at-point-complete-if-failed activate) Fallback on dabbrev if completion didn't do anything useful. (unless ad-return-value (dabbrev-expand nil))) BTW, you can avoid the advice by using your own

Re: [O] Org Contacts, Gnus and Yasnippet Not Playing Nicely

2011-05-24 Thread Rémi Vanicat
Ian Barton li...@manor-farm.org writes: On 24/05/11 11:21, Tassilo Horn wrote: Ian Bartonli...@manor-farm.org writes: Hi Ian, I am trying to set up Org Contacts and gnus. Org Contacts suggests that pressing +Tab in the To: field in a message buffer should offer a list of tags from my

[O] Passing font size to exported LaTeX table

2011-05-24 Thread John Hendy
Hi, I can control a table font size directly from the .tex file like so: --- \scriptsize{ \begin{center} \begin{tabular}{lllrr} table entries here \end{tabular} \end{center} } --- Any way to pass this from org-mode? Otherwise, I keep changing the org file, exporting, and then having to add

Re: [O] automatically closing example?

2011-05-24 Thread Steinar Bang
Puneeth Chaganti puncha...@gmail.com: e TAB, will do that for you. Look at http://orgmode.org/org.html#Easy-Templates Cool! Exactly what I was looking for. Thanks!

[O] orgmode/beamer - won't export blocks

2011-05-24 Thread Benjamin Slade
I'm having the same trouble which seems to be reported in this thread (I'm not running Aquamacs though, just GNU Emacs under Linux, with orgmode v7.4): http://www.mail-archive.com/emacs-orgmode@gnu.org/msg28752.html I've followed tutorials, and orgmode isn't generating beamer \block structures

Re: [O] Adjust org-contacts-wl functions to used standards

2011-05-24 Thread Michael Markert
Hi Carsten, On 24 May 2011, Carsten Dominik wrote: Hi Michael, I did apply the patches, but had problems. Please verify that it came out right Thanks. - Carsten Looks good to me. Thanks for merging. :) Michael On May 12, 2011, at 9:15 PM, Michael Markert wrote: On 12 May 2011,

Re: [O] Completing with anything

2011-05-24 Thread Stefan Monnier
Oh well, I guess that I'm the only one who wants this kind of behaviour, so I just ended up with an advice which seems to do the trick. Sorry for hijacking this thread. In case anyone is interested: To get back to this discussion. Before worrying about how to implement it, I'm wondering

Re: [O] Completing with anything

2011-05-24 Thread Antoine Levitt
24/05/11 20:05, Stefan Monnier Oh well, I guess that I'm the only one who wants this kind of behaviour, so I just ended up with an advice which seems to do the trick. Sorry for hijacking this thread. In case anyone is interested: To get back to this discussion. Before worrying about how to

Re: [O] org babel support for tcl and awk

2011-05-24 Thread Eric S Fraga
Eric Schulte schulte.e...@gmail.com writes: [...] As an example, I've worked up an very simple ob-awk.el file from ob-template.el, it is attached along with an example org-mode file which demonstrates its usage. Eric, this is great to see as I use awk quite often. What is involved in

Re: [O] org babel support for tcl and awk

2011-05-24 Thread orgm...@h-rd.org
Hi Eric, yes I am aware of op-template and tried to use it. However it was not clear to me how to proceed and I looked into ob-perl, ob-ruby, ob-scheme and ob-python. But it seemed to me they use a different structure than op-template and I was stuck. I also saw that the file

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread John Hendy
On Tue, May 24, 2011 at 11:44 AM, Sebastien Vauban wxhgmqzgw...@spammotel.com wrote: Hi John, John Hendy wrote: I can control a table font size directly from the .tex file like so: --- \scriptsize{ \begin{center} \begin{tabular}{lllrr} table entries here \end{tabular}

Re: [O] Bug: The org-entry-put add extra space after each invoking [7.5 (release_7.5.260.geb2a)]

2011-05-24 Thread David Maus
At Sun, 8 May 2011 23:02:30 +0800, wujun zhou wrote: Each time I invoke the org-entry-put, I will get an extra space before the value, like this: before :prop: 1 after (org-entry-put pom prop 2) :prop: 2 and after invoking servel times: :prop:3

Re: [O] org babel support for tcl and awk

2011-05-24 Thread Eric Schulte
Eric S Fraga e.fr...@ucl.ac.uk writes: Eric Schulte schulte.e...@gmail.com writes: [...] As an example, I've worked up an very simple ob-awk.el file from ob-template.el, it is attached along with an example org-mode file which demonstrates its usage. Eric, this is great to see as I use

Re: [O] [PATCH] Allow inactive timestamps in org-expiry (copy of lost patch)

2011-05-24 Thread David Maus
At Mon, 28 Mar 2011 14:55:13 -0400, Nick Dokos wrote: Marcel van der Boom mar...@hsdev.com wrote: This patch is what is attached to the message displayed at [1]. I have been using this patch for a while and it works fine. From searching it looks like this patch was 'forgotten', but I may

Re: [O] indirect buffer for properties

2011-05-24 Thread Michael Brand
Hi Bernt Thanks for the suggestion. C-c C-x p with completion is perfect for me to _edit_ a certain outline item and one of its properties. But I would also like the possibility to fast _walk through_ an outline tree to only see _all_ properties per item _at a glance_. The idea was to have a

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread Nick Dokos
John Hendy jw.he...@gmail.com wrote: On Tue, May 24, 2011 at 11:44 AM, Sebastien Vauban wxhgmqzgw...@spammotel.com wrote: Hi John, John Hendy wrote: I can control a table font size directly from the .tex file like so: --- \scriptsize{

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread John Hendy
On Tue, May 24, 2011 at 2:25 PM, Nick Dokos nicholas.do...@hp.com wrote: John Hendy jw.he...@gmail.com wrote: On Tue, May 24, 2011 at 11:44 AM, Sebastien Vauban wxhgmqzgw...@spammotel.com wrote: Hi John, John Hendy wrote: I can control a table font size directly from

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread Sebastien Vauban
Hi John and Nick, Nick Dokos wrote: John Hendy jw.he...@gmail.com wrote: On Tue, May 24, 2011 at 11:44 AM, Sebastien Vauban wxhgmqzgw...@spammotel.com wrote: John Hendy wrote: I can control a table font size directly from the .tex file like so: --- \scriptsize{

Re: [O] orgmode/beamer - won't export blocks

2011-05-24 Thread Sebastien Vauban
Hi Benjamin, Benjamin Slade wrote: I'm having the same trouble which seems to be reported in this thread (I'm not running Aquamacs though, just GNU Emacs under Linux, with orgmode v7.4): http://www.mail-archive.com/emacs-orgmode@gnu.org/msg28752.html I've followed tutorials, and orgmode

[O] beamer export questions

2011-05-24 Thread John Hendy
Hi, I've fiddled with org-mode and beamer before successfully, but it's been a while. I'm having a few issues i don't understand. This is currently my header: --- #+DATE: 2011-05-25 #+OPTIONS: H:2 num:t toc:nil @:t ::t |:t ^:t -:t f:t *:t :t #+OPTIONS: TeX:t LaTeX:t author:nil

Re: [O] org babel support for tcl and awk

2011-05-24 Thread Sebastien Vauban
Hi Eric(s), Eric Schulte wrote: Eric S Fraga e.fr...@ucl.ac.uk writes: this is great to see as I use awk quite often. What is involved in extending this to be able to run an awk script on input from within the org file (output of another babel block, for instance, as my typical use of awk is

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread Thomas S. Dye
John Hendy jw.he...@gmail.com writes: On Tue, May 24, 2011 at 2:25 PM, Nick Dokos nicholas.do...@hp.com wrote: John Hendy jw.he...@gmail.com wrote: On Tue, May 24, 2011 at 11:44 AM, Sebastien Vauban wxhgmqzgw...@spammotel.com wrote: Hi John, John Hendy wrote: I can

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread Nick Dokos
John Hendy jw.he...@gmail.com wrote: The opening brace on the \scriptsize line confuses the exporter and it leaves the table alone. Adding a commented-out closing brace unconfuses it. Nick Footnotes: [fn:1] Maybe I should add it to the FAQ? Perhaps

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread Nick Dokos
Thomas S. Dye t...@tsdye.com wrote: This appears to work for tabular environments only. When I add a caption the table is set normalsize and the text following it is set scriptsize. Or, am I doing something wrong? Oy, vey: I don't think you are doing anything wrong - I get the same

Re: [O] orgmode/beamer - won't export blocks

2011-05-24 Thread Eric S Fraga
Benjamin Slade wrote: I'm having the same trouble which seems to be reported in this thread (I'm not running Aquamacs though, just GNU Emacs under Linux, with orgmode v7.4): http://www.mail-archive.com/emacs-orgmode@gnu.org/msg28752.html Benjamin, But that is quite old. That thread ended

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread Nick Dokos
Nick Dokos nicholas.do...@hp.com wrote: Thomas S. Dye t...@tsdye.com wrote: This appears to work for tabular environments only. When I add a caption the table is set normalsize and the text following it is set scriptsize. Or, am I doing something wrong? Oy, vey: I don't think

Re: [O] beamer export questions

2011-05-24 Thread Eric S Fraga
John Hendy jw.he...@gmail.com writes: Hi, I've fiddled with org-mode and beamer before successfully, but it's been a while. I'm having a few issues i don't understand. This is currently my header: --- #+DATE: 2011-05-25 #+OPTIONS: H:2 num:t toc:nil @:t ::t |:t ^:t -:t f:t *:t :t

Re: [O] Passing font size to exported LaTeX table

2011-05-24 Thread Nick Dokos
[Fat-fingered it and sent it prematurely - sorry about that] Nick Dokos nicholas.do...@hp.com wrote: Nick Dokos nicholas.do...@hp.com wrote: Thomas S. Dye t...@tsdye.com wrote: This appears to work for tabular environments only. When I add a caption the table is set normalsize

Re: [O] beamer export questions

2011-05-24 Thread suvayu ali
On Tue, May 24, 2011 at 2:15 PM, Eric S Fraga e.fr...@ucl.ac.uk wrote: What beamer theme are you using?  Have you tried any others?  Check out the beamer manual and the web pages for alternatives. This might be of help. http://www.hartwork.org/beamer-theme-matrix/ -- Suvayu Open source is

[O] org-contacts: error on message startup

2011-05-24 Thread Sven Bretfeld
Hi all Just trying to use org-contacts. There is an error for me whenever I start a new message: Debugger entered--Lisp error: (void-variable completion-at-point-functions) add-to-list(completion-at-point-functions org-contacts-message-complete-function) (lambda nil (add-to-list (quote

Re: [O] org babel support for tcl and awk

2011-05-24 Thread Eric Schulte
Sebastien Vauban wxhgmqzgw...@spammotel.com writes: Hi Eric(s), Eric Schulte wrote: Eric S Fraga e.fr...@ucl.ac.uk writes: this is great to see as I use awk quite often. What is involved in extending this to be able to run an awk script on input from within the org file (output of another

Re: [O] org-contacts: error on message startup

2011-05-24 Thread Nick Dokos
Sven Bretfeld sven.bretf...@gmx.ch wrote: Hi all Just trying to use org-contacts. There is an error for me whenever I start a new message: Debugger entered--Lisp error: (void-variable completion-at-point-functions) add-to-list(completion-at-point-functions

Re: [O] orgmode/beamer - won't export blocks

2011-05-24 Thread Benjamin Slade
Thanks, Sebastien and Eric. I updated to org-mode v7.5 [stable], but I'm still having the same problem. I include below a minimal example and also the snippet of code in my .emacs config file which is relevant. Cheers, Ben. %%Minimal example begins%% #+startup: beamer #+LaTeX_CLASS: beamer

[O] [Announce] A GitHub Issues interface for Org-mode

2011-05-24 Thread Puneeth Chaganti
Hello Orgsters, Issue Tracker integration with Org-mode has been something that a lot of people have been looking for. Being the GitHub addict, that I am, I decided to hack up something that integrates GitHub issues with Org-mode. It presently allows - Importing all open issues from a project

[O] [bug] corrupted export

2011-05-24 Thread Samuel Wales
The following exports to HTML and ASCII incorrectly. The line starting Among is not exported in The following exports to HTML and ASCII incorrectly. The line starting Among is not exported using c-c c-e A or programmatically to HTML in Org-mode version 7.5 (release_7.5.304.g2f5f9). * List