Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:63941 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 84409 invoked from network); 16 Nov 2012 21:38:11 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 16 Nov 2012 21:38:11 -0000 Authentication-Results: pb1.pair.com smtp.mail=theanomaly.is@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=theanomaly.is@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.215.42 as permitted sender) X-PHP-List-Original-Sender: theanomaly.is@gmail.com X-Host-Fingerprint: 209.85.215.42 mail-la0-f42.google.com Received: from [209.85.215.42] ([209.85.215.42:64408] helo=mail-la0-f42.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id E1/5D-08060-142B6A05 for ; Fri, 16 Nov 2012 16:38:10 -0500 Received: by mail-la0-f42.google.com with SMTP id s15so2558555lag.29 for ; Fri, 16 Nov 2012 13:38:06 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; bh=cyL8j1mmgdCWY7ry2vksRJ0WUPvOS9qMhWGZn6cVUAs=; b=pgqG6H2spPZ6m4fMdXCHWVCe8t86LWaBVgPoz6cEi216ce0CIU8txQaNy0ubslmJlz W6IqKmp+M/k50LmMFoJdrX1eZMfDMAGvth4vn0V5DcbJKHjHesEqE6hsD51e2Gh63mV6 0ZcyDLUFmUvdvlKqxHHo6+nqhydWIUAKxtsrPjH49P6PLq+9SDguNx0vM29kfbbwKhvm DOuJkXznDHbpljJRPh3c5+JvZRJCyam44xJp0AkCj8rrw9QGsv0JYe21RSfUhKqqKMn6 0r5HqTmyuJApCKQmYI4Ed1wHj/KNWMS0iE5ncou6UzgDaBJpKD0nWNQajXr3DjgmzrQA nsKg== MIME-Version: 1.0 Received: by 10.152.104.77 with SMTP id gc13mr5399377lab.16.1353101886066; Fri, 16 Nov 2012 13:38:06 -0800 (PST) Received: by 10.112.24.37 with HTTP; Fri, 16 Nov 2012 13:38:05 -0800 (PST) In-Reply-To: References: <23CB37F5-E956-4A5C-8ECC-7CF347A9086C@roshambo.org> Date: Fri, 16 Nov 2012 16:38:05 -0500 Message-ID: To: Ferenc Kovacs Cc: Philip Olson , PHP Developers Mailing List Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: [PHP-DEV] Where did the _logo_ functions go? From: theanomaly.is@gmail.com (Sherif Ramadan) On Fri, Nov 16, 2012 at 6:10 AM, Ferenc Kovacs wrote: > > > > On Fri, Nov 16, 2012 at 3:31 AM, Sherif Ramadan > wrote: >> >> On Thu, Nov 15, 2012 at 8:26 PM, Philip Olson wrot= e: >> > Hello geeks, >> > >> > Why does PHP 5.5 remove the *_logo_* functions? Is this a security >> > related move? Shouldn't these emit E_DEPRECATED errors in 5.5? >> > >> > Regards, >> > Philip >> > >> > -- >> > PHP Internals - PHP Runtime Development Mailing List >> > To unsubscribe, visit: http://www.php.net/unsub.php >> > >> >> Because the guids were removed. They were replaced with data URIs. It >> would make sense if there was some function to expose those data URIs >> to user-land, in the same way that the *_guid functions did, but I >> guess there isn't. >> >> -- >> PHP Internals - PHP Runtime Development Mailing List >> To unsubscribe, visit: http://www.php.net/unsub.php >> > > it was removed when https://github.com/php/php-src/pull/132 got merged af= ter > a brief vote on the internals mailing list. > see Stas concerns about reusing the same function names for getting the d= ata > urls: http://www.mail-archive.com/internals@lists.php.net/msg59293.html > > -- > Ferenc Kov=E1cs > @Tyr43l - http://tyrael.hu Obviously it doesn't make sense to use the same function names for the data uris, but why weren't new functions added to expose the data uris to userspace in the same way we used to expose the guids to userspace? It only seems to make sense that we'd continue to do that and it's such a simple fix to replace the functions with new ones. I honestly don't care too much about this particular feature myself, but it sounds pretty silly that this PR did not include the new functions for exposing the uris. My 0.00002 cents...