Re: [O] orgstruct-mode with custom headline prefix

2013-01-31 Thread Christopher Schmidt
Bastien writes: > Can you give an indication on how it impacts the generation of agenda? > This is a potential blocker. It should not impact agenda generation at all - neither feature nor performance-wise. All non-trivial changes are in parts of the code that directly relate to orgstruct-mode or

Re: [O] orgstruct-mode with custom headline prefix

2013-01-31 Thread Bastien
Hi Christopher, Christopher Schmidt writes: > Bastien writes: >> Can you give an indication on how it impacts the generation of agenda? >> This is a potential blocker. > > It should not impact agenda generation at all - neither feature nor > performance-wise. All non-trivial changes are in par

Re: [O] orgstruct-mode with custom headline prefix

2013-01-31 Thread Christopher Schmidt
Bastien writes: Hi Bastien, >> Bastien writes: >>> Can you give an indication on how it impacts the generation of >>> agenda? This is a potential blocker. >> >> It should not impact agenda generation at all - neither feature nor >> performance-wise. All non-trivial changes are in parts of the

[O] [PATCH] Avoid modification hooks in org-clock-sum

2013-01-31 Thread Francesco Pizzolante
Hello, This patch avoid modification hooks to be run in org-clock-sum by using org-unmodified (instead of simply saving and restoring buffer-modified-p). On my system, this speeds up the creation of clock reports. I should have indented the code but I didn't in order to respect the less-than-20-

Re: [O] Some advice on how to use babel to generate cisco configs

2013-01-31 Thread Karl Voit
* Bart Bunting wrote: > Good morning, Hi! > What I would like to achieve is to have a table containing a few values, > e.g. ip address vlan number etc. > > Then have a cisco config in the org file with markers where the > substitutions are to be inserted. > Run through the table and create a nod

Re: [O] (no subject) How to sort agenda by timestamps (scheduled/deadline)?

2013-01-31 Thread Martin Beck
Bernt Hansen norang.ca> writes: > > > > Ho could I insert this additional "column" in the agenda view? > > I can't make it work in the block agenda but as a standalone agenda does > this help? > > --8<---cut here---start->8--- > ("x" "test" tags-to

Re: [O] (no subject) How to sort agenda by timestamps (scheduled/deadline)?

2013-01-31 Thread Martin Beck
Bernt Hansen norang.ca> writes: > > But unfortunately, it does only display category, TODO-keyword > > and subject, but > > NO information about Deadline or Scheduled date. > > I tried to create a block agenda with several blocks based on the (agenda )command, but then I also have the time

Re: [O] ...

2013-01-31 Thread Carsten Dominik
Hi Christopher, I mant to copy the list, I am doing this again now. Wow, I was not aware that Emacs caches by content, this is an important piece of information. I guess this removed the main concern I had. Thanks for looking it up in the code and showing it to me. I am not sure if I underst

Re: [O] ...

2013-01-31 Thread Christopher Schmidt
Carsten Dominik writes: > Hi Christopher, > > I mant to copy the list, I am doing this again now. > > Wow, I was not aware that Emacs caches by content, this is an important piece > of > information. I guess this removed the main concern I had. Thanks for looking > it up in the code and showing

Re: [O] Fixes for org-capture-templates-contexts

2013-01-31 Thread Bastien
Hi Paul, Paul Sexton writes: > Bastien altern.org> writes: > >> If you can send a patch against master for this, I'd be happy to apply >> it! Thanks again for pointing to these problems, >> > > Below are patches against org.el and org-capture.el. I implemented the ability to check contexts a

Re: [O] Confused about inline html images

2013-01-31 Thread Bastien
Hi John, John Hendy writes: > Still one issue: it's applying the attr_html to the wrong bit. Here's > the resultant export output: > > #+attr_html: width="400px" > [[http://path/to/file.jpg][http://path/to/file.jpg]] > > becomes: > > http://path/to/file.jpg"; width="400px"> src="http://path/to/f

Re: [O] can babel results show time of evaluation?

2013-01-31 Thread Bastien
Hi Eric, Eric Schulte writes: > As a temporary fix, I put the full defconst invocation into ob-core.el, > but this can't be the best solution. Yep, having the same defconst twice... > What's the "best practice" for how to use a defconst defined in an > external file (when you can't require tha

Re: [O] no pdf-output in lilypond code blocks

2013-01-31 Thread Bastien
Hi Achim, Achim Gratz writes: > (or (cdr (assoc (file-name-extension out-file) > '(("pdf" . "--pdf ") > ("ps" . "--ps ") > ("png" . "--png " > "--png ") > > work just as well? Yes, I've committed this change, thanks. -- Bastien

Re: [O] footnote placement

2013-01-31 Thread Bastien
Hi Henry, henry atting writes: > Thanks Bastien. Okay, it is not possible by default. As a workaround I > manually > put the footnotes where I want them to be. So far so good, but when I > export the file to html the footnotes are at the end of the html > document anyway. Yes, that's the way

Re: [O] can babel results show time of evaluation?

2013-01-31 Thread Bastien
Hi Achim, Achim Gratz writes: > Putting all definitions into a separate "leaf" file that can then be > required from everywhere with impunity. Bastien doesn't like this > idea, Maybe you misunderstood me. I am very much in love with the idea of putting defconst in a separate file. What I don

Re: [O] [Bug] test-org-export/before-parsing-hook

2013-01-31 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > It is more that this function does too much things behind the scenes > (like calling `org-agenda-prepare-buffers') to be reliable in a test > environment. Agreed. We are better off testing the behavior of `org-map-entries' than using it for tests. -- Ba

Re: [O] ...

2013-01-31 Thread Bastien
Hi Carsten and Christopher, Carsten Dominik writes: > I mant to copy the list, I am doing this again now. > > Wow, I was not aware that Emacs caches by content, this is an important > piece of information. I guess this removed the main concern I had. Thanks > for looking it up in the code and

Re: [O] orgstruct-mode with custom headline prefix

2013-01-31 Thread Bastien
Hi Christopher, Christopher Schmidt writes: > All my agendas generate just fine. I am not exactly sure how I can > provide figures and tests. You can instrument org with M-x elp-instrument-package RET org RET then check the results (after running an agenda command) with M-x elp-results RET Y

Re: [O] ...

2013-01-31 Thread Carsten Dominik
Hi Bastien, as you know, regular expressions are a language to do a programmed search for text. The pattern string has to be compiled before it can be used. That compilation is a costly process, so most languages that have pattern matching use some kind of cache to store compiled patterns, so

Re: [O] html export list indentation wrong with comments

2013-01-31 Thread Bastien
Hi Samuel, Samuel Wales writes: > Commenting out a list item works properly, but exporting does not. > > Export of subtree to HTML. Is it only when exporting subtrees? Do you also have this problem with the new exporter? Thanks, -- Bastien

[O] Converting csv (with new lines) to org-mode.

2013-01-31 Thread Nicolas Richard
Hello everyone, A csv table can include newlines in its fields, which confuses the csv parser contained in org-table-convert-region. Since I had no time to patch the current implementation of org-table-convert-region, I decided to use an already existing csv parser found in marmalade. You find bel

Re: [O] How to improve Org startup time?

2013-01-31 Thread Sebastien Vauban
Hi Eric, Eric S Fraga wrote: > Sebastien Vauban writes: >> Please find here an enriched log of the packages which are loaded for Org, >> and >> the time it takes. >> >> [2013-01-29 21:20:18] (info) +-> Requiring `appt'... >> [2013-01-29 21:20:18] (info) +-> Requiring `diary-lib'... >> [2013-01

Re: [O] Bug: Author email not included in postamble when doing HTML export [7.9.3d (release_7.9.3d-898-g005917-git @ org-loaddefs.el can not be found!)]

2013-01-31 Thread Bastien
Hi Michael, Michael Armbrecht writes: > Aaah. Apparently I didn't understand the doc correctly :/ > In fact, I like the #+OPTIONS way best. Well, the docstring of org-export-html-post/preamble-format "forgot" to mention that org-export-html-post/preamble needs to be `t' so that these variables

Re: [O] How to improve Org startup time?

2013-01-31 Thread Sebastien Vauban
Hi Eric, Eric S Fraga wrote: > Some timings on a 3-4 (?) year old netbook with Intel N450 Atom @1.66GHz > dual core powered: > > With old org, actually from October 2012 (!) as this system acts as a > cloud server for me so I don't actually use it interactively much: > > | org-agenda-to-appt

Re: [O] Bug: ODT export and environments

2013-01-31 Thread Cassio Koshikumo
Oh, that's great! I was out of the loop for a while and didn't even know there was a new exporter on the works. Thanks and best regards, On Wed, Jan 30, 2013 at 7:47 AM, Bastien wrote: > Hi Cassio, > > Cassio Koshikumo writes: > > > I think there's a bug when exporting files to ODT using env

Re: [O] Problems with TODO and agenda command

2013-01-31 Thread Bastien
Hi Aaron, "Siegel, Aaron J." writes: > This first task in this tutorial did not work for me. When I closed > the task using C-c C-t I did not receive a time stamp. I have > scheduled tasks and set deadlines for tasks but when I execute the > command "C-c a a" I do not see any tasks in the agenda

[O] roundtrip integration with Asana?

2013-01-31 Thread Meng Weng Wong
I use org for personal task management, but I use asana.com with my workgroup. I just learned that Asana offers an API that exposes all the usual interfaces. http://developers.asana.com/documentation/ Roundtrip integration between org and Asana is therefore possible. I'm sure I'm not the first p

Re: [O] Some advice on how to use babel to generate cisco configs

2013-01-31 Thread Thomas S. Dye
Aloha Bart, "Bart Bunting" writes: > Good morning, > > I have been trying to figure out without much luck how to use babel to > generate some cisco configs. > > > What I would like to achieve is to have a table containing a few values, > e.g. ip address vlan number etc. > > Then have a cisco conf

Re: [O] How to track down "No heading for this item in buffer or region."?

2013-01-31 Thread Bastien
Hi Nick, Nick Dokos writes: > (defun org-force-lazy-text-properties () > (jit-lock-function 1)) > > It seems to work at least for small files. There seem to be limits > to how much fontification it does, so if the file is bigger, it might > miss things. The more likely misfeature however is

Re: [O] Problems with TODO and agenda command

2013-01-31 Thread Siegel, Aaron J.
Bastien It is working, I used the C-c [ command to add the file to the agenda list. I do not know why the configuration in my .emacs did not work, understanding the Agenda file list is on my TODO list. The time stamp is a custom configuration that can be added to the header of a org file.

Re: [O] ...

2013-01-31 Thread Bastien
Hi Carsten, thanks a lot for the very clear explanations. Carsten Dominik writes: > The difference is only the repeated concatenation operation, and not the > recompilation. I always thought that this would work differently, and that > is why a lot of regexps get constructed and then stored in

Re: [O] ...

2013-01-31 Thread Bastien
Christopher Schmidt writes: > Please, do not trust me. This should be brought up to emacs-devel and > the definite answer should be documented in (info "(elisp)Regular > Expressions"). I asked on emacs-devel. Thanks, -- Bastien

Re: [O] Babel-generated files not part of published projects?

2013-01-31 Thread Bastien
Hi Gunnar, Gunnar Wolf writes: > When I export a single file (i.e. with C-c C-e p), the file gets > generated with the specified filename and included in the resulting > PDF. However, when I do it via org-publish-all (or > org-publish-project), the code does not get executed, and the > resulting

Re: [O] roundtrip integration with Asana?

2013-01-31 Thread Bastien
Hi Meng Weng, Meng Weng Wong writes: > I use org for personal task management, but I use asana.com with my workgroup. > > I just learned that Asana offers an API that exposes all the usual interfaces. > http://developers.asana.com/documentation/ > > Roundtrip integration between org and Asana is

Re: [O] Macro question with new texinfo exporter

2013-01-31 Thread Bastien
Hi Nicolas, Nicolas Goaziou writes: > OTOH, the change will happen during a major release. Moreover macros > belong to an export framework which have been totally rewritten. Must we > cope with backward compatibility in this case ? I'd say "as much as we can", yes. But if an incompatible chang

Re: [O] Macro question with new texinfo exporter

2013-01-31 Thread Nicolas Goaziou
Bastien writes: > Now back to the issue at hand, what about simply allowing to escape > the , and " characters? This was Thomas first try, and a natural one > I'd say. > > What do you think? In this case, there's no point in allowing to escape quotation marks. The current syntax handles them fi

Re: [O] Babel-generated files not part of published projects?

2013-01-31 Thread Gunnar Wolf
Bastien dijo [Thu, Jan 31, 2013 at 02:42:27PM +0100]: > > When I export a single file (i.e. with C-c C-e p), the file gets > > generated with the specified filename and included in the resulting > > PDF. However, when I do it via org-publish-all (or > > org-publish-project), the code does not get e

Re: [O] ...

2013-01-31 Thread Carsten Dominik
On 31 jan. 2013, at 14:32, Bastien wrote: > Hi Carsten, > > thanks a lot for the very clear explanations. > > Carsten Dominik writes: > >> The difference is only the repeated concatenation operation, and not the >> recompilation. I always thought that this would work differently, and that >

Re: [O] How to improve Org startup time?

2013-01-31 Thread Sebastien Vauban
Bastien, "Sebastien Vauban" wrote: > Bastien wrote: >> put your .emacs on diet :) More seriously, I would start by checking >> org-agenda-to-appt documentation. It should be on your system. If it is not, >> check online. > > I tried to filter to only "timestamp" entries with the following: > > #+b

[O] [PATCH] Protect org-agenda-prepare-buffers with org-unmodified

2013-01-31 Thread Francesco Pizzolante
Hello, This patch protects changes done in org-agenda-prepare-buffers with org-unmodified instead of saving/restoring buffer-modified-p. This avoids modification hooks to run. Regards, Francesco >From 6ce481a40a64510d67708ca63d27bdb434ee3e5a Mon Sep 17 00:00:00 2001 From: Francesco Pizzolante

Re: [O] orgstruct-mode with custom headline prefix (was: ...)

2013-01-31 Thread Christopher Schmidt
Carsten Dominik writes: > I was just thinking, if you are setting up two local variables, you > could set up three and include org-outline-regexp-bol as well. Or, > you could just set up org-outline-regexp', and make the function > org-struct-mode set up the other two as additional local variable

Re: [O] html export list indentation wrong with comments

2013-01-31 Thread Samuel Wales
On 1/31/13, Bastien wrote: >> Commenting out a list item works properly, but exporting does not. >> >> Export of subtree to HTML. > > Is it only when exporting subtrees? > > Do you also have this problem with the new exporter? I don't know. I get other bugs with both, and don't use them. It wil

Re: [O] [PATCH] Avoid all modification hooks in org-unmodified

2013-01-31 Thread Francesco Pizzolante
Hi Bastien, > This is great. It's not only more efficient but also more > consistent. Thanks a lot for joining the "agenda optimization > gang" with such a contribution! I applied your patch, with > a tiny change in the ChangeLog. Thanks for your message and for having applied the patch. I'm

Re: [O] How to improve Org startup time?

2013-01-31 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > #+begin_src emacs-lisp > (org-agenda-to-appt nil nil '(:timestamp)) > #+end_src Try this: #+begin_src emacs-lisp (org-agenda-to-appt nil nil :timestamp) #+end_src HTH, -- Bastien

Re: [O] How to improve Org startup time?

2013-01-31 Thread Bastien
Hi Sébastien, "Sebastien Vauban" writes: > For example, why do all the Org agenda files have to be loaded when I'm simply > opening a plain common (I mean: not part of the agenda) Org file? They don't. Can you reproduce the problem with a minimal config? Thanks, -- Bastien

Re: [O] [PATCH] Avoid modification hooks in org-clock-sum

2013-01-31 Thread Bastien
Hi Francesco, "Francesco Pizzolante" writes: > This patch avoid modification hooks to be run in org-clock-sum by using > org-unmodified (instead of simply saving and restoring buffer-modified-p). > > On my system, this speeds up the creation of clock reports. Applied, thanks. > I should have

Re: [O] [PATCH] Avoid modification hooks in org-clock-sum

2013-01-31 Thread Francesco Pizzolante
Hi Bastien, > Applied, thanks. Thanks to you. > Please let me know if you want to assign your copyright for > further patches -- the limit is cumulative over patches. I just introduced a request to the FSF. Regards, Francesco

Re: [O] How to improve Org startup time?

2013-01-31 Thread Achim Gratz
Sebastien Vauban writes: > You may be right, but I guess that I'm not alone using Windows 8, so my > performance observations must be shared by others as well. It may even be > worse for some who have more Org files, and a less powerful computer. Take Emacs and Org out of the picture and check how

[O] Seeking advice for conditional code

2013-01-31 Thread François Pinard
Hi, Org friends. Would someone be kind enough to point me in the right direction, if there is one already? My need is to have conditional code at publication time, and being able to include or exclude regions of code according to some symbol being "active" or "defined", or not. The use case is a

Re: [O] no pdf-output in lilypond code blocks

2013-01-31 Thread Achim Gratz
Achim Gratz writes: > Florian Beck writes: >> I don't think so. The string evaluates to itself or am I missing >> something? > > If it would fall under "SELFQUOTING" then yes (but I really don't > understand what the doc string is trying to tell me there and what would > be used for comparison). I

Re: [O] no pdf-output in lilypond code blocks

2013-01-31 Thread Florian Beck
Achim Gratz writes: > Achim Gratz writes: >> Florian Beck writes: >>> I don't think so. The string evaluates to itself or am I missing >>> something? >> >> If it would fall under "SELFQUOTING" then yes (but I really don't >> understand what the doc string is trying to tell me there and what would

Re: [O] no pdf-output in lilypond code blocks

2013-01-31 Thread Achim Gratz
Florian Beck writes: > I cannot reproduce this. The code works for me and byte compiling > doesn't generate any warning. > > GNU Emacs 24.3.50.7 (x86_64-unknown-linux-gnu, GTK+ Version 3.6.0) of > 2013-01-28 on flo-laptop Fail: 24.2 (unknown upattern), 23.[34] (malformed function), 22

Re: [O] orgstruct-mode with custom headline prefix

2013-01-31 Thread Christopher Schmidt
Bastien writes: > PS: To make things clear: I'm confident the patch is good, but I will > put it higher on my patch review process if I know the agenda does not > slow down :) Here is the patch. Now one just needs ;; Local Variables: ;; eval: (orgstruct-mode 1) ;; orgstruct-heading-

Re: [O] orgstruct-mode with custom headline prefix

2013-01-31 Thread Christopher Schmidt
Christopher Schmidt writes: This is the memory profiler result. > a2febd210182d9e1a37b0d7fd9ee007a10abc4bc refs/remotes/origin/HEAD > Saved working directory and index state WIP on master: a2febd2 Merge > branch 'maint' > HEAD is now at a2febd2 Merge branch 'maint' > OVERVIEW >

Re: [O] orgstruct-mode with custom headline prefix

2013-01-31 Thread Thorsten Jolitz
Christopher Schmidt writes: > Here is the patch. Now one just needs > > ;; Local Variables: > ;; eval: (orgstruct-mode 1) > ;; orgstruct-heading-prefix-regexp: ";;; " > ;; End: > > It cannot get any easier than this. Just a question - why ";;; " and not ";; " (i.e. ";; \*+ ")?

Re: [O] Seeking advice for conditional code

2013-01-31 Thread Sebastien Vauban
Hi François, François Pinard wrote: > Would someone be kind enough to point me in the right direction, if > there is one already? My need is to have conditional code at > publication time, and being able to include or exclude regions of code > according to some symbol being "active" or "defined",

Re: [O] Macro question with new texinfo exporter

2013-01-31 Thread Nicolas Goaziou
Bastien writes: > Now back to the issue at hand, what about simply allowing to escape > the , and " characters? This was Thomas first try, and a natural one > I'd say. I have pushed a fix in maint for that. It should now be possible to use {{{kbd(C-\,)}}} to get "C-," as argument. Regards, -

Re: [O] [PATCH] Avoid modification hooks in org-clock-sum

2013-01-31 Thread Bastien
Hi Francesco, "Francesco Pizzolante" writes: >> Please let me know if you want to assign your copyright for >> further patches -- the limit is cumulative over patches. > > I just introduced a request to the FSF. I've updated the Worg page: http://orgmode.org/worg/org-contribute.html#sec-6-2

Re: [O] Seeking advice for conditional code

2013-01-31 Thread John Kitchin
I think I have done something like this with tags and custom export lisp code. Something like: (let ((org-export-exclude-tags '("supplementary" "noexport"))) (org-export-as-latex 5)) That allows me to export all sections not tagged by those values. This would require all your code blocks be

Re: [O] Seeking advice for conditional code

2013-01-31 Thread François Pinard
"Sebastien Vauban" writes: > Hi François, Hi, Sebastien! :-) > Please tell if that's more or less the direction you want to take... Direction already taken, and completed a few minutes ago! :-). But I'll happily revert to something else it if there is a better way to proceed. The addition of

[O] Dropbox integration suddenly stopped working with Mobile-Org

2013-01-31 Thread Benjamin Alexander
Hello all! I've been a happy (!) user of Mobile-Org for some time now, on the iPhone, and a few months ago I switched to Dropbox integration. Things have gone fine until today when I synced for the first time in a week or so. The Dropbox password that was saved, and had worked fine (and still wo

Re: [O] About range references in the spreadsheet

2013-01-31 Thread Dieter Wilhelm
Eric S Fraga writes: > Bastien writes: > >> Hi Xue, Eric and Dieter, >> >> die...@duenenhof-wilhelm.de (H. Dieter Wilhelm) writes: >> >>> (I would avoid the ambiguous expression "column two" since it is a >>> relative specification) alternatively >>> >>> The TWO REFERENCES expand to a field ra

Re: [O] Seeking advice for conditional code

2013-01-31 Thread Sebastien Vauban
Hi François, François Pinard wrote: > "Sebastien Vauban" writes: >> Please tell if that's more or less the direction you want to take... > > Direction already taken, and completed a few minutes ago! :-). But I'll > happily revert to something else it if there is a better way to proceed. > The add

Re: [O] About range references in the spreadsheet

2013-01-31 Thread Nick Dokos
Dieter Wilhelm wrote: > Eric S Fraga writes: > > > Bastien writes: > > > >> Hi Xue, Eric and Dieter, > >> > >> die...@duenenhof-wilhelm.de (H. Dieter Wilhelm) writes: > >> > >>> (I would avoid the ambiguous expression "column two" since it is a > >>> relative specification) alternatively > >>>

[O] Bug: org-id-get-with-outline-path-completion docstring [7.9.3d (release_7.9.3d-929-ga2febd @ /home/flo/.emacs.d/org-mode/lisp/)]

2013-01-31 Thread Florian Beck
The docstring claims when the optional argument is omitted "all headlines in all agenda files are eligible." In fact, only the headlines in the current file are used (which is reasonable). Emacs : GNU Emacs 24.3.50.8 (x86_64-unknown-linux-gnu, GTK+ Version 3.6.0) of 2013-01-31 on flo-laptop Pa

Re: [O] How to improve Org startup time?

2013-01-31 Thread Bastien
"Sebastien Vauban" writes: > However, I've left it in the `org-finalize-agenda-hook' hook, so that the > `appt-list' is fed up as soon as I begin using agenda functions. But then org-agenda-to-appt will be called each time your generate a new agenda... not sure you really want this right. Why

Re: [O] How to improve Org startup time?

2013-01-31 Thread Sebastien Vauban
Bastien, Bastien wrote: > "Sebastien Vauban" writes: > >> However, I've left it in the `org-finalize-agenda-hook' hook, so that the >> `appt-list' is fed up as soon as I begin using agenda functions. > > But then org-agenda-to-appt will be called each time your generate > a new agenda... not sure

[O] Off for the next four days

2013-01-31 Thread Bastien
Hi all, I'm completely off with no internet access for the next four days, I'm back on tuesday. I've released Org 7.9.3e, a minor fixes release, which makes current agenda optimizations available to The Rest of The World. I must say I'm quite excited by the times to come: the new exporter merged

Re: [O] How to improve Org startup time?

2013-01-31 Thread Eric S Fraga
Sebastien Vauban writes: > > The timestamp stuff comes from EmacsWiki: > > #+begin_src emacs-lisp > (defadvice message (before when-was-that activate) > "Add timestamps to `message' output." > (ad-set-arg 0 (concat (format-time-string "[%Y-%m-%d %T] ") > (ad-get

Re: [O] About range references in the spreadsheet

2013-01-31 Thread Thomas S. Dye
Nick Dokos writes: > Dieter Wilhelm wrote: > >> Eric S Fraga writes: >> >> > Bastien writes: >> > >> >> Hi Xue, Eric and Dieter, >> >> >> >> die...@duenenhof-wilhelm.de (H. Dieter Wilhelm) writes: >> >> >> >>> (I would avoid the ambiguous expression "column two" since it is a >> >>> relative

Re: [O] How to improve Org startup time?

2013-01-31 Thread Eric S Fraga
Sebastien Vauban writes: > Hi Eric, > [...] > Dividing the figures by 50, just for the disks, seems too big for me, nope? Hi Seb, yes, it does seem dramatic. > Just to be sure: are you sure that, in this last test, `org-agenda-to-appt' > was called without having first opening the agenda file

Re: [O] Seeking advice for conditional code

2013-01-31 Thread François Pinard
"Sebastien Vauban" > For curiosity, why aren't you considering tangling? Quick half of a reply, I'll revise the rest of your message later. That would be far too much of a change for the habits of the team, or at least, this is how I perceive the equilibrium between developers. Moreover, some of

Re: [O] roundtrip integration with Asana?

2013-01-31 Thread Meng Weng Wong
On 31 Jan, 2013, at 9:49 PM, Bastien wrote: > > Meng Weng Wong writes: >> http://developers.asana.com/documentation/ >> Roundtrip integration between org and Asana is therefore possible. > > I don't know Asana but I'd suggest to have a look at org-sync > http://orgmode.org/cgit.cgi/org-sync.gi

Re: [O] About range references in the spreadsheet

2013-01-31 Thread Nick Dokos
Thomas S. Dye wrote: > >> >> @@-1$-2..@@-1 @r{in the first row up, 3 fields from 2 columns on > >> >> the left} > >> > > > "a range of three fields in the row before the current row, starting two > columns before the current column and ending in the current > column." > That's the best one so

Re: [O] How to improve Org startup time?

2013-01-31 Thread Nick Dokos
Eric S Fraga wrote: > - start emacs > - M-x elp-instrument-package RET org-agenda RET > - M-x org-agenda-to-apt RET > - M-x elp-results > - quit emacs > > now gives me > > | org-agenda-to-appt | 1 | 1.602924479 | 1.602924479 | > | org-agenda-prepare-buffers | 1 | 1.510812568 | 1

[O] exporting org presentation to PowerPoint via OpenOffice/LibreOffice

2013-01-31 Thread Eric S Fraga
Hello, In an email to this list a while back [1], it was suggested that one could convert an org file to PowerPoint using the OpenOffice Writer "send to presentation" menu option. This option is meant to convert an Writer "outline" to a set of Impress (i.e. OpenOffice's PowerPoint equivalent) sli