kde4libs stable update for CVE-2009-2702

2009-10-14 Thread Giuseppe Iuculano
Hi,
the following CVE (Common Vulnerabilities  Exposures) id was
published for kde4libs some time ago.

CVE-2009-2702[0]:
| KDE KSSL in kdelibs 3.5.4, 4.2.4, and 4.3 does not properly handle a
| '\0' character in a domain name in the Subject Alternative Name field
| of an X.509 certificate, which allows man-in-the-middle attackers to
| spoof arbitrary SSL servers via a crafted certificate issued by a
| legitimate Certification Authority, a related issue to CVE-2009-2408.


Unfortunately the vulnerability described above is not important enough
to get it fixed via regular security update in Debian stable. It does
not warrant a DSA.

However it would be nice if this could get fixed via a regular point update[1].
Please contact the release team for this.

This is an automatically generated mail, in case you are already working on an
upgrade this is of course pointless.
For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2702
http://security-tracker.debian.net/tracker/CVE-2009-2702
[1] http://www.debian.org/doc/developers-reference/pkgs.html#upload-stable

Kind regards
Giuseppe.



signature.asc
Description: OpenPGP digital signature


Processed: found 550877 in 4:4.3.2-1

2009-10-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 found 550877 4:4.3.2-1
Bug #550877 [kdebase-runtime] componentchooser KCM shall not kill window 
manager not under KDE
There is no source info for the package 'kdebase-runtime' at version 
'4:4.3.2-1' with architecture ''
Unable to make a source version for version '4:4.3.2-1'
Bug Marked as found in versions 4:4.3.2-1.

End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#534952: NMU

2009-10-14 Thread Giuseppe Iuculano
Hi,

Attached is a debdiff of the changes I made for 4:3.5.10.dfsg.1-2.1 0-day NMU.

Cheers,
Giuseppe
diff -u kdelibs-3.5.10.dfsg.1/debian/changelog 
kdelibs-3.5.10.dfsg.1/debian/changelog
--- kdelibs-3.5.10.dfsg.1/debian/changelog
+++ kdelibs-3.5.10.dfsg.1/debian/changelog
@@ -1,3 +1,29 @@
+kdelibs (4:3.5.10.dfsg.1-2.1) unstable; urgency=high
+
+  * Non-maintainer upload by the testing Security Team.
+  * Fixed CVE-2009-1687: An integer overflow, leading to heap-based buffer
+overflow was found in the KDE implementation of garbage collector for the
+JavaScript language (KJS).
+  * Fixed CVE-2009-1690: KDE HTML parser incorrectly handled content, forming
+the HTML page head element. A remote attacker could use this flaw to
+cause a denial of service (konqueror crash) or, potentially, execute
+arbitrary code, with the privileges of the user running konqueror web
+browser, if the victim was tricked to open a specially-crafted HTML page.
+(Closes: #534949)
+  * Fixed CVE-2009-1698: KDE's Cascading Style Sheets (CSS) parser incorrectly
+handled content, forming the value of CSS style attribute. A remote
+attacker could use this flaw to cause a denial of service (konqueror crash)
+or potentially execute arbitrary code with the privileges of the user
+running konqueror web browser, if the victim visited a specially-crafted
+CSS equipped HTML page. (Closes: #534949)
+  * Fixed CVE-2009-2702: KDE KSSL in kdelibs 3.5.4, 4.2.4, and 4.3 does not
+properly handle a '\0' character in a domain name in the Subject
+Alternative Name field of an X.509 certificate, which allows
+man-in-the-middle attackers to spoof arbitrary SSL servers via a crafted
+certificate issued by a legitimate Certification Authority (Closes: 
#546212) 
+
+ -- Giuseppe Iuculano iucul...@debian.org  Wed, 14 Oct 2009 09:57:26 +0200
+
 kdelibs (4:3.5.10.dfsg.1-2) unstable; urgency=low
 
   * Add 64_use_sys_inotify.diff patch to fix ftbfs caused by linux/inotify.
only in patch2:
unchanged:
--- kdelibs-3.5.10.dfsg.1.orig/debian/patches/CVE-2009-1698.diff
+++ kdelibs-3.5.10.dfsg.1/debian/patches/CVE-2009-1698.diff
@@ -0,0 +1,40 @@
+--- a/khtml/css/css_valueimpl.cpp
 b/khtml/css/css_valueimpl.cpp
+@@ -736,7 +736,9 @@ DOM::DOMString CSSPrimitiveValueImpl::cs
+   text = getValueName(m_value.ident);
+   break;
+   case CSSPrimitiveValue::CSS_ATTR:
+-  // ###
++text = attr(;
++text += DOMString( m_value.string );
++text += );
+   break;
+   case CSSPrimitiveValue::CSS_COUNTER:
+ text = counter(;
+--- a/khtml/css/cssparser.cpp
 b/khtml/css/cssparser.cpp
+@@ -1344,6 +1344,14 @@ bool CSSParser::parseContent( int propId
+ if ( args-size() != 1)
+ return false;
+ Value *a = args-current();
++if (a-unit != CSSPrimitiveValue::CSS_IDENT) {
++isValid=false;
++break;
++}
++if (qString(a-string)[0] == '-') {
++isValid=false;
++break;
++}
+ parsedValue = new CSSPrimitiveValueImpl(domString(a-string), 
CSSPrimitiveValue::CSS_ATTR);
+ }
+ else
+@@ -1396,7 +1404,8 @@ CSSValueImpl* CSSParser::parseCounterCon
+ 
+ CounterImpl *counter = new CounterImpl;
+ Value *i = args-current();
+-//if (i-unit != CSSPrimitiveValue::CSS_IDENT) goto invalid;
++if (i-unit != CSSPrimitiveValue::CSS_IDENT) goto invalid;
++if (qString(i-string)[0] == '-') goto invalid;
+ counter-m_identifier = domString(i-string);
+ if (counters) {
+ i = args-next();
only in patch2:
unchanged:
--- kdelibs-3.5.10.dfsg.1.orig/debian/patches/CVE-2009-2702.diff
+++ kdelibs-3.5.10.dfsg.1/debian/patches/CVE-2009-2702.diff
@@ -0,0 +1,66 @@
+#
+# Description: Fix parsing of Subject Alternate Names in kssl (CVE-2009-2702)
+# Patch: https://bugzilla.redhat.com/show_bug.cgi?id=520661
+#
+diff -Nur -x '*.orig' -x '*~' kdelibs-3.5.10.dfsg.1/kio/kssl/kopenssl.cc 
kdelibs-3.5.10.dfsg.1.new/kio/kssl/kopenssl.cc
+--- kdelibs-3.5.10.dfsg.1/kio/kssl/kopenssl.cc 2006-07-22 03:16:39.0 
-0500
 kdelibs-3.5.10.dfsg.1.new/kio/kssl/kopenssl.cc 2009-09-15 
14:53:49.052000619 -0500
+@@ -196,6 +196,7 @@
+ static X509_NAME *(*K_X509_NAME_new)() = 0L;
+ static int (*K_X509_REQ_set_subject_name)(X509_REQ*,X509_NAME*) = 0L;
+ static unsigned char *(*K_ASN1_STRING_data)(ASN1_STRING*) = 0L;
++static int (*K_ASN1_STRING_length)(ASN1_STRING*) = 0L;
+ static STACK_OF(SSL_CIPHER) *(*K_SSL_get_ciphers)(const SSL *ssl) = 0L;
+ 
+ #endif
+@@ -494,6 +495,7 @@
+   K_X509_NAME_new = (X509_NAME *(*)()) 
_cryptoLib-symbol(X509_NAME_new);
+   K_X509_REQ_set_subject_name = (int (*)(X509_REQ*,X509_NAME*)) 
_cryptoLib-symbol(X509_REQ_set_subject_name);
+   K_ASN1_STRING_data = (unsigned char 

Processing of kdelibs_3.5.10.dfsg.1-2.1_i386.changes

2009-10-14 Thread Archive Administrator
kdelibs_3.5.10.dfsg.1-2.1_i386.changes uploaded successfully to localhost
along with the files:
  kdelibs_3.5.10.dfsg.1-2.1.dsc
  kdelibs_3.5.10.dfsg.1-2.1.diff.gz
  kdelibs_3.5.10.dfsg.1-2.1_all.deb
  kdelibs-data_3.5.10.dfsg.1-2.1_all.deb
  kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb
  kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb
  kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb
  kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



kdelibs override disparity

2009-10-14 Thread Archive Administrator
There are disparities between your recently accepted upload and the
override file for the following file(s):

kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb: package says section is libdevel, 
override says debug.


Please note that a list of new sections were recently added to the
archive: cli-mono, database, debug, fonts, gnu-r, gnustep, haskell,
httpd, java, kernel, lisp, localization, ocaml, php, ruby, vcs, video,
xfce, zope.  At this time a script was used to reclassify packages into
these sections.  If this is the case, please only reply to this email if
the new section is inappropriate, otherwise please update your package
at the next upload.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please file a bug against ftp.debian.org and
explain why. Please INCLUDE the list of packages as seen above, or we
won't be able to deal with your request due to missing information.

Please make sure that the subject of the bug you file follows the
following format:

Subject: override: BINARY1:section/priority, [...], BINARYX:section/priority

Include the justification for the change in the body of the mail please.


[NB: this is an automatically generated mail; if you already filed a bug
and have not received a response yet, please ignore this mail.  Your bug
needs to be processed by a human and will be in due course, but until
then the installer will send these automated mails; sorry.]

--
Debian distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing ftpmas...@debian.org)


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



kdelibs_3.5.10.dfsg.1-2.1_i386.changes ACCEPTED

2009-10-14 Thread Archive Administrator

Accepted:
kdelibs-data_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs-data_3.5.10.dfsg.1-2.1_all.deb
kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb
kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb
kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb
kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb
kdelibs_3.5.10.dfsg.1-2.1.diff.gz
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1.diff.gz
kdelibs_3.5.10.dfsg.1-2.1.dsc
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1.dsc
kdelibs_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1_all.deb


Override entries for your package:
kdelibs-data_3.5.10.dfsg.1-2.1_all.deb - optional libs
kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb - extra debug
kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb - optional libdevel
kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb - optional doc
kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb - optional libs
kdelibs_3.5.10.dfsg.1-2.1.dsc - source libs
kdelibs_3.5.10.dfsg.1-2.1_all.deb - optional libs

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 534949 546212 


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#534949: marked as done (CVE-2009-1698 CVE-2009-1690)

2009-10-14 Thread Debian Bug Tracking System
Your message dated Wed, 14 Oct 2009 10:20:35 +
with message-id e1my0yb-0001us...@ries.debian.org
and subject line Bug#534949: fixed in kdelibs 4:3.5.10.dfsg.1-2.1
has caused the Debian Bug report #534949,
regarding CVE-2009-1698 CVE-2009-1690
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
534949: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=534949
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kde4libs
Severity: serious
Tags: security patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,
the following CVE (Common Vulnerabilities  Exposures) ids were
published for kde4libs.

CVE-2009-1698[0]:
| WebKit in Apple Safari before 4.0, iPhone OS 1.0 through 2.2.1, and
| iPhone OS for iPod touch 1.1 through 2.2.1 does not initialize a
| pointer during handling of a Cascading Style Sheets (CSS) attr
| function call with a large numerical argument, which allows remote
| attackers to execute arbitrary code or cause a denial of service
| (memory corruption and application crash) via a crafted HTML document.

CVE-2009-1690[1]:
| Use-after-free vulnerability in WebKit, as used in Apple Safari before
| 4.0, iPhone OS 1.0 through 2.2.1, iPhone OS for iPod touch 1.1 through
| 2.2.1, Google Chrome 1.0.154.53, and possibly other products, allows
| remote attackers to execute arbitrary code or cause a denial of
| service (memory corruption and application crash) by setting an
| unspecified property of an HTML tag that causes child elements to be
| freed and later accessed when an HTML error occurs, related to
| recursion in certain DOM event handlers.

If you fix the vulnerabilities please also make sure to include the
CVE ids in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1698
http://security-tracker.debian.net/tracker/CVE-2009-1698
Upstream WebKit patch: http://trac.webkit.org/changeset/42081
[1] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1690
http://security-tracker.debian.net/tracker/CVE-2009-1690
Upstream WebKit patch: http://trac.webkit.org/changeset/42532
Upstream KDE 4.2 patch: http://websvn.kde.org/?view=revrevision=983316

Cheers,
Giuseppe.

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEUEARECAAYFAkpHbXMACgkQNxpp46476aozMACggLXxefxPO5I2tyYL1jJ0nnSj
XP4Al2eJElqsD3/lKXrGwe/vIg9xKmA=
=TaZb
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
Source: kdelibs
Source-Version: 4:3.5.10.dfsg.1-2.1

We believe that the bug you reported is fixed in the latest version of
kdelibs, which is due to be installed in the Debian FTP archive:

kdelibs-data_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs-data_3.5.10.dfsg.1-2.1_all.deb
kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb
kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb
kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb
kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb
kdelibs_3.5.10.dfsg.1-2.1.diff.gz
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1.diff.gz
kdelibs_3.5.10.dfsg.1-2.1.dsc
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1.dsc
kdelibs_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 534...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Giuseppe Iuculano iucul...@debian.org (supplier of updated kdelibs package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 Oct 2009 09:57:26 +0200
Source: kdelibs
Binary: kdelibs kdelibs-data kdelibs4c2a kdelibs4-dev kdelibs4-doc kdelibs-dbg
Architecture: source all i386
Version: 4:3.5.10.dfsg.1-2.1
Distribution: unstable
Urgency: high
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Giuseppe Iuculano iucul...@debian.org
Description: 
 kdelibs- core libraries from the official KDE release
 kdelibs-data - core shared data for all KDE applications
 kdelibs-dbg - debugging symbols for 

Bug#546212: marked as done (CVE-2009-2702: KDE KSSL NULL Character Certificate Spoofing Vulnerability)

2009-10-14 Thread Debian Bug Tracking System
Your message dated Wed, 14 Oct 2009 10:20:35 +
with message-id e1my0yb-0001uu...@ries.debian.org
and subject line Bug#546212: fixed in kdelibs 4:3.5.10.dfsg.1-2.1
has caused the Debian Bug report #546212,
regarding CVE-2009-2702: KDE KSSL NULL Character Certificate Spoofing 
Vulnerability
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
546212: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=546212
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
---BeginMessage---
Package: kdelibs,kde4libs
Severity: serious
Tags: security

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Hi,
the following CVE (Common Vulnerabilities  Exposures) id was
published for kdelibs and kde4libs.

CVE-2009-2702[0]:
| KDE KSSL in kdelibs 3.5.4, 4.2.4, and 4.3 does not properly handle a
| '\0' character in a domain name in the Subject Alternative Name field
| of an X.509 certificate, which allows man-in-the-middle attackers to
| spoof arbitrary SSL servers via a crafted certificate issued by a
| legitimate Certification Authority, a related issue to CVE-2009-2408.

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-2702
http://security-tracker.debian.net/tracker/CVE-2009-2702

Cheers,
Giuseppe

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkqqhtMACgkQNxpp46476ao+jQCgjGZaW64GZRrVZpcGFAxW4+Ap
FpMAn2EWIhIe+Qgd0RBvO3abWnsLtRF2
=LoWY
-END PGP SIGNATURE-


---End Message---
---BeginMessage---
Source: kdelibs
Source-Version: 4:3.5.10.dfsg.1-2.1

We believe that the bug you reported is fixed in the latest version of
kdelibs, which is due to be installed in the Debian FTP archive:

kdelibs-data_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs-data_3.5.10.dfsg.1-2.1_all.deb
kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs-dbg_3.5.10.dfsg.1-2.1_i386.deb
kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs4-dev_3.5.10.dfsg.1-2.1_i386.deb
kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs4-doc_3.5.10.dfsg.1-2.1_all.deb
kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb
  to pool/main/k/kdelibs/kdelibs4c2a_3.5.10.dfsg.1-2.1_i386.deb
kdelibs_3.5.10.dfsg.1-2.1.diff.gz
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1.diff.gz
kdelibs_3.5.10.dfsg.1-2.1.dsc
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1.dsc
kdelibs_3.5.10.dfsg.1-2.1_all.deb
  to pool/main/k/kdelibs/kdelibs_3.5.10.dfsg.1-2.1_all.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 546...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Giuseppe Iuculano iucul...@debian.org (supplier of updated kdelibs package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.8
Date: Wed, 14 Oct 2009 09:57:26 +0200
Source: kdelibs
Binary: kdelibs kdelibs-data kdelibs4c2a kdelibs4-dev kdelibs4-doc kdelibs-dbg
Architecture: source all i386
Version: 4:3.5.10.dfsg.1-2.1
Distribution: unstable
Urgency: high
Maintainer: Debian Qt/KDE Maintainers debian-qt-kde@lists.debian.org
Changed-By: Giuseppe Iuculano iucul...@debian.org
Description: 
 kdelibs- core libraries from the official KDE release
 kdelibs-data - core shared data for all KDE applications
 kdelibs-dbg - debugging symbols for kdelibs
 kdelibs4-dev - development files for the KDE core libraries
 kdelibs4-doc - developer documentation for the KDE core libraries
 kdelibs4c2a - core libraries and binaries for all KDE applications
Closes: 534949 534949 546212
Changes: 
 kdelibs (4:3.5.10.dfsg.1-2.1) unstable; urgency=high
 .
   * Non-maintainer upload by the testing Security Team.
   * Fixed CVE-2009-1687: An integer overflow, leading to heap-based buffer
 overflow was found in the KDE implementation of garbage collector for the
 JavaScript language (KJS).
   * Fixed CVE-2009-1690: KDE HTML parser incorrectly handled content, forming
 the HTML page head element. A remote attacker could use this flaw to
 cause a denial of service (konqueror crash) or, potentially, execute
 arbitrary code, with the privileges of the user running konqueror web
 browser, if the victim was 

Site recommendation from a friend

2009-10-14 Thread Maxwell Stevens
Hello, 

I am pleased to introduce myself here; my name is Maxwell Stevens from UK 
looking for a noble investor to discuss good cordial business 
relationship/managing of family investment funds. 

Please feel free to contact me on the below email address to enable me detail 
you more adequate information.

Thank you in advance,

Maxwell Stevens
Email: stevensmaxw...@ymail.com



Processing of kdeaccessibility_4.3.2-1_i386.changes

2009-10-14 Thread Archive Administrator
kdeaccessibility_4.3.2-1_i386.changes uploaded successfully to localhost
along with the files:
  kdeaccessibility_4.3.2-1.dsc
  kdeaccessibility_4.3.2.orig.tar.gz
  kdeaccessibility_4.3.2-1.diff.gz
  kdeaccessibility_4.3.2-1_all.deb
  kde-icons-mono_4.3.2-1_all.deb
  kmag_4.3.2-1_i386.deb
  kmouth_4.3.2-1_i386.deb
  kttsd_4.3.2-1_i386.deb
  kmousetool_4.3.2-1_i386.deb
  kdeaccessibility-dbg_4.3.2-1_i386.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



kdenetwork_4.3.2-1_i386.changes ACCEPTED

2009-10-14 Thread Archive Administrator

Accepted:
kde-zeroconf_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/kde-zeroconf_4.3.2-1_i386.deb
kdenetwork-dbg_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/kdenetwork-dbg_4.3.2-1_i386.deb
kdenetwork-filesharing_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/kdenetwork-filesharing_4.3.2-1_i386.deb
kdenetwork_4.3.2-1.diff.gz
  to pool/main/k/kdenetwork/kdenetwork_4.3.2-1.diff.gz
kdenetwork_4.3.2-1.dsc
  to pool/main/k/kdenetwork/kdenetwork_4.3.2-1.dsc
kdenetwork_4.3.2-1_all.deb
  to pool/main/k/kdenetwork/kdenetwork_4.3.2-1_all.deb
kdenetwork_4.3.2.orig.tar.gz
  to pool/main/k/kdenetwork/kdenetwork_4.3.2.orig.tar.gz
kget_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/kget_4.3.2-1_i386.deb
kopete_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/kopete_4.3.2-1_i386.deb
kppp_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/kppp_4.3.2-1_i386.deb
krdc_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/krdc_4.3.2-1_i386.deb
krfb_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/krfb_4.3.2-1_i386.deb
libkopete-dev_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/libkopete-dev_4.3.2-1_i386.deb
libkopete4_4.3.2-1_i386.deb
  to pool/main/k/kdenetwork/libkopete4_4.3.2-1_i386.deb


Override entries for your package:
kde-zeroconf_4.3.2-1_i386.deb - extra kde
kdenetwork-dbg_4.3.2-1_i386.deb - extra debug
kdenetwork-filesharing_4.3.2-1_i386.deb - optional net
kdenetwork_4.3.2-1.dsc - source net
kdenetwork_4.3.2-1_all.deb - optional kde
kget_4.3.2-1_i386.deb - optional net
kopete_4.3.2-1_i386.deb - optional net
kppp_4.3.2-1_i386.deb - optional net
krdc_4.3.2-1_i386.deb - optional net
krfb_4.3.2-1_i386.deb - optional net
libkopete-dev_4.3.2-1_i386.deb - optional libdevel
libkopete4_4.3.2-1_i386.deb - optional libs

Announcing to debian-devel-chan...@lists.debian.org


Thank you for your contribution to Debian.


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



kdenetwork override disparity

2009-10-14 Thread Archive Administrator
There are disparities between your recently accepted upload and the
override file for the following file(s):

kopete_4.3.2-1_i386.deb: package says section is kde, override says net.


Please note that a list of new sections were recently added to the
archive: cli-mono, database, debug, fonts, gnu-r, gnustep, haskell,
httpd, java, kernel, lisp, localization, ocaml, php, ruby, vcs, video,
xfce, zope.  At this time a script was used to reclassify packages into
these sections.  If this is the case, please only reply to this email if
the new section is inappropriate, otherwise please update your package
at the next upload.

Either the package or the override file is incorrect.  If you think
the override is correct and the package wrong please fix the package
so that this disparity is fixed in the next upload.  If you feel the
override is incorrect then please file a bug against ftp.debian.org and
explain why. Please INCLUDE the list of packages as seen above, or we
won't be able to deal with your request due to missing information.

Please make sure that the subject of the bug you file follows the
following format:

Subject: override: BINARY1:section/priority, [...], BINARYX:section/priority

Include the justification for the change in the body of the mail please.


[NB: this is an automatically generated mail; if you already filed a bug
and have not received a response yet, please ignore this mail.  Your bug
needs to be processed by a human and will be in due course, but until
then the installer will send these automated mails; sorry.]

--
Debian distribution maintenance software

(This message was generated automatically; if you believe that there
is a problem with it please contact the archive administrators by
mailing ftpmas...@debian.org)


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#534229: kopete: Yahoo protocol still broken in LENNY

2009-10-14 Thread Michel Vale Ferreira
Hi, this weekend I tested it and among every feature I use, the only
one the is not behaving as expected is the webcam. when I invite
someone to see my webcam, this person did not get a popup windows
asking wether she wants to see it or not. in order to see my webcam,
that person needs to request authorization to see it in the chat
window.


Michel

2009/10/8 Lisandro Damián Nicanor Pérez Meyer perezme...@gmail.com:
 On Thursday 08 October 2009 18:44:30 Michel Vale Ferreira wrote:
 hi, a friend of mine stumbled upon this patch
 http://launchpadlibrarian.net/33034724/kopete_yahoo_update_login.patch
 posted by Doru at an ubuntu forum
 (https://bugs.launchpad.net/ubuntu/jaunty/+source/kdenetwork/+bug/391763).
 I downloaded it and it applied successfully.

 the patched source compiled successfully, but I haven't tested it yet
 due to text only remote access.

 As soon as I can get to my build machine, I'll test it. If anyone else wants
 to give it a try too, please be welcomed.

 --

 Lisandro Damián Nicanor Pérez Meyer
 http://perezmeyer.com.ar/
 http://perezmeyer.blogspot.com/




--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550992: Unable to start session with kdm

2009-10-14 Thread denis
Package: kdm
Version: 4:4.3.1-1
Severity: normal



-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.30-1-686 (SMP w/1 CPU core)
Locale: LANG=it_IT, LC_CTYPE=it_IT (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages kdm depends on:
ii  consolekit0.3.1-1framework for defining and trackin
ii  debconf [debconf-2.0] 1.5.27 Debian configuration management sy
ii  kdebase-runtime   4:4.3.1-1  runtime components from the offici
ii  kdebase-workspace-kgreet-plug 4:4.3.1-1  KDE greet libraries for authentica
ii  kdelibs5  4:4.3.1-1  core libraries for all KDE 4 appli
ii  libc6 2.9-25 GNU C Library: Shared libraries
ii  libck-connector0  0.3.1-1ConsoleKit libraries
ii  libdbus-1-3   1.2.16-2   simple interprocess messaging syst
ii  libkworkspace44:4.3.1-1  Library for the kdebase workspace
ii  libpam0g  1.1.0-4Pluggable Authentication Modules l
ii  libqimageblitz4   1:0.0.4-4  QImageBlitz image effects library
ii  libqt4-svg4:4.5.2-2  Qt 4 SVG module
ii  libqt4-xml4:4.5.2-2  Qt 4 XML module
ii  libqtcore44:4.5.2-2  Qt 4 core module
ii  libqtgui4 4:4.5.2-2  Qt 4 GUI module
ii  libstdc++64.4.1-4The GNU Standard C++ Library v3
ii  libx11-6  2:1.2.2-1  X11 client-side library
ii  libxau6   1:1.0.5-1  X11 authorisation library
ii  libxdmcp6 1:1.0.2-3  X11 Display Manager Control Protoc
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 
ii  lsb-base  3.2-23 Linux Standard Base 3.2 init scrip

Versions of packages kdm recommends:
ii  kde-window-manager [x-window- 4:4.3.1-1  the KDE 4 window manager (KWin)
ii  kdebase   5:54   the K Desktop Environment, base ap
ii  konsole [x-terminal-emulator] 4:4.3.1-1  X terminal emulator for KDE 4
ii  logrotate 3.7.8-4Log rotation utility
ii  xserver-xorg-core [xserver]   2:1.6.4-2  Xorg X server - core server
ii  xterm [x-terminal-emulator]   248-1  X terminal emulator

Versions of packages kdm suggests:
ii  kdepasswd 4:4.3.1-1  password changer for KDE 4

-- debconf information:
  kdm/stop_running_server_with_children: false
* shared/default-x-display-manager: kdm
  kdm/daemon_name: /usr/bin/kdm




kdm_greet[3608]: Cannot load /usr/share/kde4/apps/kdm/faces/.default.face: No 
such file or directory



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550992: Unable to start session with kdm

2009-10-14 Thread Armin Berres
On Wed, 14 Oct 09 20:20, denis wrote:
 Package: kdm
 Version: 4:4.3.1-1
 Severity: normal

Erm, would you mind to give us some more information?
What exactly are you doing, what do you expect, what happens...?
Do you see anything interesting in the logs? Candidates are e.g.
/var/log/kdm.log, /var/log/Xorg.0.log or ~/.xsession-errors.

Greetings,
Armin

PS: Please do not CC me in replies.



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550998: kommander: missing binaries?

2009-10-14 Thread Hans-J. Ullrich
Package: kommander
Severity: grave
Justification: renders package unusable



-- System Information:
Debian Release: squeeze/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: x86_64

Kernel: Linux 2.6.30-2-amd64 (SMP w/2 CPU cores)
Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Dear maintainers,

I discovered that in the last kommander versions (testing and unstable)  the 
binary files
below /usr/bin are missing.

These are all executables beginning with kmdr-*

Is this wanted or a bug? Is kdewebdev a successor of kommander? Strange:
All documentations of package kommander are for kdewebdev. Did I miss
something? In sid there are both packages: kommander and kdewebdev, both in
version 4.3.x.

Best regards

Hans



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550998: kommander: missing binaries?

2009-10-14 Thread Modestas Vainius
tags 550998 unreproducible moreinfo
thanks

Hello,

On trečiadienis 14 Spalis 2009 22:29:38 Hans-J. Ullrich wrote:
 Dear maintainers,
 
 I discovered that in the last kommander versions (testing and unstable) 
  the binary files below /usr/bin are missing.
 
 These are all executables beginning with kmdr-*

Really? How would you explain this:

http://packages.debian.org/sid/amd64/kommander/filelist


-- 
Modestas Vainius modes...@vainius.eu


signature.asc
Description: This is a digitally signed message part.


Processed: tagging 550998

2009-10-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 tags 550998 unreproducible moreinfo
Bug #550998 [kommander] kommander: missing binaries?
Added tag(s) unreproducible and moreinfo.

End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550992: Replay

2009-10-14 Thread Denis Gottardello

I cannot login in kde through kdm.
Look at the end of this mail, /var/log/daemon.log.

turbofinist:~# tail -f /var/log/kdm.log
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server


X: main/renderbuffer.c:2159: _mesa_reference_renderbuffer: Assertion 
`oldRb-Magic == 0xaabbccdd' failed.

X.Org X Server 1.6.4
Release Date: 2009-9-27
X Protocol Version 11, Revision 0
Build Operating System: Linux 2.6.31 i686 Debian
Current Operating System: Linux turbofinist 2.6.30-1-686 #1 SMP Sat Aug 15 
19:11:58 UTC 2009 i686
Build Date: 30 September 2009  08:45:15PM
xorg-server 2:1.6.4-2 (bgog...@debian.org)
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/Xorg.0.log, Time: Wed Oct 14 22:46:40 2009
(==) Using config file: /etc/X11/xorg.conf
Fulfilled via DRI at 12587008
Freed 12587008 (pool 2)
SELinux: Disabled on system, not enabling in X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server
The XKEYBOARD keymap compiler (xkbcomp) reports:
 Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
   Ignoring extra symbols
Errors from xkbcomp are not fatal to the X server

turbofinist:~#















tail -f /var/log/Xorg.0.log
(nothing)


















de...@turbofinist:~$ cat .xsession-errors
Xsession: X session started for denis at mer ott 14 22:55:35 CEST 2009
startkde: Starting up...
kdeinit4: preparing to launch /usr/lib/libkdeinit4_klauncher.so
kdeinit4: preparing to launch /usr/lib/libkdeinit4_kded4.so
kdeinit4: preparing to launch /usr/lib/libkdeinit4_kbuildsycoca4.so
kbuildsycoca4 running...
kdeinit4: preparing to launch /usr/lib/libkdeinit4_kbuildsycoca4.so
kbuildsycoca4 running...
kdeinit4: preparing to launch /usr/lib/libkdeinit4_kconf_update.so
kdeinit4: preparing to launch /usr/lib/libkdeinit4_kcminit_startup.so
kdeinit4: preparing to launch /usr/lib/libkdeinit4_ksmserver.so
unknown program name(3908)/ KStartupInfo::createNewStartupId: 
creating:  turbofinist;123737;234862;3908_TIME0 : unnamed app
kephald starting up
XRANDR error base:  162
RRInput mask is set!!
RandRScreen::loadSettings - adding mode:  117 1024 x 768
RandRScreen::loadSettings - adding crtc:  115
RandRScreen::loadSettings - adding output:  116
Setting CRTC 115 on output default (previous 0 )
CRTC outputs: (116)
Output name: default
Output refresh rate: 60
Output rect: QRect(0,0 1024x768)
Output rotation: 1
XRandROutputs::init
  added output  116
adding an output 0 with geom:  QRect(0,0 1024x768)
output: SCREEN-0 QRect(0,0 1024x768) 0 true false
load xml
connected: 1
looking for current SCREEN-0
known * has score: 0.125
screen: 0 QRect(0,0 1024x768)
looking for a matching configuration...
connected: 1
looking for current SCREEN-0
known * has score: 0.125
found outputs, known: false
activate external configuration!!
registered the service: true
screens registered on the bus: true
outputs registered on the bus: true
configurations registered on the bus: true
kdeinit4: Fatal IO error: client killed
kdeinit4: sending SIGHUP to children.
klauncher: Exiting on signal 1
kdeinit4: sending SIGTERM to children.
kdeinit4: Exit.
KCrash: Application 'ksmserver' crashing...
Warning: connect() failed: : No such file or directory
KCrash cannot reach kdeinit, launching directly.
Unexpected response from KInit (response = -1076572925).
startkde: Could not start ksmserver. Check your installation.
kded4: Fatal IO error: client killed
kwin: Fatal IO error: client killed
Qt-subapplication: Fatal IO 

Bug#550992: Unable to start session with kdm

2009-10-14 Thread Denis Gottardello
Alle mercoledì 14 ottobre 2009, hai scritto:
 On Wed, 14 Oct 09 20:20, denis wrote:
  Package: kdm
  Version: 4:4.3.1-1
  Severity: normal

 Erm, would you mind to give us some more information?
 What exactly are you doing, what do you expect, what happens...?
 Do you see anything interesting in the logs? Candidates are e.g.
 /var/log/kdm.log, /var/log/Xorg.0.log or ~/.xsession-errors.

 Greetings,
 Armin

 PS: Please do not CC me in replies.


I think that kdm package does not get this file:
/usr/share/kde4/apps/kdm/faces/.default.face


-- 
www.denisgottardello.it
Skype: mrdebug
PlannerBoss, pianifica il tuo lavoro! 
http://www.denisgottardello.it/PlannerBoss/PlannerBossIndice.php
Sviluppo software in Java - C++ - Delphi - Freepascal, Linux - Windows.
Assistenza su piattaforme Linux - Windows.



--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Processed: Re: Bug#550992: Replay

2009-10-14 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

 reassign 550992 libgl1-mesa-dri
Bug #550992 [kdm] Unable to start session with kdm
Bug reassigned from package 'kdm' to 'libgl1-mesa-dri'.
Bug No longer marked as found in versions kdebase-workspace/4:4.3.1-1.
 kthxbye
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#550992: Replay

2009-10-14 Thread Armin Berres
reassign 550992 libgl1-mesa-dri
kthxbye

On Wed, 14 Oct 09 22:58, Denis Gottardello wrote:
 
 I cannot login in kde through kdm.
 Look at the end of this mail, /var/log/daemon.log.
 
 turbofinist:~# tail -f /var/log/kdm.log
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 The XKEYBOARD keymap compiler (xkbcomp) reports:
  Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 The XKEYBOARD keymap compiler (xkbcomp) reports:
  Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 
 
 X: main/renderbuffer.c:2159: _mesa_reference_renderbuffer: Assertion 
 `oldRb-Magic == 0xaabbccdd' failed.
^^
Here we have the real problem. It is not about the nasty kdm warning
that it cannot open default.face.
I guess this is a problem in Mesa. I am reassigning this bug. Can you tell us
which version of libgl1-mesa-dri you have installed?

Greetings,
Armin

 
 X.Org X Server 1.6.4
 Release Date: 2009-9-27
 X Protocol Version 11, Revision 0
 Build Operating System: Linux 2.6.31 i686 Debian
 Current Operating System: Linux turbofinist 2.6.30-1-686 #1 SMP Sat Aug 15 
 19:11:58 UTC 2009 i686
 Build Date: 30 September 2009  08:45:15PM
 xorg-server 2:1.6.4-2 (bgog...@debian.org)
 Before reporting problems, check http://wiki.x.org
 to make sure that you have the latest version.
 Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
 (==) Log file: /var/log/Xorg.0.log, Time: Wed Oct 14 22:46:40 2009
 (==) Using config file: /etc/X11/xorg.conf
 Fulfilled via DRI at 12587008
 Freed 12587008 (pool 2)
 SELinux: Disabled on system, not enabling in X server
 The XKEYBOARD keymap compiler (xkbcomp) reports:
  Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 The XKEYBOARD keymap compiler (xkbcomp) reports:
  Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 The XKEYBOARD keymap compiler (xkbcomp) reports:
  Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 The XKEYBOARD keymap compiler (xkbcomp) reports:
  Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 The XKEYBOARD keymap compiler (xkbcomp) reports:
  Warning:  Type ONE_LEVEL has 1 levels, but RALT has 2 symbols
Ignoring extra symbols
 Errors from xkbcomp are not fatal to the X server
 
 turbofinist:~#
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 tail -f /var/log/Xorg.0.log
 (nothing)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 de...@turbofinist:~$ cat .xsession-errors
 Xsession: X session started for denis at mer ott 14 22:55:35 CEST 2009
 startkde: Starting up...
 kdeinit4: preparing to launch /usr/lib/libkdeinit4_klauncher.so
 kdeinit4: preparing to launch /usr/lib/libkdeinit4_kded4.so
 kdeinit4: preparing to launch /usr/lib/libkdeinit4_kbuildsycoca4.so
 kbuildsycoca4 running...
 kdeinit4: preparing to launch /usr/lib/libkdeinit4_kbuildsycoca4.so
 kbuildsycoca4 running...
 kdeinit4: preparing to launch /usr/lib/libkdeinit4_kconf_update.so
 kdeinit4: preparing to launch /usr/lib/libkdeinit4_kcminit_startup.so
 kdeinit4: preparing to launch /usr/lib/libkdeinit4_ksmserver.so
 unknown program name(3908)/ KStartupInfo::createNewStartupId: 
 creating:  turbofinist;123737;234862;3908_TIME0 : unnamed app
 kephald starting up
 XRANDR error base:  162
 RRInput mask is set!!
 RandRScreen::loadSettings - adding mode:  117 1024 x 768
 RandRScreen::loadSettings - adding crtc:  115
 RandRScreen::loadSettings - adding output:  116
 Setting CRTC 115 on output default (previous 0 )
 CRTC outputs: (116)
 Output name: default
 Output refresh rate: 60
 Output rect: QRect(0,0 1024x768)
 Output rotation: 1
 XRandROutputs::init
   added output  116
 adding an output 0 with geom:  QRect(0,0 1024x768)
 output: SCREEN-0 QRect(0,0 1024x768) 0 true false
 load xml
 connected: 1
 looking for current SCREEN-0
 known * has score: 0.125
 screen: 0 QRect(0,0 1024x768)
 looking for a matching configuration...
 connected: 1
 looking for current SCREEN-0
 known * has score: 0.125
 found outputs, known: false
 activate external configuration!!
 registered the service: true
 screens registered on the bus: true
 outputs registered on the bus: true
 configurations registered on the bus: true