Re: Unicode support in cd9660 [patch for review]

2000-12-28 Thread Maxim Sobolev
Boris Popov wrote: On Wed, 27 Dec 2000, Maxim Sobolev wrote: Several days ago I got a CD with Russian filenames on it and discovered that I'm unable to read those filenames. After some hacking I produced a patch, which should solve this problem in the manner similar to what we have in

Re: Unicode support in cd9660 [patch for review]

2000-12-28 Thread Michael C . Wu
On Thu, Dec 28, 2000 at 11:19:16AM +0200, Maxim Sobolev scribbled: | Boris Popov wrote: | On Wed, 27 Dec 2000, Maxim Sobolev wrote: | In the near future we'll have iconv interface in the kernel which | uses libiconv library written by Konstantin Chuguev. I'm really sorry for | delays,

Re: Unicode support in cd9660 [patch for review]

2000-12-28 Thread Vladimir Kushnir
Hello, Thanks for the hint, Michael. I have made a port based on Matsuzaki-san' patch (with my little addition). The only problem - I don't have web page/ftp directory. So if anybody agrees to host a distfile I would gladly send it as well as a port tarball. On Wed, 27 Dec 2000, Michael C . Wu

Re: Unicode support in cd9660 [patch for review]

2000-12-28 Thread Maxim Sobolev
Hello Vladimir, Friday, December 29, 2000, 1:01:25 AM, you wrote: VK Hello, VK Thanks for the hint, Michael. I have made a port based on Matsuzaki-san' VK patch (with my little addition). The only problem - I don't have web VK page/ftp directory. So if anybody agrees to host a distfile I would

Unicode support in cd9660 [patch for review]

2000-12-27 Thread Maxim Sobolev
Hi, Several days ago I got a CD with Russian filenames on it and discovered that I'm unable to read those filenames. After some hacking I produced a patch, which should solve this problem in the manner similar to what we have in msdosfs module (i.e. user-provided conversion table). I have to

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread
On Wed, Dec 27, 2000 at 12:05:57 +0200, Maxim Sobolev wrote: Please somebody review attached patches. + u_char *ctable[256]; /* Table for converting unicode filenames */ You deside to use per- Unicode base conversion table, it takes much memory and don't satisfy in any case

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Maxim Sobolev
Àíäðåé ×åðíîâ wrote: On Wed, Dec 27, 2000 at 12:05:57 +0200, Maxim Sobolev wrote: Please somebody review attached patches. + u_char *ctable[256]; /* Table for converting unicode filenames */ You deside to use per- Unicode base conversion table, it takes much memory Not too

Re: [FreeBSD-tech-jp 2988] Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Noriyuki Soda
On Wed, 27 Dec 2000 21:28:19 +0900, Motomichi Matsuzaki [EMAIL PROTECTED] said: msaki Any ideas? There was dicussion about this issue on [EMAIL PROTECTED] mailing list with Subject: "Unicode support in kernel" and "code set recoding engine, V2" in October and November, 1999. Summary

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Maxim Sobolev
Motomichi Matsuzaki wrote: At Wed, 27 Dec 2000 12:05:57 +0200, Maxim Sobolev [EMAIL PROTECTED] wrote: Several days ago I got a CD with Russian filenames on it and discovered that I'm unable to read those filenames. After some hacking I produced a patch, Vladimir Kushnir's patch will be

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Motomichi Matsuzaki
At Wed, 27 Dec 2000 14:54:00 +0200, Maxim Sobolev [EMAIL PROTECTED] wrote: The Joliet extension are built on Unicode basis, and is the "multilingual" filesystem. We can found CDs which contain files named by all of English, French, Russian, Chinese, and Japanese languages. So charset

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Maxim Sobolev
Motomichi Matsuzaki wrote: At Wed, 27 Dec 2000 14:54:00 +0200, Maxim Sobolev [EMAIL PROTECTED] wrote: The Joliet extension are built on Unicode basis, and is the "multilingual" filesystem. We can found CDs which contain files named by all of English, French, Russian, Chinese, and

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Motomichi Matsuzaki
At Wed, 27 Dec 2000 15:38:58 +0200, Maxim Sobolev [EMAIL PROTECTED] wrote: But your solution is no effective and much harmful to multibyte users. You are not quite right. For multibyte users my solution (workaround?) is at least equial to the previous no-unicode case . I do not see how it

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Maxim Sobolev
Motomichi Matsuzaki wrote: At Wed, 27 Dec 2000 15:38:58 +0200, Maxim Sobolev [EMAIL PROTECTED] wrote: But your solution is no effective and much harmful to multibyte users. You are not quite right. For multibyte users my solution (workaround?) is at least equial to the previous

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Michael C . Wu
On Wed, Dec 27, 2000 at 12:05:57PM +0200, Maxim Sobolev scribbled: | Several days ago I got a CD with Russian filenames on it and discovered that | I'm unable to read those filenames. After some hacking I produced a patch, | which should solve this problem in the manner similar to what we have in

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Michael C . Wu
On Wed, Dec 27, 2000 at 05:57:19PM +0200, Maxim Sobolev scribbled: | Motomichi Matsuzaki wrote: | | At Wed, 27 Dec 2000 15:38:58 +0200, | Maxim Sobolev [EMAIL PROTECTED] wrote: |But your solution is no effective and much harmful to multibyte users. | You are not quite right. For

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Konstantin Chuguev
"Michael C . Wu" wrote: As to the progress of iconv, we should have it soon, as soon as itojun and I work out how to import either the Citrus code or Konstantin's code. As I could see from the CVSed Citrus code, it's a locale library rather than iconv, and it's just got the stub

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Michael C . Wu
On Wed, Dec 27, 2000 at 08:32:26PM +0200, Maxim Sobolev scribbled: | "Michael C . Wu" wrote: | On Wed, Dec 27, 2000 at 05:57:19PM +0200, Maxim Sobolev scribbled: | | Motomichi Matsuzaki wrote: | I think that making this "hack" a russian/xxxfs port and I think | everyone can be happy. If you

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread
On Wed, Dec 27, 2000 at 13:44:11 +0200, Maxim Sobolev wrote: I'm now sure how could I obtain charset for each of dozen+ OSes that may create a CD. There is not so much number, usualy only one Russian charset per OS :-) I don't see any problems, because it's likely that usual special high code

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread
On Wed, Dec 27, 2000 at 12:48:12 -0600, Michael C . Wu wrote: On Wed, Dec 27, 2000 at 08:32:26PM +0200, Maxim Sobolev scribbled: | "Michael C . Wu" wrote: | On Wed, Dec 27, 2000 at 05:57:19PM +0200, Maxim Sobolev scribbled: | | Motomichi Matsuzaki wrote: | I think that making this "hack"

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Michael C . Wu
-audit trimmed, cc'ed to -i18n On Wed, Dec 27, 2000 at 10:02:01PM +0300, áÎÄÒÅÊ þÅÒÎÏ× scribbled: | On Wed, Dec 27, 2000 at 12:48:12 -0600, Michael C . Wu wrote: | On Wed, Dec 27, 2000 at 08:32:26PM +0200, Maxim Sobolev scribbled: | | "Michael C . Wu" wrote: | | On Wed, Dec 27, 2000 at

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread
On Wed, Dec 27, 2000 at 13:35:52 -0600, Michael C . Wu wrote: READ: "single byte" You are breaking CJK multibyte support. Why? Why do you want make software engineering mistakes? 1) Nobody can break something which not exist yet. 2) The stuff discussed is optional and not using it you

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Mark Murray
Aimed at the thread, not the participants. This is off-topic for audit-. Please bring it back to audit- when you have some actual code to audit. Thanks! M On Wed, Dec 27, 2000 at 12:05:57PM +0200, Maxim Sobolev scribbled: | Several days ago I got a CD with Russian filenames on it and

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Warner Losh
[[ sorry for the minorly offtopic post ]] In message [EMAIL PROTECTED] "Michael C. Wu" writes: : Right, and as much as you want single byte stuff to work, CJK is also : a large market for FreeBSD. Where else in the world is there a full- : fledged print monthly 200page magazine for BSD but

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Boris Popov
On Wed, 27 Dec 2000, Maxim Sobolev wrote: Several days ago I got a CD with Russian filenames on it and discovered that I'm unable to read those filenames. After some hacking I produced a patch, which should solve this problem in the manner similar to what we have in msdosfs module (i.e.

Re: Unicode support in cd9660 [patch for review]

2000-12-27 Thread Jeroen Ruigrok van der Werven
-On [20001227 20:05], Andrej Cernov ([EMAIL PROTECTED]) wrote: Yes, it is a per-FS hack, but until iconv or something like will be integrated, some hack needed just to read CDs selling at nearby shop. As far as I know, Boris Popov was working on iconv() support. I see he is cc:'d, so I happily