[Orgmode] [babel] noweb expansion in latex source blocks

2009-10-31 Thread Thomas S. Dye
Aloha all, Noweb expansion in latex source blocks inserts spaces that can introduce unwanted paragraph breaks in LaTeX. The outer-block in this org file looks like something that should be set as one paragraph in LaTeX. * noweb expansion #+srcname: outer-block #+begin_src latex :tangle n

Re: [Orgmode] Exporting blocks without removing indentation

2009-10-31 Thread Dan Davison
Carsten Dominik writes: > Hi Dan, > > maybe the easiest way to implement this would be a -i (or whatever) > switch a the src block. Thanks, I have gone ahead with your suggestion. As you suggest, I've added a -i switch that prevents the indentation of a block from being removed during export. If

[Orgmode] Re: contact management in org-mode?

2009-10-31 Thread Shelagh Manton
On Fri, 30 Oct 2009 09:48:16 +0100, Uwe Jochum wrote: > Hi all, > > has someone tried "forms" for the purpose of contact management? See: > > http://sunsite.ualberta.ca/Documentation/Gnu/emacs-21.1/html_chapter/ forms_frame.html > > Best, > > Uwe I have used forms for a couple of primitive ad

[Orgmode] Re: Fast traversing directories

2009-10-31 Thread Thierry Volpiatto
Hi, if you have traverselisp.el, you can use: , | (dolist (d org-directories) | (traverse-walk-directory d :file-fn #'(lambda (x) | (when (string= (file-name-extension x) "org") | (push x org-agenda-files)

Re: [Orgmode] Re: Fast traversing directories

2009-10-31 Thread Nick Dokos
andrea Crotti wrote: > > I tried this because I have more base directories. > (setq org-directories '("~/org" "~/uni")) > (setq org-agenda-files ()) > (dolist ((d org-directories)) > (setq org-agenda-files > (append org-agenda-files (find-lisp-find-files d "\.org$" > > > But it set

[Orgmode] [babel] noweb syntax

2009-10-31 Thread Thomas S. Dye
Aloha all, The new expanded noweb syntax in org-babel is sensitive to line breaks. It looks to me as if it isn't possible to expand two noweb references on the same line. As the following example shows, there is a workaround that yields valid LaTeX source. Insensitivity to line breaks

[Orgmode] Re: Fast traversing directories

2009-10-31 Thread PT
andrea Crotti gmail.com> writes: > > (dolist ((d org-directories)) The loop is not run, because there are too many parens. Try this instead: (dolist (d org-directories) ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to th

[Orgmode] Re: Fast traversing directories

2009-10-31 Thread andrea Crotti
Benjamin Andresen in-ulm.de> writes: > > Hey Andrea, > > andrea Crotti gmail.com> writes: > > > I didn't find any function in elisp, maybe it would be better > > to get a list of org-files with an external command (python or shell > > script), > > what do you think? > > http://orgmode.org/w

[Orgmode] Re: Fast traversing directories

2009-10-31 Thread Benjamin Andresen
Hey Andrea, andrea Crotti writes: > I didn't find any function in elisp, maybe it would be better > to get a list of org-files with an external command (python or shell script), > what do you think? http://orgmode.org/worg/org-faq.php#set-agenda-files-recursively br, benny __

[Orgmode] integration between Org, remember, and Mutt

2009-10-31 Thread Stefano Zacchiroli
Hi all, I'm new to Org, but I fell in love with it quite quickly :-) As my mail user agent has nothing to do with Emacs---it is Mutt---I was envy to integrate it with Org, and I've actually done that. With this mail, I'm wondering whether there were past/alternative success stories about Mutt <-

[Orgmode] Fast traversing directories

2009-10-31 Thread andrea Crotti
Well I would like to have simply all the org files I produce wherever in my agenda. I started to write something like (dolist (x (directory-files "~/uni/" t)) (if (file-directory-p x) (dolist (subject (directory-files x t)) (if (file-directory-p subject) (setq org-agen

[Orgmode] Re: Differences html/pdf

2009-10-31 Thread andrea Crotti
Carsten Dominik gmail.com> writes: > > > On Oct 28, 2009, at 11:23 PM, Nick Dokos wrote: > > > Bastien googlemail.com> wrote: > > OK, this is pretty good, and I have added it to be inserted > as a consequence of setting org-export-preserve-breaks. But I > believe in complex documents there m

[Orgmode] Re: contact management in org-mode?

2009-10-31 Thread Gregory J. Grubbs
org-mode may attain self-hosting status before Clojure does! -Greg (after writing some elisp to translate my BBDB entries into property-laden org-mode entries) Russell Adams writes: >> Now, I know this won't give me synchronization. Unfortunately I think >> that's a lost cause currently, I jus

[Orgmode] Full web server for org-mode

2009-10-31 Thread andrea Crotti
I was thinking if it could be a good idea. Instead of static project exporting I could have a web server (maybe in elisp) that export projects on demand, only if html is older than source file. That would be useful to get maybe a way to navigate everywhere in our org-world without exiting the b

[Orgmode] Re: Proposed key binding changes: archiving and attachments

2009-10-31 Thread Matt Lundin
Carsten Dominik writes: > OK, here is what I have now settled for, effective immediately: > > The following keys now do archiving > > C-c C-x C-aarchive using the command specified in >`org-archive-default-command' > > This variable is by default set to `org-archive-subtree',

Re: [Orgmode] [PATCH] Add min/max/mean age operators to column view.

2009-10-31 Thread Mikael Fornius
Thanks for a very good explanation, now I understand and I have tested it successfully. Looks like it works perfectly well to me. The interactive function org-columns-new also works as expected. This is a very good addition and I think it can be useful in many different areas. It also opens fo

[Orgmode] Re: Proposed key binding changes: archiving and attachments

2009-10-31 Thread Bernt Hansen
Carsten Dominik writes: > OK, here is what I have now settled for, effective immediately: > > The following keys now do archiving > > C-c C-x C-aarchive using the command specified in >`org-archive-default-command' > > This variable is by default set to `org-archive-subtree',

Re: [Orgmode] Proposed key binding changes: archiving and attachments

2009-10-31 Thread Carsten Dominik
OK, here is what I have now settled for, effective immediately: The following keys now do archiving C-c C-x C-aarchive using the command specified in `org-archive-default-command' This variable is by default set to `org-archive-subtree', which means arching to the archive fil

Re: [Orgmode] org-table-import fails with negative number

2009-10-31 Thread Carsten Dominik
Fixed, thanks. - Carsten On Oct 31, 2009, at 1:35 AM, Dan Davison wrote: If a file contains "-1" followed by a newline and nothing else, org-table-import on that file fails. The first commit with this property is a commit (below) to do with CVS tables made a few days ago. I have given up tr