Re: [O] bulk org-agenda-do-date-later problem OMG BACKTRACE ATTACHED

2014-01-05 Thread Douglas
That worked. Thanks for explaining that. 1 pushed the entry one day forward, or to today if the entry was prior to yesterday. I followed the directions in Feedback, so I believe the backtrace was from uncompiled code. I don't know why it wasn't sending. Douglas On 1/5/14 7:56 PM, Nick Doko

[O] help with porting babel example on worg to latest version

2014-01-05 Thread Christian Wittern
Hi there, I am trying to understand how to use information from an org table as input for a babel function. For this purpose, I looked at the example at http://orgmode.org/worg/org-contrib/babel/intro.html#arguments-to-source-code-blocks It seems that this is using the old syntax, eg. #+tblna

Re: [O] bulk org-agenda-do-date-later problem OMG BACKTRACE ATTACHED

2014-01-05 Thread Nick Dokos
Douglas writes: > The backtrace is attached. I am trying to bulk push org-agenda entries one > day later in the agenda using org-agenda-do-date-later. I'm trying to change > the timestamp of these > tasks. I am not using "SCHEDULED: [timestamp]". .emacs has not been included > due to an abu

Re: [O] Export each top level heading to separate file

2014-01-05 Thread Marvin Doyley
This may help, but I can’t take the credit. Someone in this forum wrote this for me several years ago. Cheers, M ;; turn header into file (defun turn-headline-into-org-mode-link () "Replace word at point by an Org mode link." (interactive) (when (org-at-heading-p) (let ((hl-text (nth 4 (or

[O] bulk org-agenda-do-date-later problem OMG BACKTRACE ATTACHED

2014-01-05 Thread Douglas
xts '(("python" . "py") ("emacs-lisp" . "el")) org-confirm-elisp-link-function 'yes-or-no-p org-metadown-hook '(org-babel-pop-to-session-maybe) org-babel-load-languages '((sh . true) (python . true)) org-agenda-files '( //excised due to personal info ) org-clock-out-hook '(org-clock-remove-empty-clock-drawer) ) bulkorgagendadodatelater_backtrace-20140105 Description: Binary data

[O] bulk org-agenda-do-date-later problem WITH BACKTRACE

2014-01-05 Thread Douglas
To: emacs-orgmode@gnu.org Subject: Bug: org-agenda bulk org-agenda-do-date-later [8.2.5 (8.2.5-dist @ /Applications/Emacs.app/Contents/Resources/site-lisp/)] From: rocker --text follows this line-- Users and Devs, The backtrace is below REALLY. I am trying to bulk push org-agenda entries on

[O] bulk org-agenda-do-date-later problem

2014-01-05 Thread Douglas
To: emacs-orgmode@gnu.org Subject: Bug: org-agenda bulk org-agenda-do-date-later [8.2.5 (8.2.5-dist @ /Applications/Emacs.app/Contents/Resources/site-lisp/)] From: rocker --text follows this line-- Users and Devs, The backtrace is below. I am trying to bulk push org-agenda entries one day l

Re: [O] Export each top level heading to separate file

2014-01-05 Thread Ista Zahn
On Sun, Jan 5, 2014 at 4:56 PM, John Kitchin wrote: > hmm.. I don't know if it was a bug, I ran the code on my system before > sending it, and it worked for me ;) Your original code ran for me as well, but it inserted '::EXPORT_FILE_NAME::' where it should be just ':EXPORT_FILE_NAME:' I am glad

Re: [O] different achiving mode

2014-01-05 Thread Alexander Baier
On 2014-01-04 23:39 David Belohrad wrote: > Hi Bastien, > > learning recently new things about org mode i think i have requested a > bullshit. Basically the idea was to somehow 'retain' the project tree, > or at least be able to restore its form from archive when needed. Seeing > complexity of this

Re: [O] [RFC] About `org-export-with-\(fixed-width\|tables\)'

2014-01-05 Thread Nicolas Goaziou
Hello, Florian Beck writes: > Works nicely. Thanks. Applied then. Regards, -- Nicolas Goaziou

Re: [O] Export each top level heading to separate file

2014-01-05 Thread John Kitchin
hmm.. I don't know if it was a bug, I ran the code on my system before sending it, and it worked for me ;) I am glad you figured it out on your system. you could avoid the double if statements like this: (defun my-exp-headings-to-markdown () "Export each top-level heading to markdown." (inter

Re: [O] email -> TODO items?

2014-01-05 Thread John Kitchin
Maybe you could use some online service like Remember the Milk that offers an rss-feed for your todos, and use org-feed to pull them in to an org file. you can send emails to RTM of tasks. org-feed already handles the file duplication issue. another option might be: https://zapier.com/zapbook/emai

[O] org-babel-gnuplot-quote-tsv-field does not work; org-plot-quote-tsv-field does though

2014-01-05 Thread Miguel Ruiz
Hi, I cannot get temp data file from org-babel-gnuplot with quoted row labels. I have tried org-plot/gnuplot and it provides a correct temp data file but it freezes so it is no useful by now. My test table: | Sede | Max cites | H-index | |---+---+-| | Chile |

Re: [O] Local key binding gone wrong!

2014-01-05 Thread Sharon Kimble
Nick Dokos wrote: >Sharon Kimble writes: >> Whilst trying to set a key binding to archive 'DONE' todo items, by >> trying to bind F13 [aka CapsLock] to '2', so the finished intended >> result would have been - F13 + 2 = DONE & ARCHIVED. This is a global >> key binding, although I was trying for a

Re: [O] [PATCH] Re: \newpage in HTML export

2014-01-05 Thread Suvayu Ali
On Sat, Jan 04, 2014 at 11:40:10AM +0100, Bastien wrote: > Hi Andreas, > > Andreas Leha writes: > > > It is a very small thing and I am very much happy with using a filter based > > approach here. > > One thing really worth improving is the tutorials around filters on > Worg. Or maybe: let's c

Re: [O] email -> TODO items?

2014-01-05 Thread Suvayu Ali
On Sun, Jan 05, 2014 at 09:46:58AM -0500, Peter Davis wrote: > I've been using org-mode for a few years, but only for a few limited > purposes. I keep TODO lists for work-related stuff, and I compose blog > posts which I then export to HTML, cut from the browser and paste into > Blogger. > > Somet

Re: [O] Local key binding gone wrong!

2014-01-05 Thread Sharon Kimble
Sharon Kimble wrote: >Thanks Marc. >Here it is - >(if (eq window-system 'x) >(shell-command "xmodmap -e 'clear Lock' -e 'keycode 66 = F13'")) >(global-set-key [f13] 'execute-extended-command) ;;sets caps-lock as >meta-key > >Sharon. > >On Sun, 05 Jan 2014 20:36:20 +0100 >Marc-Oliver Ihm wro

Re: [O] Local key binding gone wrong!

2014-01-05 Thread Sharon Kimble
Thanks Marc. Here it is - (if (eq window-system 'x) (shell-command "xmodmap -e 'clear Lock' -e 'keycode 66 = F13'")) (global-set-key [f13] 'execute-extended-command) ;;sets caps-lock as meta-key Sharon. On Sun, 05 Jan 2014 20:36:20 +0100 Marc-Oliver Ihm wrote: > Hi Sharon, > > not sure,

Re: [O] Export each top level heading to separate file

2014-01-05 Thread Ista Zahn
On Sun, Jan 5, 2014 at 8:40 AM, John Kitchin wrote: > Try this: > > > (org-map-entries > (lambda () >(let ((level (nth 1 (org-heading-components))) > (title (nth 4 (org-heading-components > (if (= level 1) >

Re: [O] Local key binding gone wrong!

2014-01-05 Thread Nick Dokos
Sharon Kimble writes: > Whilst trying to set a key binding to archive 'DONE' todo items, by > trying to bind F13 [aka CapsLock] to '2', so the finished intended > result would have been - F13 + 2 = DONE & ARCHIVED. This is a global > key binding, although I was trying for a local one. How do I kno

Re: [O] Local key binding gone wrong!

2014-01-05 Thread Marc-Oliver Ihm
Hi Sharon, not sure, what happened in your setup. Maybe things can get clearer, if you would supply the line of lisp that you employed to bind F13. Was it something like (global-set-key [(f13)] 'org-archive-subtree) ? regards Marc Am 05.01.2014 04:35, schrieb Sharon Kimble: Whilst trying t

Re: [O] Export each top level heading to separate file

2014-01-05 Thread Charles Millar
Alan, On 1/4/2014 6:41 PM, Alan L Tyree wrote: Use properties to set the export file name -- example: :PROPERTIES: :EXPORT_TITLE: Internet banking fraud :EXPORT_FILE_NAME: internet-fraud :EXPORT_AUTHOR: Alan L Tyree :Citation: (2011) 22 JBFLP 214 :EXPORT_OPTIONS: num:nil toc:nil :E

Re: [O] [RFC] About `org-export-with-\(fixed-width\|tables\)'

2014-01-05 Thread Florian Beck
Patch attached. WDYT? Works nicely. Thanks. Regards,

Re: [O] Implementing Org-mode tools in languages other than ELISP

2014-01-05 Thread Daniel Clemente
> > I dream of having a general Python parser for Org mode files, knowing > every bit about the current syntax for Org files, surrounded by enough > Python machinery to make it useful. > Try PyOrgMode (https://github.com/bjonnh/PyOrgMode), it works for some files (but still needs corrections: i

Re: [O] feature request/discussion: org-forms

2014-01-05 Thread khaije rock
On Jan 4, 2014 9:21 AM, "Bastien" wrote: > > Hi Khaije, > > khaije rock writes: > > > I've found on some occasions that I wish for the ability to simply > > export my org-mode notes, (procedural instructions, status/inventory > > tables, work log) into a simple fill-able form, (w/ content derive

Re: [O] problem of path in using ox-bibtex

2014-01-05 Thread Julian Gehring
Hi Joseph, Have you tried to specify the full path without the expansion of '~' (i.e. replacing the "~" with "/home/USER/" or equivalent)? At least, this seems to eliminate the error message of bibtex2html failing. Best wishes Julian On 01/05/2014 09:35 AM, Joseph Vidal-Rosset wrote: Hell

[O] email -> TODO items?

2014-01-05 Thread Peter Davis
I've been using org-mode for a few years, but only for a few limited purposes. I keep TODO lists for work-related stuff, and I compose blog posts which I then export to HTML, cut from the browser and paste into Blogger. Sometimes it's much quicker and easier to email myself notes on things to do.

Re: [O] Export each top level heading to separate file

2014-01-05 Thread John Kitchin
Try this: (org-map-entries (lambda () (let ((level (nth 1 (org-heading-components))) (title (nth 4 (org-heading-components (if (= level 1) (org-entry-put (point) ":EXPORT_FILE_NAME:" title nil nil) It

Re: [O] org-babel-gnuplot-quote-tsv-field does not work properly (quotes); org-plot-quote-tsv-field does though

2014-01-05 Thread Bastien
Miguel Ruiz writes: > Thank you, Bastien. I'd prefer some of you writes the changelog > entry; the patch is attached. Applied, thanks. -- Bastien

Re: [O] org-babel-gnuplot-quote-tsv-field does not work properly (quotes); org-plot-quote-tsv-field does though

2014-01-05 Thread Miguel Ruiz
Thank you, Bastien. I'd prefer some of you writes the changelog entry; the patch is attached. El Domingo 5 de enero de 2014 12:51, Bastien escribió: Hi Miguel, Miguel Ruiz writes: > Is it *this* enough: > > diff --git a/lisp/ob-gnuplot.el b/lisp/ob-gnuplot.el > index cc9186b..426077b 10

Re: [O] org-babel-gnuplot-quote-tsv-field does not work properly (quotes); org-plot-quote-tsv-field does though

2014-01-05 Thread Bastien
Hi Miguel, Miguel Ruiz writes: > Is it *this* enough: > > diff --git a/lisp/ob-gnuplot.el b/lisp/ob-gnuplot.el > index cc9186b..426077b 100644 > --- a/lisp/ob-gnuplot.el > +++ b/lisp/ob-gnuplot.el Thanks for the fix -- could you format it with git format-patch and add a proper ChangeLog? See h

Re: [O] org-babel-gnuplot-quote-tsv-field does not work properly (quotes); org-plot-quote-tsv-field does though

2014-01-05 Thread Miguel Ruiz
Is it *this* enough: diff --git a/lisp/ob-gnuplot.el b/lisp/ob-gnuplot.el index cc9186b..426077b 100644 --- a/lisp/ob-gnuplot.el +++ b/lisp/ob-gnuplot.el @@ -253,7 +253,7 @@ then create one.  Return the initialized session.  The current     (org-babel-gnuplot-quote-timestamp-field s)    (

Re: [O] [PATCH] Re: \newpage in HTML export

2014-01-05 Thread Bastien
"Sebastien Vauban" writes: > The thing is that, IMHO, there are 2 types of filters required: > > - filters for my own additions to Org syntax, that I don't need (or > want) to share with anybody > > - filters for "missing" Org syntax which seems a need that many users > have at some point >

Re: [O] Agenda view: do not display tasks of projects scheduled in the future

2014-01-05 Thread Bastien
Hi Alan, Alan Schmitt writes: > By the way, is there a place where the functions such as > "org-get-scheduled-time" are documented? Or does one have to look at the > source? Commands (i.e. interactive functions) are documented here: http://orgmode.org/worg/doc.html#commands but for functions y

Re: [O] Agenda view: do not display tasks of projects scheduled in the future

2014-01-05 Thread Alan Schmitt
Hi Bastien, Bastien writes: > Hi Alan, > > Alan Schmitt writes: > >> #+BEGIN_SRC emacs-lisp >> (defun as/skip-future-tasks () >> "Skip future tasks" >> (save-restriction >> (widen) >> (let ((subtree-end (save-excursion (org-end-of-subtree t >> (cond >>((org-entry-s

Re: [O] [PATCH] Re: \newpage in HTML export

2014-01-05 Thread Sebastien Vauban
Hello Bastien, Bastien wrote: > "Sebastien Vauban" writes: > >> Shouldn't, then, some filters be available by default in core Org? > > I don't think so: my understanding is that "default filters" would > then be implemented without relying on filters -- so filters are > really optional by nature.

[O] org-babel-gnuplot-quote-tsv-field does not work properly (quotes); org-plot-quote-tsv-field does though

2014-01-05 Thread Miguel Ruiz
Hi, I cannot get temp data file from org-babel-gnuplot with quoted row labels. I have tried org-plot/gnuplot and it provides a correct temp data file but it freezes so it is no useful by now. My test table: | Sede  | Max cites | H-index | |---+---+-| | Chile |  

[O] problem of path in using ox-bibtex

2014-01-05 Thread Joseph Vidal-Rosset
Hello the list, Is it possible to define a single and unique path by default when one use ox-bibtex? I meet the following problem. At the end of an org file, in order to use ox-bibtex to get bibliographical references , I have this line: #+BIBLIOGRAPHY: references plain option:-a limit:t It me

[O] cite with reftex for html and latex export

2014-01-05 Thread Joseph Vidal-Rosset
Hello, I believe that this post is not without link with the thread "HTML Export doesn't handle internal link with post. In order to obtain via reftex a code which produces links to reference in "plain" style, I have put in my init.el file the following code: (defun org-mode-reftex-setup () (