Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:86353 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 96924 invoked from network); 22 May 2015 19:43:15 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 22 May 2015 19:43:15 -0000 Authentication-Results: pb1.pair.com header.from=morrison.levi@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=morrison.levi@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.223.174 as permitted sender) X-PHP-List-Original-Sender: morrison.levi@gmail.com X-Host-Fingerprint: 209.85.223.174 mail-ie0-f174.google.com Received: from [209.85.223.174] ([209.85.223.174:34618] helo=mail-ie0-f174.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E6/12-17389-0D68F555 for ; Fri, 22 May 2015 15:43:13 -0400 Received: by ieczm2 with SMTP id zm2so38651297iec.1 for ; Fri, 22 May 2015 12:43:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:date:message-id:subject :from:to:cc:content-type:content-transfer-encoding; bh=IKbPKyYqRdTDO//HaWgKWI83ZKrVlUW18GCriaRfBRQ=; b=vHFP4GCG2+cPH+pGhxqp0lM4M3HnS3dXuTavtWJ+aX0hzYFeUkQ68GSFQelSKR9214 /TI4KiVxE6dsA6jS8OHXVxtvkznH612DlFiHf5qRrcVzcW0KCxdxKQcMjPeOiUaI24jx XwtTpLia5kUrwFmne0IS7DZfDb+5k4RzIY+SDMbjdsKvCabgKqT5lqUGcCcl6HyRutuk nrxTdeeGULkVdWNDUyCvdOkADqREyVUr+xX0u64dOgx7bsQEVMfIt0KdqVEmGKs5KXln th+bu1eyiFS+Xl3Kiji1j8Chz/l6vZ1M1ZYw0mVl78zndSIbixKrQ5IPxo1Twhyqe3Eh 5hqQ== MIME-Version: 1.0 X-Received: by 10.107.10.89 with SMTP id u86mr2049440ioi.79.1432323790151; Fri, 22 May 2015 12:43:10 -0700 (PDT) Sender: morrison.levi@gmail.com Received: by 10.79.98.67 with HTTP; Fri, 22 May 2015 12:43:10 -0700 (PDT) In-Reply-To: References: Date: Fri, 22 May 2015 13:43:10 -0600 X-Google-Sender-Auth: GrXmi2qwD9XNwi2auKcZCySsSmY Message-ID: To: =?UTF-8?B?SmFrdWIgS3Viw63EjWVr?= Cc: PHP Internals Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] Replace dead and obsolete HTML in the core From: levim@php.net (Levi Morrison) On Fri, May 22, 2015 at 1:01 PM, Jakub Kub=C3=AD=C4=8Dek wrote: > Hi Internals, > > I have recently made a patch[1] for PHP7 that replaces dead and obsolete > HTML code (like , vs. <... > id=3D"..."> or XHTML's NET notation
vs. HTML's
), mostly > being output by PHP itself (error messages, phpinfo() etc.), with > alternatives that are being used rather nowadays. > > I would appreciate any feedback, as well as thoughts what else could be > included in the patch. I see no value in the changes from `
` to `
`. It saves very few characters and means you can't use XML parsers anymore. HTML 5 permits the XHTML syntax, so it's not like `
` is more conforming to HTML5 than `
` is.