Re: [O] Release 9.0 test failed: test-ob/indented-cached-org-bracket-link

2016-11-19 Thread Charles C. Berry
On Sat, 19 Nov 2016, John Kitchin wrote: I have also seen this error on my mac. I guess it is from the trailing slash as you suggest: echo $TMPDIR /var/folders/5q/lllv2yf95hg_n6h6kjttbmdwgn/T/ So, : testdir=${TMPDIR%/}/tmp-orgtest in mk/default.mk would handle this on my mac, but I

[O] translating event sexps to org for org-caldav

2016-11-19 Thread Myles English
Hello, After the recent discussion about org-caldav I thought I would give it a try. Unfortunately it won't work for my main diary that uses a lot of sexps[fn:1] >From the org-caldav github page[fn:2] : """However, sexp-entries are insanely flexible, and there are limits as to what the icalend

Re: [O] Formatting dates in org-html postamble

2016-11-19 Thread Nicolas Goaziou
Hello, Pavel Panchekha writes: > I have > > #+TITLE: title here >> > > #+DATE: <2016-10-20> >> > > in an org file, with no other "#+" lines set. > > In my configuration file, I have set > > (setf org-html-postamble-format >> (list >>(list >> "en" >> "By %a on >> %d

Re: [O] Bug: org-export-to-buffer throws error if buffer is empty or contains empty lines only [9.0 (release_9.0-6-gf56456)]

2016-11-19 Thread Nicolas Goaziou
Hello, "Stefan-W. Hahn" writes: > Hello, > > when exporting buffers containing nothing or just empty lines, like: > > #+BEGIN_SRC emacs-lisp > (with-temp-buffer > (org-mode) > (insert "") > (org-export-to-buffer 'html "*Formatted Copy*" nil nil t t)) > #+END_SRC > > > then org-export-to-bu

[O] [PATCH] org-mac-link: Add autoload cookies for all commands

2016-11-19 Thread Chunyang Xu
Hi, I would like to add autoload cookies for commands in org-mac-link.el, so I don't have to autoload them manually in my init.el. >From 5e00fa82001b57051770f0e4854e03ece39cc68d Mon Sep 17 00:00:00 2001 From: Chunyang Xu Date: Wed, 16 Nov 2016 21:30:13 +0800 Subject: [PATCH] org-mac-link: Add au

[O] How to format dates in org-table-export (Format: orgtbl-to-csv)

2016-11-19 Thread debaditya
Hi, I am trying to export an org table to csv, which contain dates in the format <%m-%d-%Y>, this i have achieved by including (custom-set-variables '(org-time-stamp-custom-formats (quote ("<%m-%d-%Y>" . "<%Y-%m-%d>" in my init file. Now as this is an overlay, when I am trying to export

Re: [O] Release 9.0 test failed: test-ob/indented-cached-org-bracket-link

2016-11-19 Thread John Kitchin
I have also seen this error on my mac. I guess it is from the trailing slash as you suggest: > echo $TMPDIR /var/folders/5q/lllv2yf95hg_n6h6kjttbmdwgn/T/ Achim Gratz writes: > Charles C. Berry writes: >> Doing this with `make test', I see that default-directory is let bound to >> >> "/var/f

Re: [O] Formatting dates in org-html postamble

2016-11-19 Thread Pavel Panchekha
I'm sorry, let me give a full bug report: I have #+TITLE: title here > #+DATE: <2016-10-20> > in an org file, with no other "#+" lines set. In my configuration file, I have set (setf org-html-postamble-format > (list >(list > "en" > "By %a on > %d.\n"))) > (setf

Re: [O] Release 9.0 test failed: test-ob/indented-cached-org-bracket-link

2016-11-19 Thread Achim Gratz
Charles C. Berry writes: > Doing this with `make test', I see that default-directory is let bound to > > "/var/folders/kb/2hchpbyj7lb6z76l0q73w_fhgn/T//tmp-orgtest/" > > and (concat default-directory "test.txt") will retain the double slash. Not to sound facetious, but it seems that the make v

Re: [O] Release 9.0 test failed: test-ob/indented-cached-org-bracket-link

2016-11-19 Thread Charles C. Berry
On Fri, 18 Nov 2016, Nicolas Goaziou wrote: Hello, "Charles C. Berry" writes: On Fri, 18 Nov 2016, Nicolas Goaziou wrote: Hello, David Talmage writes: I built org 9.0 on my Mac today. 'make test' reported one failed test. I don't know if it is important or not. Please advise me. 'm

[O] Bug: org-export-to-buffer throws error if buffer is empty or contains empty lines only [9.0 (release_9.0-6-gf56456)]

2016-11-19 Thread Stefan-W. Hahn
Hello, when exporting buffers containing nothing or just empty lines, like: #+BEGIN_SRC emacs-lisp (with-temp-buffer (org-mode) (insert "") (org-export-to-buffer 'html "*Formatted Copy*" nil nil t t)) #+END_SRC then org-export-to-buffer throws an error: #+BEGIN_QUOTE Debugger entered--Lis

Re: [O] Formatting dates in org-html postamble

2016-11-19 Thread Nicolas Goaziou
Hello, Pavel Panchekha writes: > I've been trying to set the date format in the HTML postamble. It looks > like a date given in #+DATE is not being formatted according to the date > format specification, but if no #+DATE is given, the format specification > is used. > > Is this intended behavior

Re: [O] project website from org

2016-11-19 Thread Thibault Marin
Hi, I recently research that a little. I think a good place to start is the worg tutorial at: http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.html. I decided to use org without jekyll to avoid intermediaries, but that is one option. I found the following blog posts about bloggi

[O] project website from org

2016-11-19 Thread Julian M. Burgos
Dear list, I have given the task to set up a website to display the research in one of our projects. I have little experience with html and website maintenance, so I think this would be a good opportunity to learn. I would like to create the content for the website in org-mode (of course). Do y

[O] Formatting dates in org-html postamble

2016-11-19 Thread Pavel Panchekha
I've been trying to set the date format in the HTML postamble. It looks like a date given in #+DATE is not being formatted according to the date format specification, but if no #+DATE is given, the format specification is used. Is this intended behavior—should I write formatted dates in #+DATE? —