Re: [PHP-DEV] [PATCH] Re: [PHP-DEV] doing phar.phar on windows

2009-06-11 Thread Lester Caine

Greg Beaver wrote:

I suppose it would help to see the patch, no?


If I'm reading that correctly it replaces the .zip files?

--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] [PATCH] Re: [PHP-DEV] doing phar.phar on windows

2009-06-11 Thread Lester Caine

Lester Caine wrote:

Greg Beaver wrote:

I suppose it would help to see the patch, no?


If I'm reading that correctly it replaces the .zip files?


OK - white space problem with the line wrap, I can see what it is adding 
now. I had the -del at the start of the line so it appeared to be 
deleting those lines.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] Standards for developers

2009-06-11 Thread Lester Caine

rantish mode
One of the problems with playing with a new platform is getting things 
they way you are used to them. Linux is somewhat easier than Windows in 
that respect, but using Eclipse has at least provided a level playing 
field and now that I've got it tidied up and working on the Vista64 box 
( has to use w32 jave to run ;) ) I can now get around some of the 
little niggles.


Files that are common to windows and linux will naturally follow linux 
rules on new line, so can't be displayed in 'notepad', and I've had to 
switch some of the windows defaults to get 'wordpad' used instead. I had 
forgotten to switch the wrap to ruler off which was causing a little 
confusion with white space, but once I get Eclipse configured to the 
windows php framework the problem will go away. Being used to 'notepad' 
I kept opening files the wrong way at first, although some files do 
actually display correctly in notepad.

/rantish mode

Bottom line - rather than reinventing the wheel - is anybody else 
actually using Eclipse and has a simple set-up guide for how they have 
configured things? Ideally for windows, but I'd like to pull this up on 
the Linux boxes as well. If I'm going to have to start working on 
extension code it's easier on the linux box anyway and then I can cross 
test on windows.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Nuno Lopes
Bottom line - rather than reinventing the wheel - is anybody else actually 
using Eclipse and has a simple set-up guide for how they have configured 
things? Ideally for windows, but I'd like to pull this up on the Linux 
boxes as well. If I'm going to have to start working on extension code 
it's easier on the linux box anyway and then I can cross test on windows.


I guess I have another option for you: use cygwin's cvs client. When you 
checkout, it translates the EOLs to windows style, and when you commit it 
translates the EOLs back to unix. This way you can code in any editor you 
want, but without surprises when doing diffs and when commiting.


Nuno 



--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Last steps towards 5.3.0

2009-06-11 Thread Nuno Lopes

On Wed, Jun 10, 2009 at 9:38 PM, Nuno Lopesnlop...@php.net wrote:

PS: If someone wants to give a hand to find the regression... I can
explain how to reproduce.


The easiest way is to use a tool to help reducing the test case
automatically.
I don't know about any specific tool for reducing PHP files, but in the 
past



I wrote a tool which automatically. It uses the delta debugging
algorithm, but is very much faster than delta, since it knows how PHP
works. I hope its also easier to use - you basically write a function
which takes source code, and returns true if the bug is still present.

Its at 
http://code.google.com/p/phc/source/browse/trunk/test/framework/reduce/Reduce.php.

You need to a copy of phc (phpcompiler.org) as well. The usage is
explained in the comments. I've used it a lot, but I've only just made
it work more generally. Please report any problems to me.


Oh, very nice, Paul ;) I wasn't aware of this script.
btw, does it perform inlining of included files? (so that you can have a 
self-contained reduced file)


Nuno 



--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Lester Caine

Nuno Lopes wrote:
Bottom line - rather than reinventing the wheel - is anybody else 
actually using Eclipse and has a simple set-up guide for how they have 
configured things? Ideally for windows, but I'd like to pull this up 
on the Linux boxes as well. If I'm going to have to start working on 
extension code it's easier on the linux box anyway and then I can 
cross test on windows.


I guess I have another option for you: use cygwin's cvs client. When you 
checkout, it translates the EOLs to windows style, and when you commit 
it translates the EOLs back to unix. This way you can code in any editor 
you want, but without surprises when doing diffs and when commiting.


But that defeats the whole point ...
Eclipse handles the CVS along with everything else so why would I want 
to add cygwin? Actually I don't want the files converted - that is just 
another possible area of confusion if both formats are being used in the 
php code I'd rather know that anyway.
I'm just looking for some help to get a cross platform solution based on 
Eclipse working.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Last steps towards 5.3.0

2009-06-11 Thread Paul Biggar
On Thu, Jun 11, 2009 at 9:35 AM, Nuno Lopesnlop...@php.net wrote:
 Oh, very nice, Paul ;) I wasn't aware of this script.
 btw, does it perform inlining of included files? (so that you can have a
 self-contained reduced file)

phc supporting inlining with --include. So I would guess that calling
$reduce-set_phc (phc --include) it would work, but I haven't tried
it.


Paul


-- 
Paul Biggar
paul.big...@gmail.com

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] Re: [PATCH] Re: [PHP-DEV] doing phar.phar on windows

2009-06-11 Thread Pierre Joye
hi Greg,

On Thu, Jun 11, 2009 at 6:42 AM, Greg Beaverg...@chiaraquartet.net wrote:
 I suppose it would help to see the patch, no?

 Index: win32/build/Makefile
 ===
 RCS file: /repository/php-src/win32/build/Makefile,v
 retrieving revision 1.35.2.1.2.6.2.12
 diff -u -r1.35.2.1.2.6.2.12 Makefile
 --- win32/build/Makefile        27 May 2009 01:46:48 -      
 1.35.2.1.2.6.2.12
 +++ win32/build/Makefile        11 Jun 2009 04:17:08 -
 @@ -128,7 +128,7 @@
        -del /f /q 
 $(BUILD_DIR)\php-$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
        -del /f /q 
 $(BUILD_DIR)\php-debug-pack-$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
        -del /f /q 
 $(BUILD_DIR)\pecl-$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
 -       $(BUILD_DIR)\php.exe -d date.timezone=UTC -n win32/build/mkdist.php 
 $(BUILD_DIR) $(PHPDLL) $(SAPI_TARGETS) $(EXT_TARGETS) 
 $(PHP_EXTRA_DIST_FILES) $(PECL_TARGETS) $(PECL_EXTRA_DIST_FILES) 
 $(SNAPSHOT_TEMPLATE)
 +       $(BUILD_DIR)\php.exe -d date.timezone=UTC -n -dphar.readonly=0 
 win32/build/mkdist.php $(BUILD_DIR) $(PHPDLL) $(SAPI_TARGETS) 
 $(EXT_TARGETS) $(PHP_EXTRA_DIST_FILES) $(PECL_TARGETS) 
 $(PECL_EXTRA_DIST_FILES) $(SNAPSHOT_TEMPLATE)
        cd $(BUILD_DIR)\php-$(PHP_VERSION_STRING)
        -$(ZIP) -9 -q -r 
 ..\php-$(PHP_VERSION_STRING)$(PHP_ZTS_ARCHIVE_POSTFIX)-Win32-$(PHP_COMPILER_SHORT)-$(PHP_ARCHITECTURE).zip
  .
        cd ..\..
 Index: win32/build/mkdist.php
 ===
 RCS file: /repository/php-src/win32/build/mkdist.php,v
 retrieving revision 1.13.4.1.2.11
 diff -u -r1.13.4.1.2.11 mkdist.php
 --- win32/build/mkdist.php      3 Jun 2009 01:14:58 -       1.13.4.1.2.11
 +++ win32/build/mkdist.php      11 Jun 2009 04:31:54 -
 @@ -393,6 +393,27 @@
        closedir($directory_list);
  }

 +function make_phar_dot_phar($dist_dir)
 +{
 +  if (!extension_loaded('phar')) return;
 +  $path_to_php = $dist_dir;
 +  $path_to_phar = realpath(__DIR__ . '/../../ext/phar');
 +  echo Generating pharcommand.phar\n;
 +  $phar = new Phar($path_to_php . '/pharcommand.phar', 0, 'pharcommand');
 +  foreach (new DirectoryIterator($path_to_phar . '/phar') as $file) {
 +    if ($file-isDir() || $file == 'phar.php') continue;
 +    echo 'adding ', $file, \n;
 +    $phar[(string) $file] = file_get_contents($path_to_phar.  '/phar/' . 
 $file);
 +  }
 +  $phar-setSignatureAlgorithm(Phar::SHA1);
 +  $stub = file($path_to_phar . '/phar/phar.php');
 +  unset($stub[0]); // remove hashbang
 +  $phar-setStub(implode('', $stub));
 +
 +  echo Creating phar.phar.bat\n;
 +  file_put_contents($path_to_php . '/phar.phar.bat', %~dp0php.exe 
 %~dp0pharcommand.phar %1 %2 %3 %4 %5 %6 %7 %8 %9\r\n);
 +}
 +
  if (!is_dir($test_dir)) {
        mkdir($test_dir);
  }
 @@ -489,4 +510,5 @@
        echo WARNING: you don't have a snapshot template, your dist will not 
 be complete\n;
  }

 +make_phar_dot_phar($dist_dir);
  ?

Please commit, it looks good. I will test once it is committed as well.

Cheers,
--
Pierre

http://blog.thepimp.net | http://www.libgd.org

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Pierre Joye
On Thu, Jun 11, 2009 at 10:27 AM, Nuno Lopesnlop...@php.net wrote:
 Bottom line - rather than reinventing the wheel - is anybody else actually
 using Eclipse and has a simple set-up guide for how they have configured
 things? Ideally for windows, but I'd like to pull this up on the Linux boxes
 as well. If I'm going to have to start working on extension code it's easier
 on the linux box anyway and then I can cross test on windows.

 I guess I have another option for you: use cygwin's cvs client. When you
 checkout, it translates the EOLs to windows style, and when you commit it
 translates the EOLs back to unix. This way you can code in any editor you
 want, but without surprises when doing diffs and when commiting.

Every CVS does that, not only cygwin. That's the case for all text
files. However, some files have to be in one mode (can't find an
example right now). Other should not be in a given mode, usually mac
EOL are not supported on windows (compiler or makefiles).

Cheers,
-- 
Pierre

http://blog.thepimp.net | http://www.libgd.org

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] PHP 5.2.10RC2 Testing

2009-06-11 Thread Ilia Alshanetsky
The second and final release candidate of 5.2.10 was just released for  
testing and can be downloaded here:


http://downloads.php.net/ilia/php-5.2.10RC2.tar.bz2 (md5sum:  
5a362ab05090a4cd99f157a281cebc23)
http://windows.php.net/downloads/qa/php-5.2.10RC2-Win32-VC6-x86.zip  
(sha1: b87009b99348802523c159203a310931875d5cab)


There have been very few changes since RC1, so it looks like we are in  
a very good shape for the final release. If no critical issues and/or  
regressions are identified in the coming week, the final will be  
released next thursday. Please check the code against your apps to  
make sure everything is working properly.


Ilia Alshanetsky
PHP 5.2 Release Master





--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Niel Archer
 rantish mode
 One of the problems with playing with a new platform is getting things 
 they way you are used to them. Linux is somewhat easier than Windows in 
 that respect, but using Eclipse has at least provided a level playing 
 field and now that I've got it tidied up and working on the Vista64 box 
 ( has to use w32 jave to run ;) ) I can now get around some of the 
 little niggles.

I do not understand why you have to run with win32 Java.  There is a 64
bit version of Java from Sun which runs on Windows.  Like most 64 bit
support on Windows, it takes some work to locate, the Java site mentions
it, but despite referring to a download I can't find it there.  Instead,
I use this link:

http://java.sun.com/javase/downloads/index.jsp

Also, there is a 64 bit version of Eclipse, although you have to do some
digging to find it exists.  Go to the mirror of your choice and look for
the 'eclipse-platform-SDK-3.4-win32-x86_64.zip' file.  This requires
that you add any dependencies for PDT etc yourself, but as each project
lists its dependencies this is not a real problem. However, it's the
only 64 bit version of Eclipse I have been able to find, PDT does not do
a bundle for x64 yet :-(

 Files that are common to windows and linux will naturally follow linux 
 rules on new line, so can't be displayed in 'notepad', and I've had to 
 switch some of the windows defaults to get 'wordpad' used instead. I had 
 forgotten to switch the wrap to ruler off which was causing a little 
 confusion with white space, but once I get Eclipse configured to the 
 windows php framework the problem will go away. Being used to 'notepad' 
 I kept opening files the wrong way at first, although some files do 
 actually display correctly in notepad.
 /rantish mode
 
 Bottom line - rather than reinventing the wheel - is anybody else 
 actually using Eclipse and has a simple set-up guide for how they have 
 configured things? Ideally for windows, but I'd like to pull this up on 
 the Linux boxes as well. If I'm going to have to start working on 
 extension code it's easier on the linux box anyway and then I can cross 
 test on windows.
 
 -- 
 Lester Caine - G8HFL
 -
 Contact - http://lsces.co.uk/wiki/?page=contact
 L.S.Caine Electronic Services - http://lsces.co.uk
 EnquirySolve - http://enquirysolve.com/
 Model Engineers Digital Workshop - http://medw.co.uk//
 Firebird - http://www.firebirdsql.org/index.php
 
 -- 
 PHP Internals - PHP Runtime Development Mailing List
 To unsubscribe, visit: http://www.php.net/unsub.php
 
--
Niel Archer
niel.archer (at) blueyonder.co.uk



-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] bug #48247 again

2009-06-11 Thread Stanislav Malyshev

Hi!

Bug #48247 appears to be not entirely fixed still, it still produces a 
torrent of warnings in certain configs (namely, take php.ini-production 
and edit it to enable error_log, don't touch anything else - I get 400K 
worth of warnings). Attached patch should fix it. Please tell if there's 
some objection to it, otherwise I'll commit it tomorrow.

--
Stanislav Malyshev, Zend Software Architect
s...@zend.com   http://www.zend.com/
(408)253-8829   MSN: s...@zend.com
? date.diff
Index: php_date.c
===
RCS file: /repository/php-src/ext/date/php_date.c,v
retrieving revision 1.43.2.45.2.51.2.78
diff -u -r1.43.2.45.2.51.2.78 php_date.c
--- php_date.c  31 May 2009 21:28:38 -  1.43.2.45.2.51.2.78
+++ php_date.c  11 Jun 2009 17:58:26 -
@@ -591,6 +591,7 @@
date_globals-default_timezone = NULL;
date_globals-timezone = NULL;
date_globals-tzcache = NULL;
+   date_globals-guessing_tz = 0;
 }
 /* }}} */
 
@@ -610,6 +611,7 @@
}
DATEG(timezone) = NULL;
DATEG(tzcache) = NULL;
+   DATEG(guessing_tz) = 0;
 
return SUCCESS;
 }
@@ -858,8 +860,11 @@
if (! tzid) {
tzid = UTC;
}
-   
-   php_error_docref(NULL TSRMLS_CC, E_WARNING, DATE_TZ_ERRMSG We 
selected '%s' for '%s/%.1f/%s' instead, tzid, ta ? ta-tm_zone : Unknown, ta 
? (float) (ta-tm_gmtoff / 3600) : 0, ta ? (ta-tm_isdst ? DST : no DST) : 
Unknown);
+   if(DATEG(guessing_tz)  1) {
+   DATEG(guessing_tz) = 1;
+   php_error_docref(NULL TSRMLS_CC, E_WARNING, 
DATE_TZ_ERRMSG We selected '%s' for '%s/%.1f/%s' instead, tzid, ta ? 
ta-tm_zone : Unknown, ta ? (float) (ta-tm_gmtoff / 3600) : 0, ta ? 
(ta-tm_isdst ? DST : no DST) : Unknown);
+   DATEG(guessing_tz) = 0;
+   }
return tzid;
}
 #endif
@@ -878,7 +883,11 @@
if (! tzid) {
tzid = UTC;
}
-   php_error_docref(NULL TSRMLS_CC, E_WARNING, 
DATE_TZ_ERRMSG We selected '%s' for '%.1f/no DST' instead, tzid, ((tzi.Bias + 
tzi.StandardBias) / -60.0));
+   if(DATEG(guessing_tz)  1) {
+   DATEG(guessing_tz) = 1;
+   php_error_docref(NULL TSRMLS_CC, 
E_WARNING, DATE_TZ_ERRMSG We selected '%s' for '%.1f/no DST' instead, tzid, 
((tzi.Bias + tzi.StandardBias) / -60.0));
+   DATEG(guessing_tz) = 0;
+   }
break;
 
/* DST in effect */
@@ -892,7 +901,11 @@
if (! tzid) {
tzid = UTC;
}
-   php_error_docref(NULL TSRMLS_CC, E_WARNING, 
DATE_TZ_ERRMSG We selected '%s' for '%.1f/DST' instead, tzid, ((tzi.Bias + 
tzi.DaylightBias) / -60.0));
+   if(DATEG(guessing_tz)  1) {
+   DATEG(guessing_tz) = 1;
+   php_error_docref(NULL TSRMLS_CC, 
E_WARNING, DATE_TZ_ERRMSG We selected '%s' for '%.1f/DST' instead, tzid, 
((tzi.Bias + tzi.DaylightBias) / -60.0));
+   DATEG(guessing_tz) = 0;
+   }
break;
}
return tzid;
@@ -907,7 +920,11 @@
}
 #endif
/* Fallback to UTC */
-   php_error_docref(NULL TSRMLS_CC, E_WARNING, DATE_TZ_ERRMSG We had to 
select 'UTC' because your platform doesn't provide functionality for the 
guessing algorithm);
+   if(DATEG(guessing_tz)  1) {
+   DATEG(guessing_tz) = 1;
+   php_error_docref(NULL TSRMLS_CC, E_WARNING, DATE_TZ_ERRMSG We 
had to select 'UTC' because your platform doesn't provide functionality for the 
guessing algorithm);
+   DATEG(guessing_tz) = 0;
+   }
return UTC;
 }
 
Index: php_date.h
===
RCS file: /repository/php-src/ext/date/php_date.h,v
retrieving revision 1.17.2.11.2.3.2.13
diff -u -r1.17.2.11.2.3.2.13 php_date.h
--- php_date.h  31 May 2009 21:28:38 -  1.17.2.11.2.3.2.13
+++ php_date.h  11 Jun 2009 17:58:26 -
@@ -151,6 +151,7 @@
char  *timezone;
HashTable *tzcache;
timelib_error_container *last_errors;
+   int guessing_tz;
 ZEND_END_MODULE_GLOBALS(date)
 
 #ifdef ZTS

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-DEV] PHP 5.3.0RC3

2009-06-11 Thread Johannes Schlüter
Hello!

we have packaged PHP 5.3.0RC3, which you can find here:
http://downloads.php.net/johannes/

Windows binaries are available here:
http://windows.php.net/qa/

This third release candidate focused on bug fixes and stability
improvements and we hope to only require minimal changes ahead
of the next release. Many, but not all,  of the new features are
already integrated in the official documentation on php.net.

Please not that we are aware of a few minor issues including that we
still want to fix for the final release. We are aiming for an RC4 next
week followed by the final release in the week after. For most users 
there will not be a noticeable change meaning that now is the time 
to really do the final testing of PHP 5.3.0 before it gets released 
with any unnecessary incompatibilities with your project.

Some additional links to get started:
http://cvs.php.net/viewvc.cgi/php-src/NEWS?view=markuppathrev=PHP_5_3
http://wiki.php.net/doc/scratchpad/upgrade/53

Best Regards,
Lukas and Johannes
PHP 5.3 Release Managers



-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Lester Caine

Niel Archer wrote:

rantish mode
One of the problems with playing with a new platform is getting things 
they way you are used to them. Linux is somewhat easier than Windows in 
that respect, but using Eclipse has at least provided a level playing 
field and now that I've got it tidied up and working on the Vista64 box 
( has to use w32 jave to run ;) ) I can now get around some of the 
little niggles.


I do not understand why you have to run with win32 Java.  There is a 64
bit version of Java from Sun which runs on Windows.  Like most 64 bit
support on Windows, it takes some work to locate, the Java site mentions
it, but despite referring to a download I can't find it there.  Instead,
I use this link:

http://java.sun.com/javase/downloads/index.jsp

Also, there is a 64 bit version of Eclipse, although you have to do some
digging to find it exists.  Go to the mirror of your choice and look for
the 'eclipse-platform-SDK-3.4-win32-x86_64.zip' file.  This requires
that you add any dependencies for PDT etc yourself, but as each project
lists its dependencies this is not a real problem. However, it's the
only 64 bit version of Eclipse I have been able to find, PDT does not do
a bundle for x64 yet :-(


PHPEclipse is still x86 as well ... I have no plans to move to PDT any 
time soon as I know most of the PHPEclipse code quite well now!
Along with a couple of other SQL packages. I tried the x86_64 build but 
could not install the other bits that I use successfully on the 64 bit 
version on Linux ... not enough hours to waste even more time fixing 
side issues, so I switched to what I was told DID work, and it's doing 
what I need.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Pierre Joye
On Thu, Jun 11, 2009 at 8:25 PM, Lester Caineles...@lsces.co.uk wrote:

 PHPEclipse is still x86 as well ... I have no plans to move to PDT any time
 soon as I know most of the PHPEclipse code quite well now!
 Along with a couple of other SQL packages. I tried the x86_64 build but
 could not install the other bits that I use successfully on the 64 bit
 version on Linux ... not enough hours to waste even more time fixing side
 issues, so I switched to what I was told DID work, and it's doing what I
 need.

please move this discussion elsewhere, it has nothing to do with php internals.

-- 
Pierre

http://blog.thepimp.net | http://www.libgd.org

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Stanislav Malyshev

Hi!

Files that are common to windows and linux will naturally follow linux 
rules on new line, so can't be displayed in 'notepad', and I've had to 


Drop notepad, it wasn't a good tool even in Windows 3.1, much less now. 
Use something like Notepad++. :)

--
Stanislav Malyshev, Zend Software Architect
s...@zend.com   http://www.zend.com/
(408)253-8829   MSN: s...@zend.com

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Lester Caine

Stanislav Malyshev wrote:

Hi!

Files that are common to windows and linux will naturally follow linux 
rules on new line, so can't be displayed in 'notepad', and I've had to 


Drop notepad, it wasn't a good tool even in Windows 3.1, much less now. 
Use something like Notepad++. :)


Wordpad works OK - the problem on Vista is that 'Open With' does not 
appear so you have to manually reset the .bat entries to open it.


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Lester Caine

Pierre Joye wrote:

On Thu, Jun 11, 2009 at 8:25 PM, Lester Caineles...@lsces.co.uk wrote:


PHPEclipse is still x86 as well ... I have no plans to move to PDT any time
soon as I know most of the PHPEclipse code quite well now!
Along with a couple of other SQL packages. I tried the x86_64 build but
could not install the other bits that I use successfully on the 64 bit
version on Linux ... not enough hours to waste even more time fixing side
issues, so I switched to what I was told DID work, and it's doing what I
need.


please move this discussion elsewhere, it has nothing to do with php internals.


The only reason I'm trying to sort this out is because of your request 
to actually work on our own extensions. If questions and help on setting 
up PHP development platforms is nothing to do with php internals where 
should that discussion take place?


Niel - your suggested search string took me to a different download 
area, and the package there was a later version to the one I had 
downloaded. Eclipse and PHPEclipse now running x64 on Vista64. I think 
there is still a problem with the Xdebug plugin, but I can live without 
that for the time being. Thanks for the push in the right direction ...


Next step is to get build a project that accesses the PHP build process 
via cvs - if no one has already done that?


--
Lester Caine - G8HFL
-
Contact - http://lsces.co.uk/wiki/?page=contact
L.S.Caine Electronic Services - http://lsces.co.uk
EnquirySolve - http://enquirysolve.com/
Model Engineers Digital Workshop - http://medw.co.uk//
Firebird - http://www.firebirdsql.org/index.php

--
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Standards for developers

2009-06-11 Thread Pierre Joye
On Thu, Jun 11, 2009 at 9:04 PM, Lester Caineles...@lsces.co.uk wrote:
 Pierre Joye wrote:

 On Thu, Jun 11, 2009 at 8:25 PM, Lester Caineles...@lsces.co.uk wrote:

 PHPEclipse is still x86 as well ... I have no plans to move to PDT any
 time
 soon as I know most of the PHPEclipse code quite well now!
 Along with a couple of other SQL packages. I tried the x86_64 build but
 could not install the other bits that I use successfully on the 64 bit
 version on Linux ... not enough hours to waste even more time fixing side
 issues, so I switched to what I was told DID work, and it's doing what I
 need.

 please move this discussion elsewhere, it has nothing to do with php
 internals.

 The only reason I'm trying to sort this out is because of your request to
 actually work on our own extensions. If questions and help on setting up PHP
 development platforms is nothing to do with php internals where should that
 discussion take place?

Discussions about IDEs, editors, etc. have nothing to do here, period.


-- 
Pierre

http://blog.thepimp.net | http://www.libgd.org

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] CVS Account Request: kallyone

2009-06-11 Thread Joshua Kallio
Maintaining the documentation
Developing the PHP runtime

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] CVS Account Request: felipernb

2009-06-11 Thread Felipe Ribeiro Nogueira Barbosa
I'm one of the Summer of Code students that is contributing with PHP. I'm 
working on the Bugtracker, and it's necessary to have a CVS account so I can 
commit my changes.

I have a personal github account to keep track of small steps, but it's 
important to have an official CVS account so I can commit as soon as I have 
achieved the milestones

-- 
PHP Internals - PHP Runtime Development Mailing List
To unsubscribe, visit: http://www.php.net/unsub.php