Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:28780 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 15467 invoked by uid 1010); 13 Apr 2007 09:13:06 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 15451 invoked from network); 13 Apr 2007 09:13:06 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 13 Apr 2007 09:13:06 -0000 Authentication-Results: pb1.pair.com smtp.mail=stefan.walk@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=stefan.walk@gmail.com; sender-id=pass; domainkeys=bad Received-SPF: pass (pb1.pair.com: domain gmail.com designates 64.233.184.229 as permitted sender) DomainKey-Status: bad X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 X-PHP-List-Original-Sender: stefan.walk@gmail.com X-Host-Fingerprint: 64.233.184.229 wr-out-0506.google.com Linux 2.4/2.6 Received: from [64.233.184.229] ([64.233.184.229:15280] helo=wr-out-0506.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 52/1C-47553-0A94F164 for ; Fri, 13 Apr 2007 05:13:06 -0400 Received: by wr-out-0506.google.com with SMTP id i21so761457wra for ; Fri, 13 Apr 2007 02:13:02 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=bbbnUKLpgPws25AM5GipA5PCPn8Ypifn12tDnpW6nwyq/ck9d0PLOg7jMNfb3SESrp4xURRPS5DKdEojh1xuHrVUIKzyYXWhtQslPGt6jWRbigF20owTF2DINBpCvBLToKicmTv768EEt0QYm00+b5ugo5f5x4E24hkuVNcngTE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=flW6oGkGd41Y5en0Y8Ld+364inOXbifZto4sxD9SY5U3zUZMRaOkY4C9XK5l4GnMFDeYCqsz+NGlg+99Vj6T5gI1yS7cqDQyh3KxFMFTuNWke0C8DnNUlZ706bnD2mO8g2yrVK9zIsinBnlbo8d7yL7ud7cVLh8POeS0SbqHW1I= Received: by 10.114.13.1 with SMTP id 1mr925041wam.1176455582162; Fri, 13 Apr 2007 02:13:02 -0700 (PDT) Received: by 10.114.136.3 with HTTP; Fri, 13 Apr 2007 02:13:02 -0700 (PDT) Message-ID: <4858f9d90704130213h4b440ac4w7518943b10627439@mail.gmail.com> Date: Fri, 13 Apr 2007 11:13:02 +0200 To: "Tomas Kuliavas" Cc: internals@lists.php.net In-Reply-To: <39254.195.22.180.233.1176451275.squirrel@avilys.eik.lt> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <461E894C.104@zend.com> <461E8AE8.8090208@krug.dk> <461E8E91.9000501@zend.com> <461E9008.6070701@gmail.com> <461E929A.3060601@zend.com> <4858f9d90704130048n67dd6b17s2e19a433873fc272@mail.gmail.com> <39254.195.22.180.233.1176451275.squirrel@avilys.eik.lt> Subject: Re: [PHP-DEV] dropping asp_tags in HEAD From: stefan.walk@gmail.com ("Stefan Walk") On 13/04/07, Tomas Kuliavas wrote: > >> Surely we must to keep a setting just because two people in the world > >> use it. > >> I'm afraid their apps won't run on PHP6 anyway because of numerous major > >> changes > >> (already done and still planned), so one more cleanup won't hurt anyone. > > > > This isn't cleanup. This is dropping a feature without a similar > > alternative. Short tags are problematic because of xhtml templates. > > ASP tags collide with no (x)html markup, and they are short and easy > > to type/read in templates. > > ASP tags do collide with some html markup. > > > > Boom. > > I know. Value should be quoted. 'asp_tags = on' is yet another way to > break php scripts. Some developers don't expect it and make typos in html > attributes. Not "should be", it is a must. Quoting HTML 4.01: "In certain cases, authors may specify the value of an attribute without any quotation marks. The attribute value may only contain letters (a-z and A-Z), digits (0-9), hyphens (ASCII decimal 45), periods (ASCII decimal 46), underscores (ASCII decimal 95), and colons (ASCII decimal 58)." So, your example is not HTML, so it doesn't show any collision.