* Better links to usenet articles
@ 2008-11-13 19:51 Tassilo Horn
2008-11-14 7:23 ` Carsten Dominik
0 siblings, 1 reply; 7+ messages in thread
From: Tassilo Horn @ 2008-11-13 19:51 UTC (permalink / raw)
To: emacs-orgmode
Hi all,
I want to propose 2 things concerning the option
org-usenet-links-prefer-google.
1. I would be nice if that feature was available for Gmane articles,
too.
2. Articles which have X-No-Archive set to yes cannot be looked up at
google, neither by message id nor with keywords. It would be good if
org-remember creates only web links that can be followed and fall
back to usual links if X-No-Archive is set.
Here's an example to an article in comp.emacs which cannot be followed:
[[http://groups.google.com/groups%3Fas_umsgid%3D%3Cm3hc6cl3vp.fsf%40home.sweet.home%3E][Email
from Myriam Abramson: Ant and emacs]]
Bye,
Tassilo
--
The glass is neither half-full nor half-empty: it's twice as big as it
needs to be.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Better links to usenet articles
2008-11-13 19:51 Better links to usenet articles Tassilo Horn
@ 2008-11-14 7:23 ` Carsten Dominik
2008-11-14 9:03 ` Tassilo Horn
0 siblings, 1 reply; 7+ messages in thread
From: Carsten Dominik @ 2008-11-14 7:23 UTC (permalink / raw)
To: Tassilo Horn; +Cc: emacs-orgmode
Does anyone know the magic spell to check for this header field in a
gnus article?
- Carsten
On Nov 13, 2008, at 8:51 PM, Tassilo Horn wrote:
> Hi all,
>
> I want to propose 2 things concerning the option
> org-usenet-links-prefer-google.
>
> 1. I would be nice if that feature was available for Gmane articles,
> too.
>
> 2. Articles which have X-No-Archive set to yes cannot be looked up at
> google, neither by message id nor with keywords. It would be good
> if
> org-remember creates only web links that can be followed and fall
> back to usual links if X-No-Archive is set.
>
> Here's an example to an article in comp.emacs which cannot be
> followed:
>
> [[http://groups.google.com/groups%3Fas_umsgid%3D%3Cm3hc6cl3vp.fsf%40home.sweet.home%3E
> ][Email
> from Myriam Abramson: Ant and emacs]]
>
> Bye,
> Tassilo
> --
> The glass is neither half-full nor half-empty: it's twice as big as it
> needs to be.
>
>
>
> _______________________________________________
> 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
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Better links to usenet articles
2008-11-14 7:23 ` Carsten Dominik
@ 2008-11-14 9:03 ` Tassilo Horn
2008-11-14 9:09 ` Tassilo Horn
0 siblings, 1 reply; 7+ messages in thread
From: Tassilo Horn @ 2008-11-14 9:03 UTC (permalink / raw)
To: Carsten Dominik; +Cc: emacs-orgmode
Carsten Dominik <dominik@science.uva.nl> writes:
Hi Carsten,
> Does anyone know the magic spell to check for this header field in a
> gnus article?
That works for me:
--8<---------------cut here---------------start------------->8---
(with-current-buffer gnus-article-buffer
(save-excursion
(gnus-summary-toggle-header)
(goto-char (point-min))
(let ((str (mail-header 'x-no-archive (mail-header-extract))))
(when str
(with-temp-buffer
(insert str)
(buffer-substring-no-properties (point-min) (point-max)))))))
--8<---------------cut here---------------end--------------->8---
It returns the value of that header as string or nil if there's no such
header at all.
Bye,
Tassilo
--
The glass is neither half-full nor half-empty: it's twice as big as it
needs to be.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Better links to usenet articles
2008-11-14 9:03 ` Tassilo Horn
@ 2008-11-14 9:09 ` Tassilo Horn
2008-11-16 21:30 ` Carsten Dominik
0 siblings, 1 reply; 7+ messages in thread
From: Tassilo Horn @ 2008-11-14 9:09 UTC (permalink / raw)
To: Carsten Dominik; +Cc: emacs-orgmode
Tassilo Horn <tassilo@member.fsf.org> writes:
Ups, please correct that one line.
> --8<---------------cut here---------------start------------->8---
> (with-current-buffer gnus-article-buffer
> (save-excursion
> (gnus-summary-toggle-header 1)
^^^
> (goto-char (point-min))
> (let ((str (mail-header 'x-no-archive (mail-header-extract))))
> (when str
> (with-temp-buffer
> (insert str)
> (buffer-substring-no-properties (point-min) (point-max)))))))
> --8<---------------cut here---------------end--------------->8---
Bye,
Tassilo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Better links to usenet articles
2008-11-14 9:09 ` Tassilo Horn
@ 2008-11-16 21:30 ` Carsten Dominik
2008-11-16 21:41 ` Tassilo Horn
0 siblings, 1 reply; 7+ messages in thread
From: Carsten Dominik @ 2008-11-16 21:30 UTC (permalink / raw)
To: Tassilo Horn; +Cc: emacs-orgmode
Hi Tassilo,
is there no way to do this without having to show the headers? Seems
to be unnecessary overhead...
Sorry for being picky, thanks for looking into this.
- Carsten
On Nov 14, 2008, at 10:09 AM, Tassilo Horn wrote:
> Tassilo Horn <tassilo@member.fsf.org> writes:
>
> Ups, please correct that one line.
>
>> --8<---------------cut here---------------start------------->8---
>> (with-current-buffer gnus-article-buffer
>> (save-excursion
>> (gnus-summary-toggle-header 1)
> ^^^
>> (goto-char (point-min))
>> (let ((str (mail-header 'x-no-archive (mail-header-extract))))
>> (when str
>> (with-temp-buffer
>> (insert str)
>> (buffer-substring-no-properties (point-min) (point-max)))))))
>> --8<---------------cut here---------------end--------------->8---
>
> Bye,
> Tassilo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Better links to usenet articles
2008-11-16 21:30 ` Carsten Dominik
@ 2008-11-16 21:41 ` Tassilo Horn
2008-11-17 7:08 ` Carsten Dominik
0 siblings, 1 reply; 7+ messages in thread
From: Tassilo Horn @ 2008-11-16 21:41 UTC (permalink / raw)
To: Carsten Dominik; +Cc: emacs-orgmode
Carsten Dominik <dominik@science.uva.nl> writes:
Hi Carsten,
> is there no way to do this without having to show the headers? Seems
> to be unnecessary overhead...
I'm not sure. Could you please point me to the location where org
creates the link, then I'll try to figure it out.
> Sorry for being picky, thanks for looking into this.
It was my wish, so I'm in a tight spot.
Bye,
Tassilo
>>> --8<---------------cut here---------------start------------->8---
>>> (with-current-buffer gnus-article-buffer
>>> (save-excursion
>>> (gnus-summary-toggle-header 1)
>> ^^^
>>> (goto-char (point-min))
>>> (let ((str (mail-header 'x-no-archive (mail-header-extract))))
>>> (when str
>>> (with-temp-buffer
>>> (insert str)
>>> (buffer-substring-no-properties (point-min) (point-max)))))))
>>> --8<---------------cut here---------------end--------------->8---
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Better links to usenet articles
2008-11-16 21:41 ` Tassilo Horn
@ 2008-11-17 7:08 ` Carsten Dominik
0 siblings, 0 replies; 7+ messages in thread
From: Carsten Dominik @ 2008-11-17 7:08 UTC (permalink / raw)
To: Tassilo Horn; +Cc: emacs-orgmode
On Nov 16, 2008, at 10:41 PM, Tassilo Horn wrote:
> Carsten Dominik <dominik@science.uva.nl> writes:
>
> Hi Carsten,
>
>> is there no way to do this without having to show the headers? Seems
>> to be unnecessary overhead...
>
> I'm not sure. Could you please point me to the location where org
> creates the link, then I'll try to figure it out.
Hi Tassilo,
this happens in org-gnus-store-link, defined in org-gnus.el.
- Carsten
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2008-11-17 7:46 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-13 19:51 Better links to usenet articles Tassilo Horn
2008-11-14 7:23 ` Carsten Dominik
2008-11-14 9:03 ` Tassilo Horn
2008-11-14 9:09 ` Tassilo Horn
2008-11-16 21:30 ` Carsten Dominik
2008-11-16 21:41 ` Tassilo Horn
2008-11-17 7:08 ` Carsten Dominik
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).