Gnus development mailing list
 help / color / mirror / Atom feed
* Re: SCORE doesn't work in Gnus
       [not found] ` <199911131913.DAA14801@mercury.starnet.gov.sg>
@ 1999-11-13 19:53   ` Jan Vroonhof
  1999-11-13 20:05     ` Simon Josefsson
  1999-11-13 20:37     ` Jody M. Klymak
  0 siblings, 2 replies; 7+ messages in thread
From: Jan Vroonhof @ 1999-11-13 19:53 UTC (permalink / raw)
  Cc: xemacs-nt, ding

nicene@bigfoot.com (Andie) writes:

> Windows doesn't permit files with ":" in the filename and the score
> file for foreign servers contains the character. As a result, whenever 
> Gnus tries to save score customisation for a foreign group, it
> hangs. Emacs for Win32 doesn't have the problem as the score file uses 
> "_" instead of ":".

Hmmm. This seems more like a gnus problem to me. Do you mean that
NTEmacs, mangles filenames automatically? From what I can see gnus
doesn't seem to use any special code for NTEmacs here.

Jan


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

* Re: SCORE doesn't work in Gnus
  1999-11-13 19:53   ` SCORE doesn't work in Gnus Jan Vroonhof
@ 1999-11-13 20:05     ` Simon Josefsson
  1999-11-14  2:27       ` Craig Lanning
       [not found]       ` <382E6876.5D9DBDE6@bigfoot.com>
  1999-11-13 20:37     ` Jody M. Klymak
  1 sibling, 2 replies; 7+ messages in thread
From: Simon Josefsson @ 1999-11-13 20:05 UTC (permalink / raw)
  Cc: Andie, xemacs-nt, ding

Jan Vroonhof <vroonhof@math.ethz.ch> writes:

> nicene@bigfoot.com (Andie) writes:
> 
> > Windows doesn't permit files with ":" in the filename and the score
> > file for foreign servers contains the character. As a result, whenever 
> > Gnus tries to save score customisation for a foreign group, it
> > hangs. Emacs for Win32 doesn't have the problem as the score file uses 
> > "_" instead of ":".
> 
> Hmmm. This seems more like a gnus problem to me. Do you mean that
> NTEmacs, mangles filenames automatically? From what I can see gnus
> doesn't seem to use any special code for NTEmacs here.

If Gnus is used under Win32 this is required:

(setq nnheader-file-name-translation-alist '((?: . ?_)
                                             (?+ . ?-)))

OTOH this should be the default for theese systems -- so make sure the
variable contain the proper value.

The check is

        (string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type))

would that evaluate to true on a Windows 95/98 system, I wonder?


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

* Re: SCORE doesn't work in Gnus
  1999-11-13 19:53   ` SCORE doesn't work in Gnus Jan Vroonhof
  1999-11-13 20:05     ` Simon Josefsson
@ 1999-11-13 20:37     ` Jody M. Klymak
  1 sibling, 0 replies; 7+ messages in thread
From: Jody M. Klymak @ 1999-11-13 20:37 UTC (permalink / raw)
  Cc: Andie, xemacs-nt, ding


Hmmm, I wonder if this is why gnus would hang for me in certain groups
when using XEmacs/NT?  Gnus hanging up under Xemacs/NT is the main
reason I'm not using XEmacs/NT right now.  Perhaps its worth another
look....

Cheers,  Jody

>>>>> "JV" == Jan Vroonhof <vroonhof@math.ethz.ch> writes:

    JV> nicene@bigfoot.com (Andie) writes:
    >> Windows doesn't permit files with ":" in the filename and the
    >> score file for foreign servers contains the character. As a
    >> result, whenever Gnus tries to save score customisation for a
    >> foreign group, it hangs. Emacs for Win32 doesn't have the
    >> problem as the score file uses "_" instead of ":".

    JV> Hmmm. This seems more like a gnus problem to me. Do you mean
    JV> that NTEmacs, mangles filenames automatically? From what I can
    JV> see gnus doesn't seem to use any special code for NTEmacs
    JV> here.

    JV> Jan

-- 
Jody Klymak                         APL/School of Oceanography,
Doctoral Candidate                  University of Washington
mailto:jklymak@apl.washington.edu   (206)-685-9080
http://www.ocean.washington.edu/people/grads/jklymak/



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

* Re: SCORE doesn't work in Gnus
  1999-11-13 20:05     ` Simon Josefsson
@ 1999-11-14  2:27       ` Craig Lanning
  1999-11-14 11:58         ` Per Abrahamsen
       [not found]       ` <382E6876.5D9DBDE6@bigfoot.com>
  1 sibling, 1 reply; 7+ messages in thread
From: Craig Lanning @ 1999-11-14  2:27 UTC (permalink / raw)
  Cc: Jan Vroonhof, Andie, xemacs-nt, ding

At 09:05 PM 11/13/99 +0100, Simon Josefsson wrote:
>Jan Vroonhof <vroonhof@math.ethz.ch> writes:
>
>> nicene@bigfoot.com (Andie) writes:
>> 
>> > Windows doesn't permit files with ":" in the filename and the score
>> > file for foreign servers contains the character. As a result, whenever 
>> > Gnus tries to save score customisation for a foreign group, it
>> > hangs. Emacs for Win32 doesn't have the problem as the score file uses 
>> > "_" instead of ":".
>> 
>> Hmmm. This seems more like a gnus problem to me. Do you mean that
>> NTEmacs, mangles filenames automatically? From what I can see gnus
>> doesn't seem to use any special code for NTEmacs here.
>
>If Gnus is used under Win32 this is required:
>
>(setq nnheader-file-name-translation-alist '((?: . ?_)
>                                             (?+ . ?-)))
>
>OTOH this should be the default for theese systems -- so make sure the
>variable contain the proper value.
>
>The check is
>
>        (string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type))
>
>would that evaluate to true on a Windows 95/98 system, I wonder?

On Win98 mingw32 build, XEmacs 21.2 b19 (from CVS):

(string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type))
0
(symbol-name system-type)
"windows-nt"



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

* Re: SCORE doesn't work in Gnus
  1999-11-14  2:27       ` Craig Lanning
@ 1999-11-14 11:58         ` Per Abrahamsen
  1999-11-15 19:37           ` Lars Magne Ingebrigtsen
  0 siblings, 1 reply; 7+ messages in thread
From: Per Abrahamsen @ 1999-11-14 11:58 UTC (permalink / raw)


Craig Lanning <CraigL@DyCon.com> writes:

> On Win98 mingw32 build, XEmacs 21.2 b19 (from CVS):
> 
> (string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type))
> 0
> (symbol-name system-type)
> "windows-nt"

On NT cygwin build, XEmacs 21.0 (From CygWIN 1.0 CD).

(string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type))
==> nil
(symbol-name system-type)
==> "cygwin32"


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

* Re: SCORE doesn't work in Gnus
       [not found]       ` <382E6876.5D9DBDE6@bigfoot.com>
@ 1999-11-14 23:47         ` Shenghuo ZHU
  0 siblings, 0 replies; 7+ messages in thread
From: Shenghuo ZHU @ 1999-11-14 23:47 UTC (permalink / raw)


>>>>> "Andie" == Andie  <nicene@bigfoot.com> writes:


[...]

>> If Gnus is used under Win32 this is required:
>> 
>> (setq nnheader-file-name-translation-alist '((?: . ?_)
>> (?+ . ?-)))
>> 

Andie> Tried this but it doesn't solve the problem. Rescoring the
Andie> buffer would most definitely hang XEmacs/Win32.

There is a patch solve SCORE file name problem in CVS (0.99-pre).

-- 
Shenghuo



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

* Re: SCORE doesn't work in Gnus
  1999-11-14 11:58         ` Per Abrahamsen
@ 1999-11-15 19:37           ` Lars Magne Ingebrigtsen
  0 siblings, 0 replies; 7+ messages in thread
From: Lars Magne Ingebrigtsen @ 1999-11-15 19:37 UTC (permalink / raw)


Per Abrahamsen <abraham@dina.kvl.dk> writes:

> (string-match "windows-nt\\|os/2\\|emx" (symbol-name system-type))
> ==> nil
> (symbol-name system-type)
> ==> "cygwin32"

I've now added this to the check.

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


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

end of thread, other threads:[~1999-11-15 19:37 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <Jan Vroonhof's message of "13 Nov 1999 20:53:18 +0100">
     [not found] ` <199911131913.DAA14801@mercury.starnet.gov.sg>
1999-11-13 19:53   ` SCORE doesn't work in Gnus Jan Vroonhof
1999-11-13 20:05     ` Simon Josefsson
1999-11-14  2:27       ` Craig Lanning
1999-11-14 11:58         ` Per Abrahamsen
1999-11-15 19:37           ` Lars Magne Ingebrigtsen
     [not found]       ` <382E6876.5D9DBDE6@bigfoot.com>
1999-11-14 23:47         ` Shenghuo ZHU
1999-11-13 20:37     ` Jody M. Klymak

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