From kde-java@kde.org Sun Dec 1 12:34:51 2002 From: kde-java@kde.org (Ralf von Herren) Date: Sun, 1 Dec 2002 13:34:51 +0100 Subject: [Kde-java] (no subject) Message-ID: <000b01c29936$2de41040$f2a107d5@Markus> This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C2993E.6D62AA80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hallo schneckchen, hier ist noch einmal Markus! Wir hatten schon miteinander kommunizeirt. Melde Dich doch einmal bei mir. Das kann eine roamtische und auch erotische Zukunft f=FCr uns sein, wenn = wir uns auch noch riechen k=F6nnen. Gru=DF Markus ( der von Gr=FCnenthal ! ) ------=_NextPart_000_0006_01C2993E.6D62AA80 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable
Hallo schneckchen,
 
hier ist noch einmal Markus! Wir hatten = schon =20 miteinander kommunizeirt.
 
Melde Dich doch einmal bei = mir.
 
Das kann eine roamtische und auch = erotische Zukunft=20 f=FCr uns sein, wenn wir uns auch noch riechen k=F6nnen.
 
Gru=DF
 
Markus ( der von Gr=FCnenthal !=20 )
------=_NextPart_000_0006_01C2993E.6D62AA80-- From kde-java@kde.org Tue Dec 3 03:12:28 2002 From: kde-java@kde.org (DVD Special) Date: Mon, 2 Dec 2002 22:12:28 -0500 Subject: [Kde-java] Join and get 4 DVDs for .49 cents each + FREE SHIPPING! Message-ID: BRD_12352036 The Columbia House DVD Club is the best way to build your DVD collection. Check out today's best sellers like Training Day, Shrek, Gladiator and many more! Join now and you can... Get 4 DVDs for 49¢ each! And for a Limited time enjoy FREE Shipping! Check out the details at: http://xbrd.com/d.php?m_z=BRD_12352036&l_d=1027029118&u_d=4444334&pid=368&oid=1021&sid= ..................................................................... Choose from these and many more hot releases at chdvd.com! -Training Day -Shrek Special Edition -Gladiator -Matrix -Forrest Gump Collector's Edition -Pearl Harbor (2001) 60th Anniversary Commemorative Edition -Moulin Rouge (2001) -Braveheart -American Pie 2 Collector's Edition (Unrated) -Lara Croft: Tomb Raider Special Collector's Edition -Green Mile -Gone In 60 Seconds -Kiss of the Dragon -Fast and the Furious (2001) Collector's Edition -Crouching Tiger, Hidden Dragon -Titanic -Saving Private Ryan -Rush Hour 2 Infinifilm http://xbrd.com/d.php?m_z=BRD_12352036&l_d=1027029118&u_d=4444334&pid=368&oid=1021&sid= To unsubscribe, point your browser to http://xbrd.com/u1.php?m=BRD_12352036&em=kde-java@mail.kde.org&id=4444334 Users of the AOL email client may click here to unsubscribe. From kde-java@kde.org Sat Dec 7 09:45:32 2002 From: kde-java@kde.org (Gert-Jan van der Heiden) Date: Sat, 7 Dec 2002 10:45:32 +0100 Subject: [Kde-java] Re: javabindings In-Reply-To: <200212040128.57417.Richard_Dale@tipitina.demon.co.uk> References: <200211171117.47657.g.j.vanderheiden@xs4all.nl> <200212041420.30212.g.j.vanderheiden@xs4all.nl> <200212040128.57417.Richard_Dale@tipitina.demon.co.uk> Message-ID: <200212071045.32274.nospam@bla.com> KConfig.java has a deprecated tag, but the KConfig in kdelibs hasn't. The defaultUserAgent that is being referred hasn't got anything todo with KConfig. See below,I added the header comments of the Java and de C++ version. Looks like something went wrong? Gert-Jan ___________________________________________________ Java: /** @deprecated Use KProtocolManager.defaultUserAgent() instead. See {@link KConfigSignals} for signals emitted by KConfig. @short * @deprecated Use KProtocolManager::defaultUserAgent() instead. */ C++: ** * Access KDE Configuration entries. * * This class implements KDE's default configuration system. * * @author Kalle Dalheimer , Preston Brown * @version $Id: kconfig.h,v 1.51 2002/09/28 12:28:47 tjansen Exp $ * @see KGlobal::config(), KConfigBase, KSimpleConfig * @short KDE Configuration Management class */ From kde-java@kde.org Fri Dec 6 21:27:23 2002 From: kde-java@kde.org (Richard Dale) Date: Fri, 6 Dec 2002 21:27:23 +0000 Subject: [Kde-java] Re: javabindings In-Reply-To: <200212071045.32274.nospam@bla.com> References: <200211171117.47657.g.j.vanderheiden@xs4all.nl> <200212040128.57417.Richard_Dale@tipitina.demon.co.uk> <200212071045.32274.nospam@bla.com> Message-ID: <200212062127.24026.Richard_Dale@tipitina.demon.co.uk> I think this is a bug in the kdoc code that kalyptus is based on. In kprotocolmanager.h: /** @deprecated Use KProtocolManager::defaultUserAgent() instead. */ #define DEFAULT_USERAGENT_STRING "" #if 0 QString("Mozilla/5.0 (compatible; Konqueror/%1; X11").arg(KDE_VERSION_MAJOR) #endif class KConfig; ... It looks like kalyptus has got confused with the 'class KConfig;' statement and assumed that the comment is against the KConfig class. It might be possible to take the current kdoc code, and merge any fixes for this sort of thing into kalyptus. -- Richard On Saturday 07 December 2002 9:45 am, Gert-Jan van der Heiden wrote: > KConfig.java has a deprecated tag, but the KConfig in kdelibs hasn't. The > defaultUserAgent that is being referred hasn't got anything todo with > KConfig. See below,I added the header comments of the Java and de C++ > version. Looks like something went wrong? > > Gert-Jan > ___________________________________________________ > Java: > /** > @deprecated Use KProtocolManager.defaultUserAgent() instead. > See {@link KConfigSignals} for signals emitted by KConfig. > > > > @short * @deprecated Use KProtocolManager::defaultUserAgent() instead. > */ > > C++: > ** > * Access KDE Configuration entries. > * > * This class implements KDE's default configuration system. > * > * @author Kalle Dalheimer , Preston Brown > * @version $Id: kconfig.h,v 1.51 2002/09/28 12:28:47 tjansen Exp $ > * @see KGlobal::config(), KConfigBase, KSimpleConfig > * @short KDE Configuration Management class > */ > _______________________________________________ > Kde-java mailing list > Kde-java@mail.kde.org > http://mail.kde.org/mailman/listinfo/kde-java From kde-java@kde.org Sat Dec 7 13:12:51 2002 From: kde-java@kde.org (FWApplication) Date: Sat, 07 Dec 2002 14:12:51 +0100 Subject: [Kde-java] Une solution de réalisation des sites multilingues pour renforcer votre présence --Gark=_20021271312508284Tgwgv0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: Quoted-Printable Monsieur, Madame,=0D=0A=0D=0AVotre soci=E9t=E9 a attir=E9 toute notre att= ention car votre activit=E9 est directement li=E9e =E0 la construction de= s sites web.=0D=0A=0D=0ANous avons d=E9velopp=E9 une solution pour la ges= tion des sites web multilingues, comptant d=E9j=E0 une dizaine de r=E9f=E9= rences comme Vivendi Universal Games, Sierra, Black Label, Lafarge, etc.=0D= =0A=0D=0ALa solution s'appelle FWA mutltilingue, elle est d=E9compos=E9e = en fonctions et traitements multilingues facilement int=E9grables dans vo= tre environnement de d=E9veloppement ou syst=E8me du gestion de contenu.=0D= =0A=0D=0AAvec comme fonctionnalit=E9s la gestion multilingue de contenu s= tatique et dynamique, la prise en compte de sp=E9cificit=E9s culturelles = (dates, devises, format d'adresses, unit=E9s de mesure...), connecteurs a= ux moteurs de traduction automatique, la gestion des traductions professi= onnelles =E0 distance, FWA multilingue vous assiste tout au long du proce= ssus complet d'internationalisation de votre site ou application web.=0D=0A= =0D=0APour plus d'informations sur la solution FWA multilingue consultez = notre site web - http://www.fwa-multilingual.com=0D=0A=0D=0ANotre politiq= ue de partenariat vous permet d'int=E9grer notre solution dans votre offr= e de cr=E9ation, de maintenance ou de traduction de site web multilingue,= vous apportant les avantages suivants :=0D=0A- proposer =E0 vos clients = la mise en =9Cuvre de site web en multilingue dans un budget raisonnable=0D= =0A- disposer d'un outil de maintenance rapide et efficace (pas de duplic= ation des environnements source par le nombre de langues du site)=0D=0A- = distribuer de la solution FWA multilingue=0D=0A=0D=0ADans l'attente de vo= tre r=E9ponse, nous vous prions d'agr=E9er, Monsieur, Madame, nos sinc=E8= res salutations=0D=0A=0D=0AIng=E9nieur commercial=0D=0AYannick FAURE=0D=0A= =0D=0AP.S. Votre e-mail a =E9t=E9 trouv=E9 lors de nos visites de sites w= eb sp=E9cialis=E9s dans la cr=E9ation de sites web, traduction, services = informatiques. Si vous jugez le contenu de ce mail hors sujet par rapport= =E0 votre activit=E9, nous vous proposons de vous d=E9sinscrire =E0 l'ad= resse suivante : http://www.fw-application.com/gen_03.asp=0D=0A=0D=0A=0D=0A= -------------------------------------------------------------------------= ----------------=0D=0AEnglish version =0D=0A=0D=0A=0D=0AHello,=0D=0A=0D=0A= We've found your company's activity interesting, because it's lied to web= sites creation.=0D=0A=0D=0AWe have issued a dynamic multilingual web sit= es solution, integrated today into several web sites of companies like Vi= vendi Universal Games, Sierra, Black label, Lafarge and others.=0D=0A=0D=0A= Our solution, FWA multilingual, combines a range of functions and process= es that you can easily integrate into your web site construction environm= ent.=0D=0A=0D=0AMain features includes static and dynamic content managem= ent, cultural aspects integrating (date format, measurements, registratio= n forms ...), automatic translations engines connectors, application for = off-line translations entry : all this for your web application complete = internationalisation.=0D=0A=0D=0AFor more information, visit our web site= - http://www.fwa-multilingual.com.=0D=0A=0D=0AOur partnership developmen= t strategy is aimed to let you integrate our solution into your offer of = web sites creation, maintenance and translation, giving to you the follow= ing benefits : =0D=0A- offer to your client an option of multilingual web= site creation for a reasonable price=0D=0A- maintain your multilingual e= nvironment easily (only one dynamic environment is maintained no matter t= he languages number)=0D=0A- distribute FWA solution=0D=0A=0D=0ASincerely,= =0D=0ASales manager,=0D=0AYannick FAURE=0D=0A=0D=0AP.S. Your e-mail addre= ss was found while we've been visiting the internet resources lied to the= web sites creation business, translation services, consulting services. = If you do not find the content of this mail lied to your activity, you ca= n delete your e-mail address at the following link: http://www.fw-applica= tion.com/gen_03.asp --Gark=_20021271312508284Tgwgv0 Content-Type: text/html; charset=US-ASCII Content-Transfer-Encoding: Quoted-Printable Monsieur, Madame,

=0D=0A=0D=0AVotre soci=E9t=E9 a attir=E9 toute notre = attention car votre activit=E9 est directement li=E9e =E0 la construction= des sites web.

=0D=0A=0D=0ANous avons d=E9velopp=E9 une solution pour= la gestion des sites web multilingues, comptant d=E9j=E0 une dizaine de = r=E9f=E9rences comme Vivendi Universal Games, Sierra, Black Label, Laf= arge, etc.

=0D=0A=0D=0ALa solution s'appelle FWA mutltilingue, elle est d=E9compos=E9e en= fonctions et traitements multilingues facilement int=E9grables dans votr= e environnement de d=E9veloppement ou syst=E8me du gestion de contenu.

= =0D=0A=0D=0AAvec comme fonctionnalit=E9s la gestion multilingue de conten= u statique et dynamique, la prise en compte de sp=E9cificit=E9s culturell= es (dates, devises, format d'adresses, unit=E9s de mesure...), connecteur= s aux moteurs de traduction automatique, la gestion des traductions profe= ssionnelles =E0 distance, FWA multilingue vous assiste tout au long du pr= ocessus complet d'internationalisation de votre site ou application web.<= p>=0D=0A=0D=0APour plus d'informations sur la solution FWA multilingue co= nsultez notre site web - h= ttp://www.fwa-multilingual.com

=0D=0A=0D=0ANotre politique de parte= nariat vous permet d'int=E9grer notre solution dans votre offre de cr=E9a= tion, de maintenance ou de traduction de site web multilingue, vous appor= tant les avantages suivants :
=0D=0A- proposer =E0 vos clients la mise= en =9Cuvre de site web en multilingue dans un budget raisonnable
=0D=0A= - disposer d'un outil de maintenance rapide et efficace (pas de duplicati= on des environnements source par le nombre de langues du site)
=0D=0A-= distribuer de la solution FWA multilingue

=0D=0A=0D=0ADans l'attente d= e votre r=E9ponse, nous vous prions d'agr=E9er, Monsieur, Madame, nos sin= c=E8res salutations.

=0D=0AIng=E9nieur commercial
=0D=0AYannick FAUR= E
=0D=0A3D"FWA"

=0D=0A=0D=0AP.S. Votre e-mail a =E9t=E9 trouv=E9 lors de n= os visites de sites web sp=E9cialis=E9s dans la cr=E9ation de sites web, = traduction, services informatiques. Si vous jugez le contenu de ce mail h= ors sujet par rapport =E0 votre activit=E9, nous vous proposons de vous d= =E9sinscrire =E0 l'adresse suivante : http://www.fw-application.com/gen_03.asp

&= nbsp;


=0D=0A=0D=0AEnglish version

=0D=0A=0D=0AHello,

=0D=0A= =0D=0AWe've found your company's activity interesting, because it's lied = to web sites creation.

=0D=0A=0D=0AWe have issued a dynamic multilingua= l web sites solution, integrated today into several web sites of companie= s like Vivendi Universal Games, Sierra, Black label, Lafarge and o= thers.

=0D=0A=0D=0AOur solution, FWA multilingual, combines a range of functions and process= es that you can easily integrate into your web site construction environm= ent.

=0D=0A=0D=0AMain features includes static and dynamic content mana= gement, cultural aspects integrating (date format, measurements, registra= tion forms ...), automatic translations engines connectors, application f= or off-line translations entry : all this for your web application comple= te internationalisation.

=0D=0A=0D=0AFor more information, visit our web site - http://www.fwa-mu= ltilingual.com.

=0D=0A=0D=0AOur partnership development strategy is= aimed to let you integrate our solution into your offer of web sites cre= ation, maintenance and translation, giving to you the following benefits = :
=0D=0A- offer to your client an option of multilingual web site cre= ation for a reasonable price
=0D=0A- maintain your multilingual enviro= nment easily (only one dynamic environment is maintained no matter the la= nguages number)
=0D=0A- distribute FWA solution

=0D=0A=0D=0ASincerel= y,
=0D=0ASales manager,
=0D=0AYannick FAURE

=0D=0A=0D=0AP.S. Your e-mail address was found while we've been = visiting the internet resources lied to the web sites creation business, = translation services, consulting services. If you do not find the content= of this mail lied to your activity, you can delete your e-mail address a= t the following link: http://www.fw-application.com/gen_03.asp --Gark=_20021271312508284Tgwgv0-- From kde-java@kde.org Fri Dec 20 17:31:41 2002 From: kde-java@kde.org (kde-java@kde.org) Date: Fri, 20 Dec 2002 12:31:41 -0500 Subject: [Kde-java] Save 25% on your holiday shopping -----boundary987624234491 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit SAVE 25% ON YOUR HOLIDAY SHOPPING! ---------------------------------- Click: http://adfarm.mediaplex.com/ad/ck/2489-9799-6284-0?ck=6 AOL Users Click Here Shop for the holidays the easy way at HSN.com. Whether it's jewelry, electronics, cookware, fashion or home decor, you'll find gifts for everyone on your list by browsing the holiday gift guide. ************************************************************ To take advantage of this 25% savings, enter coupon code HSN3403 when checking out. ************************************************************ Shop now at HSN.com, click: http://adfarm.mediaplex.com/ad/ck/2489-9799-6284-0?ck=6 AOL Users Click Here ------------------------------------------------------------ HSN3403 is valid for 25% off your first single item purchase of $20 or more with a maximum savings of $50 on hsn.com only. Coupon can only be used once per customer. Excludes shipping & handling, sales tax, Today's Specials, Clearance Department and sale priced merchandise. Coupon cannot be applied on extended service plans orcombined with other coupons or offers and is nontransferable. We reserve the right to cancel orders when unexpected coupon system errors occur. Offer is valid from October 26, 2002 through December 31, 2002. Because your satisfaction is our guarantee Special Holiday Refund PolicyÑ This year, returning gifts is easier than ever with an extension of our 30-day return policy. Any gift you purchase between October 8th and December 19th can now be returned all the way up until January 15th for a full refund to your original method of payment. It's just another way HSN is working to make your holidays happier. ------------------------ iRecommend-It is our trademark. Don't want to receive future email from iRecommend-It? Click Here to unsubscribe today. or FORWARD this entire message to remove@irecommend-it.com **|Recommend-It/VB|kde-java@mail.kde.org -----boundary987624234491 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit



Shop for the holidays the easy way at HSN.com. Whether it's jewelry, electronics, cookware, fashion or home décor, you'll find gifts for everyone on your list by browsing the holiday gift guide.
To take advantage of this 25% savings, enter coupon code HSN3403 when checking out.
HSN3403 is valid for 25% off your first single item purchase of $20 or more with a maximum savings of $50 on hsn.com only. Coupon can only be used once per customer. Excludes shipping & handling, sales tax, Today's Specials, Clearance Department and sale priced merchandise. Coupon cannot be applied on extended service plans or combined with other coupons or offers and is nontransferable. We reserve the right to cancel orders when unexpected coupon system errors occur. Offer is valid from October 26, 2002 through December 31, 2002.

Because your satisfaction is our guarantee
Special Holiday Refund Policy— This year, returning gifts is easier than ever with an extension of our 30-day return policy. Any gift you purchase between October 8th and December 19th can now be returned all the way up until January 15th for a full refund to your original method of payment. It's just another way HSN is working to make your holidays happier.






------------------------
iRecommend-It is our trademark.
Don't want to receive future email from iRecommend-It?
Click Here to unsubscribe today.
or FORWARD this entire message to remove@irecommend-it.com




















**|Recommend-It/VB|kde-java@mail.kde.org
-----boundary987624234491-- From kde-java@kde.org Sun Dec 22 01:12:50 2002 From: kde-java@kde.org (Mark Gilmore) Date: Sat, 21 Dec 2002 18:12:50 -0700 Subject: [Kde-java] Mark Gilmore is out of the office. Message-ID: I will be out of the office starting 12/21/2002 and will not return until 12/30/2002. I will not be checking email and will respond to your note when I return. Happy Holidays! From kde-java@kde.org Tue Dec 31 21:28:48 2002 From: kde-java@kde.org (kde-java@kde.org) Date: Tue, 31 Dec 2002 16:28:48 -0500 Subject: [Kde-java] Check out the new system for building residual income. -----boundary987624234491 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit ...that's what they'll be saying to you when you explain that you actually started an online business. You decide whether you want to tell them that it was totally Risk Free, that the system does 99% of the work for you, and that thousands of people are already enjoying a nice income from it already... including YOU! People are often skeptical. Why is that? Is it so difficult to believe that someone could create a system where the average person can make money on the internet? Since almost everyone in the world wants to make more money, one would think there would be an incredible demand for such a system if it were ever created. Well, click on the link below to take a look at the system that is taking the internet world by storm. Well over 500,000 people worldwide are using this automated system that you can begin using in a matter of minutes to generate an online income for yourself! Click below to see what all the people are talking about! http://www.ric2.com/go2.e?10001001 AOL Users Click Here ----------------------------------------------------------- ©2002 EXImpact Technologies. All rights reserved. As with any business you could make more or less money than the results described. Your results will be based on your individual monetary investments, business experience, expertise, and your level of desire. There are no guarantees concerning the level of success you may experience. REMEMBER: The harder you work, the luckier you get! The only place success comes before work is in the dictionary. ------------------------ iRecommend-It is our trademark. Don't want to receive future email from iRecommend-It? Click Here to unsubscribe today. or FORWARD this entire message to remove@irecommend-it.com **|Recommend-It/VB|kde-java@mail.kde.org -----boundary987624234491 Content-Type: text/html; charset=us-ascii Content-Transfer-Encoding: 7bit
 



...that's what they'll be saying to you when you explain that you actually started an online business. You decide whether you want to tell them that it was totally Risk Free, that the system does 99% of the work for you, and that thousands of people are already enjoying a nice income from it already... including YOU!

People are often skeptical. Why is that? Is it so difficult to believe that someone could create a system where the average person can make money on the internet? Since almost everyone in the world wants to make more money, one would think there would be an incredible demand for such a system if it were ever created.

Well, click on the link below to take a look at the system that is taking the internet world by storm. Well over 500,000 people worldwide are using this automated system that you can begin using in a matter of minutes to generate an online income for yourself!

Click here to see what all the people are talking about!



As with any business you could make more or less money than the results described. Your results will be based on your individual monetary investments, business experience, expertise, and your level of desire. There are no guarantees concerning the level of success you may experience.

REMEMBER: The harder you work, the luckier you get! The only place success comes before work is in the dictionary.

©2002 EXImpact Technologies. All rights reserved.

Enter Opt-out info here.



------------------------
iRecommend-It is our trademark.
Don't want to receive future email from iRecommend-It?
Click Here to unsubscribe today.
or FORWARD this entire message to remove@irecommend-it.com




















**|Recommend-It/VB|kde-java@mail.kde.org
-----boundary987624234491--