[Orgmode] Re: Please test links

2008-03-16 Thread Thomas Baumann
tested ok: mhe, bbdb, info ___ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[Orgmode] Re: Please test links

2008-03-16 Thread Tokuya Kameshima
Hi Carsten, I checked org-wl.el and it works fine. BTW, I have another implementation of org-wl.el. Is it possible to merge my version to the git? The differences between git version and mine are: - Integrated `org-wl-open' function into `org-wl-open'. - org-wl-store-link: If the message on

[Orgmode] [PATCH 1/5] Hide drawers after displaying an entry using org-clock-goto.

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] --- org.el |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/org.el b/org.el index 4fe79d7..8fe8edd 100644 --- a/org.el +++ b/org.el @@ -18715,6 +18715,7 @@ If there is no running clock, throw an error, unless FAIL-QUIETLY is set.

[Orgmode] [PATCH 0/5] Various patches

2008-03-16 Thread James TD Smith
The following series implements... --- James TD Smith (5): Fix the X clipboard handling so it works properly, and so it works in XEmacs. Add some new % expansions for remember templates for inserting clipboard values, and for inserting links using the clipboard contents.

[Orgmode] [PATCH 2/5] Add a way to set a user-defined function to generate descriptions for links.

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] Below is an example which uses w3m to retrieve the titles of web pages to use as link descriptions. (require 'w3m) (defun make-link-description (link desc) Link description generator for orgmode (cond ((string-match https?: link)

[Orgmode] [PATCH 3/5] Some improvements to org-table-export

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] Specify the file to export to as parameter or property Use the export mechanisms from orgtbl instead of the simple export. Specify the table output format in property. --- org.el | 91 +--- 1

[Orgmode] [PATCH 5/5] clipboard handling in remember templats

2008-03-16 Thread James TD Smith
From: James TD Smith [EMAIL PROTECTED] Fix the X clipboard handling so it works properly, and so it works in XEmacs,and add a new % expansion for adding links. This patch reverts the %c expansion to its original function (head of kill ring), and adds three new % expansions as follows: %x -

Re: [Orgmode] [PATCH 4/5] Various patches

2008-03-16 Thread James TD Smith
One of my patches [4/5] appears to have gone missing. I've attatched it to this email. James Add a new sort option, which sorts items by todo keyword in the order of the From: James TD Smith [EMAIL PROTECTED] todo sequence. This is a somewhat simple implementation which just uses the position

[Orgmode] [PATCH 4/5] Add a new sort option, which sorts items by todo keyword

2008-03-16 Thread James TD Smith
This is a somewhat simple implementation which just uses the position of the keyword in org-todo-keywords-1, so if you have multiple sequences containing the same todo keyword you may not get the ordering you expect. --- org.el |7 +-- 1 files changed, 5 insertions(+), 2 deletions(-)