Uwe Brauer <[EMAIL PROTECTED]> writes: > > theotp1:~/public_html/tmp$ cat fid,67731 > > Komma > > theotp1:~/public_html/tmp$ cat fid%2c67731 > > %2c > > > <http://theotp1.physik.uni-ulm.de/~ste/tmp/fid,67731> > --> Komma > > > <http://theotp1.physik.uni-ulm.de/~ste/tmp/fid%2c67731> > --> Komma > > > Both connect to comma right.
All 4 look like correct returns to me. The "%2c" is a URL escape. Use of "special" characters in URLs is somewhat limited. See RFC 3986. Use http://theotp1.physik.uni-ulm.de/~ste/tmp/fid%252c67731 to retrieve "%2c". And, just for safety, in case "%" is a special character in your command line (using wget), place the entire url in quotes. -- Bill _______________________________________________ info-gnus-english mailing list [email protected] http://lists.gnu.org/mailman/listinfo/info-gnus-english
