Re: [Orgmode] [OT] recutils

2010-12-04 Thread Russell Adams
But since recfiles, the text files of recutils, are not hierarchically organized I am still considering to use only Org for the case of my collection of music. Org would have the advantages of outlining, hyperlinks, column view, todo, tags, agenda view, export for publishing and many others.

[Orgmode] Re: org-indent mode not indenting free text?

2010-12-04 Thread Achim Gratz
Hi Eric, Erik Iverson er...@ccbr.umn.edu writes: It only appears defined for Emacs 23.2, So in particular, 23.1.50 is 'stuck' in between these two version checks, and maybe that's causing Antti's issue? Sorry for the confusion and my apologies for any trouble I have caused. When

Re: [Orgmode] Elisp code to insert a word in table

2010-12-04 Thread ishi soichi
Ah, I need more help, though... I have tried this code. I made it as simple as possible to clarify my question. (defun add-word () (interactive) '(org-table-put (@2 $2 word!))) and execute in a buffer having a table already. It did not work at all. But also I kept wondering what could

Re: [Orgmode] Elisp code to insert a word in table

2010-12-04 Thread Nick Dokos
ishi soichi soichi...@gmail.com wrote: Ah, I need more help, though... I have tried this code. I made it as simple as possible to clarify my question. (defun add-word () (interactive) '(org-table-put (@2 $2 word!))) and execute in a buffer having a table already. It did not

Re: [Orgmode] [OT] recutils

2010-12-04 Thread Jose E. Marchesi
I would highly appreciate any comment or suggestion on improving the format, the utilities, or whatever. Wow! The ability to have a _relational_ database with foreign keys in a simple text file is so great news for me. A dream I had for many years now. Or is it lack of

Re: [Orgmode] [OT] recutils

2010-12-04 Thread Jose E. Marchesi
Thus my wish for the file format would be to somehow keep in mind Org to potentially I noticed the file format is very similar to the layout of property drawers. Could recutils read an org file using those drawers with minor changes? That'd be a neat

[Orgmode] Encoded slashes in capture protocol URIs (via Chromium)

2010-12-04 Thread Edward Lilley
I've just had quite a bit of trouble setting up org capture protocol handling with the Chromium web browser. Using the Javascript function encodeURIComponent() replaces slashes with a %2F, as expected; the problem is then that xdg-open fails to open URIs containing %2F. Eventually I realised that

[Orgmode] Re: SQLite in 7.01h?

2010-12-04 Thread Michael Gauland
I believe all you need to do is change 'Sqlite' to 'sqlite' (all lower case) in the +BEGIN_SRC line. --Mike ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

[Orgmode] BUG [PATCH]: org-clone-subtree-with-time-shift doesn't clean empty property drawers in entire subtree

2010-12-04 Thread Mike McLean
If using org-clone, C-c C-x c, on a subtree instead of a single item, the loop to call org-remove-empty-drawer-at isn't executing on every item of the subtree. Changing the re-search-forward seems to do the trick. Mike --- lisp/org.el |2 +- 1 files changed, 1 insertions(+), 1

Re: [Orgmode] Encoded slashes in capture protocol URIs (via Chromium)

2010-12-04 Thread Mattias Jämting
I solved it in a different way, but none the less very hacky :) http://www.mail-archive.com/emacs-orgmode@gnu.org/msg33861.html http://www.mail-archive.com/emacs-orgmode@gnu.org/msg33861.html/Mattias On Sat, Dec 4, 2010 at 15:23, Edward Lilley ejlil...@gmail.com wrote: I've just had quite a

Re: [Orgmode] specifying priority with template expansion

2010-12-04 Thread Jeff Horn
On Fri, Dec 3, 2010 at 5:42 PM, David A. Thompson thompd...@gmail.com wrote: Most of my todos are neither associated with deadlines nor are they scheduled. Schedules and deadlines have seemed a more time-intensive way to go relative to setting priorities (but perhaps this is a 'Green Eggs and

Re: [Orgmode] [OT] recutils

2010-12-04 Thread Russell Adams
On Sat, Dec 04, 2010 at 01:28:39PM +0100, Jose E. Marchesi wrote: You could extract: * Albums ** Elvis Presley *** Loving You But then, what if several authors authored an album? %rec: Album Name: Sounds of Silence Author:Name: Simon Author:Name: Garfunkel

Re: [Orgmode] Texi2dvi: forcing a recompile?

2010-12-04 Thread Jeff Horn
On Sat, Dec 4, 2010 at 3:20 PM, Mike McLean mike.mcl...@pobox.com wrote: I solve this with a forced remove: (setq org-latex-to-pdf-process (quote (rm %b.pdf texi2dvi -p -b -c -V %f))) Nice! Very clever. Thanks for the tip! (CC-ing to the list, hope that's OK) -- Jeffrey Horn Graduate

Re: [Orgmode] Texi2dvi: forcing a recompile?

2010-12-04 Thread Jeff Horn
Small problem: if the file doesn't exist, rm fails with error, which stops the process (the PDF file is not produced). This happens if I create a new source file in my project. On Sat, Dec 4, 2010 at 3:22 PM, Jeff Horn jrhorn...@gmail.com wrote: On Sat, Dec 4, 2010 at 3:20 PM, Mike McLean

Re: [Orgmode] Texi2dvi: forcing a recompile?

2010-12-04 Thread Joost Kremers
On Sat, Dec 04, 2010 at 03:28:30PM -0500, Jeff Horn wrote: On Sat, Dec 4, 2010 at 3:22 PM, Jeff Horn jrhorn...@gmail.com wrote: On Sat, Dec 4, 2010 at 3:20 PM, Mike McLean mike.mcl...@pobox.com wrote: I solve this with a forced remove: (setq org-latex-to-pdf-process (quote (rm %b.pdf

Re: [Orgmode] Texi2dvi: forcing a recompile?

2010-12-04 Thread Jeff Horn
Thanks for the help. I'm not really sure what's going on. A PDF file is produced in my source directory, but not in my output directory. I receive an error message saying the PDF file was not produced. I didn't realize the customize menu had many different processes in the value menu. I wanted

Re: [Orgmode] Texi2dvi: forcing a recompile?

2010-12-04 Thread Mike McLean
In my case the rm does generate an error, but the process doesn't stop. On 12/4/10 3:28 PM, Jeff Horn wrote: Small problem: if the file doesn't exist, rm fails with error, which stops the process (the PDF file is not produced). This happens if I create a new source file in my project. On

Re: [Orgmode] Elisp code to insert a word in table

2010-12-04 Thread ishi soichi
I'd recommend you spend some time studying the Introduction to Emacs Lisp guide: Thanks for pointing this out. I have recently started programming in elisp, and am still having difficulty in basic understanding. But the code worked. So thanks for your help. soichi

[Orgmode] Date calculations in spreadsheet

2010-12-04 Thread Ethan Ligon
I'm working with a small spreadsheet, and would like to know how to manage date calculations within the spreadsheet. For example, * How to do date calculations in a spreadsheet? |--+--| | Date | Days elapsed | |--+--| |

Re: [Orgmode] Date calculations in spreadsheet

2010-12-04 Thread Nick Dokos
Ethan Ligon li...@are.berkeley.edu wrote: I'm working with a small spreadsheet, and would like to know how to manage date calculations within the spreadsheet. For example, * How to do date calculations in a spreadsheet? |--+--| | Date | Days elapsed

Re: [Orgmode] exporting as latex sections

2010-12-04 Thread Thomas S. Dye
Aloha Suvayu, On Dec 3, 2010, at 4:26 PM, suvayu ali wrote: Hi org-mode users, I have been collaborating on a big (many contributors) paper. For all my various contributions to the paper I need to provide the latex source as a section of a latex document. Is there some way I can export to

Re: [Orgmode] Date calculations in spreadsheet

2010-12-04 Thread Michael Brand
On Sun, Dec 5, 2010 at 01:56, Nick Dokos nicholas.do...@hp.com wrote: Ethan Ligon li...@are.berkeley.edu wrote: |--+--| | Date             | Days elapsed | |--+--| | [2009-12-03 Thu] |              | | [2010-12-03 Fri] |          365 |

Re: [Orgmode] exporting as latex sections

2010-12-04 Thread suvayu ali
Hi Thomas, On Sun, Dec 5, 2010 at 2:51 AM, Thomas S. Dye t...@tsdye.com wrote: Aloha Suvayu, On Dec 3, 2010, at 4:26 PM, suvayu ali wrote: Hi org-mode users, I have been collaborating on a big (many contributors) paper. For all my various contributions to the paper I need to provide the

[Orgmode] Re: specifying priority with template expansion

2010-12-04 Thread Memnon Anon
Jeff Horn jrhorn...@gmail.com writes: Someone else is probably better suited to address your original post. As far as additional thoughts, I was only thinking about keystroke savings: 1) You can set priorities in agenda view by typing a comma and choosing priority. You can set them anywhere

Re: [Orgmode] Re: Org-mode Code Blocks Manuscript: Request For Comments

2010-12-04 Thread Thomas S. Dye
Aloha Detlef, On Dec 2, 2010, at 9:58 PM, Detlef Steuer wrote: Hi! I very much appreciate your article as a nice introduction to org- babel and its uses. As I'm going to introduce my colleagues into the nice world of org-babel giving a talk sometime next term I'll shamelessly steal from

[Orgmode] Questions about org-capture templates and usage

2010-12-04 Thread Alan
I apologize if I am breaking netiquette* by posting multiple questions in a single posting. If so, please let me know, and I will pare the following down into bite-sized chunks. I have fallen in love with org-capture, from the start. I have had some problems, and questions. The following is

[Orgmode] Re: [babel] Enabling language mode for plantuml?

2010-12-04 Thread zwz
Rainer M Krug r.m.k...@gmail.com writes: On 12/03/2010 12:31 PM, zwz wrote: Rainer M Krug r.m.k...@gmail.com writes: Hi I would like to be able to edit code blocks of plantuml via C-', but I get the message No such language mode: plantuml-mode Is there an easy way of defining this new

[Orgmode] Re: [babel] Enabling language mode for plantuml?

2010-12-04 Thread zwz
No, but I am considering to make a repository on github for all my emacs-stuff. I will inform you when it is done :) Rainer M Krug r.m.k...@gmail.com writes: Hi zwz That looks great. Do you have a repository, where I could check for updates? Rainer On Fri, Dec 3, 2010 at 12:31 PM, zwz