Re: [O] :completion function isn't run anymore?

2015-11-29 Thread Julien Cubizolles
Nicolas Goaziou writes: > I didn't investigate much the issue yet, but, out of curiosity, would > the following patch solve the issue: Thanks for looking into it. It seems the completion-function is now being accessed but unfortunately something is still wrong. The

Re: [O] :completion function isn't run anymore?

2015-11-29 Thread Nicolas Goaziou
Julien Cubizolles writes: > It's fixed, thanks. Applied. Thank you. Regards,

Re: [O] Asynchronous mobileorg push/pull

2015-11-29 Thread Bingo UV
On Mon, 23 Nov 2015 15:33:23 +0100 Sven Bretfeld wrote: > You can just use a cronjob like: > > */10 * * * * emacs --batch --load ~/.emacs --eval > "(org-mobile-pull)" --eval "(org-mobile-push)" > > This executes the whole process in the background with another >

Re: [O] :completion function isn't run anymore?

2015-11-29 Thread Nicolas Goaziou
Julien Cubizolles writes: > Thanks for looking into it. It seems the completion-function is now > being accessed but unfortunately something is still wrong. The error > message is > > org-publish-projects: Wrong type argument: sequencep, > jc-org-publish-rename-beamer-pdf

Re: [O] Moving from org-mode 6.33/7.9.3 to 8.3.2

2015-11-29 Thread Nicolas Goaziou
Hello, Steve Moreau writes: > Indeed, the org-setup-filling was concerned. > > *Before:* > > (append fill-nobreak-predicate > '(org-fill-paragraph-separate-nobreak-p > ... > > (defvar org-element-paragraph-separate) ; org-element.el > (defun

Re: [O] Moving from org-mode 6.33/7.9.3 to 8.3.2

2015-11-29 Thread Steve Moreau
Hi, First, I have been struggling with git since I have no methodology, and I got lost several times. But I converged anyway and, as far as I understand, the issue here should have been introduced in the following commit: Revision: f3955d5367bd44e98824e3a5bd4b36e06483f4c2 Author: Nicolas Goaziou

Re: [O] orgmode.org is down?

2015-11-29 Thread Robert Klein
Hi, Bastien apparently already restarted it. Thanks a lot, Bastien! Best regards Robert On 11/29/2015 01:40 AM, Ishikawa Takaaki wrote: > Dear Bastien and all, > > @rafiks reported me the official website is > down now. > Port 22 is open, but 80 is filtered. >

Re: [O] TOC local for specified heading and its subheadings (in HTML export)?

2015-11-29 Thread Nicolas Goaziou
Hello, Rasmus writes: > Further, IMO it might be better to extend the ’#+toc: headlines local’ > declaration. Of course you could argue that ’local’ becomes a special > case of the above "id:whatever-is-the-name-of-the-local-headline". > > Personally, I would like a more

Re: [O] :completion function isn't run anymore?

2015-11-29 Thread Nicolas Goaziou
Hello, Julien Cubizolles writes: > Julien Cubizolles writes: > >> I noticed that the :preparation-function defined in >> org-publish-project-alist isn't run anymore when publishing a project. > > It seems the preparation-function isn't run either.

Re: [O] Org campture recursively expands %-escapes

2015-11-29 Thread Nicolas Goaziou
>> i think i understand. maybe we need another way to pass %i. > > I guess we could restict "%()" evaluation to the Sexp defined in the > initial template. I committed a patch along those lines in master. Please let me know if anything goes wrong with capture templates.

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

2015-11-29 Thread Nicolas Goaziou
Matt Lundin writes: > Yes, that's a great idea. I've added it to the patch. Thank you. LGTM. > One caveat: this patch does not implement recursive checking of included > files (i.e., included files that include other files), but this could be > added in the future. Well, if

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

2015-11-29 Thread Greg Minshall
Matthew, > Why not diff-ing the 2 html files, the one produced with your settings > and the other one produced with -Q ? This may give you a pointer. thanks, that helps a lot. this *does* seem to be an org-mode bug (modulo my brain functioning). the actual thing that seems to break things is

Re: [O] TOC local for specified heading and its subheadings (in HTML export)?

2015-11-29 Thread Sacha Chua
Rasmus writes: Hello, Rasmus, all! > "id:headline" is a special type of links (see org-id.el). A reference to > a custom-ids is typically prefixed by "#" in Org, e.g. ’[[#heading]]’ or Excellent point. I picked id: as a quick and dirty regexp match, but :headline makes more

Re: [O] Moving from org-mode 6.33/7.9.3 to 8.3.2

2015-11-29 Thread Steve Moreau
Hi Nicolas, Thanks for you answer. OK, I understand. That explains why I needed to add blank lines between list items before to fill region, such as: - item1 - item2 This is a new paragraph I have 2 more questions for you please. Let say I would like to give a hand and try to improve

[O] [PATCH] ox-html.el: Remove superflous whitespace

2015-11-29 Thread Ruben Maher
* lisp/ox-html.el: Remove superfluous whitespace from meta tags, put there by `org-html--buld-meta-info' and `org-html--build-head'. `org-html-close-tag' already inserts a space, so it is not necessary to add another. Previously these affected tags would look like . --- lisp/ox-html.el |

[O] [PATCH] ox-html.el: Add lang attribute to html tag

2015-11-29 Thread Ruben Maher
* lisp/ox-html.el (org-html-template): Add lang attribute to exported html tag. Some features of the CSS Text Module (Level 3) require this attribute to be present (for example, so that the browser knows how to hyphenate the text). For more info, please take a look here:

Re: [O] :completion function isn't run anymore?

2015-11-29 Thread Julien Cubizolles
Nicolas Goaziou writes: > I forgot that :preparation-function could also be a single function. > Attached is the updated patch to test. It's fixed, thanks. Once again, I'm amazed by the reactivity and efficiency of everyone in the org-mode community. > See