Gnus development mailing list
 help / color / mirror / Atom feed
* text/enriched?
@ 1998-09-14  7:27 Kai Grossjohann
  1998-09-14 12:36 ` text/enriched? Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 8+ messages in thread
From: Kai Grossjohann @ 1998-09-14  7:27 UTC (permalink / raw)


Hi,

shouldn't Gnus use the built-in enriched.el to display text/enriched
stuff?  Maybe even inline?

(As of pGnus 0.30, text/enriched is saved to a file.)

kai
-- 
OOP: object oriented programming;  OOPS: object oriented mistakes


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: text/enriched?
  1998-09-14  7:27 text/enriched? Kai Grossjohann
@ 1998-09-14 12:36 ` Lars Magne Ingebrigtsen
  1998-09-14 13:33   ` text/enriched? Colin Marquardt
  0 siblings, 1 reply; 8+ messages in thread
From: Lars Magne Ingebrigtsen @ 1998-09-14 12:36 UTC (permalink / raw)


Kai Grossjohann <grossjohann@amaunet.cs.uni-dortmund.de> writes:

> shouldn't Gnus use the built-in enriched.el to display text/enriched
> stuff?  Maybe even inline?

Yes, I think so, but I don't have any text/enriched, so it's a bit
difficult to try it out...

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: text/enriched?
  1998-09-14 12:36 ` text/enriched? Lars Magne Ingebrigtsen
@ 1998-09-14 13:33   ` Colin Marquardt
  1998-09-14 14:25     ` text/enriched? Lars Magne Ingebrigtsen
  1998-09-14 14:38     ` text/enriched? Conrad Sauerwald
  0 siblings, 2 replies; 8+ messages in thread
From: Colin Marquardt @ 1998-09-14 13:33 UTC (permalink / raw)


> Yes, I think so, but I don't have any text/enriched, so it's a bit
> difficult to try it out...

Help|Samples|Sample enriched ???


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: text/enriched?
  1998-09-14 13:33   ` text/enriched? Colin Marquardt
@ 1998-09-14 14:25     ` Lars Magne Ingebrigtsen
  1998-09-14 14:38     ` text/enriched? Conrad Sauerwald
  1 sibling, 0 replies; 8+ messages in thread
From: Lars Magne Ingebrigtsen @ 1998-09-14 14:25 UTC (permalink / raw)


Colin Marquardt <C.Marquardt@alcatel.de> writes:

> > Yes, I think so, but I don't have any text/enriched, so it's a bit
> > difficult to try it out...
> 
> Help|Samples|Sample enriched ???

I now have text/enriched samples.

-- 
(domestic pets only, the antidote for overdose, milk.)
  larsi@gnus.org * Lars Magne Ingebrigtsen


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: text/enriched?
  1998-09-14 13:33   ` text/enriched? Colin Marquardt
  1998-09-14 14:25     ` text/enriched? Lars Magne Ingebrigtsen
@ 1998-09-14 14:38     ` Conrad Sauerwald
  1998-09-14 15:45       ` text/enriched? William M. Perry
  1 sibling, 1 reply; 8+ messages in thread
From: Conrad Sauerwald @ 1998-09-14 14:38 UTC (permalink / raw)


Colin Marquardt <C.Marquardt@alcatel.de> writes:

> > Yes, I think so, but I don't have any text/enriched, so it's a bit
> > difficult to try it out...
> 
> Help|Samples|Sample enriched ???

Depending on which of the emacsen you use, for example FSF Emacs 20.3
see /usr/local/share/emacs/20.3/etc/enriched.doc

And while on topic, mm.el contains the following entry:

      ("enriched" . (("viewer" . enriched-decode-region)
	     ("test"   . (fboundp
			  'enriched-decode-region))
	     ("type"   . "text/enriched")))

which very probably needs to check for enriched-decode instead of
enriched-decode-region.
This was just patched in pgnus 0.31 (which then has text/html-like
support for inline display of text/enriched), but beware if you have
w3 installed as well and thus have two "competing" mm.el files.

-- 
Conrad Sauerwald + http://www.stack.nl/~conrad/ + The signal is frail, --CURVE
conrad@stack.nl  + finger conrad@terra.stack.nl +  an imprint of what you do.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: text/enriched?
  1998-09-14 14:38     ` text/enriched? Conrad Sauerwald
@ 1998-09-14 15:45       ` William M. Perry
  1998-09-15  7:36         ` text/enriched? Kai Grossjohann
  0 siblings, 1 reply; 8+ messages in thread
From: William M. Perry @ 1998-09-14 15:45 UTC (permalink / raw)
  Cc: ding

Conrad Sauerwald <conrad@stack.nl> writes:

> Colin Marquardt <C.Marquardt@alcatel.de> writes:
> 
> > > Yes, I think so, but I don't have any text/enriched, so it's a bit
> > > difficult to try it out...
> > 
> > Help|Samples|Sample enriched ???
> 
> Depending on which of the emacsen you use, for example FSF Emacs 20.3
> see /usr/local/share/emacs/20.3/etc/enriched.doc
> 
> And while on topic, mm.el contains the following entry:
> 
>       ("enriched" . (("viewer" . enriched-decode-region)
> 	     ("test"   . (fboundp
> 			  'enriched-decode-region))
> 	     ("type"   . "text/enriched")))
> 
> which very probably needs to check for enriched-decode instead of
> enriched-decode-region.
> This was just patched in pgnus 0.31 (which then has text/html-like
> support for inline display of text/enriched), but beware if you have
> w3 installed as well and thus have two "competing" mm.el files.

  Lars - when you feel satisfied that your changes to mm.el are settling
down, send me a copy and I'll update the Emacs/W3 version, and we can split 
it out into it's own distribution or something like that.

-Bill P.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: text/enriched?
  1998-09-14 15:45       ` text/enriched? William M. Perry
@ 1998-09-15  7:36         ` Kai Grossjohann
  1998-09-15  8:15           ` text/enriched? Conrad Sauerwald
  0 siblings, 1 reply; 8+ messages in thread
From: Kai Grossjohann @ 1998-09-15  7:36 UTC (permalink / raw)


>>>>> On 14 Sep 1998, William M Perry said:

  Bill> Lars - when you feel satisfied that your changes to mm.el are
  Bill> settling down, send me a copy and I'll update the Emacs/W3
  Bill> version, and we can split it out into it's own distribution or
  Bill> something like that.

I was being afraid that having w3 before gnus in my load-path might
clobber Lars' changes to mm.el, but then (pgnus 0.31) I found out that
Gnus does not seem to contain a mm.el.  So, has Lars dissected mm.el
and split it into several smaller files, so that there's no conflict?
Or what happened?

kai
-- 
OOP: object oriented programming;  OOPS: object oriented mistakes


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: text/enriched?
  1998-09-15  7:36         ` text/enriched? Kai Grossjohann
@ 1998-09-15  8:15           ` Conrad Sauerwald
  0 siblings, 0 replies; 8+ messages in thread
From: Conrad Sauerwald @ 1998-09-15  8:15 UTC (permalink / raw)


On Tue, Sep 15, 1998 at 09:36:07AM +0200, Kai Grossjohann wrote:
> >>>>> On 14 Sep 1998, William M Perry said:
> 
>   Bill> Lars - when you feel satisfied that your changes to mm.el are
>   Bill> settling down, send me a copy and I'll update the Emacs/W3
>   Bill> version, and we can split it out into it's own distribution or
>   Bill> something like that.
> 
> I was being afraid that having w3 before gnus in my load-path might
> clobber Lars' changes to mm.el, but then (pgnus 0.31) I found out that
> Gnus does not seem to contain a mm.el.  So, has Lars dissected mm.el
> and split it into several smaller files, so that there's no conflict?
> Or what happened?

That was my mistake, about which Lars already told me, so I'll quickly
apologise for messing up this audiences beliefs wear a guilt cloth and
repeat the reality of things:
Gnus uses mailcap.el which is based on mm.el, but since this was changed
from pgnus 0.24 to 0.25, idiot me didn't notice this happening in the
patch file and ever since that mm.el hangs around without function.
Maybe a Changelog message about obsoleted files isn't such a luxury
after all, although it might have been there and I completely ignored 
it or something ..

-- 
Conrad Sauerwald   + www.stack.nl/%7Econrad/  + The signal is frail, an  _
conrad(at)stack.nl + conrad(at)terra.stack.nl + imprint of what you do. (_URVE



^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~1998-09-15  8:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-09-14  7:27 text/enriched? Kai Grossjohann
1998-09-14 12:36 ` text/enriched? Lars Magne Ingebrigtsen
1998-09-14 13:33   ` text/enriched? Colin Marquardt
1998-09-14 14:25     ` text/enriched? Lars Magne Ingebrigtsen
1998-09-14 14:38     ` text/enriched? Conrad Sauerwald
1998-09-14 15:45       ` text/enriched? William M. Perry
1998-09-15  7:36         ` text/enriched? Kai Grossjohann
1998-09-15  8:15           ` text/enriched? Conrad Sauerwald

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 NNTP newsgroup(s).