Re: [O] Problems with org publish cache checking

2015-11-25 Thread Matt Lundin
Matt Lundin writes: > 2. It does not cache timestamps for included files that are not also >project files (i.e.,, files stored outside of the project or excluded >via the :exclude plist option). Since org-publish caches the >timestamps of only those files that are

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread Gustav Wikström
Hi, Taking your comments and improving the first patch a bit resulted in the attached one. It replaces the previous. Using string-prefix-p and string-suffix-p solves the out of index problem in the substrings. BR Gustav > -Original Message- > From: Nicolas Goaziou

Re: [O] Problem with org-collector.el in Org v. 8.3

2015-11-25 Thread Herbert Sitz
Whoops, turns out that the org-collector.el file I was grabbing in step 1 was _NOT_ the one from this link: http://orgmode.org/worg/code/elisp/org-collector.el Instead, I was using a copy of the org-collector.el file in most recent org-contrib-plus package. The version in org-contrib-plus

[O] Emacs freeze after selecting a capture template

2015-11-25 Thread Daniel P Gomez
Hi all, I'm new to Emacs and org-mode. I've tried to set up a simple TODO list by calling org-capture and when I select my [t] todo item on *Org Select*, Emacs freezes and I need to kill its process. On the mini-buffer I can read the following error message: Clipboard pasted as level 2 subtree

Re: [O] iPad text editor for .org files in Dropbox?

2015-11-25 Thread Christian Wittern
On 2015-11-25 22:36, Peter Davis wrote: > > I know this question is a bit off the list's topic, but has anyone found an > iPad text editor that can operate on .org files in > Dropbox? I found the App "Editorial" useful for this. It allows editing and syncs automatically to the associated Dropbox

[O] [PATCH] Re: Problems with org publish cache checking

2015-11-25 Thread Matt Lundin
Matt Lundin writes: > I've been doing some testing of org-publish functions and have found a > few problems with org-publish-cache-file-needs-publishing. They arise > from the fact that it attempts to take included files into account. OK, I've worked up a patch that solves

[O] Problem with org-collector.el in Org v. 8.3

2015-11-25 Thread Herbert Sitz
I seem to be having same problem with org-collector in v.8.3as was reported by Charlie Millar back in April. I checked with him and he was never able to resolve the issue. Here's his original post: http://article.gmane.org/gmane.emacs.orgmode/96966/match=org+collector It was easy to confirm

[O] org-info.js not displaying document?

2015-11-25 Thread Greg Minshall
hi. i'm trying to export a file using org-info.js, but i'm not getting anything (other than the footer with my name, creation date, and an offer to validate the file) when i open the resulting html file (everything is *in* the html file, it just isn't showing up). i'm using a very simple

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread sgeorgii .
>From my side I confirm the second patch works fine for me so far on current org-mode. Thank you Gustav, Nikolas! Any chance for this patch to go upstream, please? On 25 November 2015 at 18:39, Gustav Wikström wrote: > Hi, > > Taking your comments and improving the first patch

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread Nicolas Goaziou
Gustav Wikström writes: > Hmm, since the error was thrown when trying to look at indexes outside > of the string in (substring ... ), I don't see how isregexp can be > left as is. We have to make sure the substring-code is not evaluated > if the tag is empty. What am I missing?

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread Gustav Wikström
Hi, see below > > > > * lisp/org-agenda.el (org-agenda-filter-make-matcher-tag-exp): Deal with > > the case when the user provided an empty string to filter or exclude > > rows from the agenda. > > Please provide a reference to the discussion that lead to this patch. The reference being the

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread Gustav Wikström
Hi! Indeed, I do get the same error as you. I'll look into it a bit. Not sure if the behavior is documented though. As a workaround for you sgeorgii (and for everyone else with this problem I suppose :-) ), you can exclude tags instead of filtering. The behavior is similar except instead of

Re: [O] interaction between org-latex-custom-lang-environments and name when exporting to latex

2015-11-25 Thread Alan Schmitt
Hello, Here is a patch that allows the use of a format string in custom-lang-environments. From e4731375eaf622df0187d47d949fb9f4e53330be Mon Sep 17 00:00:00 2001 From: Alan Schmitt Date: Wed, 25 Nov 2015 08:48:58 +0100 Subject: [PATCH] ox-latex: Extend

Re: [O] interaction between org-latex-custom-lang-environments and name when exporting to latex

2015-11-25 Thread Rasmus
Hi Alan, Alan Schmitt writes: > Here is a patch that allows the use of a format string in > custom-lang-environments. Thanks. > * lisp/ox-latex.el (org-latex-custom-lang-environments): extend the > documentation string. Extend. You don’t need the lisp

Re: [O] LATEX text in figure environment

2015-11-25 Thread Rainer M Krug
Andreas Leha writes: > Rainer M Krug writes: >> Rasmus writes: >> >>> Rainer M Krug writes: >>> Hi I want to add a todo note (from the todonotes package) in a figure environment. What I

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread sgeorgii .
Indeed, the {.*} works. Thank you! If we could still use the empty parameter when filtering by "no tags" it would be really sweet :) On 25 November 2015 at 13:26, Gustav Wikström wrote: > Hi! > > Indeed, I do get the same error as you. I'll look into it a bit. Not sure if > the

[O] iPad text editor for .org files in Dropbox?

2015-11-25 Thread Peter Davis
Now that I've gotten MobileOrg to work (with the help of many great list members), it appears to be less useful than I'd hoped. MobileOrg seems to be mainly focused on highly structured documents, with lots of headers, tags, TODO items, etc. While I have many work-related files like that, much

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread Gustav Wikström
Hi again, Patch attached. If someone could apply it I'd be glad. Best Regards Gustav > -Original Message- > From: sgeorgii . [mailto:sgeor...@gmail.com] > Sent: Wednesday, November 25, 2015 12:05 > To: Gustav Wikström > Cc: m...@nicolasgoaziou.fr;

Re: [O] [RFC] [PATCH] Changes to Tag groups - allow nesting and regexps

2015-11-25 Thread Nicolas Goaziou
Hello, Gustav Wikström writes: > Patch attached. Thank you. A minor comment below. > From 445995e1fad646b2b22c014e09e3e05a7aeeede1 Mon Sep 17 00:00:00 2001 > From: Gustav Wikstrom > Date: Wed, 25 Nov 2015 13:06:31 +0100 > Subject: [PATCH] org-agenda: