Your message dated Sun, 31 Oct 2004 15:08:12 +0100 with message-id <[EMAIL PROTECTED]> and subject line Bug#269890: innerHTML does not work in konqueror has caused the attached Bug report 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 I am talking about this indicates a serious mail system misconfiguration somewhere. Please contact me immediately.) Debian bug tracking system administrator (administrator, Debian Bugs database) -------------------------------------- Received: (at submit) by bugs.debian.org; 4 Sep 2004 06:52:22 +0000 >From [EMAIL PROTECTED] Fri Sep 03 23:52:22 2004 Return-path: <[EMAIL PROTECTED]> Received: from zaphod.wh9.tu-dresden.de [141.76.120.10] (mail) by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1C3UPN-0000uS-00; Fri, 03 Sep 2004 23:52:22 -0700 Received: from amavis by zaphod.wh9.tu-dresden.de with scanned-ok (Exim 3.35 #1 (Debian)) id 1C3UPM-0005jz-00 for <[EMAIL PROTECTED]>; Sat, 04 Sep 2004 08:52:20 +0200 Received: from x1003ac.wh9.tu-dresden.de ([141.76.120.171] helo=camlann.wh9.tu-dresden.de ident=gawain) by zaphod.wh9.tu-dresden.de with asmtp (Exim 3.35 #1 (Debian)) id 1C3UPK-0007ht-00 for <[EMAIL PROTECTED]>; Sat, 04 Sep 2004 08:52:18 +0200 From: Christian Welzel <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Organization: AG DSN Dresden To: [EMAIL PROTECTED] Subject: innerHTML does not work in konqueror Date: Sat, 4 Sep 2004 08:52:13 +0200 User-Agent: KMail/1.7 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart3172517.6uvic3TZFc"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <[EMAIL PROTECTED]> X-Virus-Scanned: by AMaViS snapshot-20020531 Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: --nextPart3172517.6uvic3TZFc Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Package: konqueror Version: 3.3.0-1 Severity: important innerHTML in konqueror returns the same as outerHTML. This is fixed in CVS: =2D-- kdelibs/khtml/html/html_elementimpl.cpp #1.179:1.180 @ -436,5 +436,8 @ void HTMLElementImpl::removeCSSProperty( DOMString HTMLElementImpl::innerHTML() const { =2D return toString(); + DOMString result; + for (NodeImpl *child =3D firstChild(); child !=3D NULL; child =3D=20 child->nextSibling()) + result +=3D child->toString(); + return result; } Please fix in debian-version and make new packages. =2D-=20 MfG, Christian Welzel (Sektionsvorsitzender und Admin AG DSN Gerokstrasse) GPG-Key: http://www.camlann.de/key.asc Fingerprint: 4F50 19BF 3346 36A6 CFA9 DBDC C268 6D24 70A1 AD15 --nextPart3172517.6uvic3TZFc Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.9.9 (GNU/Linux) iD8DBQBBOWYhwmhtJHChrRURArRFAKDY48tsAwjypuydyU5Rki6hQeeNVQCgy3C9 ApTBJdM1mbKkiPywjgjsVX0= =Cgqo -----END PGP SIGNATURE----- --nextPart3172517.6uvic3TZFc-- --------------------------------------- Received: (at 269890-done) by bugs.debian.org; 31 Oct 2004 14:08:16 +0000 >From [EMAIL PROTECTED] Sun Oct 31 06:08:16 2004 Return-path: <[EMAIL PROTECTED]> Received: from 84-120-65-92.onocable.ono.com (chistera.yi.org) [84.120.65.92] by spohr.debian.org with esmtp (Exim 3.35 1 (Debian)) id 1COGNT-00043p-00; Sun, 31 Oct 2004 06:08:16 -0800 Received: from userid 1000 by chistera.yi.org with local (Exim 4.34) id 1COGNQ-000426-Uv; Sun, 31 Oct 2004 15:08:13 +0100 Date: Sun, 31 Oct 2004 15:08:12 +0100 From: Adeodato =?iso-8859-1?Q?Sim=F3?= <[EMAIL PROTECTED]> To: [EMAIL PROTECTED], [EMAIL PROTECTED] Subject: Re: Bug#269890: innerHTML does not work in konqueror Message-ID: <[EMAIL PROTECTED]> References: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <[EMAIL PROTECTED]> X-No-CC: Please respect my Mail-Followup-To header User-Agent: Mutt/1.5.6+20040907i Delivered-To: [EMAIL PROTECTED] X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25 (1.212-2003-09-23-exp) on spohr.debian.org X-Spam-Status: No, hits=-4.8 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS, HAS_BUG_NUMBER autolearn=no version=2.60-bugs.debian.org_2004_03_25 X-Spam-Level: * Christian Welzel [Sat, 04 Sep 2004 08:52:13 +0200]: > Package: konqueror > Version: 3.3.0-1 > Severity: important > innerHTML in konqueror returns the same as outerHTML. > This is fixed in CVS: > --- kdelibs/khtml/html/html_elementimpl.cpp #1.179:1.180 > @ -436,5 +436,8 @ void HTMLElementImpl::removeCSSProperty( > DOMString HTMLElementImpl::innerHTML() const > { > - return toString(); > + DOMString result; > + for (NodeImpl *child = firstChild(); child != NULL; child = > child->nextSibling()) > + result += child->toString(); > + return result; > } > Please fix in debian-version and make new packages. fix incorporated in kdelibs 3.3.1-1, currently in incoming. closing the bug. -- Adeodato Simó EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621 A dream is an answer to a question that we don't know how to ask.