Re: [O] Searching on gmane fails

2014-05-31 Thread Bastien
Hi Nick, Nick Dokos ndo...@gmail.com writes: I get a Forbidden error message, either from gnus or from the web. Anybody else seeing that? Yes, http://search.gmane.org is not accessible right now. I dropped a note to Lars. -- Bastien

Re: [O] LaTex export questions

2014-05-31 Thread Martin Schöön
On 28 May 2014 06:31, Alan Tyree typh...@aanet.com.au wrote: Hi Steven, You want to learn more about LaTeX, but it's not too much. I wrote a little book called Self-publishing with LyX that will help you set up the title page as well as some of your other problems. This is not a sales pitch

Re: [O] Moving footnotes

2014-05-31 Thread Nicolas Goaziou
Bastien b...@gnu.org writes: Nicolas Goaziou n.goaz...@gmail.com writes: All in all, I'm not convinced this should be a function provided in Org. Okay. Still, it's useful to have it *somewhere*. If you have a moment, could you revert the commit Done. rewrite the function with the

Re: [O] BUG in reference by ID to remote table (was Re: org babel question: reference tables in remote file)

2014-05-31 Thread William Henney
Hi Bastien Thanks for the suggestion. I'm traveling at the moment, but I'll check it out as soon as I get a chance. Will Sent from a leading brand of mobile device On 30/05/2014, at 16:44, Bastien b...@gnu.org wrote: Hi William, William Henney when...@gmail.com writes: There is

Re: [O] Moving footnotes

2014-05-31 Thread Bastien
Hi Nicolas, Nicolas Goaziou n.goaz...@gmail.com writes: Here it is. It could be prettier but I think it should get the job done. Wow, thanks! I didn't expect this to be that long... I tested it with various input files and it works fine. PS: I think it's useful to trigger the

Re: [O] Printable calendar?

2014-05-31 Thread Peter Davis
On Fri, May 30, 2014 at 01:20:21PM -0400, Nick Dokos wrote: Peter Davis p...@pfdstudio.com writes: Ok, I was able to get the column rules I want. (See below) I'm still puzzled by the right/left alignment. In the org buffer the columns appear correctly aligned, but in HTML output, the

Re: [O] Filtering org-clock-display

2014-05-31 Thread Noah Slater
I'm getting an error on HEAD now: Debugger entered--Lisp error: (void-function org-add-props) (org-add-props WARNING: No org-loaddefs.el file could be found from where org.el is loaded. nil (quote face) (quote org-warning)) (message (org-add-props WARNING: No org-loaddefs.el file could be

Re: [O] problems while editing in org-columns mode

2014-05-31 Thread Andrea Rossetti
Bastien b...@gnu.org writes: Let me know if it works for you, Hi! I tried a recent git snapshot (Fri May 30 19:28:04 2014 +0200) and performed some manual tests (1 to 5, see below). - in org-columns mode (C-c C-x C-c): - 1) PASS: org-columns-edit-value (e) updates correctly the

Re: [O] Filtering org-clock-display

2014-05-31 Thread Bastien
Noah Slater nsla...@tumbolia.org writes: I'm getting an error on HEAD now: Please run `make' or `make autoloads'. See http://orgmode.org/manual/Installation.html -- Bastien

[O] How to find the headline matching a string

2014-05-31 Thread Chris Poole
Hi all, Suppose I have a string, my first task, that I know is tagged with laptop. I want to search through the agenda files for a headline that matches this string, to be able to mark it as DONE (in an automated fashion). I can't find a function to search through for the headline --- is there

Re: [O] How to find the headline matching a string

2014-05-31 Thread Eric Abrahamsen
Chris Poole li...@chrispoole.com writes: Hi all, Suppose I have a string, my first task, that I know is tagged with laptop. I want to search through the agenda files for a headline that matches this string, to be able to mark it as DONE (in an automated fashion). I can't find a function

[O] tyuyyyjkkllkklll

2014-05-31 Thread jean-jacques Rétorré
l))l

Re: [O] An org password manager

2014-05-31 Thread Jorge A. Alfaro-Murillo
Dear Bastien, This is my first time submitting a patch, so I do not know if this is the way I am supposed to do it. Best, Jorge --- org-passwords.el: Add an org derived mode for managing passwords * contrib/lisp/org-passwords.el: new file. The file gives a mode for

Re: [O] tyuyyyjkkllkklll

2014-05-31 Thread Scot Becker
My. Thoughts. Exactly. On Sat, May 31, 2014 at 8:46 PM, jean-jacques Rétorré jj.reto...@gmail.com wrote: l))l

Re: [O] How to find the headline matching a string

2014-05-31 Thread Chris Poole
Eric Abrahamsen: the `org-map-entries' function can be given a scope of 'agenda That worked perfectly, thanks. Here's what I ended up with: (org-map-entries (lambda () (when (equal title (org-get-heading t t)) (org-entry-put (point) TODO

Re: [O] How to find the headline matching a string

2014-05-31 Thread Igor Sosa Mayor
Chris Poole li...@chrispoole.com writes: That worked perfectly, thanks. Here's what I ended up with: (org-map-entries (lambda () (when (equal title (org-get-heading t t)) (org-entry-put (point) TODO DONE))) tag 'agenda) could you maybe send a little more of the code? I would like to

[O] bug#17651: 24.3.91; Emacs hangs in Org

2014-05-31 Thread Glenn Morris
Sebastien Vauban wrote: Emacs 24.3.91.1 (of 2014-05-12) regularly hangs with Org-mode version 8.2.6 (release_8.2.6-1010-g1ca86f). Well I guess this is an Org bug, which will get more attention on the Org list. (See eg http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17484)

Re: [O] How to find the headline matching a string

2014-05-31 Thread Chris Poole
Igor Sosa Mayor: could you maybe send a little more of the code? I would like to understand how it exactly works. Sure --- it's part of a quick setup file for the GTD methodology that I'm writing. The specific function in question is here:

Re: [O] How to find the headline matching a string

2014-05-31 Thread Igor Sosa Mayor
Chris Poole li...@chrispoole.com writes: Sure --- it's part of a quick setup file for the GTD methodology that I'm writing. The specific function in question is here: interesting. Thanks for sharing the code. -- :: Igor Sosa Mayor :: joseleopoldo1...@gmail.com :: :: GnuPG: 0x1C1E2890

Re: [O] How to find the headline matching a string

2014-05-31 Thread Thorsten Jolitz
Chris Poole li...@chrispoole.com writes: Eric Abrahamsen: the `org-map-entries' function can be given a scope of 'agenda That worked perfectly, thanks. Here's what I ended up with: (org-map-entries (lambda () (when (equal title (org-get-heading t t)) (org-entry-put (point) TODO DONE)))

Re: [O] Filtering org-clock-display

2014-05-31 Thread Noah Slater
Works! Thanks! Can I pass in the range when calling it from a function? At the moment, I'm calling org-clock-display from a wrapper function that does some other things. It would be cool to configure a default range when calling it in that function. On 31 May 2014 16:48, Bastien b...@gnu.org

Re: [O] Patch for testing `org-open-at-point'

2014-05-31 Thread York Zhao
Hi Bastien, Thank you very much for implementing this. Really appreciated. So do you think it is a good idea to add my test (the patch) now for testing this? For your convenience, I've attached again in this message the same patch I had sent on April 10. Thanks, York On Sun, Apr 20, 2014 at

Re: [O] How to find the headline matching a string

2014-05-31 Thread Eric Abrahamsen
Thorsten Jolitz tjol...@gmail.com writes: Chris Poole li...@chrispoole.com writes: Eric Abrahamsen: the `org-map-entries' function can be given a scope of 'agenda That worked perfectly, thanks. Here's what I ended up with: (org-map-entries (lambda () (when (equal title (org-get-heading t

[O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Omid
Hello, I am trying to include an HTML file (say myfile.html, which has only the body) in an Org file so that upon export the contents of myfile.html are /literally/ inserted in the appropriate section of the exported HTML file. Following http://orgmode.org/manual/Include-files.html, I used

Re: [O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Nick Dokos
Omid omidl...@gmail.com writes: Hello, I am trying to include an HTML file (say myfile.html, which has only the body) in an Org file so that upon export the contents of myfile.html are /literally/ inserted in the appropriate section of the exported HTML file. Following

Re: [O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Omid
Hello Nick, Thanks for your reply. But no, src html results in the included HTML being processed by Org and wrapped in pre class=src src-html, just like if the contents of myfile.html were put in #+BEGIN_SRC html #+END_SRC Omid Sent from my Emacs On 06/01/2014 12:42 AM, Nick Dokos wrote:

[O] Hiding checked items in a checkbox list (FR?)

2014-05-31 Thread Sergio Pokrovskij
Is it possible to hide the checked items? E.g. I have a long shopping list of items I regularly buy, but for the current date I need only a dozen of them. I'd like to be able to show all the items; possibly to check all of them; then uncheck the dozen I currently need; then hide the checked

Re: [O] #+INCLUDE: myfile.html html does not include /literally/; Org processes

2014-05-31 Thread Omid
Here is a minimal example, in case someone wants to try myfile.html: p bHello, World!/b /p orgincludehtml.org: * Test #+INCLUDE: ./myfile.html html I am using Org-mode version 8.2.6 (from ELPA) and GNU Emacs 24.3.1. Omid Sent from my Emacs On 06/01/2014 12:42 AM, Nick Dokos wrote: Omid

Re: [O] Hiding checked items in a checkbox list (FR?)

2014-05-31 Thread Alexis
Sergio Pokrovskij writes: The next problem is that MobileOrg should respect the preliminary hiding done before the visit to the shop. I do not request that it hide the checked (= bought) items as well (actually I'd prefer it to leave them checked and visible; but also its hiding-on-the-fly