Re: [O] parse #+MYVAR?

2014-04-03 Thread Martin
Thanks, thats very good for me. :) Martin John Kitchin writes: maybe this post: http://kitchingroup.cheme.cmu.edu/blog/2013/05/05/Getting-keyword-options-in-org-files/is close what you are looking for. you have to figure out how to go through all the buffers,but the code here should do the

[O] Prepare release 8.2.6

2014-04-03 Thread Bastien
Hi all, I'll spend a few hours this afternoon chasing the last bugs in maint for Org 8.2.6. This release will then be merged into the emacs-24 branch, which first pretest is to be released very soon now. If you have outstanding bugs, please point at them. As usual, thanks in advance for your

Re: [O] Get counting of items

2014-04-03 Thread Martin Gross
Dear Thorsten Here is a generalised form: #+begin_src emacs-lisp (defun count-org-items (optional level operator match scope skip) Print a counting of outline items. (interactive) (let ((headline-level (or level 1)) ; 1-8 (op (or operator '=))) ; '= '= ' '

Re: [O] Prepare release 8.2.6

2014-04-03 Thread Alan Schmitt
Hi Bastien, Bastien b...@altern.org writes: Hi all, I'll spend a few hours this afternoon chasing the last bugs in maint for Org 8.2.6. This release will then be merged into the emacs-24 branch, which first pretest is to be released very soon now. If you have outstanding bugs, please

Re: [O] Prepare release 8.2.6

2014-04-03 Thread KDr2
Hi Bastien, I sent a mail [PATCH] ob-scheme.el: Fix scheme code blocks execution error in batch mode to the list yesterday, but I don't see it at http://news.gmane.org/gmane.emacs.orgmode, so here I sent it to you again: The bug: write file ~/scheme-test.org with the content below:

Re: [O] Prepare release 8.2.6

2014-04-03 Thread Rainer M Krug
Bastien b...@altern.org writes: Hi all, I'll spend a few hours this afternoon chasing the last bugs in maint for Org 8.2.6. This release will then be merged into the emacs-24 branch, which first pretest is to be released very soon now. If you have outstanding bugs, please point at them.

[O] using org-babel-trim in org-sbe?

2014-04-03 Thread Alan Schmitt
Hello, I noticed a call to org-sbe failed because there were some extra spaces present in one argument. I tried to clean them up before calling the code block, but instead I'm getting literally what I'm writing. Here is an example: --8---cut here---start-8---

Re: [O] org-export-format-source-code-or-example: End of Buffer

2014-04-03 Thread Mishal Awadah
Hi Bastien, I added the sample code that generates the error for me on http://stackoverflow.com/questions/22565379/emacs-org-mode-python-source-blocks-dont-export-with-python-mode-el Thanks for your help - Mish On Mar 21, 2014, at 5:14 PM, Bastien b...@gnu.org wrote: Hi Mishal, Mishal

[O] BBDB and Org

2014-04-03 Thread Aric Gregson
Hello, I am just wondering if there is a way to get org mode to stop playing with bbdb. Because I use both gnus and org, it is a bit of a hassle to have org always pulling bbdb away from gnus when I create an agenda. I have taken out all reference to bbdb and org in my start-up files. I don't use

[O] Using Emacs Org-mode on a server with ssh on an iPad

2014-04-03 Thread Pere Quintana Seguí
As I mentioned in a previous message, I recently bought an iPad. I'm considering the possibility to not use Mobileorg and use Emacs on a server (Digital Ocean) with an ssh client and a bluetooth keyboard. Is anyone using Emacs and org-mode this way regularly? Which ssh client are you using?

[O] So many reading on gmane?

2014-04-03 Thread Rainer M Krug
This seems very strange - but it is the fact that gmane seems to be not available the reason why this list is so quiet today Rainer -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany) Centre of Excellence for Invasion Biology

Re: [O] BBDB and Org

2014-04-03 Thread Charles Philip Chan
Aric Gregson aorc...@mac.com writes: Hi Aric: I have no problems with bbdb (using 3 now, but 2 before) and org-mode. I am just wondering if there is a way to get org mode to stop playing with bbdb. Because I use both gnus and org, it is a bit of a hassle to have org always pulling bbdb away

Re: [O] Using Emacs Org-mode on a server with ssh on an iPad

2014-04-03 Thread Ken Mankoff
If you jailbreak the iPad, you can run a full emacs on the iPad locally. http://gamma-level.com/iphoneos/ports/emacs -k. On 2014-04-02 at 09:10, Pere Quintana Seguí wrote: As I mentioned in a previous message, I recently bought an iPad. I'm considering the possibility to not use Mobileorg

Re: [O] Add TODO from external app?

2014-04-03 Thread Jeff Kowalski
I use org-etml to serve pages from within emacs and use a custom capture handler, like this: (defun jeff/capture-handler (request) Handle REQUEST objects meant for 'org-capture'. GET header should contain a path in form '/capture/KEY/LINK/TITLE/BODY'. (with-slots (process headers)

Re: [O] Using Emacs Org-mode on a server with ssh on an iPad

2014-04-03 Thread Peter Davis
On Wed, Apr 02, 2014 at 03:10:28PM +0200, Pere Quintana Seguí wrote: As I mentioned in a previous message, I recently bought an iPad. I'm considering the possibility to not use Mobileorg and use Emacs on a server (Digital Ocean) with an ssh client and a bluetooth keyboard. Is anyone using

Re: [O] BBDB and Org

2014-04-03 Thread Charles Philip Chan
Charles Philip Chan cpc...@bell.net writes: %%(org-bbdb-anniversaries) Sorry this should be: , | * Anniversaries| | :PROPERTIES: | | :CATEGORY: Anniv | | :END: | | %%(org-bbdb-anniversaries) | || `

Re: [O] A file with 'org-mode rot'?

2014-04-03 Thread Karl Voit
Hello Sharon! * Sharon Kimble boudic...@talktalk.net wrote: Has '2014.org' got org-mode rot, so many hidden commands of change of org-mode functionality still within its meta-post that it makes the whole f= ile difficult to work with? I know that org-mode files are just plain text formatted

Re: [O] Get counting of items

2014-04-03 Thread Richard Lawrence
Thorsten Jolitz tjol...@gmail.com writes: #+begin_src emacs-lisp (with-current-buffer my.org (eval (append (list '+) (org-map-entries (lambda () (if (eq (org-outline-level) 1) 1 0)) #+end_src Or, slightly more simply: #+begin_src emacs-lisp

Re: [O] Generate a table of contents without exporting

2014-04-03 Thread RG Williams
Nick Dokos ndokos at gmail.com writes: Another more manual way: export to text and cut-and-paste the TOC into a noexport top-level section. Nick Thank Nick! That's a great idea, haha. Not sure why that never occurred to me. RG

Re: [O] How to get rid of clocktable summary time in the form 2d 02:00

2014-04-03 Thread Buddy Butterfly
Anyone? Still have no clue Am 01.04.2014 00:59, schrieb Buddy Butterfly: Am 31.03.2014 10:46, schrieb Sebastien Vauban: Bastien wrote: Buddy Butterfly buddy.butter...@web.de writes: I would like to have the summary times in a clocktable be displayed only in hours, like 48:00 instead of

Re: [O] how to enter ==

2014-04-03 Thread Eric S Fraga
Ah, I see. The easy solution is to use ~ instead of = in any code segment, as in the attached example of yours that I have modified. #+TITLE: Python for Unicode #+OPTIONS: toc:nil * Collections However there is a catch: ~⦃1,2,3⦄ == ⦃1,2,3,1,2⦄~ \\ Remember that in python ~set([1,2,3,1,2]) ==

[O] Prepare release 8.2.6

2014-04-03 Thread Bastien
Hi all, I'll try to fix a few remaining bugs in maint this afternoon then release 8.2.6 so that we can merge it into Emacs emacs-24 branch, the pretest is scheduled to happen as soon as possible. If you have important bugs you want us to look at, now is the time to point at them. Thanks, --

[O] Mobileorg doesn't correctly import one .org file

2014-04-03 Thread Pere Quintana Seguí
Hi, I recently bought an iPad and I wanted to try Mobileorg again. My org-mode installation was already configured as I tried it last year with my iPhone. So I lauched org-mobile-push on my computer and I synced Mobileorg. Everything looks fine except one file which is not correctly imported.

[O] tangle call lines

2014-04-03 Thread Andreas Leha
Hi all, how do I go about to tangle a subtree full of call lines into a specific file? Of course, tangling is not execution and call lines are meant for execution, but in a scripting language (this is all about R code) the two are not too different. Basically, I would love to see the code, that

[O] Does ELPA package work??

2014-04-03 Thread David Masterson
I've installed the complete Cygwin setup on my Windows 8.1 system. This included Emacs 24.3 with Org v7.9.3f. I then used the Emacs package system to install the latest version of Org (20140317 or 8.2.5h). Everything seemed to go without a problem, but org-version still says 7.9.3f with nothing

Re: [O] Creating changelog with magit

2014-04-03 Thread Richard Lawrence
Hi Thorsten, Thorsten Jolitz tjol...@gmail.com writes: i.e. magit does not detect which files/definitions have changed and already offers the template for all changes of the current diff to HEAD. Am I doing something wrong or is this all there is? As far as I am aware, this is all there

Re: [O] Generate a table of contents without exporting

2014-04-03 Thread RG Williams
Charles Berry ccberry at ucsd.edu writes: #+NAME: Table_of_Contents #+BEGIN_SRC emacs-lisp :wrap example ... #+END_SRC HTH, Chuck Thank you, Charles! That works really well :) RG

Re: [O] [PATCH] Noweb expansion doesn't duplicate prefix across lines

2014-04-03 Thread Eric Schulte
This simply seems to trade one use case (noweb expansion behind a prefix), with another (multiple noweb expansions on the same line). Is there a way to support both use cases? Pontus Michael m.pon...@gmail.com writes: * lisp/ob-core.el (org-babel-expand-noweb-references): Change the the

Re: [O] Help tangling

2014-04-03 Thread Eric Schulte
and the :tangle SConstruct yes #+Property: tangle SConstruct Thanks for your feedback, Eric! However, it doesn't seem to work properly. The first two lines of my file read #+OPTIONS: toc:4 h:4 #+PROPERTY: tangle SConstruct and I have several code blocks like

Re: [O] [BABEL] BUG Re: Omitting try/catch blocks from tangled R code?

2014-04-03 Thread Eric Schulte
Rainer M Krug rai...@krugs.de writes: Eric Schulte schulte.e...@gmail.com writes: Apologies - I am still struggling with encryption.. So here is my example: --8---cut here---start-8--- #+TITLE: single_to_multi #+DATE: 2013-10-15 Tue #+AUTHOR:

Re: [O] :no-expand not working on variables?

2014-04-03 Thread Eric Schulte
Rainer M Krug rai...@krugs.de writes: Eric Schulte schulte.e...@gmail.com writes: According to the manual :no-expand is only supposed to have an effect during tangling, not execution. Thanks Eric - re-reading the manual, it became clear. Maybe to clarify this in the manual, one could say:

Re: [O] Help tangling

2014-04-03 Thread Andreas Hilboll
On 03.04.2014 01:05, Eric Schulte wrote: and the :tangle SConstruct yes #+Property: tangle SConstruct Thanks for your feedback, Eric! However, it doesn't seem to work properly. The first two lines of my file read #+OPTIONS: toc:4 h:4 #+PROPERTY: tangle SConstruct and I have

[O] Bug: text export and multi-word link descriptions with line breaks

2014-04-03 Thread Mathias Bauer
Dear Maintainers, I just stumbled over Org's plain text export and how it works on links with descriptions consisting of multiple words and line breaks between them. I'm running Org stable version 8.2.5h. Org source (spaces at the end of line 1 and 2 don't matter):

Re: [O] So many reading on gmane?

2014-04-03 Thread Thorsten Jolitz
Rainer M Krug rai...@krugs.de writes: This seems very strange - but it is the fact that gmane seems to be not available the reason why this list is so quiet today Definitely. Life without gmane is possible but does not really make sense ... -- cheers, Thorsten

Re: [O] Bug: text export and multi-word link descriptions with line breaks

2014-04-03 Thread Nicolas Goaziou
Hello, Mathias Bauer mba...@gmx.org writes: I just stumbled over Org's plain text export and how it works on links with descriptions consisting of multiple words and line breaks between them. I'm running Org stable version 8.2.5h. Org source (spaces at the end of line 1 and 2 don't

Re: [O] BBDB and Org

2014-04-03 Thread Eric Abrahamsen
Aric Gregson aorc...@mac.com writes: Hello, I am just wondering if there is a way to get org mode to stop playing with bbdb. Because I use both gnus and org, it is a bit of a hassle to have org always pulling bbdb away from gnus when I create an agenda. I have taken out all reference to

Re: [O] Creating changelog with magit

2014-04-03 Thread Florian Beck
Thorsten Jolitz tjol...@gmail.com writes: I get a meager ,--- | | * org.el: | | # comment text | `--- You get this when you are on the file that has changed. Press TAB (magit-toggle-section) and you see a diff. Move to the chunk you want to comment on

Re: [O] Bug: text export and multi-word link descriptions with line breaks

2014-04-03 Thread Mathias Bauer
Hello Nicolas, * Nicolas Goaziou wrote on 2014-04-03 at 17:25 (+0200): Mathias Bauer mba...@gmx.org writes: I just stumbled over Org's plain text export and how it works on links with descriptions consisting of multiple words and line breaks between them. I'm running Org stable version

Re: [O] No link found on links in drawers

2014-04-03 Thread Karl Voit
Bon soir, Bastien! * Bastien b...@gnu.org wrote: Karl Voit devn...@karl-voit.at writes: I am using custom links like [[photo:FirstnameLastname.jpg]] in my contacts.org. Those links stopped working recently. Whenever I try to click or C-c C-c the link, I get user-error: No link found.

[O] Centos 6.5 = emacs 23.1 = org 6.21b = Need help

2014-04-03 Thread Suhas Pai
My kudos to the orgmode team. I love the package and want to use it to teach a Fall course in engineering. I use Centos and typed the following to get the latest: sudo yum groupupdate emacs Package 1:emacs-23.1-25.el6.x86_64 already installed and latest version In order to preserve the integrity

Re: [O] [PATCH] Noweb expansion doesn't duplicate prefix across lines

2014-04-03 Thread Pontus Michael
Hello Eric. I produced a list of arguments in the support of this change, which can be reviewed here: http://lists.gnu.org/archive/html/emacs-orgmode/2014-03/msg01543.html Please let me know if your question still stands after taking those concerns into account.

Re: [O] Does ELPA package work??

2014-04-03 Thread Achim Gratz
David Masterson writes: I've installed the complete Cygwin setup on my Windows 8.1 system. This included Emacs 24.3 with Org v7.9.3f. I then used the Emacs package system to install the latest version of Org (20140317 or 8.2.5h). Everything seemed to go without a problem, but org-version

Re: [O] BBDB and Org

2014-04-03 Thread Aric Gregson
Eric Abrahamsen e...@ericabrahamsen.net writes: I'm also not sure what you mean by org pulling bbdb away from gnus -- are you running two separate instances of emacs? Yes, that is precisely what I am doing. I tend to work in the Emacs instance running org mode and use the other just for email.

Re: [O] BBDB and Org

2014-04-03 Thread Aric Gregson
Thanks Charles. I may try this again. I have had lots of issues moving From v2 to v3 of bbdb. Still problems with Gnus, but workable at this point. Aric signature.asc Description: PGP signature

Re: [O] Creating changelog with magit

2014-04-03 Thread Thorsten Jolitz
Florian Beck f...@miszellen.de writes: Thorsten Jolitz tjol...@gmail.com writes: I get a meager ,--- | | * org.el: | | # comment text | `--- You get this when you are on the file that has changed. Press TAB (magit-toggle-section) and you see a

Re: [O] Bug: text export and multi-word link descriptions with line breaks

2014-04-03 Thread Nicolas Goaziou
Mathias Bauer mba...@gmx.org writes: I expect, Org to do the following steps while parsing the source text: 1. Normalize or clean the link description, i.e. remove any newlines, starting and trailing spaces, and replace any occurrences of [ \t]+ in the interior by a single space

[O] Help needed - export markdown is it supposed to pre-pend html?

2014-04-03 Thread Rick DeNatale
Hi, I'm a fairly new org mode user. I'm trying to export to markdown and I can't understand the output: For example with the simple org mode buffer * Top level headline ** Second level *** Third level Some text *** Third level More text * Another top level headline When I export with

Re: [O] How to get rid of clocktable summary time in the form 2d 02:00

2014-04-03 Thread Buddy Butterfly
Solved it. If anyone is interested, here it goes: Neither the 2 settings given below nor the links helped very much. Instead I customized the variable org-time-clocksum-format and switcht off (deselected) the Days entry completely. Cheers, Matt Am 02.04.2014 10:09, schrieb Buddy Butterfly:

[O] (org-insert-headline '(4)) should insert new headline before point

2014-04-03 Thread York Zhao
Hi list, (org-insert-headline '(4)) used to insert new heading before point. But this had broken recently. According to the docstring, this command inserts new heading at the end of the parent subtree ONLY if two universal prefix arguments is given, not one. Here's the reproducer:

Re: [O] Help needed - export markdown is it supposed to pre-pend html?

2014-04-03 Thread Charles Berry
Rick DeNatale rick.denatale at gmail.com writes: Hi, I'm a fairly new org mode user. I'm trying to export to markdown and I can't understand the output: For example with the simple org mode buffer Add: #+OPTIONS: toc:nil * Top level headline ** Second level *** Third level    

Re: [O] BBDB and Org

2014-04-03 Thread Eric Abrahamsen
Aric Gregson aorc...@mac.com writes: Eric Abrahamsen e...@ericabrahamsen.net writes: I'm also not sure what you mean by org pulling bbdb away from gnus -- are you running two separate instances of emacs? Yes, that is precisely what I am doing. I tend to work in the Emacs instance running

Re: [O] mobile-org http links not recognized on iPhone

2014-04-03 Thread Sean Escriva
Chris Henderson henders...@gmail.com writes: If my link is like: [[http://orgmode.org]] - MobileOrg's view as document mode doesn't recognize this as a valid link. It only does that if the link is in [[link][description]] format. Is there any way around this? I haven't noticed this myself,