Re: [Orgmode] R code not producing expected results

2010-08-13 Thread Thomas S. Dye
Aloha Marco, Here is the code behind the Worg page: #+begin_src R :results output org library(ascii) options(asciiType=org) ascii(summary(table(1:4, 1:4))) #+end_src This works here. The key seems to be the header argument :results output #+BEGIN_SRC R :results output library(ascii)

Re: [Orgmode] R code not producing expected results

2010-08-13 Thread Charles C. Berry
On Thu, 12 Aug 2010, Blanchette, Marco wrote: Dear all, Sorry if this is something totally obvious but I am learning to use org-mode for my everyday work with R. I just installed the latest stable release of org-mode (v7.01g) on top of GNU Emacs 23.1.50.1 (x86_64-apple-darwin10.2.0,

Re: [Orgmode] Re: Finally jekyll and org-jekyll

2010-08-13 Thread Ian Barton
On 12/08/10 09:04, Andrea Crotti wrote: Ian Barton li...@manor-farm.org writes: Hi Andrea, I don't use org-jekyll myself. You can view my tutorial on the way I di it at http://orgmode.org/worg/org-tutorials/org-jekyll.php . Basically what you need to do is to organize your system so that

[Orgmode] trying to get xetex working with org-mode

2010-08-13 Thread Christian Wittern
Hi there, This has come up before, but a search in the archive did not produce enough information for me to solve the problem. I want to export to PDF via XeTex on Mac OS X (Emacs 23.2) and org-mode 7.01g. After studying the manual and looking at this message in the archive: quote (from:

Re: [Orgmode] Re: Bind C-u C-c C-x C-i to a key

2010-08-13 Thread Bastien
Andreas Burtzlaff and...@gmx.net writes: (defun ab-org-clock-in-select () (interactive) (org-clock-in t)) (global-set-key (kbd f12) 'ab-org-clock-in-select) Maybe there's a more elegant way I don't know about.. Maybe this one: (global-set-key (kbd f12) (lambda() (interactive)

Re: [Orgmode] Re: Bind C-u C-c C-x C-i to a key

2010-08-13 Thread Bastien
Bastien bastien.gue...@wikimedia.fr writes: (global-set-key (kbd f12) (lambda() (interactive) (org-clock-in t))) Forget this one -- Memnon Anon's solution is right. Sorry for the noise... -- Bastien ___ Emacs-orgmode mailing list Please use

[Orgmode] Listing todos which have other todos in the subtree in the agenda

2010-08-13 Thread Jan Böcker
I have a projects.org file with entries like this: * PROJECT Find the answer to life, the universe and everything * PROJECT World Domination *** NEXT build Doomsday Device (where PROJECT and NEXT are both defined as todo keywords.) I'd like to define a custom agenda view to get a project list.

Re: [Orgmode] R code not producing expected results

2010-08-13 Thread David Hajage
I think you need to add 'results output org' to the header. Do not try to convert ascii objects into data.frame, ascii() just print several classes or R objects with org markup. Not all R objects are supported, see methods(ascii). Some examples here:

Re: [Orgmode] Re: fractional hours for timestamps?

2010-08-13 Thread Bastien
Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes: I think Greg's point is about entering data using only numeric keypad. I can confirm that I have considered these issues (esp. 1400 vs. 14:00). Fractional hours don't seem to be that easy as there are countries like Poland where you use

[Orgmode] Re: Capture and clock options

2010-08-13 Thread Bastien
Hi Bernt, Bernt Hansen be...@norang.ca writes: This is a bug in the current master branch of org-mode. I'll identify the commit that breaks it shortly and post that information as a followup to this message. a7a842457dd927df9eabc756c4c573720a3a7aa9 is the first bad commit commit

[Orgmode] Re: Capture and clock options

2010-08-13 Thread Bastien
Bastien b...@gnu.org writes: I can't see anything in this commit interfering with the capture process. Do you have an idea why it is related to the bug Julien is reporting? I got it. `org-clock-set-current' was trying to get the filename, which doesn't work in indirect buffers. I pushed

[Orgmode] Re: Org-Babel and Ledger

2010-08-13 Thread Sébastien Vauban
Hi Eric, Eric Schulte wrote: Sébastien Vauban wxhgmqzgw...@spammotel.com writes: As you can see, the tables are completely wrongly made, because they're based on spaces (à la Awk) and not on fixed position of fields (à la Cut). What can I do about this? - Post-process every ledger

Re: [Orgmode] Re: Email from org?

2010-08-13 Thread Eric S Fraga
On Fri, 30 Jul 2010 15:21:01 -0600, Eric Schulte schulte.e...@gmail.com wrote: The following function might get part way towards what you describe. --8---cut here---start-8--- (defun org-send-email-of-headline () [...] Eric, this is brilliant!

[Orgmode] Re: fractional hours for timestamps?

2010-08-13 Thread Łukasz Stelmach
Bastien bastien.gue...@wikimedia.fr writes: Łukasz Stelmach lukasz.stelm...@iem.pw.edu.pl writes: I think Greg's point is about entering data using only numeric keypad. I can confirm that I have considered these issues (esp. 1400 vs. 14:00). Fractional hours don't seem to be that easy as

[Orgmode] Re: Agenda view Face for deadlines PATCH

2010-08-13 Thread Sébastien Vauban
Hi Bastien, First, thanks for answering... Bastien wrote: Hi Sébastien, Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Though, what I really don't understand is that I `C-u C-M-x' the function =org-agenda-highlight-todo=, and then call =org-agenda-list=, expecting to trace the

[Orgmode] Re: [Org-Babel] and R... non-numeric cells

2010-08-13 Thread Dan Davison
Sébastien Vauban wxhgmqzgwmuf-genee64ty+gs+fvcfc7...@public.gmane.org writes: Hello, For a report I'm writing, I've been helped by a colleague of mine (let's call him Albert) for the R graphics generation. Here's an extract of my doc: #+TBLNAME: investissement-2010-2013 #+ATTR_LaTeX:

[Orgmode] Re: Org-Babel and Ledger

2010-08-13 Thread Sébastien Vauban
Hi Eric, Sébastien Vauban wrote: Eric Schulte wrote: Sébastien Vauban writes: As you can see, the tables are completely wrongly made, because they're based on spaces (à la Awk) and not on fixed position of fields (à la Cut). What can I do about this? - Post-process every ledger command

[Orgmode] Re: Capture and clock options

2010-08-13 Thread Bernt Hansen
Bastien bastien.gue...@wikimedia.fr writes: Bastien b...@gnu.org writes: I can't see anything in this commit interfering with the capture process. Do you have an idea why it is related to the bug Julien is reporting? I got it. `org-clock-set-current' was trying to get the filename,

Re: [Orgmode] Re: Problem with named footnotes and LaTeX export?

2010-08-13 Thread Carsten Dominik
On Aug 12, 2010, at 9:31 PM, Kai wrote: Nicolas Goaziou n.goaziou at gmail.com writes: Now on to a possible bug. :) I have noticed that when I include named footnotes within an unordered list, the LaTeX exported file has problems, and mixes in the text (after the first word) of a named

Re: [Orgmode] trying to get xetex working with org-mode

2010-08-13 Thread Scot Becker
2010/8/13 Christian Wittern cwitt...@gmail.com  There are some more lines I did not ask for and do not want, like for example the \usepackage[utf8]{inputenc} which does not work with XeTeX. Now the number of possible relevant variables etc is just too complex for me to understand.  I would

Re: [Orgmode] trying to get xetex working with org-mode

2010-08-13 Thread Bastien
Scot Becker scot.bec...@gmail.com writes: That seems to produce a header that works with xetex. If so, it would be good to document it in Worg. I quickly grep'ed the Worg dir and there is no mention of XeTeX... -- Bastien ___ Emacs-orgmode

Re: [Orgmode] Re: keys and command name info

2010-08-13 Thread Andreas Röhler
Am 11.08.2010 12:05, schrieb Carsten Dominik: On Aug 9, 2010, at 9:28 PM, Dan Davison wrote: Dan Davison davi...@stats.ox.ac.uk writes: Gregor Zattler telegr...@gmx.net writes: Hi Andreas, org-mode developers, * Andreas Burtzlaff and...@gmx.net [09. Aug. 2010]: Carsten Dominik

[Orgmode] Re: keys and command name info

2010-08-13 Thread Dan Davison
Andreas Röhler andreas.roeh...@easy-emacs.de writes: Am 11.08.2010 12:05, schrieb Carsten Dominik: On Aug 9, 2010, at 9:28 PM, Dan Davison wrote: Dan Davison davi...@stats.ox.ac.uk writes: Gregor Zattler telegr...@gmx.net writes: Hi Andreas, org-mode developers, * Andreas Burtzlaff

Re: [Orgmode] trying to get xetex working with org-mode

2010-08-13 Thread Scot Becker
Noted. I'll see what I can do (but nobody be afraid to beat me to it, OK?) Scot On Fri, Aug 13, 2010 at 2:47 PM, Bastien bastien.gue...@wikimedia.fr wrote: Scot Becker scot.bec...@gmail.com writes: That seems to produce a header that works with xetex. If so, it would be good to document

[Orgmode] Re: org-feed XML entities and character encoding

2010-08-13 Thread David Maus
Michael Brand wrote: Hi all, org-feed is becoming very useful for me, so far to manage the episodes of podcasts. Now I have a patch and a request for help. 1. patch for an issue with XML entities === I found that some XML entities in my feeds are not

Re: [Orgmode] Listing todos which have other todos in the subtree in the agenda

2010-08-13 Thread David Maus
Jan Böcker wrote: I have a projects.org file with entries like this: * PROJECT Find the answer to life, the universe and everything * PROJECT World Domination *** NEXT build Doomsday Device (where PROJECT and NEXT are both defined as todo keywords.) I'd like to define a custom agenda view to

[Orgmode] Re: [OT] Passing universal argument to a function (was: Bind C-u C-c C-x C-i to a key)

2010-08-13 Thread Markus Heller
Memnon Anon gegendosenflei...@googlemail.com writes: Andreas Burtzlaff and...@gmx.net writes: The C-u says that the function that is bound to the rest of the key combination is called with the first argument being `t'. To get information about the function bound to a key combination use:

[Orgmode] typo in org.texi?

2010-08-13 Thread Andreas Röhler
Hi Bastien, looks like a typo in org.texi make info sends a warning. git blame -L 4735 org.texi 3f0d9351 doc/org.texi ... 2010-08-03 18:34:47 +0200 4735) @var{(title)} @r{The header text for the column. If omitted, the property} Cheers Andreas --

[PATCH] Re: [Orgmode] typo in org.texi?

2010-08-13 Thread Noorul Islam
On Fri, Aug 13, 2010 at 10:27 PM, Andreas Röhler andreas.roeh...@easy-emacs.de wrote: Hi Bastien, looks like a typo in org.texi make info sends a warning. git blame -L 4735 org.texi 3f0d9351 doc/org.texi ... 2010-08-03 18:34:47 +0200 4735) @var{(title)} @r{The header text for

Re: [Orgmode] Re: Org-Babel and Ledger

2010-08-13 Thread Eric Schulte
Hi Seb, Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Hi Eric, Sébastien Vauban wrote: Eric Schulte wrote: Sébastien Vauban writes: As you can see, the tables are completely wrongly made, because they're based on spaces (à la Awk) and not on fixed position of fields (à la Cut).

[Orgmode] Writing a custom export.

2010-08-13 Thread Alex
I've been using emacs + org-mode for ~6 months and haven't done any elisp hacking beyond a custom .emacs file. I would like to write a custom org-mode export to markdown to play around with elisp and so that I can write readmes for my github projects in org-mode. Are there any good tutorials on

Re: [Orgmode] Writing a custom export.

2010-08-13 Thread Puneeth
Hi Alex, On Fri, Aug 13, 2010 at 11:39 PM, Alex elc...@gmail.com wrote: I've been using emacs + org-mode for ~6 months and haven't done any elisp hacking beyond a custom .emacs file. I would like to write a custom org-mode export to markdown to play around with elisp and so that I can write

[Orgmode] Re: org-feed XML entities and character encoding

2010-08-13 Thread Michael Brand
Hi David On 10-08-13 17:59 , David Maus wrote: 2. request for help about an issue with multibyte character encoding There is an issue with multibyte characters that appear in the input as unescaped, multibyte encoded

[Orgmode] Re: Writing a custom export.

2010-08-13 Thread Eric Abrahamsen
On Fri, Aug 13 2010, Puneeth wrote: Hi Alex, On Fri, Aug 13, 2010 at 11:39 PM, Alex elc...@gmail.com wrote: I've been using emacs + org-mode for ~6 months and haven't done any elisp hacking beyond a custom .emacs file. I would like to write a custom org-mode export to markdown to play

[Orgmode] Re: Org-Babel and Ledger

2010-08-13 Thread Sébastien Vauban
Hi Eric, Eric Schulte wrote: Sébastien Vauban wxhgmqzgw...@spammotel.com writes: Sébastien Vauban wrote: Eric Schulte wrote: Sébastien Vauban writes: As you can see, the tables are completely wrongly made, because they're based on spaces (à la Awk) and not on fixed position of fields (à

[Orgmode] How to show done tasks in agenda

2010-08-13 Thread Glasspen
Hi! A question about tasks in agenda-view. How can org-mode show done tasks in agenda-view. Regards /C ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org

[Orgmode] [Patch] Org-fontify

2010-08-13 Thread Sébastien Vauban
Hello, Champagne! My very first patch... Hopefully one that will be followed by many more... Goal: to *fontify whole lines* of code-block or meta-lines. See the results on this minimal example: --8---cut here---start-8--- #+TITLE: Better identification

Re: [Orgmode] Re: Orgmode[PATCH] org-export-generic, text markup -- and a request

2010-08-13 Thread Carsten Dominik
Hi everyone, I am not sure what the status o this patch is now, is there anyone besides the author whw has tested it and can comment on it? - Carsten On Aug 2, 2010, at 3:54 PM, Wes Hardaker wrote: On Fri, 23 Jul 2010 13:19:31 +0200, to...@tuxteam.de said: t I tried contacting the

Re: [Orgmode] [Patch] Org-fontify

2010-08-13 Thread Erik Iverson
Hello! Having not tried this out, are the aims different than David O'Toole's mode-specific fontification of org-mode source blocks? http://www.mail-archive.com/emacs-orgmode@gnu.org/msg28160.html See a picture of what he's done here: http://imagebin.ca/view/iRVK_as7.html Sébastien Vauban

Re: [Orgmode] Listing todos which have other todos in the subtree in the agenda

2010-08-13 Thread Jan Böcker
On 08/13/2010 06:10 PM, David Maus wrote: Jan Böcker wrote: I have a projects.org file with entries like this: * PROJECT Find the answer to life, the universe and everything * PROJECT World Domination *** NEXT build Doomsday Device (where PROJECT and NEXT are both defined as todo

Re: [Orgmode] How to show done tasks in agenda

2010-08-13 Thread Jan Böcker
On 08/13/2010 10:11 PM, Glasspen wrote: Hi! A question about tasks in agenda-view. How can org-mode show done tasks in agenda-view. Regards /C If you are in the todo list view, there is a line like this at the top: Available with `N r': (0)ALL (1)NEXT (2)AMD (3)WAITING (4)DONE

[Orgmode] Re: How to show done tasks in agenda

2010-08-13 Thread Memnon Anon
Glasspen ckglasspe...@gmail.com writes: How can org-mode show done tasks in agenda-view. Ugh, I think it does?! Do you have any of these settings in your setup? (setq org-agenda-skip-deadline-if-done t org-agenda-skip-scheduled-if-done t) Memnon

[Orgmode] Re: [Patch] Org-fontify

2010-08-13 Thread Sébastien Vauban
Hi Erik, Erik Iverson wrote: Having not tried this out, are the aims different than David O'Toole's mode-specific fontification of org-mode source blocks? http://www.mail-archive.com/emacs-orgmode@gnu.org/msg28160.html See a picture of what he's done here:

Re: [Orgmode] [OT] minimalist visual appearance for Emacs

2010-08-13 Thread Eric S Fraga
On Thu, 29 Jul 2010 13:11:16 -0400, Dan Davison davi...@stats.ox.ac.uk wrote: I've put together a simple package to provide a minimalist visual appearance for Emacs. Screenshot and info: http://dandavison.github.com/minimal/ In addition to getting rid of the usual suspects (scroll bars,

Re: [Orgmode] What license for Worg?

2010-08-13 Thread Eric S Fraga
On Wed, 04 Aug 2010 06:26:19 +0200, Bastien bastien.gue...@wikimedia.fr wrote: Hi Ian, Ian Barton li...@manor-farm.org writes: However, I think you may have to begin the long and tedious task of identifying all contributors to Worg and asking their permission. Yes I will. If

Re: [Orgmode] trying to get xetex working with org-mode

2010-08-13 Thread Christian Wittern
Scot, Thanks a lot, this helps a lot and is getting me on the right track. I was getting lost in the Customize-Groups-Browser hell and now see that I can have it much easier. Great. And when it comes to avoiding unwanted packages, I guess [NO-DEFAULT-PACKAGES] is really what I was looking for.

[Orgmode] [PATCH] org.texi: Document quick insertion of empty structural elements

2010-08-13 Thread Jambunathan K
org.texi: Document quick insertion of empty structural elements Sources: 1. http://article.gmane.org/gmane.emacs.orgmode/6670/ See section titled 'Completion of structure elements' 2. http://article.gmane.org/gmane.emacs.orgmode/18004/ From 540d8f2c03d300b6007c0d8595bb78ad172d8eac Mon

Re: [Orgmode] trying to get xetex working with org-mode

2010-08-13 Thread Thomas S. Dye
Aloha Christian and Scot, I'm interested in adding a brief section describing a plain vanilla XeTeX export to the Worg tutorial on LaTeX export: http://orgmode.org/worg/org-tutorials/org-latex-export.php If one or both of you could help out by editing the Worg page directly or by sending