Re: [PATCH] manual: Fix publish stylesheet

2021-04-18 Thread Erik Hetzner
Oops, noticed a few additional problems. See attached patch. >From 14de709f224a45cb1beee5b1c1444b1454161891 Mon Sep 17 00:00:00 2001 From: Erik Hetzner Date: Sun, 18 Apr 2021 21:47:04 -0700 Subject: [PATCH] manual: Fix publish options * doc/org-manual.org (Publishing sample configurat

[PATCH] manual: Fix publish stylesheet

2021-04-18 Thread Erik Hetzner
* doc/org-manual.org (Publishing sample configuration): * doc/org-guide.org (Publishing): Fix stylesheet setting in publish: :style is not a valid option; use :html-head instead. --- A small fix for the manual which I believe is necessary (:style does not appear to be a valid option any more). My

Re: [PATCH] org-id: Fix behavior when `org-id-extra-values' is a symbol

2020-07-04 Thread Erik Hetzner
On Sat, 04 Jul 2020 12:32:11 -0700, Erik Hetzner wrote: > > * lisp/org-id.el (org-id-update-id-locations): When > `org-id-extra-values' is a symbol, it should be evaluated as a > variable. > > […] Sorry, got the variable name wrong in the description. That should be `o

[PATCH] org-id: Fix behavior when `org-id-extra-values' is a symbol

2020-07-04 Thread Erik Hetzner
* lisp/org-id.el (org-id-update-id-locations): When `org-id-extra-values' is a symbol, it should be evaluated as a variable. In 37a5020bb, `org-id-update-id-locations' was rewritten, and the functionality to allow the variable `org-id-extra-values' to be a symbol that references another variable w

Re: [O] [PATCH] org-attach: Use relative path for git annex

2016-04-06 Thread Erik Hetzner
changes to this patch, let me know. Thank you! best, Erik On Wed, 06 Apr 2016 06:12:42 -0700, Nicolas Goaziou wrote: > > Hello, > > Erik Hetzner writes: > > > * lisp/org-attach.el (org-attach-annex-get-maybe): Use relative path as > > argument for git annex. Fixes e

[O] [PATCH] org-attach: Use relative path for git annex

2016-02-26 Thread Erik Hetzner
* lisp/org-attach.el (org-attach-annex-get-maybe): Use relative path as argument for git annex. Fixes error in test with version 3 of git annex. --- lisp/org-attach.el | 33 + 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/lisp/org-attach.el b/l

[O] [PATCH] org-attach: Fix git annex test directories

2016-02-14 Thread Erik Hetzner
* testing/lisp/test-org-attach-annex.el: `default-directory' should end in a slash to function properly. This was causing test failures on older versions of git-annex. --- Thanks for bearing with me on getting git-annex to work properly. This fixes an issue with running tests on debian with old

Re: [O] [PATCH] org-attach.el: Get attachments from git annex

2016-02-10 Thread Erik Hetzner
Hi Achim On Tue, 09 Feb 2016 14:19:25 -0800, Achim Gratz wrote: > > > […] > > Well, the best solution would be to have an option for git-annex to > switch off that lockdown thing. Since that's not going to happen soon > or anytime, try something like: > > $(RMR) $(testdir) || { $(CHMOD)

Re: [O] [PATCH] org-attach.el: Get attachments from git annex

2016-02-09 Thread Erik Hetzner
Hi Achim, On Tue, 09 Feb 2016 11:40:54 -0800, Achim Gratz wrote: > > Erik Hetzner writes: > > Sorry - I misunderstood how `org-test-for-executable' works. I’ll fix the > > issue. > > Thanks. > > > As for the rm -rf, it does not work in the way you suggest,

[O] [PATCH] testing/lisp/test-org-attach-annex.el: New file

2016-02-08 Thread Erik Hetzner
b/testing/lisp/test-org-attach-annex.el new file mode 100644 index 000..44b4ad0 --- /dev/null +++ b/testing/lisp/test-org-attach-annex.el @@ -0,0 +1,96 @@ +;;; test-org-annex-attach.el --- Tests for Org Attach with git-annex +;; +;; Copyright (c) 2016 Erik Hetzner +;; Authors: Erik Hetzner

Re: [O] [PATCH] org-attach.el: Get attachments from git annex

2016-02-08 Thread Erik Hetzner
On Sun, 07 Feb 2016 12:48:20 -0800, Achim Gratz wrote: > > Erik Hetzner writes: > > Thank you for all your feedback on this code! I’m really happy with how it > > turned out, and glad it is in master now. > > Please fix the tests to not fail (preferrably not run) if git-

Re: [O] [PATCH] org-attach.el: Get attachments from git annex

2016-02-07 Thread Erik Hetzner
Hi Rasmus and Kyle, On Sat, 06 Feb 2016 04:18:55 -0800, Rasmus wrote: > > Hi Erik and Kyle, > > Sorry for the delay, I was traveling this week. I’m happy with the patch now > and it has been pushed to master. Thank you for all your feedback on this code! I’m really happy with how it turned out,

[O] [PATCH] org-attach.el: Get attachments from git annex

2016-02-03 Thread Erik Hetzner
From: Erik Hetzner * org-attach.el (org-attach-use-annex): New function to check if git annex should be used. (org-attach-annex-get-maybe): New function to get a file from git annex if necessary. (org-attach-annex-auto-get): New defcustom to determine behavior of org-attach-annex-get

Re: [O] make test hangs (master)

2016-02-02 Thread Erik Hetzner
Hi Nicolas, On Tue, 02 Feb 2016 09:49:10 -0800, Nicolas Goaziou wrote: > > Hello, > > Erik Hetzner writes: > > > […] > > > > [ hangs here ] > > FWIW, I cannot reproduce it. Thank you for trying. It’s consistent on my machine, but may be an interacti

Re: [O] [PATCH] org-attach.el: Get attachments from git annex

2016-01-31 Thread Erik Hetzner
Hi Rasmus, Thanks again for the feedback! On Wed, 27 Jan 2016 14:20:59 -0800, Rasmus wrote: > > Hi Erik, > > Thanks for the updated patch! > > A couple of more comments follow. > I hope I’m not being too annoying! Not at all, I appreciate it. > Erik Hetzner writes

[O] [PATCH] org-attach.el: Get attachments from git annex

2016-01-26 Thread Erik Hetzner
h-open-in-emacs () "Open attachment, force opening in Emacs. diff --git a/mk/targets.mk b/mk/targets.mk index d390fdb..cab65cb 100644 --- a/mk/targets.mk +++ b/mk/targets.mk @@ -158,4 +158,6 @@ cleandocs: -$(FIND) doc -name \*~ -exec $(RM) {} \; cleantest: +# git annex makes fi

Re: [O] make test hangs (master)

2016-01-26 Thread Erik Hetzner
On Mon, 25 Jan 2016 21:51:05 -0800, Erik Hetzner wrote: > > Hi all, > > make test is hanging on my environment, on the babel sh tests. […] It turns out the issue is my prompt, that is, the value of the =PS1= environment variable, which contains a lambda (λ, U+03BB). I suspect t

Re: [O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-26 Thread Erik Hetzner
On Mon, 25 Jan 2016 23:40:33 -0800, Kyle Meyer wrote: > > Erik Hetzner writes: > > […] > > * mk/targets.mk: Fix cleantest target to for deleting git annex repos. > ^^ > Typo Thank you

[O] make test hangs (master)

2016-01-25 Thread Erik Hetzner
Hi all, make test is hanging on my environment, on the babel sh tests. Environment: - ubuntu (15.10) - GNU Emacs 24.5.1 (x86_64-pc-linux-gnu, GTK+ Version 3.16.6) of 2015-09-17 on lgw01-52, modified by Debian - org-mode git master (c74b99a75b26f3ee3ee296ba9996afcbd6f915de) The tests that seem t

[O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-25 Thread Erik Hetzner
b02fd 100644 --- a/mk/targets.mk +++ b/mk/targets.mk @@ -158,4 +158,6 @@ cleandocs: -$(FIND) doc -name \*~ -exec $(RM) {} \; cleantest: + # git annex makes files 444, change to user writableso we can delete them + chmod u+w -R $(testdir) $(RMR) $(testdir) diff --git a/t

Re: [O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-25 Thread Erik Hetzner
ul to start > ripping out annex specific code, though the automatic fetching should be > added. I agree, but I think this should be a separate patch. > Erik Hetzner writes: > > > +(defun org-attach-use-annex () > > + "Return non-nil if git annex can be used." &

Re: [O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-24 Thread Erik Hetzner
t files) nil t))) + (path (expand-file-name file attach-dir))) +(org-attach-annex-fetch-maybe path) +(org-open-file path in-emacs))) (defun org-attach-open-in-emacs () "Open attachment, force opening in Emacs. diff --git a/testing/lisp/test-org-attach.el b/testing/lisp/t

Re: [O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-05 Thread Erik Hetzner
Hi Rasmus, On Tue, 05 Jan 2016 01:56:39 -0800, Rasmus wrote: > > Hi Erik, > > > For long prose like this I'd just export the patch (git format-patch) > and attach it to an email like this. But this is also fine... Perhaps > Kyle's method is more pro. Thanks! I’m not sure which seems better

Re: [O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-05 Thread Erik Hetzner
Thanks for the feedback, Kyle! I will make these changes and resubmit. And thanks for the pointer to =git annex find PATH=. I think I can use that to check if a file needs to be fetched. (more below) On Mon, 04 Jan 2016 22:21:41 -0800, Kyle Meyer wrote: > > Thanks for the patch. > > […] > > >

Re: [O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-04 Thread Erik Hetzner
On Mon, 04 Jan 2016 21:09:55 -0800, Erik Hetzner wrote: > > * org-attach.el (org-attach-use-annex): New function to check if git > annex should be used. > (org-annex-open): Automatically fetch attached files from git annex when > opening if appropriate. […] Hi all, I coul

[O] [PATCH] org-attach.el: Fetch attachments from git annex

2016-01-04 Thread Erik Hetzner
* org-attach.el (org-attach-use-annex): New function to check if git annex should be used. (org-annex-open): Automatically fetch attached files from git annex when opening if appropriate. --- lisp/org-attach.el | 41 + 1 file changed, 25 insertions(+),

Re: [O] Favorite way of syncing?

2015-09-11 Thread Erik Hetzner
Hi Tobias, On Fri, 11 Sep 2015 06:59:31 -0700, Tobias Frischholz wrote: > > Hey there! > > I was wondering what is your favorite way of syncing your org files and > everything. > I’ve checked out unison, but I want more of an automated system that > synchronizes my two clients via an SSH serv

Re: [O] emacs & org mode for scholars questions

2015-09-02 Thread Erik Hetzner
Hi Rasmus, On Wed, 02 Sep 2015 04:00:50 -0700, Rasmus wrote: > > Hi, > > Thanks, I really enjoyed them. One technical question. Why do the flow > of the slides sometimes change from L→R to T→B? It's quite confusing and > makes it hard to go back and forth between slides (IMO of course). None

Re: [O] emacs & org mode for scholars questions

2015-09-02 Thread Erik Hetzner
gt; prelude or others, but it allows them to do things like I do out of the > box. > > The conference sounds like it was fun! Best wishes, > > Erik Hetzner writes: > > > Hi all, > > > > Thanks for all your responses! They were a great help when putt

Re: [O] emacs & org mode for scholars questions

2015-09-01 Thread Erik Hetzner
markdown and org-mode) might be a great help for Emacs beginners. best, Erik On Mon, 24 Aug 2015 22:38:30 -0700, Erik Hetzner wrote: > > Hi all, > > I am going to be giving a talk on how Emacs can help support scholars, > especially those who are using plain text and doing reproduc

[O] [PATCH] org-mime: Use `compose-mail' to send mail

2015-08-29 Thread Erik Hetzner
* contrib/lisp/org-mime.el (org-mime-compose): Use `compose-mail' to send mail. Allows customization via `mail-user-agent'. TINYCHANGE --- contrib/lisp/org-mime.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/lisp/org-mime.el b/contrib/lisp/org-mime.el index 078ebe

[O] emacs & org mode for scholars questions

2015-08-24 Thread Erik Hetzner
what you would like to see Emacs do better to support the scholarly writing community. Thanks for any help you can provide! best, Erik Hetzner -- Sent from my free software system <http://fsf.org/>.

Re: [O] John's amazing indexing posts

2015-07-27 Thread Erik Hetzner
Hi Oleh, On Mon, 27 Jul 2015 06:19:35 -0700, Oleh Krehel wrote: > > > Hi Erik, > > Erik Hetzner writes: > > I previously hooked up org with recoll with pretty good results. > > ... > > http://www.lesbonscomptes.com/recoll/ > > Thanks for the link. I t

Re: [O] John's amazing indexing posts

2015-07-26 Thread Erik Hetzner
Hi all, I previously hooked up org with recoll with pretty good results. I’ve written this up for worg, but I have my ssh key on a different machine, so I can’t push now. Here is the info for the record. ** Recoll In order to index using the [[http://www.lesbonscomptes.com/recoll/][recoll]] sear

[O] [PATCH] org-attach.el: fix check for git annex

2015-05-16 Thread Erik Hetzner
* lisp/org-attach.el (org-attach-commit): Check for .git/annex dir in addition to annex dir in root git dir to ensure that git annex is used --- lisp/org-attach.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/org-attach.el b/lisp/org-attach.el index 1737ec1..7f61910 1

[O] org-attach + git annex not working

2015-05-02 Thread Erik Hetzner
Hi all, I am trying to get org-attach to work with git-annex, but there is a bug that prevents it working. org-attach checks if there is an annex directory in the results of (vc-git-root org-attach-directory) in order to decide whether to use git-annex. But the annex directory is a subdir of the

Re: [O] Citations, continued

2015-02-04 Thread Erik Hetzner
On Wed, 4 Feb 2015 at 07:59:46 PST, Richard Lawrence wrote: > > Erik Hetzner writes: > > >> The ideal would be if citeproc would take care of proper formatting > >> of all such citation types, given just an ordered list of the fields > >> that should appear

Re: [O] Citations, continued

2015-02-04 Thread Erik Hetzner
On Wed, 4 Feb 2015 at 04:06:36 PST, Nicolas Goaziou wrote: > > Hello, > > Erik Hetzner writes: > > > I concentrated on getting the parser to recognize valid citations > > first. I have now finished this part (excepting any bugs, of course :) > > and will need

Re: [O] Citations, continued

2015-02-03 Thread Erik Hetzner
Hi Richard, On Tue, 3 Feb 2015 at 08:11:19 PST, Richard Lawrence wrote: > […] > Yes. I'll have to take a look at the Pandoc citeproc code and see how > easy it would be to add support for something like this. If there are > Org people that need citation types that select specific fields, I

Re: [O] Citations, continued

2015-02-02 Thread Erik Hetzner
Hi Richard, On Mon, 2 Feb 2015 at 20:41:06 PST, Richard Lawrence wrote: > > Hi Erik and all, > > Actually, I totally agree. For my own use, I would be completely happy > with just using the Pandoc syntax for citations in Org, without any > modifications. Great! > The only reason I proposed

Re: [O] Citations, continued

2015-02-02 Thread Erik Hetzner
On Mon, 2 Feb 2015 at 10:02:41 PST, Richard Lawrence wrote: > > Hi all, > > Here is the citation syntax proposal I have mentioned in a couple of > posts now. I have attached it as an Org document for better > readability, and also reproduced the text below. Let me know what you > think! Hi R

Re: [O] Citations, continued

2015-02-02 Thread Erik Hetzner
On Sat, 31 Jan 2015 at 10:26:05 PST, Richard Lawrence wrote: > > Hi all, > > […] > > As I mentioned in the earlier thread, I think the Pandoc syntax is a > good place to start, and I think it would be valuable to have the two > syntaxes be compatible. But even Pandoc's citation syntax might not

Re: [O] exporting zotxt or orgref links to HTML and ODF

2015-01-31 Thread Erik Hetzner
On Tue, 27 Jan 2015 at 22:37:20 PST, Erik Hetzner wrote: > > […] > > I wrote a parser for pandoc citations (that assumes you start with a > citation string, that is, it doesn’t work unless you have extracted > the citation string from the document): > > https://bitbu

Re: [O] exporting zotxt or orgref links to HTML and ODF

2015-01-27 Thread Erik Hetzner
On Tue, 27 Jan 2015 at 09:24:00 PST, Richard Lawrence wrote: > > > Although my home-baked solution presently works for me, I am inclined to > agree. > > I've just had a glance at: http://pandoc.org/README.html#citations > > It looks to me like Pandoc has a quite general solution, and it also >

Re: [O] TODO keyword highlighting for headings with properties broken

2014-09-04 Thread Erik Hetzner
Hi Nicholas, At Wed, 03 Sep 2014 19:58:58 +0200, Nicolas Goaziou wrote: > > Hello, > > Erik Hetzner writes: > > > Highlighting of TODO keywords for headings with properties in my org > > files seems to have broken since I upgraded to org 20140901 (via org >

Re: [O] TODO keyword highlighting for headings with properties broken

2014-09-04 Thread Erik Hetzner
At Wed, 3 Sep 2014 21:30:11 -0500, wtm wrote: > > Trevor, > > Thanks so much for mentioning this. I considered using these to roll > back to 8/25 but I wasn't sure how much performance I would lose if > I used the .el files instead of the compiled .elc versions. Or > perhaps my assumption is inco

[O] TODO keyword highlighting for headings with properties broken

2014-09-03 Thread Erik Hetzner
Hi, Highlighting of TODO keywords for headings with properties in my org files seems to have broken since I upgraded to org 20140901 (via org mode ELPA). Rolling back to 20140825 fixes the problem. Here is a sample file I tested after loading the new org-mode using emacs -Q: * TODO foo :PROPERT

Re: [O] [RFC] Rewrite `org-entry-properties' using parser

2014-08-04 Thread Erik Hetzner
At Mon, 04 Aug 2014 00:07:46 -0400, Aaron Ecay wrote: > > Hi Erik, > > 2014ko abuztuak 3an, Erik Hetzner-ek idatzi zuen: > > > > […] > > > > This allows me to search with subject={Bar}, which is very helpful. > > But it would be nice if org supported

Re: [O] [RFC] Rewrite `org-entry-properties' using parser

2014-08-03 Thread Erik Hetzner
ngs. You have to split them them yourself later if you > are using the properties in code. You can delimit on spaces, commas, etc... > depending on your subjects. > > #+BEGIN_SRC emacs-lisp > (split-string (org-entry-get (point) "SUBJECT")) > #+END_SRC > > #+RESUL

Re: [O] [RFC] Rewrite `org-entry-properties' using parser

2014-08-01 Thread Erik Hetzner
At Fri, 01 Aug 2014 01:21:47 +0200, Thorsten Jolitz wrote: > > Hi List, > > here is my first take of rewriting `org-entry-properties'. > > The existing function predates the new parser and some Org variables, > and thus does the parsing and the property classification itself. The > new version l

Re: [O] [PATCH] org-capture, :default-time and <...>

2014-07-29 Thread Erik Hetzner
Hi Bastien, At Tue, 29 Jul 2014 17:10:51 +0200, Bastien wrote: > > Hi Erik, > > Erik Hetzner writes: > > > What I would like to do is have something a capture template string > > similar to %^t, but with a custom date format string, e.g. > > %^<%Y/

Re: [O] [PATCH] org-capture, :default-time and <...>

2014-07-28 Thread Erik Hetzner
At Mon, 28 Jul 2014 18:13:04 +0200, Bastien wrote: > > Hi Erik, > > using a custom date is done via `org-overriding-default-time' (within > a let construct) instead of (org-capture-put :default-time date). > > Yes, the details are obscure and we need to better document this. > > Let us know if

[O] [PATCH] org-capture, :default-time and <...>

2014-07-08 Thread Erik Hetzner
Hi all, I am pretty sure that the following org-capture setup used to work, but it doesn’t seem to anymore. The intention is to manually select a date and use this with a custom date format (e.g. %<%Y/%m/%d>). (The custom date format is for ledger; I use this to capture ledger transations.) But i

Re: [O] org-cook

2014-03-17 Thread Erik Hetzner
At Mon, 17 Mar 2014 10:34:55 -0400, Ken Mankoff wrote: > > Hi, > > This isn't directly related to Org, but I'll mention it anyway since > people are discussing quantities and "scale" for their > recipes. Various programming languages have "physical units" packages > that can make working with uni

Re: [O] org-cook

2014-03-15 Thread Erik Hetzner
At Sat, 15 Mar 2014 20:03:33 +0200, Xebar Saram wrote: > > Thanks so much for the tips Erik > > i will explore the ingredients in table idea as suggested. do you know > perhaps of a way to quick format online recipes to an org table (that is > webpage html to org table) or perhaps a way to conver

Re: [O] org-cook

2014-03-15 Thread Erik Hetzner
At Sat, 15 Mar 2014 09:24:23 +0200, Xebar Saram wrote: > > Dear Eric and org users > > i am a new(ish) org user and an avid cooker. i have started using > orgmodeas my recipe notebook and stumbled upon the old org-cook > thread. > Is there so documentation on this? do you still use it? > are ther

Re: [O] [ANN] Firefox extension for org-protocol and org-capture

2014-02-22 Thread Erik Hetzner
At Sat, 22 Feb 2014 17:27:26 +0100, Olivier Schwander wrote: > > Le 21 Feb 2014 18:22, Erik Hetzner a écrit: > > I had to start emacsclient in a terminal, probably because my emacs > > was run with emacs --daemon ? I made a little wrapper script that runs > > emacsclient

Re: [O] [ANN] Firefox extension for org-protocol and org-capture

2014-02-21 Thread Erik Hetzner
At Fri, 21 Feb 2014 18:34:17 -0500, Peter Salazar wrote: > > I'm having the same issue as Nick: the command line invocation works, but > the button in Firefox has no effect. I changed the emacs binary path to > /usr/bin/aquamacs I had to start emacsclient in a terminal, probably because my emacs

[O] Weaving a budget with Org & ledger

2014-02-20 Thread Erik Hetzner
Hi, Users of ledger and Org may be interested in this tutorial on how I manage an envelope style budget with those two excellent tools. http://orgmode.org/worg/org-tutorials/weaving-a-budget.html Thanks! best, Erik -- Sent from my free software system .

Re: [O] [PATCH] Allow passing post-process to org-publish-org-to for use by org-export-to

2014-02-12 Thread Erik Hetzner
At Wed, 12 Feb 2014 23:55:52 +0100, Nicolas Goaziou wrote: > > Not really. If you look at `org-latex-publish-to-pdf' you will see that > publishing is done differently: the binary file is generated, then > published as an attachment. Hi Nicolas, Thanks so much for your help. This looks like exac

[O] export to temporary HTML file and open

2014-02-12 Thread Erik Hetzner
Hi all, This may be of some interest to list members, and possibly for org mode itself. I find myself wanting to get a nice view of org files, for printing or otherwise, and would like to export to HTML. But I don’t want to have a bunch of HTML files in my org directory. Here is a hack to allow y

Re: [O] [PATCH] Allow passing post-process to org-publish-org-to for use by org-export-to

2014-02-12 Thread Erik Hetzner
At Wed, 12 Feb 2014 14:02:12 +0100, Nicolas Goaziou wrote: > > Hello, > > Erik Hetzner writes: > > > I have been looking at publishing to HTML using pandoc. Because pandoc > > requires post-processing to transform the org-mode markdown output to > > other fo

[O] [PATCH] Allow passing post-process to org-publish-org-to for use by org-export-to

2014-02-11 Thread Erik Hetzner
Hi, I have been looking at publishing to HTML using pandoc. Because pandoc requires post-processing to transform the org-mode markdown output to other formats, it is necessary to use the post-process parameter of org-export-to-file. Unfortunately, it is not currently possible to pass post-process

Re: [O] How to not show repetitive tasks in agenda view of TODO

2014-01-23 Thread Erik Hetzner
At Thu, 23 Jan 2014 11:59:31 +0100, Chaitanya Krishna wrote: > > Hello there, > > Maybe someone has already come across this problem. Any help is appreciated. > > I have some repetitive tasks which I schedule using the deadline approach. > > TODO Search for house > DEADLINE: <2014-01-26 Sun +1w

Re: [O] ox-md conforming pandoc-markdown

2014-01-22 Thread Erik Hetzner
Hi Michel, At Tue, 21 Jan 2014 12:00:01 +0100, Michel Kuhlmann wrote: > > Hi, > I often convert files with `pandoc`. Currently there is no > pandoc-org-mode-reader, so I'm using markdown as an intermediate step. > > I'm aware of ; this > also uses

Re: [O] How to write medical journal articles with org-mode

2014-01-20 Thread Erik Hetzner
At Mon, 20 Jan 2014 14:04:24 -0500, regcl wrote: > > Erik Hetzner writes: > > > At Mon, 20 Jan 2014 02:54:08 -0500, > > regcl wrote: > >> > >> 3) How do I get references into MS word? > >> > > Hi George, > > > > For question

Re: [O] How to write medical journal articles with org-mode

2014-01-20 Thread Erik Hetzner
At Mon, 20 Jan 2014 02:54:08 -0500, regcl wrote: > > > I am looking for advice regarding how to write medical journal > articles using org-mode. > > My primary motivations are the desire to ... automate the flow of data > from computation to publication, avoid clerical errors, speed up the > con

Re: [O] Timestamps for a whole year, or a year and month

2013-12-30 Thread Erik Hetzner
At Mon, 30 Dec 2013 20:11:17 +, Eric S Fraga wrote: > > Erik, > > I am not sure but I remember having a discussion about the problems with > dates that precede time 0 in Unix which corresponds to 1 January > 1970. See man page for ctime(3) for instance. > > I am currently offline (in the tu

Re: [O] Timestamps for a whole year, or a year and month

2013-12-30 Thread Erik Hetzner
At Sun, 29 Dec 2013 14:23:32 -0800, Erik Hetzner wrote: > > Hi, > > I am trying to get together a configuration for taking notes for > historical research using org mode. I think org mode could be very > useful for this, with its many ways of presenting, sorting and > sea

[O] Timestamps for a whole year, or a year and month

2013-12-29 Thread Erik Hetzner
this in orgmode? I guess what I am looking for is something that would show up on the first of the year in a timeline, but would represent the fact that the year is being treated as whole unit, and not a specific date. Any ideas are welcome! Thanks. best, Erik Hetzner -- Sent from my free software system <http://fsf.org/>.

Re: [O] date next year

2013-12-23 Thread Erik Hetzner
At Fri, 20 Dec 2013 12:34:43 + (UTC), Rene wrote: > > How can I set org-agenda-custom-commands so that I can get the tasks past a > date in the coming year? > > Suppose I'm interested in things past next september. This > > ("y" >"Next year's appointments" >tags "TIMES

Re: [O] org2blog problems.

2013-12-19 Thread Erik Hetzner
At Wed, 18 Dec 2013 18:03:19 +, Sharon Kimble wrote: > > I have been attempting to use emacs org2blog but am now consistently > getting this error report - > Contacting host: www.sharons.org.uk:80 > xml-rpc-xml-to-response: XML-RPC fault `Incorrect username or password.' > > I'm using '.netr

Re: [O] some movement on zotero!

2013-09-17 Thread Erik Hetzner
At Tue, 17 Sep 2013 03:59:36 -0400, Matt Price wrote: > > hi, > > Just found this: > > http://zotero-odf-scan.github.io/zotero-odf-scan/ > > don't havetime to look thorugh it yet, but it looks like a way to > write in org-mode and still use a zotero bibliography. It wil mean > that odt is the o

Re: [O] Let's discuss citation and Org syntax

2013-05-21 Thread Erik Hetzner
At Tue, 21 May 2013 19:55:53 +0200, Viktor Rosenfeld wrote: > > Hi, > > Rasmus wrote: > > > Hi, > > > > Now that 8.0 has shipped let's talk bibliography support. This > > follows directly upon the discussion around March[1]. > > I did not follow the discussion in March and only skimmed throu

Re: [O] Question regarding link text in HTML export

2013-04-24 Thread Erik Hetzner
At Wed, 24 Apr 2013 09:37:57 +0200, Sebastien Vauban wrote: > > Hello Nicolas, > > Nicolas Goaziou wrote: > > > > This is not a bug. This is how cross references work: any link to an > > internal target without a description will become a number referring to > > the target. It works for headlines

[O] Question regarding link text in HTML export

2013-04-23 Thread Erik Hetzner
Hi, When trying to export the following org file as HTML (C-e h o), using out of the box latest org-mode: ``` * Foo :PROPERTIES: :ID: aaccd0f3-3eff-4f38-ad83-bc51b8444d73 :END: * Bar :PROPERTIES: :ID: 0a428695-b829-4f8b-a689-1bc22491d13f :END: Link to [[id:aaccd0f3-3eff-4f

Re: [O] Can I refile into a journal with file+datetree?

2013-02-23 Thread Erik Hetzner
At Fri, 22 Feb 2013 22:42:25 +0100, Martin Stemplinger wrote: > > Hello Org wizards, > > I use org-capture with file+datetree for keeping a journal which > works fine. I also use mobile-org to take notes while I'm on the go. > After syncing them back I'd like to refile them into my journal with >

Re: [O] org-gnome-calendar

2012-12-06 Thread Erik Hetzner
At Thu, 06 Dec 2012 09:51:07 -0600, Christopher Allan Webber wrote: > > OH MY GOODNESS, this is VERY exciting to me! > > Do you have any screenshots of this in action? I've been thinking of > similar things for some time! This can also be accomplished using org-caldav + setting up evolution to

Re: [O] Bug in org-log-into-drawer

2012-10-29 Thread Erik Hetzner
At Mon, 29 Oct 2012 17:07:23 +0100, Sebastien Vauban wrote: > > Hello Erik and Bastien, > > […] > > I share your point... > > But do we all agree that your original example had to fail when > LOG_INTO_DRAWER is not inherited?[1] > > Or do I miss some point? > > Seb Hi Sebastien, Yes, I had a

Re: [O] Bug in org-log-into-drawer

2012-10-29 Thread Erik Hetzner
At Mon, 29 Oct 2012 06:41:39 +0100, Bastien wrote: > > Hi Erik and Sébastien, > > Erik Hetzner writes: > > > The function org-log-into-drawer called the function org-entry-get > > with the inherit argument before I got there. (Maybe it needs to be > > added

Re: [O] Bug in org-log-into-drawer

2012-10-27 Thread Erik Hetzner
At Sat, 27 Oct 2012 11:00:40 +0200, Sebastien Vauban wrote: > > Hello Erik, > > I would have said that this does make sense, as the property LOG_INTO_DRAWER > is not inherited by the TODO entry, does it? > > See http://orgmode.org/manual/Property-inheritance.html for the few Org > properties for

[O] Bug in org-log-into-drawer

2012-10-26 Thread Erik Hetzner
Hi, Current the org-log-into-drawer function does not honor the value of the LOG_INTO_DRAWER property if the property has the value nil. For example, if the org-log-into-drawer variable is set to t, but we have the file: * Foo :PROPERTIES: :LOG_INTO_DRAWER: nil :END: ** TODO Bar

Re: [O] New user, my use case, request basic advice

2012-09-26 Thread Erik Hetzner
At Mon, 17 Sep 2012 12:03:58 -0700, David Rogers wrote: > > Hi > > I'm gradually getting accustomed to org-mode; thanks to all those whose > work makes this great software keep getting even better. > > I've been trying to figure out how to integrate org-mode into my > gadgets and my situation, a

Re: [O] org-capture-templates file+datetree+prompt question

2011-12-11 Thread Erik Hetzner
At Mon, 12 Dec 2011 00:18:34 +0100, Bastien wrote: > > Hi Erik, > > Erik Hetzner writes: > > > Thanks again for this fix. > > > > I have noticed that using k c ... (where ... is a capture template > > utilizing file+datetree+prompt) in the agenda now p

Re: [O] org-capture-templates file+datetree+prompt question

2011-12-11 Thread Erik Hetzner
At Tue, 6 Dec 2011 09:26:03 +0100, Carsten Dominik wrote: > > Hi Erik, > > if yout get the latest git version, this is how it is working now. > I agree that it is more consistent this way. Hi Carten, Thanks again for this fix. I have noticed that using k c ... (where ... is a capture template

Re: [O] org-capture-templates file+datetree+prompt question

2011-12-06 Thread Erik Hetzner
At Tue, 6 Dec 2011 09:26:03 +0100, Carsten Dominik wrote: > > Hi Erik, > > if yout get the latest git version, this is how it is working now. > I agree that it is more consistent this way. Thanks, Carsten! I haven’t upgraded, but I copied the diff into my org-capture.el, and it works great. bes

Re: [O] org-capture-templates file+datetree+prompt question

2011-12-06 Thread Erik Hetzner
At Tue, 6 Dec 2011 08:43:34 +0100, Carsten Dominik wrote: > > > On 6.12.2011, at 07:04, Erik Hetzner wrote: > > > Hi all, > > > > I would like to use a capture template to capture calendar entries & > > file them to a date tree organized calendar.org fil

Re: [O] org-capture-templates file+datetree+prompt question

2011-12-05 Thread Erik Hetzner
At Mon, 05 Dec 2011 22:04:33 -0800, Erik Hetzner wrote: > > Hi all, > > I would like to use a capture template to capture calendar entries & > file them to a date tree organized calendar.org file. Sorry, this is with org-mode 7.7, emacs 23.2.1, Ubuntu 11.04. best, Eri

[O] org-capture-templates file+datetree+prompt question

2011-12-05 Thread Erik Hetzner
Hi all, I would like to use a capture template to capture calendar entries & file them to a date tree organized calendar.org file. Specifically, what I want to happen is this: the template prompts me for a date, then prompts me for headline. The date should be used for the datetree & used as a da

Re: [O] How to say "I did that yesterday?"

2011-11-22 Thread Erik Hetzner
At Tue, 22 Nov 2011 11:40:35 -0800, Dave Abrahams wrote: > > > I often discover that I completed something a few days ago and I would > like to mark it done with the appropriate date as though I had marked it > done in the past. That means, e.g., for a repeating event it might > repeat sooner th

Re: [O] HTML export and Zotero-friendly headers

2011-11-21 Thread Erik Hetzner
At Mon, 21 Nov 2011 13:14:02 -0800, Erik L. Arneson wrote: > > On Mon, 21 Nov 2011, Christian Moe wrote: > > Hi, > > > > Does Erik Hetzner's zotero-plain work for you? > > I thought zotero-plain was used to add citations. What I'm trying to do > is use org-mode to export HTML files with Zotero-f

Re: [O] zotero plain, org-odt, and citations in general

2011-11-15 Thread Erik Hetzner
At Sat, 12 Nov 2011 02:43:12 +0530, Jambunathan K wrote: > > > Erik > > […] > > Here is what I find: > > If I put the below snippet in a javascript buffer and do a M-x > send-region, I am able to retrieve the library and key of the selected > item. > > […] > > The problem is in zotero-js-write-t

Re: [O] zotero-cite (A Proposal)

2011-11-15 Thread Erik Hetzner
Hi Jambunathan, Sorry I took some time to reply. Some answers are below. At Sat, 12 Nov 2011 02:04:52 +0530, Jambunathan K wrote: > > Hello Erik > > Good news. > > Getting a frugal Zotero-based citations is *definitely* possible. It is > just a matter of time. Your libraries already provide t

Re: [O] zotero plain, org-odt, and citations in general

2011-11-11 Thread Erik Hetzner
At Fri, 11 Nov 2011 13:45:27 -0500, Matt Price wrote: > > On Fri, Nov 11, 2011 at 11:12 AM, Erik Hetzner wrote: > > […] > > if tricky for you, then likely unmanageable for me. but I wonder if > Zotero themselves would be interested in helping a little bit with some of >

Re: [O] zotero plain, org-odt, and citations in general

2011-11-11 Thread Erik Hetzner
At Fri, 11 Nov 2011 10:37:03 -0500, Matt Price wrote: > > Similar for me -- the Org buffer hangs, and MozRepl looks like it's > just been sitting there idly. > > also on the most recent MozRepl, emacs 24, fairly recent org-mode, firefox > 8, ubuntu 10.10. I was going to suggest this sounds like

Re: [O] zotero plain, org-odt, and citations in general

2011-11-11 Thread Erik Hetzner
At Fri, 11 Nov 2011 10:51:22 -0500, Matt Price wrote: > > Responding to just a few of the excellent points raised by J 7 E > > On Thu, Nov 10, 2011 at 12:48 PM, Erik Hetzner wrote: > > > At Thu, 10 Nov 2011 20:47:30 +0530, > > Jambunathan K wrote: > > > &g

Re: [O] zotero plain, org-odt, and citations in general

2011-11-10 Thread Erik Hetzner
Hi Jambunathan, Thanks for the very detailed reply. Some responses below. In your previous message, you asked who the author of zotero.el is. I am. I will add author info. At Thu, 10 Nov 2011 20:47:30 +0530, Jambunathan K wrote: > > I think I now have some understanding of what Erik's library d

Re: [O] zotero plain, org-odt, and citations in general

2011-11-09 Thread Erik Hetzner
At Wed, 09 Nov 2011 20:39:18 +0100, Christian Moe wrote: > > Hi, > > Is zotero-plain working for others? > > I test drove zotero-plain back when it was just developed. Looked > promising, but I had uneven success with the MozRepl communication, > possibly something to do with being on an older

Re: [O] zotero plain, org-odt, and citations in general

2011-11-09 Thread Erik Hetzner
At Wed, 9 Nov 2011 10:28:21 -0500, Matt Price wrote: > > attached is a sample odt file with Zotero citations included. It's very > simple, actually, because I think the key to making something like this > work would be to offload as much work as possible to zotero itself -- Erik, > correct me if I

Re: [O] zotero plain, org-odt, and citations in general

2011-11-08 Thread Erik Hetzner
At Tue, 8 Nov 2011 21:06:37 -0500, Matt Price wrote: > > Hi everyone, > > I am about to start experimenting with Erik Hetzner's zotero-plain, which > allows the use of zotero as a bibliographic manager in emacs & especially > org-mode (https://bitbucket.org/egh/zotero-plain as well as a couple of

  1   2   >