Re: [Orgmode] [babel] Is ":results output inline" possible

2009-10-19 Thread emailorama
Thanks very much for your reply Eric. So the ":results org" feature was there all along. Searching for "raw" in "org-babel.el" shows it's nicely explained in the doc-string for "org-babel-insert-result". (maybe I should have done that sooner) I also noticed the ":results html

Re: [Orgmode] [babel] Is ":results output inline" possible

2009-10-19 Thread emailorama
Thanks very much for your reply Eric. So the ":results org" feature was there all along. Searching for "raw" in "org-babel.el" shows it's nicely explained in the doc-string for "org-babel-insert-result". (maybe I should have done that sooner) I also noticed the ":results html

Re: [Orgmode] agenda flag in mode-line?

2009-10-19 Thread Samuel Wales
I take a different approach. If a file ends in --a.org, it is automatically put in the agenda. Else not. The name of the file shows whether it is in the agenda or not. On Mon, Oct 19, 2009 at 20:30, Eraldo Helal wrote: > Sometimes I am not sure if the current buffer has been added to the > age

[Orgmode] getting Firefox tabs into org on a mac

2009-10-19 Thread Samuel Wales
I have a huge number of Firefox tabs that I want to get into org. Figuring out how has gotten complicated, despite good documentation out there. I want simply title and url for each tab. Maybe like this: * Firefox tabs * Public Git Hosting - Worg.git/summary http://repo.or.cz/w/Worg.git

[Orgmode] agenda flag in mode-line?

2009-10-19 Thread Eraldo Helal
Sometimes I am not sure if the current buffer has been added to the agenda or not. In such cases I use the key combinations ("C-[" "C-]") to add the file to or move from the agenda. So I thought why not have a symbol/flag/letter/etc in the mode-line showing me if the current file is part of the ag

[Orgmode] Re: agenda files list

2009-10-19 Thread Eraldo Helal
code update: ;; list all agenda categories (linking to their files) in a new buffer (defun orgx-list-agenda-files() "Create a list of all org-agenda files as org-mode links" (interactive) (let ((list-buf (get-buffer-create "*org-agenda-files*"))) (with-current-buffer list-buf (eras

[Orgmode] agenda files list

2009-10-19 Thread Eraldo Helal
I would like to have a list of all agenda files where each item links to its file. This would be great for doing my weekly review since in my system all agenda files need to be viewed weekly. It could also be added to the agenda menu (C-c a) as an option. Workaround: Because I don't know how to ge

[Orgmode] [PATCH 1/3] Add a missing entry, and fix some formatting in the changelog.

2009-10-19 Thread James TD Smith
--- lisp/ChangeLog | 19 --- 1 files changed, 4 insertions(+), 15 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 822bd57..47b44cd 100755 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -983,21 +983,10 @@ * org-remember.el (org-remember-finalize): Avoid buff

[Orgmode] A few small patches

2009-10-19 Thread James TD Smith
A few small patches for org-mode. -- |---| ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] [PATCH 3/3] Some small fixes in org-registry.

2009-10-19 Thread James TD Smith
org-registry-assoc-all removed matching links from the registry. This meant subsequent calls with the same parameters would return nothing. Add another function for finding entries in the register, which used find-if to get entries satisfying a predicate. --- contrib/ChangeLog|9 +

[Orgmode] [PATCH 2/3] Add a way to display names for tag groups in fast tag selection.

2009-10-19 Thread James TD Smith
If the nil term in the start or end group cells are replaced by strings, these are displayed before or after the brackets for the group. --- lisp/ChangeLog |6 ++ lisp/org.el| 12 ++-- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/lisp/ChangeLog b/lisp/Chang

Re: [Orgmode] [babel] :noweb and R

2009-10-19 Thread Eric Schulte
"Thomas S. Dye" writes: > Hi Eric, > > The :noweb argument works for me with python, but not with R. [...] > This throws an error in the 2nd block "funcall: Symbol's function definition > is void: R-mode": Hi Tom, The problem here is that `R-mode' is not available on your system, installing

[Orgmode] [babel] :noweb and R

2009-10-19 Thread Thomas S. Dye
Hi Eric, The :noweb argument works for me with python, but not with R. This works fine: #+srcname: noweb-example #+begin_src python a = 28 a #+end_src #+resname: noweb-example : 28 #+begin_src python :noweb # <> a + 4 #+end_src #+resname: : 32 This throws an error in the 2nd block "f

Re: [Orgmode] use todo-keyword to assign category

2009-10-19 Thread Eraldo Helal
sounds good... thanks again ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] agenda with only deadlines?

2009-10-19 Thread Michael Gilbert
Hi -- I'm still struggling with this one: My main agenda view has both scheduled and deadlined items, but I'm interested in creating a custom view that shows only items who have a deadline of today or past due. This isn't working for me: (setq org-agenda-custom-commands '(("d" "Due t

Re: [Orgmode] use todo-keyword to assign category

2009-10-19 Thread James TD Smith
On 2009-10-20 01:55:38(+0200), Eraldo Helal wrote: > Great James! > > Thank you very much for this function! > That will update the prop if I change the headline wording, right? No, it only updates the property when the todo keyword is set to CATEGORY. If you want to change the category you would

[Orgmode] Re: Agenda and Reloading Changed Files

2009-10-19 Thread Bernt Hansen
Peter Jones writes: > I have a couple of org files that are generated from cronjobs in the > morning. Throughout the day, however, reloading the agenda prompts me > with: > > library.org changed on disk; really edit the buffer? (y, n, r or C-h) > > And it does so every time I reload, even though

Re: [Orgmode] use todo-keyword to assign category

2009-10-19 Thread Eraldo Helal
Great James! Thank you very much for this function! That will update the prop if I change the headline wording, right? Nice to know that others use it in a similar way! Maybe it would still be a nice idea to have the possibility of having the headline itself be the category. Until then I will grat

[Orgmode] Agenda and Reloading Changed Files

2009-10-19 Thread Peter Jones
I have a couple of org files that are generated from cronjobs in the morning. Throughout the day, however, reloading the agenda prompts me with: library.org changed on disk; really edit the buffer? (y, n, r or C-h) And it does so every time I reload, even though the file hasn't changed since thi

[Orgmode] Sage Math - Maybe some inspiration for org-babel

2009-10-19 Thread Darlan Cavalcante Moreira
Hello org-users I have been reading with attention the E-Mails about org-babel here on the list and decided to play with it a little this weekend. It reminded me about another great piece of software called "Sage Math" (Some screencasts here -> http://www.sagemath.org/help-video.html) that I have

[Orgmode] Re: Patch for resolving "away time" when clocked in

2009-10-19 Thread Bernt Hansen
John Wiegley writes: > On Oct 19, 2009, at 11:41 AM, Bernt Hansen wrote: > >> Is there a way to turn off the idle time check to support the old >> functionality? > > I'll a configuration variable for this, to disable auto-resolution > entirely. Thanks, -Bernt _

[Orgmode] Re: Patch for resolving "away time" when clocked in

2009-10-19 Thread John Wiegley
On Oct 19, 2009, at 11:41 AM, Bernt Hansen wrote: Is there a way to turn off the idle time check to support the old functionality? I'll a configuration variable for this, to disable auto-resolution entirely. John ___ Emacs-orgmode mailing list

Re: [Orgmode] org-babel and matplotlib?

2009-10-19 Thread Eric Schulte
Hi Petro, Yes, this should be possible. To force the resulting image to be included in the org-mode file you should add "file" to your results header argument, and ensure that your block of python code, generates the file, saves the file, and returns the path to the file as the last part of the c

Re: [Orgmode] [babel] noweb for :sessions?

2009-10-19 Thread Thomas S. Dye
Hi Eric, Yes, I think that's it. I appreciate your help. org-babel has me feeling like a kid at Christmas. Tom Thomas S. Dye, Ph.D. T. S. Dye & Colleagues, Archaeologists, Inc. Phone: (808) 529-0866 Fax: (808) 529-0884 http://www.tsdye.com On Oct 19, 2009, at 8:15 AM, Eric Schulte wrote:

[Orgmode] Re:org-agenda

2009-10-19 Thread Bostjan Vilfan
Hello, Thanks for the help. "q" for "kill-frame" is just as good as the button "x". Regards, bostjanv ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/list

[Orgmode] org-babel and matplotlib?

2009-10-19 Thread Piter_
Hi all. If I understand correctly, one can make inline images using org-babel and GNU-R. Will it work with matplotlib and python. Thanks Petro. ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org htt

Re: [Orgmode] [babel] noweb for :sessions?

2009-10-19 Thread Eric Schulte
Hi Tom, That is an interesting proposal, and surprisingly simple to implement. Please pull the latest version of Org-mode, and you will find that there is now a :noweb header argument available for source-code blocks which has the effect of expanding noweb references before source-block evaluation

Re: [Orgmode] LaTeX export of tables

2009-10-19 Thread Darlan Cavalcante Moreira
If you are going to export only to LaTeX then you may just write the table in latex syntax. Org-mode will recognize the latex environment and export it as it is for latex. For HTML the table will be exported as a image, since it is a "latex table" instead of an "org-mode table". It is not as conve

[Orgmode] [babel] noweb for :sessions?

2009-10-19 Thread Thomas S. Dye
Aloha all, Is it possible to define frequently used code snippets in a generic way so they can be used in different sessions? Something like this is what I have in mind: #+srcname: r-connect #+begin_src R :exports none :session any library(rMySQL) con <- dbConnect(MySQL(), user="user_name",

Re: [Orgmode] org-agenda-custom-commands

2009-10-19 Thread Carsten Dominik
Well, I guess I could evaluate match before it gets used. But maybe you can also turn this around: Dinfe a function what will call the tree maker directly (defun my-tree (match) (interactive "s") (org-match-sparse-tree nil (concat "{" match "}"))) or something like this - Carsten

Re: [Orgmode] org-agenda

2009-10-19 Thread Carsten Dominik
On Oct 18, 2009, at 11:11 AM, Bostjan Vilfan wrote: Hello, Version 6.30e included a nice detail in the org-agenda feature: the org-agenda frame could be closed simply by clicking the x (close-file) button. I notice that this capability is absent (at least by default) in version 6.31a. Can

[Orgmode] Re: Patch for resolving "away time" when clocked in

2009-10-19 Thread Bernt Hansen
John Wiegley writes: > Looking for anyone who uses Org's time clocking facilities and is > willing to test this with me. I've been using it for a couple of days > now. The functionality is based on the way the commercial app > OfficeTime handles idleness. > > Excerpt from the new manual section

Re: [Orgmode] global config for table and export style

2009-10-19 Thread Eraldo Helal
Thank you! I underestimated the customize search. Thank you Carsten for reminding me. This is exactly what I was looking for. MfG Eraldo ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http:/

[Orgmode] Re: Restructure my org-life

2009-10-19 Thread Matt Lundin
andrea writes: > I would like then to know how you organize your data to get some ideas. > Now I have a directory > > $HOME/org > > where I have files like > > work.org > personal.org > > and some small projects/ideas that don't have a position yet somewhere > else. > > In plus in my projects I t

[Orgmode] Re: Evangelize the world with Org-mode

2009-10-19 Thread Sébastien Vauban
Hello, "Eric Schulte" wrote: > Karl Maihofer writes: >> Am 16.10.09 11:29, schrieb Sébastien Vauban: >>> >>> - or, even better (as it would be install-less): a Wiki based on Org syntax >>>with document generation capability (button to generate a PDF). >> >> Perhaps ikiwiki? > > also blorgit c

Re: [Orgmode] Worg: Patch w/ fixes for two broken links in org-web

2009-10-19 Thread Eric Schulte
applied David Maus writes: > Hi there, > > Attached patch fixes two broken links on Worg/org-web: Two personal > pages were moved. > > Regards, > > -- David ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-

[Orgmode] Restructure my org-life

2009-10-19 Thread andrea
Org-mode is already quite pervasive, I'm writing almost everything with it and moving also some old latex stuff. But now I think I have to rethink the whole way I store my data. I would like then to know how you organize your data to get some ideas. Now I have a directory $HOME/org where I hav

Re: [Orgmode] [babel] :session

2009-10-19 Thread Eric Schulte
Hi Tom, "Thomas S. Dye" writes: > Aloha all, > > In org-babel.org one of the R examples uses a header argument :session that > is not otherwise documented. > What a glaring omission, we will have to add this to the documentation. Thanks for pointing this out. > I don't trust my Lisp understa

[Orgmode] Worg: Patch w/ fixes for two broken links in org-web

2009-10-19 Thread David Maus
Hi there, Attached patch fixes two broken links on Worg/org-web: Two personal pages were moved. Regards, -- David 0001-org-web-fixed-links-to-personal-pages-of-Scott-Randb.patch Description: Binary data -- OpenPGP... 0x316F4BE4670716FD Jabber dmj...@jabber.org Email. maus.da...@g

Re: [Orgmode] [babel] Is ":results output inline" possible ?

2009-10-19 Thread Eric Schulte
Hi al, This is currently possible by adding either "raw" or "org" to your results headers. So the following should work. #+srcname: demoruby #+begin_src ruby :results output org require 'date' puts "* heading for demo" puts "This demo done on #{Date.today}" puts "Try to create a table in org-mod

Re: [Orgmode] org-agenda

2009-10-19 Thread Giovanni Ridolfi
--- Dom 18/10/09, Bostjan Vilfan ha scritto: > Version 6.30e included a nice detail in the org-agenda > feature: the org-agenda > frame could be closed simply by clicking the x (close-file) > button. I notice > that this capability is absent (at least by default) in > version 6.31a. Here, versio

Re: [Orgmode] LaTeX export of tables

2009-10-19 Thread Francesco Pizzolante
Hi, Can I give this thread a bump? Francesco Pizzolante wrote: > Hi, > > When exporting tables to LaTeX, I think it would be good to have the following > options to be able to define: > > - the table environment to be used: now we have the option to have tabular > and longtable, but I could

Re: [Orgmode] Links and file association

2009-10-19 Thread Giovanni Ridolfi
--- Lun 19/10/09, Christoph Herzog ha scritto: > When in org-mode I try to open a link > that contains the path to an OpenOffice.org writer file > (file suffix *.odt) emacs a[...] opens > it in a separate buffer saying > "Zip-Archive". > [...] I looked at the /etc/mailcap file, what about you

[Orgmode] Links and file association

2009-10-19 Thread Christoph Herzog
When in org-mode I try to open a link that contains the path to an OpenOffice.org writer file (file suffix *.odt) emacs assumes (correctly) that it is a zip-file (*odt-files are in fact consisting of several zipped files) and opens it in a separate buffer saying "Zip-Archive". However, this is

[Orgmode] Re: Added support for "habit tracking"

2009-10-19 Thread John Wiegley
Forgot to mention: To get a feel for what the consistency graph looks like in the agenda view, see this screenshot (based on the example in the manual): http://newartisans.com/habitgraph.png John ___ Emacs-orgmode mailing list Remember: use `Re

[Orgmode] Added support for "habit tracking"

2009-10-19 Thread John Wiegley
There are really two kinds of TODOs on people's lists: 1. Those whose importance is that they get done. 2. Those whose importance is that they are done consistently. I think most married people will know what I mean. If you wash the dishes once after not having done it all month, you're n

Re: [Orgmode] global config for table and export style

2009-10-19 Thread Carsten Dominik
Hi Eraldo, if you take a look at http://orgmode.org/worg/org-tutorials/org-customize.php and follow the advice given there, you would probably quickly find the variables org-export-preserve-breaks and org-export-html-table-tag. HTH - Carsten On Oct 18, 2009, at 6:13 PM, Eraldo Helal w