Re: [O] org-capture-template: SCHEDULED: obsolete?

2011-11-06 Thread Jan Böcker
On 11/05/2011 11:35 PM, Marius Hofert wrote: Apparently, the string SCHEDULED: is not required for an entry to appear in agenda view. Hi Marius, the difference between date and SCHEDULED: date is that date will cause the entry to appear in the agenda only on the given day, whereas

Re: [O] org-capture-template: SCHEDULED: obsolete?

2011-11-06 Thread Marius Hofert
Thanks a lot, Jan, that explained it very well. Cheers, Marius On 2011-11-06, at 11:30 , Jan Böcker wrote: On 11/05/2011 11:35 PM, Marius Hofert wrote: Apparently, the string SCHEDULED: is not required for an entry to appear in agenda view. Hi Marius, the difference between date

[O] org-capture-template: How to correctly capture email addresses?

2011-11-06 Thread Marius Hofert
Hi, I would like to capture contacts (name, email,..) with org-mode and thus setup the following in .emacs: (setq org-capture-templates '((t TODO in ~/org/agenda.org - Tasks entry (file+headline ~/org/agenda.org Tasks) * TODO %?\nSCHEDULED: %^t\n%U %a) (c Contact in

[O] How to set up anniversaries/birthdays with org-contacts-anniversaries?

2011-11-06 Thread Marius Hofert
How can I set up anniversaries with org-contact? My agend.org file contains the following, as mentioned on the bottom of http://julien.danjou.info/org-contacts.html #+STARTUP: showeverything * Birthdays %%(org-contacts-anniversaries) My contacts.org file contains (e.g.): * My contact

[O] Bug(?) report footnotes

2011-11-06 Thread Markus Grebenstein
Dear Orgmode community, last week I submitted a journal paper of appr. 30 pages using orgmode and latex export and I ran into trouble regarding footnotes several times. The document didn't compile due to wrongly set brackets of footnotes if: A footnote is placed without a blank line infront

[O] Feature suggestion

2011-11-06 Thread Markus Grebenstein
Dear community, since I used Scrivener (Windows Beta) quite a while I'd love to have more of fletcher penny's multimarkdown (or MMD- like Syntax) integrated in orgmode to make it more versatile. Sadly I am not a lisp programmer at all... Best Markus

Re: [O] Bug(?) report footnotes

2011-11-06 Thread Nicolas Goaziou
Hello, Markus Grebenstein p...@mgrebenstein.de writes: If of any interest I can try to reproduce this in a less than 9500 word ducument. Yes, I would appreciate an ECM (minimal complete example) along with the version of Org you're using. Thank you. Regards, -- Nicolas Goaziou

[O] #+STARTUP: content: How to expand only some sections on startup?

2011-11-06 Thread Marius Hofert
Hi, as described on http://orgmode.org/manual/Visibility-cycling.html one can set #+STARTUP: content to start an .org file with all headlines shown, the default is overview. I tried to put #+STARTUP: content in some sections hoping that they will be expanded on startup while other sections

Re: [O] [bug] Org link dialog escapes URL spaces incorrectly

2011-11-06 Thread David Maus
At Sat, 05 Nov 2011 11:38:56 -0400, Nick Dokos wrote: David Maus dm...@ictsoc.de wrote: At Fri, 04 Nov 2011 14:25:42 -0400, Nick Dokos wrote: Nick Dokos nicholas.do...@hp.com wrote: It probably does, but that's probably not the best place to do it: it might be better

[O] [test] Failure on GNU Emacs 22.3.2 (i686-pc-linux-gnu) of 2011-05-28 on x60s

2011-11-06 Thread David Maus
Running the test suit on GNU Emacs 22.3.2 (i686-pc-linux-gnu) of 2011-05-28 on x60s currently fails with the backtrace below. Somehwere/somehow Babel ends up calling `member' with the second argument not being a list. In Emacs22 this triggers an error, but not so in Emacs23 and upwards. Devs

Re: [O] [PATCH]: New Add defun org-mode-or-derived-mode-p

2011-11-06 Thread David Maus
At Thu, 03 Nov 2011 19:35:01 -0200, Cassio Koshikumo wrote: Hi, all, On the last few days I've been working on a major mode derived from org-mode. While I was at it, I've encoutered some difficulties related to those reported by the OP (Stefan). Specifically: in a lot of places, org-mode

[O] #+begin_src LaTeX blocks export to literal LaTeX

2011-11-06 Thread Michael Bach
Dear org-mode community, I am configuring my LaTeX export setup and found LaTeX src blocks very nice for the font lock they provide and the possibility of having AUCTeX activated for that block by =C-c '=. However, org's LaTeX exporter puts them into a \verbatim environment by default in the

[O] [PATCH] Category filtering in the agenda

2011-11-06 Thread Bastien
Dear all, here is a patch implementing category filtering in the agenda. The patch is not 100% clean wrt documentation, but I throw it now to get some feedback and some testing done. Press in the agenda to filter by category. Press to filter by the category of the entry point. Another /

Re: [O] [PATCH] Category filtering in the agenda

2011-11-06 Thread Bastien
Bastien b...@altern.org writes: Press to filter by the category of the entry point. ... of the entry AT point ... of course. -- Bastien

Re: [O] Makefile restructuring

2011-11-06 Thread Achim Gratz
Recent changes in my Makefile fork: org-version has been changed to always get the version information from org-install.el. This way, there is no need to invoke a shell in org-version or to keep any version information in org.el. Additionally org-version checks where it finds org-install.el and

Re: [O] Makefile restructuring

2011-11-06 Thread Jambunathan K
FYI, if Org is insalled through the package manager there is no org-install.el. Package manager creates autoloads on it's own and names it org-autoloads.el. I believe, for most part, org-install and org-autoloads have the same functionality. Recent changes in my Makefile fork: org-version

Re: [O] Makefile restructuring

2011-11-06 Thread Achim Gratz
Jambunathan K kjambunat...@gmail.com writes: FYI, if Org is insalled through the package manager there is no org-install.el. Package manager creates autoloads on it's own and names it org-autoloads.el. I believe, for most part, org-install and org-autoloads have the same functionality. Then

Re: [O] #+STARTUP: content: How to expand only some sections on startup?

2011-11-06 Thread Marius Hofert
Okay, I figured it out. There's a visibility property for that, e.g.: :PROPERTIES: :VISIBILITY: content :END: Cheers, Marius On 2011-11-06, at 15:27 , Marius Hofert wrote: Hi, as described on http://orgmode.org/manual/Visibility-cycling.html one can set #+STARTUP: content to start an

Re: [O] Makefile restructuring

2011-11-06 Thread Jambunathan K
Achim Gratz strom...@nexgo.de writes: Jambunathan K kjambunat...@gmail.com writes: FYI, if Org is insalled through the package manager there is no org-install.el. Package manager creates autoloads on it's own and names it org-autoloads.el. I believe, for most part, org-install and

Re: [O] #+STARTUP: content: How to expand only some sections on startup?

2011-11-06 Thread Jambunathan K
1. C-h i 2. m org 3. i visibility 4. keep pressing , until you land up where all visibility is documented. 1 = launch info 2 = visit org manual 3 = index lookup for visibility 4 = cycle through all entries Okay, I figured it out. There's a visibility property for that, e.g.: :PROPERTIES:

Re: [O] [PATCH] Category filtering in the agenda

2011-11-06 Thread Ian Barton
here is a patch implementing category filtering in the agenda. The patch is not 100% clean wrt documentation, but I throw it now to get some feedback and some testing done. Press in the agenda to filter by category. Pressto filter by the category of the entry point. Another / / removes

Re: [O] org-mobile-push problem

2011-11-06 Thread Jambunathan K
i...@bastianebeling.org i...@bastianebeling.org writes: Hi Jambunathan, Sorry, I didn't get into too much detail here because I had the feeling that the problem might have been cause by me not being able to use the package manager correctly rather than the package manager itself. But if

Re: [O] org-mobile-push problem

2011-11-06 Thread i...@bastianebeling.org
Am 06.11.2011 um 22:01 schrieb Jambunathan K: i...@bastianebeling.org i...@bastianebeling.org writes: Hi Jambunathan, Sorry, I didn't get into too much detail here because I had the feeling that the problem might have been cause by me not being able to use the package manager correctly

Re: [O] [OT] Scanning for archiving

2011-11-06 Thread Pieter Praet
On Sat, 5 Nov 2011 16:35:11 -0700, Samuel Wales samolog...@gmail.com wrote: I used to find that 8-bit 75dpi was legible and small. True. It all depends on why you're scanning them in the first place. 75dpi is fine when scanning with collaboration/quick-reference in mind, but for

Re: [O] Feature suggestion

2011-11-06 Thread Herbert Sitz
Markus Grebenstein post at mgrebenstein.de writes: since I used Scrivener (Windows Beta) quite a while I'd love to have more of fletcher penny's multimarkdown (or MMD- like Syntax) integrated in orgmode to make it more versatile. Sadly I am not a lisp programmer at all... Markus --

Re: [O] [bug] Org link dialog escapes URL spaces incorrectly

2011-11-06 Thread Nick Dokos
David Maus dm...@ictsoc.de wrote: What a mess - thanks for the clear explanation. Be that as it may, the treatment of links in org-insert-link is inconsistent: in one case, the link is unescaped once, in the other not at all. Hm. I still don't see an inconsistency here: `org-insert-link'

Re: [O] [OT] Scanning for archiving

2011-11-06 Thread TP
On Sun, Nov 6, 2011 at 1:59 PM, Pieter Praet pie...@praet.org wrote: On Sat, 5 Nov 2011 16:35:11 -0700, Samuel Wales samolog...@gmail.com wrote: I used to find that 8-bit 75dpi was legible and small. True. It all depends on why you're scanning them in the first place. 75dpi is fine when