Re: [O] [babel] feature request: debug messages

2013-07-03 Thread Andreas Leha
Hi Eric, Eric Schulte writes: > Hi Andreas, > > This should be easy to turn on or off using the newly introduced > :prologue and :epilogue header arguments. See the manual and the > following example. > > #+Title: debug messages > #+Property: session *R* > #+Property: prologue (format "print(\

Re: [O] org-create-formula--latex-header does not respect latex_header in included file

2013-07-03 Thread subi . the . dream . walker
Hello, I DO missed the #+setupfile. Thanks for the tip! Regards, Bing Sun

Re: [O] Bug: org-edit-special won't let me edit a latex snippet

2013-07-03 Thread Bastien
Hi Gustav, Gustav Wikström writes: > I haven't confirmed latex blocks but I trust your words. > > I have been using C-c ' for quote blocks in the past and there is a > change as it's not working any more. I'm not against it though, just > curious. From what I understand now only source-blocks (i

Re: [O] "Special Properties" when matching for Properties in a search

2013-07-03 Thread Bastien
Hi Gustav, Gustav Wikström writes: > As I brought this up, I might just as well provide a way of clarifying > this for the manual. Applied, thanks. -- Bastien

Re: [O] Sort check lists by checked status

2013-07-03 Thread Bastien
Hi Carsten, Carsten Dominik writes: > On 3.7.2013, at 15:10, Bastien wrote: > >> I just pushed a change in master: you can now sort check lists >> by the "checked" status. `C-c ^ c' on a check list will put the >> checked item at the end. I've been using this quite heavily, I >> hope other wi

Re: [O] [babel] feature request: debug messages

2013-07-03 Thread Eric Schulte
Hi Andreas, This should be easy to turn on or off using the newly introduced :prologue and :epilogue header arguments. See the manual and the following example. #+Title: debug messages #+Property: session *R* #+Property: prologue (format "print(\"entering %s\")" (get-current-name)) An elisp blo

Re: [O] Org file to generate both beamer and standard LaTeX file

2013-07-03 Thread Suvayu Ali
Hi, On Wed, Jul 03, 2013 at 11:32:15PM +0200, Julien Cubizolles wrote: > I've been an newbie org user for a while now: in particular, I've never > played with export much and all my LaTeX work as been done with AucTeX > in a .tex file. I'm considering switching to an Org-based setup if I > could g

[O] [PATCH] ox-html: Allow "Figure %d:", etc. to be styled

2013-07-03 Thread Kodi Arfer
>From a873d204b2c4f3facf2d8658f69764acbd063246 Mon Sep 17 00:00:00 2001 From: Kodi Arfer Date: Wed, 3 Jul 2013 17:51:56 -0400 Subject: [PATCH] ox-html: Allow "Figure %d:", etc. to be styled * lisp/ox-html.el (org-html-paragraph): Wrap "Figure %d:" in . (org-html-list-of-tables, org-html-tabl

Re: [O] advice needed: how do you guys sync org files between devices?

2013-07-03 Thread Julien Cubizolles
Alan Schmitt writes: > devn...@karl-voit.at writes: > >> Unison does not offer any merge functionality. However, you can >> easily use third party tools to handle merge conflicts (Emacs, vim, >> ...). > > (Disclaimer, I participate in Unison's development). Just to clarify > what I think Karl is

[O] Org file to generate both beamer and standard LaTeX file

2013-07-03 Thread Julien Cubizolles
I've been an newbie org user for a while now: in particular, I've never played with export much and all my LaTeX work as been done with AucTeX in a .tex file. I'm considering switching to an Org-based setup if I could get the following, mainly for courses I'm preparing for which I would need beamer

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-07-03 Thread Nick Dokos
Karl Voit writes: > * Karl Voit wrote: >> >> I would be happy to document this method and provide it on Worg. In >> my opinion, this would be very handy for many Org-mode users. > > I summarized the method on Worg[1]. > > Can someone please proof read the page? I am not a native speaker > and it

Re: [O] advice needed: how do you guys sync org files between devices?

2013-07-03 Thread Nick Dokos
"G. Martin Butz" writes: > I wrote a blog entry about the issue [1], but it's in German. If you > interested I can give further information in English. > The Chromium browser did an OK job of translating it: I think the translation is rough but readable. > > [1] >

[O] [babel] feature request: debug messages

2013-07-03 Thread Andreas Leha
Hi all, I would love to see messages like 'entering block foo...' and '...leaving block foo' printed to my R console. This would be very handy when I evaluate a subtree (C-c C-v s) with a lot of #+call lines and some lengthy ones. I know that (1) I could implement that myself at in the source bl

Re: [O] fill paragraph: math and latex environments

2013-07-03 Thread Nicolas Goaziou
Hello, Paul Stansell writes: > I'm sorry, but I don't fully understand your explanation as I don't > know what you mean by an "element" in this context? See: http://orgmode.org/worg/dev/org-syntax.html > Also, am I missing something about the latex? Do you want to be able > to use display sty

Re: [O] org-create-formula--latex-header does not respect latex_header in included file

2013-07-03 Thread Nicolas Goaziou
Hello, Bing Sun writes: > I have a separate org file for a rather complicated latex preamble and > then include it when needed. It works well for latex exporting but it > appears that org-create-formula--latex-header just ignores the > latex_header properties in the included org file when previe

Re: [O] Bug: org-edit-special won't let me edit a latex snippet

2013-07-03 Thread Gustav Wikström
I haven't confirmed latex blocks but I trust your words. I have been using C-c ' for quote blocks in the past and there is a change as it's not working any more. I'm not against it though, just curious. From what I understand now only source-blocks (including example-blocks) and latex-blocks are (

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-07-03 Thread Karl Voit
* Karl Voit wrote: > > I would be happy to document this method and provide it on Worg. In > my opinion, this would be very handy for many Org-mode users. I summarized the method on Worg[1]. Can someone please proof read the page? I am not a native speaker and it's always good to let someone els

Re: [O] "Special Properties" when matching for Properties in a search

2013-07-03 Thread Gustav Wikström
Ok thanks! As I brought this up, I might just as well provide a way of clarifying this for the manual. On Mon, Jul 1, 2013 at 12:04 AM, Bastien wrote: > Hi Gustav, > > Gustav Wikström writes: > >> When matching for tags and properties using C-c / m there is the >> option to match for Special Pr

Re: [O] Sort check lists by checked status

2013-07-03 Thread Carsten Dominik
On 3.7.2013, at 15:10, Bastien wrote: > I just pushed a change in master: you can now sort check lists > by the "checked" status. `C-c ^ c' on a check list will put the > checked item at the end. I've been using this quite heavily, I > hope other will find this useful. This is useful, thanks!

Re: [O] refile cache and auto-save files

2013-07-03 Thread Samuel Wales
Somehow this code needs integrating. (file-newer-than-file-p (or buffer-auto-save-file-name (make-auto-save-file-name)) buffer-file-name) Or Emacs needs a solution that makes it so that you get notified when you first edit? On 7/2/13, Sam

Re: [O] org-clock-is-active

2013-07-03 Thread Bastien
Hi Łukasz, l.stelm...@samsung.com (Łukasz Stelmach) writes: > (defun org-clock-is-active () > "Return non-nil if clock is currently running. > The return value is actually the clock marker." > (marker-buffer org-clock-marker)) > > Either the docstring is lying or the code does not do what it

Re: [O] Copying/pasting org html export into IBM Community Wiki

2013-07-03 Thread John Hendy
I'll look at the wiki export format. Unfortunately, Communities is not wiki markup style, so html would be best. Org seems to rely on css and spans/divs, which don't appear to cooperate with Communities raw html edit mode. I'd need something with all the formatting specified in-line, I think. Joh

Re: [O] [BUG] Two problems with defcustom of org-structure-template-alist

2013-07-03 Thread Bastien
Hi Nick, Nick Dokos writes: > That's the first problem, but even after doing this, I still get a > (mismatch). > > I think the (second) problem now is that the Muse Template is not > optional as far as defcustom is concerned, but there are entries in the > list above with only two elements. If I

Re: [O] advice needed: how do you guys sync org files between devices?

2013-07-03 Thread G. Martin Butz
Hi Itai, you have been given a lot of detailed advice, so I do not know, if my contribution will add anything. I have made good experiences with a combination of unison and git. I currently synchonise my netbook and my laptop; it is a rather simple and homebrew setup but it works for my pupo

Re: [O] [BUG] :colnames not applied to #+call input

2013-07-03 Thread Eric Schulte
Currently colnames are not used for emacs-lisp code blocks (for historical reasons). Unfortunately, call lines are executed by expanding first to a trivial emacs-lisp code block, which is then run to collect and possibly re-package the results of the called function. Thus colnames do not work well

Re: [O] HTML export and info: links

2013-07-03 Thread Sebastian Wiesner
2013/7/3 Bastien : > Sebastian Wiesner writes: > >> Is there a single assignment for just one specific patch? I am not >> going to assign the FSF copyright for any and every future change to >> Emacs I might create. > > The FSF policy is that you cannot assign your copyright for just one > patch,

Re: [O] HTML export and info: links

2013-07-03 Thread Bastien
Sebastian Wiesner writes: > Is there a single assignment for just one specific patch? I am not > going to assign the FSF copyright for any and every future change to > Emacs I might create. The FSF policy is that you cannot assign your copyright for just one patch, you assign it for future chan

Re: [O] HTML export and info: links

2013-07-03 Thread Sebastian Wiesner
2013/7/3 Bastien : > Sebastian Wiesner writes: > >> 2013/7/3 Bastien : >>> Well, that's too much work for me now. Hopefully someone who needs >>> this can help too. >> >> I'll probably give it a shot, depending on how much free time I can >> find in the next weeks. > > Great, thanks. Don't thank

Re: [O] Break a line in org-mode

2013-07-03 Thread Nick Dokos
Søren Mikkelsen iha.dk> writes: > > On 2013-07-03 10:21, Nick Dokos wrote: > > Søren Mikkelsen iha.dk> writes: > > > >> I usually have some #+LaTeX_HEADER: entries in my org-mode files where > >> some of them are macros. These lines can be rather long so I have to > >> type in #+LaTeX_HEADER:

[O] org-create-formula--latex-header does not respect latex_header in included file

2013-07-03 Thread Bing Sun
hello list, I have a separate org file for a rather complicated latex preamble and then include it when needed. It works well for latex exporting but it appears that org-create-formula--latex-header just ignores the latex_header properties in the included org file when previewing latex fragments.

Re: [O] HTML export and info: links

2013-07-03 Thread Bastien
Sebastian Wiesner writes: > 2013/7/3 Bastien : >> Well, that's too much work for me now. Hopefully someone who needs >> this can help too. > > I'll probably give it a shot, depending on how much free time I can > find in the next weeks. Great, thanks. > You said, you might incorporate such an

Re: [O] HTML export and info: links

2013-07-03 Thread Sebastian Wiesner
2013/7/3 Bastien : > Well, that's too much work for me now. Hopefully someone who needs > this can help too. I'll probably give it a shot, depending on how much free time I can find in the next weeks. You said, you might incorporate such an extension into Org, but isn't Org covered by Copyright

Re: [O] HTML export and info: links

2013-07-03 Thread Bastien
Sebastian Wiesner writes: > It's not actually located there at all. It is for me (ArchLinux). > My Texinfo is installed via > Homebrew into "~/.homebrew", hence my "htmlxref.cnf" is at > "~/.homebrew/share/texinfo/htmlxref.cnf". There is no > "/usr/share/texinfo/htmlxref.cnf". > > Texinfo d

Re: [O] HTML export and info: links

2013-07-03 Thread Sebastian Wiesner
2013/7/3 Bastien : > Sebastian Wiesner writes: > >> Ideally the HTML exporter would consult this database when exporting >> info links, to find out where the corresponding HTML manual is >> published. > > I see, thanks. Is it safe to assume that htmlxref.cnf will always > be located in /usr/share

[O] [BUG] Two problems with defcustom of org-structure-template-alist

2013-07-03 Thread Nick Dokos
There seem to be two problem in the defcustom of org-structure-template-alist. It looks like this: --8<---cut here---start->8--- :type '(repeat (string :tag "Key") (string :tag "Template") (string :tag "Muse Template"))) --8<-

Re: [O] possible org-insert-heading bug?

2013-07-03 Thread Robert Horn
Erik Iverson writes: > Robert, > > I noticed that behavior, too. But that does seem documented under M-: > > "When this command is used in the middle of a line, the line is split > and the rest of the line becomes the new item or headline". > > Footnote 10 is referenced, which says: > > "If you d

[O] org-clock-is-active

2013-07-03 Thread Łukasz Stelmach
Hi. Please take a look at this. --8<---cut here---start->8--- (defun org-clock-is-active () "Return non-nil if clock is currently running. The return value is actually the clock marker." (marker-buffer org-clock-marker)) --8<---cut here-

Re: [O] possible org-insert-heading bug?

2013-07-03 Thread Erik Iverson
Robert, I noticed that behavior, too. But that does seem documented under M-: "When this command is used in the middle of a line, the line is split and the rest of the line becomes the new item or headline". Footnote 10 is referenced, which says: "If you do not want the line to be split, custom

Re: [O] [BUG] Tag selection is inconsistent when loaded from #+SETUPFILE in orgmode 8.0.x

2013-07-03 Thread Bastien
Hi Anupam, Anupam Sengupta writes: > Thanks a lot for the fix. The test files are now behaving properly > after the fix (I am on orgmode git development head at commit > 36848fdec9eb8c9c17a2e98cd742af1f9f9b23db as on 23rd May). > > *However*, while testing this fix, I think I have uncovered a f

Re: [O] possible org-insert-heading bug?

2013-07-03 Thread Robert Horn
I've noticed a probably related bug. In a file like * before break between If I put the cursor between break and between, M-ret causes the result * before * break between rather than what I expected: * before break * between With the holiday coming I might look at it also and figure out

Re: [O] fill paragraph: math and latex environments

2013-07-03 Thread Paul Stansell
Nicolas, Thanks for your reply. > If we allow \[...\] constructs to be an element, they cannot be > recognized as such within paragraphs. So > > Some text \[1+1\] and some other text > > will not be recognized anymore, even though any latex editing mode > supports it. Again, I think it's not wo

Re: [O] org-mode and python pandas

2013-07-03 Thread Eric Schulte
Dov Grobgeld writes: > Thanks for the answers, but there is still something missing in order > to get it to work. Part of it seems to be connected to the python > parsing. E.g. the following translation of Eric's sh example doesn't > output correctly with python: > > > #+BEGIN_SRC python :results

Re: [O] tag groups

2013-07-03 Thread Bastien
Hi Maurice, Maurice writes: > value for : org-tag-alist-for-agenda > > ((:startgroup) > ("prêté" . 112) > ("emprunté" . 101) > (:endgroup) > ("note" . 110) > ("noexport" . 120) > ("lien" . 98) > ("crypt" . 99) > ("projet" . 112) > ("suspendu" . 122) > (:startgroup "lieu") > ("@dehors

Re: [O] [PATCH] Let =`make'= be an option to =`org-latex-pdf-process'=.

2013-07-03 Thread Feng Shu
Suvayu Ali writes: > On Wed, Jul 03, 2013 at 02:22:40PM +0800, Feng Shu wrote: >> Suvayu Ali writes: >> >> > On Wed, Jul 03, 2013 at 07:09:35AM +0800, feng shu wrote: >> >> Customize `org-latex-pdf-process isn't very convenient. >> >> Is it possible add a feature like: #+LATEX_PDF_PROCESS: l

[O] Sort check lists by checked status

2013-07-03 Thread Bastien
I just pushed a change in master: you can now sort check lists by the "checked" status. `C-c ^ c' on a check list will put the checked item at the end. I've been using this quite heavily, I hope other will find this useful. -- Bastien

Re: [O] scrum with emacs org-mode

2013-07-03 Thread Oliver Dunkl
thk...@koch.ro writes: > has anybody some success stories to share how to use org-mode in scrum > projects? Googling for scrum and org-mode already showed some > interesting things: I have made some additions to my agenda commands to produce a Scrum-Board for the current file or a defined file.

Re: [O] Starting emacs followed directly by org-agenda search and visiting file removes color formatting

2013-07-03 Thread Bastien
Hi Mike, Mike McLean writes: > Did you ever find a resolution for this? I am experiencing very > similar, né identical, symptoms. I applied Nicolas' patch from this thread. Thanks for the heads up, -- Bastien

Re: [O] [patch] language support for da, no, sv.

2013-07-03 Thread Bastien
Nicolas Goaziou writes: > Applied to master. You're too fast :) I suggested minor changes to Rasmus for the ChangeLog entry: uppercase first letter of the sentence, and to avoid the passive form. Anyway, just a boring reminder that this is important: I will have to fix all changelog entries be

Re: [O] [patch v2] language support for da, no, sv.

2013-07-03 Thread Rasmus
Rasmus writes: > Attached are two minor patches with respect to languages plus one > change to the org translation dictionary. Only the changelog are changed in these patches to follow the standard format better. –Rasmus -- If you can mix business and politics wonderful things can happen! >Fr

Re: [O] [patch] language support for da, no, sv.

2013-07-03 Thread Nicolas Goaziou
Hello, Rasmus writes: > Attached are two minor patches with respect to languages plus one > change to the org translation dictionary. Applied to master. Note that you needn't add TINYCHANGE anymore, since you signed FSF papers. Thank you. Regards, -- Nicolas Goaziou

[O] org-mime-htmlize problem: org-indent-line

2013-07-03 Thread Martin Marier
Hi, I had an issue with org-mime-htmlize lately. Whenever I try to htmlize a Messoage mode buffer (M-x org-mime-htmlize), I get this error message: eval: Symbol's value as variable is void: org-indent-line I am using Org-mode version 8.0.3 (8.0.3-61-g5381eb-elpa @ ~/.emacs.d/elpa/org-20130701/

Re: [O] Break a line in org-mode

2013-07-03 Thread Søren Mikkelsen
On 2013-07-03 11:01, Rasmus wrote: > Søren Mikkelsen writes: > >> I usually have some #+LaTeX_HEADER: entries in my org-mode files where >> some of them are macros. These lines can be rather long so I have to >> type in #+LaTeX_HEADER: multiple times for breaking the line to a decent >> level. >>

Re: [O] Starting emacs followed directly by org-agenda search and visiting file removes color formatting

2013-07-03 Thread Mike McLean
Good Morning Did you ever find a resolution for this? I am experiencing very similar, né identical, symptoms. Mike On Mon, May 20, 2013 at 6:47 PM, John Hendy wrote: > On Mon, May 20, 2013 at 5:15 PM, John Hendy wrote: > > Sorry for the long title, but that's the summary! I fired up a fresh

Re: [O] Break a line in org-mode

2013-07-03 Thread Søren Mikkelsen
On 2013-07-03 10:21, Nick Dokos wrote: > Søren Mikkelsen writes: > >> I usually have some #+LaTeX_HEADER: entries in my org-mode files where >> some of them are macros. These lines can be rather long so I have to >> type in #+LaTeX_HEADER: multiple times for breaking the line to a decent >> level

Re: [O] org-mode and python pandas

2013-07-03 Thread Rasmus
Hi Dov, > Another related question is if there is any support for header tables? > I.e. instead of this: > > | |A |B |C | > | 0 | 0.827817 | 0.664009 | 0.089161 | > | 1 | 0.170031 | 0.729214 | 0.110918 | > | 2 | 0.575918 | 0.863924 | 0.757536 | > | 3 | 0.682722 | 0.774445

[O] [patch] language support for da, no, sv.

2013-07-03 Thread Rasmus
Hi, Attached are two minor patches with respect to languages plus one change to the org translation dictionary. The first fixes inconsistencies between the language code in ox.el and ox-latex.el for Norwegian. Before #+LANGUAGE: no would not work. It also adds support for Nynorsk. The second p

Re: [O] HTML export and info: links

2013-07-03 Thread Bastien
Sebastian Wiesner writes: > Ideally the HTML exporter would consult this database when exporting > info links, to find out where the corresponding HTML manual is > published. I see, thanks. Is it safe to assume that htmlxref.cnf will always be located in /usr/share/texinfo/? E.g. is it for you

Re: [O] HTML export and info: links

2013-07-03 Thread Sebastian Wiesner
2013/7/3 Bastien : > Hi Sebastian, > > Sebastian Wiesner writes: > >> I'll put Org mode migration of said manual on hold, for I currently >> lack the time to write a proper link exporter myself. > > I gave this a closer look: one problem is that info links are relative > to the user installation.

Re: [O] Org entries from tables

2013-07-03 Thread Eric Abrahamsen
Bastien writes: > Hi Baptiste, > > Baptiste writes: > >> Is there a way back (or the other way), that is, create org entries with >> associated properties from a table. > > Not to my knowledge (and that of the Org FAQ, FWIW...) > > Sorry! If you were very, very adventurous, however, you could

Re: [O] HTML export and info: links

2013-07-03 Thread Bastien
Hi Sebastian, Sebastian Wiesner writes: > I'll put Org mode migration of said manual on hold, for I currently > lack the time to write a proper link exporter myself. I gave this a closer look: one problem is that info links are relative to the user installation. For example [[info:internals#To

Re: [O] org-mode and python pandas

2013-07-03 Thread Dov Grobgeld
Thanks for the answers, but there is still something missing in order to get it to work. Part of it seems to be connected to the python parsing. E.g. the following translation of Eric's sh example doesn't output correctly with python: #+BEGIN_SRC python :results output print """,A,B,C 0,0.628365,

Re: [O] Break a line in org-mode

2013-07-03 Thread Rasmus
Søren Mikkelsen writes: > I usually have some #+LaTeX_HEADER: entries in my org-mode files where > some of them are macros. These lines can be rather long so I have to > type in #+LaTeX_HEADER: multiple times for breaking the line to a decent > level. > > Is there a way of breaking a line when it

Re: [O] HTML export and info: links

2013-07-03 Thread Sebastian Wiesner
2013/7/3 Bastien : > Hi Sebastian, > > Sebastian Wiesner writes: > >> Hardly the answer I hoped to get. > > Please let us know the answer you hoped to get, it will > surely help us giving it :) Uh, I hoped for a “easy, just toggle that customize setting” sort of answer, not the “well, write it yo

Re: [O] [PATCH] Let =`make'= be an option to =`org-latex-pdf-process'=.

2013-07-03 Thread Suvayu Ali
On Wed, Jul 03, 2013 at 02:22:40PM +0800, Feng Shu wrote: > Suvayu Ali writes: > > > On Wed, Jul 03, 2013 at 07:09:35AM +0800, feng shu wrote: > >> Customize `org-latex-pdf-process isn't very convenient. > >> Is it possible add a feature like: #+LATEX_PDF_PROCESS: latexmk > >> or add #OPTIONS

Re: [O] Org entries from tables

2013-07-03 Thread Bastien
Hi Baptiste, Baptiste writes: > Is there a way back (or the other way), that is, create org entries with > associated properties from a table. Not to my knowledge (and that of the Org FAQ, FWIW...) Sorry! -- Bastien

Re: [O] org-id should require newcomment?

2013-07-03 Thread Bastien
Hi Samuel, Samuel Wales writes: > I require 'org-id, then store the link, then insert the link, and that > is the backtrace I get. Please tell me what else I can provide. If > nobody else can confirm it, I will require 'newcomment and work around > the bug. :) I can't reproduce the bug, so I

Re: [O] Break a line in org-mode

2013-07-03 Thread Nick Dokos
Søren Mikkelsen writes: > I usually have some #+LaTeX_HEADER: entries in my org-mode files where > some of them are macros. These lines can be rather long so I have to > type in #+LaTeX_HEADER: multiple times for breaking the line to a decent > level. > > Is there a way of breaking a line when it

[O] Org entries from tables

2013-07-03 Thread Baptiste
Hi, it is a nice feature to be able to export structured org entries as a table (through column view generated table). Is there a way back (or the other way), that is, create org entries with associated properties from a table. Lot of people is using spreadsheet to organise its data, then it

Re: [O] Incorrect sum of times in table

2013-07-03 Thread Bastien
Bastien writes: > Both solutions work -- we don't need to fear other problems here, > `org-table-sum' is pretty isolated, so I'd say "please go ahead! > and fix this in maint. I just applied the first solution, thanks! -- Bastien

Re: [O] advice needed: how do you guys sync org files between devices?

2013-07-03 Thread Samuel Loury
Hi, Xebar Saram writes: > I was wondering what you guys do for syncing org files between PC's, Os's, > devices (android etc).. There have been lot's of awesome solutions provided in this thread. Mine is quite similar but I think it is worth describing it anyway. I use git (a hand made script¹)

Re: [O] Date format when exporting to LaTeX?

2013-07-03 Thread Bastien
Hi Nicolas and Richard, Nicolas Goaziou writes: >> * org-export-allow-bind-keywords must be true. Adding it as a >> file-local variable is not an acceptable solution in my >> circumstance. >> >> I didn't have to set this variable when I was using 7.8.03 -- >> org-mode simply a

Re: [O] [PATCH] Let =`make'= be an option to =`org-latex-pdf-process'=.

2013-07-03 Thread Bastien
Hi, Suvayu Ali writes: > If you don't mind my chiming in, the standard way to customise Emacs > behaviour (across all modes, not just Org) is through > customize-variable. Org cannot keep on introducing new keywords just > because of convenience. > > In any case, this is also a security risk.

Re: [O] Weekly clock reports for the previous or current week, with a per-day&project breakdown?

2013-07-03 Thread Bastien
Hi Steinar, Steinar Bang writes: >> l.stelm...@samsung.com (Łukasz Stelmach): > >> How about > >> + entering the agenda: C-c a > >> + choosing week view: v w > > Hm... I get "invalid key" when pressing 'v' after doing 'C-c a'... am I > missing some key binding or other setting? `C-c a' sho

Re: [O] org-mode no longer picking up scheduled tasks when upgraded to 8.0.3

2013-07-03 Thread Bastien
Hi Paul, Paul Whipp writes: > A message "org-agenda-skip: Wrong type argument: stringp, nil" > appears when I try to recalculate the agenda view. Please start emacs with ~$ emacs --debug-init and send us the backtrace. Wild guess: delete ~/.emacs.d/elpa/org and reinstall Org from ELPA and a fr

Re: [O] HTML export and info: links

2013-07-03 Thread Bastien
Hi Sebastian, Sebastian Wiesner writes: > Hardly the answer I hoped to get. Please let us know the answer you hoped to get, it will surely help us giving it :) -- Bastien

Re: [O] scrum with emacs org-mode

2013-07-03 Thread Samuel Loury
Hi, thk...@koch.ro writes: > has anybody some success stories to share how to use org-mode in scrum > projects? Unfortunately, I won't be able to help with that. I am quite interested by ideas as well. > If you have some free software tools besides org-mode please tell us for > comparison! I us

Re: [O] Is org 8 going to added to Emacs git?

2013-07-03 Thread Bastien
Hi Gijs, Gijs Hillenius writes: > Just curious: Is Org-mode 8 going to be added to Emacs' git? Emacs > currently comes with Org-mode version 7.9.3f. Yes it will. We will ship 8.0.4 first, hopefully with a decent `org-insert-heading' (see Carsten's reply about it). Then I'll take the time to

[O] Is org 8 going to added to Emacs git?

2013-07-03 Thread Gijs Hillenius
Hello, Just curious: Is Org-mode 8 going to be added to Emacs' git? Emacs currently comes with Org-mode version 7.9.3f. Thanks Gijs