Re: [PHP-DEV] CVS Account Request: abboussy

2003-02-26 Thread Magnus M
On 27 Feb 2003 05:27:24 - "Abbas El-Meslem" <[EMAIL PROTECTED]> wrote: > hi You don't need a CVS account to say hi. / Magnus -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] CVS Account Request: abboussy

2003-02-26 Thread Abbas El-Meslem
hi -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] parser generator for php

2003-02-26 Thread Alan Knowles
Pete James wrote: I hope that this is not the wrong venue for this. I've seen references to questions about this before, but is there any tool similar to yacc, written in php? It's not written in PHP - but it generates PHP code have a look at http://php-sharp.sourceforge.net In CVS is phpLex a de

[PHP-DEV] CVS Account Request: hatem

2003-02-26 Thread Ben Yacoub Hatem
arabic php & pear manual translation -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] upcoming plans for servers

2003-02-26 Thread James Cox
All, I am about to start a process of upgrading/moving all of the services php.net offers. This is to take advantage of new servers, and to distribute our load so that servers are not doing "everything" but instead optimized and configured to be perfect for a particular service. full details (or,

Re: [PHP-DEV] [PATCH] imagesavealpha()

2003-02-26 Thread Pierre-Alain Joye
On Thu, 20 Feb 2003 22:17:48 +0200 Jukka Holappa <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi, > > I have reported at http://bugs.php.net/?id=22323 that it's impossible > to actually create png images that are partially transparent. I needed > that feature

Re: [PHP-DEV] Flex never-interactive mode

2003-02-26 Thread Wez Furlong
On Wed, 26 Feb 2003, Andi Gutmans wrote: > At 12:48 PM 2/26/2003 -0800, Rasmus Lerdorf wrote: > >I think we can add "%option never-interactive" to the ini-scanner lexer to ^ Yes, this is a good idea - INI files are never i

Re: [PHP-DEV] Flex never-interactive mode

2003-02-26 Thread Rasmus Lerdorf
On Wed, 26 Feb 2003, Andi Gutmans wrote: > At 12:48 PM 2/26/2003 -0800, Rasmus Lerdorf wrote: > >I think we can add "%option never-interactive" to the ini-scanner lexer to > >speed it up a tiny little bit. Speeding up the ini scanner might be > >important for the folks running the cgi version. M

Re: [PHP-DEV] Flex never-interactive mode

2003-02-26 Thread Andi Gutmans
At 12:48 PM 2/26/2003 -0800, Rasmus Lerdorf wrote: I think we can add "%option never-interactive" to the ini-scanner lexer to speed it up a tiny little bit. Speeding up the ini scanner might be important for the folks running the cgi version. More importantly, to me anyway, when we know we are no

[PHP-DEV] Flex never-interactive mode

2003-02-26 Thread Rasmus Lerdorf
I think we can add "%option never-interactive" to the ini-scanner lexer to speed it up a tiny little bit. Speeding up the ini scanner might be important for the folks running the cgi version. More importantly, to me anyway, when we know we are not interactive, should we not programmatically set i

Re: [PHP-DEV] CVS Account Request: thierry_bo

2003-02-26 Thread Pierre-Alain Joye
On 26 Feb 2003 18:15:42 - "Thierry Bothorel" <[EMAIL PROTECTED]> wrote: > HELP IN MAINTENANCE : > > - help "Pierre-Alain Joye" <[EMAIL PROTECTED]> and pearfr.org to > translate pear manual and pear weekly news in french I confirm this request. See my post on peardoc ML. He needs access to /p

Re: [PHP-DEV] [PATCH][NEW FEATURE][HELP NEEDED] Forcing -f via mail()(ext/standard/mail.c)

2003-02-26 Thread Derick Rethans
On Sat, 22 Feb 2003, Daniel Lorch wrote: > > I don't really know to start. I've made a patch and want to ask for > > the offical way to bring this patch into the php engine (if this is > > possible). [..] > > This has been done several times now. Once by me, once by someone else, > and once by yo

[PHP-DEV] parser generator for php

2003-02-26 Thread Pete James
I hope that this is not the wrong venue for this. I've seen references to questions about this before, but is there any tool similar to yacc, written in php? I know that there is the tokenizer ext., which forms one half of the equation. Perl, Python, etc, have their YAPP, and YAPPS tools. Is so

[PHP-DEV] CVS Account Request: thierry_bo

2003-02-26 Thread Thierry Bothorel
HELP IN MAINTENANCE : - help "Pierre-Alain Joye" <[EMAIL PROTECTED]> and pearfr.org to translate pear manual and pear weekly news in french -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Piping to the PHP binary

2003-02-26 Thread Shane Caraveo
4.3.1 works fine. Shane Dan Hardiker wrote: Hey all, echo "" | /path/to/php That works on php v4.2.x but Ive got 3 machines on v4.3.x and none of them seem to respond to the piping of the php config. v4.2.x Response

Re: [PHP-DEV] Of string constants, bytecode, and concatenation

2003-02-26 Thread Derick Rethans
On Wed, 26 Feb 2003, David Brown wrote: > Is that output a ZEND_DEBUG thing, or is that an external tool? It's an external tool: VLD from http://www.derickrethans.nl/vld.php Derick -- Stop mad cowboy disease! -

Re: [PHP-DEV] Of string constants, bytecode, and concatenation

2003-02-26 Thread Daniel Cowgill
On Wed, 26 Feb 2003, David Brown wrote: > Okay. Makes complete sense. I was thinking more along the lines of > "wouldn't it be nice if...?". I hadn't quite made it to "where would > that belong?". :) > > I'll check out the optimizers. I noticed that the new CVS version of APC > seems to have a co

Re: [PHP-DEV] Of string constants, bytecode, and concatenation

2003-02-26 Thread David Brown
On Wed, Feb 26, 2003 at 05:36:54PM +0100, Derick Rethans wrote: | No, the engine doesn't do this at compile time. This first one produces: | | number of ops: 5 | line # op fetch ext operands | ---

Re: [PHP-DEV] Of string constants, bytecode, and concatenation

2003-02-26 Thread George Schlossnagle
It's the job of an optimizer, not of a compiler. And because PHP doesn't have an internal optimizer, this is not optimized out. You can either check the ZendOptimiser (I can't show you the opcodes that that generates) or PEAR::Optimizer, which is in Pecl (which might not do this optimization yet

Re: [PHP-DEV] Of string constants, bytecode, and concatenation

2003-02-26 Thread Derick Rethans
On Wed, 26 Feb 2003, David Brown wrote: > This may well be a stupid question, but I've spend enough time staring > blankly at zend_compile.c/zend_execute.c that I figured it was time to > ask. :) > > Say I have a section of code like this: > >$s1 = 'foo' . 'bar' . 'baz'; > $s2 = 'foobarbaz

[PHP-DEV] Of string constants, bytecode, and concatenation

2003-02-26 Thread David Brown
Hi everyone: This may well be a stupid question, but I've spend enough time staring blankly at zend_compile.c/zend_execute.c that I figured it was time to ask. :) Say I have a section of code like this: In the PHP bytecode (I hope I'm using the right terminology - I mean the stuff in the oplin

Re: [PHP-DEV] bug notification ?

2003-02-26 Thread Jani Taskinen
No. --Jani On Wed, 26 Feb 2003, Corne' Cornelius wrote: >Are maintainers of extensions automagically notified of bugs submitted >regarding the ext's they maintain ? > >Corne' > >!Exclude Disclaimer! > > > -- <- For Sale! -> -- PHP Development Mailing List

Re: [PHP-DEV] Re: Piping to the PHP binary

2003-02-26 Thread moshe doron
> So there is no upgrade path for the cgi - it's lost this functionality? > (please confirm, as that breaks backward compatability for alot of my > scripts) well, i'm not the right person asking him just tried helping. > version, I get the same problem... Im guessing that its caused by one of > t

[PHP-DEV] bug notification ?

2003-02-26 Thread Corne' Cornelius
Are maintainers of extensions automagically notified of bugs submitted regarding the ext's they maintain ? Corne' !Exclude Disclaimer! -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Piping to the PHP binary

2003-02-26 Thread Dan Hardiker
Hi, So there is no upgrade path for the cgi - it's lost this functionality? (please confirm, as that breaks backward compatability for alot of my scripts) Surely the CGI should be able to handle piping too? [btw: if I build a CLI version, I get the same problem... Im guessing that its caused by o

[PHP-DEV] Re: Piping to the PHP binary

2003-02-26 Thread moshe doron
use the cli not cgi: [EMAIL PROTECTED] moshe]$ php -v PHP 4.3.2-dev (cli) (built: Feb 24 2003 18:43:23) Copyright (c) 1997-2003 The PHP Group Zend Engine v1.3.0, Copyright (c) 1998-2003 Zend Technologies [EMAIL PROTECTED] moshe]$ echo "" | php [EMAIL PROTECTED] moshe]$ "Dan Hardiker" <[EMAIL PROT

[PHP-DEV] CVS Account Request: ordnas

2003-02-26 Thread Sandro Zic
For maintenance of the new PEAR::DB_DOM package, see http://marc.theaimsgroup.com/?l=pear-dev&m=104383385210419&w=2 -- PHP Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-DEV] Re: Announcement: Next generation ext_skel

2003-02-26 Thread Hartmut Holzgraefe
Jani Taskinen wrote: Krhm...you should make it to produce code that meets our coding standards.. :) Use tabs, ... sure, but especially tabs have a very low priority on my list, as having them as '\t' in the generating PHP code hurt readability a lot (and emacs is not clever enoug

Re: [PHP-DEV] "--with-apache" broken in PHP_4_3?

2003-02-26 Thread Sebastian Bergmann
Sebastian Bergmann wrote: > checking for Apache 1.x module support via DSO through APXS... no > checking for Apache 1.x module support... no > configure: error: Invalid Apache directory - > unable to find httpd.h under /usr/local/apache Not enough tea for me this morning, I wager. ;-) -- Seb

Re: [PHP-DEV] Re: Announcement: Next generation ext_skel

2003-02-26 Thread Jani Taskinen
Krhm...you should make it to produce code that meets our coding standards.. :) Use tabs, if (foo) { ... } etc. --Jani On Wed, 26 Feb 2003, Hartmut Holzgraefe wrote: >l0t3k wrote: >> Hartmut, >> will this also generate zend_parse_param

[PHP-DEV] RE: PHP, Windows and COM.

2003-02-26 Thread Richard Quadling
Genius! Thank you very much. Can this example be added to the PHP Manual? All the online examples I've seen relate to functions which you can pass the first few params and no more. In this case having to pass the first and last param is not mentioned. This simple example demonstrates the use of

[PHP-DEV] RE: PHP, Windows and COM.

2003-02-26 Thread Harald Radi
hi richard > The problem with some of the VBA functions is that the first and last > parameter need to be set and the ones in the middle have no > meaning and > cannot be present. This can only be achieved by using named > parameters. The > GoTo method, as a function, in VBA would be ... sooner

[PHP-DEV] RE: PHP, Windows and COM.

2003-02-26 Thread Richard Quadling
Hi Harald. The problem with some of the VBA functions is that the first and last parameter need to be set and the ones in the middle have no meaning and cannot be present. This can only be achieved by using named parameters. The GoTo method, as a function, in VBA would be ... GoTo(wdGoToBookmark,

Re: [PHP-DEV] Re: Announcement: Next generation ext_skel

2003-02-26 Thread Hartmut Holzgraefe
l0t3k wrote: Hartmut, will this also generate zend_parse_parameters calls based on prototype ? Sure, see the two samples below. It even adds return statements for the return type specified in the proto where possible. But unlike the current ext_skel it also supports code generation for php.ini va

Re: [PHP-DEV] "--with-apache" broken in PHP_4_3?

2003-02-26 Thread Jani Taskinen
eh? Are your apache sources there? :) --Jani On Wed, 26 Feb 2003, Sebastian Bergmann wrote: > I have installed Apache 1.3.28-dev in /usr/local/apache: > >checking for Apache 1.x module support via DSO through APXS... no >checking for Apache 1.x module support... no >

[PHP-DEV] "--with-apache" broken in PHP_4_3?

2003-02-26 Thread Sebastian Bergmann
I have installed Apache 1.3.28-dev in /usr/local/apache: checking for Apache 1.x module support via DSO through APXS... no checking for Apache 1.x module support... no configure: error: Invalid Apache directory - unable to find httpd.h under /usr/local/apache httpd.h is in /us

[PHP-DEV] Piping to the PHP binary

2003-02-26 Thread Dan Hardiker
Hey all, echo "" | /path/to/php That works on php v4.2.x but Ive got 3 machines on v4.3.x and none of them seem to respond to the piping of the php config. v4.2.x Response [1