From kde-java@kde.org Mon Apr 1 14:41:13 2002 From: kde-java@kde.org (Werner Punz) Date: Mon, 1 Apr 2002 15:41:13 +0200 Subject: AW: [Kde-java] Packaging an application In-Reply-To: <200203311957.05489.george.russell@clara.net> Message-ID: <0666FBA3EDD0C34DB50ECFD13B29D00E2B8C@cassiopeia.LABOR.local> This is a multi-part message in MIME format. ------=_NextPart_000_000C_01C1D993.A8600710 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I guess a Jar and a proper readme might be the way to do. I also would look into java installers which can be combined with a jar file. -----Ursprungliche Nachricht----- Von: kde-java-admin@mail.kde.org [mailto:kde-java-admin@mail.kde.org]Im Auftrag von George Russell Gesendet: Sonntag, 31. Marz 2002 21:57 An: kde-java@kde.org Betreff: [Kde-java] Packaging an application How do I conviently package up a KDEJava application for end users? Any ideas? Does anyone want to test my Etext reader? http://dogma.freebsd-uk.eu.org/~grrussel George Russell -- 7:55pm up 24 days, 20:45, 2 users, load average: 3.30, 2.17, 1.56 _______________________________________________ Kde-java mailing list Kde-java@mail.kde.org http://mail.kde.org/mailman/listinfo/kde-java ------=_NextPart_000_000C_01C1D993.A8600710 Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: quoted-printable AW: [Kde-java] Packaging an application

I guess a Jar and a proper readme might be the way to = do. I also would look into
java installers which can be combined with a jar = file.



-----Ursprungliche Nachricht-----
Von: kde-java-admin@mail.kde.org [mailto:kde-java-admin@mail.kd= e.org]Im
Auftrag von George Russell
Gesendet: Sonntag, 31. Marz 2002 21:57
An: kde-java@kde.org
Betreff: [Kde-java] Packaging an application


How do I conviently package up a KDEJava application = for end users?
Any ideas?

Does anyone want to test my Etext reader?
http://dogma.freebsd-uk= .eu.org/~grrussel

George Russell
--
  7:55pm  up 24 days, 20:45,  2 = users,  load average: 3.30, 2.17, 1.56

_______________________________________________
Kde-java mailing list
Kde-java@mail.kde.org
http://mail.kde.or= g/mailman/listinfo/kde-java

------=_NextPart_000_000C_01C1D993.A8600710-- From kde-java@kde.org Mon Apr 1 15:08:47 2002 From: kde-java@kde.org (KJ P) Date: Mon, 01 Apr 2002 14:08:47 +0000 Subject: [Kde-java] Packaging an application Message-ID: Hello George Congratulations on your KDEJava application. A jar file would problably be the best way. If you make it an executable jar file do not forget to include the class paths of the qtjava.jar and koala.jar in the jar manifest. That would probably be the best way. Make sure to provide a readme for the library paths as well. Regards Kenneth >From: George Russell >Reply-To: kde-java@kde.org >To: kde-java@kde.org >Subject: [Kde-java] Packaging an application >Date: Sun, 31 Mar 2002 19:57:05 +0000 > >How do I conviently package up a KDEJava application for end users? >Any ideas? > >Does anyone want to test my Etext reader? >http://dogma.freebsd-uk.eu.org/~grrussel > >George Russell >-- > 7:55pm up 24 days, 20:45, 2 users, load average: 3.30, 2.17, 1.56 > >_______________________________________________ >Kde-java mailing list >Kde-java@mail.kde.org >http://mail.kde.org/mailman/listinfo/kde-java _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com From kde-java@kde.org Mon Apr 1 16:43:38 2002 From: kde-java@kde.org (Richard Dale) Date: Mon, 1 Apr 2002 16:43:38 +0100 Subject: [Kde-java] Packaging an application In-Reply-To: <200203311957.05489.george.russell@clara.net> References: <200203311957.05489.george.russell@clara.net> Message-ID: <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> --------------Boundary-00=_QOBWWHGT9VYUM4H4HZ2Y Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit On Sunday 31 March 2002 8:57 pm, George Russell wrote: > How do I conviently package up a KDEJava application for end users? > Any ideas? kdoc is a perl application rather than C++, but it uses 'configure.in' and 'Makefile.in' to build and install, I adapted the same configure files to install kalyptus bindings utility. The gilt install could put a shell script with 'java /KSimpleBrowser' in the kde bin directory, which would start the app in the apps/share directory. eg /opt/kde3/bin/gilt.sh sets up a classpath including /opt/kde3/apps/share/gilt/gilt.jar and calls 'java KSimpleBrowser' I don't know how it works - a lot of the automake/autoconf stuff seems 'black magic' to me. But I've attached the kalyptus Makefile.in and configure.in - I think we need a standard install script like that for java apps, so that people can just './configure ; make ; make install' as usual. > Does anyone want to test my Etext reader? > http://dogma.freebsd-uk.eu.org/~grrussel Looks pretty neat! I'm still rebuilding my system after a gcc/gcj 3.1 test, I'll try it out as soon as I can.. I like the line 'All below this line is obsolete' refering to the previous Swing version. How do you think the code compares? -- Richard --------------Boundary-00=_QOBWWHGT9VYUM4H4HZ2Y Content-Type: text/plain; charset="iso-8859-1"; name="configure.in" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="configure.in" AC_INIT(kalyptus) AC_DEFUN(AC_FIND_PERL, [ AC_MSG_CHECKING(for perl 5 or greater) if $srcdir/findperl; then $1=`cat perlbin` echo $$1 else echo "Couldn't find perl 5 or later. kdoc will not run." exit 1 fi ]) AC_DEFUN(AC_KALYPTUS_VERSION, [ AC_MSG_CHECKING(kalyptus version) $1=`cat $srcdir/Version | sed 's#Revision##g' | tr -d '\$:'` echo $$1 ]) AC_PROG_INSTALL AC_FIND_PERL(perl) AC_SUBST(perl) AC_KALYPTUS_VERSION(Version) AC_SUBST(Version) AC_OUTPUT(Makefile) --------------Boundary-00=_QOBWWHGT9VYUM4H4HZ2Y Content-Type: text/x-makefile; charset="iso-8859-1"; name="Makefile.in" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="Makefile.in" prefix = @prefix@ exec_prefix = @exec_prefix@ perl = @perl@ install = @INSTALL@ bin = kalyptus pm = kdocUtil.pm kdocAstUtil.pm kdocParseDoc.pm kdocLib.pm \ Ast.pm kalyptusDataDict.pm kalyptusCxxToC.pm \ kalyptusCxxToObjc.pm kalyptusCxxToJava.pm kalyptusCxxToRuby.pm \ kalyptusCxxToPerl.pm kalyptusCxxToCSharp.pm \ Iter.pm pmextra = bindir = ${exec_prefix}/bin pmdir = ${prefix}/share/kalyptus srcdocdir= . VERSION=@Version@ all: kalyptus.local kalyptus.local: @srcdir@/kalyptus cp @srcdir@/kalyptus kalyptus.local perl -npi -e 's%^#\!.*$$%#!'${perl}' -I'${pmdir}'%g;' kalyptus.local perl -npi -e 's#\$$Version\\\$$#'"${VERSION}"'#g;' kalyptus.local install: all ${install} -d $(DESTDIR)${bindir} ${install} -m 755 kalyptus.local $(DESTDIR)${bindir}/kalyptus ${install} -d $(DESTDIR)${pmdir} for file in ${pm} ${pmextra}; do \ ${install} -m 644 @srcdir@/$$file $(DESTDIR)${pmdir}; \ done uninstall: (cd $(DESTDIR)${bindir} && rm -f ${bin}) (cd $(DESTDIR)${pmdir} && rm -f ${pm}) -rmdir $(DESTDIR)${bindir} -rmdir $(DESTDIR)${pmdir} clean: rm -f kalyptus.local distclean: clean rm -f Makefile config.status config.log config.cache perlbin srcdoc: pod2html --flush --title KALYPTUS $(bin) $(pm) \ --outfile $(srcdocdir)/kalyptus-doc.html tags: perltags kalyptus *.pm check: @for dir in $(bin) $(pm); do \ echo "** Checking: $$dir"; \ perl -wc $$dir; done --------------Boundary-00=_QOBWWHGT9VYUM4H4HZ2Y-- From kde-java@kde.org Mon Apr 1 16:51:28 2002 From: kde-java@kde.org (Werner Punz) Date: 01 Apr 2002 17:51:28 +0200 Subject: [Kde-java] Packaging an application In-Reply-To: <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> References: <200203311957.05489.george.russell@clara.net> <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> Message-ID: <1017676288.8335.41.camel@wuerg> --=-Xfg8O383qrAtmVCQN4nk Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Am Mon, 2002-04-01 um 17.43 schrieb Richard Dale: > On Sunday 31 March 2002 8:57 pm, George Russell wrote: > > How do I conviently package up a KDEJava application for end users? > > Any ideas? > kdoc is a perl application rather than C++, but it uses 'configure.in' an= d=20 > 'Makefile.in' to build and install, I adapted the same configure files to= =20 > install kalyptus bindings utility. The gilt install could put a shell scr= ipt=20 > with 'java /KSimpleBrowser' in the kde bin directory, which wou= ld=20 > start the app in the apps/share directory. >=20 > eg /opt/kde3/bin/gilt.sh sets up a classpath including=20 > /opt/kde3/apps/share/gilt/gilt.jar and calls 'java KSimpleBrowser' >=20 > I don't know how it works - a lot of the automake/autoconf stuff seems 'b= lack=20 > magic' to me. But I've attached the kalyptus Makefile.in and configure.in= - I=20 > think we need a standard install script like that for java apps, so that=20 > people can just './configure ; make ; make install' as usual. >=20 > > Does anyone want to test my Etext reader? > > http://dogma.freebsd-uk.eu.org/~grrussel > Looks pretty neat! I'm still rebuilding my system after a gcc/gcj 3.1 tes= t,=20 > I'll try it out as soon as I can.. >=20 > I like the line 'All below this line is obsolete' refering to the previou= s=20 > Swing version. How do you think the code compares? >=20 > -- Richard >=20 Mhh Richard, have you looked at jakarta ant, this would be a great tool to do such stuff as make, packaging etc... Also there are several java based graphical installers which could be used (like JEdit uses) this simplifies installing for end users tremendously. I think the installer route could be the way to go in the long term. At least this is java, once the user has a JDK1.2+ up and running the rest could be handled by the installer. A simple jar distribution without a make would also be a good way. Jar + a readme on how to start it java -jar filename.jar would be an ok way to distribute binaries, as well as webstart could be thought as well.=20 --=-Xfg8O383qrAtmVCQN4nk Content-Type: application/pgp-signature; name=signature.asc Content-Description: Dies ist ein digital signierter Nachrichtenteil -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.0.6 (GNU/Linux) Comment: Weitere Infos: siehe http://www.gnupg.org iD8DBQA8qIH/tgNUiOotzkcRAnwFAJ9S4mLjECXCPVLLBcdLIFw/lpVrAQCgp9Bm ONdk9QE6WkBZXPPSAkfmAr0= =AZLs -----END PGP SIGNATURE----- --=-Xfg8O383qrAtmVCQN4nk-- From kde-java@kde.org Mon Apr 1 18:23:31 2002 From: kde-java@kde.org (KJ P) Date: Mon, 01 Apr 2002 17:23:31 +0000 Subject: [Kde-java] Packaging an application Message-ID: Hello >A simple jar distribution without a make would also be a good way. Jar + >a readme on how to start it java -jar filename.jar would be an ok way to >distribute binaries, as well as webstart could be thought as well. How would you find the qtjava.jar and koala.jar files in an executable jar file. They are in different libraries/paths depending on the distribution. These need to be included in the classpath of the of jar file as the following: Manifest-Version: 1.0 Main-Class: main.class.to.execute Class-Path: qtjava.jar koala.jar For executable jar files I have had problems with this because they will then need to be placed in the directory from which the jar file runs or maybe a symbolic link to be set up for the inclusion of these (have not tried the symbolic link yet). The only other way is to hardcode a path and that will not work. These will not be picked up if you specify a classpath when executing a jar file. >distribute binaries, as well as webstart could be thought as well. Webstart also has this limitation as well. The only differenct is is that it will download/install the kde jars only when they change. Then you have these jars all over the place. Please correct me if I am wrong on this and you guys get it working. I would like to know as well. Otherwise the suggestion of Richards looks the most promising so far. Regards Kenneth >From: Werner Punz >Reply-To: kde-java@kde.org >To: kde-java@kde.org >Subject: Re: [Kde-java] Packaging an application >Date: 01 Apr 2002 17:51:28 +0200 > >Am Mon, 2002-04-01 um 17.43 schrieb Richard Dale: > > On Sunday 31 March 2002 8:57 pm, George Russell wrote: > > > How do I conviently package up a KDEJava application for end users? > > > Any ideas? > > kdoc is a perl application rather than C++, but it uses 'configure.in' >and > > 'Makefile.in' to build and install, I adapted the same configure files >to > > install kalyptus bindings utility. The gilt install could put a shell >script > > with 'java /KSimpleBrowser' in the kde bin directory, which >would > > start the app in the apps/share directory. > > > > eg /opt/kde3/bin/gilt.sh sets up a classpath including > > /opt/kde3/apps/share/gilt/gilt.jar and calls 'java KSimpleBrowser' > > > > I don't know how it works - a lot of the automake/autoconf stuff seems >'black > > magic' to me. But I've attached the kalyptus Makefile.in and >configure.in - I > > think we need a standard install script like that for java apps, so that > > people can just './configure ; make ; make install' as usual. > > > > > Does anyone want to test my Etext reader? > > > http://dogma.freebsd-uk.eu.org/~grrussel > > Looks pretty neat! I'm still rebuilding my system after a gcc/gcj 3.1 >test, > > I'll try it out as soon as I can.. > > > > I like the line 'All below this line is obsolete' refering to the >previous > > Swing version. How do you think the code compares? > > > > -- Richard > > > > >Mhh Richard, have you looked at jakarta ant, this would be a great tool >to do such stuff as make, packaging etc... > >Also there are several java based graphical installers which could be >used (like JEdit uses) this simplifies installing for end users >tremendously. I think the installer route could be the way to go in the >long term. At least this is java, once the user has a JDK1.2+ up and >running the rest could be handled by the installer. >A simple jar distribution without a make would also be a good way. Jar + >a readme on how to start it java -jar filename.jar would be an ok way to >distribute binaries, as well as webstart could be thought as well. > > ><< signature.asc >> _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com From kde-java@kde.org Mon Apr 1 20:13:32 2002 From: kde-java@kde.org (George Russell) Date: Mon, 1 Apr 2002 19:13:32 +0000 Subject: [Kde-java] Packaging an application In-Reply-To: <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> References: <200203311957.05489.george.russell@clara.net> <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> Message-ID: <200204011913.33199.george.russell@clara.net> > I like the line 'All below this line is obsolete' refering to the previous > Swing version. How do you think the code compares? Swing has the advantage of ample documentation and GUI layout tools! And I've just sacrificed portability completely. Although, I will experiment with a Cocoa version on MacOS X using the same backend. The use of KHTML makes an interface much easier. The ability to call konqueror et al to do the fetching, displaying of etexts removes most of the code previously that was buggy and / or hard to do. The use of KDE widgets makes it possible to integrate into the desktop - picking up things like colours. The code is far shorter than the swing version so far - but it is not comparable in terms of features yet. Of course, the Swing versions were left in a rather broken state, hence a kde rewrite. Which likely will be shorter and simpler since using khtmlpart is simpler than similar swing compomnents. More work to do! George Russell -- 6:58pm up 25 days, 19:49, 1 user, load average: 1.21, 1.37, 1.13 From kde-java@kde.org Tue Apr 2 09:16:40 2002 From: kde-java@kde.org (Richard Dale) Date: Tue, 2 Apr 2002 09:16:40 +0100 Subject: [Kde-java] Packaging an application In-Reply-To: <1017676288.8335.41.camel@wuerg> References: <200203311957.05489.george.russell@clara.net> <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> <1017676288.8335.41.camel@wuerg> Message-ID: <200204020916.40112.Richard_Dale@tipitina.demon.co.uk> On Monday 01 April 2002 4:51 pm, Werner Punz wrote: > Am Mon, 2002-04-01 um 17.43 schrieb Richard Dale: > > On Sunday 31 March 2002 8:57 pm, George Russell wrote: > > > How do I conviently package up a KDEJava application for end users? > > > Any ideas? > > > > kdoc is a perl application rather than C++, but it uses 'configure.in' > > and 'Makefile.in' to build and install, I adapted the same configure > > files to install kalyptus bindings utility. The gilt install could put a > > shell script with 'java /KSimpleBrowser' in the kde bin > > directory, which would start the app in the apps/share directory. > > > > eg /opt/kde3/bin/gilt.sh sets up a classpath including > > /opt/kde3/apps/share/gilt/gilt.jar and calls 'java KSimpleBrowser' > > > > I don't know how it works - a lot of the automake/autoconf stuff seems > > 'black magic' to me. But I've attached the kalyptus Makefile.in and > > configure.in - I think we need a standard install script like that for > > java apps, so that people can just './configure ; make ; make install' as > > usual. > > > > > Does anyone want to test my Etext reader? > > > http://dogma.freebsd-uk.eu.org/~grrussel > > > > Looks pretty neat! I'm still rebuilding my system after a gcc/gcj 3.1 > > test, I'll try it out as soon as I can.. > > > > I like the line 'All below this line is obsolete' refering to the > > previous Swing version. How do you think the code compares? > > > > -- Richard > > Mhh Richard, have you looked at jakarta ant, this would be a great tool > to do such stuff as make, packaging etc... > > Also there are several java based graphical installers which could be > used (like JEdit uses) this simplifies installing for end users > tremendously. I think the installer route could be the way to go in the > long term. At least this is java, once the user has a JDK1.2+ up and > running the rest could be handled by the installer. > A simple jar distribution without a make would also be a good way. Jar + > a readme on how to start it java -jar filename.jar would be an ok way to > distribute binaries, as well as webstart could be thought as well. With KDE you could build an .rpm, and then install with KPackage if the user prefers a graphic install. The other installers might be useful for installing Qt-only java programs - they would need to work on Windows too. -- Richard From kde-java@kde.org Tue Apr 2 09:27:10 2002 From: kde-java@kde.org (Richard Dale) Date: Tue, 2 Apr 2002 09:27:10 +0100 Subject: [Kde-java] Packaging an application In-Reply-To: <200204011913.33199.george.russell@clara.net> References: <200203311957.05489.george.russell@clara.net> <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> <200204011913.33199.george.russell@clara.net> Message-ID: <200204020927.10550.Richard_Dale@tipitina.demon.co.uk> On Monday 01 April 2002 8:13 pm, George Russell wrote: > > I like the line 'All below this line is obsolete' refering to the > > previous Swing version. How do you think the code compares? > > Swing has the advantage of ample documentation and GUI layout tools! Yes, I think KDE needs more documentation even if you're a C++ programmer - and the java bindings could really use more than a couple of READMEs. I need to finish off the java uic option and Qt Designer syntax highlighting plugin to use as a GUI layout tool. > And I've just sacrificed portability completely. Although, I will > experiment with a Cocoa version on MacOS X using the same backend. I did port the Qt java bindings to Mac OS X for the early beta of Qt 3 that Trolltech released as a demo version. But they haven't released a free version of Qt 3 for Mac OS X, so that is stuck now. But I don't think you can go far wrong with Cocoa - there might be even less code to write than KDE, and much less than Swing I would have thought. > The use of KHTML makes an interface much easier. The ability to call > konqueror et al to do the fetching, displaying of etexts removes most of > the code previously that was buggy and / or hard to do. The use of KDE > widgets makes it possible to integrate into the desktop - picking up things > like colours. > > The code is far shorter than the swing version so far - but it is not > comparable in terms of features yet. > > Of course, the Swing versions were left in a rather broken state, hence a > kde rewrite. Which likely will be shorter and simpler since using khtmlpart > is simpler than similar swing compomnents. > > More work to do! Go to it! -- Richard From kde-java@kde.org Wed Apr 3 05:58:21 2002 From: kde-java@kde.org (Bryce McKinlay) Date: Wed, 03 Apr 2002 16:58:21 +1200 Subject: [Kde-java] qtjava and GCJ update Message-ID: <3CAA8BED.8030102@waitaki.otago.ac.nz> I have committed a fix for GCJ's java.util.IdentityHashMap that was causing JNI crashes with qtjava. The "ScribbleWindow" demo from kdebindings-2.2.2 should be running fine with GCJ 3.1 now. I have not been able to reproduce Richard Dale's problem which seems like a different issue. Here's what I did to get it running: 1. Install qt-devel, kdelibs-devel, and kdelibs-sound-devel from Redhat 7.2. 2. Download kdebindings source from ftp://ftp.kde.org/pub/kde/stable/2.2.2/src/kdebindings-2.2.2.tar.bz2 3. unpack and ./configure --with-qt-dir=/usr/lib/qt-2.3.1 4. cd qtjava; make 5. cd javalib 6. Compile qtjava java source into a shared library: gcj -classpath . org/kde/qt/*.java -shared --jni -o libqtgcj.so (the --jni option tells gcj that "native" methods will be implemented using JNI, this is important. You can also add -O2 to get a smaller faster library, but it will take longer to build) 7. copy the qtjava JNI library into the current directory so it will be easier to get at cp javalib/qtjava/.libs/*.so . 8. compile ScribbleWindow gcj test/ScribbleWindow.java --main=ScribbleWindow -o scribble -L. -lqtgcj 9. set runtime library path export LD_LIBRARY_PATH=. 10. run it ./scribble 11. scribble!! regards Bryce. From kde-java@kde.org Wed Apr 3 06:06:23 2002 From: kde-java@kde.org (Bryce McKinlay) Date: Wed, 03 Apr 2002 17:06:23 +1200 Subject: [Kde-java] Re: qtjava and GCJ update References: <3CAA8BED.8030102@waitaki.otago.ac.nz> Message-ID: <3CAA8DCF.7020304@waitaki.otago.ac.nz> Bryce McKinlay wrote: > Here's what I did to get it running: > > 1. Install qt-devel, kdelibs-devel, and kdelibs-sound-devel from > Redhat 7.2. > > 2. Download kdebindings source from > ftp://ftp.kde.org/pub/kde/stable/2.2.2/src/kdebindings-2.2.2.tar.bz2 > > 3. unpack and ./configure --with-qt-dir=/usr/lib/qt-2.3.1 > > 4. cd qtjava; make I should add that did the qtjava configure/make with the Redhat 7.2 compiler rather than GCC 3.1, since code produced by GCC 3.x will not link with the old Qt lib due to the C++ ABI change. The JNI lib built by the Redhat GCC can be loaded fine by a GCJ 3.1 binary, however. regards Bryce. From kde-java@kde.org Sun Apr 7 23:33:38 2002 From: kde-java@kde.org (George Russell) Date: Sun, 7 Apr 2002 22:33:38 +0000 Subject: [Kde-java] Using KListView and KHTML innefficiency Message-ID: <200204072233.38941.george.russell@clara.net> Just a quick check. Should all the KListViewItem constructors take QListView and QListViewItem parameters instead of KListView / KListViewItem ? It seems to make it impossible to use with KListView without casting. Is it possible to add constructors etc usable without this casting? Would it also be possible to get a official set of documentation on the kde developer site? KHTML in gilt takes a huge proportion of time in the write() method. Is there some redundant unicode translation or is it just slow? I should confess I put almost 2million Java characters into it in one write ;-) and I'm changing away from using KHTML so much for KListView. George Russell -- 10:25pm up 31 days, 23:15, 1 user, load average: 1.08, 1.07, 1.09 From kde-java@kde.org Sun Apr 7 23:32:17 2002 From: kde-java@kde.org (Benjamin Hofstetter) Date: Mon, 8 Apr 2002 00:32:17 +0200 Subject: [Kde-java] KDE look and feel for Swing Message-ID: <200204080032.17106.hofsb@hta-bi.bfh.ch> hi=20 is anyone working on the KDE look and feel for swing? bye benjamin=20 =20 From kde-java@kde.org Fri Apr 12 09:01:52 2002 From: kde-java@kde.org (kde-java@kde.org) Date: Fri, 12 Apr 2002 08:01:52 Subject: [Kde-java] The Bitter Network Administrator The Network Administrator

The Network Administrator

A Website Dedicated to Computer Professionals

 and those not so professional  


Feature Articles:
The differences between End-users and African Mountain Gorillas.
By Doug Chick
Before I make a comparison between end-users and Gorillas, I would first like to apologize to the African Mountain Gorilla. My first choice was to compare end-users to the retarded goat herders of the Himalayas, but since I know less about the retarded goat herders of the Himalayas than Mountain Gorillas, and because I do have an animated gif of two gorillas picking fleas off each other the choice was an obvious one.   Although I’m sure that many of my end-users have at times been with a goat. Nevertheless, this article is the comparative differences between an African Mountain Gorilla and the common computer end-user. That may or may not have been with a goat.  My article begins....


The Wizard of IZ
One of the women where I work brought her 7 year old daughter in last week and walked her around introducing her to everyone. I happened to be in front of my door when she introduced me and she asked what I do. I pointed to the name and title on my door and said, I'm the Director of IS. (IZ) Both the little girl and her mother smiled, and of course there was that awkward silence that seems to follow me like alley cats would the village idiot. Seeing that it was too early in the day to reach my quota of being peculiar...
 


How many certifications before you are a MCTT? (Microsoft Certified Test Taker)

Where is the line between having too many certifications and just enough? Does your resume give the impression that you have more experience in test taking than actual work experience? If this sounds like you then here's a quick test to see how you rank. Relax Poindexter...there's no test here. I was just kidding.  


Are you choosing software for your company by what will look best on your resume? 
 
 
First thing I do when looking for software for my company is research all available software similar to our needs. Then I do a detailed comparative analysis, followed by a call to a list of satisfied customers supplied by the software company. After all, isn’t that what all Network Administrators do? Well, maybe not all...
By Doug Chick


Why wouldn’t Microsoft package it’s own computer like Apple?
I Read an article by Phillip Smith that raised an interesting question; Why wouldn’t Microsoft package it’s own computer like Apple or Sun, and stop selling it’s software to computer makers altogether? Microsoft could agree that they created a market that made them a monopoly and to add balance to the industry they would stop selling their product to computer makers and only use it in their own systems. 


Has Monitoring your Network Given you a God Complex? 
From your desk you can see who and when someone logs in, who and what e-mail they send and what websites that they frequently attend. Knowing this information can sometimes place you in difficult situations. You often ask yourself if you should interfere to help someone that you like, or don't like. See an e-mail that you know is damaging and wonder if you should stop or remove it completely. It's a very difficult position to be in and almost no one, short of other computer people know about it. So what do you do? I am now of the philosophy that, "Unless someone is in danger of being hurt--Stay out of it!"  
By Doug Chick


How many computer catalogs do companies think you need? 
On an average, I receive 5 computer accessories catalogs by mail, everyday. That’s 25 a week, 100 a month and 1200 an year. Now stacking 10 magazines on top of each other will give you an inch, and 1200 magazines will produce a stack 10 feet high. Let’s review: 5 magazines X 5 days  = 25 X 4 weeks = 100 X 12 months = 1200 magazines = a stack 10 feet high.


Who wants to be a Network Administrator?
Why are there so many people out there that are studying so hard to take your job away from you? Money. I was sitting in the movie theater with my wife last night and one of the ads on the screen before the movie started read: Be a Network Administrator and earn 87K a year. Well, two thumbs up again for those lying salary surveys. I don’t really think that those salary surveys are lying as much as I believe that there’s one network administrator out there that makes 47 millions dollars a year and is totally warping the salary curve.


Is your career dependant on the operating system that you support?

If suddenly one day, the president of your company announced that he just struck a deal to change all the servers operating systems in your company to “Serversoft” (trademark pending) what would you do exactly? Furthermore, what if your company started hiring people that were Serversoft certified, (trademark pending) that had no real life computer experience and were paid more than you? How likely is that to happen? Ask a Novell Administrator.

Submit an Article


Note, If you did not subscript to the Newsletter and wish to be removed, Click here!

*

Monkey Sling

The Network Admins Survival Guide

The Language of the End-User

Hacker Facts

Conspiracy Theory

Who Let the Bugs Out

*

 
 
 
 
 
 

 

 

 
 
 
*
*
*
*
*
*
*
*
*

 

| Copyright 2001  TheNetworkAdministrator.com & DougChick.com |

From kde-java@kde.org Fri Apr 12 13:15:08 2002 From: kde-java@kde.org (Werner Punz) Date: Fri, 12 Apr 2002 14:15:08 +0200 Subject: AW: [Kde-java] The Bitter Network Administrator In-Reply-To: <20020412120624.10769gmx1@mx002-rz3.gmx.net> Message-ID: <0666FBA3EDD0C34DB50ECFD13B29D00E2BCC@cassiopeia.LABOR.local> This is a multi-part message in MIME format. ------=_NextPart_000_0002_01C1E22C.744BD610 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit ouch how did this spam end up in the mailing list? somebody must have hacked the majordomo... ------=_NextPart_000_0002_01C1E22C.744BD610 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable The Network Administrator
ouch=20 how did this spam end up in the mailing list?
somebody must have hacked the=20 majordomo...
 
 
------=_NextPart_000_0002_01C1E22C.744BD610-- From kde-java@kde.org Sat Apr 13 19:18:29 2002 From: kde-java@kde.org (Richard Dale) Date: Sat, 13 Apr 2002 19:18:29 +0100 Subject: [Kde-java] 'Georges Interesting Literature Trawler' - code review In-Reply-To: <200204011913.33199.george.russell@clara.net> References: <200203311957.05489.george.russell@clara.net> <200204011640.07406.Richard_Dale@tipitina.demon.co.uk> <200204011913.33199.george.russell@clara.net> Message-ID: <200204131918.29471.Richard_Dale@tipitina.demon.co.uk> --------------Boundary-00=_TUQI9QSAE7X6VO9PJTUK Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit I've just looked at George's code for the etext reader, here's some help I hope. There is a comment in the code 'Find why about menu doesn't work': // TODO Find why about data doesn't work KAboutData aboutData = new KAboutData("gilt","","0.3", "Etext index display", KAboutData.License_GPL, "(c) 2002, George Russell"); aboutData.addAuthor("George Russell", null, "george.russell@clara.net"); KCmdLineArgs.init(cmdLineArgs,aboutData); KApplication app = new KApplication(cmdLineArgs,"Georges Interesting Literature Trawler"); The code needs to be changed to this: // TODO Find why about data doesn't work KAboutData aboutData = new KAboutData("gilt","Georges Interesting Literature Trawler","0.3", "Etext index display", KAboutData.License_GPL, "(c) 2002, George Russell"); aboutData.addAuthor("George Russell", null, "george.russell@clara.net"); KCmdLineArgs.init(cmdLineArgs,aboutData); KApplication app = new KApplication(); If you use KAboutData and KCmdLineArgs, you don't need to pass any arguments to the KApplication constructor. This code to set up the menu items: file = new QPopupMenu(); file.insertItem("&Exit",this,SLOT("slotFileQuit()")); help = helpMenu("Gilt\n by George Russell"); menu = menuBar(); menu.insertItem("&File",file); menu.insertItem("&Help",help); Needs to be changed to this: fileQuit = KStdAction.quit(this, SLOT("slotFileQuit()"), actionCollection()); createGUI(); Then the proper KDE about menus under 'Help' will be displayed correctly, as well as the File->Quit option. I think equivalent C++ code would behave exactly the same way. -- Richard --------------Boundary-00=_TUQI9QSAE7X6VO9PJTUK Content-Type: text/x-java; charset="iso-8859-1"; name="KSimpleBrowser.java" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="KSimpleBrowser.java" import org.kde.qt.*; import org.kde.koala.*; import java.util.Vector; /** * Class KSimpleBrowser is the main application window. * * @see KMainWindow * @see KApplication * @see KHTMLPart * * @author java translation Kenneth J. Pouncey, kjpou@hotmail.com * @version 0.1 * Modified for use in Gilt .3 * George Russell */ public class KSimpleBrowser extends KMainWindow { MyKHTMLPart khtmlpart; KApplication kapp; KStandardDirs kdeDir = new KStandardDirs(); Parse p = new Parse(); Vector years, titles, files; private KAction fileQuit; QMenuBar menu; QPopupMenu file, help; String pathToIcons; public KSimpleBrowser (String name) { super(null,name,0); String iconDir = kdeDir.kde_default("icon"); String prefix = kdeDir.findResourceDir("lib", "libkdecore.la"); prefix = prefix.substring(0,prefix.indexOf("lib")-1); pathToIcons = prefix+"/"+iconDir+"hicolor/16x16/actions/"; System.out.println("Icons from.. "+pathToIcons); fileQuit = KStdAction.quit(this, SLOT("slotFileQuit()"), actionCollection()); createGUI(); String tableStart = ""; String caption = ""; String col2b = ""; String tableEnd = "
Click on Etext links to download in Konqueror
"; String rowStart2 = "
"; String rowEnd = "
"; String linkStart = ""; String rowStart1 = ""; String col2a = ""; System.out.println("BASE "+baseColHex); System.out.println("ALT "+altColHex); System.out.println("LINK "+linkColHex); System.out.println("TEXT "+textColHex); // TODO Make this selectable p.setInputFile("GUTINDEX.ALL"); p.parseFile(); years = p.getYearVector(); titles = p.getEntries(); files = p.getFileVector(); khtmlpart = new MyKHTMLPart(this); khtmlpart.begin(); khtmlpart.write(beginPage); khtmlpart.write("

Please report Etext links that are broken using the EMail links on the right hand side. Thanks."); khtmlpart.write(tableStart); khtmlpart.write(caption); StringBuffer line = new StringBuffer(); try { for (int i= 0 ; i < files.size() ; i++){ if (rowAB) line.append(rowStart1); else line.append(rowStart2); rowAB = !rowAB; if (i % 100 == 0) { System.out.print('#'); } line.append(linkStart); try { line.append( (p.URLGen(Integer.parseInt((String)years.elementAt(i)), (String)files.elementAt(i))).toString() ); } catch (Exception d) { System.err.println(d.toString()); } line.append("\">"); line.append(""+""); line.append((String)titles.elementAt(i)); line.append(linkEnd); if (!rowAB) line.append(col2a); else line.append(col2b); line.append(linkEnd); line.append(linkStart); line.append("etext://"); line.append(files.size()-i); line.append("\">"); line.append(""+""); line.append(files.size()-i); line.append(linkEnd); line.append(rowEnd); khtmlpart.write(line.toString()); line.delete(0,line.length()); } } catch (Exception e) {khtmlpart.write( " Caught "+e.toString()); } khtmlpart.write(tableEnd); khtmlpart.write(""); khtmlpart.end(); BrowserExtension s = khtmlpart.browserExtension(); connect(s, SIGNAL("openURLRequest(KURL,URLArgs)"),this,SLOT("slotNewURL(KURL)")); setCentralWidget(khtmlpart.view()); } public void setApp(KApplication a) { kapp =a; } public void slotNewURL (KURL a) { // invoke the browser if the URL seems long enough to be genuine System.out.println(a.url().substring(0,5)); if (a.url().indexOf("etext") != 0) kapp.invokeBrowser(a.url()); else { kapp.invokeMailer("russell@kde.org", "", "", " An etext link in GILT is incorrect", "The incorrect etext is number "+a.url()); { } System.out.println("Etext"); } System.out.println("Clicked! for URL "+ a.url()); } public void slotFileQuit() { System.out.println("Quitting"); System.exit(0); } public static void main(String[] cmdLineArgs) { // TODO Find why about data doesn't work KAboutData aboutData = new KAboutData("gilt","Georges Interesting Literature Trawler","0.3", "Etext index display", KAboutData.License_GPL, "(c) 2002, George Russell"); aboutData.addAuthor("George Russell", null, "george.russell@clara.net"); KCmdLineArgs.init(cmdLineArgs,aboutData); KApplication app = new KApplication(); KSimpleBrowser kbrowser = new KSimpleBrowser("Select an Etext"); kbrowser.setApp(app); app.setMainWidget(kbrowser); kbrowser.setCaption("Georges Interesting Literature Trawler"); kbrowser.resize(600,600); kbrowser.show(); app.exec(); return; } static { qtjava.initialize(); kdejava.initialize(); } } --------------Boundary-00=_TUQI9QSAE7X6VO9PJTUK-- From kde-java@kde.org Sun Apr 14 15:42:14 2002 From: kde-java@kde.org (George Russell) Date: Sun, 14 Apr 2002 14:42:14 +0000 Subject: [Kde-java] 'Georges Interesting Literature Trawler' - code review In-Reply-To: <200204131918.29471.Richard_Dale@tipitina.demon.co.uk> References: <200203311957.05489.george.russell@clara.net> <200204011913.33199.george.russell@clara.net> <200204131918.29471.Richard_Dale@tipitina.demon.co.uk> Message-ID: <200204141442.15437.george.russell@clara.net> On Saturday 13 April 2002 18:18, Richard Dale wrote: > I've just looked at George's code for the etext reader, here's some help I > hope. There is a comment in the code 'Find why about menu doesn't work': Excellent! Currently building KDE 3.0 from CVS head. SuSE have not included KDE java bindings in their RPM's. George -- 2:40pm up 38 days, 15:31, 1 user, load average: 2.56, 2.83, 2.11 From kde-java@kde.org Sun Apr 14 16:02:31 2002 From: kde-java@kde.org (KJ P) Date: Sun, 14 Apr 2002 15:02:31 +0000 Subject: [Kde-java] 'Georges Interesting Literature Trawler' - code review Message-ID: Hello George It might be better to build from the 3.0 release branch to get the kdebindings koala.jar. I am compiling the bindings now because from head the bindings will not compile because of changes in the libs. That is the next thing I will start working on but as I also did not have the koala.jar from Suse I had to get a working copy to test the new gcj that I installed yesterday. Really looking forward to this test. I have a couple of changes that need to be sent to Richard Dale - KDirWatch for one - so that head bindigs will compile. I hope I have saved you some time. Regards Kenneth >From: George Russell >Reply-To: kde-java@kde.org >To: kde-java@kde.org >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - code >review >Date: Sun, 14 Apr 2002 14:42:14 +0000 > >On Saturday 13 April 2002 18:18, Richard Dale wrote: > > I've just looked at George's code for the etext reader, here's some help >I > > hope. There is a comment in the code 'Find why about menu doesn't work': > >Excellent! > >Currently building KDE 3.0 from CVS head. > >SuSE have not included KDE java bindings in their RPM's. > >George >-- > 2:40pm up 38 days, 15:31, 1 user, load average: 2.56, 2.83, 2.11 > >_______________________________________________ >Kde-java mailing list >Kde-java@mail.kde.org >http://mail.kde.org/mailman/listinfo/kde-java _________________________________________________________________ MSN Photos is the easiest way to share and print your photos: http://photos.msn.com/support/worldwide.aspx From kde-java@kde.org Sun Apr 14 16:39:13 2002 From: kde-java@kde.org (Richard Dale) Date: Sun, 14 Apr 2002 16:39:13 +0100 Subject: [Kde-java] 'Georges Interesting Literature Trawler' - code review In-Reply-To: References: Message-ID: <200204141639.13587.Richard_Dale@tipitina.demon.co.uk> On Sunday 14 April 2002 4:02 pm, KJ P wrote: > It might be better to build from the 3.0 release branch to get the > kdebindings koala.jar. I am compiling the bindings now because from head > the bindings will not compile because of changes in the libs. > > That is the next thing I will start working on but as I also did not have > the koala.jar from Suse I had to get a working copy to test the new gcj > that I installed yesterday. Really looking forward to this test. I still can't get gcj to work, but I really ought to add the makefile rules and instructions in the README's for building lib-org-kde-qt.so and lib-org-kde-koala.so. Both gcc 3.0.4 and current snapshots of gcc 3.1 should work fine. > I have a couple of changes that need to be sent to Richard Dale - KDirWatch > for one - so that head bindigs will compile. Thanks Kenneth - the branch to go for in the cvs is KDE_3_0_BRANCH. That has the KDirWatch, KFileMetaInfo and KFileMetaInfoItem fixes. There were some last minute changes to these classes between KDE RC3 and the final release, which I didn't know about. That's why kdebindings didn't compile and didn't get released. But I think I did fix the HEAD branch, so it should have built ok. -- Richard > I hope I have saved you some time. > > Regards > > Kenneth > > > From: George Russell > > >Reply-To: kde-java@kde.org > >To: kde-java@kde.org > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - code > >review > >Date: Sun, 14 Apr 2002 14:42:14 +0000 > > > >On Saturday 13 April 2002 18:18, Richard Dale wrote: > > > I've just looked at George's code for the etext reader, here's some > > > help > > > >I > > > > > hope. There is a comment in the code 'Find why about menu doesn't > > > work': > > > >Excellent! > > > >Currently building KDE 3.0 from CVS head. > > > >SuSE have not included KDE java bindings in their RPM's. > > > >George > >-- > > 2:40pm up 38 days, 15:31, 1 user, load average: 2.56, 2.83, 2.11 > > > >_______________________________________________ > >Kde-java mailing list > >Kde-java@mail.kde.org > >http://mail.kde.org/mailman/listinfo/kde-java > > _________________________________________________________________ > MSN Photos is the easiest way to share and print your photos: > http://photos.msn.com/support/worldwide.aspx > > _______________________________________________ > Kde-java mailing list > Kde-java@mail.kde.org > http://mail.kde.org/mailman/listinfo/kde-java From kde-java@kde.org Sun Apr 14 17:34:16 2002 From: kde-java@kde.org (KJ P) Date: Sun, 14 Apr 2002 16:34:16 +0000 Subject: [Kde-java] Compiling KDE 3 release of kdebindings Message-ID: Hello Richard When I did an update on my cvs for kde3 it told me that setDirCreated, setDirDirty, setDirDeleted, setFileCreated,setFileDirty,setFileDeleted did not exist in the KDirWatch.cpp. I did it yesterday as well and it told me the same thing. I have be using cvs co kdelibs, cvs co kdebase, etc... instead of with a tag of HEAD or MAIN. Is this the problem I am having? I did a checkout this morning with of KDE_3_0_RELEASE on all the libraries and just finished up the compile of kdebindings. On doing make -f Makefile.cvs the /doc directory was not there so it failed. I created an empty /doc directory and then make with success. After; the 'make install' just failed with the following: /bin/sh ../../../admin/mkinstalldirs /home/kde3/kde3/include make[4]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' make[3]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' make[3]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' make[4]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' /bin/sh ../../admin/mkinstalldirs /home/kde3/kde3/bin /bin/sh ../../libtool --mode=install /usr/bin/install -c -p clib /home/kde3/kde3/bin/clib /usr/bin/install -c -p .libs/clib /home/kde3/kde3/bin/clib /bin/sh ../../admin/mkinstalldirs /home/kde3/kde3/share/applnk/Applications/ /usr/bin/install -c -p -m 644 ./clib.desktop /home/kde3/kde3/share/applnk/Applications/clib.desktop /usr/bin/install: cannot stat `./clib.desktop': No such file or directory make[4]: *** [install-data-local] Error 1 make[4]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' make[3]: *** [install-am] Error 2 make[3]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' make[2]: *** [install-recursive] Error 1 make[2]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' make[1]: *** [install-recursive] Error 1 make[1]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec' make: *** [install-recursive] Error 1 Any ideas Richard? I think I saw this one on the kde-linux list at the beginning of last week about bindings not completing. Not sure. Thanks in advanced Kenneth >From: Richard Dale >Reply-To: kde-java@kde.org >To: kde-java@kde.org >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - code >review >Date: Sun, 14 Apr 2002 16:39:13 +0100 > >On Sunday 14 April 2002 4:02 pm, KJ P wrote: > > It might be better to build from the 3.0 release branch to get the > > kdebindings koala.jar. I am compiling the bindings now because from >head > > the bindings will not compile because of changes in the libs. > > > > That is the next thing I will start working on but as I also did not >have > > the koala.jar from Suse I had to get a working copy to test the new gcj > > that I installed yesterday. Really looking forward to this test. >I still can't get gcj to work, but I really ought to add the makefile rules >and instructions in the README's for building lib-org-kde-qt.so and >lib-org-kde-koala.so. Both gcc 3.0.4 and current snapshots of gcc 3.1 >should >work fine. > > > I have a couple of changes that need to be sent to Richard Dale - >KDirWatch > > for one - so that head bindigs will compile. >Thanks Kenneth - the branch to go for in the cvs is KDE_3_0_BRANCH. That >has >the KDirWatch, KFileMetaInfo and KFileMetaInfoItem fixes. There were some >last minute changes to these classes between KDE RC3 and the final release, >which I didn't know about. That's why kdebindings didn't compile and didn't >get released. But I think I did fix the HEAD branch, so it should have >built >ok. > >-- Richard > > > I hope I have saved you some time. > > > > Regards > > > > Kenneth > > > > > > From: George Russell > > > > >Reply-To: kde-java@kde.org > > >To: kde-java@kde.org > > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - code > > >review > > >Date: Sun, 14 Apr 2002 14:42:14 +0000 > > > > > >On Saturday 13 April 2002 18:18, Richard Dale wrote: > > > > I've just looked at George's code for the etext reader, here's some > > > > help > > > > > >I > > > > > > > hope. There is a comment in the code 'Find why about menu doesn't > > > > work': > > > > > >Excellent! > > > > > >Currently building KDE 3.0 from CVS head. > > > > > >SuSE have not included KDE java bindings in their RPM's. > > > > > >George > > >-- > > > 2:40pm up 38 days, 15:31, 1 user, load average: 2.56, 2.83, 2.11 > > > > > >_______________________________________________ > > >Kde-java mailing list > > >Kde-java@mail.kde.org > > >http://mail.kde.org/mailman/listinfo/kde-java > > > > _________________________________________________________________ > > MSN Photos is the easiest way to share and print your photos: > > http://photos.msn.com/support/worldwide.aspx > > > > _______________________________________________ > > Kde-java mailing list > > Kde-java@mail.kde.org > > http://mail.kde.org/mailman/listinfo/kde-java >_______________________________________________ >Kde-java mailing list >Kde-java@mail.kde.org >http://mail.kde.org/mailman/listinfo/kde-java _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com From kde-java@kde.org Sun Apr 14 19:06:41 2002 From: kde-java@kde.org (Richard Dale) Date: Sun, 14 Apr 2002 19:06:41 +0100 Subject: [Kde-java] Compiling KDE 3 release of kdebindings In-Reply-To: References: Message-ID: <200204141906.41792.Richard_Dale@tipitina.demon.co.uk> On Sunday 14 April 2002 5:34 pm, KJ P wrote: > Hello Richard > > When I did an update on my cvs for kde3 it told me that setDirCreated, > setDirDirty, setDirDeleted, setFileCreated,setFileDirty,setFileDeleted did > not exist in the KDirWatch.cpp. I did it yesterday as well and it told me > the same thing. I have be using cvs co kdelibs, cvs co kdebase, etc... > instead of with a tag of HEAD or MAIN. > > Is this the problem I am having? > > I did a checkout this morning with of KDE_3_0_RELEASE on all the libraries > and just finished up the compile of kdebindings. On doing make -f > Makefile.cvs the /doc directory was not there so it failed. I created an > empty /doc directory and then make with success. After; the 'make install' > just failed with the following: I've removed this 'doc' directory from the KDE_3_0_BRANCH, and a reference to a 'doc' directory in kdebindings/kdec/Makefile.am. >From Dirk Mueller "(KDE_3_0_RELEASE is no branch, it was the state that got released)" -- Richard > /bin/sh ../../../admin/mkinstalldirs /home/kde3/kde3/include > make[4]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' > make[3]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' > make[3]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > make[4]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > /bin/sh ../../admin/mkinstalldirs /home/kde3/kde3/bin > /bin/sh ../../libtool --mode=install /usr/bin/install -c -p clib > /home/kde3/kde3/bin/clib > /usr/bin/install -c -p .libs/clib /home/kde3/kde3/bin/clib > /bin/sh ../../admin/mkinstalldirs > /home/kde3/kde3/share/applnk/Applications/ /usr/bin/install -c -p -m 644 > ./clib.desktop > /home/kde3/kde3/share/applnk/Applications/clib.desktop > /usr/bin/install: cannot stat `./clib.desktop': No such file or directory > make[4]: *** [install-data-local] Error 1 > make[4]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > make[3]: *** [install-am] Error 2 > make[3]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > make[2]: *** [install-recursive] Error 1 > make[2]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > make[1]: *** [install-recursive] Error 1 > make[1]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec' > make: *** [install-recursive] Error 1 > > Any ideas Richard? > > I think I saw this one on the kde-linux list at the beginning of last week > about bindings not completing. Not sure. > > Thanks in advanced > > Kenneth > > From: Richard Dale > > >Reply-To: kde-java@kde.org > >To: kde-java@kde.org > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - code > >review > >Date: Sun, 14 Apr 2002 16:39:13 +0100 > > > >On Sunday 14 April 2002 4:02 pm, KJ P wrote: > > > It might be better to build from the 3.0 release branch to get the > > > kdebindings koala.jar. I am compiling the bindings now because from > > > >head > > > > > the bindings will not compile because of changes in the libs. > > > > > > That is the next thing I will start working on but as I also did not > > > >have > > > > > the koala.jar from Suse I had to get a working copy to test the new gcj > > > that I installed yesterday. Really looking forward to this test. > > > >I still can't get gcj to work, but I really ought to add the makefile > > rules and instructions in the README's for building lib-org-kde-qt.so and > > lib-org-kde-koala.so. Both gcc 3.0.4 and current snapshots of gcc 3.1 > > should > >work fine. > > > > > I have a couple of changes that need to be sent to Richard Dale - > > > >KDirWatch > > > > > for one - so that head bindigs will compile. > > > >Thanks Kenneth - the branch to go for in the cvs is KDE_3_0_BRANCH. That > >has > >the KDirWatch, KFileMetaInfo and KFileMetaInfoItem fixes. There were some > >last minute changes to these classes between KDE RC3 and the final > > release, which I didn't know about. That's why kdebindings didn't compile > > and didn't get released. But I think I did fix the HEAD branch, so it > > should have built > >ok. > > > >-- Richard > > > > > I hope I have saved you some time. > > > > > > Regards > > > > > > Kenneth > > > > > > > > > From: George Russell > > > > > > >Reply-To: kde-java@kde.org > > > >To: kde-java@kde.org > > > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - > > > > code review > > > >Date: Sun, 14 Apr 2002 14:42:14 +0000 > > > > > > > >On Saturday 13 April 2002 18:18, Richard Dale wrote: > > > > > I've just looked at George's code for the etext reader, here's some > > > > > help > > > > > > > >I > > > > > > > > > hope. There is a comment in the code 'Find why about menu doesn't > > > > > work': > > > > > > > >Excellent! > > > > > > > >Currently building KDE 3.0 from CVS head. > > > > > > > >SuSE have not included KDE java bindings in their RPM's. > > > > > > > >George > > > >-- > > > > 2:40pm up 38 days, 15:31, 1 user, load average: 2.56, 2.83, 2.11 > > > > > > > >_______________________________________________ > > > >Kde-java mailing list > > > >Kde-java@mail.kde.org > > > >http://mail.kde.org/mailman/listinfo/kde-java > > > > > > _________________________________________________________________ > > > MSN Photos is the easiest way to share and print your photos: > > > http://photos.msn.com/support/worldwide.aspx > > > > > > _______________________________________________ > > > Kde-java mailing list > > > Kde-java@mail.kde.org > > > http://mail.kde.org/mailman/listinfo/kde-java > > > >_______________________________________________ > >Kde-java mailing list > >Kde-java@mail.kde.org > >http://mail.kde.org/mailman/listinfo/kde-java > > _________________________________________________________________ > Send and receive Hotmail on your mobile device: http://mobile.msn.com > > _______________________________________________ > Kde-java mailing list > Kde-java@mail.kde.org > http://mail.kde.org/mailman/listinfo/kde-java From kde-java@kde.org Sun Apr 14 19:52:08 2002 From: kde-java@kde.org (KJ P) Date: Sun, 14 Apr 2002 18:52:08 +0000 Subject: [Kde-java] Compiling KDE 3 release of kdebindings Message-ID: Hello Richard I got it all compiled! Now the gcj tests are next. I hoped to have some good news soon with that. I still had to change the KDirWatch.cpp to remove the methods mentioned below. After that it all compiled. Thanks Kenneth >From: Richard Dale >Reply-To: kde-java@kde.org >To: kde-java@kde.org >Subject: Re: [Kde-java] Compiling KDE 3 release of kdebindings >Date: Sun, 14 Apr 2002 19:06:41 +0100 > >On Sunday 14 April 2002 5:34 pm, KJ P wrote: > > Hello Richard > > > > When I did an update on my cvs for kde3 it told me that setDirCreated, > > setDirDirty, setDirDeleted, setFileCreated,setFileDirty,setFileDeleted >did > > not exist in the KDirWatch.cpp. I did it yesterday as well and it told >me > > the same thing. I have be using cvs co kdelibs, cvs co kdebase, etc... > > instead of with a tag of HEAD or MAIN. > > > > Is this the problem I am having? > > > > I did a checkout this morning with of KDE_3_0_RELEASE on all the >libraries > > and just finished up the compile of kdebindings. On doing make -f > > Makefile.cvs the /doc directory was not there so it failed. I created >an > > empty /doc directory and then make with success. After; the 'make >install' > > just failed with the following: >I've removed this 'doc' directory from the KDE_3_0_BRANCH, and a reference >to >a 'doc' directory in kdebindings/kdec/Makefile.am. > >From Dirk Mueller "(KDE_3_0_RELEASE is no branch, it was the state that got >released)" > >-- Richard > > > /bin/sh ../../../admin/mkinstalldirs /home/kde3/kde3/include > > make[4]: Leaving directory >`/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' > > make[3]: Leaving directory >`/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' > > make[3]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > > make[4]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > > /bin/sh ../../admin/mkinstalldirs /home/kde3/kde3/bin > > /bin/sh ../../libtool --mode=install /usr/bin/install -c -p clib > > /home/kde3/kde3/bin/clib > > /usr/bin/install -c -p .libs/clib /home/kde3/kde3/bin/clib > > /bin/sh ../../admin/mkinstalldirs > > /home/kde3/kde3/share/applnk/Applications/ /usr/bin/install -c -p -m 644 > > ./clib.desktop > > /home/kde3/kde3/share/applnk/Applications/clib.desktop > > /usr/bin/install: cannot stat `./clib.desktop': No such file or >directory > > make[4]: *** [install-data-local] Error 1 > > make[4]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > > make[3]: *** [install-am] Error 2 > > make[3]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > > make[2]: *** [install-recursive] Error 1 > > make[2]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' > > make[1]: *** [install-recursive] Error 1 > > make[1]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec' > > make: *** [install-recursive] Error 1 > > > > Any ideas Richard? > > > > I think I saw this one on the kde-linux list at the beginning of last >week > > about bindings not completing. Not sure. > > > > Thanks in advanced > > > > Kenneth > > > > From: Richard Dale > > > > >Reply-To: kde-java@kde.org > > >To: kde-java@kde.org > > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - code > > >review > > >Date: Sun, 14 Apr 2002 16:39:13 +0100 > > > > > >On Sunday 14 April 2002 4:02 pm, KJ P wrote: > > > > It might be better to build from the 3.0 release branch to get the > > > > kdebindings koala.jar. I am compiling the bindings now because from > > > > > >head > > > > > > > the bindings will not compile because of changes in the libs. > > > > > > > > That is the next thing I will start working on but as I also did not > > > > > >have > > > > > > > the koala.jar from Suse I had to get a working copy to test the new >gcj > > > > that I installed yesterday. Really looking forward to this test. > > > > > >I still can't get gcj to work, but I really ought to add the makefile > > > rules and instructions in the README's for building lib-org-kde-qt.so >and > > > lib-org-kde-koala.so. Both gcc 3.0.4 and current snapshots of gcc 3.1 > > > should > > >work fine. > > > > > > > I have a couple of changes that need to be sent to Richard Dale - > > > > > >KDirWatch > > > > > > > for one - so that head bindigs will compile. > > > > > >Thanks Kenneth - the branch to go for in the cvs is KDE_3_0_BRANCH. >That > > >has > > >the KDirWatch, KFileMetaInfo and KFileMetaInfoItem fixes. There were >some > > >last minute changes to these classes between KDE RC3 and the final > > > release, which I didn't know about. That's why kdebindings didn't >compile > > > and didn't get released. But I think I did fix the HEAD branch, so it > > > should have built > > >ok. > > > > > >-- Richard > > > > > > > I hope I have saved you some time. > > > > > > > > Regards > > > > > > > > Kenneth > > > > > > > > > > > > From: George Russell > > > > > > > > >Reply-To: kde-java@kde.org > > > > >To: kde-java@kde.org > > > > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - > > > > > code review > > > > >Date: Sun, 14 Apr 2002 14:42:14 +0000 > > > > > > > > > >On Saturday 13 April 2002 18:18, Richard Dale wrote: > > > > > > I've just looked at George's code for the etext reader, here's >some > > > > > > help > > > > > > > > > >I > > > > > > > > > > > hope. There is a comment in the code 'Find why about menu >doesn't > > > > > > work': > > > > > > > > > >Excellent! > > > > > > > > > >Currently building KDE 3.0 from CVS head. > > > > > > > > > >SuSE have not included KDE java bindings in their RPM's. > > > > > > > > > >George > > > > >-- > > > > > 2:40pm up 38 days, 15:31, 1 user, load average: 2.56, 2.83, >2.11 > > > > > > > > > >_______________________________________________ > > > > >Kde-java mailing list > > > > >Kde-java@mail.kde.org > > > > >http://mail.kde.org/mailman/listinfo/kde-java > > > > > > > > _________________________________________________________________ > > > > MSN Photos is the easiest way to share and print your photos: > > > > http://photos.msn.com/support/worldwide.aspx > > > > > > > > _______________________________________________ > > > > Kde-java mailing list > > > > Kde-java@mail.kde.org > > > > http://mail.kde.org/mailman/listinfo/kde-java > > > > > >_______________________________________________ > > >Kde-java mailing list > > >Kde-java@mail.kde.org > > >http://mail.kde.org/mailman/listinfo/kde-java > > > > _________________________________________________________________ > > Send and receive Hotmail on your mobile device: http://mobile.msn.com > > > > _______________________________________________ > > Kde-java mailing list > > Kde-java@mail.kde.org > > http://mail.kde.org/mailman/listinfo/kde-java >_______________________________________________ >Kde-java mailing list >Kde-java@mail.kde.org >http://mail.kde.org/mailman/listinfo/kde-java _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com From kde-java@kde.org Sun Apr 14 20:59:20 2002 From: kde-java@kde.org (KJ P) Date: Sun, 14 Apr 2002 19:59:20 +0000 Subject: [Kde-java] Compiling KDE 3 release of kdebindings Message-ID: Hello all The ScribbleWindow program using gcj is up and running. Now working on KScribble using the libkoalagcj.so that I just generated. Regards Kenneth >From: "KJ P" >Reply-To: kde-java@kde.org >To: kde-java@kde.org >Subject: Re: [Kde-java] Compiling KDE 3 release of kdebindings >Date: Sun, 14 Apr 2002 18:52:08 +0000 > >Hello Richard > >I got it all compiled! Now the gcj tests are next. I hoped to have some >good news soon with that. > >I still had to change the KDirWatch.cpp to remove the methods mentioned >below. After that it all compiled. > >Thanks > >Kenneth > > >>From: Richard Dale >>Reply-To: kde-java@kde.org >>To: kde-java@kde.org >>Subject: Re: [Kde-java] Compiling KDE 3 release of kdebindings >>Date: Sun, 14 Apr 2002 19:06:41 +0100 >> >>On Sunday 14 April 2002 5:34 pm, KJ P wrote: >> > Hello Richard >> > >> > When I did an update on my cvs for kde3 it told me that setDirCreated, >> > setDirDirty, setDirDeleted, setFileCreated,setFileDirty,setFileDeleted >>did >> > not exist in the KDirWatch.cpp. I did it yesterday as well and it told >>me >> > the same thing. I have be using cvs co kdelibs, cvs co kdebase, etc... >> > instead of with a tag of HEAD or MAIN. >> > >> > Is this the problem I am having? >> > >> > I did a checkout this morning with of KDE_3_0_RELEASE on all the >>libraries >> > and just finished up the compile of kdebindings. On doing make -f >> > Makefile.cvs the /doc directory was not there so it failed. I created >>an >> > empty /doc directory and then make with success. After; the 'make >>install' >> > just failed with the following: >>I've removed this 'doc' directory from the KDE_3_0_BRANCH, and a reference >>to >>a 'doc' directory in kdebindings/kdec/Makefile.am. >> >>From Dirk Mueller "(KDE_3_0_RELEASE is no branch, it was the state that >>got >>released)" >> >>-- Richard >> >> > /bin/sh ../../../admin/mkinstalldirs /home/kde3/kde3/include >> > make[4]: Leaving directory >>`/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' >> > make[3]: Leaving directory >>`/home/kde3/cvs-kde/kdebindings/kdec/clib/kdec' >> > make[3]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' >> > make[4]: Entering directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' >> > /bin/sh ../../admin/mkinstalldirs /home/kde3/kde3/bin >> > /bin/sh ../../libtool --mode=install /usr/bin/install -c -p clib >> > /home/kde3/kde3/bin/clib >> > /usr/bin/install -c -p .libs/clib /home/kde3/kde3/bin/clib >> > /bin/sh ../../admin/mkinstalldirs >> > /home/kde3/kde3/share/applnk/Applications/ /usr/bin/install -c -p -m >>644 >> > ./clib.desktop >> > /home/kde3/kde3/share/applnk/Applications/clib.desktop >> > /usr/bin/install: cannot stat `./clib.desktop': No such file or >>directory >> > make[4]: *** [install-data-local] Error 1 >> > make[4]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' >> > make[3]: *** [install-am] Error 2 >> > make[3]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' >> > make[2]: *** [install-recursive] Error 1 >> > make[2]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec/clib' >> > make[1]: *** [install-recursive] Error 1 >> > make[1]: Leaving directory `/home/kde3/cvs-kde/kdebindings/kdec' >> > make: *** [install-recursive] Error 1 >> > >> > Any ideas Richard? >> > >> > I think I saw this one on the kde-linux list at the beginning of last >>week >> > about bindings not completing. Not sure. >> > >> > Thanks in advanced >> > >> > Kenneth >> > >> > From: Richard Dale >> > >> > >Reply-To: kde-java@kde.org >> > >To: kde-java@kde.org >> > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - >>code >> > >review >> > >Date: Sun, 14 Apr 2002 16:39:13 +0100 >> > > >> > >On Sunday 14 April 2002 4:02 pm, KJ P wrote: >> > > > It might be better to build from the 3.0 release branch to get the >> > > > kdebindings koala.jar. I am compiling the bindings now because >>from >> > > >> > >head >> > > >> > > > the bindings will not compile because of changes in the libs. >> > > > >> > > > That is the next thing I will start working on but as I also did >>not >> > > >> > >have >> > > >> > > > the koala.jar from Suse I had to get a working copy to test the new >>gcj >> > > > that I installed yesterday. Really looking forward to this test. >> > > >> > >I still can't get gcj to work, but I really ought to add the makefile >> > > rules and instructions in the README's for building lib-org-kde-qt.so >>and >> > > lib-org-kde-koala.so. Both gcc 3.0.4 and current snapshots of gcc 3.1 >> > > should >> > >work fine. >> > > >> > > > I have a couple of changes that need to be sent to Richard Dale - >> > > >> > >KDirWatch >> > > >> > > > for one - so that head bindigs will compile. >> > > >> > >Thanks Kenneth - the branch to go for in the cvs is KDE_3_0_BRANCH. >>That >> > >has >> > >the KDirWatch, KFileMetaInfo and KFileMetaInfoItem fixes. There were >>some >> > >last minute changes to these classes between KDE RC3 and the final >> > > release, which I didn't know about. That's why kdebindings didn't >>compile >> > > and didn't get released. But I think I did fix the HEAD branch, so it >> > > should have built >> > >ok. >> > > >> > >-- Richard >> > > >> > > > I hope I have saved you some time. >> > > > >> > > > Regards >> > > > >> > > > Kenneth >> > > > >> > > > >> > > > From: George Russell >> > > > >> > > > >Reply-To: kde-java@kde.org >> > > > >To: kde-java@kde.org >> > > > >Subject: Re: [Kde-java] 'Georges Interesting Literature Trawler' - >> > > > > code review >> > > > >Date: Sun, 14 Apr 2002 14:42:14 +0000 >> > > > > >> > > > >On Saturday 13 April 2002 18:18, Richard Dale wrote: >> > > > > > I've just looked at George's code for the etext reader, here's >>some >> > > > > > help >> > > > > >> > > > >I >> > > > > >> > > > > > hope. There is a comment in the code 'Find why about menu >>doesn't >> > > > > > work': >> > > > > >> > > > >Excellent! >> > > > > >> > > > >Currently building KDE 3.0 from CVS head. >> > > > > >> > > > >SuSE have not included KDE java bindings in their RPM's. >> > > > > >> > > > >George >> > > > >-- >> > > > > 2:40pm up 38 days, 15:31, 1 user, load average: 2.56, 2.83, >>2.11 >> > > > > >> > > > >_______________________________________________ >> > > > >Kde-java mailing list >> > > > >Kde-java@mail.kde.org >> > > > >http://mail.kde.org/mailman/listinfo/kde-java >> > > > >> > > > _________________________________________________________________ >> > > > MSN Photos is the easiest way to share and print your photos: >> > > > http://photos.msn.com/support/worldwide.aspx >> > > > >> > > > _______________________________________________ >> > > > Kde-java mailing list >> > > > Kde-java@mail.kde.org >> > > > http://mail.kde.org/mailman/listinfo/kde-java >> > > >> > >_______________________________________________ >> > >Kde-java mailing list >> > >Kde-java@mail.kde.org >> > >http://mail.kde.org/mailman/listinfo/kde-java >> > >> > _________________________________________________________________ >> > Send and receive Hotmail on your mobile device: http://mobile.msn.com >> > >> > _______________________________________________ >> > Kde-java mailing list >> > Kde-java@mail.kde.org >> > http://mail.kde.org/mailman/listinfo/kde-java >>_______________________________________________ >>Kde-java mailing list >>Kde-java@mail.kde.org >>http://mail.kde.org/mailman/listinfo/kde-java > > > > >_________________________________________________________________ >Send and receive Hotmail on your mobile device: http://mobile.msn.com > >_______________________________________________ >Kde-java mailing list >Kde-java@mail.kde.org >http://mail.kde.org/mailman/listinfo/kde-java _________________________________________________________________ Join the world’s largest e-mail service with MSN Hotmail. http://www.hotmail.com From kde-java@kde.org Wed Apr 17 01:33:22 2002 From: kde-java@kde.org (kde-java@kde.org) Date: Wed, 17 Apr 2002 08:33:22 +0800 Subject: [Kde-java] HGH - Human Growth Hormone Boosters, #1 in the Market! Message-ID: <200204171444.JAA247484@lib.nankai.edu.cn>


Hello, kde-java-request@mail.kde.org,

As seen on NBC, CBS, CNN, and even Oprah! The health discovery that actually reverses aging while burning fat, without dieting or exercise! This proven discovery has even been reported on by the New England Journal of Medicine. Forget aging and dieting forever! And it's Guaranteed!



Click here


Would you like to lose weight while you sleep!
No dieting!
No hunger pains!
No Cravings!
No strenuous exercise!
Change your life forever!

1.Body Fat Loss 82% improvement.
2.Wrinkle Reduction 61% improvement.
3.Energy Level 84% improvement.
4.Muscle Strength 88% improvement.
5.Sexual Potency 75% improvement.
6.Emotional Stability 67% improvement.
7.Memory 62% improvement.

100% GUARANTEED!


 

You are receiving this email as a subscriber
to the Opt-In America Mailing List.
To remove yourself from all related maillists,
just Click Here

From kde-java@kde.org Sun Apr 21 15:51:32 2002 From: kde-java@kde.org (George Russell) Date: Sun, 21 Apr 2002 14:51:32 +0000 Subject: [Kde-java] Using KStdactions Message-ID: <200204211451.32861.george.russell@clara.net> I've just added a new version of gilt to the webpage. http://users.uk.freebsd.org/~grrussel/gilt.0.3.1.tar.bz2 for a screenshot http://users.uk.freebsd.org/~grrussel/ Some API questions. How do you add custom menu entries to the menu bar, and a context menu to a KListView? Is there some version of KDevelop that understands KDE/Java applications? So that I can package source that builds a jar file archive, and installs gilt into the kmenu. George -- 2:46pm up 45 days, 15:36, 4 users, load average: 1.32, 1.19, 1.42