Re: [Orgmode] German date in LaTeX export [7.3]

2011-02-14 Thread phaebz
On 02/14/2011 02:10 AM, Bastien wrote: > Hi Michael, > > phaebz writes: > >> The usepackage line for babel is necessary, because Language: de is not >> recognized. With the above, I correctly get e.g. "Inhaltsverzeichnis" >> instead of "Contents". But the timestamp in the title remains the english

Re: [Orgmode] German date in LaTeX export [7.3]

2011-02-14 Thread Bastien
Hi Michael, phaebz writes: > I now use #+DATE: \today and it works as expected. Good! > Sorry for the noise, my posts often end up in a kind of self-helping > experience, but hints are always appreciated. Thanks Bastien for the > push. You're welcome. We are all patient here because we know

Re: [Orgmode] Re: [Feature request] org-backup

2011-02-14 Thread Bastien
Hi Suvayu, suvayu ali writes: > If you are on *nix, then maybe something like this is what you are looking > for? > > mkdir -p ~/org/backup && \ > find $HOME -type f -name '*\.org' ! -path "$HOME/org/*" \ > -exec cp -t ~/org/backup/ \{\} \; I created a "Backup" section on Worg's FAQ and m

Re: [Orgmode] Re: [Feature request] org-backup

2011-02-14 Thread Suvayu Ali
On Mon, 14 Feb 2011 10:06:51 +0100 Bastien wrote: > Hi Suvayu, > > suvayu ali writes: > > > If you are on *nix, then maybe something like this is what you are > > looking for? > > > > mkdir -p ~/org/backup && \ > > find $HOME -type f -name '*\.org' ! -path "$HOME/org/*" \ > > -exec cp -t

Re: [Orgmode] Improve percent escaping links in Org mode (pull request / OK to push)

2011-02-14 Thread Bastien
Hi David, David Maus writes: > Thanks for the quick review. I won't be available until wednesday so I > most likely push wednesday or thursday evening with a short warning > notice. Looks good, thanks. >> You mentioned some possible backward compatibility issues with >> a few existing links be

Re: [Orgmode] Bug: org-capture - org-vm store link requires buffer file not always present [7.4]

2011-02-14 Thread Bastien
Hi Arik, Arik Mitschang writes: > Unfortunately that does not do the trick. Two reasons: > > 1) the vm-select-folder-buffer only triggers an error if there is no >folder buffer, not if there is no file associated with that buffer. > > 2) raising an error stops the execution of the org-captur

Re: [Orgmode] Feature request: Select links by description [7.4]

2011-02-14 Thread Bastien
Hi Dave, Dave Abrahams writes: > Since you asked: put the descriptions first. The only problem I see with this solution is that it will end up mixing descriptions (+raw link) and raw links (with no description), this might be confusing. Perhaps we can let the user decide how he wants the ava

Re: [Orgmode] Org support for the notmuch mail client

2011-02-14 Thread Darren McGuicken
>> The attached file implements links to mail collections and "searchs" >> to the notmuch mail client. > > I'm not using notmuch myself and I would welcome feedback from notmuch > Org users. I would happily add it to org-mode/contrib/lisp if this is > proves useful to several people around. I'm n

[Orgmode] resetting the span in agenda (current git version)

2011-02-14 Thread Gábor Melis
On the current master branch, it seems to me that doing anything that ends up calling org-agenda-redo resets the span (most often pressing g, l, R for me). I papered over the damage with this for l and R, but it is obviously not the right fix: diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el i

[Orgmode] Deriving mode from org-mode

2011-02-14 Thread Anders Waldenborg
Hi, isn't creating a new major mode derived from org-mode supported? I guess that part of the problem is that org-mode-p doesn't use derived-mode-p. For example: (define-derived-mode org-derived-mode org-mode "Org-Derived") and then create a new buffer using org-derived-mode and enter a so

[Orgmode] Re: Nice python listings colors, or solution to beamer + minted brokenness?

2011-02-14 Thread Dan Davison
Christopher Allan Webber writes: > Hello all, > > I currently am trying to export something vaguely like this for a > presentation in beamer: > > #+BEGIN_SRC python :exports code > class ReferenceDeskPanel(bpy.types.Panel): > bl_label = 'Reference Desk' > bl_space_type = 'VIEW_3D' > b

Re: [Orgmode] Feature request: Select links by description [7.4]

2011-02-14 Thread Dave Abrahams
On Mon, Feb 14, 2011 at 5:17 AM, Bastien wrote: > Hi Dave, > > Dave Abrahams writes: > >> Since you asked: put the descriptions first. > > The only problem I see with this solution is that it will end up mixing > descriptions (+raw link) and raw links (with no description), this might > be confus

[Orgmode] [PATCH] org-publish: sitemap doc

2011-02-14 Thread Manuel Giraud
Hi, Some documentation for new sitemap options. >From 3a846a674a33a5f2a0a2404b88331942e2012779 Mon Sep 17 00:00:00 2001 From: Manuel Giraud Date: Mon, 14 Feb 2011 11:34:04 +0100 Subject: [PATCH] org.texi: documentation of sitemap's entry options --- doc/org.texi | 15 ++- 1 fil

[Orgmode] Re: [Feature request] org-backup

2011-02-14 Thread Dan Davison
Marcelo de Moraes Serpa writes: > Hi Dan! > > I already do this, but sometimes the files are spread around *many* > directories. I.e, the model of having everything in a > version-controlled directory is unpractical, so that's why I think it > would be useful. A couple of possibilities: A git r

[Orgmode] Re: Nice python listings colors, or solution to beamer + minted brokenness?

2011-02-14 Thread Christopher Allan Webber
Dan Davison writes: > Hi Christopher, > > I believe I have just fixed the problem with minted and beamer. Please > pull latex org from git and restart emacs, or > > (setq org-beamer-fragile-re "^[ > \t]*begin{\\(verbatim\\|lstlisting\\|minted\\)}") > > Personally I think that minted will be

Re: [Orgmode] Re: Something like SETUPFILE, but in .emacs?

2011-02-14 Thread Matthew Sauer
Question, would something like the following work? For .emacs ---start of .emacs --snip---snip---snip--- (setq load-path (append '("/home/usr/emacs/load/") load-path)) (setq load-path (append '("/home/usr/emacs") load-path)) (load "export-setup"

Re: [Orgmode] Re: Something like SETUPFILE, but in .emacs?

2011-02-14 Thread Matthew Sauer
Would this be the full list of variables? Possible completions are: org-export-allow-BIND org-export-author-info org-export-babel-evaluate org-export-blocks org-export-blocks-postblock-hook org-export-blocks-witheld org-export-copy-to-kill-ring org-expo

[Orgmode] Re: Nice python listings colors, or solution to beamer + minted brokenness?

2011-02-14 Thread Dan Davison
Christopher Allan Webber writes: > Dan Davison writes: > >> Hi Christopher, >> >> I believe I have just fixed the problem with minted and beamer. Please >> pull latex org from git and restart emacs, or ^^^ Oops, I meant to write "latest" org. I.e. just pull as normal. >> >> (setq or

[Orgmode] Re: Nice python listings colors, or solution to beamer + minted brokenness?

2011-02-14 Thread Christopher Allan Webber
Dan, all this information is super helpful. Thanks! My presentation is going to look great now, I think! I really appreciate your help! - cwebb -- 𝓒𝓱𝓻𝓲𝓼𝓽𝓸𝓹𝓱𝓮𝓻 𝓐𝓵𝓵𝓪𝓷 𝓦𝓮𝓫𝓫𝓮𝓻 ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the

[Orgmode] Re: Alinea filling (hanlding of explicit line-breaks)

2011-02-14 Thread Stefan Monnier
> The proposal is to add, in addition to paragraph separator, an alinea > separator. Accordingly there would be a forward-alinea function similar > to forward-paragraph. I'm not completely sure I understand the details, so let me try to describe what I think you're suggesting: you're suggesting to

[Orgmode] Re: Announcing org-contacts, a bbdb-like contact manager for Org

2011-02-14 Thread Wes Hardaker
> On Sat, 12 Feb 2011 13:18:10 +0100, Bastien > said: B> I've played around with it, and I can already see the benefit. When B> org-contacts will insinuate into Gnus, that will be a real win. Ditto! This will be such a wonderful way to maintain contacts that will have significant adva

[Orgmode] Projects with priority items

2011-02-14 Thread Nathan Neff
I have a custom agenda view that shows items with the tag "project". It shows a TODO list like this: * TODO Project A ** TODO Subtask for project A ** TODO Another task for A * TODO Project B ** TODO B subtask However, if I put a priority on "Subtask for project A", then the subtask jumps out of

[Orgmode] Re: Mails with icalendar appointments

2011-02-14 Thread Vagn Johansen
Bastien writes: > Hi Vagn, > > Vagn Johansen writes: > >> For gnus I wrote this to import from text/calendar attachments >> >> http://ozymandias.dk/emacs/emacs.html#org-import-calendar> >> It a automatically stores an org snippet to the ring. So most of the >> time I can use press my remember

Re: [Orgmode] [Babel] Interpreting results as tables and (eval)'uation of them

2011-02-14 Thread Eric Schulte
Hi Dan, Dan Amlund Thomsen writes: > I've encountered some weird, possible buggy, behavior when > interpreting results as tables (tested with python, scheme and lisp). > > * Item 1: Interpreting result as table > With ":results value" the result is interpreted as a table if > possible, but with

[Orgmode] Re: [BABEL] "unset" :var definitions for subtree

2011-02-14 Thread Eric Schulte
[...] > > This is in branch ob-inherit at > https://github.com/dandavison/org-devel. I've given you write access to > the repo. The branch isn't ready to go yet, just a first > pass. Currently, with this file > > - > #+property: var a=1 > #+property: var b=2 > >

Re: [Orgmode] Re: Something like SETUPFILE, but in .emacs?

2011-02-14 Thread Gary Oberbrunner
On Mon, Feb 14, 2011 at 10:14 AM, Matthew Sauer wrote: > Would this be the full list of variables? > Possible completions are: > org-export-allow-BIND org-export-author-info > org-export-babel-evaluate org-export-blocks > Awesome! That is perfect. -- -- Gary

Fwd: [Orgmode] Something like SETUPFILE, but in .emacs?

2011-02-14 Thread Gary Oberbrunner
On Sun, Feb 13, 2011 at 11:47 PM, Nick Dokos wrote: > > I think you are making an unwarranted generalization: afaik, Darlan and I > were the only ones who suggested this (hardly "everyone"). Sorry, didn't mean to be snippy. You're right, for sure. I think that > was a reasonable answer to your

[Accepted] [Orgmode] org-publish: sitemap doc

2011-02-14 Thread Bastien Guerry
Patch 616 (http://patchwork.newartisans.com/patch/616/) is now "Accepted". Maintainer comment: none This relates to the following submission: http://mid.gmane.org/%3C87hbc6n6wt.fsf%40univ-nantes.fr%3E Here is the original message containing the patch: > Content-Type: text/plain; charset="utf-8

Re: [Orgmode] Re: Alinea filling (hanlding of explicit line-breaks)

2011-02-14 Thread Samuel Wales
Vincent, examples? -- The Kafka Pandemic: http://thekafkapandemic.blogspot.com/2010/12/welcome-to-kafka-pandemic-two-forces_9182.html I support the Whittemore-Peterson Institute (WPI) === I want to see the original (pre-hold) Lo et al. 2010 NIH/FDA/Harvard MLV paper.

Re: [Orgmode] Re: Mails with icalendar appointments

2011-02-14 Thread Bastien
Vagn Johansen writes: >> PS: don't your code need a s/calender/calendar ? > > Yes. It is fixed now. The URL is still correct, though. Thanks for fixing this! -- Bastien ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the li

Re: [Orgmode] [PATCH] org-publish: sitemap doc

2011-02-14 Thread Bastien
Manuel Giraud writes: > Some documentation for new sitemap options. Applied, thanks Manuel. -- Bastien ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/em

Re: [Orgmode] Re: [Feature request] org-backup

2011-02-14 Thread Bastien
Hi Suvayu, Suvayu Ali writes: > Thanks Bastien! I am glad that you thought its worth a mention on the > FAQ. :) The topic of backing up org files comes quite often on the list, I'm glad we can give some concrete directions! -- Bastien ___ Emacs-or

[Orgmode] [BABEL] ob-rec.el and some questions

2011-02-14 Thread Jose E. Marchesi
Hi. I have been playing a bit with org babel, the goal being to be able to query a recfile[1] and insert the result as a rec table. Thanks to the superb design of org-babel and the existing examples, I quickly wrote the attached little hack. The hack allows to query a rec file 'foo.rec' as foll

Re: [Orgmode] Projects with priority items

2011-02-14 Thread Samuel Wales
Excellent question. Do you mean all ancestors? === More options you might consider (don't want to hijack thread): Other options include dimming tasks that have at least one descendent in the same agenda view. Motivation is that sometimes I mark a task as important (or any other tag), and mark

[Orgmode] Re: [Feature request] org-backup

2011-02-14 Thread Marcelo de Moraes Serpa
Hi Dan, I don't think I understood -- AFAIK, git repos are per directory and I can't add something from another directory to it ? Symlinking could be a possibility, like keeping everything inside ~/org and symlink to another dirs. Cheers, Marcelo. On Mon, Feb 14, 2011 at 6:38 AM, Dan Davison

[Orgmode] Re: Alinea filling (hanlding of explicit line-breaks)

2011-02-14 Thread Vincent Belaïche
Hi, Good to see that I am not the only one needing that sort of things. Maybe an example is better to explain what I need, imagine that I have the following two paragraphs: --- aaa a aaa a aaa a a a a

Re: [Orgmode] Status google calendar sync

2011-02-14 Thread Marcelo de Moraes Serpa
This would be awesome, and I think this is the path the emacs developers should take -- separating emacs into two, the GUI and the core elisp interpreter. I'm sure this wouldn't be easy, but imagine having emacs both as an IDE and also as a full-fledged elisp interpreter/compiler and framework, not

[Orgmode] Re: [Feature request] org-backup

2011-02-14 Thread Dan Davison
Marcelo de Moraes Serpa writes: > Hi Dan, > > I don't think I understood -- AFAIK, git repos are per directory and I > can't add something from another directory to it ? Hi Marcelo, Let's say the "base directory" of a git repo is the one in which you issued "git init" and which contains a hidde

[Orgmode] [babel] Suggestions: GRASS GIS und Lilypond

2011-02-14 Thread Thorsten
Hello Babel developers, just two suggestions for new languages: 1. GRASS GIS As far as I know there is no grass-mode in emacs, but some expert people are successful running grass processes together with R processes in ESS. Since GRASS and R are natural allies, it would be great to use the GRASS e

[Orgmode] org-babel: Bugs with inline src_* blocks

2011-02-14 Thread Paul Sexton
I am experiencing a couple of significant bugs with inline src blocks in org-babel -- ie blocks of the form src_LANG{EXPRESSION}. I am using the development version of org, checked out a few days ago. Pressing C-c C-c with the cursor on such a block is supposed to evaluate it and echo the resul

Re: [Orgmode] Projects with priority items

2011-02-14 Thread Nathan Neff
On Mon, Feb 14, 2011 at 3:14 PM, Samuel Wales wrote: > Excellent question.  Do you mean all ancestors? > Yes. That makes sense. If I have this: * Some project :project: ** TODO Task Foo ** [#A] TODO Task Bar I would like an agenda view that would show items tagged with :project: and its TOD

Re: [Orgmode] [babel] Suggestions: GRASS GIS und Lilypond

2011-02-14 Thread John Hendy
On Mon, Feb 14, 2011 at 7:02 PM, Thorsten < gruenderteam.ber...@googlemail.com> wrote: > Hello Babel developers, > just two suggestions for new languages: > 2. Lilypond > A nice to have for all the music lovers in the org community. > I've used Lilypond and think it's amazing. But... what advanta

Re: [Orgmode] Projects with priority items

2011-02-14 Thread Nathan Neff
On Mon, Feb 14, 2011 at 8:44 PM, Nathan Neff wrote: > On Mon, Feb 14, 2011 at 3:14 PM, Samuel Wales wrote: >> Excellent question.  Do you mean all ancestors? >> > > Yes.  That makes sense. > > If I have this: > > * Some project   :project: > ** TODO Task Foo > ** [#A] TODO Task Bar > > I would li

Re: [Orgmode] Deriving mode from org-mode

2011-02-14 Thread Bastien
Hi Anders, Anders Waldenborg writes: > isn't creating a new major mode derived from org-mode supported? Yes it is... > I guess that part of the problem is that org-mode-p doesn't use > derived-mode-p. (org-mode-p) does the advertized job: checking whether we are in org-mode major mode. It w

Re: [Orgmode] Feature request: Select links by description [7.4]

2011-02-14 Thread Bastien
Hi Dave, Dave Abrahams writes: > How about just always showing the link as it will be presented to the > user first, followed by the raw link? Then everything will be > consistent. I don't see how it would prevent the problem I've been mentionning: we will still have a mix of descriptions and

Re: [Orgmode] [PATCH] ASCII export: Fixed a bug.

2011-02-14 Thread Bastien
Hi Valentin, Valentin Wüstholz writes: > thanks. Is there a reason for keeping the 'reverse' operation? The > documentation for org-export-ascii-underline states that the > characters are ordered by level (1, 2, ...). Why should they be > accessed in reverse order then? The docstring didn't mat

Re: [PATCH] Re: [Orgmode] Unintended behavior? Links without description

2011-02-14 Thread Bastien
Hi Christian, Christian Moe writes: > bbdb: Export links with normalized desc part > > * org-bbdb.el (org-bbdb-export): When a link description has been > added by org-export-normalize-links, use path instead (remove the > `bbdb:' prefix). > > The existing code handled the case where desc is nil

Re: [Orgmode] Unintended behavior? Links without description

2011-02-14 Thread Bastien
Hi Christian, Christian Moe writes: > I've sent a patch separately. Please take a hard look at it, since > org-bbdb.el is a suggested model for people to look at when devising custom > link types. Looks good, thanks again. -- Bastien ___ Emacs-org

Re: [Orgmode] double entries in my diary / not identifying exisiting entries probably

2011-02-14 Thread Bastien
Hi Detlef, Detlef Steuer writes: > Before (having just entered the office): > ** 2011-02 Februar > *** 2011-02-14 Montag > [2011-02-14 Mo 08:20]-- > > Hitting C-c a a i j a second time: > ** 2011-02 Februar > *** 2011-02-14 Montag > [2011-02-14 Mo 08:20]-- > ** 2011-02 Februar > *** 201

Re: [Orgmode] org-babel: Bugs with inline src_* blocks

2011-02-14 Thread Suvayu Ali
Hi Paul, On Tue, 15 Feb 2011 02:31:27 + (UTC) Paul Sexton wrote: > Is this change in behaviour intentional? If so is there a setting > that will revert to the old behaviour? > I don't know the answer to your question however my question would be how up to date is your org-mode install? I r

Re: [Orgmode] Feature request: Select links by description [7.4]

2011-02-14 Thread Dave Abrahams
On Mon, Feb 14, 2011 at 11:14 PM, Bastien wrote: > Dave Abrahams writes: > >> How about just always showing the link as it will be presented to the >> user first, followed by the raw link?  Then everything will be >> consistent. > > I don't see how it would prevent the problem I've been mentionni

Re: [Orgmode] [PATCH] ASCII export: Fixed a bug.

2011-02-14 Thread Valentin Wüstholz
On Tue, Feb 15, 2011 at 5:31 AM, Bastien wrote: > Hi Valentin, > > Valentin Wüstholz writes: > >> thanks. Is there a reason for keeping the 'reverse' operation? The >> documentation for org-export-ascii-underline states that the >> characters are ordered by level (1, 2, ...). Why should they be >

[Orgmode] Unable to select source code blocks

2011-02-14 Thread Giorgio Valoti
Hi, I don’t know if I’m missing something but I can’t get the org-babel-goto-named-src-block to work. When I invoke it on the sample file below the autocompletion shows nil and nothing else and if insert the source code block name I get a no match. I’m using org 7.4 with Emacs 23.2. * Source co

Re: [Orgmode] Status google calendar sync

2011-02-14 Thread Konrad Hinsen
On 14 Feb 2011, at 22:39, Marcelo de Moraes Serpa wrote: This would be awesome, and I think this is the path the emacs developers should take -- separating emacs into two, the GUI and the core elisp interpreter. I'm sure this wouldn't be easy, but imagine Emacs already has a batch mode, and ve