Re: [O] using gnuplot's "splot" and "every" commands on org-mode table data

2013-09-23 Thread Eric Schulte
Paul Stansell writes: > Hi Eric, > > There appears to be a slight bug in the way gnuplot handles blocked > data with missing entries. > > An example is provided in the org script at then end of this note. > > In the code block gnuplot_1 the use of ':missing "?"' seems to cause > the exported data

Re: [O] [Babel] Lisp error: (wrong-type-argument listp hline)

2013-09-23 Thread Eric Schulte
Hi Seb, I think you're confused by headers which are re-added by the colnames machinery. See the following which returns scalar output avoiding any colnames post-processing. #+Property: results scalar #+name: table | Key | Value | |-+---| | ABJ | 1 | | DEK | 2 | #+begin_src ema

Re: [O] [PATCH] Markdown: add publishing in markdown

2013-09-23 Thread Nicolas Goaziou
Hello, Brice Waegenire writes: > * lisp/ox-md.el > > Add the possibility to publish in Markdown by using the function > org-md-publish-to-md. > > TINYCHANGE Thank you for your patch. Would you mind posting it again using git format-patch? Also the commit message could be: ox-md: Add publis

Re: [O] Non-interactive org-schedule

2013-09-23 Thread Marcin Borkowski
Dnia 2013-09-23, o godz. 21:46:10 Marcin Borkowski napisał(a): > [...] > (I'm writing a custom org-insert-habit function, so that I can > [...] #+BEGIN_SHAMELESS_PLUG Just in case someone might need something like this. (Not that it's difficult, but why reinvent the wheel.) The code is ugly

Re: [O] Non-interactive org-schedule

2013-09-23 Thread Marcin Borkowski
Dnia 2013-09-23, o godz. 12:46:35 Marcin Borkowski napisał(a): > I'd like to call org-schedule from an Elisp function. I'd like it to, > say, insert today's date by default, and as a bonus, a repeater (I'm > writing a custom org-insert-habit function, so that I can automate > setting the STYLE a

Re: [O] [OT] mail followup to (was Re: M-x fill-region equivalent for lists?)

2013-09-23 Thread Eric S Fraga
Sebastien Vauban writes: [...] > Yes, you must have something along that line: > > ;; addresses to prune (disable `Cc:' to myself) when doing wide replies > (setq message-dont-reply-to-names gnus-ignored-from-addresses) I do indeed! Gnus has everything basically... :-) Back to org now altho

[O] Bug: subtree LaTeX export problems after upgrade [8.1 (8.1-elpa @ /home/brian/.emacs.d/elpa/org-20130906/)]

2013-09-23 Thread Brian Zbriger
I just upgraded to org-mode 8.1 using 'package-install' and I think I am encountering some bugs when exporting to LaTeX. I am using the following tags in the header of my orgmode files: #+AUTHOR:[my name] #+DATE: %B %e, %Y If I am exporting an entire buffer, "%B %e, %Y" now shows up verb

Re: [O] Bug: subtree LaTeX export problems after upgrade [8.1 (8.1-elpa @ /home/brian/.emacs.d/elpa/org-20130906/)]

2013-09-23 Thread Brian Zbriger
Please disregard my recent bug report re: LaTeX exports... the problem was entirely on my end.

[O] [PATCH] Markdown: add publishing in markdown

2013-09-23 Thread Brice Waegenire
* lisp/ox-md.el Add the possibility to publish in Markdown by using the function org-md-publish-to-md. TINYCHANGE --- diff --git a/lisp/ox-md.el b/lisp/ox-md.el index f7e4875..71759ac 100644 --- a/lisp/ox-md.el +++ b/lisp/ox-md.el @@ -31,7 +31,7 @@ (eval-when-compile (require 'cl)) (require '

[O] [PATCH] Markdown: Add publishing in markdown

2013-09-23 Thread Brice Waegenire
* lisp/ox-md.el Add the possibility to publish in Markdown by using the function org-md-publish-to-md. TINYCHANGE --- diff --git a/lisp/ox-md.el b/lisp/ox-md.el index f7e4875..71759ac 100644 --- a/lisp/ox-md.el +++ b/lisp/ox-md.el @@ -31,7 +31,7 @@ (eval-when-compile (require 'cl)) (require '

Re: [O] A custom exporter

2013-09-23 Thread Josiah Schwab
> I'm toying with an idea of writing my own exporter backend, based on the > html one. My question is: what should I read to learn how to do this? > I am aware of http://orgmode.org/worg/exporters/ox-overview.html, but > ox-\(element-\)?docstrings look a bit scary. I thought that reading > the s

Re: [O] org mode R remote code evaluation

2013-09-23 Thread Alexander Vorobiev
The ":results output" doesn't help in my setup (I'm on Windows, the remote system is linux, access is via putty/plink) #+BEGIN_SRC sh :results output :dir /grid: ls #+END_SRC executing Sh code block... Tramp: Encoding region using function `base64-encode-region'...done Tramp: Decoding region in

Re: [O] using gnuplot's "splot" and "every" commands on org-mode table data

2013-09-23 Thread Paul Stansell
Hi Eric, There appears to be a slight bug in the way gnuplot handles blocked data with missing entries. An example is provided in the org script at then end of this note. In the code block gnuplot_1 the use of ':missing "?"' seems to cause the exported data file to lack the blanks lines that are

[O] [Babel] Lisp error: (wrong-type-argument listp hline)

2013-09-23 Thread Sebastien Vauban
Hello Eric, This ECM does generate an error, when run with ":hlines yes". #+name: table | Key | Value | |-+---| | ABJ | 1 | | DEK | 2 | As you can see, there is one header and one horizontal line in the input table. * Set :hlines to "no" Adding `:hlines no' strips the horizonta

Re: [O] C-u C-u C-c ! inserts an active timestamp.

2013-09-23 Thread Suvayu Ali
On Mon, Sep 23, 2013 at 11:16:25AM +0200, Sebastien Vauban wrote: > Hello Suvayu, > > Suvayu Ali wrote: > > On Mon, Sep 23, 2013 at 10:51:33AM +0200, Nicolas Richard wrote: > >> Carsten Dominik writes: > >> > >> > Applied > >> > >> I noticed that the whole mail went into the commit msg (commit

[O] A custom exporter

2013-09-23 Thread Marcin Borkowski
Hi all, I'm toying with an idea of writing my own exporter backend, based on the html one. My question is: what should I read to learn how to do this? I am aware of http://orgmode.org/worg/exporters/ox-overview.html, but ox-\(element-\)?docstrings look a bit scary. I thought that reading the sou

[O] Non-interactive org-schedule

2013-09-23 Thread Marcin Borkowski
Hi all, I'd like to call org-schedule from an Elisp function. I'd like it to, say, insert today's date by default, and as a bonus, a repeater (I'm writing a custom org-insert-habit function, so that I can automate setting the STYLE and LOGGING proerties). Calling just (org-schedule) did not work

Re: [O] Bug: Wrong type argument: arrayp, nil when exporting to beamer [8.2 (8.2-elpa @ /Users/jason/.emacs.d/elpa/org-20130919/)]

2013-09-23 Thread Nicolas Goaziou
Hello, Jason Lewis writes: > Thanks. The error message is not very clear and this is an easy > mistake for a beginner to make. I think that nesting frames is a strange error to make. Anyway, here is the relevant part of the manual: - Headlines become frames when their level is equal to

[O] convenience sort function

2013-09-23 Thread Christian Wittern
Dear org users, I would like to define a convenience sort function to sort on a certain property (e.g PRE), which I can assign to a key, so that I can avoid having to type C-^ r PRE It seems that I want to call org-sort-entries, which has the following signature: (defun org-sort-entries

Re: [O] File-local export filters

2013-09-23 Thread Rasmus
Hi Carsten, Carsten Dominik writes: > Have I overlooked an easy way to do this, or would this be > something others would like to use as well. Can't you identify it by the folder name? Or with a special #+DESCRIPTION or #+KEYWORDS? Like this: #+TITLE: MySpecialFile.org #+begin_src emacs-li

Re: [O] C-u C-u C-c ! inserts an active timestamp.

2013-09-23 Thread Sebastien Vauban
Hello Suvayu, Suvayu Ali wrote: > On Mon, Sep 23, 2013 at 10:51:33AM +0200, Nicolas Richard wrote: >> Carsten Dominik writes: >> >> > Applied >> >> I noticed that the whole mail went into the commit msg (commit >> 12de6223dcd736c0958eca874def052b407ff5d1) ; did I send the patch >> incorrectly ?

Re: [O] C-u C-u C-c ! inserts an active timestamp.

2013-09-23 Thread Suvayu Ali
On Mon, Sep 23, 2013 at 10:51:33AM +0200, Nicolas Richard wrote: > Carsten Dominik writes: > > > Applied > > I noticed that the whole mail went into the commit msg (commit > 12de6223dcd736c0958eca874def052b407ff5d1) ; did I send the patch > incorrectly ? > > I used git format-patch then inserte

Re: [O] C-u C-u C-c ! inserts an active timestamp.

2013-09-23 Thread Nicolas Richard
Carsten Dominik writes: > Applied I noticed that the whole mail went into the commit msg (commit 12de6223dcd736c0958eca874def052b407ff5d1) ; did I send the patch incorrectly ? I used git format-patch then inserted the result at the end of the email I wrote. The page http://orgmode.org/worg/org-

Re: [O] Strange Behaviour while rescheduling date

2013-09-23 Thread G. Martin Butz
Hello Sebastian, Am 23.09.2013 09:46, schrieb Sebastien Vauban: Hello, "G. Martin Butz" wrote: In case I try to reschedule a date from the weekly agenda view I get the following backtrace; I am under the impression, that this seems not to be the bug, which I have tried to describe in the last

Re: [O] Strange Behaviour while rescheduling date

2013-09-23 Thread Carsten Dominik
On 23.9.2013, at 09:46, "Sebastien Vauban" wrote: > Hello, > > "G. Martin Butz" wrote: >> In case I try to reschedule a date from the weekly agenda view I get the >> following backtrace; I am under the impression, that this seems not to be the >> bug, which I have tried to describe in the last

Re: [O] Strange Behaviour while rescheduling date

2013-09-23 Thread Sebastien Vauban
Hello, "G. Martin Butz" wrote: > In case I try to reschedule a date from the weekly agenda view I get the > following backtrace; I am under the impression, that this seems not to be the > bug, which I have tried to describe in the last message, but at least it > shows, that something is wrong (wit

[O] [BUG] in Release 8.2 - editing code in indirect buffer

2013-09-23 Thread Rainer M Krug
I just resend this bug report which has been confirmed by Ista Zahn. Updated via git ust now: Org-mode version 8.2 (release_8.2-14-ge5f16b @ /Users/rainerkrug/.emacs.d/org-mode/lisp/) When starting to edit a code block via C-c ' everything works as expected and the code block is highlighted and

Re: [O] [Babel] Padlines

2013-09-23 Thread Sebastien Vauban
Hi Eric, Eric Schulte wrote: > "Sebastien Vauban" writes: >> Eric Schulte wrote: >>> aditya siram writes: What's the rationale for having padlines by default in tangled source? It generates wrong programs for languages where whitespace is significant (Haskell) and, for me, doesn't