Re: [O] Kill all items with specific tag to kill-ring.

2013-04-25 Thread Carsten Dominik
On 25.4.2013, at 07:32, Oleksandr Gavenko gaven...@gmail.com wrote: I use tags only on top level items in org-file. And want move all items marked by specific tag to different org-file. I expect that this command kill items with selected tag to kill-ring in one step (so single undo

Re: [O] Using Eric Schulte's starter kit with org mode from source

2013-04-25 Thread Alan Schmitt
Thomas S. Dye writes: I tangle the initialization file (init.el) from my document. Everything is contained in the one Org file. Asynchronous export works really well for me. As I don't install org from elpa, I removed the after-init-hook part (so I load the starter kit immediately), and

Re: [O] are babel python sessions and inlined images incompatible?

2013-04-25 Thread Sebastien Vauban
Hi Rodrigo, Rodrigo Amestica wrote: Sebastien Vauban wrote: You don't need to explicitly specify a return when working with a session. Either of the following should work. #+BEGIN_SRC python :session test :file images/test.png from pylab import * plot(rand(10))

Re: [O] Item task_id not being used in taskjuggler export tj prefixing

2013-04-25 Thread Christian Egli
John Hendy jw.he...@gmail.com writes: On Mon, Apr 1, 2013 at 5:01 PM, Nicolas Goaziou n.goaz...@gmail.com wrote: You can already do so. IDs only have to be unique within the task siblings. True, one can name tasks identically as long as they have no identical siblings... but the point was

Re: [O] Kill all items with specific tag to kill-ring.

2013-04-25 Thread Oleksandr Gavenko
Carsten Dominik carsten.dominik at gmail.com writes: On 25.4.2013, at 07:32, Oleksandr Gavenko gavenkoa at gmail.com wrote: I use tags only on top level items in org-file. And want move all items marked by specific tag to different org-file. I expect that this command kill items

Re: [O] Kill all items with specific tag to kill-ring.

2013-04-25 Thread Carsten Dominik
On 25.4.2013, at 10:21, Oleksandr Gavenko gaven...@gmail.com wrote: Carsten Dominik carsten.dominik at gmail.com writes: On 25.4.2013, at 07:32, Oleksandr Gavenko gavenkoa at gmail.com wrote: I use tags only on top level items in org-file. And want move all items marked by specific

Re: [O] Android MobileOrg: appointments without SCHEDULED/DEADLINE

2013-04-25 Thread Eric S Fraga
Henning Weiss hdwe...@gmail.com writes: [...] Active timestamps are currently supported, but only in the payload of an item. You can also try enabling show done events if the events are still not added to the calendar. Timestamps in headings might be supported at some point in the future

Re: [O] Kill all items with specific tag to kill-ring.

2013-04-25 Thread Oleksandr Gavenko
Carsten Dominik carsten.dominik at gmail.com writes: On 25.4.2013, at 10:21, Oleksandr Gavenko gavenkoa at gmail.com wrote: I finish with very hackie code (based on knowledge of internal implementation of org-scan-tags): (defun my-org-kill-by-tag (tag) (interactive (list

[O] XML src block syntax highlighting

2013-04-25 Thread Tom
Hi, I'm in the process of writing documentation for a simple HTTP based API that returns responses as XML. The included response examples are blocks of the form: #+BEGIN_SRC xml :exports code ?xml version=1.0 encoding=utf-8? validxml ... /validxml #+END_SRC I have org-src-fontify-natively =

Re: [O] Paths including spaces fail the installation: Patch

2013-04-25 Thread Bernd Haug
Hi Achim, On 23 April 2013 18:56, Achim Gratz strom...@nexgo.de wrote: Please put quotes around the definition of prefix: prefix = /Users/bernd.haug/Library/Application Support/Aquamacs Emacs Yes, with quoting the prefix a fresh clone installed cleanly. thanks, but don't bother about

Re: [O] Kill all items with specific tag to kill-ring.

2013-04-25 Thread Carsten Dominik
On 25 apr. 2013, at 10:56, Oleksandr Gavenko gaven...@gmail.com wrote: Carsten Dominik carsten.dominik at gmail.com writes: On 25.4.2013, at 10:21, Oleksandr Gavenko gavenkoa at gmail.com wrote: I finish with very hackie code (based on knowledge of internal implementation of

Re: [O] Kill all items with specific tag to kill-ring.

2013-04-25 Thread Oleksandr Gavenko
Carsten Dominik carsten.dominik at gmail.com writes: On 25 apr. 2013, at 10:56, Oleksandr Gavenko gavenkoa at gmail.com wrote: (defun my-org-kill-by-tag (tag) (interactive (list (completing-read Enter tag: (org-get-buffer-tags (kill-new ) (org-scan-tags (lambda ()

[O] Loop when updating SCHEDULED date from agenda view

2013-04-25 Thread Sebastien Vauban
Hello, As I rarely meet my goals, I _very often_ move SCHEDULED entries in the future, by S-right arrow'ing the agenda entry. Since 1 month or so, I _sometimes_ experience a loop (seems infinite, but hopefully it is breakable) when updating the date of SCHEDULED items. This did not occur at all

Re: [O] Kill all items with specific tag to kill-ring.

2013-04-25 Thread Bernt Hansen
Oleksandr Gavenko gaven...@gmail.com writes: I want this feature in order to simplify precess of moving entries from job org-file to home org-file by marking entries with tag :HOME:... Hi Oleksandr, If all you want to do is move items why not use the agenda? Mark your entries with a tag,

[O] [BUG] org-fill-paragraph on #+TBLNAME

2013-04-25 Thread Michael Brand
Hi all There is a minor bug, relevant in my first and simple trial to apply org-fill-paragraph on all parts of an Org buffer: M-q (fill-paragraph/org-fill-paragraph) on the first column of the line #+TBLNAME here #+TBLNAME: table | field | results in an error. The type table and the buffer

Re: [O] [babel] Specified colnames

2013-04-25 Thread Sebastien Vauban
Hi Eric, Eric Schulte wrote: Sebastien Vauban wxhgmqzgw...@spammotel.com writes: Eric Schulte wrote: Sebastien Vauban wxhgmqzgw...@spammotel.com writes: Eric Schulte wrote: Extra question: tested with a sh block, both of the above do work, that is with strings or symbols. Which one is

Re: [O] Worg not publishing

2013-04-25 Thread Thorsten Jolitz
Bastien b...@gnu.org writes: Hi Bastien, Achim Gratz strom...@nexgo.de writes: Worg stopped publishing... it dies on some invalid timestamp: remote: Generating tree-style sitemap for Sitemap for project worg-pages remote: Generating tree-style sitemap for Sitemap for project

Re: [O] XML src block syntax highlighting

2013-04-25 Thread Suvayu Ali
On Thu, Apr 25, 2013 at 11:57:49AM +0200, Tom wrote: #+BEGIN_SRC xml :exports code ?xml version=1.0 encoding=utf-8? validxml ... /validxml #+END_SRC I have org-src-fontify-natively = and it works for other code, but xml is fontified as a fundamental buffer, not like nxml-mode shows

Re: [O] XML src block syntax highlighting

2013-04-25 Thread Tom
Hi, Many thanks for your reply. Suvayu Ali fatkasuvayu+li...@gmail.com schrieb: On Thu, Apr 25, 2013 at 11:57:49AM +0200, Tom wrote: #+BEGIN_SRC xml :exports code ?xml version=1.0 encoding=utf-8? validxml ... /validxml #+END_SRC I have org-src-fontify-natively = and it works for

Re: [O] Using Eric Schulte's starter kit with org mode from source

2013-04-25 Thread Eric Schulte
Alan Schmitt alan.schm...@polytechnique.org writes: Thomas S. Dye writes: I tangle the initialization file (init.el) from my document. Everything is contained in the one Org file. Asynchronous export works really well for me. As I don't install org from elpa, I removed the

[O] Bug: org-element-fixed-width-interpreter fails when given an empty string [8.0.1 (release_8.0.1-40-g38051c @ /home/david/git/home-common/emacs/foreign/org-mode/lisp/)]

2013-04-25 Thread David Beswick
Hi, I encountered this problem when trying out org-sync with Redmine. That package uses org-element to create fixed-width type elements to contain the bug descriptions. When a bug had no description, this problem would occur. In that case, org-element-property returns the empty string for the

[O] How could I configure an export directory?

2013-04-25 Thread Manfred Lotz
Hi there, When I export to pdf (involving LaTeX), odt or whatever I would like all those files (including temporary files) to reside in a special directory, say ~/org/exportdir How can I configure this? -- Thanks, Manfred

Re: [O] How could I configure an export directory?

2013-04-25 Thread John Hendy
On Thu, Apr 25, 2013 at 10:51 AM, Manfred Lotz manfred.l...@arcor.de wrote: Hi there, When I export to pdf (involving LaTeX), odt or whatever I would like all those files (including temporary files) to reside in a special directory, say ~/org/exportdir Looks like this has come up before: -

Re: [O] Worg not publishing

2013-04-25 Thread Bastien
Thorsten Jolitz tjol...@gmail.com writes: Still not fixed, or an error on my side? Your commit was well in the repository (i.e., well pushed.) I republished Org. What we do know is that the local version of Org is obtained with ~$ git checkout release_7.9.4 -- and there are some cron jobs

Re: [O] Org-mode outside Org-mode

2013-04-25 Thread Thorsten Jolitz
Alexander Vorobiev alexander.vorob...@gmail.com writes: Hi Alexander, A while back I wrote a macro (based on the advice in  http://stackoverflow.com/a/2494384/973603) which allows to activate minor mode bindings when a condition is true and fall back to previous bindings otherwise: I just

[O] hard coded autoload file

2013-04-25 Thread Ivan Kanis
Hello, It seems each file has the name of the autoload file hard coded at the end. For example at the end org-element.el: ;; Local variables: ;; generated-autoload-file: org-loaddefs.el ;; End: It sucks for me as I generate autoload with a different name. I made a workaround so it's fine. I

[O] M-RET slow

2013-04-25 Thread Samuel Wales
In recent git, M-RET takes a few seconds before it does anything. I wonder what sophisticated calculation it is doing? :) Samuel -- The Kafka Pandemic: http://thekafkapandemic.blogspot.com The disease DOES progress. MANY people have died from it. ANYBODY can get it.

[O] M-RET inside the first second-level heading of the first first-level heading

2013-04-25 Thread Jisang Yoo
short description: When I try to create a new heading using M-RET, it works as expected except one case: inside the first second-level heading of the first first-level heading. This bug affects the latest ELPA version of org, but not the latest bundled-with-Emacs version long description:

Re: [O] [PATCH] export to various flavors of (X)HTML

2013-04-25 Thread Eric Abrahamsen
François Pinard pin...@iro.umontreal.ca writes: Christian Wittern cwitt...@gmail.com writes: On 2013-04-23 21:09, François Pinard wrote: If I remember well [...] Well, in this case you are misremembering, empty elements, aka as self-closing tags are one of the innovations of XML. Just my

Re: [O] M-RET inside the first second-level heading of the first first-level heading

2013-04-25 Thread John Hendy
On Thu, Apr 25, 2013 at 3:39 PM, Jisang Yoo jisang.yoo.ac+...@gmail.com wrote: short description: When I try to create a new heading using M-RET, it works as expected except one case: inside the first second-level heading of the first first-level heading. This bug affects the latest ELPA

[O] runaway argument exporting: * _is_?

2013-04-25 Thread Greg Minshall
hi. i'm running Org-mode version 8.0.1 (release_8.0.1-42-g267cbe @ /Users/minshall/usr/share/emacs/site-lisp/org/) my test case is #+DATE: 2013-04-25 Thu #+OPTIONS: H:2 texht:t #+BEAMER_COLOR_THEME: #+BEAMER_FONT_THEME: #+BEAMER_HEADER: #+BEAMER_INNER_THEME: #+BEAMER_OUTER_THEME:

Re: [O] Updating Worg: call to Worg authors

2013-04-25 Thread Jay Kerns
Greetings, First: thanks to Nicholas Goaziou and Thorsten Jolitz. There is a bunch of work already completed - indeed, out of the 83 currently existing headlines, 63 are marked DONE. But there is a lot of updating that remains. And the longer the process continues, the further the two branches

Re: [O] Updating Worg: call to Worg authors

2013-04-25 Thread Jay Kerns
On Thu, Apr 25, 2013 at 7:18 PM, Jay Kerns gjkerns...@gmail.com wrote: First: thanks to Nicholas Goaziou and Thorsten Jolitz. There is That should have been Nicolas; I apologize. Jay

[O] variable names in manual

2013-04-25 Thread Greg Minshall
hi. the info pages seem to have convert

[O] variable names in manual

2013-04-25 Thread Greg Minshall
sorry about that. i was going to ask about the variable names in the current (8.x) documentation being in upper case. (then, wanted to check the mailing list, but hit the wrong key -- now i've looked, cursorily, as i wanted to apologize quickly.) this convention has the advantage of making

[O] parameterizing keyword values during a #+call

2013-04-25 Thread Greg Minshall
hi. i would have an org file that uses lots of #+calls to various asymptote routines (babelled into the file) to produce graphics. i would like to export this file to both html and to latex (specifically beamer). for html, i would like, e.g., SVG files, and for latex, PDF files. the file name

Re: [O] variable names in manual

2013-04-25 Thread Suvayu Ali
On Thu, Apr 25, 2013 at 07:37:25PM -0400, Greg Minshall wrote: sorry about that. i was going to ask about the variable names in the current (8.x) documentation being in upper case. (then, wanted to check [...chomp...chomp...chomp...] but, it means that placing the cursor over the name and

Re: [O] parameterizing keyword values during a #+call

2013-04-25 Thread Eric Schulte
Greg Minshall minsh...@umich.edu writes: hi. i would have an org file that uses lots of #+calls to various asymptote routines (babelled into the file) to produce graphics. i would like to export this file to both html and to latex (specifically beamer). for html, i would like, e.g., SVG

Re: [O] Filling bug with alphabetical lists

2013-04-25 Thread Bernt Hansen
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Bernt Hansen be...@norang.ca writes: Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Bernt Hansen be...@norang.ca writes: I found the following filling bug with alphabetical lists. I have (setq org-alphabetical-lists t) This

Re: [O] New exporter - publishing org files doesn't include :tangle

2013-04-25 Thread Bernt Hansen
Nicolas Goaziou n.goaz...@gmail.com writes: Hello, Bernt Hansen be...@norang.ca writes: James Yuan noticed that the .org file that is published with my document (http://doc.norang.ca/org-mode.org does not contain :tangle on any of the source blocks. One of the uses of this document is to