From owner-freebsd-java Sun Jun 25 20:52:23 2000 Delivered-To: freebsd-java@freebsd.org Received: from mail.mediainbox.com (adialup204.phnx.uswest.net [207.224.186.204]) by hub.freebsd.org (Postfix) with SMTP id 0236737B6D0 for ; Sun, 25 Jun 2000 20:52:09 -0700 (PDT) (envelope-from charvey@mediainbox.com) Received: (qmail 24666 invoked by uid 500); 25 Jun 2000 16:58:02 -0000 Date: Sun, 25 Jun 2000 09:58:02 -0700 (MST) From: To: Shelly Pond Cc: java@FreeBSD.ORG Subject: Re: A request for Software In-Reply-To: <3953BFBC.B13FB18E@algonquincollege.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Shelly, IBM provides free copies of the VisualAge for Java for Linux Entry Edition off of their web site. The only restriction the Entry Edition contains is a maximum limit of 500 classes. http://www.software.ibm.com/ad/vajava Personally, I own the professional edition and highly recommend it. Chris On Fri, 23 Jun 2000, Shelly Pond wrote: > Customer Service, > > Would it be possible to obtain a copy of Visual Age Java for Linux for > educational review. Our college, Algonquin College, is reviewing > software and one of our faculty members has put in a request for this > for his course of Object-Oriented Programming. > > Please contact me if you have any questions or concerns regarding this > request. > > Sincerely, > Shelly Pond > Tel: (613) 727-4723 ext. 5392 > Fax: (613) 727-7790 > > Please forward to the address as indicated: > > Ms. Shelly Pond > Continuing Education - Business Sector > Algonquin College > 1385 Woodroffe Avenue > Nepean ON K2G 1V8 > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sun Jun 25 22:51:50 2000 Delivered-To: freebsd-java@freebsd.org Received: from elincia.pearlmagik.com (d8c81d2d.dsl.flashcom.net [216.200.29.45]) by hub.freebsd.org (Postfix) with ESMTP id 393A837B665 for ; Sun, 25 Jun 2000 22:51:47 -0700 (PDT) (envelope-from hybrid@pearlmagik.com) Received: from pearlmagik.com [216.200.29.44] by elincia.pearlmagik.com with ESMTP (SMTPD32-5.04) id A07097B0198; Sun, 25 Jun 2000 22:56:00 PST Message-ID: <3956EF8A.E3DD2826@pearlmagik.com> Date: Sun, 25 Jun 2000 22:52:11 -0700 From: Robert LaThanh X-Mailer: Mozilla 4.73 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-java@freebsd.org Subject: FreeBSD+Java/Kaffe Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I had a lot of trouble getting my Java program running on FreeBSD. There are a few things I think should be easy to find from the Java Project homepage: - If runnnig FreeBSD 4.x and you receive an error that libc.so.3 isn't found, install FreeBSD 3.x compat. - Multithreading does not work (for me) in the Java 1.1.8 port - Since the port does not have a JIT, you should have links to the TYA and ShuJIT on the distrobution pages - Have a link (or more) that Kaffe is a good alternative Java VM (for now)!!!!!! I say this because I have a program that I wrote in Java tcp-based server that is multithreaded. It actually uses some of the Java 2 API, but I couldn't use the Java 1.2.2 beta port because it has socket problems. So I three problems, 1) I needed Java 2, but FreeBSD doesn't support it. So I adapted my code to Java 1, and used some Java 2 source to help. 2) Next problem I encountered was that Java 1.1.8 was giving me the libc.so.3 file not found. After searching around, i determined that FreeBSD 3.x compatibility is a dependancy 3) Once I tried running my program on 1.1.8, I find that none of the other threads run. So, I install the Kaffe 1.0.5 port, and it works. I really think this is information that should have been available on the FreeBSD-Java site. Thanks, Robert LaThanh To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 26 1:17:10 2000 Delivered-To: freebsd-java@freebsd.org Received: from hermes.research.kpn.com (hermes.research.kpn.com [139.63.192.8]) by hub.freebsd.org (Postfix) with ESMTP id 0B21C37B7AC for ; Mon, 26 Jun 2000 01:17:07 -0700 (PDT) (envelope-from K.J.Koster@kpn.com) Received: from l04.research.kpn.com (l04.research.kpn.com [139.63.192.204]) by research.kpn.com (PMDF V5.2-31 #42699) with ESMTP id <01JR2017O3IA0005LP@research.kpn.com> for freebsd-java@FreeBSD.ORG; Mon, 26 Jun 2000 10:17:03 +0200 Received: by l04.research.kpn.com with Internet Mail Service (5.5.2650.21) id ; Mon, 26 Jun 2000 10:17:03 +0100 Content-return: allowed Date: Mon, 26 Jun 2000 10:16:58 +0100 From: "Koster, K.J." Subject: RE: FreeBSD+Java/Kaffe To: 'Robert LaThanh' Cc: freebsd-java@FreeBSD.ORG Message-id: <59063B5B4D98D311BC0D0001FA7E4522026D76AE@l04.research.kpn.com> MIME-version: 1.0 X-Mailer: Internet Mail Service (5.5.2650.21) Content-type: text/plain; charset="iso-8859-1" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > - Multithreading does not work (for me) in the Java 1.1.8 > port > Hmm. I thought our 1.1.8 port was rather complete. Could someone else comment on this one? > > - Since the port does not have a JIT, you should have > links to the TYA and ShuJIT on the distrobution pages > http://web.inter.nl.net/users/kjkoster/java/index.html Click on "Install a JIT" :-) > > I couldn't use the Java 1.2.2 beta port because it has socket > problems. > Ah, but I think these have been resolved already. My web pages are embarassingly outdated. > > 3) Once I tried running my program on 1.1.8, I find that none of > the other threads run. > FreeBSD 1.1.8 supports only green threads, not native threads. I believe thread starvation is one of the problems that green threads have more than native threads. Kees Jan ================================================= TV is the worst of both worlds. It's not as good at words as radio is because the pictures are a distraction which demand attention, and it's not as good as cinema because the pictures are not nearly as good. Douglas Adams To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 26 9:34:13 2000 Delivered-To: freebsd-java@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 59B6637BA4C for ; Mon, 26 Jun 2000 09:33:47 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id KAA10047; Mon, 26 Jun 2000 10:33:43 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id KAA18872; Mon, 26 Jun 2000 10:33:43 -0600 (MDT) (envelope-from nate) Date: Mon, 26 Jun 2000 10:33:43 -0600 (MDT) Message-Id: <200006261633.KAA18872@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Robert LaThanh Cc: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD+Java/Kaffe In-Reply-To: <3956EF8A.E3DD2826@pearlmagik.com> References: <3956EF8A.E3DD2826@pearlmagik.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > - Multithreading does not work (for me) in the Java 1.1.8 port It works fine. I've run applications with thousands (yes thousands) of threads on FreeBSD w/out any problems. However, it will 'hang' if you read from the console (until the read completes) since the JVM does not use kernel threads. > - Since the port does not have a JIT, you should have links to the TYA > and ShuJIT on the distrobution pages > - Have a link (or more) that Kaffe is a good alternative Java VM (for > now)!!!!!! Kaffe has never worked reliably for me ever, and I've attempted to use almost every version. > I say this because I have a program that I wrote in Java tcp-based > server that is multithreaded. JDK1.1.8 should work well. My application makes heavy use of sockets (see above), and socket's work well in multi-threaded applications if they are written correctly. > 2) Next problem I encountered was that Java 1.1.8 was giving me the > libc.so.3 file not found. After searching around, i determined that > FreeBSD 3.x compatibility is a dependancy > 3) Once I tried running my program on 1.1.8, I find that none of the > other threads run. The 'thread' that is hanging the program is probably trying to do console input. You can't do console I/O in FreeBSD's thread and expect other threads to run. > So, I install the Kaffe 1.0.5 port, and it works. I'm *very* *very* *very* suprised that Kaffe would work, since Kaffe doesn't use kernel threads either. My guess is that somehow the internals are slightly different, or how you're doing inter-thread communications (in essence, how you make threads go and stop) is slightly different from what the Sun JVM expects. Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 26 10: 4:45 2000 Delivered-To: freebsd-java@freebsd.org Received: from firewall.ox.com (firewall.ox.com [129.77.1.1]) by hub.freebsd.org (Postfix) with ESMTP id AC52E37B902 for ; Mon, 26 Jun 2000 10:04:39 -0700 (PDT) (envelope-from rcf@ox.com) Received: from firewall.ox.com (root@localhost) by firewall.ox.com with ESMTP id NAA10200 for ; Mon, 26 Jun 2000 13:04:34 -0400 (EDT) Received: from pur-wk-rfurphy.ny.ox.com (pur-wk-rfurphy.ny.ox.com [129.77.2.133]) by firewall.ox.com with ESMTP id NAA10196 for ; Mon, 26 Jun 2000 13:04:33 -0400 (EDT) Received: from ox.com (localhost.ny.ox.com [127.0.0.1]) by pur-wk-rfurphy.ny.ox.com (8.9.3/8.9.3) with ESMTP id NAA87404 for ; Mon, 26 Jun 2000 13:04:33 -0400 (EDT) (envelope-from rcf@ox.com) Message-ID: <39578D21.2A8F70CB@ox.com> Date: Mon, 26 Jun 2000 13:04:33 -0400 From: Rob Furphy X-Mailer: Mozilla 4.73 [en] (X11; U; FreeBSD 3.4-RELEASE i386) X-Accept-Language: en MIME-Version: 1.0 Cc: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD+Java/Kaffe References: <3956EF8A.E3DD2826@pearlmagik.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Robert LaThanh wrote: > I had a lot of trouble getting my Java program running on FreeBSD. > > Thanks, > Robert LaThanh > My two cents: 1) The java 1.1.8 port works fine. In fact it's excellent. I have (numerous)servers that are multi-threaded socket applications. These all work flawlessly on the 1.1.8 JDK. TCP sockets, UDP Multicast, thousands of threads - the freebsd 1.1.8 jdk performs beautifully. 2) I've moved all of them now to the Native 1.2.2 JDK (alpha) and that port works just as well for the applications I am using. Nate is the MAN! (Greg's running a close second) Rob F. P.S. - OK, three cents: 3) Kaffe has never worked for me and I tried a few versions (to compare against the native jdk). To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 26 10:10:13 2000 Delivered-To: freebsd-java@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.123.66]) by hub.freebsd.org (Postfix) with ESMTP id 55A7E37B902 for ; Mon, 26 Jun 2000 10:10:10 -0700 (PDT) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.123.131]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id LAA10475; Mon, 26 Jun 2000 11:10:08 -0600 (MDT) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id LAA19237; Mon, 26 Jun 2000 11:10:07 -0600 (MDT) (envelope-from nate) Date: Mon, 26 Jun 2000 11:10:07 -0600 (MDT) Message-Id: <200006261710.LAA19237@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Rob Furphy Cc: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD+Java/Kaffe In-Reply-To: <39578D21.2A8F70CB@ox.com> References: <3956EF8A.E3DD2826@pearlmagik.com> <39578D21.2A8F70CB@ox.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Nate is the MAN! (Greg's running a close second) Don't give me credit. The JDK porting team did most of the work, I just did the occasional fix that usually got replaced with a better fix later, and made the final builds. > 3) Kaffe has never worked for me and I tried a few versions (to compare > against the native jdk). Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 26 14:22:39 2000 Delivered-To: freebsd-java@freebsd.org Received: from ares.trc.adelaide.edu.au (ares.trc.adelaide.edu.au [129.127.246.5]) by hub.freebsd.org (Postfix) with ESMTP id 2098537BD3B for ; Mon, 26 Jun 2000 14:22:34 -0700 (PDT) (envelope-from glewis@ares.trc.adelaide.edu.au) Received: (from glewis@localhost) by ares.trc.adelaide.edu.au (8.9.3/8.9.3) id GAA26561; Tue, 27 Jun 2000 06:52:25 +0930 (CST) (envelope-from glewis) From: Greg Lewis Message-Id: <200006262122.GAA26561@ares.trc.adelaide.edu.au> Subject: Re: FreeBSD+Java/Kaffe In-Reply-To: <3956EF8A.E3DD2826@pearlmagik.com> from Robert LaThanh at "Jun 25, 2000 10:52:11 pm" To: Robert LaThanh Date: Tue, 27 Jun 2000 06:52:25 +0930 (CST) Cc: freebsd-java@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL70 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Robert LaThanh wrote: > I say this because I have a program that I wrote in Java tcp-based > server that is multithreaded. It actually uses some of the Java 2 API, > but I couldn't use the Java 1.2.2 beta port because it has socket > problems. So I three problems, I'd love to hear about any socket problems the current patchset has. -- Greg Lewis glewis@trc.adelaide.edu.au Computing Officer +61 8 8303 5083 Teletraffic Research Centre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 26 17:22: 0 2000 Delivered-To: freebsd-java@freebsd.org Received: from c187104187.telekabel.chello.nl (c187104187.telekabel.chello.nl [212.187.104.187]) by hub.freebsd.org (Postfix) with SMTP id 271CB37BD89 for ; Mon, 26 Jun 2000 17:21:52 -0700 (PDT) (envelope-from ernst@c187104187.telekabel.chello.nl) Received: (qmail 1963 invoked by uid 1000); 27 Jun 2000 00:21:44 -0000 Date: Tue, 27 Jun 2000 02:21:43 +0200 From: Ernst de Haan To: Robert LaThanh Cc: freebsd-java@freebsd.org Subject: Re: FreeBSD+Java/Kaffe Message-ID: <20000627022143.C371@c187104187.telekabel.chello.nl> References: <3956EF8A.E3DD2826@pearlmagik.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2i In-Reply-To: <3956EF8A.E3DD2826@pearlmagik.com>; from hybrid@pearlmagik.com on Sun, Jun 25, 2000 at 10:52:11PM -0700 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org You don't work for Microsoft do you ?! Seems like FUD to me! j/k ;-) Ernst Robert LaThanh wrote: > I had a lot of trouble getting my Java program running on FreeBSD. There > are a few things I think should be easy to find from the Java Project > homepage: > - If runnnig FreeBSD 4.x and you receive an error that libc.so.3 isn't > found, install FreeBSD 3.x compat. > - Multithreading does not work (for me) in the Java 1.1.8 port > - Since the port does not have a JIT, you should have links to the TYA > and ShuJIT on the distrobution pages > - Have a link (or more) that Kaffe is a good alternative Java VM (for > now)!!!!!! > > I say this because I have a program that I wrote in Java tcp-based > server that is multithreaded. It actually uses some of the Java 2 API, > but I couldn't use the Java 1.2.2 beta port because it has socket > problems. So I three problems, > 1) I needed Java 2, but FreeBSD doesn't support it. So I adapted my code > to Java 1, and used some Java 2 source to help. > 2) Next problem I encountered was that Java 1.1.8 was giving me the > libc.so.3 file not found. After searching around, i determined that > FreeBSD 3.x compatibility is a dependancy > 3) Once I tried running my program on 1.1.8, I find that none of the > other threads run. > > So, I install the Kaffe 1.0.5 port, and it works. I really think this is > information that should have been available on the FreeBSD-Java site. > > Thanks, > Robert LaThanh > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Mon Jun 26 23:13:18 2000 Delivered-To: freebsd-java@freebsd.org Received: from kiew.egd.igd.fhg.de (kiew.egd.igd.fhg.de [192.102.170.32]) by hub.freebsd.org (Postfix) with ESMTP id 7C8C637B94E for ; Mon, 26 Jun 2000 23:13:15 -0700 (PDT) (envelope-from runge@rostock.zgdv.de) Received: from rostock.zgdv.de (penguin.egd.igd.fhg.de [192.102.170.145]) by kiew.egd.igd.fhg.de (Netscape Messaging Server 3.6) with ESMTP id AAA2E3D for ; Tue, 27 Jun 2000 08:13:05 +0200 Message-ID: <395846EF.879B700D@rostock.zgdv.de> Date: Tue, 27 Jun 2000 08:17:19 +0200 From: Thomas Runge X-Mailer: Mozilla 4.72 [en] (X11; U; FreeBSD 4.0-STABLE i386) X-Accept-Language: en, de MIME-Version: 1.0 Cc: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD+Java/Kaffe References: <200006262122.GAA26561@ares.trc.adelaide.edu.au> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Greg Lewis wrote: > I'd love to hear about any socket problems the current patchset has. Well, I've got a distributed application which uses CORBA for the communication. So, there is a lot of socket communication underneath. And I have no problems at all. Everything works as expected. (FreeBSD 4.0-STABLE, patchset 9) Great work! Thank you all, porters! :-) -- Tom To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Tue Jun 27 6:43:26 2000 Delivered-To: freebsd-java@freebsd.org Received: from dnvrpop5.dnvr.uswest.net (dnvrpop5.dnvr.uswest.net [206.196.128.7]) by hub.freebsd.org (Postfix) with SMTP id 7AE3837BFF8 for ; Tue, 27 Jun 2000 06:43:18 -0700 (PDT) (envelope-from wolpert@methodsystems.com) Received: (qmail 47736 invoked by alias); 27 Jun 2000 13:43:16 -0000 Delivered-To: fixup-freebsd-java@FreeBSD.ORG@fixme Received: (qmail 47709 invoked by uid 0); 27 Jun 2000 13:43:16 -0000 Received: from unknown (HELO osti.methodsystems.com) (63.227.49.195) by dnvrpop5.dnvr.uswest.net with SMTP; 27 Jun 2000 13:43:16 -0000 Content-Length: 903 Message-ID: X-Mailer: XFMail 1.4.0 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <395846EF.879B700D@rostock.zgdv.de> Date: Tue, 27 Jun 2000 07:43:16 -0600 (MDT) From: Edward Wolpert To: freebsd-java@FreeBSD.ORG Subject: Re: FreeBSD+Java/Kaffe Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org -----BEGIN PGP SIGNED MESSAGE----- > Greg Lewis wrote: > I'd love to hear about any socket problems the current patchset has. Using p9, FBSD 4.0-stable, I've been using PostgreSQL (6.x), Tomcat, Cocoon all at the same time, with no problems. (I haven't touched Kaffe) I've actually stop my testing and switch my working environment to the latest patch release. Virtually, | "I'm sorry, but Godot isn't Edward Wolpert | here right now. Perhaps if 4eb8 4e75 | you came back tomorrow..." ___________________________________________/ -SB -----BEGIN PGP SIGNATURE----- Version: 2.6.2 iQB1AwUBOVivdK2tQW/xJRRFAQH1/gL/V7dUe2Fr8t5ZwetfYLErTkuyYajlXqra I1oCD9d218yygWgVEmbIlyooP59Kk/AQMSmkkzdfNbHgPCgBX3FBtnrMBW1ilq/m dJ6eJyRw2CzEUP3DuCbO6UAVimuyU1I3 =DbBc -----END PGP SIGNATURE----- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 28 19:56:20 2000 Delivered-To: freebsd-java@freebsd.org Received: from matsulab.is.titech.ac.jp (matsulab.is.titech.ac.jp [131.112.35.129]) by hub.freebsd.org (Postfix) with ESMTP id 0CCC737C5AC for ; Wed, 28 Jun 2000 19:56:06 -0700 (PDT) (envelope-from maruyama@is.titech.ac.jp) Received: from localhost by matsulab.is.titech.ac.jp (8.8.8+Sun/3.7W) id LAA01210; Thu, 29 Jun 2000 11:55:07 +0900 (JST) To: glewis@trc.adelaide.edu.au Cc: taguchi@tohoku.iij.ad.jp, freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem From: Fuyuhiko MARUYAMA In-Reply-To: <20000624114823.A98789@ares.trc.adelaide.edu.au> References: <20000624114823.A98789@ares.trc.adelaide.edu.au> X-Mailer: Mew version 1.94.2 on XEmacs 21.2 (Melpomene) Mime-Version: 1.0 Content-Type: Multipart/Mixed; boundary="--Next_Part(Thu_Jun_29_11:55:47_2000_559)--" Content-Transfer-Encoding: 7bit Message-Id: <20000629115550F.maruyama@is.titech.ac.jp> Date: Thu, 29 Jun 2000 11:55:50 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 90 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ----Next_Part(Thu_Jun_29_11:55:47_2000_559)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, i18n users. From: Greg Lewis Subject: Re: patchset9 test: Japanese Font Problem Date: Sat, 24 Jun 2000 11:48:23 +0930 > Hi Taguchi-san. As far as I know this is how things should be. The Solaris > and Linux sources are both set up this way as well. I don't think this is > the cause of the problem. > > > # ext/i18n/src/solaris/sun/awt/motif contains CharToByteX11*.java > > So does ext/i18n/src/freebsd/sun/awt/motif more importantly :). I think the core of current problem is patchset9 doesn't make i18n.jar. So I've tried to make i18n.jar and found it seems trivial way is enough. I don't check it well, but it seems to fix one serious bug that javac doesn't output error messages correctly (each characters of error messages are outputed as question marks). In fact, I'm very surprising at seeing error messages written in Japanese. ;-) To use this patch, you need to do: 1) cd ext/i18n/build 2) mkdir freebsd 3) cp solaris/GNUmakefile freebsd 4) cd ../src 5) mkdir freebsd 6) cd solaris 7) tar cf - . | (cd ../freebsd; tar xf -) 8) cd ../../../iiimp/build 9) mkdir freebsd 10) cp solaris/GNUmakefile freebsd 11) cd ../../.. 12) patch < ext.diffs 13) cd build/freebsd 14) gmake ext-all When gmake is completed, i18n.jar and ext/iiimp.jar will be appears in lib directory. Copying them to /usr/local/jdk1.2.2/jre/lib (for example) is enough to examine this (the way I tried). Making ext-all seems to be a part of normal build process, but I don't check it because my machine doesn't have enough resources to try make world (or something like release-images) several times. ;-< I hope it will be a first step to correct bugs around i18n including japanese fonts problem. -- Fuyuhiko MARUYAMA Matsuoka laboratory, Department of Mathematical and Computing Sciences, Graduate School of Tokyo Institute of Technology. ----Next_Part(Thu_Jun_29_11:55:47_2000_559)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Description: Trivial patches. Content-Disposition: attachment; filename="ext.diffs" --- ext/i18n/build/freebsd/GNUmakefile.orig Tue Jun 29 19:14:52 1999 +++ ext/i18n/build/freebsd/GNUmakefile Wed Jun 28 22:57:48 2000 @@ -5,7 +5,7 @@ # EXT_TOPDIR = $(shell cd ../..; pwd) -BUILDDIR = $(shell cd $(EXT_TOPDIR)/../../build/solaris; pwd) +BUILDDIR = $(shell cd $(EXT_TOPDIR)/../../build/freebsd; pwd) include $(BUILDDIR)/Platform.gmk PACKAGE = sun.io PRODUCT = sun --- ext/iiimp/build/freebsd/GNUmakefile.orig Tue Jun 29 19:15:17 1999 +++ ext/iiimp/build/freebsd/GNUmakefile Wed Jun 28 23:01:11 2000 @@ -5,7 +5,7 @@ # EXT_TOPDIR = $(shell cd ../..; pwd) -BUILDDIR = $(shell cd $(EXT_TOPDIR)/../../build/solaris; pwd) +BUILDDIR = $(shell cd $(EXT_TOPDIR)/../../build/freebsd; pwd) include $(BUILDDIR)/Platform.gmk PACKAGE = sun.awt PRODUCT = sun ----Next_Part(Thu_Jun_29_11:55:47_2000_559)---- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Jun 28 23:17:46 2000 Delivered-To: freebsd-java@freebsd.org Received: from tohokugw.tohoku.iij.ad.jp (tohokugw.tohoku.iij.ad.jp [202.232.14.98]) by hub.freebsd.org (Postfix) with ESMTP id 88C6E37B581 for ; Wed, 28 Jun 2000 23:17:43 -0700 (PDT) (envelope-from taguchi@tohoku.iij.ad.jp) Received: by tohokugw.tohoku.iij.ad.jp; id PAA06161; Thu, 29 Jun 2000 15:17:42 +0900 (JST) From: Received: from hirose.tohoku.iij.ad.jp(192.168.144.2) by tohokugw.tohoku.iij.ad.jp via smap (V4.2) id xma006157; Thu, 29 Jun 00 15:17:05 +0900 Received: from hirose.tohoku.iij.ad.jp (localhost [127.0.0.1]) by hirose.tohoku.iij.ad.jp (8.9.3/3.7W99113014) with ESMTP id PAA72295 for ; Thu, 29 Jun 2000 15:17:26 +0900 (JST) Date: Thu, 29 Jun 2000 15:17:25 +0900 Message-ID: To: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem In-Reply-To: In your message of "Thu, 29 Jun 2000 11:55:50 +0900" <20000629115550F.maruyama@is.titech.ac.jp> References: <20000624114823.A98789@ares.trc.adelaide.edu.au> <20000629115550F.maruyama@is.titech.ac.jp> User-Agent: Wanderlust/2.2.12 (Joyride) EMIKO/1.13.9 (Euglena tripteris) FLIM/1.13.2 (Kasanui) Emacs/20.6 (i386--freebsd) MULE/4.0 (HANANOEN) MIME-Version: 1.0 (generated by EMIKO 1.13.9 - "Euglena tripteris") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Maruyama-san > To use this patch, you need to do: > 1) cd ext/i18n/build ... [snip] ... > 14) gmake ext-all gmake release-images also ok. Great! I tried to test Ichitaro-Ark which is very famouse XML editor which supported Japanese language (but also work English fine ;-). It seem work fine include Japanese conversion, serach, replace. Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 29 0:45:17 2000 Delivered-To: freebsd-java@freebsd.org Received: from matsulab.is.titech.ac.jp (matsulab.is.titech.ac.jp [131.112.35.129]) by hub.freebsd.org (Postfix) with ESMTP id 8465F37B915 for ; Thu, 29 Jun 2000 00:44:37 -0700 (PDT) (envelope-from maruyama@is.titech.ac.jp) Received: from localhost by matsulab.is.titech.ac.jp (8.8.8+Sun/3.7W) id QAA06124; Thu, 29 Jun 2000 16:44:30 +0900 (JST) To: taguchi@tohoku.iij.ad.jp Cc: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem From: Fuyuhiko MARUYAMA In-Reply-To: References: <20000624114823.A98789@ares.trc.adelaide.edu.au> <20000629115550F.maruyama@is.titech.ac.jp> X-Mailer: Mew version 1.94.2 on XEmacs 21.2 (Melpomene) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000629164513N.maruyama@is.titech.ac.jp> Date: Thu, 29 Jun 2000 16:45:13 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 24 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org From: Subject: Re: patchset9 test: Japanese Font Problem Date: Thu, 29 Jun 2000 15:17:25 +0900 > gmake release-images also ok. > > Great! > > I tried to test Ichitaro-Ark which is very famouse XML editor > which supported Japanese language (but also work English fine ;-). > It seem work fine include Japanese conversion, serach, replace. Sounds good. # In fact, I have already seen this result in Ark's ML ;-) I hope previous patches are included in future patchset. Please do it, Greg -- patch master(?). -- MARUYAMA Fuyuhiko Matsuoka laboratory, Department of Mathematical and Computing Sciences, Graduate School of Tokyo Institute of Technology. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 29 0:51:14 2000 Delivered-To: freebsd-java@freebsd.org Received: from matsulab.is.titech.ac.jp (matsulab.is.titech.ac.jp [131.112.35.129]) by hub.freebsd.org (Postfix) with ESMTP id 91A5537B59B for ; Thu, 29 Jun 2000 00:51:06 -0700 (PDT) (envelope-from maruyama@is.titech.ac.jp) Received: from localhost by matsulab.is.titech.ac.jp (8.8.8+Sun/3.7W) id QAA06232; Thu, 29 Jun 2000 16:51:04 +0900 (JST) To: taguchi@tohoku.iij.ad.jp Cc: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem From: Fuyuhiko MARUYAMA In-Reply-To: <20000629164513N.maruyama@is.titech.ac.jp> References: <20000629115550F.maruyama@is.titech.ac.jp> <20000629164513N.maruyama@is.titech.ac.jp> X-Mailer: Mew version 1.94.2 on XEmacs 21.2 (Melpomene) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-Id: <20000629165147R.maruyama@is.titech.ac.jp> Date: Thu, 29 Jun 2000 16:51:47 +0900 X-Dispatcher: imput version 20000228(IM140) Lines: 19 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Taguchi-san From: Subject: Re: patchset9 test: Japanese Font Problem Date: Thu, 29 Jun 2000 15:17:25 +0900 > I tried to test Ichitaro-Ark which is very famouse XML editor > which supported Japanese language (but also work English fine ;-). > It seem work fine include Japanese conversion, serach, replace. I've forgotten one issue. What font.properties.ja do you use, Taguchi-san? -- Fuyuhiko MARUYAMA Matsuoka laboratory, Department of Mathematical and Computing Sciences, Graduate School of Tokyo Institute of Technology. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 29 1:31:47 2000 Delivered-To: freebsd-java@freebsd.org Received: from tohokugw.tohoku.iij.ad.jp (tohokugw.tohoku.iij.ad.jp [202.232.14.98]) by hub.freebsd.org (Postfix) with ESMTP id A743C37BB59 for ; Thu, 29 Jun 2000 01:31:43 -0700 (PDT) (envelope-from taguchi@tohoku.iij.ad.jp) Received: by tohokugw.tohoku.iij.ad.jp; id RAA07069; Thu, 29 Jun 2000 17:31:42 +0900 (JST) From: Received: from hirose.tohoku.iij.ad.jp(192.168.144.2) by tohokugw.tohoku.iij.ad.jp via smap (V4.2) id xma007065; Thu, 29 Jun 00 17:31:15 +0900 Received: from hirose.tohoku.iij.ad.jp (localhost [127.0.0.1]) by hirose.tohoku.iij.ad.jp (8.9.3/3.7W99113014) with ESMTP id RAA73019 for ; Thu, 29 Jun 2000 17:31:36 +0900 (JST) Date: Thu, 29 Jun 2000 17:31:35 +0900 Message-ID: To: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem In-Reply-To: In your message of "Thu, 29 Jun 2000 16:45:13 +0900" <20000629164513N.maruyama@is.titech.ac.jp> References: <20000624114823.A98789@ares.trc.adelaide.edu.au> <20000629115550F.maruyama@is.titech.ac.jp> <20000629164513N.maruyama@is.titech.ac.jp> User-Agent: Wanderlust/2.2.12 (Joyride) EMIKO/1.13.9 (Euglena tripteris) FLIM/1.13.2 (Kasanui) Emacs/20.6 (i386--freebsd) MULE/4.0 (HANANOEN) MIME-Version: 1.0 (generated by EMIKO 1.13.9 - "Euglena tripteris") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I hope previous patches are included in future patchset. > Please do it, Greg -- patch master(?). Me and I think all Japanese, and other i18n users too. > What font.properties.ja do you use, Taguchi-san? Following is my current (I made it 1 hours ago ;-) font.properties.ja. This is based on FreeBSD patch's one. So I think it has upper compatibility to C locale's one. Our Japanese have JISX0201.1976 (aka. hankaku-moji) font probrem. I think there are no free scalable JISX0201.1976 fonts. But Java2 requires them. Actualy, I have commertial fonts, so this font.properties.ja contains JISX0201.1976 entries. but I've comment out them. So I hope this file requires X-TT and japanese/truetypefonts only. Thanks. -- Taguchi,T. BEGIN>---88--- begin 644 font.properties.ja.gz M'XL("(P%6SD"`V9O;G0N<')O<&5R=&EE'`RW1-KL2:8A4O+YKO_L-*5FF9,F13&;1 M+;(AYW'XWI`CDC.$?\*]X"IEBTS1"!:[#_"+6-!4P7S+>$3C6,)?Y/[']+L5 MY2F)@E`$V9>_PK\'P\$0OGLS?+M$D&"3B@V:,BI?38/I)=Q<7TPG%Y>7IM>] MV.Q2MEHKF-[<7.-(,,\X_,C"5,B=5#21(WC@83#"OC>3*W`5H?!?'8`:2D%))TR<:!<:# MQS63(,52;4E*`7]6:PJAX$L64:X8B8'P"/0D4D8527?`.`Z2$,4$1WNQ;'$9 MWGQS;\,\',R^>1L`_$-D:"[7!#WC0D'$9!@+24%FX1K:3(TWN5$F*0(P!8+' MVBL@82C2B/"0PI:IM9F)HFDBM9/Z'S$+*<<1R"JE-$%PM-^)#/`GFJ+0#)G- M37%*FA[#T-VOC_`1E82(+DD6*_BY5!30+_C\$=&NW\,LF`7O<_-/O_P*6GR) MYK;S^)_VHVPVL]FN<7#`D5=4Z>8$$K*#!<4N&383]0%17JV5VGRXN-ANM\&* M)9M`I*L+@Q&L51(;7S6E.+[FD^)L/H\?'W%J3RP57$\V]S:3C*]P&%1ZR6)J M8@-'84O#Q)H\(3U\!S(D,5G$%'YC\NOD_/M^]QK'8SH)S<6VM=(8$,< MBZV&3D3$EBPT$Y8:_LWT+60\%(EV`K1R@^&K=\'5[?C=^'\)X^%:_+X2Z%'X MQSBA$6Q[%WW:*?IY.?WB8ZR'JV#\MER'!B!OED\ZD'D`* M#!FI])1*20.84PH?[_YNZ-5AJ17?$!P?83#(\VU%1X.6(Q&H?40483&.@SWF M-$4MED6\,<[R=3:0^O?!Y'9,(MR*QHHE5)Z@:X-_F137UW^^&4\+X^G>^+]D MLT17^&I!U',@N869VH:&6MD"[7*/)G?)0L3GPLQT&.11\`Q$H?XUJG\]T^KG M`%>=`)K"I_"`H8`L;*&6=:.VP/#+<`'JB>@"S9GO`L>9=IQ*5"==_ZYK-!M[ MOX0;2$]T&RR;;'%J?[1<+<`O;(?4.XGZN`>\0/]8>; M;-W:L:VVO:]I_$059M'N6WP)XDV=$M%=EA+*Z)%G^][;3PERU0FD>464(/45 M<42YZ$ZY[W51!_8H@+TN7'6P%X:K'-5TK2MWE8UO&:0.JY/);KGD.=D<$TB-:BVI=&60TY*\7*+PV<6 M:8;U)HZ///(]([%8->20R#2X'#X*!%\:%7#.HA0X#EM5@>#`>X'@?MJH`GFF MVM]P60V_'"!O',O)^L8(.=O^G8*'XH=SU/'$.]`/V>@]_+_G^, MY6'O?^";3+4F`*9;SS]%V"!^1Q7"5Z:HH'F2Q>4\<83S$H+XS!T6HNNN94%Y5.+DH8+UU>,%EXG_E'*$ZT\A M+\FEJ(MH2"QY2Z#?WF\OO[U:ZNZ<)!1P5"*I-`46YN?`O$BE(B'\UMR?E0WE M-\-M>;=6MA5!<'LX+ND1],/Z@H1?MB2-(!3)ABBV8#%3N\%AE&`3$\;/?5&W M<-S>CRV@\U]$:R`NCWW#0:/L%!?%$TU07MNF1(BK#%'3+K2$SEB:PO,Y7'L$[45)Z\^G)3>>GJ2TYY M%]R1F/+FMR\IY1UO)T+*F]R^9)07N.<1L;\3Z<7&_@[D/$KVMQT]>-G?:9Q' MSOXJHR]#MG7,,ZD2<7M6;K(A]3JG1*^*NJL*=DGX]S\==FKD@DG MK\LD*X_[3%Z/=*IJ,J\8'AHGH[SF7(`H:L+ALT[W<_SBT,6\?*5_,YWF9>B' M:G_=U7A;S=2W_QJ,]0I5N\W^PYS3[=A\O(]3NLIBDN*74.L'9PTS_SSK!,HZ M@^IONY.0Q6=D'[P.CA8'E`ZHM0HDC7KNL0(:4/?S/^^`T8;8[FNWHT83;AE2 MYY[02LRC1_D#:M\C"#2!5CGM=QYI!6SSM-OAI!&VQFC?8]P!L_*"Y2="K4GC>L8G26FG;L/<,ZG 4\H//^<6?R\XT'/P??(`2U8@W```( ` end END>---88--- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 29 8:14: 4 2000 Delivered-To: freebsd-java@freebsd.org Received: from ares.trc.adelaide.edu.au (ares.trc.adelaide.edu.au [129.127.246.5]) by hub.freebsd.org (Postfix) with ESMTP id 7F83B37B578 for ; Thu, 29 Jun 2000 08:13:55 -0700 (PDT) (envelope-from glewis@ares.trc.adelaide.edu.au) Received: (from glewis@localhost) by ares.trc.adelaide.edu.au (8.9.3/8.9.3) id AAA18002; Fri, 30 Jun 2000 00:43:23 +0930 (CST) (envelope-from glewis) Date: Fri, 30 Jun 2000 00:43:23 +0930 From: Greg Lewis To: Fuyuhiko MARUYAMA Cc: taguchi@tohoku.iij.ad.jp, freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem Message-ID: <20000630004323.A17961@ares.trc.adelaide.edu.au> References: <20000624114823.A98789@ares.trc.adelaide.edu.au> <20000629115550F.maruyama@is.titech.ac.jp> <20000629164513N.maruyama@is.titech.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <20000629164513N.maruyama@is.titech.ac.jp>; from fuyuhik8@is.titech.ac.jp on Thu, Jun 29, 2000 at 04:45:13PM +0900 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jun 29, 2000 at 04:45:13PM +0900, Fuyuhiko MARUYAMA wrote: > I hope previous patches are included in future patchset. > Please do it, Greg -- patch master(?). Dear Fuyuhiko-san, Sure :). I just need to have a little look over the build process and see how they fit in. -- Greg Lewis glewis@trc.adelaide.edu.au Computing Officer +61 8 8303 5083 Teletraffic Research Centre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 29 8:15:58 2000 Delivered-To: freebsd-java@freebsd.org Received: from ares.trc.adelaide.edu.au (ares.trc.adelaide.edu.au [129.127.246.5]) by hub.freebsd.org (Postfix) with ESMTP id 223BB37B578 for ; Thu, 29 Jun 2000 08:15:53 -0700 (PDT) (envelope-from glewis@ares.trc.adelaide.edu.au) Received: (from glewis@localhost) by ares.trc.adelaide.edu.au (8.9.3/8.9.3) id AAA18033; Fri, 30 Jun 2000 00:45:25 +0930 (CST) (envelope-from glewis) Date: Fri, 30 Jun 2000 00:45:25 +0930 From: Greg Lewis To: taguchi@tohoku.iij.ad.jp Cc: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem Message-ID: <20000630004525.B17961@ares.trc.adelaide.edu.au> References: <20000624114823.A98789@ares.trc.adelaide.edu.au> <20000629115550F.maruyama@is.titech.ac.jp> <20000629164513N.maruyama@is.titech.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: ; from taguchi@tohoku.iij.ad.jp on Thu, Jun 29, 2000 at 05:31:35PM +0900 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Thu, Jun 29, 2000 at 05:31:35PM +0900, taguchi@tohoku.iij.ad.jp wrote: > Following is my current (I made it 1 hours ago ;-) font.properties.ja. > This is based on FreeBSD patch's one. > So I think it has upper compatibility to C locale's one. Taguchi-san and others, is this a better font.properties.ja than the one that the FreeBSD build currently uses? That is, should the one that is currently being used be replaced? -- Greg Lewis glewis@trc.adelaide.edu.au Computing Officer +61 8 8303 5083 Teletraffic Research Centre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Jun 29 13:39:37 2000 Delivered-To: freebsd-java@freebsd.org Received: from mbg.sphere.ne.jp (mbg.sphere.ne.jp [203.138.71.44]) by hub.freebsd.org (Postfix) with ESMTP id A112537B6CC for ; Thu, 29 Jun 2000 13:39:32 -0700 (PDT) (envelope-from daichi@ongs.net) Received: from localhost (pl120.nas511.a-nagoya.nttpc.ne.jp [210.139.68.120]) by mbg.sphere.ne.jp (8.9.3+3.2W/3.7W) with ESMTP id FAA18712 for ; Fri, 30 Jun 2000 05:39:30 +0900 (JST) Date: Fri, 30 Jun 2000 05:40:11 +0900 (JST) From: =?iso-2022-jp?B?GyRCOGVGI0JnQ08bKEI=?= To: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem In-Reply-to: Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Mailer: =?iso-2022-jp?B?GyRCJGYkOhsoQiAxLjAwMA==?= Organization: =?iso-2022-jp?B?T05HUyAbJEIzK0gvSXQbKEI=?= Mime-Version: 1.0 Message-ID: <84685610.962311211483.JavaMail.daichi@localhost> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org You are great Maruyama-san! > Hi, Maruyama-san > > > To use this patch, you need to do: > > 1) cd ext/i18n/build > ... [snip] ... > > 14) gmake ext-all > > gmake release-images also ok. > > Great! > > I tried to test Ichitaro-Ark which is very famouse XML editor > which supported Japanese language (but also work English fine ;-). > It seem work fine include Japanese conversion, serach, replace. Just I read the mail, I tried it and my face got smile :) Ark works fine. There is not segmentation error. very nice. But there is some problems. o I cannot input Japanese with xwnmo (Wnn6) o System Dialog Button cannot representate Japanese String o Some other application cannot represantate Japanese String. I'll be trying to get cause of this problem. And I'll report again. Daichi T.GOTO(ONGS) http://www.ongs.net/daichi, daichi@ongs.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 30 0: 3:51 2000 Delivered-To: freebsd-java@freebsd.org Received: from tohokugw.tohoku.iij.ad.jp (tohokugw.tohoku.iij.ad.jp [202.232.14.98]) by hub.freebsd.org (Postfix) with ESMTP id 59E2737C36B for ; Fri, 30 Jun 2000 00:03:48 -0700 (PDT) (envelope-from taguchi@tohoku.iij.ad.jp) Received: by tohokugw.tohoku.iij.ad.jp; id QAA15422; Fri, 30 Jun 2000 16:03:43 +0900 (JST) From: Received: from hirose.tohoku.iij.ad.jp(192.168.144.2) by tohokugw.tohoku.iij.ad.jp via smap (V4.2) id xma015420; Fri, 30 Jun 00 16:03:37 +0900 Received: from hirose.tohoku.iij.ad.jp (localhost [127.0.0.1]) by hirose.tohoku.iij.ad.jp (8.9.3/3.7W99113014) with ESMTP id QAA76945 for ; Fri, 30 Jun 2000 16:03:59 +0900 (JST) Date: Fri, 30 Jun 2000 16:03:58 +0900 Message-ID: To: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem In-Reply-To: In your message of "Fri, 30 Jun 2000 00:45:25 +0930" <20000630004525.B17961@ares.trc.adelaide.edu.au> References: <20000624114823.A98789@ares.trc.adelaide.edu.au> <20000629115550F.maruyama@is.titech.ac.jp> <20000629164513N.maruyama@is.titech.ac.jp> <20000630004525.B17961@ares.trc.adelaide.edu.au> User-Agent: Wanderlust/2.2.12 (Joyride) EMIKO/1.13.9 (Euglena tripteris) FLIM/1.13.2 (Kasanui) Emacs/20.6 (i386--freebsd) MULE/4.0 (HANANOEN) MIME-Version: 1.0 (generated by EMIKO 1.13.9 - "Euglena tripteris") Content-Type: text/plain; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, Greg. > > Following is my current (I made it 1 hours ago ;-) font.properties.ja. > > This is based on FreeBSD patch's one. > > So I think it has upper compatibility to C locale's one. > > Taguchi-san and others, is this a better font.properties.ja than the one > that the FreeBSD build currently uses? That is, should the one that is > currently being used be replaced? If you say about font.properties which included current patch set, Do not remove it, please! It's good one for C locale users. File font.properties.ja is a Japanese version of a font.properties.* file which placed on src/freebsd/classes/sun/awt/motif/font.properties.ja. This directory contains some font.properties.* file for i18n users. But all of them are for Solaris 2.6, not for FreeBSD. I think some of them will also work under FreeBSD, but some of them will be not. So we must make/modify FreeBSD version. Hey, all i18n users! Let's make/contribute font.properties.* file for our locales! Thanks. -- Taguchi, T. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 30 2:46:33 2000 Delivered-To: freebsd-java@freebsd.org Received: from mbg.sphere.ne.jp (mbg.sphere.ne.jp [203.138.71.44]) by hub.freebsd.org (Postfix) with ESMTP id 833DD37B78E for ; Fri, 30 Jun 2000 02:46:31 -0700 (PDT) (envelope-from daichi@ongs.net) Received: from localhost (pl229.nas511.a-nagoya.nttpc.ne.jp [210.139.68.229]) by mbg.sphere.ne.jp (8.9.3+3.2W/3.7W) with ESMTP id SAA06581 for ; Fri, 30 Jun 2000 18:46:29 +0900 (JST) Date: Fri, 30 Jun 2000 18:47:15 +0900 (JST) From: "Daichi T.GOTO" To: freebsd-java@FreeBSD.ORG Subject: patchset9 test: ImputMethod report In-Reply-to: <84685610.962311211483.JavaMail.daichi@localhost> Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Mailer: =?iso-2022-jp?B?GyRCJGYkOhsoQiAxLjAwMA==?= Organization: =?iso-2022-jp?B?T05HUyAbJEIzK0gvSXQbKEI=?= Mime-Version: 1.0 Message-ID: <84688635.962358435608.JavaMail.daichi@localhost> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > But there is some problems. > o I cannot input Japanese with xwnmo (Wnn6) > o System Dialog Button cannot representate Japanese String > o Some other application cannot represantate Japanese String. > I'll be trying to get cause of this problem. And I'll report again. I tried to test 3 Japanese input methods using Ark. Result is follow: o Xwnmo(Wnn6): disable o kinput2 ver.3: enable o vje-3.0: enable Maybe this problem is depended on Xwnmoself. I'll report this problem to OMRON. Daichi T.GOTO(ONGS) http://www.ongs.net/daichi, daichi@ongs.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 30 3:54: 3 2000 Delivered-To: freebsd-java@freebsd.org Received: from procsys.com (PPP-191-93.bng.vsnl.net.in [203.197.191.93]) by hub.freebsd.org (Postfix) with SMTP id B326A37B85E for ; Fri, 30 Jun 2000 03:53:54 -0700 (PDT) (envelope-from pran@procsys.com) Received: from procsys.com ([192.168.1.115]) by procsys.com with SMTP; Fri, 30 Jun 2000 16:26:39 +0800 Message-ID: <395C7CEF.C31B0487@procsys.com> Date: Fri, 30 Jun 2000 16:26:47 +0530 From: Pran Joseph Reply-To: pran@procsys.com Organization: Processor Systems (India) Pvt. Ltd X-Mailer: Mozilla 4.7 [en] (WinNT; I) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-java@freebsd.org Subject: Applet and Window Managers Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I have feebsd 3.4 machine with jdk1.1.8 installed. My problem is that I have a applet which runs fine in twm/After step window manager .The same applet is not working in other managers like KDE and GNOME . In KDE and GNOME the applet get stuck when I try to create the frame.Frame is extended from JFrame and contains JMenu,JTree,JPanel etc. I am using swing 1.1.1 which I downloded from sun web site. I have included the soucre at the end of this mail. -Pran public class Applet1 extends JApplet { boolean isStandalone = false; MyFrame frame = null; public String getParameter(String key, String def) { return isStandalone ? System.getProperty(key, def) : (getParameter(key) != null ? getParameter(key) : def); } public static void main(String args[]) { Applet1 myApplet = new Applet1(); myApplet.init(); myApplet.start(); } //Construct the applet public Applet1() { } public void init() { try { jbInit(); frame = new MyFrame(); //the applet is excuting till this line frame.pack(); } catch(Exception e) { e.printStackTrace(); } } //Component initialization private void jbInit() throws Exception { this.setSize(new Dimension(10,10)); } public String getAppletInfo() { return "Test Applet"; } public String[][] getParameterInfo() { return null; } static { try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) {} } public void start() { frame.setVisible(true); } } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 30 5:28: 7 2000 Delivered-To: freebsd-java@freebsd.org Received: from cfdnet.me.tuns.ca (CFDnet.me.TUNS.Ca [134.190.50.164]) by hub.freebsd.org (Postfix) with ESMTP id 26E6B37B99D for ; Fri, 30 Jun 2000 05:28:03 -0700 (PDT) (envelope-from freebsd@cfdnet.me.tuns.ca) Received: from localhost (freebsd@localhost) by cfdnet.me.tuns.ca (8.9.3/8.9.3) with ESMTP id JAA20210; Fri, 30 Jun 2000 09:23:31 -0300 (ADT) (envelope-from freebsd@cfdnet.me.tuns.ca) Date: Fri, 30 Jun 2000 09:23:31 -0300 (ADT) From: Theo Bell To: Pran Joseph Cc: freebsd-java@FreeBSD.ORG Subject: Re: Applet and Window Managers In-Reply-To: <395C7CEF.C31B0487@procsys.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I use jdk1.1.8 as well on FreeBSD 3.4. I also have a java applet. I have never experienced your problems but in my Java code (which I inherited from a previous developer) there are references to a "java bug" to do with pack(); The code I have calls pack in a loop and packs until the bounds stop changing. I have no idea if this is related to your problem, but I just thought I suggest it. I have included a few lines of my code for reference. Theo Bell CFDnet.com ------------------------------------------------------------------------ /* because of a java bug, pack until the getBounds() stop changing... */ setResizable(true); Rectangle r; do { r=getBounds(); pack(); } while(!(r.equals(getBounds()))); setResizable(false); show(); ----------------------------------------------------------------------------- On Fri, 30 Jun 2000, Pran Joseph wrote: > Hi, > > I have feebsd 3.4 machine with jdk1.1.8 installed. > > My problem is that I have a applet which runs fine in twm/After step > window manager .The same applet is not working in other managers like > KDE and GNOME . > > In KDE and GNOME the applet get stuck when I try to create the > frame.Frame is extended from JFrame and contains JMenu,JTree,JPanel > etc. I am using swing 1.1.1 which I downloded from sun web site. I have > included the soucre at the end of this mail. > > -Pran > > public class Applet1 extends JApplet > { > boolean isStandalone = false; > MyFrame frame = null; > > public String getParameter(String key, String def) > { > return isStandalone ? System.getProperty(key, def) : > (getParameter(key) != null ? getParameter(key) : def); > } > public static void main(String args[]) > { > Applet1 myApplet = new Applet1(); > myApplet.init(); > myApplet.start(); > } > > //Construct the applet > public Applet1() { > } > > public void init() { > try { > jbInit(); > > frame = new MyFrame(); //the applet is excuting till this line > > frame.pack(); > } > catch(Exception e) { > e.printStackTrace(); > } > } > > //Component initialization > private void jbInit() throws Exception { > this.setSize(new Dimension(10,10)); > } > > public String getAppletInfo() { > return "Test Applet"; > } > public String[][] getParameterInfo() { > return null; > } > static { > try { > UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); > } > catch (Exception e) {} > } > > public void start() > { > frame.setVisible(true); > } > } > > > > > > > > > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Jun 30 19:33:24 2000 Delivered-To: freebsd-java@freebsd.org Received: from VisXTC.visualxtc.com (ivyweb.net [209.133.27.190]) by hub.freebsd.org (Postfix) with ESMTP id 1309B37B633 for ; Fri, 30 Jun 2000 19:33:21 -0700 (PDT) (envelope-from dennis@megarry.com) Received: from megarry (wave-ras1-1-cs-26.dial.bright.net [216.201.2.29]) by VisXTC.visualxtc.com (8.9.2/8.9.2) with SMTP id TAA04496 for ; Fri, 30 Jun 2000 19:46:11 GMT (envelope-from dennis@megarry.com) Reply-To: From: "Dennis Megarry" To: Subject: SIGSEGV Error Date: Fri, 30 Jun 2000 22:34:35 -0400 Message-ID: <000301bfe304$e53fa0f0$1d02c9d8@megarry> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I have installed v4.0-RELEASE SMP kernel, everything works fine excpet for jdk1.1.8! ARGH!! When I try to run a java file or just run "javac" I get this error: SIGSEGV 11* segmentation violation Full thread dump: Monitor Cache Dump: Registered Monitor Dump: Monitor IO lock: Child death monitor: Event monitor: I/O monitor: Alarm monitor: Memory allocation lock: Monitor registry: Thread Alarm Q: Abort trap - core dumped Anyone have any ideas on what is going wrong? Dennis Megarry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jul 1 13:42: 8 2000 Delivered-To: freebsd-java@freebsd.org Received: from mbg.sphere.ne.jp (mbg.sphere.ne.jp [203.138.71.44]) by hub.freebsd.org (Postfix) with ESMTP id 5DEF337BA24 for ; Sat, 1 Jul 2000 13:42:02 -0700 (PDT) (envelope-from daichi@ongs.net) Received: from localhost (pl126.nas511.a-nagoya.nttpc.ne.jp [210.139.68.126]) by mbg.sphere.ne.jp (8.9.3+3.2W/3.7W) with ESMTP id FAA03281 for ; Sun, 2 Jul 2000 05:41:56 +0900 (JST) Date: Sun, 2 Jul 2000 05:42:41 +0900 (JST) From: "Daichi T.GOTO" To: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem In-Reply-to: <84685610.962311211483.JavaMail.daichi@localhost> Content-Type: multipart/mixed; boundary=84705116.962484039197.JavaMail.daichi.localhost Content-Transfer-Encoding: 7bit X-Mailer: =?iso-2022-jp?B?GyRCJGYkOhsoQiAxLjAwMA==?= Organization: =?iso-2022-jp?B?T05HUyAbJEIzK0gvSXQbKEI=?= Mime-Version: 1.0 Message-ID: <84723395.962484161680.JavaMail.daichi@localhost> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org --84705116.962484039197.JavaMail.daichi.localhost Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit > But there is some problems. > o I cannot input Japanese with xwnmo (Wnn6) > o System Dialog Button cannot representate Japanese String > o Some other application cannot represantate Japanese String. > I'll be trying to get cause of this problem. And I'll report again. Good news :) I disvovered the cause of this problem. JDK122 Font system seems to be different from JDK11x's one. So I made the new font.properties.ja file to representate PLAIN, ITALIC, BOLD and BOLDITALIC style Japanese font. I attach new font.properties.ja file. You can get representation of Japanese String with full style. Please contain this file into FreeBSD JDK122-patch file. Daichi T.GOTO(ONGS) http://www.ongs.net/daichi, daichi@ongs.net --84705116.962484039197.JavaMail.daichi.localhost Content-Type: Application/Octet-Stream Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=font.properties.ja IwojIEAoIylmb250LnByb3BlcnRpZXMJMS4xMiA5OC8xMC8yMgojCiMgQ29weXJpZ2h0IDE5OTgg YnkgU3VuIE1pY3Jvc3lzdGVtcywgSW5jLiwKIyA5MDEgU2FuIEFudG9uaW8gUm9hZCwgUGFsbyBB bHRvLCBDYWxpZm9ybmlhLCA5NDMwMywgVS5TLkEuCiMgQWxsIHJpZ2h0cyByZXNlcnZlZC4KIwoj IFRoaXMgc29mdHdhcmUgaXMgdGhlIGNvbmZpZGVudGlhbCBhbmQgcHJvcHJpZXRhcnkgaW5mb3Jt YXRpb24KIyBvZiBTdW4gTWljcm9zeXN0ZW1zLCBJbmMuICgiQ29uZmlkZW50aWFsIEluZm9ybWF0 aW9uIikuICBZb3UKIyBzaGFsbCBub3QgZGlzY2xvc2Ugc3VjaCBDb25maWRlbnRpYWwgSW5mb3Jt YXRpb24gYW5kIHNoYWxsIHVzZQojIGl0IG9ubHkgaW4gYWNjb3JkYW5jZSB3aXRoIHRoZSB0ZXJt cyBvZiB0aGUgbGljZW5zZSBhZ3JlZW1lbnQKIyB5b3UgZW50ZXJlZCBpbnRvIHdpdGggU3VuLgoj CgojCiMgQVdUIEZvbnQgZGVmYXVsdCBQcm9wZXJ0aWVzIGZvciBGcmVlQlNECiMKCiMgU2VyaWYg Zm9udCBkZWZpbml0aW9uCiMKc2VyaWYuMD0tYiZoLWx1Y2lkYWJyaWdodC1tZWRpdW0tci1ub3Jt YWwtLSotJWQtKi0qLXAtKi1pc284ODU5LTEKc2VyaWYuMT0tKi1taW5jaG8tbWVkaXVtLXItbm9y bWFsLS0qLSVkLSotKi1jLSotamlzeDAyMDguMTk4My0wCnNlcmlmLjI9LSotemFwZiBkaW5nYmF0 cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmljCnNlcmlm LjM9LSotc3ltYm9sLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotcC0qLWFkb2JlLWZvbnRzcGVj aWZpYwoKc2VyaWYuaXRhbGljLjA9LWImaC1sdWNpZGFicmlnaHQtbWVkaXVtLWktbm9ybWFsLS0q LSVkLSotKi1wLSotaXNvODg1OS0xCnNlcmlmLml0YWxpYy4xPS0qLW1pbmNoby1tZWRpdW0tci1u b3JtYWwtLSotJWQtKi0qLWMtKi1qaXN4MDIwOC4xOTgzLTAKc2VyaWYuaXRhbGljLjI9LSotemFw ZiBkaW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNp ZmljCnNlcmlmLml0YWxpYy4zPS0qLXN5bWJvbC1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLXAt Ki1hZG9iZS1mb250c3BlY2lmaWMKCnNlcmlmLmJvbGQuMD0tYiZoLWx1Y2lkYWJyaWdodC1kZW1p Ym9sZC1yLW5vcm1hbC0tKi0lZC0qLSotcC0qLWlzbzg4NTktMQpzZXJpZi5ib2xkLjE9LSotbWlu Y2hvLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotYy0qLWppc3gwMjA4LjE5ODMtMApzZXJpZi5i b2xkLjI9LSotemFwZiBkaW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVkLSotKi1wLSotYWRv YmUtZm9udHNwZWNpZmljCnNlcmlmLmJvbGQuMz0tKi1zeW1ib2wtbWVkaXVtLXItbm9ybWFsLS0q LSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmljCgpzZXJpZi5ib2xkaXRhbGljLjA9LWImaC1s dWNpZGFicmlnaHQtZGVtaWJvbGQtaS1ub3JtYWwtLSotJWQtKi0qLXAtKi1pc284ODU5LTEKc2Vy aWYuYm9sZGl0YWxpYy4xPS0qLW1pbmNoby1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLWMtKi1q aXN4MDIwOC4xOTgzLTAKc2VyaWYuYm9sZGl0YWxpYy4yPS0qLXphcGYgZGluZ2JhdHMtbWVkaXVt LXItbm9ybWFsLSotKi0lZC0qLSotcC0qLWFkb2JlLWZvbnRzcGVjaWZpYwpzZXJpZi5ib2xkaXRh bGljLjM9LSotc3ltYm9sLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotcC0qLWFkb2JlLWZvbnRz cGVjaWZpYwoKIyBTYW5zU2VyaWYgZm9udCBkZWZpbml0aW9uCiMKc2Fuc3NlcmlmLjA9LWImaC1s dWNpZGFzYW5zLW1lZGl1bS1yLW5vcm1hbC1zYW5zLSotJWQtKi0qLXAtKi1pc284ODU5LTEKc2Fu c3NlcmlmLjE9LSotZ290aGljLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotYy0qLWppc3gwMjA4 LjE5ODMtMApzYW5zc2VyaWYuMj0tKi16YXBmIGRpbmdiYXRzLW1lZGl1bS1yLW5vcm1hbC0qLSot JWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKc2Fuc3NlcmlmLjM9LSotc3ltYm9sLW1lZGl1 bS1yLW5vcm1hbC0tKi0lZC0qLSotcC0qLWFkb2JlLWZvbnRzcGVjaWZpYwoKc2Fuc3NlcmlmLml0 YWxpYy4wPS1iJmgtbHVjaWRhc2Fucy1tZWRpdW0taS1ub3JtYWwtc2Fucy0qLSVkLSotKi1wLSot aXNvODg1OS0xCnNhbnNzZXJpZi5pdGFsaWMuMT0tKi1nb3RoaWMtbWVkaXVtLXItbm9ybWFsLS0q LSVkLSotKi1jLSotamlzeDAyMDguMTk4My0wCnNhbnNzZXJpZi5pdGFsaWMuMj0tKi16YXBmIGRp bmdiYXRzLW1lZGl1bS1yLW5vcm1hbC0qLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMK c2Fuc3NlcmlmLml0YWxpYy4zPS0qLXN5bWJvbC1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLXAt Ki1hZG9iZS1mb250c3BlY2lmaWMKCnNhbnNzZXJpZi5ib2xkLjA9LWImaC1sdWNpZGFzYW5zLWJv bGQtci1ub3JtYWwtc2Fucy0qLSVkLSotKi1wLSotaXNvODg1OS0xCnNhbnNzZXJpZi5ib2xkLjE9 LSotZ290aGljLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotYy0qLWppc3gwMjA4LjE5ODMtMApz YW5zc2VyaWYuYm9sZC4yPS0qLXphcGYgZGluZ2JhdHMtbWVkaXVtLXItbm9ybWFsLSotKi0lZC0q LSotcC0qLWFkb2JlLWZvbnRzcGVjaWZpYwpzYW5zc2VyaWYuYm9sZC4zPS0qLXN5bWJvbC1tZWRp dW0tci1ub3JtYWwtLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKCnNhbnNzZXJpZi5i b2xkaXRhbGljLjA9LWImaC1sdWNpZGFzYW5zLWJvbGQtaS1ub3JtYWwtc2Fucy0qLSVkLSotKi1w LSotaXNvODg1OS0xCnNhbnNzZXJpZi5ib2xkaXRhbGljLjE9LSotZ290aGljLW1lZGl1bS1yLW5v cm1hbC0tKi0lZC0qLSotYy0qLWppc3gwMjA4LjE5ODMtMApzYW5zc2VyaWYuYm9sZGl0YWxpYy4y PS0qLXphcGYgZGluZ2JhdHMtbWVkaXVtLXItbm9ybWFsLSotKi0lZC0qLSotcC0qLWFkb2JlLWZv bnRzcGVjaWZpYwpzYW5zc2VyaWYuYm9sZGl0YWxpYy4zPS0qLXN5bWJvbC1tZWRpdW0tci1ub3Jt YWwtLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKCiMgTW9ub3NwYWNlZCBmb250IGRl ZmluaXRpb24KIwptb25vc3BhY2VkLjA9LWImaC1sdWNpZGF0eXBld3JpdGVyLW1lZGl1bS1yLW5v cm1hbC1zYW5zLSotJWQtKi0qLW0tKi1pc284ODU5LTEKbW9ub3NwYWNlZC4xPS0qLWdvdGhpYy1t ZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLWMtKi1qaXN4MDIwOC4xOTgzLTAKbW9ub3NwYWNlZC4y PS0qLXphcGYgZGluZ2JhdHMtbWVkaXVtLXItbm9ybWFsLSotKi0lZC0qLSotcC0qLWFkb2JlLWZv bnRzcGVjaWZpYwptb25vc3BhY2VkLjM9LSotc3ltYm9sLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0q LSotcC0qLWFkb2JlLWZvbnRzcGVjaWZpYwoKbW9ub3NwYWNlZC5pdGFsaWMuMD0tYiZoLWx1Y2lk YXR5cGV3cml0ZXItbWVkaXVtLXItbm9ybWFsLXNhbnMtKi0lZC0qLSotbS0qLWlzbzg4NTktMQpt b25vc3BhY2VkLml0YWxpYy4xPS0qLWdvdGhpYy1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLWMt Ki1qaXN4MDIwOC4xOTgzLTAKbW9ub3NwYWNlZC5pdGFsaWMuMj0tKi16YXBmIGRpbmdiYXRzLW1l ZGl1bS1yLW5vcm1hbC0qLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKbW9ub3NwYWNl ZC5pdGFsaWMuMz0tKi1zeW1ib2wtbWVkaXVtLXItbm9ybWFsLS0qLSVkLSotKi1wLSotYWRvYmUt Zm9udHNwZWNpZmljCgptb25vc3BhY2VkLmJvbGQuMD0tYiZoLWx1Y2lkYXR5cGV3cml0ZXItYm9s ZC1yLW5vcm1hbC1zYW5zLSotJWQtKi0qLW0tKi1pc284ODU5LTEKbW9ub3NwYWNlZC5ib2xkLjE9 LSotZ290aGljLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotYy0qLWppc3gwMjA4LjE5ODMtMApt b25vc3BhY2VkLmJvbGQuMj0tKi16YXBmIGRpbmdiYXRzLW1lZGl1bS1yLW5vcm1hbC0qLSotJWQt Ki0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKbW9ub3NwYWNlZC5ib2xkLjM9LSotc3ltYm9sLW1l ZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotcC0qLWFkb2JlLWZvbnRzcGVjaWZpYwoKbW9ub3NwYWNl ZC5ib2xkaXRhbGljLjA9LWImaC1sdWNpZGF0eXBld3JpdGVyLWJvbGQtci1ub3JtYWwtc2Fucy0q LSVkLSotKi1tLSotaXNvODg1OS0xCm1vbm9zcGFjZWQuYm9sZGl0YWxpYy4xPS0qLWdvdGhpYy1t ZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLWMtKi1qaXN4MDIwOC4xOTgzLTAKbW9ub3NwYWNlZC5i b2xkaXRhbGljLjI9LSotemFwZiBkaW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVkLSotKi1w LSotYWRvYmUtZm9udHNwZWNpZmljCm1vbm9zcGFjZWQuYm9sZGl0YWxpYy4zPS0qLXN5bWJvbC1t ZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKCiMgRGlhbG9n IGZvbnQgZGVmaW5pdGlvbgojCmRpYWxvZy4wPS1iJmgtbHVjaWRhc2Fucy1tZWRpdW0tci1ub3Jt YWwtc2Fucy0qLSVkLSotKi1wLSotaXNvODg1OS0xCmRpYWxvZy4xPS0qLWdvdGhpYy1tZWRpdW0t ci1ub3JtYWwtLSotJWQtKi0qLWMtKi1qaXN4MDIwOC4xOTgzLTAKZGlhbG9nLjI9LSotemFwZiBk aW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmlj CmRpYWxvZy4zPS0qLXN5bWJvbC1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLXAtKi1hZG9iZS1m b250c3BlY2lmaWMKCmRpYWxvZy5pdGFsaWMuMD0tYiZoLWx1Y2lkYXNhbnMtbWVkaXVtLWktbm9y bWFsLXNhbnMtKi0lZC0qLSotcC0qLWlzbzg4NTktMQpkaWFsb2cuaXRhbGljLjE9LSotZ290aGlj LW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotYy0qLWppc3gwMjA4LjE5ODMtMApkaWFsb2cuaXRh bGljLjI9LSotemFwZiBkaW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVkLSotKi1wLSotYWRv YmUtZm9udHNwZWNpZmljCmRpYWxvZy5pdGFsaWMuMz0tKi1zeW1ib2wtbWVkaXVtLXItbm9ybWFs LS0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmljCgpkaWFsb2cuYm9sZC4wPS1iJmgtbHVj aWRhc2Fucy1ib2xkLXItbm9ybWFsLXNhbnMtKi0lZC0qLSotcC0qLWlzbzg4NTktMQpkaWFsb2cu Ym9sZC4xPS0qLWdvdGhpYy1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLWMtKi1qaXN4MDIwOC4x OTgzLTAKZGlhbG9nLmJvbGQuMj0tKi16YXBmIGRpbmdiYXRzLW1lZGl1bS1yLW5vcm1hbC0qLSot JWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKZGlhbG9nLmJvbGQuMz0tKi1zeW1ib2wtbWVk aXVtLXItbm9ybWFsLS0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmljCgpkaWFsb2cuYm9s ZGl0YWxpYy4wPS1iJmgtbHVjaWRhc2Fucy1ib2xkLWktbm9ybWFsLXNhbnMtKi0lZC0qLSotcC0q LWlzbzg4NTktMQpkaWFsb2cuYm9sZGl0YWxpYy4xPS0qLWdvdGhpYy1tZWRpdW0tci1ub3JtYWwt LSotJWQtKi0qLWMtKi1qaXN4MDIwOC4xOTgzLTAKZGlhbG9nLmJvbGRpdGFsaWMuMj0tKi16YXBm IGRpbmdiYXRzLW1lZGl1bS1yLW5vcm1hbC0qLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lm aWMKZGlhbG9nLmJvbGRpdGFsaWMuMz0tKi1zeW1ib2wtbWVkaXVtLXItbm9ybWFsLS0qLSVkLSot Ki1wLSotYWRvYmUtZm9udHNwZWNpZmljCgojIERpYWxvZ0lucHV0IGZvbnQgZGVmaW5pdGlvbgoj CmRpYWxvZ2lucHV0LjA9LWImaC1sdWNpZGF0eXBld3JpdGVyLW1lZGl1bS1yLW5vcm1hbC1zYW5z LSotJWQtKi0qLW0tKi1pc284ODU5LTEKZGlhbG9naW5wdXQuMT0tKi1taW5jaG8tbWVkaXVtLXIt bm9ybWFsLS0qLSVkLSotKi1jLSotamlzeDAyMDguMTk4My0wCmRpYWxvZ2lucHV0LjI9LSotemFw ZiBkaW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNp ZmljCmRpYWxvZ2lucHV0LjM9LSotc3ltYm9sLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotcC0q LWFkb2JlLWZvbnRzcGVjaWZpYwoKZGlhbG9naW5wdXQuaXRhbGljLjA9LWImaC1sdWNpZGF0eXBl d3JpdGVyLW1lZGl1bS1yLW5vcm1hbC1zYW5zLSotJWQtKi0qLW0tKi1pc284ODU5LTEKZGlhbG9n aW5wdXQuaXRhbGljLjE9LSotbWluY2hvLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotYy0qLWpp c3gwMjA4LjE5ODMtMApkaWFsb2dpbnB1dC5pdGFsaWMuMj0tKi16YXBmIGRpbmdiYXRzLW1lZGl1 bS1yLW5vcm1hbC0qLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKZGlhbG9naW5wdXQu aXRhbGljLjM9LSotc3ltYm9sLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotcC0qLWFkb2JlLWZv bnRzcGVjaWZpYwoKZGlhbG9naW5wdXQuYm9sZC4wPS1iJmgtbHVjaWRhdHlwZXdyaXRlci1ib2xk LXItbm9ybWFsLXNhbnMtKi0lZC0qLSotbS0qLWlzbzg4NTktMQpkaWFsb2dpbnB1dC5ib2xkLjE9 LSotbWluY2hvLW1lZGl1bS1yLW5vcm1hbC0tKi0lZC0qLSotYy0qLWppc3gwMjA4LjE5ODMtMApk aWFsb2dpbnB1dC5ib2xkLjI9LSotemFwZiBkaW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtKi0qLSVk LSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmljCmRpYWxvZ2lucHV0LmJvbGQuMz0tKi1zeW1ib2wt bWVkaXVtLXItbm9ybWFsLS0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmljCgpkaWFsb2dp bnB1dC5ib2xkaXRhbGljLjA9LWImaC1sdWNpZGF0eXBld3JpdGVyLWJvbGQtci1ub3JtYWwtc2Fu cy0qLSVkLSotKi1tLSotaXNvODg1OS0xCmRpYWxvZ2lucHV0LmJvbGRpdGFsaWMuMT0tKi1taW5j aG8tbWVkaXVtLXItbm9ybWFsLS0qLSVkLSotKi1jLSotamlzeDAyMDguMTk4My0wCmRpYWxvZ2lu cHV0LmJvbGRpdGFsaWMuMj0tKi16YXBmIGRpbmdiYXRzLW1lZGl1bS1yLW5vcm1hbC0qLSotJWQt Ki0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKZGlhbG9naW5wdXQuYm9sZGl0YWxpYy4zPS0qLXN5 bWJvbC1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLXAtKi1hZG9iZS1mb250c3BlY2lmaWMKCiMg RGVmYXVsdCBmb250IGRlZmluaXRpb24KIwpkZWZhdWx0LmNoYXI9Mjc0ZgoKIyBuYW1lIGFsaWFz ZXMKIwphbGlhcy50aW1lc3JvbWFuPXNlcmlmCmFsaWFzLmhlbHZldGljYT1zYW5zc2VyaWYKYWxp YXMuY291cmllcj1tb25vc3BhY2VkCgojIGZvciBiYWNrd2FyZCBjb21wYXRpYmlsaXR5CnphcGZk aW5nYmF0cy4wPS0temFwZiBkaW5nYmF0cy1tZWRpdW0tci1ub3JtYWwtLSotJWQtKi0qLXAtKi1h ZG9iZS1mb250c3BlY2lmaWMKCiMgU3RhdGljIEZvbnRDaGFyc2V0IGluZm8uCiMKIyBUaGlzIGlu Zm9ybWF0aW9uIGlzIHVzZWQgYnkgdGhlIGZvbnQgd2hpY2ggaXMgbm90IGluZGV4ZWQgYnkgVW5p Y29kZS4KIyBTdWNoIGZvbnRzIGNhbiB1c2UgdGhlaXIgb3duIHN1YmNsYXNzIG9mIEZvbnRDaGFy c2V0LgojCiMgVGhpcyBpbmZvcm1hdGlvbiBjYW4gYmUgb3ZlcnJpZGVuIGJ5IGRlc2NyaWJpbmcg bW9yZSBzcGVjaWZpYyBzdHlsZS4KIyBGb3IgZXhhbXBsZQojCiMgIGZvbnRjaGFyc2V0LnNlcmlm LnBsYWluLjM9U3BlY2lhbFN5bWJvbHMKIyAgbWVhbnMgc2VyaWYucGxhaW4uMyBmb250J3MgaW5k ZXggY2FuIGJlIHJldHJpZXZlZCB3aXRoIHRoZSBjb252ZXJ0KCkgbWV0aG9kCiMgIG9mIGluc3Rh bmNlIG9mIFNwZWNpYWxTeW1ib2xzIGFuZCB3aGF0IGtpbmQgb2YgY2hhcmFjdGVycyBzZXJpZi5w bGFpbi4zIGZvbnQKIyAgaGFzIGNhbiBiZSBqdWRnZWQgd2l0aCB0aGUgaXNDb3ZlcmVkKCkgbWV0 aG9kIG9mIGluc3RhbmNlIG9mIFNwZWNpYWxTeW1ib2xzLgojCmZvbnRjaGFyc2V0LnNlcmlmLjA9 c3VuLmlvLkNoYXJUb0J5dGVJU084ODU5XzEKZm9udGNoYXJzZXQuc2VyaWYuMT1zdW4uYXd0Lm1v dGlmLkNoYXJUb0J5dGVYMTFKSVMwMjA4CmZvbnRjaGFyc2V0LnNlcmlmLjI9c3VuLmF3dC5tb3Rp Zi5DaGFyVG9CeXRlWDExRGluZ2JhdHMKZm9udGNoYXJzZXQuc2VyaWYuMz1zdW4uYXd0LkNoYXJU b0J5dGVTeW1ib2wKCmZvbnRjaGFyc2V0LnNhbnNzZXJpZi4wPXN1bi5pby5DaGFyVG9CeXRlSVNP ODg1OV8xCmZvbnRjaGFyc2V0LnNhbnNzZXJpZi4xPXN1bi5hd3QubW90aWYuQ2hhclRvQnl0ZVgx MUpJUzAyMDgKZm9udGNoYXJzZXQuc2Fuc3NlcmlmLjI9c3VuLmF3dC5tb3RpZi5DaGFyVG9CeXRl WDExRGluZ2JhdHMKZm9udGNoYXJzZXQuc2Fuc3NlcmlmLjM9c3VuLmF3dC5DaGFyVG9CeXRlU3lt Ym9sCgpmb250Y2hhcnNldC5tb25vc3BhY2VkLjA9c3VuLmlvLkNoYXJUb0J5dGVJU084ODU5XzEK Zm9udGNoYXJzZXQubW9ub3NwYWNlZC4xPXN1bi5hd3QubW90aWYuQ2hhclRvQnl0ZVgxMUpJUzAy MDgKZm9udGNoYXJzZXQubW9ub3NwYWNlZC4yPXN1bi5hd3QubW90aWYuQ2hhclRvQnl0ZVgxMURp bmdiYXRzCmZvbnRjaGFyc2V0Lm1vbm9zcGFjZWQuMz1zdW4uYXd0LkNoYXJUb0J5dGVTeW1ib2wK CmZvbnRjaGFyc2V0LmRpYWxvZy4wPXN1bi5pby5DaGFyVG9CeXRlSVNPODg1OV8xCmZvbnRjaGFy c2V0LmRpYWxvZy4xPXN1bi5hd3QubW90aWYuQ2hhclRvQnl0ZVgxMUpJUzAyMDgKZm9udGNoYXJz ZXQuZGlhbG9nLjI9c3VuLmF3dC5tb3RpZi5DaGFyVG9CeXRlWDExRGluZ2JhdHMKZm9udGNoYXJz ZXQuZGlhbG9nLjM9c3VuLmF3dC5DaGFyVG9CeXRlU3ltYm9sCgpmb250Y2hhcnNldC5kaWFsb2dp bnB1dC4wPXN1bi5pby5DaGFyVG9CeXRlSVNPODg1OV8xCmZvbnRjaGFyc2V0LmRpYWxvZ2lucHV0 LjE9c3VuLmF3dC5tb3RpZi5DaGFyVG9CeXRlWDExSklTMDIwOApmb250Y2hhcnNldC5kaWFsb2dp bnB1dC4yPXN1bi5hd3QubW90aWYuQ2hhclRvQnl0ZVgxMURpbmdiYXRzCmZvbnRjaGFyc2V0LmRp YWxvZ2lucHV0LjM9c3VuLmF3dC5DaGFyVG9CeXRlU3ltYm9sCgpmb250Y2hhcnNldC56YXBmZGlu Z2JhdHMuMD1zdW4uaW8uQ2hhclRvQnl0ZUlTTzg4NTlfMQoKIyBleGNsdXNpb24gaW5mby4KIwoj IFRoaXMgaW5mb3JtYXRpb24gZGVzY3JpYmUgZXhjbHVzaW9uIHJhbmdlcyBmb3IgZWFjaCBmb250 cy4KIwojICdleGNsdXNpb24uc2VyaWYucGxhaW4uMCcgb3ZlcnJpZGVzICdleGNsdXNpb24uc2Vy aWYuMCcsIGFuZAojICdleGNsdXNpb24uc2VyaWYuMCcgb3ZlcnJpZGVzIGV4Y2x1c2lvbi4wLCBh bmQgc28gb24uCiMKCiMgWEZvbnRTZXQgc3RyaW5nCiMgWDExIG9ubHkgcHJvcGVydGllcwojCgpm b250c2V0LnNlcmlmLnBsYWluPVwKLWImaC1sdWNpZGFicmlnaHQtbWVkaXVtLXItbm9ybWFsLS0q LSVkLSotKi1wLSotaXNvODg1OS0xCgpmb250c2V0LnNlcmlmLml0YWxpYz1cCi1iJmgtbHVjaWRh YnJpZ2h0LW1lZGl1bS1pLW5vcm1hbC0tKi0lZC0qLSotcC0qLWlzbzg4NTktMQoKZm9udHNldC5z ZXJpZi5ib2xkPVwKLWImaC1sdWNpZGFicmlnaHQtZGVtaWJvbGQtci1ub3JtYWwtLSotJWQtKi0q LXAtKi1pc284ODU5LTEKCmZvbnRzZXQuc2VyaWYuYm9sZGl0YWxpYz1cCi1iJmgtbHVjaWRhYnJp Z2h0LWRlbWlib2xkLWktbm9ybWFsLS0qLSVkLSotKi1wLSotaXNvODg1OS0xCgpmb250c2V0LnNh bnNzZXJpZi5pdGFsaWM9XAotYiZoLWx1Y2lkYXNhbnMtbWVkaXVtLWktbm9ybWFsLXNhbnMtKi0l ZC0qLSotcC0qLWlzbzg4NTktMQoKZm9udHNldC5zYW5zc2VyaWYuYm9sZD1cCi1iJmgtbHVjaWRh c2Fucy1ib2xkLXItbm9ybWFsLXNhbnMtKi0lZC0qLSotcC0qLWlzbzg4NTktMQoKZm9udHNldC5z YW5zc2VyaWYuYm9sZGl0YWxpYz1cCi1iJmgtbHVjaWRhc2Fucy1ib2xkLWktbm9ybWFsLXNhbnMt Ki0lZC0qLSotcC0qLWlzbzg4NTktMQoKZm9udHNldC5zYW5zc2VyaWYucGxhaW49XAotYiZoLWx1 Y2lkYXNhbnMtbWVkaXVtLXItbm9ybWFsLXNhbnMtKi0lZC0qLSotcC0qLWlzbzg4NTktMQoKZm9u dHNldC5tb25vc3BhY2VkLml0YWxpYz1cCi1iJmgtbHVjaWRhdHlwZXdyaXRlci1tZWRpdW0tci1u b3JtYWwtc2Fucy0qLSVkLSotKi1tLSotaXNvODg1OS0xCgpmb250c2V0Lm1vbm9zcGFjZWQuYm9s ZD1cCi1iJmgtbHVjaWRhdHlwZXdyaXRlci1ib2xkLXItbm9ybWFsLXNhbnMtKi0lZC0qLSotbS0q LWlzbzg4NTktMQoKZm9udHNldC5tb25vc3BhY2VkLmJvbGRpdGFsaWM9XAotYiZoLWx1Y2lkYXR5 cGV3cml0ZXItYm9sZC1yLW5vcm1hbC1zYW5zLSotJWQtKi0qLW0tKi1pc284ODU5LTEKCmZvbnRz ZXQubW9ub3NwYWNlZC5wbGFpbj1cCi1iJmgtbHVjaWRhdHlwZXdyaXRlci1tZWRpdW0tci1ub3Jt YWwtc2Fucy0qLSVkLSotKi1tLSotaXNvODg1OS0xCgpmb250c2V0LmRpYWxvZy5pdGFsaWM9XAot YiZoLWx1Y2lkYXNhbnMtbWVkaXVtLWktbm9ybWFsLXNhbnMtKi0lZC0qLSotcC0qLWlzbzg4NTkt MQoKZm9udHNldC5kaWFsb2cuYm9sZD1cCi1iJmgtbHVjaWRhc2Fucy1ib2xkLXItbm9ybWFsLXNh bnMtKi0lZC0qLSotcC0qLWlzbzg4NTktMQoKZm9udHNldC5kaWFsb2cuYm9sZGl0YWxpYz1cCi1i JmgtbHVjaWRhc2Fucy1ib2xkLWktbm9ybWFsLXNhbnMtKi0lZC0qLSotcC0qLWlzbzg4NTktMQoK Zm9udHNldC5kaWFsb2cucGxhaW49XAotYiZoLWx1Y2lkYXNhbnMtbWVkaXVtLXItbm9ybWFsLXNh bnMtKi0lZC0qLSotcC0qLWlzbzg4NTktMQoKZm9udHNldC5kaWFsb2dpbnB1dC5pdGFsaWM9XAot YiZoLWx1Y2lkYXR5cGV3cml0ZXItbWVkaXVtLXItbm9ybWFsLXNhbnMtKi0lZC0qLSotbS0qLWlz bzg4NTktMQoKZm9udHNldC5kaWFsb2dpbnB1dC5ib2xkPVwKLWImaC1sdWNpZGF0eXBld3JpdGVy LWJvbGQtci1ub3JtYWwtc2Fucy0qLSVkLSotKi1tLSotaXNvODg1OS0xCgpmb250c2V0LmRpYWxv Z2lucHV0LmJvbGRpdGFsaWM9XAotYiZoLWx1Y2lkYXR5cGV3cml0ZXItYm9sZC1yLW5vcm1hbC1z YW5zLSotJWQtKi0qLW0tKi1pc284ODU5LTEKCmZvbnRzZXQuZGlhbG9naW5wdXQucGxhaW49XAot YiZoLWx1Y2lkYXR5cGV3cml0ZXItbWVkaXVtLXItbm9ybWFsLXNhbnMtKi0lZC0qLSotbS0qLWlz bzg4NTktMQoKZm9udHNldC56YXBmZGluZ2JhdHM9XAotLXphcGYgZGluZ2JhdHMtbWVkaXVtLXIt bm9ybWFsLS0qLSVkLSotKi1wLSotYWRvYmUtZm9udHNwZWNpZmljCgojCmZvbnRzZXQuZGVmYXVs dD1cCi1iJmgtbHVjaWRhc2Fucy1tZWRpdW0tci1ub3JtYWwtc2Fucy0qLSVkLSotKi1wLSotaXNv ODg1OS0xCiMK --84705116.962484039197.JavaMail.daichi.localhost-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jul 1 16:25:21 2000 Delivered-To: freebsd-java@freebsd.org Received: from ares.trc.adelaide.edu.au (ares.trc.adelaide.edu.au [129.127.246.5]) by hub.freebsd.org (Postfix) with ESMTP id 5794837B68A for ; Sat, 1 Jul 2000 16:25:17 -0700 (PDT) (envelope-from glewis@ares.trc.adelaide.edu.au) Received: (from glewis@localhost) by ares.trc.adelaide.edu.au (8.9.3/8.9.3) id IAA45876; Sun, 2 Jul 2000 08:54:53 +0930 (CST) (envelope-from glewis) Date: Sun, 2 Jul 2000 08:54:53 +0930 From: Greg Lewis To: "Daichi T.GOTO" Cc: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem Message-ID: <20000702085453.A45856@ares.trc.adelaide.edu.au> References: <84685610.962311211483.JavaMail.daichi@localhost> <84723395.962484161680.JavaMail.daichi@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 1.0.1i In-Reply-To: <84723395.962484161680.JavaMail.daichi@localhost>; from daichi@ongs.net on Sun, Jul 02, 2000 at 05:42:41AM +0900 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Sun, Jul 02, 2000 at 05:42:41AM +0900, Daichi T.GOTO wrote: > > But there is some problems. > > o I cannot input Japanese with xwnmo (Wnn6) > > o System Dialog Button cannot representate Japanese String > > o Some other application cannot represantate Japanese String. > > I'll be trying to get cause of this problem. And I'll report again. > > Good news :) > I disvovered the cause of this problem. JDK122 Font system seems to be > different from JDK11x's one. So I made the new font.properties.ja file to > representate PLAIN, ITALIC, BOLD and BOLDITALIC style Japanese font. > I attach new font.properties.ja file. You can get representation of Japanese > String with full style. > Please contain this file into FreeBSD JDK122-patch file. Arigato GOTO-san! One question, are the extra fonts easily available? Like as part of the ports system? I would like to be able to list where people can get them from :). -- Greg Lewis glewis@trc.adelaide.edu.au Computing Officer +61 8 8303 5083 Teletraffic Research Centre To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Sat Jul 1 22:30:29 2000 Delivered-To: freebsd-java@freebsd.org Received: from mbg.sphere.ne.jp (mbg.sphere.ne.jp [203.138.71.44]) by hub.freebsd.org (Postfix) with ESMTP id 86FD937BCD6 for ; Sat, 1 Jul 2000 22:30:26 -0700 (PDT) (envelope-from daichi@ongs.net) Received: from localhost (pl218.nas511.a-nagoya.nttpc.ne.jp [210.139.68.218]) by mbg.sphere.ne.jp (8.9.3+3.2W/3.7W) with ESMTP id OAA06593 for ; Sun, 2 Jul 2000 14:30:25 +0900 (JST) Date: Sun, 2 Jul 2000 14:31:15 +0900 (JST) From: =?iso-2022-jp?B?GyRCOGVGI0JnQ08bKEI=?= To: freebsd-java@FreeBSD.ORG Subject: Re: patchset9 test: Japanese Font Problem In-Reply-to: <20000702085453.A45856@ares.trc.adelaide.edu.au> Content-Type: text/plain; charset="iso-2022-jp" Content-Transfer-Encoding: 7bit X-Mailer: =?iso-2022-jp?B?GyRCJGYkOhsoQiAxLjAwMA==?= Organization: =?iso-2022-jp?B?T05HUyAbJEIzK0gvSXQbKEI=?= Mime-Version: 1.0 Message-ID: <84716299.962515875325.JavaMail.daichi@localhost> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Good news :) > > I disvovered the cause of this problem. JDK122 Font system seems to be > > different from JDK11x's one. So I made the new font.properties.ja file to > > representate PLAIN, ITALIC, BOLD and BOLDITALIC style Japanese font. > > I attach new font.properties.ja file. You can get representation of Japanese > > String with full style. > > Please contain this file into FreeBSD JDK122-patch file. > > Arigato GOTO-san! > > One question, are the extra fonts easily available? Like as part of the > ports system? I would like to be able to list where people can get them > from :). Yes, it's easy in ports. People can get it from o /usr/ports/japanese/truetypefonts And, if you use it, you must use XFree86 4.0 over with Xtt module or XFree86 3.x with Xtt-Server or XFree86 3.x with Xtt-FontServer. o XFree86 4.0 over with Xtt module o XFree86 3.x with Xtt-Server o XFree86 3.x with Xtt-FontServer And please add "/usr/X11R6/lib/X11/fonts/TrueType" path into "Files" section of XF86Config file. Daichi T.GOTO(ONGS) http://www.ongs.net/daichi, daichi@ongs.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message