[O] [PATCH] Incorrect HTML entity for `degree'

2011-06-06 Thread Ulf Stegemann
The degree symbol (`deg') has an incorrect HTML entity in org-entities.el. Ulf diff --git a/lisp/org-entities.el b/lisp/org-entities.el index 609173a..c6ace61 100644 --- a/lisp/org-entities.el +++ b/lisp/org-entities.el @@ -304,7 +304,7 @@ loaded, add these packages to

Re: [O] [PATCH] Incorrect HTML entity for `degree'

2011-06-06 Thread Carsten Dominik
Applied, thanks. - Carsten On Jun 6, 2011, at 9:10 AM, Ulf Stegemann wrote: The degree symbol (`deg') has an incorrect HTML entity in org-entities.el. Ulf org-entities.el.degree.diff

Re: [O] [FEATURE] mobile-org on android don't show the hours of the event

2011-06-06 Thread Carsten Dominik
Hi Remi, On Apr 3, 2011, at 1:45 PM, Rémi Vanicat wrote: Hello list, When looking at the agenda on my phone, I can't see the hours of the events I'm looking at. It seem the information is available (it's in the agenda.org that is used by android's mobile-org to show, but I can't

Re: [O] [OT] Icon problem with org-google-weather

2011-06-06 Thread Tassilo Horn
Nick Dokos nicholas.do...@hp.com writes: This is off-topic but it is driving me bananas. I do (setq date '(6 5 2011)) (6 5 2011) (setq foo (let ((org-google-weather-cache-time 0)) (org-google-weather))) (setq bar (org-google-weather)) (equal foo bar) (insert foo) (insert bar) in

[O] Matplotlib (Python) plots inline

2011-06-06 Thread Torsten Bronger
Hallöchen! I wonder what is the best way to include plots generated from Python code into my notes. I found a way but maybe there's a better one. What I do is --8---cut here---start-8--- #+begin_src python import numpy, matplotlib, matplotlib.pyplot

[O] Keeping an advanced dictionary in Org-mode?

2011-06-06 Thread Christian Moe
Hi, Is anybody using Org-mode to build an advanced dictionary with sub-entries, tags etc.? Would you be willing to share a setup? For example, the obvious way to build a dictionary would be to use a dictionary list (I borrow a few English-French lines from the wonderful WordReference.com

Re: [O] [babel] [PATCH] Fix sh block execution in session

2011-06-06 Thread julien Barnier
Hi Eric, 1. do you have a minimal example of a shell code block which works after your patch but not before? Well, in fact it seems that almost any shell block cause problems when executed in a session. This one, for example : #+begin_src sh :session test :results output echo foo #+end_src

Re: [O] possible typo in org manual

2011-06-06 Thread Giovanni Ridolfi
On Sat, 4 Jun 2011, Noorul Islam wrote: On Sat, Jun 4, 2011 at 12:06 PM, skip scp0...@gmail.com wrote: The manual I'm using is here: http://orgmode.org/org.html#Working-With-Source-Code See item 14.2.8.1 sub-heading: Emacs Lisp evaluation of variables in the sample code,

Re: [O] Matplotlib (Python) plots inline

2011-06-06 Thread Pierre de Buyl
Hello, I have success with the following: #+begin_src python :results output raw :exports results import numpy, matplotlib, matplotlib.pyplot figure = matplotlib.pyplot.figure() axes = figure.add_subplot(111, title=uHello, xlabel=x, ylabel=y) x = numpy.arange(-10, 10, 0.1)

[O] C-c - broken

2011-06-06 Thread Marvin Doyley
Hi there, I use to use C-c - to convert headlines to plain list, but for some reason when I do this it tries to make a table of content, see below TABLE-OF-CONTENTS on ~/Documents/General/O/org/planner.org SPC=view TAB=goto RET=goto+hide [q]uit [r]escan [l]abels [f]ollow [x]r [?]Help

Re: [O] Matplotlib (Python) plots inline

2011-06-06 Thread Eric Schulte
Hi Torsten, You could try #+begin_src python :exports results :file /tmp/plot_test.png ... #+end_src Which should behave as desired. Best -- Eric Torsten Bronger bron...@physik.rwth-aachen.de writes: Hallöchen! I wonder what is the best way to include plots generated from Python code

Re: [O] [OT] Icon problem with org-google-weather

2011-06-06 Thread Nick Dokos
Tassilo Horn tass...@member.fsf.org wrote: Nevertheless, when I insert foo, the icon is shown, but when I insert bar, the icon is an empty box. What am I missing? I have a similar problem. In one of my org files, I have %%(org-google-weather Montabaur de) and since lately, I get

Re: [O] [babel] [PATCH] Fix sh block execution in session

2011-06-06 Thread Eric Schulte
Hi julien, julien Barnier jul...@nozav.org writes: Hi Eric, 1. do you have a minimal example of a shell code block which works after your patch but not before? Well, in fact it seems that almost any shell block cause problems when executed in a session. This one, for example :

Re: [O] Keeping an advanced dictionary in Org-mode?

2011-06-06 Thread Alan E. Davis
FWIW: I won't get into it much for now, but I have used a band format for lexical data. There are other names for this type of free form database. I wrote a crude elisp routine to recover entries into LaTeX formatted files. A band is a record, so to speak. I am not very well qualified in

Re: [O] [OT] Icon problem with org-google-weather

2011-06-06 Thread Tassilo Horn
Nick Dokos nicholas.do...@hp.com writes: --8---cut here---start-8--- (defun foobar () (interactive) (let ((date '(6 6 2011))) (setq bar (org-google-weather Montabaur DE)) (setq foo (let ((org-google-weather-cache-time 0))

Re: [O] [OT] Icon problem with org-google-weather

2011-06-06 Thread Nick Dokos
Tassilo Horn tass...@member.fsf.org wrote: Nick Dokos nicholas.do...@hp.com writes: --8---cut here---start-8--- (defun foobar () (interactive) (let ((date '(6 6 2011))) (setq bar (org-google-weather Montabaur DE)) (setq foo (let

Re: [O] C-c - broken

2011-06-06 Thread Nicolas Goaziou
Hello, Marvin Doyley marvin...@gmail.com writes: I use to use C-c - to convert headlines to plain list, but for some reason when I do this it tries to make a table of content, see below TABLE-OF-CONTENTS on ~/Documents/General/O/org/planner.org SPC=view TAB=goto RET=goto+hide [q]uit

Re: [O] [OT] Icon problem with org-google-weather

2011-06-06 Thread Nick Dokos
Nick Dokos nicholas.do...@hp.com wrote: Tassilo Horn tass...@member.fsf.org wrote: It's already there. But now I get (error Bad url: :/ig/images/weather/chance_of_storm.gif) in the first `org-google-weather' call. Me too: this is recent - the image URLs were of the form

Re: [O] C-c - broken

2011-06-06 Thread Scott Randby
On 06/06/2011 09:44 AM, Marvin Doyley wrote: Hi there, I use to use C-c - to convert headlines to plain list, but for some reason when I do this it tries to make a table of content, see below TABLE-OF-CONTENTS on ~/Documents/General/O/org/planner.org SPC=view TAB=goto RET=goto+hide [q]uit

Re: [O] [Orgmode] Automatic screenshot insertion

2011-06-06 Thread David Maus
At Tue, 29 Mar 2011 09:43:27 -0500, Russell Adams wrote: I made a minor change. File names are now generated by using the current org buffer filename, plus the date and time, and a unique number. This allows me to sort out the images better. (defun org-screenshot ()

Re: [O] export problems

2011-06-06 Thread Eric Abrahamsen
Nick Dokos nicholas.do...@hp.com writes: Nick Dokos nicholas.do...@hp.com wrote: Eric Abrahamsen e...@ericabrahamsen.net wrote: It was while trying to produce a backtrace (with edebug) that I discovered that re-evaluating the code fixed the problem. I set debug-on-error to t and

Re: [O] Keeping an advanced dictionary in Org-mode?

2011-06-06 Thread Christian Moe
Hi, Thanks, these pointers were really helpful -- whether I end up doing something similar, or using them to work out how I want to do this in Org, or using other tools I was able to discover in five minutes after you'd pointed me to the right search keywords! ( Like SIL's Toolbox:

Re: [O] Bug: Bug in editing table.el tables [7.5 (release_7.5.36.g4e24)]

2011-06-06 Thread David Maus
At Thu, 31 Mar 2011 12:13:59 +0100, Shaun Johnson wrote: Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See http://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to

Re: [O] C-c - broken

2011-06-06 Thread Nick Dokos
Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Marvin Doyley marvin...@gmail.com writes: I use to use C-c - to convert headlines to plain list, but for some reason when I do this it tries to make a table of content, see below TABLE-OF-CONTENTS on

Re: [O] C-c - broken

2011-06-06 Thread Nick Dokos
Nick Dokos nicholas.do...@hp.com wrote: Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Marvin Doyley marvin...@gmail.com writes: I use to use C-c - to convert headlines to plain list, but for some reason when I do this it tries to make a table of content, see below

Re: [O] C-c - broken

2011-06-06 Thread Carsten Dominik
Hi, On 6.6.2011, at 15:44, Marvin Doyley wrote: Hi there, I use to use C-c - to convert headlines to plain list, but for some reason when I do this it tries to make a table of content, see below TABLE-OF-CONTENTS on ~/Documents/General/O/org/planner.org SPC=view TAB=goto RET=goto+hide

Re: [O] C-c - broken

2011-06-06 Thread Marvin Doyley
Hi guys, Switching off Reftex works Cheers M On Jun 6, 2011, at 3:14 PM, Nick Dokos nicholas.do...@hp.com wrote: Nicolas Goaziou n.goaz...@gmail.com wrote: Hello, Marvin Doyley marvin...@gmail.com writes: I use to use C-c - to convert headlines to plain list, but for some reason

[O] Agenda file for the following X days

2011-06-06 Thread Ugur Ozdemir
Hi, As a novice I was wondering if there is an easy way of creating an agenda file for a certain number of days starting from today. I know I can do some custom agenda commands if I do some study but I guess I am trying to free ride here. Cheers, -- Ugur Ozdemir

Re: [O] [OT] Icon problem with org-google-weather

2011-06-06 Thread Nick Dokos
Nick Dokos nicholas.do...@hp.com wrote: This is off-topic but it is driving me bananas. I do (setq date '(6 5 2011)) (6 5 2011) (setq foo (let ((org-google-weather-cache-time 0)) (org-google-weather))) (setq bar (org-google-weather)) (equal foo bar) (insert foo) (insert bar)