Re: [O] [BUG] cannot open menu when in an org buffer

2012-02-06 Thread Gustav Wikström
Confirmed. If I add > > (require 'org-clock) > > to my minimal .emacs, it goes away. So it seems to be a missing dependency. > > Nick > > I see the same problem when using org-goto with the latest revision of Org (ELPA from 20120206). As Nick suggests, adding (require 'org-clock) fixes the problem. /Gustav

Re: [O] [ANN] ASCII back-end for new export engine

2012-02-06 Thread Nicolas Goaziou
t...@tsdye.com (Thomas S. Dye) writes: > Nicolas Goaziou writes: >> There are three states for creator, on, off and comment, and two places >> to insert the information (in hypersetup and at the end of the exported >> data). >> >> What would be a correct way to handle the different configuration

Re: [O] [ANN] ASCII back-end for new export engine

2012-02-06 Thread Nicolas Goaziou
Hello, t...@tsdye.com (Thomas S. Dye) writes: > I defined a new entity in org-entities-user, but the new exporter > appears to ignore it. Does it look at this variable, or just > org-entities? I used: --8<---cut here---start->8--- (add-to-list 'org-entities-

Re: [O] [ANN] ASCII back-end for new export engine

2012-02-06 Thread Thomas S. Dye
Hi Nicolas, I couldn't make this work. Nicolas Goaziou writes: > t...@tsdye.com (Thomas S. Dye) writes: > >> The old exporter recognized LaTeX commands for accented characters. So, >> \=o in the Org mode file would yield \={o} in the LaTeX file. The new >> exporter gives $\backslash$=o for th

[O] bug#10745: 24.0.93; Regression: org-meta-return does not honor vertical spacing in lists

2012-02-06 Thread Steve Revilak
Perhaps the value of org-blank-before-new-entry is getting clobbered? For a start, this: org-footnote.el:(defvar org-blank-before-new-entry nil) ; silence byte-compiler is bogus (the relevant syntax is (defvar foo)). Glenn, I believe you found it. Applying the change in org-footnote.el.pat

[O] bug#10745: 24.0.93; Regression: org-meta-return does not honor vertical spacing in lists

2012-02-06 Thread Glenn Morris
Steve Revilak wrote: > Perhaps the value of org-blank-before-new-entry is getting clobbered? For a start, this: org-footnote.el:(defvar org-blank-before-new-entry nil) ; silence byte-compiler is bogus (the relevant syntax is (defvar foo)). Probably so are these: org-footnote.el:(defvar org-ex

Re: [O] [BUG] cannot open menu when in an org buffer

2012-02-06 Thread Nick Dokos
suvayu ali wrote: > On Sat, Feb 4, 2012 at 18:46, Nick Dokos wrote: > > > > Confirmed. If I add > > > > (require 'org-clock) > > > > to my minimal .emacs, it goes away. So it seems to be a missing dependenc= > y. > > > > It seems an odd dependency to have. True - org-in-clocktable-p does not h

[O] workaround for inability to close outline section w/out starting a new one?

2012-02-06 Thread Sam Cramer
I love orgmode, but the inability to close an outline section without starting a new one makes it tough for me to structure some documents the way I'd like. The FAQ suggests several workarounds; one is You can create a temporary heading, such as "** Continue main section" and > then remove it whe

Re: [O] [BUG] cannot open menu when in an org buffer

2012-02-06 Thread suvayu ali
On Sat, Feb 4, 2012 at 18:46, Nick Dokos wrote: > suvayu ali wrote: > >> Hi, >> >> In a minimal Emacs session when I open _any_ org file and try to access >> the GUI menu with a mouse, I get the following back trace: >> >> Debugger entered--Lisp error: (void-function org-in-clocktable-p) >>   org

Re: [O] Updating the Babel section of Worg

2012-02-06 Thread Eric Schulte
Hi Tom, t...@tsdye.com (Thomas S. Dye) writes: > Hi Eric, > > Yes, this is overdue. I think your plan is a good one. > > Perhaps a few of the individual use cases could be moved to FIXME, > instead? I'm thinking here of Feiming Chen's R setup and some of my > contributions when I was experiment

Re: [O] Generating plot with org-babel-R

2012-02-06 Thread Riccardo Romoli
Hi Thomas, thanks a lot for your help!! Using the JSS and the org manual I solved all my problem (at least for now!! :)) Best Riccardo 2012/2/5 Thomas S. Dye > Hi Riccardo, > > Thanks for the URL. Org mode has evolved since this article was > written. It should probably be revised or take

[O] [PATCH] Replace all calls to (eq major-mode 'org-mode) with (derived-mode-p 'org-mode)

2012-02-06 Thread Cássio Koshikumo
Hello all, A while ago I asked about changing the Major Mode checking that happens throughout Org, so that derived modes would function properly. I finally had the time to make a patch. I just replaced every (eq major-mode 'org-mode) with (derived-mode-p 'org-mode). All files and buffers that u

Re: [O] Visibilty of inline tasks

2012-02-06 Thread Sebastien Vauban
Hi Marc-Oliver, Marc-Oliver Ihm wrote: > Am 16.12.2010 14:26, schrieb Sébastien Vauban: >> Though that is written in =org-inlinetask.el=: >> >> ;; Visibility cycling exempts these nodes from cycling. So whenever their >> ;; parent is opened, so are these tasks. >> >> I have the impression that, u

[O] Non-deadline agenda warnings

2012-02-06 Thread Jacek Generowicz
Hi, Is it possible to have warnings, such as those for upcoming deatlines, appear in the agenda for time-stamped items other than deadlines? Thanks.

Re: [O] Variable settings in .emacs VS cross device portability.

2012-02-06 Thread janek
Yu writes: > code). The emacs-documentation doesn't mention it, but apparently this > works also in shebang'ed files, by moving the single line form (`-*- > ... -*-') to the second line. [2] > > [1] > http://www.gnu.org/software/emacs/manual/html_node/emacs/File-Variables.html > [2] http://www.l

Re: [O] LaTeX-export: letters after $..$ turn off math-mode

2012-02-06 Thread Achim Gratz
Daniel Schoepe writes: > I have the following issue: If I write something like `$n$th' in an org > file and then export it to LaTeX, it will produce `\$n\$th', whereas I > would like it to export this as `$n$th'. Is there some way I can disable > escaping of dollar signs entirely (Leaving it to me

Re: [O] Visibilty of inline tasks

2012-02-06 Thread Marc-Oliver Ihm
Am 16.12.2010 14:26, schrieb Sébastien Vauban: Hello, Though that is written in =org-inlinetask.el=: ;; Visibility cycling exempts these nodes from cycling. So whenever their ;; parent is opened, so are these tasks. I have the impression that, up to a couple of days ago, the inlined headlines

Re: [O] [Daniel Schoepe] Re: LaTeX-export: letters after $..$ turn off math-mode

2012-02-06 Thread John Hendy
On Mon, Feb 6, 2012 at 12:52 PM, Daniel Schoepe wrote: > John Hendy, answered my question off-list, presumably unintentionally > (sorry about my forwarding parts of your mail, if that assumption is > wrong), so here's my answer to that which I also forgot to send to the > list. The solution / work

[O] [Daniel Schoepe] Re: LaTeX-export: letters after $..$ turn off math-mode

2012-02-06 Thread Daniel Schoepe
John Hendy, answered my question off-list, presumably unintentionally (sorry about my forwarding parts of your mail, if that assumption is wrong), so here's my answer to that which I also forgot to send to the list. The solution / workaround was to use `\(n\)th' instead. --- Begin Message --- On M

Re: [O] [ANN] ASCII back-end for new export engine

2012-02-06 Thread Thomas S. Dye
Nicolas Goaziou writes: > t...@tsdye.com (Thomas S. Dye) writes: > >> The old exporter recognized LaTeX commands for accented characters. So, >> \=o in the Org mode file would yield \={o} in the LaTeX file. The new >> exporter gives $\backslash$=o for this construct. > > Indeed, the parser re

[O] LaTeX-export: letters after $..$ turn off math-mode

2012-02-06 Thread Daniel Schoepe
Hi, I have the following issue: If I write something like `$n$th' in an org file and then export it to LaTeX, it will produce `\$n\$th', whereas I would like it to export this as `$n$th'. Is there some way I can disable escaping of dollar signs entirely (Leaving it to me to escape them, when I don

Re: [O] How to display sunrise and sunset in weekly agenda view, but only for today?

2012-02-06 Thread Brian van den Broek
On 6 February 2012 17:08, Nick Dokos wrote: > Brian van den Broek wrote: > >> Hi all, >> >> I was looking at and >> have used the code there to put sunrise and sunset into my agenda >> views; most cool. >> >> Poking around the thread that the worg

[O] Commit bb2848 causes performance problems

2012-02-06 Thread Marcel van der Boom
commit bb28480169558a183fab2330476a49b4fb1aec46 causes major performance problems in my install. GNU Emacs 24.0.92.3 (x86_64-unknown-linux-gnu, GTK+ Version 2.24.6) The relevant change: diff --git a/lisp/org.el b/lisp/org.el index 587d298..f670787 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -6

Re: [O] [ANN] ASCII back-end for new export engine

2012-02-06 Thread Nicolas Goaziou
t...@tsdye.com (Thomas S. Dye) writes: > The old exporter recognized LaTeX commands for accented characters. So, > \=o in the Org mode file would yield \={o} in the LaTeX file. The new > exporter gives $\backslash$=o for this construct. Indeed, the parser recognizes LaTeX commands and environ

Re: [O] [ANN] ASCII back-end for new export engine

2012-02-06 Thread Thomas S. Dye
Nicolas Goaziou writes: > Hello, > > t...@tsdye.com (Thomas S. Dye) writes: > >> This docstring at line 186 of org-e-latex.el is incomplete > > Fixed. > >> BTW, I have the experimental LaTeX exporter working on a real project >> now. It is performing very well for me. > > Good to hear. I still n

Re: [O] [beamer] Code blocks in lists?

2012-02-06 Thread Sebastien Vauban
Hi Nicolas, Nicolas Goaziou wrote: > "Sebastien Vauban" writes: > >> I've identified a couple of troubles related to code blocks inside lists (in >> Beamer): >> >> - code blocks break the list >> >> - "relative" indentation of the code inside its frame is wrong except when >> code begins at colu

Re: [O] A bit more feedback on org-publish-all

2012-02-06 Thread Nick Dokos
François Pinard wrote: > ... > This is more similar to my actual usage, which really is: > > [...] > write = sys.stderr.write > for line in os.popen('emacs 2>&1 -batch' > ' -l ~/fp/notes/publish.el' > ' -f org-pub

Re: [O] A bit more feedback on org-publish-all

2012-02-06 Thread Nick Dokos
François Pinard wrote: > > Also, don't you get messages for every file? > > Yes, and these messages usually say: "Skipping unmodified file ..." > > On the "entertaining side", this is too much noise; I would have > preferred a mere line per project. Not a big deal anyway for me. On > the "deb

Re: [O] [beamer] Code blocks in lists?

2012-02-06 Thread Nicolas Goaziou
Hello, "Sebastien Vauban" writes: > I've identified a couple of troubles related to code blocks inside lists (in > Beamer): > > - code blocks break the list > > - "relative" indentation of the code inside its frame is wrong except when > code begins at column 0: is this a requirement? > > -

Re: [O] [beamer] Italic in overlay text

2012-02-06 Thread Nicolas Goaziou
"Sebastien Vauban" writes: > Hi Eric, > > Eric S Fraga wrote: >> Sebastien Vauban >> writes: >>> When trying to have italic text inside some paragraph that must only be >>> displayed in some overlays, the text inside `/' is not converted into >>> italic. >> >> This does seem to highlight a bu

Re: [O] How to display sunrise and sunset in weekly agenda view, but only for today?

2012-02-06 Thread Nick Dokos
Brian van den Broek wrote: > Hi all, > > I was looking at and > have used the code there to put sunrise and sunset into my agenda > views; most cool. > > Poking around the thread that the worg page links to, I saw people > were interested in disp

Re: [O] A bit more feedback on org-publish-all

2012-02-06 Thread François Pinard
Nick Dokos writes: > (message "foo") prints to stderr in batch mode, which is an unbuffered > stream. E.g ``emacs --batch -l foo.el'' with foo.el containing > (message "foo") > (sit-for 10) > prints out ``foo'' and then sits for 10 seconds before exiting. Hi, Nick. It seems you are right. I

[O] How to display sunrise and sunset in weekly agenda view, but only for today?

2012-02-06 Thread Brian van den Broek
Hi all, I was looking at and have used the code there to put sunrise and sunset into my agenda views; most cool. Poking around the thread that the worg page links to, I saw people were interested in displaying these times only in agenda day views.

Re: [O] [ANN] ASCII back-end for new export engine

2012-02-06 Thread Nicolas Goaziou
Hello, t...@tsdye.com (Thomas S. Dye) writes: > This docstring at line 186 of org-e-latex.el is incomplete Fixed. > BTW, I have the experimental LaTeX exporter working on a real project > now. It is performing very well for me. Good to hear. I still need to fix the "#+toc: listings" keyword (

Re: [O] org-babel: Evaluating code blocks with noweb references but ":noweb tangle".

2012-02-06 Thread Sebastien Vauban
Hi Yu, Yu wrote: > I sometimes have scenarios where I want to use the "noweb" feature in > interactive evaluation, but want the code to stay in its unexpanded > form on export. Currently I think, there is no way to achieve this and > I use tangling into a helper module file as a workaround (which

Re: [O] [beamer] Italic in overlay text

2012-02-06 Thread Sebastien Vauban
Hi Eric, Eric S Fraga wrote: > Sebastien Vauban writes: >> Eric S Fraga wrote: >>> Sebastien Vauban writes: When trying to have italic text inside some paragraph that must only be displayed in some overlays, the text inside `/' is not converted into italic. >>> >>> I can suggest a

[O] [beamer] Code blocks in lists?

2012-02-06 Thread Sebastien Vauban
Hello, I've identified a couple of troubles related to code blocks inside lists (in Beamer): - code blocks break the list - "relative" indentation of the code inside its frame is wrong except when code begins at column 0: is this a requirement? - sometimes, "ORG-LIST-END-MARKER" is exported i

Re: [O] [beamer] Italic in overlay text

2012-02-06 Thread Eric S Fraga
Sebastien Vauban writes: > Hi Eric, > > Eric S Fraga wrote: >> Sebastien Vauban writes: >>> When trying to have italic text inside some paragraph that must only be >>> displayed in some overlays, the text inside `/' is not converted into >>> italic. >> >> This does seem to highlight a bug in the

Re: [O] [beamer] Italic in overlay text

2012-02-06 Thread Sebastien Vauban
Hi Eric, Eric S Fraga wrote: > Sebastien Vauban writes: >> When trying to have italic text inside some paragraph that must only be >> displayed in some overlays, the text inside `/' is not converted into >> italic. > > This does seem to highlight a bug in the exporter. I cannot help you > directl

[O] org2blog image issue

2012-02-06 Thread Sheng Xue
Hi all, I published my post by org2blog, and the image in my org file is correctly uploaded to the my blog at the first time. However, after I updated my image, and published it again, the image on my blog couldn't be updated as well. Any idea about this issue? Thanks! Best regards, Sheng