Re: [O] Re: Keep a file out of the mobile org org-mobile-files list

2011-03-07 Thread Bastien
Hi Marcelo, Marcelo de Moraes Serpa celose...@gmail.com writes: Oh, disregard my message. Now I see it I needed to pull before... thanks! Also note this variable expects a regular expression: reference.org is okay since it maches itself right, but I just wanted to point this out, in case.

[O] RE: [Orgmode] [HOW] no way to escape vertical bar (pipe char) in tables?

2011-03-07 Thread Vladimir Alexiev
what is the best way to manage leading/trailing spaces in a table cell? This i don't understand -- you want to *keep* the spaces in the exported table? Not all spaces, but some spaces some of the time is needed. The recent patch to org-babel-read by Erik Schulte makes this possible. See

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bastien
Hi Bernt, Bernt Hansen be...@norang.ca writes: I think this change may have changed the default for non :immediate-finish capture tasks as well. I have the following template: (t todo entry (file ~/git/org/refile.org) * TODO %?\n%U\n%a\n :clock-in t :clock-resume t) and if the

[O] Re: [Orgmode] Capture question

2011-03-07 Thread Bastien
John Hendy jw.he...@gmail.com writes: Fantastic. That does it. When do things get pushed to the manual? Or is that an as-it's-spotted-it-gets-changed kind of thing? It's still the old way here:?http://orgmode.org/manual/Capture-templates.html# Capture-templates Very soon actually :) --

Re: [O] RE: [Orgmode] [HOW] no way to escape vertical bar (pipe char) in tables?

2011-03-07 Thread Bastien
Vladimir Alexiev vladi...@sirma.bg writes: what is the best way to manage leading/trailing spaces in a table cell? This i don't understand -- you want to *keep* the spaces in the exported table? Not all spaces, but some spaces some of the time is needed. The recent patch to

Re: [O] [Orgmode] Babel sql code block issue and patch proposal

2011-03-07 Thread Alain Clément
Hi Eric, Thanks for your message and sorry for the delay. Actually, escaping characters with backslashes is the problem within mysql when the =SOURCE= command is invoqued. To believe the forums, it seems that this difficulty is well known among mysql users. The suggested solution there consists in

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Lawrence Mitchell
Thomas S. Dye wrote: [...] , | * section | #+latex: \label{sec:sec} ` But there /must/ be a better way to this, eh? Good point. It would be great to leverage Org-links to resolve cross references to document sections. If you do: (setq org-export-latex-hyperref-format

[O] Re: [Babel] Handling of errors when using Ledger

2011-03-07 Thread Eric S Fraga
Dan Davison dandavis...@gmail.com writes: Hi Eric, Seb and any other ledger users, Is anyone using a version of ledger that does not support reading from stdin with -f - ? Thanks, Dan Thanks for the reminder! I had forgotten about the new version of ledger. Apologies for not checking

Re: [O] Re: [Orgmode] Grouping clock report by tag?

2011-03-07 Thread Giovanni Ridolfi
John Hendy jw.he...@gmail.com writes: Sorry -- forgot the list... On Sun, Mar 6, 2011 at 12:06 PM, John Hendy jw.he...@gmail.com wrote: On Sun, Mar 6, 2011 at 11:42 AM, Bastien b...@altern.org wrote: John Hendy jw.he...@gmail.com writes: How about a clock table with a :tag: column and

[O] Re: [Orgmode] Possible Calc support for Org-Babel?

2011-03-07 Thread Eric S Fraga
Eric Schulte schulte.e...@gmail.com writes: [...] Alright, I've made two changes, first, it is now possible to pass elisp vectors through to code blocks, e.g., #+begin_src emacs-lisp :var data=[1 2 3] (elt data 1) #+end_src #+results: : 2 Second, I've added a slightly hackey but

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Eric S Fraga
Rasmus rasmus.p...@gmail.com writes: [...] Org populates every section with a label. I would like to \ref or \vref these. I could predict \label's, but this a rather fragile solution. When I use Org-links I get a text link suitable for e.g. html. I want to use \ref to get a number. One

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Giovanni Ridolfi
Bastien b...@altern.org writes: What about :clock-out t, explicitely telling org-capture-finalize to clock out when? Oh, yes, please[1]! cheers, Giovanni [1] http://lists.gnu.org/archive/html/emacs-orgmode/2010-07/msg00099.html

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bastien
Hi Bernt, Bernt Hansen be...@norang.ca writes: I think this change may have changed the default for non :immediate-finish capture tasks as well. I finally introduced a new template option :no-clock-out which, when set to t, will prevent the clocking-out when filing an entry. This way the

Re: [O] exporting tables ignores empty lines in the tables

2011-03-07 Thread Eric S Fraga
Bastien b...@altern.org writes: Hi Eric, Eric S Fraga e.fr...@ucl.ac.uk writes: I have searched for a variable that may affect the following behaviour but have not found one. You can now use `org-export-table-remove-empty-lines'. Works like a charm! Many thanks. Note that

[O] [PATCH] Allow using a custom function for Bulk actions

2011-03-07 Thread Puneeth Chaganti
Hi, Here's a patch that allows choosing or specifying any arbitrary function to be used for Bulk actions from agenda view. From d997a0bb5c399d203059fb5e60db630eab95e003 Mon Sep 17 00:00:00 2001 From: Puneeth Chaganti puncha...@gmail.com Date: Mon, 7 Mar 2011 15:54:20 +0530 Subject: [PATCH]

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bastien
Hi Giovanni, Giovanni Ridolfi giovanni.rido...@yahoo.it writes: Bastien b...@altern.org writes: What about :clock-out t, explicitely telling org-capture-finalize to clock out when? Oh, yes, please[1]! See my previous message -- I used :no-clock-out to stick to the default behavior and

Re: [O] org-crypt.el security problem (From: Milan Zamazal)

2011-03-07 Thread Julien Danjou
On Sun, Mar 06 2011, Bastien wrote: What I can also suggest is to never show the encrypted block in the Org buffer. I agree this would be better. This is what I do in my configuration: on Org file loading, I decrypt all entries. Therefore I never see the GPG block. When I save, everything

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Rasmus Pank Roulund
(setq org-export-latex-hyperref-format \\ref{%s}) then you can refer to sections by their numbers with as we see in section [[section]] and it works nicely. Wow; it works! Lawrence, in your experience, how fragile is this? The bliss of LaTeX labels is that they are independent of the printed

Re: [O] [Org-contacts] 3 2 1 go?

2011-03-07 Thread Andrea Crotti
About the script used to import from AddressBook.app, I update it here https://github.com/AndreaCrotti/scripts/blob/master/contacts_to_org.py Now it creates as many contacts for the name as many as the email addresses. One thing I haven't found in fact is how to support multiple emails, is that

Re: [O] [Org-contacts] 3 2 1 go?

2011-03-07 Thread Julien Danjou
On Sat, Mar 05 2011, Andrea Crotti wrote: Because I would really like to have a complete address book support from the command-line/Emacs to get rid of the stupid osx AddressBook.app, but it doesn't look that the purpose is this, right? You can set any properties anyway. Org-contacts just use

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Eric S Fraga
Rasmus Pank Roulund rasmus.p...@gmail.com writes: (setq org-export-latex-hyperref-format \\ref{%s}) then you can refer to sections by their numbers with as we see in section [[section]] and it works nicely. Wow; it works! Lawrence, in your experience, how fragile is this? The bliss of LaTeX

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Rasmus Pank Roulund
Hi, But Latex doesn't care? =sec:into= will still be fine so I don't see why this is not suitable *and* it is not fragile as far as I can tell. I've used this approach for a long time. No, using \label's is never fragile! The /only/ theoretical possibility is that the \label is placed on a

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread suvayu ali
Hi, On Mon, Mar 7, 2011 at 4:10 AM, Rasmus Pank Roulund rasmus.p...@gmail.com wrote: I am not sure what point you are trying to make in this case? It inserts a blank line which will cause the text to be indented. So I need to add a \noindent to avoid the indent. I never asked for a blank

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bernt Hansen
Bastien b...@altern.org writes: Bernt Hansen be...@norang.ca writes: I think this change may have changed the default for non :immediate-finish capture tasks as well. I finally introduced a new template option :no-clock-out which, when set to t, will prevent the clocking-out when filing

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Rasmus Pank Roulund
I think what Eric is asking is why does the empty line matter? I just realize that the undesirable behavior is caused by the fact that the quotation rather than the quote environment is used. Sorry for the noise! All I need to do is call `C-c C-e p' and I get a publication quality pdf. But

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Carsten Dominik
On Mar 7, 2011, at 11:26 AM, Bastien wrote: Hi Giovanni, Giovanni Ridolfi giovanni.rido...@yahoo.it writes: Bastien b...@altern.org writes: What about :clock-out t, explicitely telling org-capture-finalize to clock out when? Oh, yes, please[1]! See my previous message -- I

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Suvayu Ali
Hi Rasmus On Mon, 07 Mar 2011 13:49:02 +0100 Rasmus Pank Roulund rasmus.p...@gmail.com wrote: I am in no way unthankful. Rather, I try to share criticism that might be useful in improving the exporter, such as not being able to demand ordinary space rather than full stop after 'e.g.'. On the

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bernt Hansen
Carsten Dominik carsten.domi...@gmail.com writes: On Mar 7, 2011, at 11:26 AM, Bastien wrote: Hi Giovanni, Giovanni Ridolfi giovanni.rido...@yahoo.it writes: Bastien b...@altern.org writes: What about :clock-out t, explicitely telling org-capture-finalize to clock out when? Oh,

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Lawrence Mitchell
Rasmus wrote: However, I have noticed at least one non-acceptable issue. When using using English, LaTeX (via Babel or just default) full-stops (≈double space) will be inserted after dots. However, with abbrevation one would use an ordinary space (i.e.\ an escaped space (\ ) in LaTeX). Org

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bastien
Hi Bernt, Bernt Hansen be...@norang.ca writes: If it doesn't make sense to have both :no-clock-out and :clock-resume then maybe the code could check for that and issue an error/warning when the template is selected? Done. Maybe use :clock-keep instead of :no-clock-out (to indicate that we

[O] Release 7.5

2011-03-07 Thread Bastien
Dear all, here it is, release 7.5, my first release as Org's new maintainer. This release comes with lots of new features, bug fixes, and fun. Special thanks to everyone who helped for this work: it's becoming hard to mention all the contributors, whether it be ideas, feedback or code, and

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bastien
Carsten Dominik carsten.domi...@gmail.com writes: Also, this new property, when set, does not allow :clock-resume, I have not checked if something bad would happen should a user give both by accident. Ah yes, thanks for bringing this up: :clock-keep has precedence over :clock-resume -- when

Re: [O] [Org-contacts] 3 2 1 go?

2011-03-07 Thread Julien Danjou
On Mon, Mar 07 2011, Andrea Crotti wrote: One thing I haven't found in fact is how to support multiple emails, is that too hard to do? If you mean in org-contacts, just use space as a separator for each mail address. -- Julien Danjou ❱ http://julien.danjou.info pgpKlEqNSkF1t.pgp

Re: [O] Release 7.5

2011-03-07 Thread Carsten Dominik
This is great. Congratulations to Bastien for getting to his first release so quickly! And thanks to everyone else. All this does make me very happy. - Carsten On Mar 7, 2011, at 3:42 PM, Bastien wrote: Dear all, here it is, release 7.5, my first release as Org's new maintainer. This

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bernt Hansen
Bastien b...@altern.org writes: Carsten Dominik carsten.domi...@gmail.com writes: Also, this new property, when set, does not allow :clock-resume, I have not checked if something bad would happen should a user give both by accident. Ah yes, thanks for bringing this up: :clock-keep has

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bastien
Bernt Hansen be...@norang.ca writes: For my 't' capture template with :clock-in and :clock-resume (and no :clock-keep) when I start capture mode for the task when the clock is not running it stays running in that task (as reported earlier) - Isn't that a bug? Is it against latest git? (I

Re: [O] Re: [PATCH] Re: [BUG] htmlp and latexp

2011-03-07 Thread Bastien
Hi Dan, Dan Davison dandavis...@gmail.com writes: I also want to change the customize group of a lot of those variables: a lot of the org-src-* and org-edit-src-* variables are filed in Customize under Org Structure - Org Edit Structure which has to be one of the least intuitive things in

Re: [O] [Orgmode] Babel sql code block issue and patch proposal

2011-03-07 Thread Eric Schulte
To be honest, I don't have any overly motivating reasons for passing the file name to mysql rather than piping the contents of the file. Aside from consistency with the other SQL engines, the nagging feeling that things are the way they are for a reason, and a healthy fear of the new and unknown.

[O] Re: [Orgmode] [HOW] no way to escape vertical bar (pipe char) in tables?

2011-03-07 Thread Eric Schulte
Vladimir Alexiev vladi...@sirma.bg writes: I want to manage some perl regexps in a table then feed them to a code block (literate programming). Unfortunately they include alternatives (|) and the table editor thinks this is a column break. There's no way to escape this? Using a different

[O] org-with-wide-buffer error

2011-03-07 Thread Kiwon Um
Dear orgmode team, This is a bug report for the latest (git) orgmode. When I call org-todo or org-agenda-todo it reports the following: Debugger entered--Lisp error: (invalid-function org-with-wide-buffer) org-with-wide-buffer(t) byte-code( . org-todo(nil)

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bernt Hansen
Bastien b...@altern.org writes: Bernt Hansen be...@norang.ca writes: For my 't' capture template with :clock-in and :clock-resume (and no :clock-keep) when I start capture mode for the task when the clock is not running it stays running in that task (as reported earlier) - Isn't that a bug?

[O] Re: Release 7.5

2011-03-07 Thread Rafael Villarroel
Bastien b...@altern.org writes: * Imagemagick post-processing of LaTeX code block results It is now possible to use imagemagick to process the output of LaTeX code blocks through to a wide variety of output formats. This patch is thanks to Andreas Leha, the following description

Re: [O] org-with-wide-buffer error

2011-03-07 Thread Bastien
Hi Kiwon, Kiwon Um um.ki...@gmail.com writes: This is a bug report for the latest (git) orgmode. When I call org-todo or org-agenda-todo it reports the following: Debugger entered--Lisp error: (invalid-function org-with-wide-buffer) I cannot reproduce it -- anyone else? -- Bastien

Re: [O] Re: Release 7.5

2011-03-07 Thread Bastien
Hi Rafael, Rafael Villarroel rvf0...@gmail.com writes: Bastien b...@altern.org writes: * Imagemagick post-processing of LaTeX code block results It is now possible to use imagemagick to process the output of LaTeX code blocks through to a wide variety of output formats. This

[O] Re: [Orgmode] [REGRESSION] org-html.el (targets)

2011-03-07 Thread Manuel Giraud
Jambunathan K kjambunat...@gmail.com writes: I am attaching the bug.org file and the html exports as done by git versions 048f32 (approx a month old) and 77c278 (very recent). Hi, Here's a patch that fixes this issue. From cd423f908de55a2379c4476c0da8922968786e64 Mon Sep 17 00:00:00 2001

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Thomas S. Dye
Aloha Lawrence, This is great. Thanks! Tom On Mar 7, 2011, at 4:00 AM, Lawrence Mitchell wrote: Rasmus wrote: However, I have noticed at least one non-acceptable issue. When using using English, LaTeX (via Babel or just default) full-stops (≈double space) will be inserted after dots.

Re: [O] [Orgmode] Babel sql code block issue and patch proposal

2011-03-07 Thread Alain Clément
Hi Eric, Thank you so much, your fearless development is great and very appreciated! Best regards, - Alain 2011/3/7 Eric Schulte schulte.e...@gmail.com To be honest, I don't have any overly motivating reasons for passing the file name to mysql rather than piping the contents of the file.

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bastien
Hi Bernt, Bernt Hansen be...@norang.ca writes: I see two problems with this capture: 1) Clock stays running in the capture task after C-c C-c I pushed a fix for this. Thanks for the minimal.emacs and the detailed report. 2) The refile.org capture buffer is narrowed hiding the newly

Re: [O] Questions on LaTeX Exporter

2011-03-07 Thread Thomas S. Dye
Aloha Lawrence, It does indeed work nicely. Thanks! Tom On Mar 6, 2011, at 11:46 PM, Lawrence Mitchell wrote: Thomas S. Dye wrote: [...] , | * section | #+latex: \label{sec:sec} ` But there /must/ be a better way to this, eh? Good point. It would be great to leverage

Re: [O] Release 7.5

2011-03-07 Thread Leo
On 2011-03-07 22:42 +0800, Bastien wrote: here it is, release 7.5, my first release as Org's new maintainer. Congratulations, Bastien. Leo

Re: [O] Re: Keep a file out of the mobile org org-mobile-files list

2011-03-07 Thread Marcelo de Moraes Serpa
Yeah, got it! Thanks for the contribution, works like a charm... Marcelo. On Mon, Mar 7, 2011 at 2:10 AM, Bastien b...@altern.org wrote: Hi Marcelo, Marcelo de Moraes Serpa celose...@gmail.com writes: Oh, disregard my message. Now I see it I needed to pull before... thanks! Also note

Re: [O] Release 7.5

2011-03-07 Thread Puneeth Chaganti
On Mon, Mar 7, 2011 at 8:12 PM, Bastien b...@altern.org wrote: Dear all, here it is, release 7.5, my first release as Org's new maintainer. This release comes with lots of new features, bug fixes, and fun. Congratulations, Bastien! -- Puneeth

Re: [O] Release 7.5

2011-03-07 Thread Eric S Fraga
Bastien b...@altern.org writes: Dear all, here it is, release 7.5, my first release as Org's new maintainer. Wow! Great start. I'm only embarrassed that my name appears several times as having asked for new features. Time for me to start contributing actual code a bit more, I think! After

Re: [O] Bug: Org-Contacts.el [7.4]

2011-03-07 Thread Achim Gratz
Matthew Sauer improv.philoso...@gmail.com writes: lispdir   = $ usr/share/emacs/23.2/lisp/org Don't do that. Put anything you install yourself into /usr/share/emacs/site-lisp or more specifically for Orgmode, /usr/share/emacs/site-lisp/org This path won't be overwritten or ignored when you

Re: [O] Different (setq org-export-with-section-numbers) depending on HTML or LaTeX export

2011-03-07 Thread Eric S Fraga
Aankhen aank...@gmail.com writes: Hi, On Mon, Mar 7, 2011 at 04:37, Jakub Szypulka cubib...@googlemail.com wrote: I'm trying to hide section numbers in the HTML export, while keeping the sections in the LaTeX export. Adding (setq org-export-with-section-numbers nil) successfully removes

Re: [O] How to escape characters in tables

2011-03-07 Thread Ken.Williams
From: Camille persson camille.pers...@gmail.com 2011/3/4 ken.willi...@thomsonreuters.com [...] here's a test case that shows my intent: | foo | =m/foo\vert{}foodfight/= | The \vert{} seems not to work inside a =...= construction. Furthermore, the =...= construction is problematic

Re: Re: [O] [Org-contacts] 3 2 1 go?

2011-03-07 Thread Michael Käufl
One thing I haven't found in fact is how to support multiple emails, is that too hard to do? If you mean in org-contacts, just use space as a separator for each mail address. Thanks for this hint! Where are you planing to put the documentation? I know about

Re: [O] Table formula changes are not always necessary when moving rows

2011-03-07 Thread Carsten Dominik
On 28.2.2011, at 12:43, Tom wrote: I have a table in which I sum the values of all rows in the last row: vsum(@1..@-I-1). The problem is when move a row with M-up before the first row (e.g. I press M-up on the second row) then org modifies this formula to vsum(@2..@-I-1). This is not

Re: [O] Release 7.5

2011-03-07 Thread Achim Gratz
Bastien b...@altern.org writes: here it is, release 7.5, my first release as Org's new maintainer. Great! A bit of trivia: there are a full 650 commits between release_7.4 and release_7.5... This release comes with lots of new features, bug fixes, and fun. ... and without a single complaint

[O] [Bug] body-only Export Option Adds Extra html Tags.

2011-03-07 Thread Ian Barton
If I export body-only in my publishing options and publish a file that looks like: #+TITLE: Index for Cycling Pages. #+STARTUP: showall indent #+STARTUP: hidestars #+BEGIN_HTML --- layout: cycling title: Cycling. excerpt: Page about cycling. --- #+END_HTML Some text The resulting html looks

Re: [O] Capture - stay clocked in?

2011-03-07 Thread Bernt Hansen
Bastien b...@altern.org writes: Bernt Hansen be...@norang.ca writes: I see two problems with this capture: 1) Clock stays running in the capture task after C-c C-c I pushed a fix for this. Thanks for the minimal.emacs and the detailed report. Hi Bastien, Thanks. This works now.

[O] Re: [Accepted] Re: Bug: Jumping to a date in the agenda changes view back to 'day' [7.4 (release_7.4.80.g0e5e5)]

2011-03-07 Thread Matt Lundin
Hi Bastien, Bastien b...@altern.org writes: Matt Lundin m...@imapmail.org writes: Matt Lundin m...@imapmail.org writes: Has there been any progress on this issue? I am finding that the local span bindings in the custom command above still do not have any effect. My default agenda span is

Re: [O] Release 7.5

2011-03-07 Thread Manish
On Mon, Mar 7, 2011 at 8:12 PM, Bastien wrote: Dear all, here it is, release 7.5, my first release as Org's new maintainer. This release comes with lots of new features, bug fixes, and fun. Many congratulations to Bastien and everyone who made it possible. I love the new append agenda

Re: [O] Release 7.5

2011-03-07 Thread Niels Giesen
Congratulations and a lot of thanks for the great work! Niels. -- http://pft.github.com/

Re: [O] Release 7.5

2011-03-07 Thread Delwood Richardson
Bastien bzg at altern.org writes: here it is, release 7.5, my first release as Org's new maintainer. This release comes with lots of new features, bug fixes, and fun. Thanks to Bastien and all the contributors. Did anyone notice that the link on the web page still links to Org 7.4? The files

Re: [O] Table formula changes are not always necessary when moving rows

2011-03-07 Thread Tom
Carsten Dominik carsten.dominik at gmail.com writes: You did not show your example, but from the formula I would assume that you start the table immediately with data, without a header line org a horizontal separator line. If you did, you could do vsum(@I..II) and have a formula that is

Re: [O] Release 7.5

2011-03-07 Thread Suvayu Ali
On Mon, 07 Mar 2011 15:42:19 +0100 Bastien b...@altern.org wrote: Dear all, here it is, release 7.5, my first release as Org's new maintainer. Congratulations Bastien and all the developers! :) -- Suvayu Open source is the future. It sets us free.

[O] Footnote sorting bug

2011-03-07 Thread Matt Lundin
Sorting footnotes when org-footnote-section is nil can have very destructive consequences. For instance, the following file... --8---cut here---start-8--- * Heading one A footnote.[fn:one] [fn:one] A footnote Another footnote.[fn:two] [fn:two] Another

[O] a small contribution

2011-03-07 Thread Filippo A. Salustri
Hi all, I use geektool on my Mac to put useful things on my desktop. (Rainmeter is the equivalent program for windoze.) Anyways, I would like have some todo items show up in geektool, but emacs eats cpu, aquamacs doesn't do --batch stuff well, and I hate wasting cycles. So I wrote a small perl

[O] Re: Release 7.5

2011-03-07 Thread Matt Lundin
Bastien b...@altern.org writes: here it is, release 7.5, my first release as Org's new maintainer. What a fantastic release! Thanks for all the hard work on this Bastien. And congratulations! Best, Matt

Re: [O] org-with-wide-buffer error

2011-03-07 Thread David Maus
At Mon, 07 Mar 2011 17:06:53 +0100, Bastien wrote: Hi Kiwon, Kiwon Um um.ki...@gmail.com writes: This is a bug report for the latest (git) orgmode. When I call org-todo or org-agenda-todo it reports the following: Debugger entered--Lisp error: (invalid-function org-with-wide-buffer)

Re: [O] Re: [REGRESSION] org-html.el (targets)

2011-03-07 Thread Bernt Hansen
Manuel Giraud manuel.gir...@univ-nantes.fr writes: Jambunathan K kjambunat...@gmail.com writes: I am attaching the bug.org file and the html exports as done by git versions 048f32 (approx a month old) and 77c278 (very recent). Hi, Here's a patch that fixes this issue. Hi Manuel, Thanks

Re: [O] Uniquely url-ify sentences?

2011-03-07 Thread Jason Dunsmore
r...@rosslaird.com (Ross A. Laird) writes: I'd like to post one sentence from this manuscript every day as a tweet with a link back to the sentence Will this do what you need? --8---cut here---start-8--- (defun org-linkify-sentence (url) Converts a

[O] Re: Footnote sorting bug

2011-03-07 Thread Matt Lundin
Matt Lundin m...@imapmail.org writes: I traced the problem to an extra forward-line added to org-footnote-goto-local-insertion-point with commit 145109dc4a6f161e4ad826bea9cc970363649280. The following patch fixes the sorting problem in org buffers. AFAICT, it has no effect on footnote

Re: [O] Release 7.5

2011-03-07 Thread Bastien
Hi Delwood, Delwood Richardson delwo...@mac.com writes: Thanks to Bastien and all the contributors. Did anyone notice that the link on the web page still links to Org 7.4? The files linked here: Download as zip file or gzipped tar archive. are http://orgmode.org/org-7.4.zip and

[O] odt exporter: tarball?

2011-03-07 Thread Eric Abrahamsen
I've never been able to check out the repository at: http://repo.or.cz/w/org-mode/org-jambu.git Git hangs every time I try a clone or fetch. Is there a way to get a tarball snapshot of the repository as it exists now? Thanks! Eric

Re: [O] org-with-wide-buffer error

2011-03-07 Thread Kiwon Um
David Maus dm...@ictsoc.de writes: At Mon, 07 Mar 2011 17:06:53 +0100, Bastien wrote: Hi Kiwon, Kiwon Um um.ki...@gmail.com writes: This is a bug report for the latest (git) orgmode. When I call org-todo or org-agenda-todo it reports the following: Debugger entered--Lisp error:

[O] Re: Footnote sorting bug

2011-03-07 Thread Matt Lundin
Matt Lundin m...@imapmail.org writes: Matt Lundin m...@imapmail.org writes: I traced the problem to an extra forward-line added to org-footnote-goto-local-insertion-point with commit 145109dc4a6f161e4ad826bea9cc970363649280. The following patch fixes the sorting problem in org buffers.

Re: [O] odt exporter: tarball?

2011-03-07 Thread suvayu ali
On Mon, Mar 7, 2011 at 4:35 PM, Eric Abrahamsen e...@ericabrahamsen.net wrote: I've never been able to check out the repository at: http://repo.or.cz/w/org-mode/org-jambu.git Git hangs every time I try a clone or fetch. Is there a way to get a tarball snapshot of the repository as it exists

Re: [O] odt exporter: tarball?

2011-03-07 Thread Eric Abrahamsen
suvayu ali fatkasuvayu+li...@gmail.com writes: On Mon, Mar 7, 2011 at 4:35 PM, Eric Abrahamsen e...@ericabrahamsen.net wrote: I've never been able to check out the repository at: http://repo.or.cz/w/org-mode/org-jambu.git Git hangs every time I try a clone or fetch. Is there a way to get

[O] Defining capture-templates: custom and init file

2011-03-07 Thread Alan E. Davis
I would like to request advice, on how can I set up so most of my capture templates are loaded from a file (~/org/capture-templates.el in my case) and still retain the ability to define new capture templates on the fly. I want the best of both worlds: - capture-templates.el is easier for me

Re: [O] Defining capture-templates: custom and init file

2011-03-07 Thread Suvayu Ali
On Tue, 8 Mar 2011 12:17:58 +1000 Alan E. Davis lngn...@gmail.com wrote: I would like to request advice, on how can I set up so most of my capture templates are loaded from a file (~/org/capture-templates.el in my case) and still retain the ability to define new capture templates on the fly.

Re: [O] Defining capture-templates: custom and init file

2011-03-07 Thread Alan E. Davis
Hello: Suvayu: I have set the variable custom-file outside of the init file to ~/org/custom-local.el or some such, so there wouldn't be a conflict within the same file. I can delay loading of that file until after the hand-made capture templates have been loaded from ~/org/capture-templates.el .

Re: [O] Defining capture-templates: custom and init file

2011-03-07 Thread Suvayu Ali
Hi Alan, On Tue, 8 Mar 2011 16:13:34 +1000 Alan E. Davis lngn...@gmail.com wrote: I have noticed the message from within the customization interface that some variable or another was set outside of customization, and there may be unpredictable results. Wonder what that really means, though.

Re: [O] Different (setq org-export-with-section-numbers) depending on HTML or LaTeX export

2011-03-07 Thread Aankhen
On Mon, Mar 7, 2011 at 21:54, Eric S Fraga e.fr...@ucl.ac.uk wrote: Aankhen aank...@gmail.com writes: On Mon, Mar 7, 2011 at 04:37, Jakub Szypulka cubib...@googlemail.com wrote: I'm trying to hide section numbers in the HTML export, while keeping the sections in the LaTeX export. Adding

Re: [O] Re: [REGRESSION] org-html.el (targets)

2011-03-07 Thread Aankhen
On Tue, Mar 8, 2011 at 02:07, Bernt Hansen be...@norang.ca wrote: Thanks for the patch.  I still see validation errors after applying this patch.  I've posted the original test file at http://www.norang.ca/tmp/foo.html and you can click on the validation link at the bottom to see the remaining