[Orgmode] Slight fix to update-org.sh

2009-02-10 Thread Tom Breton (Tehom)
minor changes to make it do that and to gunzip the archive. I've attached it to this message. Tom Breton (Tehom) update-org.sh Description: Bourne shell script ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-11 Thread Tom Breton (Tehom)
Hi Tom, maybe you can educate me: I have never understood what the # does in code like the one you have here. You are using it, so maybe you know? - Carsten Here, it's #' that it of interest, not # alone. At the most direct level, it quotes the symbol with `function' instead

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-11 Thread Tom Breton (Tehom)
On Feb 11, 2009, at 2:08 AM, Tom Breton (Tehom) wrote: This bug is simple. In Setting it all up at the end of org- choose.el, in 6.22b a quote got introduced before progn. That's all. With that quote, it evaluated a quoted form and did nothing. I'd send a patch, but ISTM it's easier

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-11 Thread Tom Breton (Tehom)
nicholas.do...@hp.com wrote: Tom Breton (Tehom) te...@panix.com wrote: (let* ((x 1)) (eval-after-load 'simple (setq x 2)) x) =3D 2 (let* ((x 1)) (eval-after-load 'simple '(setq x 2)) x) =3D 1 Are you sure about this? My understanding of this differs from

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-11 Thread Tom Breton (Tehom)
On Feb 11, 2009, at 2:08 AM, Tom Breton (Tehom) wrote: (let* ((x 1)) (eval-after-load 'simple (setq x 2)) x) = 2 (let* ((x 1)) (eval-after-load 'simple '(setq x 2)) x) = 1 In fact, I am getting 2 in both cases!??? Do you really get 1 for the second??? Yes

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Tom Breton (Tehom)
On Wed, Feb 11, 2009 at 4:18 AM, Tom Breton (Tehom) wrote: [...] I couldn't reproduce this. Is this on the same test file as before? Sorry for the delay in reply, Tom. I reproduce the situation below: First the test file. --8---cut here---start-8

Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Tom Breton (Tehom)
Tom Breton (Tehom) te...@panix.com wrote: On Feb 11, 2009, at 2:08 AM, Tom Breton (Tehom) wrote: (let* ((x 1)) (eval-after-load 'simple (setq x 2)) x) =3D 2 (let* ((x 1)) (eval-after-load 'simple '(setq x 2)) x) =3D 1 In fact, I am getting 2

Patch Re: [Orgmode] Docs submitted (Was Re: Advice sought on managing decision alternatives.)

2009-02-12 Thread Tom Breton (Tehom)
. This is admittedly a quick and dirty fix, if it even works. Tom Breton (Tehom) org-choose.el.diff Description: Binary data ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http

[Orgmode] Re: Org-choose

2009-02-13 Thread Tom Breton (Tehom)
you want to use org-split-string That just might be it! I have changed it to org-split-string. A patch is attached. I can't detect any difference - all tests pass either way - so I hope you will tell me whether it works now. Hi Tom, first, I did apply your patch - even though I do

[Orgmode] Now with patch (Was Re: Org-choose)

2009-02-13 Thread Tom Breton (Tehom)
The previous message would have worked better if I had actually remembered to attach the patch. Here it is. Tom Breton (Tehom) org-choose.el.diff Description: Binary data ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies

[Orgmode] Re: Org-choose

2009-02-13 Thread Tom Breton (Tehom)
Hi Tom, thanks, this patch seems to fix at least the problem I was having. Glad to hear it! I see that you now require 'cl also during runtime, which is probably (?) because you are also calling some functions, not only macros? Yes. The configuration difficulties made me think about

[Orgmode] org-choose bugfix

2009-02-23 Thread Tom Breton (Tehom)
Here is a bugfix for org-choose that I've been meaning to post. The bug was this: When looking for alternatives, it looks at the whole tree, not just the immediate children. Now fixed. Patch is attached. Tom Breton (Tehom) org-choose.el.diff Description: Binary data

Re: [Orgmode] org-choose bugfix - whoops

2009-04-08 Thread Tom Breton (Tehom)
the real bug - properly now, I hope! - and attached a patch. Tom Breton (Tehom) org-choose.el.diff Description: Binary data ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org

[Orgmode] org-html link building diff

2010-04-18 Thread Tom Breton (Tehom)
be done - it's only used by some of the cond branches, the others are unchanged. But publish early and often, so here it is. I will append the changes as a diff, since I can't push to the org repository (fatal: The remote end hung up unexpectedly) Tom Breton (Tehom) diff --git a/lisp/org

[Orgmode] Tiny bug in org-html

2010-04-18 Thread Tom Breton (Tehom)
', so the bug may not have been obvious. Tom Breton (Tehom) ___ Emacs-orgmode mailing list Please use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] And a question about org-html

2010-04-18 Thread Tom Breton (Tehom)
different way, but that doesn't seem as good as a real image link, and it seems to duplicate functionality that the cond statement has (and now in my new stuff, that `org-html-make-link' always handles) Tom Breton (Tehom) ___ Emacs-orgmode mailing

Re: [Orgmode] org-html link building diff

2010-04-27 Thread Tom Breton (Tehom)
? * How do you feel about url-parse? It's bundled with emacs, builds and destructures urls. IMO we're not at the stage where it provides more help than the extra work it requires yet. Tom Breton (Tehom) ___ Emacs-orgmode mailing list

Re: [Orgmode] org-html link building diff

2010-04-29 Thread Tom Breton (Tehom)
Hi Tom, On Apr 28, 2010, at 5:01 AM, Tom Breton (Tehom) wrote: The changes are essentially made and pass my tests now, there's mostly housekeeping now: pull, merge, push. Yes. Send me your name on repo.or.cz and I'll add push for you. Please create your own branch and stay

Re: [Orgmode] org-html link building diff

2010-05-15 Thread Tom Breton (Tehom)
Hi Tom, what is the status of this development? Ready for prime time? If yes, can you please rebase to master and send me the pointer to the branch again? I believe it is ready, though I haven't heard any feedback. I pushed the changes on about the 4th of may. Or is there still stuff

Re: [Orgmode] org-html link building diff

2010-05-17 Thread Tom Breton (Tehom)
the testing directory. But then what happens for any future fixes? Seems like each time I'd have to rebase that branch and pick thru changes and make it discard each change that deals with testing/. It seems hard to maintain. Tom Breton (Tehom

[Orgmode] Test-file naming conventions - mine and suggested for org

2010-05-17 Thread Tom Breton (Tehom)
document considering the alternatives and chose this as best. But it's young enough that it could be changed, were strong arguments made towards some alternative. Tom Breton (Tehom) ___ Emacs-orgmode mailing list Please use `Reply All' to send

[Orgmode] Proposal: Emtest as tester

2010-05-24 Thread Tom Breton (Tehom)
ID, and wants it to be the correct version. So git insulates you just a little bit, at the cost of having to deal with an additional repository. So I'm thinking I'd just include it literally and if that proves hard to maintain then we still have the other option. Tom

[Orgmode] Re: Proposal: Emtest as tester

2010-05-27 Thread Tom Breton (Tehom)
Tom Breton (Tehom) te...@panix.com writes: At Carsten's request, I am proposing emtest as the tester for org-mode. I would like to hear if there are any objections or questions. Hi Tom, My googling didn't manage to find emtest -- where does the code live at the moment? At the moment

Re: [Orgmode] Proposal: Emtest as tester

2010-05-27 Thread Tom Breton (Tehom)
Hi Tom, [...] I made an attempt earlier to propose a testing framework and wrote some thoughts in an email thread: http://www.mail-archive.com/emacs-orgmode@gnu.org/msg22558.html I read that. Interesting. Would your proposal cover my example-based approach? How hard would

[Orgmode] org-stow (Proof of concept)

2011-01-14 Thread Tom Breton (Tehom)
dblocks to mirror notes. They are automatically inserted by org-stow, and their dynamic contents is essentially copied from the notes. Any interest in trying this out? I can push it if anyone else wants to try it out. Tom Breton (Tehom

[Orgmode] Blogging from org-mode

2011-01-16 Thread Tom Breton (Tehom)
/org2blog.git Both respect the normal export options (#+TITLE: etc) but other than that the approaches are fairly different. Please tell me if I've missed any other org-based blogging software (other than the blog hosting software which is a different category). Tom Breton (Tehom

Re: [Orgmode] Blogging from org-mode

2011-01-16 Thread Tom Breton (Tehom)
On 2011-01-16, Tom Breton (Tehom) te...@panix.com wrote: Please tell me if I've missed any other org-based blogging software (other than the blog hosting software which is a different category). Right, there are hosted blogs (like Blogger) and self-hosted blogs (where you run the software

Re: Unable to follow gnus links

2021-10-03 Thread Tom Ed White
Ihor Radchenko writes: > Tom Ed White writes: > >> Following gnus links in org fails with the message: >> >> funcall: Wrong number of arguments: ((t) (path _) "Follow the Gnus >> message or folder link specified by PATH." (if (string-match >> &qu

Re: Unable to follow gnus links

2021-10-04 Thread Tom Ed White
Ihor Radchenko writes: > Tom Ed White writes: > >> I was able to fix the problem for the time being by changing the >> arguments to: >> >> (defun org-gnus-open (path _) >> >> The keystroke I use is C-c C-o, which runs org-open-at-point which is i

Unable to follow gnus links

2021-09-27 Thread Tom Ed White
Following gnus links in org fails with the message: funcall: Wrong number of arguments: ((t) (path _) "Follow the Gnus message or folder link specified by PATH." (if (string-match "\\`\\([^#]+\\)\\(#\\(.*\\)\\)?" path) nil (error "Error in Gnus link %S" path)) (let ((group

<    1   2   3   4   5   6