Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:36131 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 32115 invoked from network); 14 Mar 2008 02:35:28 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 14 Mar 2008 02:35:28 -0000 Authentication-Results: pb1.pair.com smtp.mail=greg@chiaraquartet.net; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=greg@chiaraquartet.net; sender-id=unknown Received-SPF: error (pb1.pair.com: domain chiaraquartet.net from 38.99.98.18 cause and error) X-PHP-List-Original-Sender: greg@chiaraquartet.net X-Host-Fingerprint: 38.99.98.18 beast.bluga.net Linux 2.6 Received: from [38.99.98.18] ([38.99.98.18:47028] helo=mail.bluga.net) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id C3/AA-05996-F64E9D74 for ; Thu, 13 Mar 2008 21:35:27 -0500 Received: from mail.bluga.net (localhost.localdomain [127.0.0.1]) by mail.bluga.net (Postfix) with ESMTP id 17C81C10654; Thu, 13 Mar 2008 19:35:24 -0700 (MST) Received: from [192.168.0.103] (c-71-192-42-104.hsd1.ma.comcast.net [71.192.42.104]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.bluga.net (Postfix) with ESMTP id 917D1C10651; Thu, 13 Mar 2008 19:35:23 -0700 (MST) Message-ID: <47D9E468.3080303@chiaraquartet.net> Date: Thu, 13 Mar 2008 21:35:20 -0500 User-Agent: Thunderbird 2.0.0.9 (Windows/20071031) MIME-Version: 1.0 To: Dmitry Stogov CC: internals Mailing List References: <06B0D32C7A96544490D18AF653D6BDE5026BA103@il-ex1.zend.net> In-Reply-To: <06B0D32C7A96544490D18AF653D6BDE5026BA103@il-ex1.zend.net> X-Enigmail-Version: 0.95.6 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV using ClamSMTP Subject: Re: [PATCH] adding stream wrappers to include_path From: greg@chiaraquartet.net (Greg Beaver) Dmitry Stogov wrote: > Hi Greg, > > In general include_path cannot contain pathes with ':' character, > because it is the POSIX path separator. > So I don't see a way to use stream wrappers in include_path. :( Hi Dmitry, I strongly encourage you to take a few more seconds actually looking at the message you quoted (and perhaps the patch included) before jumping to hasty conclusions. The patch was developed on ubuntu linux which indeed uses ":" as the path separator and yet strangely enough, the test scripts (which you kindly quoted in your reply) actually work with my patch! In other words, this include_path: ".:/usr/local/lib/php:phar://whatever.phar/internal/path" works just fine on unix, and this one: ".;C:\php5;phar://whatever.phar/internal/path" works just fine on windows. Greg