Re: [O] Let's discuss citation and Org syntax

2013-06-27 Thread Christian Wittern
Sorry about this late contribution to this thread. I just stumbled on the RTF/ODF scan tool for Zotero at[1], which seems to do something similar to the ideas ventilated in this thread. Since Zotero compatibility is high on the list of desirables mentioned here, I thought it might be an

Re: [O] evaluation context in call statements

2013-06-27 Thread Andreas Leha
Hi all Achim Gratz strom...@nexgo.de writes: Eric Schulte writes: My vote is for adding #+name support to call lines, and then handling their results in the same manner as code block results. Achim Gratz strom...@nexgo.de writes: I'm not sure what this would entail other than replacing

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-27 Thread Karl Voit
* Thorsten Jolitz tjol...@gmail.com wrote: not really an answer to your question, but I wrote a library (picodoc.el) that automatically generates PlantUML scripts from PicoLisp source code: Thanks for the pointer. Looks interesting but as you wrote, not really the solution that seems

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-27 Thread Karl Voit
* Rick Frankel r...@rickster.com wrote: On 2013-06-26 13:03, Karl Voit wrote: * Rick Frankel r...@rickster.com wrote: However, the header information seems to get lost. This requires hard-coded column content which is a minor drawback of this method. Just use `:colnames no': I love

[O] how to change appearance of org-mode files on Github?

2013-06-27 Thread Peter Salazar
Github supports org-mode files, and has a renderer that parses .org files and converts them to HTML form. Headings appear in larger font, org tables are converted to graphical HTML tables, etc. Is there a way to control the way .org files appear on Github? I tried adding some export options in

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-27 Thread Karl Voit
* Eric S Fraga e.fr...@ucl.ac.uk wrote: Hi Karl, Hi Eric! I did something simple for generating graphs but without an adjacency type of matrix as you have defined and without the special types of edges. So, quite limited with respect to what you want. In any case, I've attached what I

Re: [O] Proper use of 'org-file-apps'

2013-06-27 Thread Vladimir Lomov
** Nick Dokos [2013-06-27 01:52:49 -0400]: Vladimir Lomov lomov...@gmail.com writes: #+BEGIN_SRC emacs-lisp :tangle org-apps-c.el (add-to-list 'load-path /usr/share/emacs/site-lisp/org) (require 'org) (setq org-file-apps '( (\\.pdf::\\(\\d+\\)\\' . run-me --page %1 %s)

[O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread chris
I want to set up Org-mode variable org-agenda-files. How to Let [C-c a] to search over all files in a directory *recursively* ? -- E M A C S s e l o h c t t n i p a t f a r t e o l [ stardiviner ] {I hate all of you ! Leave me alone} IRC(freenode): stardiviner \\

Re: [O] how to change appearance of org-mode files on Github?

2013-06-27 Thread Suvayu Ali
On Thu, Jun 27, 2013 at 02:54:18AM -0400, Peter Salazar wrote: Github supports org-mode files, and has a renderer that parses .org files and converts them to HTML form. Headings appear in larger font, org tables are converted to graphical HTML tables, etc. Is there a way to control the way

[O] bug#13820: It was not fixed; it now is, though I don't understand the reason

2013-06-27 Thread Sebastien Vauban
Hi Stefan, Stefan Monnier wrote: Debugger entered--Lisp error: (wrong-type-argument symbolp (autoload [...] interactive-form((autoload org-agenda Activate appointments found [...] advice--make-interactive-form(ad-Advice-org-agenda-to-appt (autoload I installed a patch into trunk

Re: [O] Help with beamer environments + org-special-blocks!

2013-06-27 Thread Sebastien Vauban
Hello Nicolas, Nicolas Goaziou wrote: Sebastien Vauban writes: Vikas Rawal wrote: For example, if I use the following: (add-to-list 'org-beamer-environments-extra '(textpos1 w \\begin{textblock}%h \\visible %a { } \\end{textblock})) and write the headline as {10}(3,3), I

[O] org-babel-lob-execute: Wrong type argument: integer-or-marker-p

2013-06-27 Thread Loris Bennett
Hi, When I add the caching option to a call to a code block, like this #+CALL: get_raw_timelimit_elapsed_data() :cache yes everything works OK, but I get the error org-babel-lob-execute: Wrong type argument: integer-or-marker-p With an ECM the error does not occur, just with my crufty

[O] Add figure/table numbers to HTML captions

2013-06-27 Thread Yoshinari Nomura
Hi all, I sometimes need to export an org document into both HTML and LaTeX. In such case, I want HTML exporter to create numbered captions for figures and tables. So, I've written a small patch to add figure/table numbers to HTML captions. (see

Re: [O] Add figure/table numbers to HTML captions

2013-06-27 Thread Rasmus
Hi Yoshinari, I sometimes need to export an org document into both HTML and LaTeX. In such case, I want HTML exporter to create numbered captions for figures and tables. I think many would appreciate that feature. So, I've written a small patch to add figure/table numbers to HTML captions.

[O] Variable in file name for babel output?

2013-06-27 Thread Loris Bennett
Hi, Is it possible to pass a variable to a source block such that the variable can be used as part of the name of the output file? Currently I have #+HEADER: :var data=timelimit-elapsed-data year=2011 :colnames yes #+HEADER: :session *r* :file (org-babel-temp-file time-elapsed- .pdf) which

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-27 Thread Rick Frankel
On Thu, Jun 27, 2013 at 08:47:14AM +0200, Karl Voit wrote: * Rick Frankel r...@rickster.com wrote: - It requires you to specify the range on the node table Sorry, I did not understand this since I could not locate any range specification below except that one for

Re: [O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread J. David Boyd
chris numbch...@gmail.com writes: I want to set up Org-mode variable org-agenda-files. How to Let [C-c a] to search over all files in a directory *recursively* ? It's in the doc help for org-agenda-files: The files to be used for agenda display. Entries may be added to this list with

Re: [O] Proper use of 'org-file-apps'

2013-06-27 Thread Nick Dokos
Vladimir Lomov lomov...@gmail.com writes: ** Nick Dokos [2013-06-27 01:52:49 -0400]: Vladimir Lomov lomov...@gmail.com writes: #+BEGIN_SRC emacs-lisp :tangle org-apps-c.el (add-to-list 'load-path /usr/share/emacs/site-lisp/org) (require 'org) (setq org-file-apps '(

Re: [O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread Nick Dokos
da...@adboyd.com (J. David Boyd) writes: chris numbch...@gmail.com writes: How to Let [C-c a] to search over all files in a directory *recursively* ? It's in the doc help for org-agenda-files: ... If an entry is a directory, all files in that directory that are matched by

Re: [O] evaluation context in call statements

2013-06-27 Thread Achim Gratz
Andreas Leha writes: I did not follow this tread, so I just wanted to clarify: You are talking about making me to replace #+call: number_of_sth(origin=dataset1) :results table #+call: number_of_sth(origin=dataset2) :results table with #+name: call_number_of_sth_with_origin_dataset1

Re: [O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread Nicolas Richard
chris numbch...@gmail.com writes: How to Let [C-c a] to search over all files in a directory *recursively* ? AFAIK, there's no built in way. Applying the following patch to the function org-agenda-files gets you there, but it's not clean at all, and certainly very unefficient :

Re: [O] Add figure/table numbers to HTML captions

2013-06-27 Thread Nicolas Goaziou
Hello, Yoshinari Nomura n...@quickhack.net writes: I sometimes need to export an org document into both HTML and LaTeX. In such case, I want HTML exporter to create numbered captions for figures and tables. So, I've written a small patch to add figure/table numbers to HTML captions. (see

Re: [O] Org 8.0 -- Export postamble

2013-06-27 Thread Bastien
Hi Chao, Chao Lu loochao.l...@gmail.com writes: But the problem is this will override the default postabmle, how to keep both? Please see the attached picture for a better description. Well, you can't concatenate the default postamble and a custom one. Maybe you can simply right a function

Re: [O] Setting a parametric org-agenda-skip-function?

2013-06-27 Thread Bastien
Hi Alan, Alan Schmitt alan.schm...@polytechnique.org writes: I make org-agenda-skip-entry-unless-tags as debugged, and when I call this agenda view, I don't go in the debugger, so I guess it is not called. I'd try edebug-defun'ing `org-agenda-skip-eval' and track what's wrong from there.

Re: [O] overview of org files

2013-06-27 Thread Bastien
D M German d...@uvic.ca writes: the code is here: https://github.com/dmgerman/org-manage Maybe you can advertize this somewhere on Worg? We certainly can't keep track of all Org add-ons written on github, but it's always good to edit Worg and make it better. Thanks! -- Bastien

Re: [O] orgguide-es

2013-06-27 Thread Bastien
Hi David, davi...@es.gnu.org (David Arroyo Menéndez) writes: The spanish version of orgguide is good maintained and from my point of view would be useful to the spanish org people add a link to http://orgmode.org/#docs. For instance: Read the compact guide in spanish: HTML or PDF Since

Re: [O] [PATCH] * lisp/org.el (org-scan-tags): do not impose a value of case-fold-search on the user

2013-06-27 Thread Bastien
Hi Nicolas Nicolas Richard theonewiththeevill...@yahoo.fr writes: doesn't list Eva Luator in the Contacts buffer, although case-fold-search is set to t for me. I think it's an org-mode bug in fact ; I suggest the following : Applied, thanks. -- Bastien

Re: [O] [PATCH] do not use mapcar* for transposing tables

2013-06-27 Thread Bastien
Hi Achim, Achim Gratz strom...@nexgo.de writes: I've recently stumbled over a mapcar* compiled into Org for transposing tables. This is a function from cl / cl-lib and should not be used at runtime. Since we can make some simplifying assumptions about the data we'll have to deal with,

Re: [O] [bug] org-capture fails with undefined org-time-was-given variable

2013-06-27 Thread Bastien
Hi Eric, Eric S Fraga e.fr...@ucl.ac.uk writes: I have tried tracing this through but have failed to figure out why the setting of this variable makes a difference. Thanks for the directions, fixed in maint now. -- Bastien

Re: [O] Hide empty custom agenda sections

2013-06-27 Thread Bastien
Hi Ken, Ken Mankoff mank...@gmail.com writes: Right now I have this at the bottom of my custom agenda, and it is therefore often off-screen. I would like to have it at the top, but only appear when there are items under this section. Most of the time it is there and three lines are wasting

Re: [O] [BUG] org-agenda-open-link does not open bbdb links

2013-06-27 Thread Bastien
Hi Matt, Matt Lundin m...@imapmail.org writes: The function org-agenda-open-link does not open bbdb links. The reason is that bbdb agenda lines contain links that are not found in the entry. I'm not sure I understand. Can you provide a minimal example/recipe? Because the agenda line is

Re: [O] [RFC] Replace some HTML related keywords with OPTIONS items

2013-06-27 Thread Bastien
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Applied on master, since it introduces a syntax change. Tell me if you want it on maint anyway (or just cherry-pick it yourself). 2 cents: it's better on maint, since people are more likely to read change logs for 8.1 rather than for

Re: [O] orgguide-es

2013-06-27 Thread Bastien
Hi David, davi...@es.gnu.org (David Arroyo Menéndez) writes: I'm trying update worg to link to orgguide.es.html, but I'm finding a not found in http://orgmode.org/worg/orgguide/orgguide.es.html. Worg is not for pushing HTML pages, but .org files, who then get exported as HTML pages. If you

Re: [O] Open Document Exporter

2013-06-27 Thread Bastien
Hi Georg, Georg Lehner jorge-...@magma.com.ni writes: diff --git a/lisp/ox-odt.el b/lisp/ox-odt.el index a76f7dd..c8b704c 100644 This is quite a significant patch. If you want to let us apply it for Org, you will need to sign the FSF copyright assignment:

Re: [O] [PATCH] Use geiser for babel scheme evaluation.

2013-06-27 Thread Bastien
Hi Greg, Greg Minshall minsh...@acm.org writes: hi. what happened to this patch? i don't see it anywhere. cheers! Can you give a pointer to this patch? Thanks! -- Bastien

Re: [O] [PATCH 2/2] org-notify: Fix compatibility with latest org-element (uppercase properties)

2013-06-27 Thread Bastien
Hi Peter, Peter Münster pmli...@free.fr writes: * contrib/lisp/org-notify.el (org-notify-make-todo): Properties from org-element are all uppercase now. Mhh... not sure what it means -- do you have a pointer? -(let* ((list (nth 1 heading)) (notify (or (get :notify) default)) +

Re: [O] Alternatives to Org-modes (TreeSheets, WorkFlowy, ...)

2013-06-27 Thread Bastien
Hi Karl, Karl Voit devn...@karl-voit.at writes: A couple of months ago, I found WorkFlowy[3] which is an online service that offers some features of Org-mode as well. (The guys at workflowy told me one year ago that they would allow .org export... I'm still waiting it!) -- Bastien

Re: [O] [RFC] Replace some HTML related keywords with OPTIONS items

2013-06-27 Thread Bastien
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Basically, #+HTML_INCLUDE_STYLE: nil becomes #+OPTIONS: html-style:nil Is this the rule for all #+... options ? What about #+LaTeX: options ? See for example ox-rss.el: should I keep using #+RSS_EXTENSION or use a new item for

Re: [O] Org mode and right-to-left paragraphs

2013-06-27 Thread Bastien
Hi Manuel, Manuel GJT valh...@gmail.com writes: org-version 8.0.3, same issue with v. 7.9.4 Any fixes or workarounds? Your help is much appreciated, most of my brain is linked to org-mode. I'm afraid there is no real fix: (setq bidi-paragraph-direction 'left-to-right) is in the very

Re: [O] orgstruct: broken global visibility cycling, when in comments

2013-06-27 Thread Bastien
Hi Nathaniel, Nathaniel Cunningham nathaniel.cunning...@gmail.com writes: Note that this value for the prefix (actually the version with a space, ^;; ) is suggested by the Org manual for version 8.0.3 I fixed the manual. Thanks for reporting this! -- Bastien

Re: [O] Blank lines in date-trees

2013-06-27 Thread Vincent Beffara
Hi Bastien, Very (very!) minor question: when capturing into a date-tree, is it possible to have a blank line inserted before created day-headings? C-h v org-capture-templates RET [...] :empty-lines-before Set this to the number of lines the should be inserted

Re: [O] org-id should require newcomment?

2013-06-27 Thread Bastien
Hi Samuel, Samuel Wales samolog...@gmail.com writes: If newcomment is loaded, this bug does not occur: Pasting link results in org-run-like-in-org-mode: Symbol's value as variable is void: comment-region-function. Can you send a full backtrace of the error? Thanks, -- Bastien

Re: [O] Filtering in org-agenda-filter-by-category

2013-06-27 Thread Gustav Wikström
Oh, ok. Didn't realize. I did the change a long time ago in my private installation. One difference in my version is the visibility of the filter in the mode-line though. Doing C-u multiple times adds every removed category to the display in the mode-line. I updated to 8.0.3 recently and did

Re: [O] Hide empty custom agenda sections

2013-06-27 Thread Ken Mankoff
Hi Bastien, Here is my custom agenda section. I'd like to have the DEADLINE and the REFILE only show up if items exist in those sections, not when they are empty. Actually, I guess I'd like this for all sections. (setq org-agenda-custom-commands '((c My Custom Agenda ( (tags

Re: [O] Elpa twice in load-path

2013-06-27 Thread Bastien
Hi Rene, Rene jl...@yahoo.com writes: The way elpa works, it automatically adds packages to `load-path'. There is therefore no need to have such a line (add-to-list 'load-path (or (file-name-directory #$) (car load-path))) in the `package-autoloads.el file. Where is this file? --

Re: [O] org-map-entries - wrong use or bug?

2013-06-27 Thread Bastien
Hi Nick, Nick Dokos ndo...@gmail.com writes: There probably should be a link from the Using the mapping API section to the Matching tags and properties section. I thought there was one, but I just checked and didn't see it. Please feel free to add it if needed! Thanks, -- Bastien

Re: [O] Oorg-export-generic.el and emphasize

2013-06-27 Thread Bastien
Wes Hardaker wjhns...@hardakers.net writes: What feature from `org-export-generic' do you think is missing in ox.el? ox.el is a wonderfully designed parser and exporter (from what I've read of code, not actually used it (yet)). And my kudos to that and the suite of exporters that go with

Re: [O] Help with beamer environments + org-special-blocks!

2013-06-27 Thread Sebastien Vauban
Hello Nicolas, Nicolas Goaziou wrote: Sebastien Vauban writes: Nicolas Goaziou wrote: The previous definition would become: '(textpos1 w \\begin{textblock}%r \\visible %a { } \\end{textblock}) WDYT? I'm not sure to understand. Where would he put his options? Directly on the heading

Re: [O] Feature request: Tags exported as drop down filters in HTML export

2013-06-27 Thread Bastien
Hi Hagino, Hagino hagiha...@hotmail.com writes: I would like tags (and the new group tags) to be rendered as a drop down menu on HTML export, to allow different versions of the same website to be filtered and viewed. You'll need to find a javascript Guru somewhere. Patch welcome! --

Re: [O] http proxy problem.

2013-06-27 Thread Bastien
Hi David, Eric, DAVID QI david...@vtech.com writes: 1 [submodule testing/jump] 2 path = testing/jump 3 url = https://github.com/eschulte/jump.el.git This submodule is here for tests only and I think we can simply get rid of it. Eric, do I get this right? Thanks, -- Bastien

Re: [O] [PATCH] org-mouse: Fix incorrect replacement for checkbox lists

2013-06-27 Thread Bastien
Hi Ilya, Ilya Zonov izo...@gmail.com writes: I have prepared patch which fixes incorrect replacement with org-mouse popup function for checkbox lists: All Set and All Clear. Please, check it. See attachment. Applied, thanks. Please add TINYCHANGE at the end of your commit message for such

Re: [O] Relation between todo-mode.el and Org-mode?

2013-06-27 Thread Bastien
Hi Stephen, Stephen Berman stephen.ber...@gmx.net writes: Maybe I'll give Org another try. Glad to have you on this list -- I'm one of those who is curious about todo-mode.el and I'll try to try (sic) one day. Just one question: do you get feedback from todo-mode.el users? Do you know if

Re: [O] Filtering in org-agenda-filter-by-category

2013-06-27 Thread Bastien
Gustav Wikström gustav.e...@gmail.com writes: I updated to 8.0.3 recently and did some changes to my version to correspond to the evolution in the main repository. Here comes an updated version: Applied, thanks! -- Bastien

Re: [O] Process diagrams with dot and some glue using Org-mode

2013-06-27 Thread Bastien
Rick Frankel r...@rickster.com writes: Where should I place this method? Org-tutorials? [1] probably? New section in [2]? 1. http://orgmode.org/worg/org-tutorials/#sec-3-2 2. http://orgmode.org/worg/org-tutorials/#sec-4 I'm not sure. Carsten or Bastien would be a better person to ask.

Re: [O] how to disable timestamp html export

2013-06-27 Thread Bastien
OSiUX xu...@osiux.com.ar writes: When export using org-publish-project, Org add a comment with timestamp in HTML: # git diff html xmlns=http://www.w3.org/1999/xhtml; lang=es xml:lang=es head titleviewing two years of orgmode with gnuplot/title -!-- 2013-06-05 mié 12:10 -- +!--

Re: [O] Filtering in org-agenda-filter-by-category

2013-06-27 Thread Bastien
Hi Gustav, (please use plain text when posting code, other the code snippet is often mangled and not readable... thanks!) Gustav Wikström gustav.e...@gmail.com writes: I'd like to propose an addition to the function org-agenda-filter-by-category; that is, the function called when pushing in

Re: [O] Setting entry title by a standard org function?

2013-06-27 Thread Bastien
Hi Klaus-Dieter, Klaus-Dieter Bauer bauer.klaus.die...@gmail.com writes: Is there a standard way in the org-mode modules to change the text of a heading conserving tags, todo type, priority etc? There is no function for this. I use (setq org-special-ctrl-a/e 'reversed) (setq

Re: [O] [RFC] Replace some HTML related keywords with OPTIONS items

2013-06-27 Thread Nicolas Goaziou
Hello, Bastien b...@gnu.org writes: Nicolas Goaziou n.goaz...@gmail.com writes: Basically, #+HTML_INCLUDE_STYLE: nil becomes #+OPTIONS: html-style:nil Is this the rule for all #+... options ? What about #+LaTeX: options ? See for example ox-rss.el: should I keep using

Re: [O] Blank lines in date-trees

2013-06-27 Thread Bastien
Hi Vincent, Vincent Beffara vbeff...@ens-lyon.fr writes: Hi, Very (very!) minor question: when capturing into a date-tree, is it possible to have a blank line inserted before created day-headings? C-h v org-capture-templates RET [...] :empty-lines-before Set this to the number of lines

Re: [O] Help with beamer environments + org-special-blocks!

2013-06-27 Thread Nicolas Goaziou
Hello, Sebastien Vauban sva-news-D0wtAvR13HarG/idocf...@public.gmane.org writes: With what you say below, we then have 3 different solutions (at least) for new environments: - the one above, where you add a new environment definition (but, then, it's kind of private for your own files;

Re: [O] [RFC] Replace some HTML related keywords with OPTIONS items

2013-06-27 Thread Bastien
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Basically, #+keyword: is for strings, #+OPTIONS: use `read' on the values, so it should be used for every other type. Thanks for the explanation, it makes sense. Let's make it explicit somewhere in the manual, so that users have a clear

Re: [O] [PATCH 2/2] org-notify: Fix compatibility with latest org-element (uppercase properties)

2013-06-27 Thread Peter Münster
On Thu, Jun 27 2013, Bastien wrote: * contrib/lisp/org-notify.el (org-notify-make-todo): Properties from org-element are all uppercase now. Mhh... not sure what it means -- do you have a pointer? Yes, here: http://article.gmane.org/gmane.emacs.orgmode/73628 Citation: | (defun

[O] [PATCH] Append value of #+HTML_LINK_HOME to links relative with paths

2013-06-27 Thread Bastien
Hi all, the attached patch appends the value of #+HTML_LINK_HOME to links with relative paths in the HTML export. I need this for RSS feeds, in which relative paths are not allowed. This should not break anything, but I'd be glad if someone can test this heavily against his HTML publishing

Re: [O] Setting a parametric org-agenda-skip-function?

2013-06-27 Thread Alan Schmitt
Hi Bastien, b...@gnu.org writes: Hi Alan, Alan Schmitt alan.schm...@polytechnique.org writes: I make org-agenda-skip-entry-unless-tags as debugged, and when I call this agenda view, I don't go in the debugger, so I guess it is not called. I'd try edebug-defun'ing `org-agenda-skip-eval'

Re: [O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread J. David Boyd
Nicolas Richard theonewiththeevill...@yahoo.fr writes: chris numbch...@gmail.com writes: How to Let [C-c a] to search over all files in a directory *recursively* ? AFAIK, there's no built in way. Applying the following patch to the function org-agenda-files gets you there, but it's not

Re: [O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread Nicolas Richard
da...@adboyd.com (J. David Boyd) writes: Huh, when I set my org-agenda-files to ~/org/, and have TODO files in ~/org/home and ~/org/work, and press C-c a a, it loads all the todo file, recursed down to all the subdirectories. However, and this is strange, after it loads them all up, it

Re: [O] [PATCH] do not use mapcar* for transposing tables

2013-06-27 Thread Achim Gratz
Bastien writes: Looks good, please apply in maint. Done. Regards, Achim. -- +[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]+ Waldorf MIDI Implementation additional documentation: http://Synth.Stromeko.net/Downloads.html#WaldorfDocs

Re: [O] [RFC] Replace some HTML related keywords with OPTIONS items

2013-06-27 Thread Nicolas Goaziou
Bastien b...@gnu.org writes: Nicolas Goaziou n.goaz...@gmail.com writes: Basically, #+keyword: is for strings, #+OPTIONS: use `read' on the values, so it should be used for every other type. Thanks for the explanation, it makes sense. Let's make it explicit somewhere in the manual, so

Re: [O] [PATCH] do not use mapcar* for transposing tables

2013-06-27 Thread Bastien
Achim Gratz strom...@nexgo.de writes: Bastien writes: Looks good, please apply in maint. Done. Thanks! -- Bastien

Re: [O] org-id should require newcomment?

2013-06-27 Thread Samuel Wales
Debugger entered--Lisp error: (void-variable comment-region-function) default-value(comment-region-function) org-run-like-in-org-mode(org-insert-link) org-insert-link-global() call-interactively(org-insert-link-global nil nil) On 6/27/13, Bastien b...@gnu.org wrote: Hi Samuel, Samuel

Re: [O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread J. David Boyd
Nicolas Richard theonewiththeevill...@yahoo.fr writes: da...@adboyd.com (J. David Boyd) writes: Huh, when I set my org-agenda-files to ~/org/, and have TODO files in ~/org/home and ~/org/work, and press C-c a a, it loads all the todo file, recursed down to all the subdirectories. However,

[O] Arranging BABEL source block and output figure side by side in html output

2013-06-27 Thread RCY
Hi, I apologize in advance if this is documented in the manual or addressed already in the mailing list but I was unable to find an answer. Is it possible to arrange a BABEL asymptote source block and the resulting output figure side by side in html output? Thanks for any help. RC

Re: [O] Arranging BABEL source block and output figure side by side in html output

2013-06-27 Thread Eric Schulte
RCY re...@yahoo.com writes: Hi, I apologize in advance if this is documented in the manual or addressed already in the mailing list but I was unable to find an answer. Is it possible to arrange a BABEL asymptote source block and the resulting output figure side by side in html output?

[O] bug with LaTeX exporter

2013-06-27 Thread Dennis van Dok
Hi, I noticed a bug where a subsubsection without a 'parent' subsection would migrate up into the previous section to end up under the nearest subsection. I tried to make a minimalistic example, but when I export this file to LaTeX, the entire subsubsection disappears! This is emacs24 on Debian

Re: [O] Variable in file name for babel output?

2013-06-27 Thread Andreas Leha
Hi Loris, Loris Bennett loris.benn...@fu-berlin.de writes: Hi, Is it possible to pass a variable to a source block such that the variable can be used as part of the name of the output file? Currently I have #+HEADER: :var data=timelimit-elapsed-data year=2011 :colnames yes #+HEADER:

Re: [O] Arranging BABEL source block and output figure side by side in html output

2013-06-27 Thread RCY
On Thu, Jun 27, 2013 at 6:18 PM, Eric Schulte schulte.e...@gmail.com wrote: RCY re...@yahoo.com writes: Hi, I apologize in advance if this is documented in the manual or addressed already in the mailing list but I was unable to find an answer. Is it possible to arrange a BABEL asymptote

Re: [O] evaluation context in call statements

2013-06-27 Thread Andreas Leha
Achim Gratz strom...@nexgo.de writes: Andreas Leha writes: I did not follow this tread, so I just wanted to clarify: You are talking about making me to replace #+call: number_of_sth(origin=dataset1) :results table #+call: number_of_sth(origin=dataset2) :results table with #+name:

Re: [O] Add figure/table numbers to HTML captions

2013-06-27 Thread Yoshinari Nomura
Hi Rasmus, Thanks your good suggestion. I'm not an expert on html, but how easy it is to enable/disable/alter your solution locally compared to a html5/css solution? E.g. as here: http://tympanus.net/codrops/2013/05/02/automatic-figure-numbering-with-css-counters/ Note, I don't know

Re: [O] How to let Org Agenda search all files in a directory *recursively* ?

2013-06-27 Thread Suvayu Ali
On Thu, Jun 27, 2013 at 03:53:53PM +0800, chris wrote: I want to set up Org-mode variable org-agenda-files. How to Let [C-c a] to search over all files in a directory *recursively* ? You can try this function: ;; recursively find .org files in provided directory ;; modified from an Emacs

Re: [O] Proper use of 'org-file-apps'

2013-06-27 Thread Vladimir Lomov
Hello, ** Nick Dokos [2013-06-27 09:33:41 -0400]: Vladimir Lomov lomov...@gmail.com writes: ** Nick Dokos [2013-06-27 01:52:49 -0400]: Vladimir Lomov lomov...@gmail.com writes: #+BEGIN_SRC emacs-lisp :tangle org-apps-c.el (add-to-list 'load-path /usr/share/emacs/site-lisp/org)

Re: [O] bug with LaTeX exporter

2013-06-27 Thread Rasmus
Hello Dennis, I tried to make a minimalistic example, but when I export this file to LaTeX, the entire subsubsection disappears! Can't reproduce. This is emacs24 on Debian Wheezy, org-mode version 7.7. The current version is 8.0.3. * Bug demonstration This short and simple file

Re: [O] Add figure/table numbers to HTML captions

2013-06-27 Thread Yoshinari Nomura
Hi Nicolas, On Thu, 27 Jun 2013 16:46:19 +0200, Nicolas Goaziou n.goaz...@gmail.com said: Sure. Here are a few comments in addition to those suggested by Rasmus in this thread. Thanks for your to-the-point advice. I've hesitated to add some functions at the top level and split

Re: [O] Proper use of 'org-file-apps'

2013-06-27 Thread Nick Dokos
Vladimir Lomov lomov...@gmail.com writes: Something like that? The only question I had was whether there should be a \\' at the end of the xhtml line. I'm not sure how much real difference it makes, but I wonder if its absence is going to trip up somebody: Why do the other two have a \\' but

Re: [O] bug with LaTeX exporter

2013-06-27 Thread Nick Dokos
Rasmus ras...@gmx.us writes: Hello Dennis, I tried to make a minimalistic example, but when I export this file to LaTeX, the entire subsubsection disappears! Can't reproduce. This is emacs24 on Debian Wheezy, org-mode version 7.7. The current version is 8.0.3. * Bug demonstration

[O] archiving old repeated task logbook entries

2013-06-27 Thread Samuel Wales
Just wondering if anybody has done any significant work on automatically expiring old logbook entries for archiving. A search did not find anything. I know it's been discussed here. Samuel -- The Kafka Pandemic: http://thekafkapandemic.blogspot.com The disease DOES progress. MANY people

[O] [PATCH] Add a flat clocktable formatter useful for tables whose CSV export can be imported into accounting/invoiving tools such as Zoho Invoicing.

2013-06-27 Thread Ross Patterson
--- lisp/org-clock.el | 77 + 1 file changed, 77 insertions(+) diff --git a/lisp/org-clock.el b/lisp/org-clock.el index 8ac215e..bad653e 100644 --- a/lisp/org-clock.el +++ b/lisp/org-clock.el @@ -325,6 +325,14 @@ play with them. :group

Re: [O] default face org-column

2013-06-27 Thread Xiao-Yong Jin
On Jun 1, 2013, at 3:17 PM, Carsten Dominik carsten.domi...@gmail.com wrote: Hi Xiao, I remember that I struggled with the problem that I had to make sure that column view used a fixed-width face - and this was the solution that worked - not a particular pretty one, admittedly. Do you

[O] org-mode and python pandas

2013-06-27 Thread Dov Grobgeld
Has anyone used org-mode with the python pandas package? Pandas is in a certain way an alternative to R, but with the (for me) familiar syntax of python. See: http://pandas.pydata.org/ Pandas is very much built to be used interactively, and it outputs its data in space separated tabular format.