Gnus development mailing list
 help / color / mirror / Atom feed
* [Q]: Is this a safe practice ?
@ 2004-10-11  8:51 Xavier Maillard
  2004-10-11  9:59 ` Frank Schmitt
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Xavier Maillard @ 2004-10-11  8:51 UTC (permalink / raw)


[-- Attachment #1: Type: text/plain, Size: 89 bytes --]

Hello,

I am not a charset/encoding expert at all and I would like to
know wether this:


[-- Attachment #2: Type: application/emacs-lisp, Size: 321 bytes --]

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

* Re: [Q]: Is this a safe practice ?
  2004-10-11  8:51 [Q]: Is this a safe practice ? Xavier Maillard
@ 2004-10-11  9:59 ` Frank Schmitt
  2004-10-11 11:18   ` Xavier Maillard
  2004-10-11 10:28 ` Reiner Steib
  2004-10-11 10:48 ` Matthieu Moy
  2 siblings, 1 reply; 9+ messages in thread
From: Frank Schmitt @ 2004-10-11  9:59 UTC (permalink / raw)


Xavier Maillard <zedek@gnu-rox.org> writes:

> I am not a charset/encoding expert at all and I would like to
> know wether this:
>
>   (add-to-list 'mm-charset-synonym-alist
> 	       '(iso-8859-15 . iso-8859-1)))
>
> Is a safe practice or not ? Is there any risk ?

Why do you want to do this? -15 and -1 are similar but not the same. -1
doesn't know the € while -15 does and there are other
differences. Compare http://www.kostis.net/charsets/iso8859.1.htm with
http://www.kostis.net/charsets/iso8859.15.htm

-- 
Did you ever realize how much text fits in eighty columns? If you now consider
that a signature usually consists of up to four lines, this gives you enough
space to spread a tremendous amount of information with your messages. So seize
this opportunity and don't waste your signature with bullshit nobody will read.




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

* Re: [Q]: Is this a safe practice ?
  2004-10-11  8:51 [Q]: Is this a safe practice ? Xavier Maillard
  2004-10-11  9:59 ` Frank Schmitt
@ 2004-10-11 10:28 ` Reiner Steib
  2004-10-11 20:45   ` Xavier Maillard
  2004-10-11 10:48 ` Matthieu Moy
  2 siblings, 1 reply; 9+ messages in thread
From: Reiner Steib @ 2004-10-11 10:28 UTC (permalink / raw)


On Mon, Oct 11 2004, Xavier Maillard wrote:

> I am not a charset/encoding expert at all and I would like to
> know wether this:
>   (add-to-list 'mm-charset-synonym-alist
> 	       '(iso-8859-15 . iso-8859-1)))
>
> Is a safe practice or not ? Is there any risk ?

It's simply incorrect.  Especially for French the oe/OE ligatures
(œ/Œ) are relevant.  See e.g.
<URL:http://www.cs.tut.fi/~jkorpela/latin9.html>.

BTW, hiding text in `application/emacs-lisp' attachment is also not a
good idea.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/




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

* Re: [Q]: Is this a safe practice ?
  2004-10-11  8:51 [Q]: Is this a safe practice ? Xavier Maillard
  2004-10-11  9:59 ` Frank Schmitt
  2004-10-11 10:28 ` Reiner Steib
@ 2004-10-11 10:48 ` Matthieu Moy
  2004-10-11 11:20   ` Xavier Maillard
  2 siblings, 1 reply; 9+ messages in thread
From: Matthieu Moy @ 2004-10-11 10:48 UTC (permalink / raw)


Xavier Maillard <zedek@gnu-rox.org> writes:

> Hello,

Salut,

>   (add-to-list 'mm-charset-synonym-alist
> 	       '(iso-8859-15 . iso-8859-1)))

Isn't that the best way to make sure you will _always_ have problems
with the euro symbol? (A message with the euro symbol, encoded in
iso-8859-15, will be displayed in iso-8859-1, and you'll get the ¤
symbol instead)

-- 
Matthieu



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

* Re: [Q]: Is this a safe practice ?
  2004-10-11  9:59 ` Frank Schmitt
@ 2004-10-11 11:18   ` Xavier Maillard
  0 siblings, 0 replies; 9+ messages in thread
From: Xavier Maillard @ 2004-10-11 11:18 UTC (permalink / raw)


On 11 oct 2004, Frank Schmitt wrote:

> Xavier Maillard <zedek@gnu-rox.org> writes:
> 
> > I am not a charset/encoding expert at all and I would like to
> > know wether this:
> > 
> > (add-to-list 'mm-charset-synonym-alist
> > 	       '(iso-8859-15 . iso-8859-1)))
> > 
> > Is a safe practice or not ? Is there any risk ?
> 
> Why do you want to do this? -15 and -1 are similar but not the

Was just to try to "unify" each other but you are right, there
are differences between them.

> same. -1 doesn't know the € while -15 does and there are other
> differences. Compare
> http://www.kostis.net/charsets/iso8859.1.htm with
> http://www.kostis.net/charsets/iso8859.15.htm

Thank you.
-- 
"sometimes i feel like we're making emacs better and better because we don't 
 know what to do with emacs once it is finished."

    -- AlexSchroeder on #emacs @OPN




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

* Re: [Q]: Is this a safe practice ?
  2004-10-11 10:48 ` Matthieu Moy
@ 2004-10-11 11:20   ` Xavier Maillard
  0 siblings, 0 replies; 9+ messages in thread
From: Xavier Maillard @ 2004-10-11 11:20 UTC (permalink / raw)


On 11 oct 2004, Matthieu Moy wrote:

> Xavier Maillard <zedek@gnu-rox.org> writes:
> 
> > Hello,
> 
> Salut,
> 
> > (add-to-list 'mm-charset-synonym-alist
> > 	       '(iso-8859-15 . iso-8859-1)))
> 
> Isn't that the best way to make sure you will _always_ have
> problems with the euro symbol? (A message with the euro symbol,
> encoded in iso-8859-15, will be displayed in iso-8859-1, and
> you'll get the ¤ symbol instead)

Yes. I didn't think of this problem since I always type 'EUR'.

I will remove that.

Thank you.
-- 
Xavier Maillard

main(){printf(&unix["\021%six\012\0"],(unix)["have"]+"fun"-0x60);}




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

* Re: [Q]: Is this a safe practice ?
  2004-10-11 10:28 ` Reiner Steib
@ 2004-10-11 20:45   ` Xavier Maillard
  2004-10-11 21:35     ` Reiner Steib
  0 siblings, 1 reply; 9+ messages in thread
From: Xavier Maillard @ 2004-10-11 20:45 UTC (permalink / raw)


On 11 oct 2004, Reiner Steib wrote:

> On Mon, Oct 11 2004, Xavier Maillard wrote:
> 
> > I am not a charset/encoding expert at all and I would like to
> > know wether this:
> > (add-to-list 'mm-charset-synonym-alist
> > 	       '(iso-8859-15 . iso-8859-1)))
> > 
> > Is a safe practice or not ? Is there any risk ?
> 
> It's simply incorrect. Especially for French the oe/OE
> ligatures (œ/Œ) are relevant. See e.g.
> <URL:http://www.cs.tut.fi/~jkorpela/latin9.html>.

Ah yeah, I see. Thank you.
 
> BTW, hiding text in `application/emacs-lisp' attachment is also
> not a good idea.

What do you mean ?

-- 
GNUSFR.ORG                       http://gnusfr.org/
EMACSFR.ORG                      http://emacsfr.org/
Xavier Maillard                  Tel: +33 6 68 04 64 37




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

* Re: [Q]: Is this a safe practice ?
  2004-10-11 20:45   ` Xavier Maillard
@ 2004-10-11 21:35     ` Reiner Steib
  2004-10-12  5:34       ` Xavier Maillard
  0 siblings, 1 reply; 9+ messages in thread
From: Reiner Steib @ 2004-10-11 21:35 UTC (permalink / raw)


On Mon, Oct 11 2004, Xavier Maillard wrote:

> On 11 oct 2004, Reiner Steib wrote:
[...]
>> BTW, hiding text in `application/emacs-lisp' attachment is also
>> not a good idea.
>
> What do you mean ?

Everything starting from "add-to-list" is in the
application/emacs-lisp part, including "Is a safe practice ...".
Despite of "Content-Disposition: inline", it might be displayed as
attachment depending on the Client or the setting (e.g. buttonized in
Gnus).

Some clients like kmail even display a second and more text/plain
parts as attachments.  When sending attachments to non-Gnus users, I
usually put the attachments at the bottom of the message.

Bye, Reiner.
-- 
       ,,,
      (o o)
---ooO-(_)-Ooo---  |  PGP key available  |  http://rsteib.home.pages.de/




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

* Re: [Q]: Is this a safe practice ?
  2004-10-11 21:35     ` Reiner Steib
@ 2004-10-12  5:34       ` Xavier Maillard
  0 siblings, 0 replies; 9+ messages in thread
From: Xavier Maillard @ 2004-10-12  5:34 UTC (permalink / raw)


On 11 oct 2004, Reiner Steib wrote:

> On Mon, Oct 11 2004, Xavier Maillard wrote:
> 
> > On 11 oct 2004, Reiner Steib wrote:
> [...]
> > > BTW, hiding text in `application/emacs-lisp' attachment is
> > > also not a good idea.
> > 
> > What do you mean ?
> 
> Everything starting from "add-to-list" is in the
> application/emacs-lisp part, including "Is a safe practice
> ...". Despite of "Content-Disposition: inline", it might be
> displayed as attachment depending on the Client or the setting
> (e.g. buttonized in Gnus).
> 
> Some clients like kmail even display a second and more
> text/plain parts as attachments. When sending attachments to
> non-Gnus users, I usually put the attachments at the bottom of
> the message.

Oh ok this is something new to me and I am still learning :/

Thank you.
-- 
Xavier Maillard

main(){printf(&unix["\021%six\012\0"],(unix)["have"]+"fun"-0x60);}




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

end of thread, other threads:[~2004-10-12  5:34 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-11  8:51 [Q]: Is this a safe practice ? Xavier Maillard
2004-10-11  9:59 ` Frank Schmitt
2004-10-11 11:18   ` Xavier Maillard
2004-10-11 10:28 ` Reiner Steib
2004-10-11 20:45   ` Xavier Maillard
2004-10-11 21:35     ` Reiner Steib
2004-10-12  5:34       ` Xavier Maillard
2004-10-11 10:48 ` Matthieu Moy
2004-10-11 11:20   ` Xavier Maillard

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).