[PHP-CVS] svn: php/php-src/trunk/win32/build/

2009-07-13 Thread David Soria Parra
dsp Mon, 13 Jul 2009 06:41:57 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=283994

Changed paths:
U   php/php-src/trunk/win32/build/buildconf.js

Log:
MFB: remove ZendEngine* detection, we always have Zend now (svn)

Modified: php/php-src/trunk/win32/build/buildconf.js
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_2/win32/build/

2009-07-13 Thread David Soria Parra
dsp Mon, 13 Jul 2009 06:42:59 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=283996

Changed paths:
U   php/php-src/branches/PHP_5_2/win32/build/buildconf.js

Log:
MFB: remove ZendEngine* detection, we always have Zend now (svn)

Modified: php/php-src/branches/PHP_5_2/win32/build/buildconf.js
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: web/php/trunk/

2009-07-13 Thread Gwynne Raskind
gwynne  Mon, 13 Jul 2009 08:14:46 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=283997

Changed paths:
D   web/php/trunk/anoncvs.php
A   web/php/trunk/anonsvn.php
D   web/php/trunk/cvs-php.php
U   web/php/trunk/error.php
U   web/php/trunk/include/languages.inc
U   web/php/trunk/license/contrib-guidelines-code.php
U   web/php/trunk/mirroring.php
U   web/php/trunk/search.php
U   web/php/trunk/sitemap.php
U   web/php/trunk/sites.php
U   web/php/trunk/source.php
A   web/php/trunk/svn-php.php
U   web/php/trunk/urlhowto.php

Log:
- Redirects from CVS pages to SVN pages
- CVS - SVN in all affected pages
Most of this work was done by Shawn Stratton.


Deleted: web/php/trunk/anoncvs.php
===
--- web/php/trunk/anoncvs.php   2009-07-13 06:42:59 UTC (rev 283996)
+++ web/php/trunk/anoncvs.php   2009-07-13 08:14:46 UTC (rev 283997)
@@ -1,183 +0,0 @@
-?php
-// $Id$
-$_SERVER['BASE_PAGE'] = 'anoncvs.php';
-include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
-$SIDEBAR_DATA = '
-h3What is CVS?/h3
-p
- You can find more information about CVS, and
- download clients for most major platforms, at
- a href=http://ximbiot.com/cvs/wiki/;the CVS Wiki/a.
-/p
-
-h3CVS mirroring/h3
-p
- You can also mirror the PHP CVS repository using CVSup, see
- a href=/cvsup.phpour CVSup page/a for more details.
-/p
-
-h3Contribute/h3
-p
- If you would like to join PHP development or would like to
- contribute to the PHP documentation, contact the relevant
- group. You will need a href=/cvs-php.phpyour own CVS account/a
- to contribute.
-/p
-
-h3Source and binary snapshots/h3
-p
- You may also be interested in a PHP snapshot, see
- a href=http://snaps.php.net/;snaps.php.net/a.
- Compiled snapshots for Windows users are also included.
-/p
-';
-site_header(Anonymous CVS Access);
-?
-
-h1Anonymous CVS Access/h1
-
-p
- If you wish to get the latest PHP source tree, you can obtain it
- through anonymous CVS. You should be warned that the CVS version
- is a development version, and as such, is often unstable, and may
- not even compile properly. The advantage of using CVS, though,
- is that you can get the latest fixes and updates, without having
- to wait for the official releases.
-/p
-
-p
- PHP uses an advanced configuration system that requires you to have
- the following tools. Re2c is only necessary for developers and can be found
- a href=http://re2c.org;here/a.
- All other utilities can be obtained from
- a href=ftp://ftp.gnu.org/pub/gnu/;the GNU FTP site/a.
-/p
-
-ul
- liiautoconf/i: 2.13/li
- liiautomake/i: 1.4+/li
- liilibtool/i: 1.4.x+ (except 1.4.2)/li
- liibison/i: 1.28, 1.35, 1.75, 2.0 or higher/li
- liiflex/i: 2.5.4 (strongnot higher/strong)/li
- liire2c/i: 0.9.11+ (0.12.0+ for HEAD)/li
-/ul
-
-p
- If you're experiencing problems, see also the section on
- a href=#buildconf_failbuildconf failures/a.
-/p
-
-h2Steps for using PHP from CVS/h2
-ol
- li
-  It is recommended that you configure CVS by putting this
-  in your code~/.cvsrc/code file:
-pre
-cvs -z3
-update -d -P
-checkout -P
-diff -u
-/pre
- /li
-
- li
-  Log in to the PHP CVS server. We'll use the anonymous user 
strongcvsread/strong
-  as the username, and use strongphpfi/strong as the password:br /
-  codecvs -d :pserver:cvsr...@cvs.php.net:/repository login/code
- /li
-
- li
-  Obtain the latest PHP source from CVS. There is a single iphp-src/i
-  directory that contains all PHP branches. To get PHP from CVS,
-  use the icvs checkout -r BRANCH/i notation. To checkout the
-  latest, consider the following CVS commands:br /br /
-  strongPHP 4.4/strong:
-  codecvs -d :pserver:cvsr...@cvs.php.net:/repository checkout -r PHP_4_4 
php-src/code
-  br /
-  strongPHP 5.2/strong:
-  codecvs -d :pserver:cvsr...@cvs.php.net:/repository checkout -r PHP_5_2 
php5/code
-  br /
-  strongPHP 5.3/strong:
-  codecvs -d :pserver:cvsr...@cvs.php.net:/repository checkout -r PHP_5_3 
php5/code
-  br /
-  strongPHP 6/strong:
-  codecvs -d :pserver:cvsr...@cvs.php.net:/repository checkout php6/code
-  br /br /
-  Some tips and notes:
-  br /
-  div class=tip
-   pYou may retrieve a specific release of PHP from CVS by using the
-   i-r/i flag in your cvs command. Some examples:br /
-   codecvs -d :pserver:cvsr...@cvs.php.net:/repository checkout -r php_4_2_1 
php-src/codebr /
-   codecvs -d :pserver:cvsr...@cvs.php.net:/repository checkout -r php_4_3_2 
php-src/code/p
-  /div
-  ul
-   li
-The branch names can also be used for cvs diff and merge operations.
-   /li
-   li
-You can also specify the directory name, for example, to put PHP 6 HEAD 
into a directory
-named php6dev:br /
-codecvs -d :pserver:cvsr...@cvs.php.net:/repository checkout -d php6dev 
php6/code
-   /li
-  /ul
- /li
-
- li
-  Make sure you have autoconf 2.13 or newer, automake 1.4 or newer and libtool
-  1.4.
-  

[PHP-CVS] svn: pear/pearweb/trunk/tests/site/release-upload.php/test_upload_step2/

2009-07-13 Thread Daniel O'Connor
clockwerx   Mon, 13 Jul 2009 08:30:39 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=283998

Changed paths:
D   
pear/pearweb/trunk/tests/site/release-upload.php/test_upload_step2/Archive_Tar-1.0.0rc1.tgz

Log:
Case Sensitivity breaks SVN on windows (and CVS for that matter)

Deleted: 
pear/pearweb/trunk/tests/site/release-upload.php/test_upload_step2/Archive_Tar-1.0.0rc1.tgz
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: pear/pearweb/trunk/include/pepr/

2009-07-13 Thread Daniel O'Connor
clockwerx   Mon, 13 Jul 2009 08:33:12 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=283999

Changed paths:
U   pear/pearweb/trunk/include/pepr/pepr.php

Log:
Bug #16410  Rejected PEPr proposals should not steal names
 * Dropped restrictions around 'the same user must be the re-proposer'

Modified: pear/pearweb/trunk/include/pepr/pepr.php
===
--- pear/pearweb/trunk/include/pepr/pepr.php2009-07-13 08:30:39 UTC (rev 
283998)
+++ pear/pearweb/trunk/include/pepr/pepr.php2009-07-13 08:33:12 UTC (rev 
283999)
@@ -356,9 +356,7 @@
 if (!$this-id) {
 $this-id = 0;
 }
-if ($handle != $this-user_handle) {
-return false;
-}
+
 if ($checkid) {
 $test = $dbh-getOne('SELECT id FROM package_proposals WHERE 
pkg_category = ?
 AND pkg_name = ? AND user_handle = ? AND id  ?', 
array($this-pkg_category,


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: pear/pearweb/trunk/

2009-07-13 Thread Daniel O'Connor
clockwerx   Mon, 13 Jul 2009 08:39:13 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284000

Changed paths:
U   pear/pearweb/trunk/package.php
U   pear/pearweb/trunk/package_channel.php
U   pear/pearweb/trunk/package_election.php
U   pear/pearweb/trunk/package_index.php
U   pear/pearweb/trunk/package_manual.php
U   pear/pearweb/trunk/package_pepr.php
U   pear/pearweb/trunk/package_qa.php

Log:
pearweb now lives in SVN, packaging scripts should use the SVN driver.

Modified: pear/pearweb/trunk/package.php
===
--- pear/pearweb/trunk/package.php  2009-07-13 08:33:12 UTC (rev 283999)
+++ pear/pearweb/trunk/package.php  2009-07-13 08:39:13 UTC (rev 284000)
@@ -6,7 +6,7 @@
 $dir . '/package.xml',
 array(
 'baseinstalldir' = '/pear.php.net/',
-'filelistgenerator' = 'cvs',
+'filelistgenerator' = 'svn',
 'roles' = array('*' = 'www'),
 'exceptions' = array(
 'pearweb.php' = 'php',

Modified: pear/pearweb/trunk/package_channel.php
===
--- pear/pearweb/trunk/package_channel.php  2009-07-13 08:33:12 UTC (rev 
283999)
+++ pear/pearweb/trunk/package_channel.php  2009-07-13 08:39:13 UTC (rev 
284000)
@@ -5,7 +5,7 @@
 array(
 'baseinstalldir' = '/pear.php.net/',
 'packagefile' = 'package-channel.xml',
-'filelistgenerator' = 'cvs',
+'filelistgenerator' = 'svn',
 'roles' = array('*' = 'www'),
 'simpleoutput' = true,
 'include' = array(

Modified: pear/pearweb/trunk/package_election.php
===
--- pear/pearweb/trunk/package_election.php 2009-07-13 08:33:12 UTC (rev 
283999)
+++ pear/pearweb/trunk/package_election.php 2009-07-13 08:39:13 UTC (rev 
284000)
@@ -6,7 +6,7 @@
 array(
 'packagefile' = 'package-election.xml',
 'baseinstalldir' = '/pear.php.net/',
-'filelistgenerator' = 'cvs',
+'filelistgenerator' = 'svn',
 'roles' = array('*' = 'www'),
 'exceptions' = array('pearweb_election.php' = 'php'),
 'simpleoutput' = true,

Modified: pear/pearweb/trunk/package_index.php
===
--- pear/pearweb/trunk/package_index.php2009-07-13 08:33:12 UTC (rev 
283999)
+++ pear/pearweb/trunk/package_index.php2009-07-13 08:39:13 UTC (rev 
284000)
@@ -6,7 +6,7 @@
 array(
 'packagefile' = 'package-index.xml',
 'baseinstalldir' = '/pear.php.net/',
-'filelistgenerator' = 'cvs',
+'filelistgenerator' = 'svn',
 'roles' = array('*' = 'www'),
 'simpleoutput' = true,
 'include' = array(

Modified: pear/pearweb/trunk/package_manual.php
===
--- pear/pearweb/trunk/package_manual.php   2009-07-13 08:33:12 UTC (rev 
283999)
+++ pear/pearweb/trunk/package_manual.php   2009-07-13 08:39:13 UTC (rev 
284000)
@@ -6,7 +6,7 @@
 array(
 'packagefile' = 'package-manual.xml',
 'baseinstalldir' = '/pear.php.net/',
-'filelistgenerator' = 'cvs',
+'filelistgenerator' = 'svn',
 'roles' = array('*' = 'www'),
 'exceptions' = array('pearweb_manual.php' = 'php'),
 'simpleoutput' = true,

Modified: pear/pearweb/trunk/package_pepr.php
===
--- pear/pearweb/trunk/package_pepr.php 2009-07-13 08:33:12 UTC (rev 283999)
+++ pear/pearweb/trunk/package_pepr.php 2009-07-13 08:39:13 UTC (rev 284000)
@@ -6,7 +6,7 @@
 array(
 'packagefile' = 'package-pepr.xml',
 'baseinstalldir' = '/pear.php.net/',
-'filelistgenerator' = 'cvs',
+'filelistgenerator' = 'svn',
 'roles' = array('*' = 'www'),
 'exceptions' = array('pearweb_pepr.php' = 'php'),
 'simpleoutput' = true,

Modified: pear/pearweb/trunk/package_qa.php
===
--- pear/pearweb/trunk/package_qa.php   2009-07-13 08:33:12 UTC (rev 283999)
+++ pear/pearweb/trunk/package_qa.php   2009-07-13 08:39:13 UTC (rev 284000)
@@ -6,7 +6,7 @@
 array(
 'packagefile' = 'package-qa.xml',
 'baseinstalldir' = '/pear.php.net/',
-'filelistgenerator' = 'cvs',
+'filelistgenerator' = 'svn',
 'roles' = array('*' = 'www'),
 'simpleoutput' = true,
 'include' = array(


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: phpdoc/

2009-07-13 Thread Nilg=C3=BCn Belma Bug=C3=BCner
nilgun  Mon, 13 Jul 2009 14:38:24 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284006

Changed paths:
A   phpdoc/doc-tr/

Log:
test for helper modules


Property changes on: phpdoc/doc-tr
___
Added: svn:externals
   + docs http://svn.php.net/repository/phpdoc/doc-base/trunk
docs/en http://svn.php.net/repository/phpdoc/en/trunk
docs/tr http://svn.php.net/repository/phpdoc/tr/trunk



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_2/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:01:40 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284011

Changed paths:
U   php/php-src/branches/PHP_5_2/win32/build/cvsclean.js
U   php/php-src/branches/PHP_5_2/win32/build/mkdist.php

Log:
- cvs to svn changes

Modified: php/php-src/branches/PHP_5_2/win32/build/cvsclean.js
===
(Binary files differ)

Modified: php/php-src/branches/PHP_5_2/win32/build/mkdist.php
===
--- php/php-src/branches/PHP_5_2/win32/build/mkdist.php 2009-07-13 15:16:20 UTC 
(rev 284010)
+++ php/php-src/branches/PHP_5_2/win32/build/mkdist.php 2009-07-13 16:01:40 UTC 
(rev 284011)
@@ -240,7 +240,7 @@
 }

 /* include a snapshot identifier */
-$branch = HEAD; // TODO - determine this from CVS/Entries
+$branch = HEAD; // TODO - determine this from SVN branche name
 $fp = fopen($dist_dir/snapshot.txt, w);
 $now = date(r);
 $version = phpversion();
@@ -319,7 +319,7 @@

$d = opendir($source);
while (($f = readdir($d)) !== false) {
-   if ($f == '.' || $f == '..' || $f == 'CVS') {
+   if ($f == '.' || $f == '..' || $f == '.svn') {
continue;
}
$fs = $source . '/' . $f;


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_3/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:02:34 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284012

Changed paths:
U   php/php-src/branches/PHP_5_3/win32/build/cvsclean.js
U   php/php-src/branches/PHP_5_3/win32/build/mkdist.php

Log:
- cvs to svn changes

Modified: php/php-src/branches/PHP_5_3/win32/build/cvsclean.js
===
(Binary files differ)

Modified: php/php-src/branches/PHP_5_3/win32/build/mkdist.php
===
--- php/php-src/branches/PHP_5_3/win32/build/mkdist.php 2009-07-13 16:01:40 UTC 
(rev 284011)
+++ php/php-src/branches/PHP_5_3/win32/build/mkdist.php 2009-07-13 16:02:34 UTC 
(rev 284012)
@@ -251,7 +251,7 @@
 }

 /* include a snapshot identifier */
-$branch = HEAD; // TODO - determine this from CVS/Entries
+$branch = HEAD; // TODO - determine this from SVN branche name
 $fp = fopen($dist_dir/snapshot.txt, w);
 $now = date(r);
 $version = phpversion();
@@ -342,7 +342,7 @@

$d = opendir($source);
while (($f = readdir($d)) !== false) {
-   if ($f == '.' || $f == '..' || $f == 'CVS' || $f == 
'.cvsignore') {
+   if ($f == '.' || $f == '..' || $f == '.svn') {
continue;
}
$fs = $source . '/' . $f;
@@ -380,7 +380,7 @@

while (FALSE !== ($file = readdir($directory_list))) {
$full_path = $directory . '/' . $file;
-   if($file != '.'  $file != '..'  $file != 'CVS'  
is_dir($full_path)) {
+   if($file != '.'  $file != '..'  $file != '.svn'  
is_dir($full_path)) {
if ($file == 'tests') {
if (!is_dir($dest . '/' . $full_path)) {
mkdir($dest . '/' . $full_path , 0775, 
true);


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:04:04 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284013

Changed paths:
U   php/php-src/trunk/win32/build/cvsclean.js
U   php/php-src/trunk/win32/build/mkdist.php

Log:
- cvs to svn changes

Modified: php/php-src/trunk/win32/build/cvsclean.js
===
(Binary files differ)

Modified: php/php-src/trunk/win32/build/mkdist.php
===
--- php/php-src/trunk/win32/build/mkdist.php2009-07-13 16:02:34 UTC (rev 
284012)
+++ php/php-src/trunk/win32/build/mkdist.php2009-07-13 16:04:04 UTC (rev 
284013)
@@ -251,7 +251,7 @@
 }

 /* include a snapshot identifier */
-$branch = HEAD; // TODO - determine this from CVS/Entries
+$branch = HEAD; // TODO - determine this from SVN branche name
 $fp = fopen($dist_dir/snapshot.txt, w);
 $now = date(r);
 $version = phpversion();
@@ -343,7 +343,7 @@

$d = opendir($source);
while (($f = readdir($d)) !== false) {
-   if ($f == '.' || $f == '..' || $f == 'CVS' || $f == 
'.cvsignore') {
+   if ($f == '.' || $f == '..' || $f == '.svn') {
continue;
}
$fs = $source . '/' . $f;
@@ -383,7 +383,7 @@

while (FALSE !== ($file = readdir($directory_list))) {
$full_path = $directory . '/' . $file;
-   if($file != '.'  $file != '..'  $file != 'CVS'  
is_dir($full_path)) {
+   if($file != '.'  $file != '..'  $file != '.svn'  
is_dir($full_path)) {
if ($file == 'tests') {
if (!is_dir($dest . '/' . $full_path)) {
mkdir($dest . '/' . $full_path , 0775, 
true);


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:08:08 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284014

Changed paths:
A   php/php-src/trunk/svnclean.bat

Log:
- rename to svn

Copied: php/php-src/trunk/svnclean.bat (from rev 284002, 
php/php-src/trunk/cvsclean.bat)
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_2/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:09:21 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284015

Changed paths:
A   php/php-src/branches/PHP_5_2/svnclean.bat

Log:
- rename to svn

Copied: php/php-src/branches/PHP_5_2/svnclean.bat (from rev 284002, 
php/php-src/branches/PHP_5_2/cvsclean.bat)
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_2/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:09:39 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284016

Changed paths:
A   php/php-src/branches/PHP_5_2/win32/build/svnclean.js

Log:
- rename to svn

Copied: php/php-src/branches/PHP_5_2/win32/build/svnclean.js (from rev 284011, 
php/php-src/branches/PHP_5_2/win32/build/cvsclean.js)
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_3/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:10:29 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284017

Changed paths:
A   php/php-src/branches/PHP_5_3/svnclean.bat

Log:
- rename to svn

Copied: php/php-src/branches/PHP_5_3/svnclean.bat (from rev 283992, 
php/php-src/branches/PHP_5_3/cvsclean.bat)
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_3/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:10:59 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284018

Changed paths:
A   php/php-src/branches/PHP_5_3/win32/build/svnclean.js

Log:
- rename to svn

Copied: php/php-src/branches/PHP_5_3/win32/build/svnclean.js (from rev 284012, 
php/php-src/branches/PHP_5_3/win32/build/cvsclean.js)
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 16:11:45 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284019

Changed paths:
A   php/php-src/trunk/win32/build/svnclean.js

Log:
- rename to svn

Copied: php/php-src/trunk/win32/build/svnclean.js (from rev 284013, 
php/php-src/trunk/win32/build/cvsclean.js)
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] svn: php/php-src/trunk/win32/build/

2009-07-13 Thread Jani Taskinen

Pierre-Alain Joye wrote:

pajoye  Mon, 13 Jul 2009 16:11:45 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284019

Changed paths:
A   php/php-src/trunk/win32/build/svnclean.js

Log:
- rename to svn

Copied: php/php-src/trunk/win32/build/svnclean.js (from rev 284013, 
php/php-src/trunk/win32/build/cvsclean.js)
===
(Binary files differ)


..binary? Let me guess: your editor still adds that BOM automatically to all 
files you open? :D


--Jani




--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] svn: php/php-src/trunk/win32/build/

2009-07-13 Thread Pierre Joye
On Mon, Jul 13, 2009 at 6:29 PM, Jani Taskinenjani.taski...@sci.fi wrote:
 Pierre-Alain Joye wrote:

 pajoye          Mon, 13 Jul 2009 16:11:45 +

 ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284019

 Changed paths:
        A   php/php-src/trunk/win32/build/svnclean.js

 Log:
 - rename to svn

 Copied: php/php-src/trunk/win32/build/svnclean.js (from rev 284013,
 php/php-src/trunk/win32/build/cvsclean.js)
 ===
 (Binary files differ)

 ..binary? Let me guess: your editor still adds that BOM automatically to all
 files you open? :D

No, it has to be set in the svn repo directly, afaik Gwynne is on it.

Cheers,
-- 
Pierre

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

--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_2/build/

2009-07-13 Thread Rasmus Lerdorf
rasmus  Mon, 13 Jul 2009 17:17:19 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284020

Changed paths:
U   php/php-src/branches/PHP_5_2/build/buildcheck.sh

Log:
cvs-svn


Modified: php/php-src/branches/PHP_5_2/build/buildcheck.sh
===
(Binary files differ)


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_3/build/

2009-07-13 Thread Rasmus Lerdorf
rasmus  Mon, 13 Jul 2009 17:36:49 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284021

Changed paths:
U   php/php-src/branches/PHP_5_3/build/buildcheck.sh

Log:
svn propdel svn:mime-type build/buildcheck.sh
cvs-svn


Modified: php/php-src/branches/PHP_5_3/build/buildcheck.sh
===
--- php/php-src/branches/PHP_5_3/build/buildcheck.sh2009-07-13 17:17:19 UTC 
(rev 284020)
+++ php/php-src/branches/PHP_5_3/build/buildcheck.sh2009-07-13 17:36:49 UTC 
(rev 284021)
@@ -33,14 +33,14 @@
 if test -z $ac_version; then
 echo buildconf: autoconf not found.
 echoYou need autoconf version 2.13 or newer installed
-echoto build PHP from CVS.
+echoto build PHP from SVN.
 exit 1
 fi
 IFS=.; set $ac_version; IFS=' '
 if test $1 = 2 -a $2 -lt 13 || test $1 -lt 2; then
 echo buildconf: autoconf version $ac_version found.
 echoYou need autoconf version 2.13 or newer installed
-echoto build PHP from CVS.
+echoto build PHP from SVN.
 exit 1
 else
 echo buildconf: autoconf version $ac_version (ok)
@@ -48,9 +48,9 @@

 if test $1 = 2  test $2 -ge 50; then
   echo buildconf: Your version of autoconf likely contains buggy cache code.
-  echoRunning cvsclean for you.
+  echoRunning svnclean for you.
   echoTo avoid this, install autoconf-2.13.
-  ./cvsclean
+  ./svnclean
   stamp=
 fi



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/build/

2009-07-13 Thread Rasmus Lerdorf
rasmus  Mon, 13 Jul 2009 17:58:04 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284022

Changed paths:
UU  php/php-src/trunk/build/buildcheck.sh

Log:
vn propdel svn:mime-type build/buildcheck.sh
cvs-svn


Modified: php/php-src/trunk/build/buildcheck.sh
===
(Binary files differ)


Property changes on: php/php-src/trunk/build/buildcheck.sh
___
Deleted: svn:mime-type
   - application/x-sh


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/

2009-07-13 Thread Rasmus Lerdorf
rasmus  Mon, 13 Jul 2009 18:14:34 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284023

Changed paths:
U   php/php-src/trunk/CODING_STANDARDS
U   php/php-src/trunk/INSTALL
U   php/php-src/trunk/README.SUBMITTING_PATCH

Log:
cvs-svn


Modified: php/php-src/trunk/CODING_STANDARDS
===
--- php/php-src/trunk/CODING_STANDARDS  2009-07-13 17:58:04 UTC (rev 284022)
+++ php/php-src/trunk/CODING_STANDARDS  2009-07-13 18:14:34 UTC (rev 284023)
@@ -259,7 +259,7 @@
 information::

   Any authoring information (known bugs, future directions of the module).
-  Ongoing status notes which may not be appropriate for CVS comments.
+  Ongoing status notes which may not be appropriate for SVN comments.

 Aliases  Legacy Documentation
 ---

Modified: php/php-src/trunk/INSTALL
===
--- php/php-src/trunk/INSTALL   2009-07-13 17:58:04 UTC (rev 284022)
+++ php/php-src/trunk/INSTALL   2009-07-13 18:14:34 UTC (rev 284023)
@@ -387,7 +387,7 @@
http://snaps.php.net/php4-latest.tar.gz or download binaries for
Windows http://snaps.php.net/win32/php4-win32-latest.zip.
  * a prerelease version downloadable from http://qa.php.net/.
- * you have always the option to obtain PHP through anonymous CVS.
+ * you have always the option to obtain PHP SVN.

  These versions of PHP are compatible to Apache 2.0.40 and later.

@@ -1244,8 +1244,8 @@

When building PHP modules, it's important to have the appropriate
versions of the required tools (autoconf, automake, libtool, etc.) See
-   the Anonymous CVS Instructions for details on the required tools, and
-   required versions.
+   the SVN Instructions for details on the required tools, and required
+   versions.
  _

 Downloading PECL extensions
@@ -1259,13 +1259,11 @@
  * pear download extname
The pear command may also be used to download source files.
Specific revisions may also be specified.
- * CVS
-   All PECL files reside in CVS. A web-based view may be seen at
-   http://cvs.php.net/pecl/. To download straight from CVS, consider
-   the following where phpfi is the password for user cvsread:
+ *SVN
+   All PECL files reside in SVN. A web-based view may be seen at
+   http://svn.php.net/pecl/. To download straight from SVN, use:

-$ cvs -d:pserver:cvsr...@cvs.php.net:/repository login
-$ cvs -d:pserver:cvsr...@cvs.php.net:/repository co pecl/extname
+$ svn co http://svn.php.net/repository/pecl/extname/trunk extname

  * Windows downloads
Windows users may find compiled PECL binaries by downloading the
@@ -1310,7 +1308,7 @@
 Compiling shared PECL extensions with phpize

If using pear is not an option, like for building shared PECL
-   extensions from CVS, or for unreleased PECL packages, then creating a
+   extensions from SVN, or for unreleased PECL packages, then creating a
shared extension may also be done by manually using the phpize
command. The pear command essentially does this but it may also be
done manually. Assuming the source file is named extname.tgz, and that
@@ -1428,7 +1426,7 @@
PHP directives are documented in the manual though. For a completel
list of directives available in your PHP version, please read your
well commented php.ini file. Alternatively, you may find the the
-   latest php.ini from CVS helpful too.
+   latest php.ini from SVN helpful too.

Example 6-1. php.ini example
 ; any text on a line after an unquoted semicolon (;) is ignored

Modified: php/php-src/trunk/README.SUBMITTING_PATCH
===
--- php/php-src/trunk/README.SUBMITTING_PATCH   2009-07-13 17:58:04 UTC (rev 
284022)
+++ php/php-src/trunk/README.SUBMITTING_PATCH   2009-07-13 18:14:34 UTC (rev 
284023)
@@ -8,11 +8,10 @@

 How to create patch?
 
-We are working with CVS. You need to get CVS source to create a patch
-that we accept.  Visit http://www.php.net/anoncvs.php to get CVS
-source. You can check out older versions, but make sure you get
-the default branch (i.e. Do not use -r option when you check out the
-CVS source)
+We are working with SVN. You need to get SVN source to create a patch
+that we accept.  Read http://www.php.net/svn.php for help on using SVN.
+You can check out older branches, but make sure you get trunk as well
+and make your patch work there.

 Read CODING_STANDARDS file before you start working.

@@ -21,7 +20,7 @@
 patch. Read README.TESTING for testing.

 After you finish testing your patch, take diff file using
-cvs diff  your.patch command.
+svn diff  your.patch command.

 Read README.TESTING for submitting a test script for your patch. This is
 not strictly required, but it is preferred to 

[PHP-CVS] svn: php/php-src/branches/PHP_5_2/

2009-07-13 Thread Rasmus Lerdorf
rasmus  Mon, 13 Jul 2009 19:15:58 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284024

Changed paths:
U   php/php-src/branches/PHP_5_2/INSTALL
U   php/php-src/branches/PHP_5_2/README.SUBMITTING_PATCH
_U  php/php-src/branches/PHP_5_2/build/buildcheck.sh

Log:
cvs-svn


Modified: php/php-src/branches/PHP_5_2/INSTALL
===
--- php/php-src/branches/PHP_5_2/INSTALL2009-07-13 18:14:34 UTC (rev 
284023)
+++ php/php-src/branches/PHP_5_2/INSTALL2009-07-13 19:15:58 UTC (rev 
284024)
@@ -386,7 +386,7 @@
http://snaps.php.net/php5-latest.tar.gz or download binaries for
Windows http://snaps.php.net/win32/php5-win32-latest.zip.
  * a prerelease version downloadable from http://qa.php.net/.
- * you have always the option to obtain PHP through anonymous CVS.
+ * you have always the option to obtain PHP through SVN.

  These versions of PHP are compatible to Apache 2.0.40 and later.

@@ -1303,8 +1303,8 @@

When building PHP modules, it's important to have known-good versions
of the required tools (autoconf, automake, libtool, etc.) See the
-   Anonymous CVS Instructions for details on the required tools, and
-   required versions.
+   SVN Instructions for details on the required tools, and required
+   versions.
  __

 Downloading PECL extensions
@@ -1320,14 +1320,11 @@
PECL extensions that have releases listed on the PECL web site are
available for download and installation using the pecl command.
Specific revisions may also be specified.
- * CVS
-   Most PECL extensions also reside in CVS. A web-based view may be
-   seen at http://cvs.php.net/pecl/. To download straight from CVS,
-   the following sequence of commands may be used. Note that phpfi is
-   the password for user cvsread:
+ * SVN
+   All PECL files reside in SVN. A web-based view may be seen at
+   http://svn.php.net/pecl/. To download straight from SVN, use:

-$ cvs -d:pserver:cvsr...@cvs.php.net:/repository login
-$ cvs -d:pserver:cvsr...@cvs.php.net:/repository co pecl/extname
+$ svn co http://svn.php.net/repository/pecl/extname/trunk extname

  * Windows downloads
Windows users may find compiled PECL binaries by downloading the

Modified: php/php-src/branches/PHP_5_2/README.SUBMITTING_PATCH
===
--- php/php-src/branches/PHP_5_2/README.SUBMITTING_PATCH2009-07-13 
18:14:34 UTC (rev 284023)
+++ php/php-src/branches/PHP_5_2/README.SUBMITTING_PATCH2009-07-13 
19:15:58 UTC (rev 284024)
@@ -8,11 +8,11 @@

 How to create patch?
 
-We are working with CVS. You need to get CVS source to create a patch
-that we accept.  Visit http://www.php.net/anoncvs.php to get CVS
-source. You can check out older versions, but make sure you get
-the default branch (i.e. Do not use -r option when you check out the
-CVS source)
+We use Subversion (SVN) for revision control.  You need to get the
+source from SVN in order to create a patch.  Read
+http://www.php.net/svn.php for help on using SVN.  You can check out
+older branches, but make sure you get trunk as well and make your
+patch work there.

 Read CODING_STANDARDS file before you start working.

@@ -21,7 +21,7 @@
 patch. Read README.TESTING for testing.

 After you finish testing your patch, take diff file using
-cvs diff  your.patch command.
+svn diff  your.patch command.

 Read README.TESTING for submitting a test script for your patch. This is
 not strictly required, but it is preferred to submit a test script along
@@ -41,27 +41,10 @@
 you are patching PEAR. Official module maintainers can be found in
 EXTENSIONS file in PHP source.

-If you are new to CVS (Concurrent Versions System), visit
-http://cvshome.org/ for details.
+If you are new to SVN (Subversion), visit
+http://svnbook.red-bean.com/ for details.


-Recommended CVS client settings for creating patch file
---
-Recommended ~/.cvsrc file setting is:
---
-cvs -z3
-update -d -P
-checkout -P
-diff -u
-
---
-diff -u means:
- -u Use the unified output format.
-
-With this CVS setting, you don't have to worry about adding/deleting
-newlines and spaces.
-
-
 Check list for submitting patch
 ---
  - Did you run make test to check if your patch didn't break
@@ -70,10 +53,7 @@
web server error logs when you test your patch?
  - Did you build PHP for multi-threaded web servers. (Optional)
  - Did you create test script for make test? (Recommended)
- - Did you check your patch is unified format and it does not
-   contain white space changes? (If you are not using recommended
-   cvs setting)
- - Did you update CVS source before you take final patch?
+ - Did you update SVN 

[PHP-CVS] svn: php/php-src/branches/PHP_5_3/

2009-07-13 Thread Rasmus Lerdorf
rasmus  Mon, 13 Jul 2009 19:16:13 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284025

Changed paths:
U   php/php-src/branches/PHP_5_3/CODING_STANDARDS
U   php/php-src/branches/PHP_5_3/INSTALL
U   php/php-src/branches/PHP_5_3/README.SUBMITTING_PATCH

Log:
cvs-svn


Modified: php/php-src/branches/PHP_5_3/CODING_STANDARDS
===
--- php/php-src/branches/PHP_5_3/CODING_STANDARDS   2009-07-13 19:15:58 UTC 
(rev 284024)
+++ php/php-src/branches/PHP_5_3/CODING_STANDARDS   2009-07-13 19:16:13 UTC 
(rev 284025)
@@ -259,7 +259,7 @@
 information::

   Any authoring information (known bugs, future directions of the module).
-  Ongoing status notes which may not be appropriate for CVS comments.
+  Ongoing status notes which may not be appropriate for SVN comments.

 Aliases  Legacy Documentation
 ---

Modified: php/php-src/branches/PHP_5_3/INSTALL
===
--- php/php-src/branches/PHP_5_3/INSTALL2009-07-13 19:15:58 UTC (rev 
284024)
+++ php/php-src/branches/PHP_5_3/INSTALL2009-07-13 19:16:13 UTC (rev 
284025)
@@ -1308,8 +1308,8 @@

When building PHP modules, it's important to have known-good versions
of the required tools (autoconf, automake, libtool, etc.) See the
-   Anonymous CVS Instructions for details on the required tools, and
-   required versions.
+   SVN Instructions for details on the required tools, and required
+   versions.
  __

 Downloading PECL extensions
@@ -1325,14 +1325,11 @@
PECL extensions that have releases listed on the PECL web site are
available for download and installation using the pecl command.
Specific revisions may also be specified.
- * CVS
-   Most PECL extensions also reside in CVS. A web-based view may be
-   seen at http://cvs.php.net/pecl/. To download straight from CVS,
-   the following sequence of commands may be used. Note that phpfi is
-   the password for user cvsread:
+ * SVN
+   All PECL files reside in SVN. A web-based view may be seen at
+   http://svn.php.net/pecl/. To download straight from SVN, use:

-$ cvs -d:pserver:cvsr...@cvs.php.net:/repository login
-$ cvs -d:pserver:cvsr...@cvs.php.net:/repository co pecl/extname
+$ svn co http://svn.php.net/repository/pecl/extname/trunk extname

  * Windows downloads
Windows users may find compiled PECL binaries by downloading the
@@ -1380,7 +1377,7 @@
Sometimes, using the pecl installer is not an option. This could be
because you're behind a firewall, or it could be because the extension
you want to install is not available as a PECL compatible package, such
-   as unreleased extensions from CVS. If you need to build such an
+   as unreleased extensions from SVN. If you need to build such an
extension, you can use the lower-level build tools to perform the build
manually.

@@ -1527,7 +1524,7 @@
directives are documented in the manual though. For a complete list of
directives available in your PHP version, please read your well
commented php.ini file. Alternatively, you may find the the latest
-   php.ini from CVS helpful too.
+   php.ini from SVN helpful too.

Example 6-1. php.ini example
 ; any text on a line after an unquoted semicolon (;) is ignored

Modified: php/php-src/branches/PHP_5_3/README.SUBMITTING_PATCH
===
--- php/php-src/branches/PHP_5_3/README.SUBMITTING_PATCH2009-07-13 
19:15:58 UTC (rev 284024)
+++ php/php-src/branches/PHP_5_3/README.SUBMITTING_PATCH2009-07-13 
19:16:13 UTC (rev 284025)
@@ -8,11 +8,11 @@

 How to create patch?
 
-We are working with CVS. You need to get CVS source to create a patch
-that we accept.  Visit http://www.php.net/anoncvs.php to get CVS
-source. You can check out older versions, but make sure you get
-the default branch (i.e. Do not use -r option when you check out the
-CVS source)
+We use Subversion (SVN) for revision control.  You need to get the
+source from SVN in order to create a patch.  Read
+http://www.php.net/svn.php for help on using SVN.  You can check out
+older branches, but make sure you get trunk as well and make your
+patch work there.

 Read CODING_STANDARDS file before you start working.

@@ -21,7 +21,7 @@
 patch. Read README.TESTING for testing.

 After you finish testing your patch, take diff file using
-cvs diff  your.patch command.
+svn diff  your.patch command.

 Read README.TESTING for submitting a test script for your patch. This is
 not strictly required, but it is preferred to submit a test script along
@@ -41,27 +41,10 @@
 you are patching PEAR. Official module maintainers can be found in
 EXTENSIONS file in PHP source.

-If you are new to CVS 

[PHP-CVS] svn: php/php-src/trunk/

2009-07-13 Thread Rasmus Lerdorf
rasmus  Mon, 13 Jul 2009 19:16:26 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284026

Changed paths:
U   php/php-src/trunk/INSTALL
U   php/php-src/trunk/README.SUBMITTING_PATCH

Log:
cvs-svn


Modified: php/php-src/trunk/INSTALL
===
--- php/php-src/trunk/INSTALL   2009-07-13 19:16:13 UTC (rev 284025)
+++ php/php-src/trunk/INSTALL   2009-07-13 19:16:26 UTC (rev 284026)
@@ -1259,7 +1259,7 @@
  * pear download extname
The pear command may also be used to download source files.
Specific revisions may also be specified.
- *SVN
+ * SVN
All PECL files reside in SVN. A web-based view may be seen at
http://svn.php.net/pecl/. To download straight from SVN, use:


Modified: php/php-src/trunk/README.SUBMITTING_PATCH
===
--- php/php-src/trunk/README.SUBMITTING_PATCH   2009-07-13 19:16:13 UTC (rev 
284025)
+++ php/php-src/trunk/README.SUBMITTING_PATCH   2009-07-13 19:16:26 UTC (rev 
284026)
@@ -8,10 +8,11 @@

 How to create patch?
 
-We are working with SVN. You need to get SVN source to create a patch
-that we accept.  Read http://www.php.net/svn.php for help on using SVN.
-You can check out older branches, but make sure you get trunk as well
-and make your patch work there.
+We use Subversion (SVN) for revision control.  You need to get the
+source from SVN in order to create a patch.  Read
+http://www.php.net/svn.php for help on using SVN.  You can check out
+older branches, but make sure you get trunk as well and make your
+patch work there.

 Read CODING_STANDARDS file before you start working.



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 21:59:45 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284027

Changed paths:
_U  php/php-src/trunk/win32/build/buildconf.js
_U  php/php-src/trunk/win32/build/confutils.js
_U  php/php-src/trunk/win32/build/projectgen.js
_U  php/php-src/trunk/win32/build/svnclean.js

Log:
- remove app/js mime


Property changes on: php/php-src/trunk/win32/build/buildconf.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/trunk/win32/build/confutils.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/trunk/win32/build/projectgen.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/trunk/win32/build/svnclean.js
___
Deleted: svn:mime-type
   - application/javascript


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_2/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 22:01:21 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284028

Changed paths:
_U  php/php-src/branches/PHP_5_2/win32/build/buildconf.js
_U  php/php-src/branches/PHP_5_2/win32/build/confutils.js
_U  php/php-src/branches/PHP_5_2/win32/build/svnclean.js

Log:
- remove app/js mime


Property changes on: php/php-src/branches/PHP_5_2/win32/build/buildconf.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/branches/PHP_5_2/win32/build/confutils.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/branches/PHP_5_2/win32/build/svnclean.js
___
Deleted: svn:mime-type
   - application/javascript


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_3/win32/build/

2009-07-13 Thread Pierre-Alain Joye
pajoye  Mon, 13 Jul 2009 22:02:28 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284029

Changed paths:
_U  php/php-src/branches/PHP_5_3/win32/build/buildconf.js
_U  php/php-src/branches/PHP_5_3/win32/build/confutils.js
_U  php/php-src/branches/PHP_5_3/win32/build/projectgen.js
_U  php/php-src/branches/PHP_5_3/win32/build/svnclean.js

Log:
- remove app/js mime


Property changes on: php/php-src/branches/PHP_5_3/win32/build/buildconf.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/branches/PHP_5_3/win32/build/confutils.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/branches/PHP_5_3/win32/build/projectgen.js
___
Deleted: svn:mime-type
   - application/javascript


Property changes on: php/php-src/branches/PHP_5_3/win32/build/svnclean.js
___
Deleted: svn:mime-type
   - application/javascript


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: SVNROOT/

2009-07-13 Thread Gwynne Raskind
gwynne  Mon, 13 Jul 2009 22:30:37 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284031

Changed paths:
U   SVNROOT/httpd.conf

Log:
deny git cloner

Modified: SVNROOT/httpd.conf
===
--- SVNROOT/httpd.conf  2009-07-13 22:14:56 UTC (rev 284030)
+++ SVNROOT/httpd.conf  2009-07-13 22:30:37 UTC (rev 284031)
@@ -22,6 +22,7 @@
 DAV svn
 SVNPath /home/svn/repository
Order allow,deny
+   Deny from 81.146.52.16
Allow from all
 LimitExcept GET PROPFIND OPTIONS REPORT
 Satisfy All


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: SVNROOT/

2009-07-13 Thread Gwynne Raskind
gwynne  Mon, 13 Jul 2009 23:40:16 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284032

Changed paths:
U   SVNROOT/commit-email.php

Log:
make use of Mail_MIME to correctly encode email, deal with ISO-8859-1/UTF-8
inconsistencies in users.db with an ugly hack, other small tweaks

Modified: SVNROOT/commit-email.php
===
--- SVNROOT/commit-email.php2009-07-13 22:30:37 UTC (rev 284031)
+++ SVNROOT/commit-email.php2009-07-13 23:40:16 UTC (rev 284032)
@@ -111,13 +111,24 @@
 // Determine from address
 // Various repositories can play with this to read from their equivelant of 
the old cvsusers folder, or whatever else they like
 $usersDB = file(dirname(__FILE__) . '/users.db');
+$from = NULL;
+$saw_last_ISO = FALSE;
 foreach ($usersDB as $userline) {
 list ($username, $fullname, $email) = explode(:, trim($userline));
-if ($username == $commit_user) {
-$from = imap_8bit(\{$fullname}\ {$userna...@php.net);
+if ($username === 'ladderalice') {
+$saw_last_ISO = TRUE;
+}
+if ($username === $commit_user) {
+if (!$saw_last_ISO) {
+$fullname = iconv(ISO-8859-1, UTF-8//TRANSLIT, $fullname);
+}
+$from = \{$fullname}\ {$userna...@php.net;
 break;
 }
 }
+if (is_null($from)) {
+die(Couldn't find user\n);
+}

 // 
-
 // Build list of e-mail addresses and parent changed path
@@ -148,17 +159,16 @@

 // 
-
 // Build e-mail
-$subject = svn: {$parent_path};
+$old_er = error_reporting(E_ERROR | E_WARNING); // Because it's PEAR code and 
thus throws E_STRICT and E_DEPRECATED all over the place, sigh
+require 'Mail/mime.php';

-$msg_headers = From: {$from}\n .
-   To:  . implode(', ', $emails_to) . \n .
-   Message-ID: svn{$commit_user}{$commit_da...@svn.php.net\n .
-   Date:  . date(DATE_RFC822, $commit_date) . \n .
-   Subject: {$subject}\n;
+$mime_email = new Mail_mime(\r\n);
+$mime_email-setFrom($from);
+$mime_email-setSubject(svn: {$parent_path});

 $msg_body = {$commit_user}\t\t . date(DATE_RFC2822, $commit_date) . \n .
 \n .
-ViewVC URL: 
http://svn.php.net/viewvc?view=revisionrevision={$REV}\n; .
+URL: http://svn.php.net/viewvc?view=revisionrevision={$REV}\n; .
 \n .
 Changed paths:\n .
 \t . implode(\n\t, $changed_paths) . \n .
@@ -166,30 +176,30 @@
 Log:\n .
 wordwrap($commit_log, 80, \n) . \n .
 \n;
-
-if (strlen($diffs) = (96 * 1024)) {
-   $msg_body .= diffs exceeded maximum size\n;
-} else if (strlen($diffs) = 8192) {
-$boundary = $commit_user. $commit_date;
-$msg_headers .= MIME-Version: 1.0\n .
-Content-Type: multipart/mixed; 
boundary=\{$boundary}\\n;
-$msg_body = This is a MIME encoded message.\n\n--{$boundary}\n .
-Content-Type: text/plain\n .
-\n .
-{$msg_body}\n .
---{$boundary}\n .
-Content-Type: text/plain\n .
-Content-Disposition: attachment; 
filename=\{$boundary}.txt\\n .
-\n .
-{$diffs}\n .
---{$boundary}--\n;
+if (strlen($diffs) = (256 * 1024)) {
+$msg_body .= diffs exceeded maximum size\n;
+} else if (strlen($diffs)  8192) {
+$mime_email-addAttachment($diffs, text/x-diff,
+{$commit_user}{$commit_date}.txt, FALSE, base64, attachment,
+utf-8);
 } else {
 $msg_body .= $diffs;
 }
+$mime_email-setTXTBody($msg_body, FALSE, FALSE);

-$complete_email = $msg_headers . \n . $msg_body;
-$complete_email = str_replace(array(\r, \n, \r\n.), array(, \r\n, 
..), $complete_email);
+$complete_email = $mime_email-getMessage(NULL, array(
+'head_encoding' = 'quoted-printable',
+'text_encoding' = 'quoted-printable',
+'text_charset' = 'utf-8',
+'head_charset' = 'utf-8'
+), array(
+'To' = implode(', ', $emails_to),
+'Message-ID' = svn{$commit_user}{$commit_da...@svn.php.net,
+'Date' = date(DATE_RFC2822, $commit_date)
+), TRUE);

+error_reporting($old_er);
+
 // 
-
 // Send e-mail
 if (isset($_ENV['DEBUG'])  $_ENV['DEBUG'] == 'DEBUG') {
@@ -213,7 +223,9 @@
 .\r\n .
 QUIT\r\n);

-$discard = stream_get_contents($socket);
+if (!isset($_ENV['DEBUG']) || $_ENV['DEBUG'] != 'DEBUG') {
+$discard = stream_get_contents($socket);
+}
 fclose($socket);

 ?


-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-CVS] svn: php/php-src/trunk/win32/build/

2009-07-13 Thread Gwynne Raskind

On Jul 13, 2009, at 12:51 PM, Pierre Joye wrote:

pajoye  Mon, 13 Jul 2009 16:11:45 +

ViewVC URL: http://svn.php.net/viewvc?view=revisionrevision=284019

Changed paths:
   A   php/php-src/trunk/win32/build/svnclean.js

Log:
- rename to svn

Copied: php/php-src/trunk/win32/build/svnclean.js (from rev 284013,
php/php-src/trunk/win32/build/cvsclean.js)
===
(Binary files differ)


..binary? Let me guess: your editor still adds that BOM  
automatically to all

files you open? :D

No, it has to be set in the svn repo directly, afaik Gwynne is on it.


I've now made five or six attempts to fix this, all of which obviously  
missed at least some affected files. Everyone who runs accross a file  
with this problem, please execute:


svn propdel svn:mime-type path to affected file

Before you commit if possible, or afterwards and re-commit otherwise.

-- Gwynne


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] Commit freeze is officially over

2009-07-13 Thread Gwynne Raskind
As of right now, I'm declaring SVN open to full time use. Commit away,  
everyone!


There are still a number of issues to resolve, but development's been  
held up too long. We'll fix the issues as we go. Some known issues:


- Rsync is still down. Derick's working on this.
- SVN access over HTTP is slow. We're looking into making svnserve  
available.

- phpdoc is more or less completely broken. Ahem, Philip and Hannes.
- gd was imported incorrectly. I'm looking into fixing this, but it  
may require taking the repo down for a few hours at some point.

- There's no svnsync to replace CVSup yet. I'm also looking into that.
- Several of the PHP boxes are still seeing cronjob failures. Pierre's  
working on that.
- There's no announcement on the PHP front page about the move. I'll  
poke someone to do something about that.


Any other issues, please bring them to my attention. Preferably via  
email, not IRC :).


-- Gwynne


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/Zend/

2009-07-13 Thread David Soria Parra
dsp Mon, 13 Jul 2009 23:55:34 +

URL: http://svn.php.net/viewvc?view=revisionrevision=284033

Changed paths:
U   php/php-src/trunk/Zend/bench.php

Log:
Fix date warning by setting the default timezone to UTC

Modified: php/php-src/trunk/Zend/bench.php
===
--- php/php-src/trunk/Zend/bench.php2009-07-13 23:40:16 UTC (rev 284032)
+++ php/php-src/trunk/Zend/bench.php2009-07-13 23:55:34 UTC (rev 284033)
@@ -1,5 +1,6 @@
 ?php

+date_default_timezone_set('UTC');
 function simple() {
   $a = 0;
   for ($i = 0; $i  100; $i++)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_3/Zend/

2009-07-13 Thread David Soria Parra
dsp Mon, 13 Jul 2009 23:56:38 +

URL: http://svn.php.net/viewvc?view=revisionrevision=284034

Changed paths:
U   php/php-src/branches/PHP_5_3/Zend/bench.php

Log:
MFH: Fix date warning by setting the default timezone to UTC

Modified: php/php-src/branches/PHP_5_3/Zend/bench.php
===
--- php/php-src/branches/PHP_5_3/Zend/bench.php 2009-07-13 23:55:34 UTC (rev 
284033)
+++ php/php-src/branches/PHP_5_3/Zend/bench.php 2009-07-13 23:56:38 UTC (rev 
284034)
@@ -3,6 +3,7 @@
date_default_timezone_set(UTC);
 }

+date_default_timezone_set('UTC');
 function simple() {
   $a = 0;
   for ($i = 0; $i  100; $i++)


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/branches/PHP_5_3/

2009-07-13 Thread Stanislav Malyshev
stasMon, 13 Jul 2009 23:57:20 +

URL: http://svn.php.net/viewvc?view=revisionrevision=284035

Changed paths:
U   php/php-src/branches/PHP_5_3/php.ini-development
U   php/php-src/branches/PHP_5_3/php.ini-production

Log:
add intl option


Modified: php/php-src/branches/PHP_5_3/php.ini-development
===
--- php/php-src/branches/PHP_5_3/php.ini-development2009-07-13 23:56:38 UTC 
(rev 284034)
+++ php/php-src/branches/PHP_5_3/php.ini-development2009-07-13 23:57:20 UTC 
(rev 284035)
@@ -1018,6 +1018,10 @@

 [intl]
 ;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING

 [sqlite]
 ; http://php.net/sqlite.assoc-case

Modified: php/php-src/branches/PHP_5_3/php.ini-production
===
--- php/php-src/branches/PHP_5_3/php.ini-production 2009-07-13 23:56:38 UTC 
(rev 284034)
+++ php/php-src/branches/PHP_5_3/php.ini-production 2009-07-13 23:57:20 UTC 
(rev 284035)
@@ -1018,6 +1018,10 @@

 [intl]
 ;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING

 [sqlite]
 ; http://php.net/sqlite.assoc-case


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: php/php-src/trunk/

2009-07-13 Thread Stanislav Malyshev
stasMon, 13 Jul 2009 23:58:30 +

URL: http://svn.php.net/viewvc?view=revisionrevision=284036

Changed paths:
U   php/php-src/trunk/php.ini-development
U   php/php-src/trunk/php.ini-production

Log:
add intl ini value


Modified: php/php-src/trunk/php.ini-development
===
--- php/php-src/trunk/php.ini-development   2009-07-13 23:57:20 UTC (rev 
284035)
+++ php/php-src/trunk/php.ini-development   2009-07-13 23:58:30 UTC (rev 
284036)
@@ -1018,6 +1018,10 @@

 [intl]
 ;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING

 [sqlite]
 ; http://php.net/sqlite.assoc-case

Modified: php/php-src/trunk/php.ini-production
===
--- php/php-src/trunk/php.ini-production2009-07-13 23:57:20 UTC (rev 
284035)
+++ php/php-src/trunk/php.ini-production2009-07-13 23:58:30 UTC (rev 
284036)
@@ -1018,6 +1018,10 @@

 [intl]
 ;intl.default_locale =
+; This directive allows you to produce PHP errors when some error
+; happens within intl functions. The value is the level of the error produced.
+; Default is 0, which does not produce any errors.
+;intl.error_level = E_WARNING

 [sqlite]
 ; http://php.net/sqlite.assoc-case


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-CVS] svn: phpdoc/

2009-07-13 Thread Nilgün Belma Bugüner
nilgun  Tue, 14 Jul 2009 01:30:29 +

URL: http://svn.php.net/viewvc?view=revisionrevision=284045

Changed paths:
D   phpdoc/doc-tr/
A   phpdoc/modules/
A   phpdoc/modules/doc-all/
A   phpdoc/modules/doc-ar/
A   phpdoc/modules/doc-bg/
A   phpdoc/modules/doc-ca/
A   phpdoc/modules/doc-cs/
A   phpdoc/modules/doc-da/
A   phpdoc/modules/doc-de/
A   phpdoc/modules/doc-el/
A   phpdoc/modules/doc-en/
A   phpdoc/modules/doc-es/
A   phpdoc/modules/doc-fa/
A   phpdoc/modules/doc-fi/
A   phpdoc/modules/doc-fr/
A   phpdoc/modules/doc-he/
A   phpdoc/modules/doc-hk/
A   phpdoc/modules/doc-hu/
A   phpdoc/modules/doc-id/
A   phpdoc/modules/doc-it/
A   phpdoc/modules/doc-ja/
A   phpdoc/modules/doc-kr/
A   phpdoc/modules/doc-lt/
A   phpdoc/modules/doc-nl/
A   phpdoc/modules/doc-no/
A   phpdoc/modules/doc-pl/
A   phpdoc/modules/doc-pt/
A   phpdoc/modules/doc-pt_BR/
A   phpdoc/modules/doc-ro/
A   phpdoc/modules/doc-ru/
A   phpdoc/modules/doc-sk/
A   phpdoc/modules/doc-sl/
A   phpdoc/modules/doc-sv/
A   phpdoc/modules/doc-tr/
A   phpdoc/modules/doc-tw/
A   phpdoc/modules/doc-zh/

Log:
add helper modules


Property changes on: phpdoc/modules/doc-all
___
Added: svn:externals
   + docs http://svn.php.net/repository/phpdoc/doc-base/trunk
docs/ar http://svn.php.net/repository/phpdoc/ar/trunk
docs/bg http://svn.php.net/repository/phpdoc/bg/trunk
docs/ca http://svn.php.net/repository/phpdoc/ca/trunk
docs/cs http://svn.php.net/repository/phpdoc/cs/trunk
docs/da http://svn.php.net/repository/phpdoc/da/trunk
docs/de http://svn.php.net/repository/phpdoc/de/trunk
docs/el http://svn.php.net/repository/phpdoc/el/trunk
docs/en http://svn.php.net/repository/phpdoc/en/trunk
docs/es http://svn.php.net/repository/phpdoc/es/trunk
docs/fa http://svn.php.net/repository/phpdoc/fa/trunk
docs/fi http://svn.php.net/repository/phpdoc/fi/trunk
docs/fr http://svn.php.net/repository/phpdoc/fr/trunk
docs/he http://svn.php.net/repository/phpdoc/he/trunk
docs/hk http://svn.php.net/repository/phpdoc/hk/trunk
docs/hu http://svn.php.net/repository/phpdoc/hu/trunk
docs/id http://svn.php.net/repository/phpdoc/id/trunk
docs/it http://svn.php.net/repository/phpdoc/it/trunk
docs/ja http://svn.php.net/repository/phpdoc/ja/trunk
docs/kr http://svn.php.net/repository/phpdoc/kr/trunk
docs/lt http://svn.php.net/repository/phpdoc/lt/trunk
docs/nl http://svn.php.net/repository/phpdoc/nl/trunk
docs/no http://svn.php.net/repository/phpdoc/no/trunk
docs/pl http://svn.php.net/repository/phpdoc/pl/trunk
docs/pt http://svn.php.net/repository/phpdoc/pt/trunk
docs/pt_BR http://svn.php.net/repository/phpdoc/pt_BR/trunk
docs/ro http://svn.php.net/repository/phpdoc/ro/trunk
docs/ru http://svn.php.net/repository/phpdoc/ru/trunk
docs/sk http://svn.php.net/repository/phpdoc/sk/trunk
docs/sl http://svn.php.net/repository/phpdoc/sl/trunk
docs/sv http://svn.php.net/repository/phpdoc/sv/trunk
docs/tr http://svn.php.net/repository/phpdoc/tr/trunk
docs/tw http://svn.php.net/repository/phpdoc/tw/trunk
docs/zh http://svn.php.net/repository/phpdoc/zh/trunk



Property changes on: phpdoc/modules/doc-ar
___
Added: svn:externals
   + docs http://svn.php.net/repository/phpdoc/doc-base/trunk
docs/en http://svn.php.net/repository/phpdoc/en/trunk
docs/ar http://svn.php.net/repository/phpdoc/ar/trunk



Property changes on: phpdoc/modules/doc-bg
___
Added: svn:externals
   + docs http://svn.php.net/repository/phpdoc/doc-base/trunk
docs/en http://svn.php.net/repository/phpdoc/en/trunk
docs/bg http://svn.php.net/repository/phpdoc/bg/trunk



Property changes on: phpdoc/modules/doc-ca
___
Added: svn:externals
   + docs http://svn.php.net/repository/phpdoc/doc-base/trunk
docs/en http://svn.php.net/repository/phpdoc/en/trunk
docs/ca http://svn.php.net/repository/phpdoc/ca/trunk



Property changes on: phpdoc/modules/doc-cs
___
Added: svn:externals
   + docs http://svn.php.net/repository/phpdoc/doc-base/trunk
docs/en http://svn.php.net/repository/phpdoc/en/trunk
docs/cs http://svn.php.net/repository/phpdoc/cs/trunk



Property changes on: phpdoc/modules/doc-da
___
Added: svn:externals
   + docs http://svn.php.net/repository/phpdoc/doc-base/trunk
docs/en http://svn.php.net/repository/phpdoc/en/trunk
docs/da http://svn.php.net/repository/phpdoc/da/trunk



Property changes on: phpdoc/modules/doc-de