[PHP-CVS] com karma: replace git show in getChangedPaths by git diff-tree: lib/Git/ReceiveHook.php

2012-03-28 Thread Alexander Moskaliov
Commit:3082cb40bcf3f11894b70ccd735ecda9f94fc899
Author:Alexander Moskaliov ir...@php.net Wed, 28 Mar 2012 
10:25:02 +0400
Parents:   fd251cb983a0be8628d4e435aed2775cf37c5f71
Branches:  master

Link:   
http://git.php.net/?p=karma.git;a=commitdiff;h=3082cb40bcf3f11894b70ccd735ecda9f94fc899

Log:
replace git show in getChangedPaths by git diff-tree

Changed paths:
  M  lib/Git/ReceiveHook.php


Diff:
3082cb40bcf3f11894b70ccd735ecda9f94fc899
diff --git a/lib/Git/ReceiveHook.php b/lib/Git/ReceiveHook.php
index 1bf4bfa..0100d6e 100644
--- a/lib/Git/ReceiveHook.php
+++ b/lib/Git/ReceiveHook.php
@@ -82,7 +82,7 @@ abstract class ReceiveHook
  */
 protected function getChangedPaths($revRange)
 {
-$raw = \Git::gitExec('show --name-status --pretty=format: %s', 
$revRange);
+$raw = \Git::gitExec('diff-tree -r --no-commit-id -c --name-status 
--pretty=format: %s', $revRange);
 $paths = [];
 $lines = explode(\n, $raw);
 foreach($lines as $line) {


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



[PHP-CVS] com php-src: Restored the good part of 74ee335 that was just reverted.: ext/fileinfo/libmagic/magic.c

2012-03-28 Thread Gustavo Andreacute; dos Santos Lopes
Commit:067603106eba10e7648ccfe11834b10580fde2a9
Author:Gustavo André dos Santos Lopes cataphr...@php.net Wed, 28 
Mar 2012 08:43:41 +0100
Parents:   c6e15455a3e7fa62c77728bf29638207f496ac1d
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=067603106eba10e7648ccfe11834b10580fde2a9

Log:
Restored the good part of 74ee335 that was just reverted.

Changed paths:
  M  ext/fileinfo/libmagic/magic.c


Diff:
067603106eba10e7648ccfe11834b10580fde2a9
diff --git a/ext/fileinfo/libmagic/magic.c b/ext/fileinfo/libmagic/magic.c
index ff9da7f..b4818ae 100644
--- a/ext/fileinfo/libmagic/magic.c
+++ b/ext/fileinfo/libmagic/magic.c
@@ -92,6 +92,7 @@ private const char *file_or_stream(struct magic_set *, const 
char *, php_stream
 #endif
 
 /* XXX this functionality is excluded in php, enable it in apprentice.c:340 */
+#if 0
 private const char *
 get_default_magic(void)
 {
@@ -215,6 +216,7 @@ magic_getpath(const char *magicfile, int action)
 
return action == FILE_LOAD ? get_default_magic() : MAGIC;
 }
+#endif
 
 public struct magic_set *
 magic_open(int flags)


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



[PHP-CVS] com php-src: Revert - fix bug #61504, fix build errors on windows and possibly other: Zend/zend_language_scanner.c Zend/zend_language_scanner_defs.h ext/fileinfo/libmagic/magic.c

2012-03-28 Thread Gustavo Andreacute; dos Santos Lopes
Commit:c6e15455a3e7fa62c77728bf29638207f496ac1d
Author:Gustavo André dos Santos Lopes cataphr...@php.net Wed, 28 
Mar 2012 08:41:18 +0100
Parents:   74ee335e3aea8c48380334098b8d20eb54d6c6be
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=c6e15455a3e7fa62c77728bf29638207f496ac1d

Log:
Revert - fix bug #61504, fix build errors on windows and possibly other

This reverts commit 74ee335e3aea8c48380334098b8d20eb54d6c6be.

Bugs:
https://bugs.php.net/61504

Changed paths:
  M  Zend/zend_language_scanner.c
  M  Zend/zend_language_scanner_defs.h
  M  ext/fileinfo/libmagic/magic.c


Diff: Diff exceeded maximum size

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



[PHP-CVS] com php-src: Bug #61504 TSRML_FETCH() must be last: ext/fileinfo/libmagic/funcs.c

2012-03-28 Thread Anatoliy Belsky
Commit:e7fa402c7ccbff8a6ff8af776192416747db0d77
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 12:05:20 
+0200
Parents:   067603106eba10e7648ccfe11834b10580fde2a9
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=e7fa402c7ccbff8a6ff8af776192416747db0d77

Log:
Bug #61504 TSRML_FETCH() must be last

Bugs:
https://bugs.php.net/61504

Changed paths:
  M  ext/fileinfo/libmagic/funcs.c


Diff:
e7fa402c7ccbff8a6ff8af776192416747db0d77
diff --git a/ext/fileinfo/libmagic/funcs.c b/ext/fileinfo/libmagic/funcs.c
index ce62d9b..0fc9201 100644
--- a/ext/fileinfo/libmagic/funcs.c
+++ b/ext/fileinfo/libmagic/funcs.c
@@ -435,11 +435,11 @@ file_replace(struct magic_set *ms, const char *pat, const 
char *rep)
 {
zval *patt;
int opts = 0;
-   TSRMLS_FETCH();
pcre_cache_entry *pce;
char *res;
zval *repl;
int res_len, rep_cnt;
+   TSRMLS_FETCH();
 
MAKE_STD_ZVAL(patt);
ZVAL_STRINGL(patt, pat, strlen(pat), 0);
@@ -477,31 +477,3 @@ file_replace(struct magic_set *ms, const char *pat, const 
char *rep)
return rep_cnt;
 }
 
-#if 0
-protected int
-file_replace(struct magic_set *ms, const char *pat, const char *rep)
-{
-   regex_t rx;
-   int rc;
-
-   rc = regcomp(rx, pat, REG_EXTENDED);
-   if (rc) {
-   char errmsg[512];
-   (void)regerror(rc, rx, errmsg, sizeof(errmsg));
-   file_magerror(ms, regex error %d, (%s), rc, errmsg);
-   return -1;
-   } else {
-   regmatch_t rm;
-   int nm = 0;
-   while (regexec(rx, ms-o.buf, 1, rm, 0) == 0) {
-   ms-o.buf[rm.rm_so] = '\0';
-   if (file_printf(ms, %s%s, rep,
-   rm.rm_eo != 0 ? ms-o.buf + rm.rm_eo : ) == -1)
-   return -1;
-   nm++;
-   }
-   regfree(rx);
-   return nm;
-   }
-}
-#endif


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



[PHP-CVS] com php-src: Bug 61504 updated libmagic.patch: ext/fileinfo/libmagic.patch

2012-03-28 Thread Anatoliy Belsky
Commit:11f04c3524cc86a5c4cdf748a107801116604184
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 12:06:09 
+0200
Parents:   e7fa402c7ccbff8a6ff8af776192416747db0d77
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=11f04c3524cc86a5c4cdf748a107801116604184

Log:
Bug 61504 updated libmagic.patch

Bugs:
https://bugs.php.net/61504

Changed paths:
  M  ext/fileinfo/libmagic.patch

11f04c3524cc86a5c4cdf748a107801116604184
diff --git a/ext/fileinfo/libmagic.patch b/ext/fileinfo/libmagic.patch
index bd98e08..ad5293a 100644
--- a/ext/fileinfo/libmagic.patch
+++ b/ext/fileinfo/libmagic.patch
@@ -1,6 +1,6 @@
 diff -u libmagic.orig/apprentice.c libmagic/apprentice.c
 libmagic.orig/apprentice.c 2012-03-26 20:56:34.251798486 +0200
-+++ libmagic/apprentice.c  2012-03-26 13:30:32.207768336 +0200
+--- libmagic.orig/apprentice.c 2012-03-28 12:00:34.017709605 +0200
 libmagic/apprentice.c  2012-03-28 01:53:04.283305402 +0200
 @@ -29,6 +29,8 @@
   * apprentice - make one pass through /etc/magic, learning its secrets.
   */
@@ -729,8 +729,8 @@ diff -u libmagic.orig/apprentice.c libmagic/apprentice.c
m-str_flags = swap4(m-str_flags);
}
 diff -u libmagic.orig/ascmagic.c libmagic/ascmagic.c
 libmagic.orig/ascmagic.c   2012-03-26 20:56:34.251798486 +0200
-+++ libmagic/ascmagic.c2012-03-26 17:13:01.075786465 +0200
+--- libmagic.orig/ascmagic.c   2012-03-28 12:00:34.017709605 +0200
 libmagic/ascmagic.c2012-03-28 01:53:04.287303117 +0200
 @@ -139,10 +139,8 @@
/* malloc size is a conservative overestimate; could be
   improved, or at least realloced after conversion. */
@@ -756,8 +756,8 @@ diff -u libmagic.orig/ascmagic.c libmagic/ascmagic.c
  }
 Only in libmagic.orig: asprintf.c
 diff -u libmagic.orig/cdf.c libmagic/cdf.c
 libmagic.orig/cdf.c2012-03-26 20:56:33.971784616 +0200
-+++ libmagic/cdf.c 2012-03-26 11:34:11.219768705 +0200
+--- libmagic.orig/cdf.c2012-03-28 12:00:34.012709598 +0200
 libmagic/cdf.c 2012-03-28 01:53:04.299331601 +0200
 @@ -43,7 +43,17 @@
  #include err.h
  #endif
@@ -807,8 +807,8 @@ diff -u libmagic.orig/cdf.c libmagic/cdf.c
(void)fprintf(stderr, timestamp %s\n, buf);
} else {
 diff -u libmagic.orig/cdf.h libmagic/cdf.h
 libmagic.orig/cdf.h2012-03-26 20:56:34.251798486 +0200
-+++ libmagic/cdf.h 2012-03-26 16:14:34.644814962 +0200
+--- libmagic.orig/cdf.h2012-03-28 12:00:34.017709605 +0200
 libmagic/cdf.h 2012-03-28 01:53:04.299331601 +0200
 @@ -35,7 +35,7 @@
  #ifndef _H_CDF_
  #define _H_CDF_
@@ -845,8 +845,8 @@ diff -u libmagic.orig/cdf.h libmagic/cdf.h
  void cdf_swap_header(cdf_header_t *);
  void cdf_unpack_header(cdf_header_t *, char *);
 diff -u libmagic.orig/cdf_time.c libmagic/cdf_time.c
 libmagic.orig/cdf_time.c   2012-03-26 20:56:34.131813623 +0200
-+++ libmagic/cdf_time.c2012-03-26 11:34:11.223787722 +0200
+--- libmagic.orig/cdf_time.c   2012-03-28 12:00:34.017709605 +0200
 libmagic/cdf_time.c2012-03-28 01:53:04.299331601 +0200
 @@ -96,7 +96,7 @@
  }
  
@@ -904,8 +904,8 @@ diff -u libmagic.orig/cdf_time.c libmagic/cdf_time.c
static const char *ref = Sat Apr 23 01:30:00 1977;
char *p, *q;
 diff -u libmagic.orig/compress.c libmagic/compress.c
 libmagic.orig/compress.c   2012-03-26 20:56:33.975771785 +0200
-+++ libmagic/compress.c2012-03-26 11:34:11.231789506 +0200
+--- libmagic.orig/compress.c   2012-03-28 12:00:34.012709598 +0200
 libmagic/compress.c2012-03-28 01:53:04.299331601 +0200
 @@ -32,6 +32,7 @@
   *uncompress(method, old, n, newch) - uncompress old into new, 
   *using method, return sizeof new
@@ -1042,12 +1042,10 @@ diff -u libmagic.orig/compress.c libmagic/compress.c
 -#endif
 +#endif /* if PHP_FILEINFO_UNCOMPRESS */
 Only in libmagic: config.h
-Only in libmagic.orig: .deps
-Only in libmagic.orig: file
 Only in libmagic.orig: file.c
 diff -u libmagic.orig/file.h libmagic/file.h
 libmagic.orig/file.h   2012-03-26 20:56:34.251798486 +0200
-+++ libmagic/file.h2012-03-26 16:11:01.839769578 +0200
+--- libmagic.orig/file.h   2012-03-28 12:00:34.017709605 +0200
 libmagic/file.h2012-03-28 01:53:04.304322598 +0200
 @@ -33,11 +33,9 @@
  #ifndef __file_h__
  #define __file_h__
@@ -1199,11 +1197,10 @@ diff -u libmagic.orig/file.h libmagic/file.h
  size_t strlcat(char *dst, const char *src, size_t siz);
  #endif
  #ifndef HAVE_GETLINE
-Only in libmagic: .file.h.swp
 Only in libmagic.orig: file_opts.h
 diff -u libmagic.orig/fsmagic.c libmagic/fsmagic.c
 libmagic.orig/fsmagic.c2012-03-26 20:56:33.975771785 +0200
-+++ libmagic/fsmagic.c 2012-03-26 11:34:11.263771641 +0200
+--- libmagic.orig/fsmagic.c2012-03-28 12:00:34.012709598 +0200
 libmagic/fsmagic.c 2012-03-28 

[PHP-CVS] com php-src: Fix bug #61468 ext/phar/tests/phar_oo_005.phpt fails: ext/phar/tests/phar_oo_005.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:0b20329aaf4228e071ab03f4e96adeafa6c48f52
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 12:54:19 
+0200
Parents:   11f04c3524cc86a5c4cdf748a107801116604184
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=0b20329aaf4228e071ab03f4e96adeafa6c48f52

Log:
Fix bug #61468 ext/phar/tests/phar_oo_005.phpt fails

Bugs:
https://bugs.php.net/61468

Changed paths:
  M  ext/phar/tests/phar_oo_005.phpt


Diff:
0b20329aaf4228e071ab03f4e96adeafa6c48f52
diff --git a/ext/phar/tests/phar_oo_005.phpt b/ext/phar/tests/phar_oo_005.phpt
index 2d4cbd0..cb3f298 100755
--- a/ext/phar/tests/phar_oo_005.phpt
+++ b/ext/phar/tests/phar_oo_005.phpt
@@ -40,25 +40,25 @@ string(14) phar://*/a.php
 string(14) phar://*/a.php
 string(0) 
 string(5) a.php
-string(5) a.php
+string(21) phar_oo_test.phar.php
 string(16) phar://*/b/c.php
 string(16) phar://*/b/c.php
 string(1) b
 string(7) b/c.php
-string(5) c.php
+string(1) b
 string(16) phar://*/b/d.php
 string(16) phar://*/b/d.php
 string(1) b
 string(7) b/d.php
-string(5) d.php
+string(1) b
 string(14) phar://*/b.php
 string(14) phar://*/b.php
 string(0) 
 string(5) b.php
-string(5) b.php
+string(21) phar_oo_test.phar.php
 string(14) phar://*/e.php
 string(14) phar://*/e.php
 string(0) 
 string(5) e.php
-string(5) e.php
+string(21) phar_oo_test.phar.php
 ===DONE===


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



[PHP-CVS] com php-src: Merge branch 'PHP-5.3' into PHP-5.4: ext/intl/tests/dateformat_clone.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:105a9a9d455a29951add13f5add9e0b59520f79e
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 14:01:14 
+0200
Parents:   d406f2b034a3b41e94aaf7bea0535aca196853d7 
103995ba22ed13e5924acdad91a8dc444d72cde1
Branches:  PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=105a9a9d455a29951add13f5add9e0b59520f79e

Log:
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix bug #61448 intl tests fail with icu = 4.8

Bugs:
https://bugs.php.net/61448

Changed paths:
  MM  ext/intl/tests/dateformat_clone.phpt


Diff:
105a9a9d455a29951add13f5add9e0b59520f79e
diff --combined ext/intl/tests/dateformat_clone.phpt
index 886a98f,f060444..f060444
mode 100644,100755..100644
--- a/ext/intl/tests/dateformat_clone.phpt
+++ b/ext/intl/tests/dateformat_clone.phpt
@@@ -1,7 -1,8 +1,8 @@@
  --TEST--
- Cloning datefmt
+ Cloning datefmt icu = 4.2
  --SKIPIF--
  ?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?
+ ?php if(version_compare(INTL_ICU_VERSION, '4.3', '') != 1) print 'skip'; ?
  --FILE--
  ?php
  include_once( 'ut_common.inc' );


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



Re: [PHP-CVS] com php-src: Fixed problem introduced in a763929 (fixing bug #61347).: ext/spl/spl_array.c

2012-03-28 Thread Alexey Shein
Thanks for fixing this!

28 марта 2012 г. 17:04 пользователь Gustavo Andreacute; dos Santos
Lopes cataphr...@php.net написал:
 Commit:    f07dd29fdca49228551e8d39fb4282b33dffaa23
 Author:    Gustavo André dos Santos Lopes cataphr...@php.net         Wed, 
 28 Mar 2012 13:04:41 +0100
 Parents:   067603106eba10e7648ccfe11834b10580fde2a9
 Branches:  master

 Link:       
 http://git.php.net/?p=php-src.git;a=commitdiff;h=f07dd29fdca49228551e8d39fb4282b33dffaa23

 Log:
 Fixed problem introduced in a763929 (fixing bug #61347).

 The test added in 8c44c85 should now pass.

 Bugs:
 https://bugs.php.net/61347

 Changed paths:
  M  ext/spl/spl_array.c


 Diff:
 f07dd29fdca49228551e8d39fb4282b33dffaa23
 diff --git a/ext/spl/spl_array.c b/ext/spl/spl_array.c
 index c8384d8..6e9525e 100755
 --- a/ext/spl/spl_array.c
 +++ b/ext/spl/spl_array.c
 @@ -636,7 +636,7 @@ SPL_METHOD(Array, offsetExists)
        if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, z, index) == 
 FAILURE) {
                return;
        }
 -       RETURN_BOOL(spl_array_has_dimension_ex(0, getThis(), index, 0 
 TSRMLS_CC));
 +       RETURN_BOOL(spl_array_has_dimension_ex(0, getThis(), index, 2 
 TSRMLS_CC));
  } /* }}} */

  /* {{{ proto mixed ArrayObject::offsetGet(mixed $index)


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




-- 
Regards,
Shein Alexey

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



[PHP-CVS] com php-src: Fix bug #61404 ext\openssl\tests\021.phpt fails: ext/openssl/tests/021.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:4c5b427124a2af3d951fed869cc86452e8b6290c
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 16:04:56 
+0200
Parents:   fa7f215d19b3546c028b2cfb9864d28a06ac29af
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=4c5b427124a2af3d951fed869cc86452e8b6290c

Log:
Fix bug #61404 ext\openssl\tests\021.phpt fails

Bugs:
https://bugs.php.net/61404

Changed paths:
  M  ext/openssl/tests/021.phpt


Diff:
4c5b427124a2af3d951fed869cc86452e8b6290c
diff --git a/ext/openssl/tests/021.phpt b/ext/openssl/tests/021.phpt
index 00e2158..391b6a5 100644
--- a/ext/openssl/tests/021.phpt
+++ b/ext/openssl/tests/021.phpt
@@ -8,6 +8,8 @@ $cert = file:// . dirname(__FILE__) . /cert.crt;
 $priv = file:// . dirname(__FILE__) . /private.key;
 $wrong = wrong;
 $pub = file:// . dirname(__FILE__) . /public.key;
+$config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
+$config_arg = array('config' = $config);
 
 $dn = array(
countryName = BR,
@@ -21,14 +23,15 @@ $args = array(
digest_alg = sha1,
private_key_bits = 2048,
private_key_type = OPENSSL_KEYTYPE_DSA,
-   encrypt_key = true
+   encrypt_key = true,
+   config = $config
);
 
-$privkey = openssl_pkey_new();
+$privkey = openssl_pkey_new($config_arg);
 $csr = openssl_csr_new($dn, $privkey, $args);
 var_dump(openssl_csr_sign($csr, null, $privkey, 365, $args));
-var_dump(openssl_csr_sign($csr, null, $privkey, 365));
-var_dump(openssl_csr_sign($csr, $cert, $priv, 365));
+var_dump(openssl_csr_sign($csr, null, $privkey, 365, $config_arg));
+var_dump(openssl_csr_sign($csr, $cert, $priv, 365, $config_arg));
 var_dump(openssl_csr_sign($csr, $wrong, $privkey, 365));
 var_dump(openssl_csr_sign($csr, null, $wrong, 365));
 var_dump(openssl_csr_sign($csr, null, $privkey, $wrong));
@@ -38,7 +41,7 @@ var_dump(openssl_csr_sign(array(), null, $privkey, 365));
 var_dump(openssl_csr_sign($csr, array(), $privkey, 365));
 var_dump(openssl_csr_sign($csr, null, array(), 365));
 var_dump(openssl_csr_sign($csr, null, $privkey, array()));
-var_dump(openssl_csr_sign($csr, null, $privkey, 365, array()));
+var_dump(openssl_csr_sign($csr, null, $privkey, 365, $config_arg));
 ?
 --EXPECTF--
 resource(%d) of type (OpenSSL X.509)


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



[PHP-CVS] com php-src: Fix bug #61404 ext\openssl\tests\021.phpt fails: ext/openssl/tests/021.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:bd7bb973b1f4791f000a890b1c1387fcd28c65ee
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 16:04:56 
+0200
Parents:   bd928f05921a9c3595181c9b04e8024ad9ab9303
Branches:  PHP-5.3

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=bd7bb973b1f4791f000a890b1c1387fcd28c65ee

Log:
Fix bug #61404 ext\openssl\tests\021.phpt fails

Bugs:
https://bugs.php.net/61404

Changed paths:
  M  ext/openssl/tests/021.phpt


Diff:
bd7bb973b1f4791f000a890b1c1387fcd28c65ee
diff --git a/ext/openssl/tests/021.phpt b/ext/openssl/tests/021.phpt
index 00e2158..391b6a5 100644
--- a/ext/openssl/tests/021.phpt
+++ b/ext/openssl/tests/021.phpt
@@ -8,6 +8,8 @@ $cert = file:// . dirname(__FILE__) . /cert.crt;
 $priv = file:// . dirname(__FILE__) . /private.key;
 $wrong = wrong;
 $pub = file:// . dirname(__FILE__) . /public.key;
+$config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
+$config_arg = array('config' = $config);
 
 $dn = array(
countryName = BR,
@@ -21,14 +23,15 @@ $args = array(
digest_alg = sha1,
private_key_bits = 2048,
private_key_type = OPENSSL_KEYTYPE_DSA,
-   encrypt_key = true
+   encrypt_key = true,
+   config = $config
);
 
-$privkey = openssl_pkey_new();
+$privkey = openssl_pkey_new($config_arg);
 $csr = openssl_csr_new($dn, $privkey, $args);
 var_dump(openssl_csr_sign($csr, null, $privkey, 365, $args));
-var_dump(openssl_csr_sign($csr, null, $privkey, 365));
-var_dump(openssl_csr_sign($csr, $cert, $priv, 365));
+var_dump(openssl_csr_sign($csr, null, $privkey, 365, $config_arg));
+var_dump(openssl_csr_sign($csr, $cert, $priv, 365, $config_arg));
 var_dump(openssl_csr_sign($csr, $wrong, $privkey, 365));
 var_dump(openssl_csr_sign($csr, null, $wrong, 365));
 var_dump(openssl_csr_sign($csr, null, $privkey, $wrong));
@@ -38,7 +41,7 @@ var_dump(openssl_csr_sign(array(), null, $privkey, 365));
 var_dump(openssl_csr_sign($csr, array(), $privkey, 365));
 var_dump(openssl_csr_sign($csr, null, array(), 365));
 var_dump(openssl_csr_sign($csr, null, $privkey, array()));
-var_dump(openssl_csr_sign($csr, null, $privkey, 365, array()));
+var_dump(openssl_csr_sign($csr, null, $privkey, 365, $config_arg));
 ?
 --EXPECTF--
 resource(%d) of type (OpenSSL X.509)


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



[PHP-CVS] com php-src: Fix bug #61404 ext\openssl\tests\021.phpt fails: ext/openssl/tests/021.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:b90516745821a5340bc52f1b1825e9b8614ff9f6
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 16:04:56 
+0200
Parents:   a715a21594346aef34d3d7aad35ea147fe134d1c
Branches:  master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=b90516745821a5340bc52f1b1825e9b8614ff9f6

Log:
Fix bug #61404 ext\openssl\tests\021.phpt fails

Bugs:
https://bugs.php.net/61404

Changed paths:
  M  ext/openssl/tests/021.phpt


Diff:
b90516745821a5340bc52f1b1825e9b8614ff9f6
diff --git a/ext/openssl/tests/021.phpt b/ext/openssl/tests/021.phpt
index 00e2158..391b6a5 100644
--- a/ext/openssl/tests/021.phpt
+++ b/ext/openssl/tests/021.phpt
@@ -8,6 +8,8 @@ $cert = file:// . dirname(__FILE__) . /cert.crt;
 $priv = file:// . dirname(__FILE__) . /private.key;
 $wrong = wrong;
 $pub = file:// . dirname(__FILE__) . /public.key;
+$config = __DIR__ . DIRECTORY_SEPARATOR . 'openssl.cnf';
+$config_arg = array('config' = $config);
 
 $dn = array(
countryName = BR,
@@ -21,14 +23,15 @@ $args = array(
digest_alg = sha1,
private_key_bits = 2048,
private_key_type = OPENSSL_KEYTYPE_DSA,
-   encrypt_key = true
+   encrypt_key = true,
+   config = $config
);
 
-$privkey = openssl_pkey_new();
+$privkey = openssl_pkey_new($config_arg);
 $csr = openssl_csr_new($dn, $privkey, $args);
 var_dump(openssl_csr_sign($csr, null, $privkey, 365, $args));
-var_dump(openssl_csr_sign($csr, null, $privkey, 365));
-var_dump(openssl_csr_sign($csr, $cert, $priv, 365));
+var_dump(openssl_csr_sign($csr, null, $privkey, 365, $config_arg));
+var_dump(openssl_csr_sign($csr, $cert, $priv, 365, $config_arg));
 var_dump(openssl_csr_sign($csr, $wrong, $privkey, 365));
 var_dump(openssl_csr_sign($csr, null, $wrong, 365));
 var_dump(openssl_csr_sign($csr, null, $privkey, $wrong));
@@ -38,7 +41,7 @@ var_dump(openssl_csr_sign(array(), null, $privkey, 365));
 var_dump(openssl_csr_sign($csr, array(), $privkey, 365));
 var_dump(openssl_csr_sign($csr, null, array(), 365));
 var_dump(openssl_csr_sign($csr, null, $privkey, array()));
-var_dump(openssl_csr_sign($csr, null, $privkey, 365, array()));
+var_dump(openssl_csr_sign($csr, null, $privkey, 365, $config_arg));
 ?
 --EXPECTF--
 resource(%d) of type (OpenSSL X.509)


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



[PHP-CVS] com php-src: Merge branch 'PHP-5.3' into PHP-5.4: ext/openssl/tests/004.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:fa0d507923b8dc07ff91576121543b18549dda3a
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 17:13:16 
+0200
Parents:   4c5b427124a2af3d951fed869cc86452e8b6290c 
bff8152565375c863f67833b73e2629c4d50cf63
Branches:  PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=fa0d507923b8dc07ff91576121543b18549dda3a

Log:
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Fix bug #61401 ext\openssl\tests\004.phpt fails
  Fix bug #61404 ext\openssl\tests\021.phpt fails
  Fix bug #61448 intl tests fail with icu = 4.8

Bugs:
https://bugs.php.net/61401
https://bugs.php.net/61404
https://bugs.php.net/61448

Changed paths:
  MM  ext/openssl/tests/004.phpt


Diff:
fa0d507923b8dc07ff91576121543b18549dda3a
diff --combined ext/openssl/tests/004.phpt
index c6c7e87,aca9818..508ccab
--- a/ext/openssl/tests/004.phpt
+++ b/ext/openssl/tests/004.phpt
@@@ -9,12 -9,12 +9,12 @@@ $a = 1
  var_dump(openssl_csr_new(1,$a));
  var_dump(openssl_csr_new(1,$a,1,1));
  $a = array();
- var_dump(openssl_csr_new(array(), $a, array(), array()));
+ var_dump(openssl_csr_new(array(), $a, array('config' = __DIR__ . 
DIRECTORY_SEPARATOR . 'openssl.cnf'), array()));
  
  //this leaks
  $a = array(1,2);
  $b = array(1,2);
- var_dump(openssl_csr_new($a, $b));
+ var_dump(openssl_csr_new($a, $b, array('config' = __DIR__ . 
DIRECTORY_SEPARATOR . 'openssl.cnf')));
  
  
  echo Done\n;
@@@ -28,7 -28,7 +28,7 @@@ NUL
  
  Warning: openssl_csr_new(): key array must be of the form array(0 = key, 1 
= phrase) in %s on line %d
  
 -Warning: openssl_csr_new(): add1_attr_by_txt challengePassword_min - 4 
(failed) in %s on line %d
 +Warning: openssl_csr_new(): add1_attr_by_txt challengePassword_min - 4 
(failed; check error queue and value of string_mask OpenSSL option if illegal 
characters are reported) in %s on line %d
  bool(false)
  resource(%d) of type (OpenSSL X.509 CSR)
  Done


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



[PHP-CVS] com php-src: Fix bug #61401 ext\openssl\tests\004.phpt fails: ext/openssl/tests/004.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:bff8152565375c863f67833b73e2629c4d50cf63
Author:Anatoliy Belsky a...@php.net Wed, 28 Mar 2012 17:11:58 
+0200
Parents:   bd7bb973b1f4791f000a890b1c1387fcd28c65ee
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=bff8152565375c863f67833b73e2629c4d50cf63

Log:
Fix bug #61401 ext\openssl\tests\004.phpt fails

Bugs:
https://bugs.php.net/61401

Changed paths:
  M  ext/openssl/tests/004.phpt


Diff:
bff8152565375c863f67833b73e2629c4d50cf63
diff --git a/ext/openssl/tests/004.phpt b/ext/openssl/tests/004.phpt
index b9c4159..aca9818 100644
--- a/ext/openssl/tests/004.phpt
+++ b/ext/openssl/tests/004.phpt
@@ -9,12 +9,12 @@ $a = 1;
 var_dump(openssl_csr_new(1,$a));
 var_dump(openssl_csr_new(1,$a,1,1));
 $a = array();
-var_dump(openssl_csr_new(array(), $a, array(), array()));
+var_dump(openssl_csr_new(array(), $a, array('config' = __DIR__ . 
DIRECTORY_SEPARATOR . 'openssl.cnf'), array()));
 
 //this leaks
 $a = array(1,2);
 $b = array(1,2);
-var_dump(openssl_csr_new($a, $b));
+var_dump(openssl_csr_new($a, $b, array('config' = __DIR__ . 
DIRECTORY_SEPARATOR . 'openssl.cnf')));
 
 
 echo Done\n;


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



[PHP-CVS] com php-src: Fix bug #61459 popen_close_basic-win32 can't run sort.exe: ext/standard/tests/file/popen_pclose_basic-win32.phpt

2012-03-28 Thread Anatoliy Belsky
Commit:eeab3be3037e2c537393f630b496017c9f888736
Author:Anatoliy Belsky point@php-dev-dell.(none) Wed, 28 Mar 2012 
19:25:29 +0200
Parents:   bff8152565375c863f67833b73e2629c4d50cf63
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=eeab3be3037e2c537393f630b496017c9f888736

Log:
Fix bug #61459 popen_close_basic-win32 can't run sort.exe

Bugs:
https://bugs.php.net/61459

Changed paths:
  M  ext/standard/tests/file/popen_pclose_basic-win32.phpt


Diff:
eeab3be3037e2c537393f630b496017c9f888736
diff --git a/ext/standard/tests/file/popen_pclose_basic-win32.phpt 
b/ext/standard/tests/file/popen_pclose_basic-win32.phpt
index 8c2ba42..b5c7256 100644
--- a/ext/standard/tests/file/popen_pclose_basic-win32.phpt
+++ b/ext/standard/tests/file/popen_pclose_basic-win32.phpt
@@ -28,7 +28,18 @@ pclose($file_handle);
 
 echo *** Testing popen(): writing to the pipe ***\n;
 $arr = array(ggg, ddd, aaa, sss);
-$file_handle = popen(sort, w);
+// popen(sort, w) fails if variables_order=GPCS
+// this is set in the default INI file
+// it doesn't seem to be changeable in the --INI-- section
+// also, doing: ini_set('variables_order', ''); doesn't work!
+//
+// the only solution is to either put the absolute path here, or
+// remove variables_order= from PHP.ini (setting it in run-test's
+// default INI will fail too)
+// 
+// since we can't depend on PHP.ini being set a certain way, 
+// have to put the absolute path here.
+$file_handle = popen(/windows/system32/sort, w);
 $newline = \n;
 foreach($arr as $str) {
   fwrite($file_handle, (binary)$str);


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



[PHP-CVS] com php-src: Refactoring junit logger. Added generation of nested testsuites in junit.xml.: run-tests.php

2012-03-28 Thread Gustavo Andreacute; dos Santos Lopes
Commit:1e88d0033ffdd11475445e22d844e2513a8a1fc8
Author:Shein Alexey con...@gmail.com Thu, 22 Mar 2012 02:59:02 
+0500
Committer: Gustavo André dos Santos Lopes cataphr...@php.net  Wed, 28 Mar 
2012 21:39:24 +0100
Parents:   eeab3be3037e2c537393f630b496017c9f888736
Branches:  PHP-5.3 PHP-5.4 master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=1e88d0033ffdd11475445e22d844e2513a8a1fc8

Log:
Refactoring junit logger. Added generation of nested testsuites in junit.xml.

Changed paths:
  M  run-tests.php

1e88d0033ffdd11475445e22d844e2513a8a1fc8
diff --git a/run-tests.php b/run-tests.php
index 3804870..cc193e5 100755
--- a/run-tests.php
+++ b/run-tests.php
@@ -200,25 +200,7 @@ if (getenv('TEST_PHP_DETAILED')) {
$DETAILED = 0;
 }
 
-// Check whether a junit log is wanted.
-$JUNIT = getenv('TEST_PHP_JUNIT');
-if (empty($JUNIT) || (!file_exists($JUNIT)  !is_writable(dirname($JUNIT))) 
|| (file_exists($JUNIT)  !is_writable($JUNIT)) || !($JUNIT = @fopen($JUNIT, 
'w'))) {
-   $JUNIT = FALSE;
-}
-else{
-   $JUNIT = array(
-   'fp'= $JUNIT,
-   'test_total'= 0,
-   'test_pass' = 0,
-   'test_fail' = 0,
-   'test_error'= 0,
-   'test_skip' = 0,
-   'started_at'= microtime(true),
-   'finished_at'   = NULL,
-   'execution_time'= NULL,
-   'result_xml'= '',
-   );
-}
+junit_init();
 
 if (getenv('SHOW_ONLY_GROUPS')) {
$SHOW_ONLY_GROUPS = explode(,, getenv('SHOW_ONLY_GROUPS'));
@@ -336,7 +318,7 @@ define('QA_REPORTS_PAGE', 'http://qa.php.net/reports');
 function save_or_mail_results()
 {
global $sum_results, $just_save_results, $failed_test_summary,
-  $PHP_FAILED_TESTS, $CUR_DIR, $php, $output_file, $compression;
+  $PHP_FAILED_TESTS, $CUR_DIR, $php, $output_file, 
$compression;
 
/* We got failed Tests, offer the user to send an e-mail to QA team, 
unless NO_INTERACTION is set */
if (!getenv('NO_INTERACTION')) {
@@ -831,10 +813,8 @@ HELP;
if ($output_file != ''  $just_save_results) {
save_or_mail_results();
}
-   
-   if ($JUNIT) {
-   save_junit_xml();
-   }
+
+   junit_save_xml();
 
if (getenv('REPORT_EXIT_STATUS') == 1 and 
preg_match('/FAILED(?: |$)/', implode(' ', $test_results))) {
exit(1);
@@ -970,9 +950,7 @@ if ($html_output) {
 
 save_or_mail_results();
 
-if ($JUNIT) {
-   save_junit_xml();
-}
+junit_save_xml();
 
 if (getenv('REPORT_EXIT_STATUS') == 1 and $sum_results['FAILED']) {
exit(1);
@@ -987,19 +965,19 @@ function mail_qa_team($data, $compression, $status = 
false)
 {
$url_bits = parse_url(QA_SUBMISSION_PAGE);
 
-if (($proxy = getenv('http_proxy'))) {
-$proxy = parse_url($proxy);
-$path = $url_bits['host'].$url_bits['path'];
-$host = $proxy['host'];
-if (empty($proxy['port'])) {
-$proxy['port'] = 80;
-}
-$port = $proxy['port'];
-} else {
-$path = $url_bits['path'];
-$host = $url_bits['host'];
-$port = empty($url_bits['port']) ? 80 : $port = $url_bits['port'];
-}
+   if (($proxy = getenv('http_proxy'))) {
+   $proxy = parse_url($proxy);
+   $path = $url_bits['host'].$url_bits['path'];
+   $host = $proxy['host'];
+   if (empty($proxy['port'])) {
+   $proxy['port'] = 80;
+   }
+   $port = $proxy['port'];
+   } else {
+   $path = $url_bits['path'];
+   $host = $url_bits['host'];
+   $port = empty($url_bits['port']) ? 80 : $port = 
$url_bits['port'];
+   }
 
$data = php_test_data= . urlencode(base64_encode(str_replace(\00, 
'[0x0]', $data)));
$data_length = strlen($data);
@@ -1329,14 +1307,8 @@ TEST $file
'diff'  = 
'',
'info'  = 
$bork_info [$file],
);
-   
-   if ($JUNIT) {
-   $JUNIT['test_total']++;
-   $JUNIT['test_error']++;
-   $JUNIT['result_xml'] .= 'testcase 
classname='.$shortname.' name='.htmlspecialchars($tested_file, 
ENT_QUOTES).' time=0'.\n;
-   $JUNIT['result_xml'] .= 'error type=BORKED 
message='.$bork_info.' /'.\n;
-   $JUNIT['result_xml'] .= '/testcase'.\n;
-   }
+
+   junit_mark_test_as('BORK', $shortname, $tested_file, 0, 
$bork_info);
return 'BORKED';
}
 
@@ -1362,13 +1334,8 @@ TEST $file
$php = realpath(dirname($php) . /php-cgi) . ' 
-C 

[PHP-CVS] com php-src: - fix bug #61541, Segfault when using ob_* in output_callback: main/output.c tests/output/ob_011.phpt

2012-03-28 Thread Yasuo Ohgaki
Commit:abd2b2ee4332e598f46efec0cac0a9f546bc4f2d
Author:reeze reeze@gmail.com Thu, 29 Mar 2012 00:18:02 +0800
Committer: Yasuo Ohgaki yohg...@ohgaki.net  Thu, 29 Mar 2012 06:23:05 
+0900
Parents:   5ddfdb8fd4f52d49a9483792ccc37d7879b14e72
Branches:  PHP-5.3

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=abd2b2ee4332e598f46efec0cac0a9f546bc4f2d

Log:
- fix bug #61541, Segfault when using ob_* in output_callback

Bugs:
https://bugs.php.net/61541

Changed paths:
  M  main/output.c
  M  tests/output/ob_011.phpt


Diff:
abd2b2ee4332e598f46efec0cac0a9f546bc4f2d
diff --git a/main/output.c b/main/output.c
index fb589a2..5a7ed7b 100644
--- a/main/output.c
+++ b/main/output.c
@@ -225,6 +225,17 @@ PHPAPI void php_end_ob_buffer(zend_bool send_buffer, 
zend_bool just_flush TSRMLS
zval *orig_buffer;
zval *z_status;
 
+   if(OG(ob_lock)) {
+   if (SG(headers_sent)  !SG(request_info).headers_only) 
{
+   OG(php_body_write) = 
php_ub_body_write_no_header;
+   } else {
+   OG(php_body_write) = php_ub_body_write;
+   }
+   OG(ob_nesting_level) = 0;
+   php_error_docref(ref.outcontrol TSRMLS_CC, E_ERROR, 
Cannot use output buffering in output buffering display handlers);
+   return;
+   }
+
ALLOC_INIT_ZVAL(orig_buffer);
ZVAL_STRINGL(orig_buffer, OG(active_ob_buffer).buffer, 
OG(active_ob_buffer).text_length, 1);
 
diff --git a/tests/output/ob_011.phpt b/tests/output/ob_011.phpt
index a90fd56..35b0388 100644
--- a/tests/output/ob_011.phpt
+++ b/tests/output/ob_011.phpt
@@ -1,7 +1,5 @@
 --TEST--
 output buffering - fatalism
---XFAIL--
-This test will fail until the fix in revision r214155 is backported from php 6
 --FILE--
 ?php
 function obh($s)


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



[PHP-CVS] com php-src: - fix bug #61541, Segfault when using ob_* in output_callback: main/output.c tests/output/ob_011.phpt

2012-03-28 Thread Yasuo Ohgaki
Commit:9bc91a21db733b5e12ab6a4356b2470b72d784d5
Author:reeze reeze@gmail.com Thu, 29 Mar 2012 00:18:02 +0800
Parents:   4fa0c2a96331d9d43c08575fd6ea9957cf0671b6
Branches:  PHP-5.3

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=9bc91a21db733b5e12ab6a4356b2470b72d784d5

Log:
- fix bug #61541, Segfault when using ob_* in output_callback

Bugs:
https://bugs.php.net/61541

Changed paths:
  M  main/output.c
  M  tests/output/ob_011.phpt


Diff:
9bc91a21db733b5e12ab6a4356b2470b72d784d5
diff --git a/main/output.c b/main/output.c
index fb589a2..5a7ed7b 100644
--- a/main/output.c
+++ b/main/output.c
@@ -225,6 +225,17 @@ PHPAPI void php_end_ob_buffer(zend_bool send_buffer, 
zend_bool just_flush TSRMLS
zval *orig_buffer;
zval *z_status;
 
+   if(OG(ob_lock)) {
+   if (SG(headers_sent)  !SG(request_info).headers_only) 
{
+   OG(php_body_write) = 
php_ub_body_write_no_header;
+   } else {
+   OG(php_body_write) = php_ub_body_write;
+   }
+   OG(ob_nesting_level) = 0;
+   php_error_docref(ref.outcontrol TSRMLS_CC, E_ERROR, 
Cannot use output buffering in output buffering display handlers);
+   return;
+   }
+
ALLOC_INIT_ZVAL(orig_buffer);
ZVAL_STRINGL(orig_buffer, OG(active_ob_buffer).buffer, 
OG(active_ob_buffer).text_length, 1);
 
diff --git a/tests/output/ob_011.phpt b/tests/output/ob_011.phpt
index a90fd56..35b0388 100644
--- a/tests/output/ob_011.phpt
+++ b/tests/output/ob_011.phpt
@@ -1,7 +1,5 @@
 --TEST--
 output buffering - fatalism
---XFAIL--
-This test will fail until the fix in revision r214155 is backported from php 6
 --FILE--
 ?php
 function obh($s)


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



[PHP-CVS] com php-src: ext/pcntl/pcntl.c: Fix typo in comment: ext/pcntl/pcntl.c

2012-03-28 Thread Yasuo Ohgaki
Commit:51e9365bb9aaaf918fa840e9e740fae7f7a51306
Author:Jille Timmermans ji...@quis.cx Wed, 28 Mar 2012 16:18:23 
+0200
Parents:   a715a21594346aef34d3d7aad35ea147fe134d1c
Branches:  master

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=51e9365bb9aaaf918fa840e9e740fae7f7a51306

Log:
ext/pcntl/pcntl.c: Fix typo in comment

Signed-off-by: Jille Timmermans ji...@quis.cx

Changed paths:
  M  ext/pcntl/pcntl.c


Diff:
51e9365bb9aaaf918fa840e9e740fae7f7a51306
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
index 141ff58..ecb51c1 100755
--- a/ext/pcntl/pcntl.c
+++ b/ext/pcntl/pcntl.c
@@ -760,7 +760,7 @@ PHP_FUNCTION(pcntl_exec)
}

if (ZEND_NUM_ARGS()  1) {
-   /* Build argumnent list */
+   /* Build argument list */
args_hash = HASH_OF(args);
argc = zend_hash_num_elements(args_hash);


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



[PHP-CVS] com php-src: ext/pcntl/pcntl.c: Fix typo in comment: ext/pcntl/pcntl.c

2012-03-28 Thread Yasuo Ohgaki
Commit:55b1e612421c52ea0bb8a3772095c5bbd62045db
Author:Jille Timmermans ji...@quis.cx Wed, 28 Mar 2012 16:18:23 
+0200
Committer: Yasuo Ohgaki yohg...@ohgaki.net  Thu, 29 Mar 2012 09:07:07 
+0900
Parents:   f38ee783442acb0f64a8eb3cafa06b42e5e7f273
Branches:  PHP-5.3

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=55b1e612421c52ea0bb8a3772095c5bbd62045db

Log:
ext/pcntl/pcntl.c: Fix typo in comment

Signed-off-by: Jille Timmermans ji...@quis.cx

Changed paths:
  M  ext/pcntl/pcntl.c


Diff:
55b1e612421c52ea0bb8a3772095c5bbd62045db
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
index 5151d1f..b840066 100755
--- a/ext/pcntl/pcntl.c
+++ b/ext/pcntl/pcntl.c
@@ -760,7 +760,7 @@ PHP_FUNCTION(pcntl_exec)
}

if (ZEND_NUM_ARGS()  1) {
-   /* Build argumnent list */
+   /* Build argument list */
args_hash = HASH_OF(args);
argc = zend_hash_num_elements(args_hash);


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



[PHP-CVS] com php-src: ext/pcntl/pcntl.c: Fix typo in comment: ext/pcntl/pcntl.c

2012-03-28 Thread Yasuo Ohgaki
Commit:4aeabaf8e938af00d6fe9f8316251b543640018c
Author:Jille Timmermans ji...@quis.cx Wed, 28 Mar 2012 16:18:23 
+0200
Committer: Yasuo Ohgaki yohg...@ohgaki.net  Thu, 29 Mar 2012 09:07:19 
+0900
Parents:   08089ebe16b0dffacb15b1669bc6c3a8432dcb1c
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=4aeabaf8e938af00d6fe9f8316251b543640018c

Log:
ext/pcntl/pcntl.c: Fix typo in comment

Signed-off-by: Jille Timmermans ji...@quis.cx

Changed paths:
  M  ext/pcntl/pcntl.c


Diff:
4aeabaf8e938af00d6fe9f8316251b543640018c
diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
index 725d55b..e5910a5 100755
--- a/ext/pcntl/pcntl.c
+++ b/ext/pcntl/pcntl.c
@@ -760,7 +760,7 @@ PHP_FUNCTION(pcntl_exec)
}

if (ZEND_NUM_ARGS()  1) {
-   /* Build argumnent list */
+   /* Build argument list */
args_hash = HASH_OF(args);
argc = zend_hash_num_elements(args_hash);


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



Re: [PHP-CVS] com php-src: ext/pcntl/pcntl.c: Fix typo in comment: ext/pcntl/pcntl.c

2012-03-28 Thread Yasuo Ohgaki
Hi,

I was following the instruction of the pull request page

https://qa.php.net/pulls/#repo=php-src

The instruction on the page only considered working on
master, but php-src has several active branches.

I merged this simple patch to master,
then cherry-picked the commit to 5.4. and 5.3.

git push

didn't push all branches, but the current one.
So I did

git push origin 5.4:PHP-5.4
git push origin 5.3:PHP-5.3

Is this the way should do or am I doing wrong?

The Git workflow in the wiki states, we should merge
upward rather than downward. Should I consider this
workflow is strict?

Just curious.

Thanks.

--
Yasuo Ohgaki
yohg...@ohgaki.net

2012/3/28 Yasuo Ohgaki yohg...@php.net:
 Commit:    4aeabaf8e938af00d6fe9f8316251b543640018c
 Author:    Jille Timmermans ji...@quis.cx         Wed, 28 Mar 2012 16:18:23 
 +0200
 Committer: Yasuo Ohgaki yohg...@ohgaki.net      Thu, 29 Mar 2012 09:07:19 
 +0900
 Parents:   08089ebe16b0dffacb15b1669bc6c3a8432dcb1c
 Branches:  PHP-5.4

 Link:       
 http://git.php.net/?p=php-src.git;a=commitdiff;h=4aeabaf8e938af00d6fe9f8316251b543640018c

 Log:
 ext/pcntl/pcntl.c: Fix typo in comment

 Signed-off-by: Jille Timmermans ji...@quis.cx

 Changed paths:
  M  ext/pcntl/pcntl.c


 Diff:
 4aeabaf8e938af00d6fe9f8316251b543640018c
 diff --git a/ext/pcntl/pcntl.c b/ext/pcntl/pcntl.c
 index 725d55b..e5910a5 100755
 --- a/ext/pcntl/pcntl.c
 +++ b/ext/pcntl/pcntl.c
 @@ -760,7 +760,7 @@ PHP_FUNCTION(pcntl_exec)
        }

        if (ZEND_NUM_ARGS()  1) {
 -               /* Build argumnent list */
 +               /* Build argument list */
                args_hash = HASH_OF(args);
                argc = zend_hash_num_elements(args_hash);


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


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



Re: [PHP-CVS] com php-src: - fix bug #61541, Segfault when using ob_* in output_callback: main/output.c tests/output/ob_011.phpt

2012-03-28 Thread Laruence
Hi  yohgaki:

1. plz also update NEWS.
 2. is there any plan of PHP 6,  I think you should remove the
PHP 6 words in the phpt.

thanks

On Wed, Mar 28, 2012 at 9:18 AM, Yasuo Ohgaki yohg...@php.net wrote:
 Commit:    9bc91a21db733b5e12ab6a4356b2470b72d784d5
 Author:    reeze reeze@gmail.com         Thu, 29 Mar 2012 00:18:02 +0800
 Parents:   4fa0c2a96331d9d43c08575fd6ea9957cf0671b6
 Branches:  PHP-5.3

 Link:       
 http://git.php.net/?p=php-src.git;a=commitdiff;h=9bc91a21db733b5e12ab6a4356b2470b72d784d5

 Log:
 - fix bug #61541, Segfault when using ob_* in output_callback

 Bugs:
 https://bugs.php.net/61541

 Changed paths:
  M  main/output.c
  M  tests/output/ob_011.phpt


 Diff:
 9bc91a21db733b5e12ab6a4356b2470b72d784d5
 diff --git a/main/output.c b/main/output.c
 index fb589a2..5a7ed7b 100644
 --- a/main/output.c
 +++ b/main/output.c
 @@ -225,6 +225,17 @@ PHPAPI void php_end_ob_buffer(zend_bool send_buffer, 
 zend_bool just_flush TSRMLS
                zval *orig_buffer;
                zval *z_status;

 +               if(OG(ob_lock)) {
 +                       if (SG(headers_sent)  
 !SG(request_info).headers_only) {
 +                               OG(php_body_write) = 
 php_ub_body_write_no_header;
 +                       } else {
 +                               OG(php_body_write) = php_ub_body_write;
 +                       }
 +                       OG(ob_nesting_level) = 0;
 +                       php_error_docref(ref.outcontrol TSRMLS_CC, E_ERROR, 
 Cannot use output buffering in output buffering display handlers);
 +                       return;
 +               }
 +
                ALLOC_INIT_ZVAL(orig_buffer);
                ZVAL_STRINGL(orig_buffer, OG(active_ob_buffer).buffer, 
 OG(active_ob_buffer).text_length, 1);

 diff --git a/tests/output/ob_011.phpt b/tests/output/ob_011.phpt
 index a90fd56..35b0388 100644
 --- a/tests/output/ob_011.phpt
 +++ b/tests/output/ob_011.phpt
 @@ -1,7 +1,5 @@
  --TEST--
  output buffering - fatalism
 ---XFAIL--
 -This test will fail until the fix in revision r214155 is backported from php 
 6
  --FILE--
  ?php
  function obh($s)


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




-- 
Laruence  Xinchen Hui
http://www.laruence.com/

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



[PHP-CVS] com php-src: update NEWS: NEWS

2012-03-28 Thread Stanislav Malyshev
Commit:6f6cc844e90c93dabcb6819b9956a00b66e491b4
Author:Stanislav Malyshev s...@php.net Sun, 25 Mar 2012 12:53:44 
-0700
Parents:   2a74cb40080c9e16f7ae952fc46f64b219aaf77e
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=6f6cc844e90c93dabcb6819b9956a00b66e491b4

Log:
update NEWS

Changed paths:
  M  NEWS


Diff:
6f6cc844e90c93dabcb6819b9956a00b66e491b4
diff --git a/NEWS b/NEWS
index 715ce27..b437467 100644
--- a/NEWS
+++ b/NEWS
@@ -45,13 +45,13 @@ PHP 
   NEWS
 - Installation
   . Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
 
-- mbstring:
-  . MFH mb_ereg_replace_callback() for security enhancements. (Rui)
-
 - Libxml:
-  . Fixed bug #61367 (open_basedir bypass using libxml RSHUTDOWN). 
+  . Fixed bug #61367 (open_basedir bypass using libxml RSHUTDOWN).
 (Tim Starling)
 
+- mbstring:
+  . MFH mb_ereg_replace_callback() for security enhancements. (Rui)
+
 - mysqli
   . Fixed bug #61003 (mysql_stat() require a valid connection). (Johannes).


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



[PHP-CVS] com php-src: fix bug #61367 - open_basedir bypass using libxml RSHUTDOWN: NEWS ext/libxml/libxml.c ext/libxml/tests/bug61367-read.phpt ext/libxml/tests/bug61367-write.phpt

2012-03-28 Thread Stanislav Malyshev
Commit:167e2fd78224887144496cdec2089cd5b2f3312d
Author:Stanislav Malyshev s...@php.net Sun, 25 Mar 2012 12:50:25 
-0700
Parents:   900778731c49611e1318e4d1839768eb46f26813
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=167e2fd78224887144496cdec2089cd5b2f3312d

Log:
fix bug #61367 - open_basedir bypass using libxml RSHUTDOWN

Bugs:
https://bugs.php.net/61367

Changed paths:
  M  NEWS
  M  ext/libxml/libxml.c
  A  ext/libxml/tests/bug61367-read.phpt
  A  ext/libxml/tests/bug61367-write.phpt


Diff:
167e2fd78224887144496cdec2089cd5b2f3312d
diff --git a/NEWS b/NEWS
index 1658cdb..366315d 100644
--- a/NEWS
+++ b/NEWS
@@ -42,6 +42,10 @@ PHP  
  NEWS
 - Firebird Database extension (ibase):
   . Fixed bug #60802 (ibase_trans() gives segfault when passing params).
 
+- Libxml:
+  . Fixed bug #61367 (open_basedir bypass using libxml RSHUTDOWN). 
+(Tim Starling)
+
 - mysqli
   . Fixed bug #61003 (mysql_stat() require a valid connection). (Johannes).
 
diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c
index cf20598..515d58e 100644
--- a/ext/libxml/libxml.c
+++ b/ext/libxml/libxml.c
@@ -82,8 +82,8 @@ ZEND_GET_MODULE(libxml)
 static PHP_MINIT_FUNCTION(libxml);
 static PHP_RINIT_FUNCTION(libxml);
 static PHP_MSHUTDOWN_FUNCTION(libxml);
-static PHP_RSHUTDOWN_FUNCTION(libxml);
 static PHP_MINFO_FUNCTION(libxml);
+static int php_libxml_post_deactivate();
 
 /* }}} */
 
@@ -129,13 +129,13 @@ zend_module_entry libxml_module_entry = {
PHP_MINIT(libxml),   /* extension-wide startup function */
PHP_MSHUTDOWN(libxml),   /* extension-wide shutdown function */
PHP_RINIT(libxml),   /* per-request startup function */
-   PHP_RSHUTDOWN(libxml),   /* per-request shutdown function */
+   NULL,/* per-request shutdown function */
PHP_MINFO(libxml),   /* information function */
NO_VERSION_YET,
PHP_MODULE_GLOBALS(libxml), /* globals descriptor */
PHP_GINIT(libxml),  /* globals ctor */
NULL,   /* globals dtor */
-   NULL,   /* post deactivate */
+   php_libxml_post_deactivate, /* post deactivate */
STANDARD_MODULE_PROPERTIES_EX
 };
 
@@ -655,9 +655,9 @@ static PHP_MSHUTDOWN_FUNCTION(libxml)
return SUCCESS;
 }
 
-
-static PHP_RSHUTDOWN_FUNCTION(libxml)
+static int php_libxml_post_deactivate()
 {
+   TSRMLS_FETCH();
/* reset libxml generic error handling */
xmlSetGenericErrorFunc(NULL, NULL);
xmlSetStructuredErrorFunc(NULL, NULL);
diff --git a/ext/libxml/tests/bug61367-read.phpt 
b/ext/libxml/tests/bug61367-read.phpt
new file mode 100644
index 000..722b8e7
--- /dev/null
+++ b/ext/libxml/tests/bug61367-read.phpt
@@ -0,0 +1,58 @@
+--TEST--
+Bug #61367: open_basedir bypass in libxml RSHUTDOWN: read test
+--SKIPIF--
+?php if(!extension_loaded('dom')) echo 'skip'; ?
+--INI--
+open_basedir=.
+; Suppress spurious Trying to get property of non-object notices
+error_reporting=E_ALL  ~E_NOTICE
+--FILE--
+?php
+
+class StreamExploiter {
+   public function stream_close (  ) {
+   $doc = new DOMDocument;
+   $doc-resolveExternals = true;
+   $doc-substituteEntities = true;
+   $dir = htmlspecialchars(dirname(getcwd()));
+   $doc-loadXML( XML
+!DOCTYPE doc [
+   !ENTITY file SYSTEM file:///$dir/bad
+]
+docfile;/doc
+XML
+   );
+   print $doc-documentElement-firstChild-nodeValue;
+   }
+
+   public function stream_open (  $path ,  $mode ,  $options ,  
$opened_path ) {
+   return true;
+   }
+}
+
+var_dump(mkdir('test_bug_61367'));
+var_dump(mkdir('test_bug_61367/base'));
+var_dump(file_put_contents('test_bug_61367/bad', 'blah'));
+var_dump(chdir('test_bug_61367/base'));
+
+stream_wrapper_register( 'exploit', 'StreamExploiter' );
+$s = fopen( 'exploit://', 'r' );
+
+?
+--CLEAN--
+?php
+unlink('test_bug_61367/bad');
+rmdir('test_bug_61367/base');
+rmdir('test_bug_61367');
+?
+--EXPECTF--
+bool(true)
+bool(true)
+int(4)
+bool(true)
+
+Warning: DOMDocument::loadXML(): I/O warning : failed to load external entity 
file:///%s/test_bug_61367/bad in %s on line %d
+
+Warning: DOMDocument::loadXML(): Failure to process entity file in Entity, 
line: 4 in %s on line %d
+
+Warning: DOMDocument::loadXML(): Entity 'file' not defined in Entity, line: 4 
in %s on line %d
diff --git a/ext/libxml/tests/bug61367-write.phpt 
b/ext/libxml/tests/bug61367-write.phpt
new file mode 100644
index 000..aeed688
--- /dev/null
+++ b/ext/libxml/tests/bug61367-write.phpt
@@ -0,0 +1,48 @@
+--TEST--
+Bug #61367: open_basedir bypass in libxml RSHUTDOWN: write test
+--SKIPIF--
+?php if(!extension_loaded('dom')) echo 'skip'; ?
+--INI--
+open_basedir=.
+; Suppress spurious Trying to get property of non-object notices
+error_reporting=E_ALL  

[PHP-CVS] com php-src: Merge branch 'PHP-5.3' into PHP-5.4: NEWS ext/standard/link.c

2012-03-28 Thread Stanislav Malyshev
Commit:b08b7fe78785230dd37e7969e38f1913727fbc88
Author:Rasmus Lerdorf ras...@php.net Sun, 25 Mar 2012 05:45:55 
+0530
Parents:   cff89ceda0f237f7d5368056ed59c657065fe094 
900778731c49611e1318e4d1839768eb46f26813
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=b08b7fe78785230dd37e7969e38f1913727fbc88

Log:
Merge branch 'PHP-5.3' into PHP-5.4

Changed paths:
  MM  NEWS
  MM  ext/standard/link.c

b08b7fe78785230dd37e7969e38f1913727fbc88
diff --combined NEWS
index ceb1ad0,1658cdb..f3e3f9c
--- a/NEWS
+++ b/NEWS
@@@ -1,42 -1,33 +1,42 @@@
  PHP
NEWS
  
|||
 -?? ??? 2012, PHP 5.3.11
 +?? ??? 2012, PHP 5.4.1 RC1
 +
 +- CLI Server:
 +  . Implemented FR #60850 (Built in web server does not set 
 +$_SERVER['SCRIPT_FILENAME'] when using router). (Laruence)
 +  . Connection: close instead of Connection: closed (Gustavo)
  
  - Core:
 -  . Fixed bug #61273 (call_user_func_array with more than 16333 arguments
 +  . Fixed bug #61374 (html_entity_decode tries to decode code points that 
don't
 +exist in ISO-8859-1). (Gustavo)
 +  . Fixed bug #61273 (call_user_func_array with more than 16333 arguments 
  leaks / crashes). (Laruence)
 +  . Fixed bug #61225 (Incorrect lexing of 0b00*+NUM). (Pierrick)
. Fixed bug #61165 (Segfault - strip_tags()). (Laruence)
 -  . Improved max_input_vars directive to check nested variables (Dmitry).
 -  . Fixed bug #61095 (Incorect lexing of 0x00*+NUM). (Etienne)
 +  . Fixed bug #61106 (Segfault when using header_register_callback). (Nikita
 +Popov)
. Fixed bug #61087 (Memory leak in parse_ini_file when specifying
  invalid scanner mode). (Nikic, Laruence)
. Fixed bug #61072 (Memory leak when restoring an exception handler).
  (Nikic, Laruence)
. Fixed bug #61058 (array_fill leaks if start index is PHP_INT_MAX).
 -  (Laruence)
 -  . Fixed bug #61000 (Exceeding max nesting level doesn't delete numerical
 -  vars). (Laruence)
 -  . Fix bug #60895 (Possible invalid handler usage in windows random
 -functions). (Pierre)
 -  . Fixed bug #60825 (Segfault when running symfony 2 tests).
 -(Dmitry, Laruence)
 +(Laruence)
 +  . Fixed bug #61052 (Missing error check in trait 'insteadof' clause). 
(Stefan)
 +  . Fixed bug #61011 (Crash when an exception is thrown by __autoload
 +accessing a static property). (Laruence)
 +  . Fixed bug #61000 (Exceeding max nesting level doesn't delete numerical 
 +vars). (Laruence)
 +  . Fixed bug #60978 (exit code incorrect). (Laruence)
 +  . Fixed bug #60911 (Confusing error message when extending traits). (Stefan)
. Fixed bug #60801 (strpbrk() mishandles NUL byte). (Adam)
 +  . Fixed bug #60717 (Order of traits in use statement can cause a fatal
 +error). (Stefan)
 +  . Fixed bug #60573 (type hinting with self keyword causes weird errors).
 +(Laruence)
. Fixed bug #60569 (Nullbyte truncates Exception $message). (Ilia)
 -  . Fixed bug #60227 (header() cannot detect the multi-line header with CR).
 -(rui, Gustavo)
 -  . Fixed bug #60222 (time_nanosleep() does validate input params). (Ilia)
. Fixed bug #52719 (array_walk_recursive crashes if third param of the
  function is by reference). (Nikita Popov)
 -  . Fixed bug #51860 (Include fails with toplevel symlink to /). (Dmitry)
  
  - Ibase
. Fixed bug #60947 (Segmentation fault while executing ibase_db_info).
@@@ -45,506 -36,99 +45,510 @@@
  - Installation
. Fixed bug #61172 (Add Apache 2.4 support). (Chris Jones)
  
 -- Fileinfo
 -  . Fixed bug #61173 (Unable to detect error from finfo constructor). 
(Gustavo)
 -
 -- Firebird Database extension (ibase):
 -  . Fixed bug #60802 (ibase_trans() gives segfault when passing params).
 +- mbstring:
 +  . MFH mb_ereg_replace_callback() for security enhancements. (Rui)
  
  - mysqli
. Fixed bug #61003 (mysql_stat() require a valid connection). (Johannes).
  
 +- mysqlnd
 +  . Fixed bug #60948 (mysqlnd FTBFS when -Wformat-security is enabled).
 +(Johannes)
 +
 +- Readline:
 +  . Fixed bug #61088 (Memory leak in readline_callback_handler_install).
 +(Nikic, Laruence)
 +  . Add open_basedir checks to readline_write_history and 
readline_read_history.
 +(Rasmus, reported by Mateusz Goik)
 + 
 +- Session
 +  . Fixed bug #60634 (Segmentation fault when trying to die() in 
 +SessionHandler::write()). (Ilia)
 +
 +- SOAP
 +  . Fixed bug #60887 (SoapClient ignores user_agent option and sends no
 +User-Agent header). (carloschilazo at gmail dot com)
 +  . Fixed bug #60842, #51775 (Chunked response parsing error when 
 +chunksize length line is  10 bytes). (Ilia)
 +
 +- PDO
 +  . Fixed bug #61292 (Segfault while calling a method on an overloaded PDO 
 +object). (Laruence)
 +
  - PDO_mysql
. Fixed bug #61207 (PDO::nextRowset() after a multi-statement query 

[PHP-CVS] com php-src: open_basedir check for linkinfo: ext/standard/link.c

2012-03-28 Thread Stanislav Malyshev
Commit:900778731c49611e1318e4d1839768eb46f26813
Author:Rasmus Lerdorf ras...@php.net Sun, 25 Mar 2012 05:32:21 
+0530
Parents:   24a57ae9a5e3e3bc5472a901e0eaff4d70eb281a
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=900778731c49611e1318e4d1839768eb46f26813

Log:
open_basedir check for linkinfo

Changed paths:
  M  ext/standard/link.c


Diff:
900778731c49611e1318e4d1839768eb46f26813
diff --git a/ext/standard/link.c b/ext/standard/link.c
index 9fa2524..cb42408 100644
--- a/ext/standard/link.c
+++ b/ext/standard/link.c
@@ -94,7 +94,8 @@ PHP_FUNCTION(readlink)
 PHP_FUNCTION(linkinfo)
 {
char *link;
-   int link_len;
+   char *dirname;
+   int link_len, dir_len;
struct stat sb;
int ret;
 
@@ -102,12 +103,22 @@ PHP_FUNCTION(linkinfo)
return;
}
 
+   dirname = estrndup(link, link_len);
+   dir_len = php_dirname(dirname, link_len);
+
+   if (php_check_open_basedir(dirname TSRMLS_CC)) {
+   efree(dirname);
+   RETURN_FALSE;
+   }
+
ret = VCWD_LSTAT(link, sb);
if (ret == -1) {
php_error_docref(NULL TSRMLS_CC, E_WARNING, %s, 
strerror(errno));
+   efree(dirname);
RETURN_LONG(-1L);
}
 
+   efree(dirname);
RETURN_LONG((long) sb.st_dev);
 }
 /* }}} */


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



[PHP-CVS] com php-src: NEWS entry for readline fix: NEWS

2012-03-28 Thread Stanislav Malyshev
Commit:cff89ceda0f237f7d5368056ed59c657065fe094
Author:Rasmus Lerdorf ras...@php.net Wed, 21 Mar 2012 09:16:15 
-0700
Parents:   2208fb32564cf13578c4bb77c6792d5e6b767e76
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=cff89ceda0f237f7d5368056ed59c657065fe094

Log:
NEWS entry for readline fix

Changed paths:
  M  NEWS


Diff:
cff89ceda0f237f7d5368056ed59c657065fe094
diff --git a/NEWS b/NEWS
index 1b9b4cf..ceb1ad0 100644
--- a/NEWS
+++ b/NEWS
@@ -58,7 +58,9 @@ PHP   
 NEWS
 - Readline:
   . Fixed bug #61088 (Memory leak in readline_callback_handler_install).
 (Nikic, Laruence)
-
+  . Add open_basedir checks to readline_write_history and 
readline_read_history.
+(Rasmus, reported by Mateusz Goik)
+ 
 - Session
   . Fixed bug #60634 (Segmentation fault when trying to die() in 
 SessionHandler::write()). (Ilia)


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



[PHP-CVS] com php-src: NEWS entry for readline fix: NEWS

2012-03-28 Thread Stanislav Malyshev
Commit:24a57ae9a5e3e3bc5472a901e0eaff4d70eb281a
Author:Rasmus Lerdorf ras...@php.net Wed, 21 Mar 2012 09:15:35 
-0700
Parents:   8b01a28bad638c3ef5809cdee2127409971f18ff
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=24a57ae9a5e3e3bc5472a901e0eaff4d70eb281a

Log:
NEWS entry for readline fix

Changed paths:
  M  NEWS


Diff:
24a57ae9a5e3e3bc5472a901e0eaff4d70eb281a
diff --git a/NEWS b/NEWS
index 7563155..1658cdb 100644
--- a/NEWS
+++ b/NEWS
@@ -71,6 +71,8 @@ PHP   
 NEWS
 - Readline:
   . Fixed bug #61088 (Memory leak in readline_callback_handler_install).
 (Nikic, Laruence)
+  . Add open_basedir checks to readline_write_history and 
readline_read_history.
+(Rasmus, reported by Mateusz Goik)
 
 - Reflection:
   . Fixed bug #61388 (ReflectionObject:getProperties() issues invalid reads


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



[PHP-CVS] com php-src: Merge branch 'PHP-5.3' into PHP-5.4: ext/readline/readline.c

2012-03-28 Thread Stanislav Malyshev
Commit:2208fb32564cf13578c4bb77c6792d5e6b767e76
Author:Rasmus Lerdorf ras...@php.net Wed, 21 Mar 2012 09:13:42 
-0700
Parents:   53e3467ff233af4a40626f86ea8a61880722beb8 
8b01a28bad638c3ef5809cdee2127409971f18ff
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=2208fb32564cf13578c4bb77c6792d5e6b767e76

Log:
Merge branch 'PHP-5.3' into PHP-5.4

* PHP-5.3:
  Add open_basedir checks to readline_write_history and readline_read_history

Changed paths:
  MM  ext/readline/readline.c


Diff:
2208fb32564cf13578c4bb77c6792d5e6b767e76
diff --combined ext/readline/readline.c
index c9389fc,820e4b4..1054b0e
--- a/ext/readline/readline.c
+++ b/ext/readline/readline.c
@@@ -26,7 -26,6 +26,7 @@@
  
  #include php.h
  #include php_readline.h
 +#include readline_cli.h
  
  #if HAVE_LIBREADLINE || HAVE_LIBEDIT
  
@@@ -67,9 -66,7 +67,9 @@@ static zval *_readline_completion = NUL
  static zval _readline_array;
  
  PHP_MINIT_FUNCTION(readline);
 +PHP_MSHUTDOWN_FUNCTION(readline);
  PHP_RSHUTDOWN_FUNCTION(readline);
 +PHP_MINFO_FUNCTION(readline);
  
  /* }}} */
  
@@@ -144,8 -141,6 +144,8 @@@ static const zend_function_entry php_re
PHP_FE(readline_callback_read_char, 
arginfo_readline_callback_read_char)
PHP_FE(readline_callback_handler_remove,
arginfo_readline_callback_handler_remove)
PHP_FE(readline_redisplay, arginfo_readline_redisplay)
 +#endif
 +#if HAVE_RL_ON_NEW_LINE
PHP_FE(readline_on_new_line, arginfo_readline_on_new_line)
  #endif
PHP_FE_END
@@@ -156,11 -151,11 +156,11 @@@ zend_module_entry readline_module_entr
readline, 
php_readline_functions, 
PHP_MINIT(readline), 
 -  NULL,
 +  PHP_MSHUTDOWN(readline),
NULL,
PHP_RSHUTDOWN(readline),
 -  NULL, 
 -  NO_VERSION_YET,
 +  PHP_MINFO(readline), 
 +  PHP_VERSION,
STANDARD_MODULE_PROPERTIES
  };
  
@@@ -171,12 -166,7 +171,12 @@@ ZEND_GET_MODULE(readline
  PHP_MINIT_FUNCTION(readline)
  {
using_history();
 -  return SUCCESS;
 +  return PHP_MINIT(cli_readline)(INIT_FUNC_ARGS_PASSTHRU);
 +}
 +
 +PHP_MSHUTDOWN_FUNCTION(readline)
 +{
 +  return PHP_MSHUTDOWN(cli_readline)(SHUTDOWN_FUNC_ARGS_PASSTHRU);
  }
  
  PHP_RSHUTDOWN_FUNCTION(readline)
@@@ -196,11 -186,6 +196,11 @@@
return SUCCESS;
  }
  
 +PHP_MINFO_FUNCTION(readline)
 +{
 +  return PHP_MINFO(cli_readline)(ZEND_MODULE_INFO_FUNC_ARGS_PASSTHRU);
 +}
 +
  /* }}} */
  
  /* {{{ proto string readline([string prompt]) 
@@@ -380,10 -365,14 +380,14 @@@ PHP_FUNCTION(readline_read_history
char *arg = NULL;
int arg_len;
  
 -  if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |s, arg, 
arg_len) == FAILURE) {
 +  if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |p, arg, 
arg_len) == FAILURE) {
return;
}
  
+   if (php_check_open_basedir(arg TSRMLS_CC)) {
+   RETURN_FALSE;
+   }
+ 
/* XXX from  to NYI */
if (read_history(arg)) {
RETURN_FALSE;
@@@ -400,10 -389,14 +404,14 @@@ PHP_FUNCTION(readline_write_history
char *arg = NULL;
int arg_len;
  
 -  if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |s, arg, 
arg_len) == FAILURE) {
 +  if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, |p, arg, 
arg_len) == FAILURE) {
return;
}
  
+   if (php_check_open_basedir(arg TSRMLS_CC)) {
+   RETURN_FALSE;
+   }
+ 
if (write_history(arg)) {
RETURN_FALSE;
} else {
@@@ -618,9 -611,6 +626,9 @@@ PHP_FUNCTION(readline_redisplay
  }
  /* }}} */
  
 +#endif
 +
 +#if HAVE_RL_ON_NEW_LINE
  /* {{{ proto void readline_on_new_line(void)
 Inform readline that the cursor has moved to a new line */
  PHP_FUNCTION(readline_on_new_line)


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



[PHP-CVS] com php-src: Add open_basedir checks to readline_write_history and readline_read_history: ext/readline/readline.c

2012-03-28 Thread Stanislav Malyshev
Commit:8b01a28bad638c3ef5809cdee2127409971f18ff
Author:Rasmus Lerdorf ras...@php.net Wed, 21 Mar 2012 09:13:06 
-0700
Parents:   887ee455dc2059a3154ee1173e2b973932067743
Branches:  PHP-5.4

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=8b01a28bad638c3ef5809cdee2127409971f18ff

Log:
Add open_basedir checks to readline_write_history and readline_read_history

Changed paths:
  M  ext/readline/readline.c


Diff:
8b01a28bad638c3ef5809cdee2127409971f18ff
diff --git a/ext/readline/readline.c b/ext/readline/readline.c
index c514cb8..820e4b4 100644
--- a/ext/readline/readline.c
+++ b/ext/readline/readline.c
@@ -369,6 +369,10 @@ PHP_FUNCTION(readline_read_history)
return;
}
 
+   if (php_check_open_basedir(arg TSRMLS_CC)) {
+   RETURN_FALSE;
+   }
+
/* XXX from  to NYI */
if (read_history(arg)) {
RETURN_FALSE;
@@ -389,6 +393,10 @@ PHP_FUNCTION(readline_write_history)
return;
}
 
+   if (php_check_open_basedir(arg TSRMLS_CC)) {
+   RETURN_FALSE;
+   }
+
if (write_history(arg)) {
RETURN_FALSE;
} else {


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



[PHP-CVS] com php-src: move date: NEWS

2012-03-28 Thread Stanislav Malyshev
Commit:15b23c6898ba04f057eb078e49b3ad3d750eafb7
Author:Stanislav Malyshev s...@php.net Wed, 28 Mar 2012 21:17:59 
-0700
Parents:   e3eee3b0ed4082bebba1f0e3a741b35f7907f577
Branches:  PHP-5.4.1

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=15b23c6898ba04f057eb078e49b3ad3d750eafb7

Log:
move date

Changed paths:
  M  NEWS


Diff:
15b23c6898ba04f057eb078e49b3ad3d750eafb7
diff --git a/NEWS b/NEWS
index 12c494f..926844a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
 PHPNEWS
 |||
-22 Mar 2012, PHP 5.4.1 RC1
+29 Mar 2012, PHP 5.4.1 RC1
 
 - CLI Server:
   . Fixed bug #61461 (missing checks around malloc() calls). (Ilia)


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



[PHP-CVS] com php-src: 5.4.1RC1: NEWS configure.in main/php_version.h

2012-03-28 Thread Stanislav Malyshev
Commit:e3eee3b0ed4082bebba1f0e3a741b35f7907f577
Author:Stanislav Malyshev s...@php.net Wed, 21 Mar 2012 23:48:42 
-0700
Parents:   fe79276371e51a8ee8dff6d5151f902e2129057c
Branches:  PHP-5.4.1

Link:   
http://git.php.net/?p=php-src.git;a=commitdiff;h=e3eee3b0ed4082bebba1f0e3a741b35f7907f577

Log:
5.4.1RC1

Changed paths:
  M  NEWS
  M  configure.in
  M  main/php_version.h


Diff:
e3eee3b0ed4082bebba1f0e3a741b35f7907f577
diff --git a/NEWS b/NEWS
index 6fc9126..12c494f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,6 @@
 PHPNEWS
 |||
-?? ??? 2012, PHP 5.4.1 RC1
+22 Mar 2012, PHP 5.4.1 RC1
 
 - CLI Server:
   . Fixed bug #61461 (missing checks around malloc() calls). (Ilia)
diff --git a/configure.in b/configure.in
index 49a88b1..828ce70 100644
--- a/configure.in
+++ b/configure.in
@@ -120,7 +120,7 @@ int zend_sprintf(char *buffer, const char *format, ...);
 PHP_MAJOR_VERSION=5
 PHP_MINOR_VERSION=4
 PHP_RELEASE_VERSION=1
-PHP_EXTRA_VERSION=RC1-dev
+PHP_EXTRA_VERSION=RC1
 
PHP_VERSION=$PHP_MAJOR_VERSION.$PHP_MINOR_VERSION.$PHP_RELEASE_VERSION$PHP_EXTRA_VERSION
 PHP_VERSION_ID=`expr [$]PHP_MAJOR_VERSION \* 1 + [$]PHP_MINOR_VERSION \* 
100 + [$]PHP_RELEASE_VERSION`
 
diff --git a/main/php_version.h b/main/php_version.h
index b4c616f..5825b7c 100644
--- a/main/php_version.h
+++ b/main/php_version.h
@@ -3,6 +3,6 @@
 #define PHP_MAJOR_VERSION 5
 #define PHP_MINOR_VERSION 4
 #define PHP_RELEASE_VERSION 1
-#define PHP_EXTRA_VERSION RC1-dev
-#define PHP_VERSION 5.4.1RC1-dev
+#define PHP_EXTRA_VERSION RC1
+#define PHP_VERSION 5.4.1RC1
 #define PHP_VERSION_ID 50401


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



[PHP-CVS] tag php-src: create tag PHP-4.0-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-RC2 in php-src.git was created
Tag: 1addd0e9d83b1457d3440b0549fd513cf0186806
Tagger:  David Soria Parrad...@y3.php.net Mon May 8 21:46:49 2000 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=1addd0e9d83b1457d3440b0549fd513cf0186806

Target:  358540d5ed10c6df0e9afeaa1e5794149295dbe5
Author:  SVN Migration s...@php.net Mon, 8 May 2000 21:46:49 +
Parents: 30da5fd8fcfd0446f3b7c3a63fc7319b65d65d62
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=358540d5ed10c6df0e9afeaa1e5794149295dbe5
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0RC2'.

Changed paths:
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b2 in php-src.git was created
Tag: 2b130a8a5cd4561300af96d8026c2d7640351d8a
Tagger:  David Soria Parrad...@y3.php.net Mon Aug 9 18:33:23 1999 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=2b130a8a5cd4561300af96d8026c2d7640351d8a

Target:  2828fec88153ba954bf99ae4f6103255f7221b46
Author:  SVN Migration s...@php.net Mon, 9 Aug 1999 18:33:23 +
Parents: 4bfcb29c46e901452f5234a322587198bfb00c8f
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=2828fec88153ba954bf99ae4f6103255f7221b46
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b2'.

Changed paths:
  M  TSRM/buildconf
  D  ext/pcre/config0.m4



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b1 in php-src.git was created
Tag: 907ac12e3d7ce89427c11d28f68f35be4b51468a
Tagger:  David Soria Parrad...@y3.php.net Fri Jul 23 14:14:44 
1999 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=907ac12e3d7ce89427c11d28f68f35be4b51468a

Target:  5cb21cbfef2dcdf31ac914920427d3d190c6ed26
Author:  SVN Migration s...@php.net Fri, 23 Jul 1999 14:14:44 
+
Parents: b1617d8ac3bad1ace92085194e24cff8cbdbaf31
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=5cb21cbfef2dcdf31ac914920427d3d190c6ed26
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b1'.

Changed paths:
  A  BUGS
  A  CHANGES-3.0
  A  COPYING
  M  ChangeLog
  D  ChangeLog.3
  M  ChangeLog.TODO
  A  EXTENSION_STATUS
  M  MODULES_STATUS
  M  Makefile.in
  A  TODO
  A  TSRM/Makefile.am
  A  TSRM/TSRM.c
  A  TSRM/TSRM.dsp
  A  TSRM/TSRM.h
  A  TSRM/acconfig.h
  A  TSRM/buildconf
  A  TSRM/configure.in
  A  WISHLIST
  A  WISHLIST-3.1
  M  Zend/buildconf
  M  Zend/zend_compile.c
  M  Zend/zend_constants.c
  M  Zend/zend_execute.c
  M  Zend/zend_execute_API.c
  M  Zend/zend_list.c
  M  Zend/zend_operators.c
  M  acinclude.m4
  M  buildconf
  M  config.guess
  M  config.sub
  M  configure.in.in
  A  cvsusers
  M  ext/Makefile.am
  D  ext/dba/Makefile.am
  D  ext/dba/config.h.stub
  D  ext/dba/config.m4
  D  ext/dba/dba.c
  D  ext/dba/dba_cdb.c
  D  ext/dba/dba_db2.c
  D  ext/dba/dba_dbm.c
  D  ext/dba/dba_gdbm.c
  D  ext/dba/dba_ndbm.c
  D  ext/dba/php3_cdb.h
  D  ext/dba/php3_db2.h
  D  ext/dba/php3_dba.h
  D  ext/dba/php3_dbm.h
  D  ext/dba/php3_gdbm.h
  D  ext/dba/php3_ndbm.h
  D  ext/dba/setup.stub
  M  ext/fdf/fdf.c
  A  ext/hyperwave/DList.h
  A  ext/hyperwave/dlist.c
  M  ext/imap/config.m4
  M  ext/informix/ifx.ec
  M  ext/informix/php_informix.h
  M  ext/msql/config.m4
  M  ext/msql/msql.c
  M  ext/mysql/mysql.c
  M  ext/pcre/php_pcre.c
  M  ext/pcre/php_pcre.h
  M  ext/pgsql/config.m4
  M  ext/pgsql/pgsql.c
  M  ext/session/session.c
  M  ext/snmp/config.m4
  M  ext/standard/base64.c
  M  ext/standard/basic_functions.c
  M  ext/standard/datetime.c
  M  ext/standard/exec.c
  M  ext/standard/fsock.c
  M  ext/standard/head.c
  M  ext/standard/head.h
  M  ext/standard/info.c
  M  ext/standard/string.c
  M  ext/sybase/sybase-ct.c
  M  ext/sybase/sybase.c
  D  ext/wddx/Makefile.am
  D  ext/wddx/config.h.stub
  D  ext/wddx/config.m4
  D  ext/wddx/php_wddx.h
  D  ext/wddx/setup.stub
  D  ext/wddx/wddx.c
  M  ext/xml/Makefile.am
  M  ext/xml/config.m4
  M  ext/xml/php3_xml.h
  M  ext/xml/xml.c
  M  libphp4.module.in
  M  ltconfig
  M  ltmain.sh
  M  main/config.w32.h
  M  main/main.c
  M  mod_php4.c
  A  objects
  A  press-release-3.0.txt



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b3_RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b3_RC2 in php-src.git was created
Tag: 0007809cd4fd5ab10fb37a16c652ec8ae0706897
Tagger:  David Soria Parrad...@y3.php.net Tue Nov 9 07:59:51 1999 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=0007809cd4fd5ab10fb37a16c652ec8ae0706897

Target:  95883803d2bfe081c825fedc95d27a32447a1f8a
Author:  SVN Migration s...@php.net Tue, 9 Nov 1999 07:59:51 +
Parents: fdc6d630dbc86c2729b6f72318a4c0d1ee63b453
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=95883803d2bfe081c825fedc95d27a32447a1f8a
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC2'.

Changed paths:
  D  ext/pcre/config0.m4
  M  makedist



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b3 in php-src.git was created
Tag: 807f73c7fde8ff28f406ff607f73fa3069396d25
Tagger:  David Soria Parrad...@y3.php.net Fri Nov 19 15:06:58 
1999 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=807f73c7fde8ff28f406ff607f73fa3069396d25

Target:  c688aa97f3014e3b0a1482b8c7491ad3b576f266
Author:  SVN Migration s...@php.net Fri, 19 Nov 1999 15:06:58 
+
Parents: 87d6372a1451ba614ad013a8c77e493eb2072ad0
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=c688aa97f3014e3b0a1482b8c7491ad3b576f266
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3'.

Changed paths:
  M  build.mk
  D  ext/pcre/config0.m4
  M  ext/standard/array.c
  M  main/internal_functions_win32.c
  M  php4dllts.dsp



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b3_RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b3_RC3 in php-src.git was created
Tag: c2298c382cdbfdbe564c4ab351b29dd7495c5bbd
Tagger:  David Soria Parrad...@y3.php.net Tue Nov 9 12:20:35 1999 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=c2298c382cdbfdbe564c4ab351b29dd7495c5bbd

Target:  55085469497fc8a8031c07303eba19d1d595a048
Author:  SVN Migration s...@php.net Tue, 9 Nov 1999 12:20:35 +
Parents: 9e1cfb4f6e22a42b15b09f5dcb3a846f5f1ad0ce
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=55085469497fc8a8031c07303eba19d1d595a048
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC3'.

Changed paths:
  D  ext/pcre/config0.m4



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b3_RC4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b3_RC4 in php-src.git was created
Tag: ed2f5eb7dd7c5771589c2a4a35dfa69f3d286408
Tagger:  David Soria Parrad...@y3.php.net Tue Nov 9 17:03:47 1999 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=ed2f5eb7dd7c5771589c2a4a35dfa69f3d286408

Target:  1f51d38ede06e4f0627dead53580019206061bd3
Author:  SVN Migration s...@php.net Tue, 9 Nov 1999 17:03:47 +
Parents: ef941dd7000210d51758520e57987d360b6a755d
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=1f51d38ede06e4f0627dead53580019206061bd3
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC4'.

Changed paths:
  M  build.mk
  D  ext/pcre/config0.m4



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b3_RC5

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b3_RC5 in php-src.git was created
Tag: d60ceada1d38a749e5aff6ca5f55f727ce10f0ed
Tagger:  David Soria Parrad...@y3.php.net Sun Nov 14 20:13:55 
1999 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC5'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=d60ceada1d38a749e5aff6ca5f55f727ce10f0ed

Target:  3d7dc0fbf312dab06452d90cbd54cbef31e8ac5c
Author:  SVN Migration s...@php.net Sun, 14 Nov 1999 20:13:55 
+
Parents: 25c56d15cd2621ad399d0e75519b137021564057
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=3d7dc0fbf312dab06452d90cbd54cbef31e8ac5c
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b3_RC5'.

Changed paths:
  D  ext/pcre/config0.m4



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b4 in php-src.git was created
Tag: 1d74b5839a998eaf13297272a52aca18a7b97d3b
Tagger:  David Soria Parrad...@y3.php.net Sun Feb 20 21:30:34 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=1d74b5839a998eaf13297272a52aca18a7b97d3b

Target:  bc2d01540e29eb578574e601601f9d3b565dccf1
Author:  SVN Migration s...@php.net Sun, 20 Feb 2000 21:30:34 
+
Parents: 021836efcb0c9fac6062d72302060f72aa975ce4
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=bc2d01540e29eb578574e601601f9d3b565dccf1
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b4'.

Changed paths:
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b4_rc1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b4_rc1 in php-src.git was created
Tag: 335a1c74f39298e137c0ba03e3a552c3daa0fe7b
Tagger:  David Soria Parrad...@y3.php.net Sun Feb 20 05:32:52 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b4_rc1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=335a1c74f39298e137c0ba03e3a552c3daa0fe7b

Target:  ad9db71ddb37105408169d5cbd61bec96396e09d
Author:  SVN Migration s...@php.net Sun, 20 Feb 2000 05:32:52 
+
Parents: 77633372559bb3dc8e326c56306dd15e5a2b7b48
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=ad9db71ddb37105408169d5cbd61bec96396e09d
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b4_rc1'.

Changed paths:
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0-b4pl1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0-b4pl1 in php-src.git was created
Tag: 6e1aac02bc69e77dcef653ccaf5a5290940b7ef7
Tagger:  David Soria Parrad...@y3.php.net Mon Feb 21 16:41:16 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b4pl1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=6e1aac02bc69e77dcef653ccaf5a5290940b7ef7

Target:  d510974fb638f3fb484f726bb25f926568cdcd50
Author:  SVN Migration s...@php.net Mon, 21 Feb 2000 16:41:16 
+
Parents: 2fb42090831e838378056beb34ecf6e0609f5259
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=d510974fb638f3fb484f726bb25f926568cdcd50
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0b4pl1'.

Changed paths:
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.0

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.0 in php-src.git was created
Tag: 2befc7e1565d0c57b01db3c8c2b688ad8005dea6
Tagger:  David Soria Parrad...@y3.php.net Mon May 22 16:56:23 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_0'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=2befc7e1565d0c57b01db3c8c2b688ad8005dea6

Target:  bebb83af0fc3677ac7cf3de360ede344d9fcacbf
Author:  SVN Migration s...@php.net Mon, 22 May 2000 16:56:23 
+
Parents: 8090fbb6860d4df44274a11c90bfadac9ab95007
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=bebb83af0fc3677ac7cf3de360ede344d9fcacbf
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_0'.

Changed paths:
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.1 in php-src.git was created
Tag: d9377f99e77be5b137c20e3e51c868c7efa15231
Tagger:  David Soria Parrad...@y3.php.net Wed Jun 28 18:32:14 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=d9377f99e77be5b137c20e3e51c868c7efa15231

Target:  ee3f5cecea6f68db6dbed8abc06f2952c4f8f9ed
Author:  SVN Migration s...@php.net Wed, 28 Jun 2000 18:32:14 
+
Parents: 3860254631a8418679693f08cc7fb6a9e5b6f070
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=ee3f5cecea6f68db6dbed8abc06f2952c4f8f9ed
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1'.

Changed paths:
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.1-RC

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.1-RC in php-src.git was created
Tag: 6cca026aac476be9db2b65f8810fc3fc3986982a
Tagger:  David Soria Parrad...@y3.php.net Sun Jun 25 18:18:30 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1RC'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=6cca026aac476be9db2b65f8810fc3fc3986982a

Target:  e90254086a596b981eba726094a208a05811ba9a
Author:  SVN Migration s...@php.net Sun, 25 Jun 2000 18:18:30 
+
Parents: 9f0eba9f1033a380227c47f181686ec45a68e766
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=e90254086a596b981eba726094a208a05811ba9a
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1RC'.

Changed paths:
  M  NEWS
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  M  makedist
  D  strtok_r.c
  M  win32/README.txt



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



[PHP-CVS] tag php-src: create tag PHP-4.0.2-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.2-RC1 in php-src.git was created
Tag: f29dec79232587f5c7e3b5335218516c0f962f67
Tagger:  David Soria Parrad...@y3.php.net Mon Aug 21 19:24:45 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_2RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=f29dec79232587f5c7e3b5335218516c0f962f67

Target:  9789eb0bb00301bbbebf78db9374a11711b4ca06
Author:  SVN Migration s...@php.net Mon, 21 Aug 2000 19:24:45 
+
Parents: 410ac013e8524f6ee73ae50a257b3e45adbd0bc5
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=9789eb0bb00301bbbebf78db9374a11711b4ca06
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_2RC1'.

Changed paths:
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.2 in php-src.git was created
Tag: dcccebcd5f0ff16e62a48684414a2dcf5627d60c
Tagger:  David Soria Parrad...@y3.php.net Tue Aug 29 18:21:08 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=dcccebcd5f0ff16e62a48684414a2dcf5627d60c

Target:  dd54e1368872c0b910a22bd2e69bcf67c77386e4
Author:  SVN Migration s...@php.net Tue, 29 Aug 2000 18:21:08 
+
Parents: 56498d48b4ac48f1f0c120751d083414252c9d4e
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=dd54e1368872c0b910a22bd2e69bcf67c77386e4
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_2'.

Changed paths:
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  D  main/php_realpath.c
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.1-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.1-RC2 in php-src.git was created
Tag: 733093396226a0f4320030da9d7f4f8e76e6a62d
Tagger:  David Soria Parrad...@y3.php.net Tue Jun 27 18:44:31 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=733093396226a0f4320030da9d7f4f8e76e6a62d

Target:  888cd1200bec1de9621f40800af5afd1d3496c12
Author:  SVN Migration s...@php.net Tue, 27 Jun 2000 18:44:31 
+
Parents: c860633741a1931d9f9e5298b21a8dc8efbc0fad
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=888cd1200bec1de9621f40800af5afd1d3496c12
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1RC2'.

Changed paths:
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.1-pl1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.1-pl1 in php-src.git was created
Tag: 90271c9cc5ee64b015d54379b894e82aec44e67c
Tagger:  David Soria Parrad...@y3.php.net Thu Jun 29 13:34:59 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1pl1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=90271c9cc5ee64b015d54379b894e82aec44e67c

Target:  d26abbcdc9b2decf18e5c8b33ae5be8a08d0d368
Author:  SVN Migration s...@php.net Thu, 29 Jun 2000 13:34:59 
+
Parents: 01a8f4606ea99e9be92dbd4a27c69330786c7a8c
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=d26abbcdc9b2decf18e5c8b33ae5be8a08d0d368
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_1pl1'.

Changed paths:
  D  TSRM/Makefile.am
  D  TSRM/TSRM.c
  D  TSRM/TSRM.dsp
  D  TSRM/TSRM.h
  D  TSRM/acconfig.h
  D  TSRM/acinclude.m4
  D  TSRM/build.mk
  D  TSRM/buildconf
  D  TSRM/configure.in
  D  TSRM/threads.m4
  D  TSRM/tsrm.m4
  D  Zend/FlexLexer.h
  D  Zend/LICENSE
  D  Zend/Makefile.am
  D  Zend/ZEND_CHANGES
  D  Zend/Zend.dsp
  D  Zend/Zend.m4
  D  Zend/ZendCore.dep
  D  Zend/ZendTS.dsp
  D  Zend/acconfig.h
  D  Zend/acinclude.m4
  D  Zend/build.mk
  D  Zend/buildconf
  D  Zend/configure.in
  D  Zend/flex.skl
  D  Zend/zend-parser.y
  D  Zend/zend-scanner.h
  D  Zend/zend-scanner.l
  D  Zend/zend.c
  D  Zend/zend.h
  D  Zend/zend.ico
  D  Zend/zend_API.c
  D  Zend/zend_API.h
  D  Zend/zend_alloc.c
  D  Zend/zend_alloc.h
  D  Zend/zend_builtin_functions.c
  D  Zend/zend_builtin_functions.h
  D  Zend/zend_compile.c
  D  Zend/zend_compile.h
  D  Zend/zend_config.w32.h
  D  Zend/zend_constants.c
  D  Zend/zend_constants.h
  D  Zend/zend_dynamic_array.c
  D  Zend/zend_dynamic_array.h
  D  Zend/zend_errors.h
  D  Zend/zend_execute.c
  D  Zend/zend_execute.h
  D  Zend/zend_execute_API.c
  D  Zend/zend_execute_locks.h
  D  Zend/zend_extensions.c
  D  Zend/zend_extensions.h
  D  Zend/zend_fast_cache.h
  D  Zend/zend_gcc_inline.c
  D  Zend/zend_globals.h
  D  Zend/zend_globals_macros.h
  D  Zend/zend_hash.c
  D  Zend/zend_hash.h
  D  Zend/zend_highlight.c
  D  Zend/zend_highlight.h
  D  Zend/zend_indent.c
  D  Zend/zend_indent.h
  D  Zend/zend_list.c
  D  Zend/zend_list.h
  D  Zend/zend_llist.c
  D  Zend/zend_llist.h
  D  Zend/zend_modules.h
  D  Zend/zend_opcode.c
  D  Zend/zend_operators.c
  D  Zend/zend_operators.h
  D  Zend/zend_ptr_stack.c
  D  Zend/zend_ptr_stack.h
  D  Zend/zend_sprintf.c
  D  Zend/zend_stack.c
  D  Zend/zend_stack.h
  D  Zend/zend_static_allocator.c
  D  Zend/zend_static_allocator.h
  D  Zend/zend_variables.c
  D  Zend/zend_variables.h
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  M  main/config.w32.h
  M  sapi/cgi/cgi_main.c
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.3-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.3-RC1 in php-src.git was created
Tag: 15d2e343e9067112ea2cee8843becce92e1c9289
Tagger:  David Soria Parrad...@y3.php.net Mon Oct 2 15:20:41 2000 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_3RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=15d2e343e9067112ea2cee8843becce92e1c9289

Target:  1208b0fe781b02073418267f04c90cca3201a49f
Author:  SVN Migration s...@php.net Mon, 2 Oct 2000 15:20:41 +
Parents: 5819b6d4a6bdcb6cd33431761d7d2430fed9a7ce
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=1208b0fe781b02073418267f04c90cca3201a49f
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_3RC1'.

Changed paths:
  M  NEWS
  A  Zend/zend_gcc_inline.c
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  D  main/php_realpath.c
  M  main/php_version.h
  A  main/php_virtual_cwd.c
  A  main/php_virtual_cwd.h
  A  pear/tests/pear_error_callback.phpt
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.3-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.3-RC2 in php-src.git was created
Tag: 01705d4e3748f99ccdf82aeb4ce669a4bb51af7c
Tagger:  David Soria Parrad...@y3.php.net Tue Oct 3 17:08:42 2000 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_3RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=01705d4e3748f99ccdf82aeb4ce669a4bb51af7c

Target:  19aa8d72d617545d89c455519738371be773752c
Author:  SVN Migration s...@php.net Tue, 3 Oct 2000 17:08:42 +
Parents: acc4a8ed6d20b60f43ae99d374e6f20f46ceb4d1
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=19aa8d72d617545d89c455519738371be773752c
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_3RC2'.

Changed paths:
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  D  main/php_realpath.c
  D  strtok_r.c
  D  tests/testdirname



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



[PHP-CVS] tag php-src: create tag PHP-4.0.3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.3 in php-src.git was created
Tag: a25635c32de096778eb60e011a325bad8eef83cd
Tagger:  David Soria Parrad...@y3.php.net Wed Oct 11 19:11:49 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=a25635c32de096778eb60e011a325bad8eef83cd

Target:  3402e4ee848e579d997e3fcf1b36f802e0df4f59
Author:  SVN Migration s...@php.net Wed, 11 Oct 2000 19:11:49 
+
Parents: e9887156cf52b1ba8fa1f9ec440f8dda3913ac7a
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=3402e4ee848e579d997e3fcf1b36f802e0df4f59
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_3'.

Changed paths:
  D  ext/imap/imap.h
  D  ext/pcre/config0.m4
  D  main/php_realpath.c
  D  strtok_r.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-RC4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-RC4 in php-src.git was created
Tag: 51ee295dbcc7e31718f6352b3bb2dd379c5fe840
Tagger:  David Soria Parrad...@y3.php.net Thu Dec 14 14:18:38 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=51ee295dbcc7e31718f6352b3bb2dd379c5fe840

Target:  38dd82955cc50659f11c6af545202e6e3486d538
Author:  SVN Migration s...@php.net Thu, 14 Dec 2000 14:18:38 
+
Parents: a574e2408000753331a854fbeedf12f2b1ee36a3
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=38dd82955cc50659f11c6af545202e6e3486d538
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC4'.

Changed paths:
  A  TSRM/TSRM.h
  A  TSRM/configure.in
  A  Zend/acconfig.h
  A  Zend/configure.in
  A  Zend/zend_API.h
  A  Zend/zend_builtin_functions.c
  A  Zend/zend_compile.c
  A  Zend/zend_execute.h
  A  Zend/zend_execute_API.c
  A  Zend/zend_hash.c
  A  Zend/zend_language_parser.y
  A  Zend/zend_modules.h
  A  Zend/zend_operators.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-RC5

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-RC5 in php-src.git was created
Tag: 3a5b2ca084349d32df272132a291c3f5a71716b9
Tagger:  David Soria Parrad...@y3.php.net Thu Dec 14 14:18:39 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC5'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=3a5b2ca084349d32df272132a291c3f5a71716b9

Target:  9fc46d3a46144dc63fea49b8caeabfa4f3b5ac9b
Author:  SVN Migration s...@php.net Thu, 14 Dec 2000 14:18:39 
+
Parents: ec94654316e2c8983a3415f9816b3222dd84359b
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=9fc46d3a46144dc63fea49b8caeabfa4f3b5ac9b
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC5'.

Changed paths:
  A  TSRM/TSRM.h
  A  TSRM/configure.in
  A  Zend/acconfig.h
  A  Zend/configure.in
  A  Zend/zend_API.h
  A  Zend/zend_builtin_functions.c
  A  Zend/zend_compile.c
  A  Zend/zend_execute.h
  A  Zend/zend_execute_API.c
  A  Zend/zend_hash.c
  A  Zend/zend_language_parser.y
  A  Zend/zend_modules.h
  A  Zend/zend_operators.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-RC3 in php-src.git was created
Tag: b6ede74fdca472725fb1e96c9d7000d0633e5b48
Tagger:  David Soria Parrad...@y3.php.net Sat Dec 2 08:14:58 2000 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=b6ede74fdca472725fb1e96c9d7000d0633e5b48

Target:  dad882cd33b686ba5b5dd97915c3e827abcc2ea6
Author:  SVN Migration s...@php.net Sat, 2 Dec 2000 08:14:58 +
Parents: c277e3f98dab989279d2f6ea72068e0bdc884ac5
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=dad882cd33b686ba5b5dd97915c3e827abcc2ea6
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC3'.

Changed paths:
  A  TSRM/TSRM.h
  A  TSRM/configure.in
  A  Zend/acconfig.h
  A  Zend/configure.in
  A  Zend/zend_API.h
  A  Zend/zend_builtin_functions.c
  A  Zend/zend_compile.c
  A  Zend/zend_execute.h
  A  Zend/zend_execute_API.c
  A  Zend/zend_hash.c
  A  Zend/zend_language_parser.y
  A  Zend/zend_modules.h
  A  Zend/zend_operators.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-pl1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-pl1 in php-src.git was created
Tag: 2c1a55ddaf0505b581ed21d36463b210cc11
Tagger:  David Soria Parrad...@y3.php.net Thu Jan 11 18:18:20 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4pl1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=2c1a55ddaf0505b581ed21d36463b210cc11

Target:  aeb4ed500444697483b5a9297e83a5f47007d443
Author:  SVN Migration s...@php.net Thu, 11 Jan 2001 18:18:20 
+
Parents: ddcfc93126d2091c708f550aced8094ace4e0173
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=aeb4ed500444697483b5a9297e83a5f47007d443
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4pl1'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-RC6

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-RC6 in php-src.git was created
Tag: 6789adc0731ba238ab2ff173b19e1d7b4c9cc289
Tagger:  David Soria Parrad...@y3.php.net Thu Dec 14 16:17:32 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC6'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=6789adc0731ba238ab2ff173b19e1d7b4c9cc289

Target:  9e5029a2c2c8e5d9fd518f9fb3a2bdf612a83d26
Author:  SVN Migration s...@php.net Thu, 14 Dec 2000 16:17:32 
+
Parents: e3c79b33f8af2e7286609e2057380b80424d2af3
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=9e5029a2c2c8e5d9fd518f9fb3a2bdf612a83d26
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4RC6'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-REL

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-REL in php-src.git was created
Tag: 2445259bbde0516a92d79c6bc57110ef87838fd0
Tagger:  David Soria Parrad...@y3.php.net Wed Dec 20 07:42:53 
2000 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4REL'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=2445259bbde0516a92d79c6bc57110ef87838fd0

Target:  b6aed2e625a83cc3e529d08aa3ef09e13127ef7f
Author:  SVN Migration s...@php.net Wed, 20 Dec 2000 07:42:53 
+
Parents: b6b6b14ae9c056df2066ccdbd25a2af69c315dc9
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=b6aed2e625a83cc3e529d08aa3ef09e13127ef7f
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4REL'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-pl1RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-pl1RC2 in php-src.git was created
Tag: 8a40e89d289cd5c8c793383ba88903c3009bb478
Tagger:  David Soria Parrad...@y3.php.net Tue Jan 9 21:00:06 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4pl1RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=8a40e89d289cd5c8c793383ba88903c3009bb478

Target:  1e253aa51f9c0e49f71066116bf21b92dabdbd46
Author:  SVN Migration s...@php.net Tue, 9 Jan 2001 21:00:06 +
Parents: 0b043e92a7e03e1af8caba76dbbf14665e2912db
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=1e253aa51f9c0e49f71066116bf21b92dabdbd46
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4pl1RC2'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.4-pl1RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.4-pl1RC1 in php-src.git was created
Tag: c8ec7022458c3150c89033e7f1d0ff827a8f9b72
Tagger:  David Soria Parrad...@y3.php.net Wed Jan 3 23:52:37 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4pl1RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=c8ec7022458c3150c89033e7f1d0ff827a8f9b72

Target:  d1086052bfd0758bb10d9b53e629a7a9dcb9267c
Author:  SVN Migration s...@php.net Wed, 3 Jan 2001 23:52:37 +
Parents: a2ea3caa6978956c7088d243950b459ff2caa9b5
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=d1086052bfd0758bb10d9b53e629a7a9dcb9267c
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_4pl1RC1'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.5-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.5-RC2 in php-src.git was created
Tag: 6b5b796e68b17f969c248fae30b499a3e49aa890
Tagger:  David Soria Parrad...@y3.php.net Tue Mar 20 21:59:50 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=6b5b796e68b17f969c248fae30b499a3e49aa890

Target:  aec3e9a8a49b2e9fef65f67071e649e78dd8c466
Author:  SVN Migration s...@php.net Tue, 20 Mar 2001 21:59:50 
+
Parents: ad8426b7d344f18f227c6ebe6e5303019c464dcc
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=aec3e9a8a49b2e9fef65f67071e649e78dd8c466
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC2'.

Changed paths:
  D  sapi/fastcgi/CREDITS
  D  sapi/fastcgi/Makefile.in
  D  sapi/fastcgi/README.FastCGI
  D  sapi/fastcgi/config.m4
  D  sapi/fastcgi/fastcgi.c
  D  sapi/fastcgi/php.sym
  D  sapi/fastcgi/php_fastcgi.h



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



[PHP-CVS] tag php-src: create tag PHP-4.0.5-RC4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.5-RC4 in php-src.git was created
Tag: ffddf97a9205cd21a3a85fc202c68e0ba7c9e30d
Tagger:  David Soria Parrad...@y3.php.net Wed Mar 28 23:23:07 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=ffddf97a9205cd21a3a85fc202c68e0ba7c9e30d

Target:  d632b7e91606098887b2914afb0708c82baf8845
Author:  SVN Migration s...@php.net Wed, 28 Mar 2001 23:23:07 
+
Parents: 00ff97638ecea831fe2be61a0cac8625c01c72c4
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=d632b7e91606098887b2914afb0708c82baf8845
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC4'.

Changed paths:
  D  ext/com/com.h
  D  ext/rpc/com/com_wrapper.h



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



[PHP-CVS] tag php-src: create tag PHP-4.0.5-RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.5-RC3 in php-src.git was created
Tag: 59991c4fe1706aefcd9a39f999e6975573122de9
Tagger:  David Soria Parrad...@y3.php.net Wed Mar 28 13:36:53 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=59991c4fe1706aefcd9a39f999e6975573122de9

Target:  a2c60b0e32a629717edbe579a9fe1a06b33d76c9
Author:  SVN Migration s...@php.net Wed, 28 Mar 2001 13:36:53 
+
Parents: 0613e48b8e434f26f00d85cc6530b1b67b1338d5
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=a2c60b0e32a629717edbe579a9fe1a06b33d76c9
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC3'.

Changed paths:
  D  ext/com/com.h
  D  ext/rpc/com/com_wrapper.h



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



[PHP-CVS] tag php-src: create tag PHP-4.0.5-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.5-RC1 in php-src.git was created
Tag: 1a9e4ff76a96d7bfe2e91c5ccee49c383e31b6bb
Tagger:  David Soria Parrad...@y3.php.net Tue Mar 13 16:27:41 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=1a9e4ff76a96d7bfe2e91c5ccee49c383e31b6bb

Target:  460a7a9fbde5168476aed043400e007884a5ec3e
Author:  SVN Migration s...@php.net Tue, 13 Mar 2001 16:27:41 
+
Parents: 8bb1eb9d015d597857c982f41f807a7223ddd351
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=460a7a9fbde5168476aed043400e007884a5ec3e
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC1'.

Changed paths:
  A  pear/Cache.php



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



[PHP-CVS] tag php-src: create tag PHP-4.0.5-RC5

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.5-RC5 in php-src.git was created
Tag: d198d1a7af8a00847563700bf99e461b475cfc54
Tagger:  David Soria Parrad...@y3.php.net Sun Apr 1 16:30:23 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC5'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=d198d1a7af8a00847563700bf99e461b475cfc54

Target:  8310a11e56eef73a99f8ceaf45fe3604f6ec9b3b
Author:  SVN Migration s...@php.net Sun, 1 Apr 2001 16:30:23 +
Parents: 2257654b4fad29097ebb633d007758556fdcfe6e
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=8310a11e56eef73a99f8ceaf45fe3604f6ec9b3b
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC5'.

Changed paths:
  D  ext/com/com.h
  D  ext/rpc/com/com_wrapper.h



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



[PHP-CVS] tag php-src: create tag PHP-4.0.5-RC7

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.5-RC7 in php-src.git was created
Tag: d8dc006176e4afbfefa0861681f35f7f857b371a
Tagger:  David Soria Parrad...@y3.php.net Mon Apr 23 06:36:52 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC7'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=d8dc006176e4afbfefa0861681f35f7f857b371a

Target:  9d3e03ba0a51e0b0b4ee793cfafe5d7175264138
Author:  SVN Migration s...@php.net Mon, 23 Apr 2001 06:36:52 
+
Parents: 140720a22e963573e3e111e4c2c6f927b7028724
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=9d3e03ba0a51e0b0b4ee793cfafe5d7175264138
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC7'.

Changed paths:
  M  configure.in
  D  ext/com/com.h
  D  ext/rpc/com/com_wrapper.h
  M  sapi/thttpd/thttpd.c
  M  sapi/thttpd/thttpd_patch



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



[PHP-CVS] tag php-src: create tag PHP-4.0.5-RC6

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.5-RC6 in php-src.git was created
Tag: c60c180459ae25d99ee385d92ce359491dff9131
Tagger:  David Soria Parrad...@y3.php.net Mon Apr 2 21:09:22 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC6'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=c60c180459ae25d99ee385d92ce359491dff9131

Target:  1381566eef64d202dddaacc0ca657e7458923a73
Author:  SVN Migration s...@php.net Mon, 2 Apr 2001 21:09:22 +
Parents: eb08e83c37db7722c00118967afeda3f86398e6f
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=1381566eef64d202dddaacc0ca657e7458923a73
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_5RC6'.

Changed paths:
  D  ext/com/com.h
  D  ext/rpc/com/com_wrapper.h



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



[PHP-CVS] tag php-src: create tag PHP-4.0.6

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.6 in php-src.git was created
Tag: 8ffd0b0ea53c655cdd2520a7809c654b7e95fa7f
Tagger:  David Soria Parrad...@y3.php.net Wed Jun 20 20:13:00 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=8ffd0b0ea53c655cdd2520a7809c654b7e95fa7f

Target:  12fb115c41b24057439e2860eda5509d524a91e4
Author:  SVN Migration s...@php.net Wed, 20 Jun 2001 20:13:00 
+
Parents: 77708c5592b99479f25a979c30073a82cea3f038
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=12fb115c41b24057439e2860eda5509d524a91e4
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.6-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.6-RC1 in php-src.git was created
Tag: 635c334b212f7e6c497d905e95f6e5ed292b1758
Tagger:  David Soria Parrad...@y3.php.net Tue May 15 17:50:33 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=635c334b212f7e6c497d905e95f6e5ed292b1758

Target:  e6c949b9f7cc30bcafe04655ecbbfe927a492a70
Author:  SVN Migration s...@php.net Tue, 15 May 2001 17:50:33 
+
Parents: 8bb1bc55a274586d964b1fa930fd343390859da0
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=e6c949b9f7cc30bcafe04655ecbbfe927a492a70
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6RC1'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.6-RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.6-RC3 in php-src.git was created
Tag: 35a2f2e4ace2a781bb3ad0fad8c78b48b89c2fea
Tagger:  David Soria Parrad...@y3.php.net Thu Jun 7 18:40:01 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=35a2f2e4ace2a781bb3ad0fad8c78b48b89c2fea

Target:  6af9af37778f2cf786890876e6af3ccced4c941e
Author:  SVN Migration s...@php.net Thu, 7 Jun 2001 18:40:01 +
Parents: 82f9aa80b31a0fd20339cd9ae3402cbed2382ffc
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=6af9af37778f2cf786890876e6af3ccced4c941e
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6RC3'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.6-RC4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.6-RC4 in php-src.git was created
Tag: 247b00f43fd5e9f5c2a43c17f8e8b3beba39
Tagger:  David Soria Parrad...@y3.php.net Tue Jun 19 18:13:34 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6RC4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=247b00f43fd5e9f5c2a43c17f8e8b3beba39

Target:  1ae4d96e47dda6e6bbb6e1f937379b7dab735cbe
Author:  SVN Migration s...@php.net Tue, 19 Jun 2001 18:13:34 
+
Parents: 0de812a8edc1d78871fa2a74c7d111e0feff
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=1ae4d96e47dda6e6bbb6e1f937379b7dab735cbe
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_6RC4'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.0.7-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.7-RC2 in php-src.git was created
Tag: ed3cc7eb964c8a2f076a0b93809198f9d8a51de8
Tagger:  David Soria Parrad...@y3.php.net Fri Sep 7 00:28:29 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_7RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=ed3cc7eb964c8a2f076a0b93809198f9d8a51de8

Target:  fe3915dde153900e4b81a66ea3c1874890575b61
Author:  SVN Migration s...@php.net Fri, 7 Sep 2001 00:28:29 +
Parents: 3ba574871c53b69d1f871ce02d27fa0da961c176
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=fe3915dde153900e4b81a66ea3c1874890575b61
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_7RC2'.

Changed paths:
  A  ext/mssql/php_mssql.c
  D  pear/Archive/Tar.php



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



[PHP-CVS] tag php-src: create tag PHP-4.0.7-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.7-RC1 in php-src.git was created
Tag: 722a7b566ba6d029723434188ac1798fbc936cf2
Tagger:  David Soria Parrad...@y3.php.net Wed Aug 15 15:18:26 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_7RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=722a7b566ba6d029723434188ac1798fbc936cf2

Target:  6b0ac77e03d8d571b464bd096f3ff76836c652be
Author:  SVN Migration s...@php.net Wed, 15 Aug 2001 15:18:26 
+
Parents: eb6428126bbc495b4c4d92e4b6787b4086fd6fce
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=6b0ac77e03d8d571b464bd096f3ff76836c652be
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_7RC1'.

Changed paths:
  A  ext/mssql/php_mssql.c



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



[PHP-CVS] tag php-src: create tag PHP-4.0.7-RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.0.7-RC3 in php-src.git was created
Tag: b346cdf30b3349b492967ecf54eef42ed0bd7692
Tagger:  David Soria Parrad...@y3.php.net Mon Oct 1 12:51:13 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_7RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=b346cdf30b3349b492967ecf54eef42ed0bd7692

Target:  fc982e52485fd8891b3b1728d942a3213955097c
Author:  SVN Migration s...@php.net Mon, 1 Oct 2001 12:51:13 +
Parents: 41b30151257db033c6d40e17e196f2bac2c05f82
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=fc982e52485fd8891b3b1728d942a3213955097c
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_0_7RC3'.

Changed paths:
  A  ext/mssql/php_mssql.c



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



[PHP-CVS] tag php-src: create tag PHP-4.1.0

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.0 in php-src.git was created
Tag: 35199ed4aba3b9534ada2aab8a9b7380ab7b722e
Tagger:  David Soria Parrad...@y3.php.net Mon Dec 10 15:21:44 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=35199ed4aba3b9534ada2aab8a9b7380ab7b722e

Target:  c8a60f5c039eb6abc300f2bb08c3e215a59946cd
Author:  SVN Migration s...@php.net Mon, 10 Dec 2001 15:21:44 
+
Parents: cbce251dabed75b121afe77ced3a846494e90736
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=c8a60f5c039eb6abc300f2bb08c3e215a59946cd
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.1.0-RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.0-RC3 in php-src.git was created
Tag: 7f7e6f4824f4eca8de1e5d17fdf01da7164b07cb
Tagger:  David Soria Parrad...@y3.php.net Thu Nov 22 07:49:47 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=7f7e6f4824f4eca8de1e5d17fdf01da7164b07cb

Target:  e3fc9202e6979f8f63729e9afead70b78284
Author:  SVN Migration s...@php.net Thu, 22 Nov 2001 07:49:47 
+
Parents: 09fb81a8f3ba7c76d8442be0c517d145c80bd833
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=e3fc9202e6979f8f63729e9afead70b78284
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC3'.

Changed paths:
  A  ext/mssql/php_mssql.c



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



[PHP-CVS] tag php-src: create tag PHP-4.1.0-RC4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.0-RC4 in php-src.git was created
Tag: c5cf9ab6d25e4673a65665aa92bb4c850e5641bc
Tagger:  David Soria Parrad...@y3.php.net Fri Nov 30 18:18:02 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=c5cf9ab6d25e4673a65665aa92bb4c850e5641bc

Target:  a4bf4de6e393050a95ba866a8d407de432b48c7f
Author:  SVN Migration s...@php.net Fri, 30 Nov 2001 18:18:02 
+
Parents: c0e263c1a194627e8cb8caa7710866d4f9a805ba
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=a4bf4de6e393050a95ba866a8d407de432b48c7f
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC4'.

Changed paths:
  A  ext/mssql/php_mssql.c



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



[PHP-CVS] tag php-src: create tag PHP-4.1.0-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.0-RC2 in php-src.git was created
Tag: 317f2eebf8061bf6f00074774bcbf766086dafca
Tagger:  David Soria Parrad...@y3.php.net Tue Nov 13 01:40:18 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=317f2eebf8061bf6f00074774bcbf766086dafca

Target:  a9c0eb5d347a28a0ad71ca10eff115bf66f7f5a6
Author:  SVN Migration s...@php.net Tue, 13 Nov 2001 01:40:18 
+
Parents: c3a83e4c12feb151e6cc6e830e0bb1402dfc3ff4
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=a9c0eb5d347a28a0ad71ca10eff115bf66f7f5a6
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC2'.

Changed paths:
  A  ext/mssql/php_mssql.c



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



[PHP-CVS] tag php-src: create tag PHP-4.1.2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.2 in php-src.git was created
Tag: ea41c5e499277e33dda8a128985dd602c908bf47
Tagger:  David Soria Parrad...@y3.php.net Wed Feb 27 09:06:34 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=ea41c5e499277e33dda8a128985dd602c908bf47

Target:  674328d1faeb1a1f7af210efb7bf0e9c4839124c
Author:  SVN Migration s...@php.net Wed, 27 Feb 2002 09:06:34 
+
Parents: ef03277c51b09d9a8e9646434bb0c4419ae8a2d0
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=674328d1faeb1a1f7af210efb7bf0e9c4839124c
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_2'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.1.0-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.0-RC1 in php-src.git was created
Tag: 518a852ac938347c321255035cb853bf2fae3f06
Tagger:  David Soria Parrad...@y3.php.net Fri Oct 19 05:13:10 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=518a852ac938347c321255035cb853bf2fae3f06

Target:  78fab8b5d87967783dbd8709bac88c5806d22ad7
Author:  SVN Migration s...@php.net Fri, 19 Oct 2001 05:13:10 
+
Parents: 73b91a7d8fb4822a5ed8bce934719c502fc44e7d
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=78fab8b5d87967783dbd8709bac88c5806d22ad7
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC1'.

Changed paths:
  A  ext/mssql/php_mssql.c
  D  pear/scripts/pear.bat



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



[PHP-CVS] tag php-src: create tag PHP-4.1.0-RC5

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.0-RC5 in php-src.git was created
Tag: ed168eb6850efd09ef415ec610e49fdebfe60ac5
Tagger:  David Soria Parrad...@y3.php.net Mon Dec 3 10:56:14 2001 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC5'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=ed168eb6850efd09ef415ec610e49fdebfe60ac5

Target:  0b54c49983923d7d5706340b1af7255a238fa4e7
Author:  SVN Migration s...@php.net Mon, 3 Dec 2001 10:56:14 +
Parents: 0858af07ec313742ec4284c1d1afff3d1c01a895
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=0b54c49983923d7d5706340b1af7255a238fa4e7
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_0RC5'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.1.1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.1.1 in php-src.git was created
Tag: 6084eed302df932a5fbc282f8f0309956d4005f2
Tagger:  David Soria Parrad...@y3.php.net Wed Dec 26 10:36:12 
2001 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=6084eed302df932a5fbc282f8f0309956d4005f2

Target:  bdf652b6514c5234e989cd21cf8be29f44d4e76d
Author:  SVN Migration s...@php.net Wed, 26 Dec 2001 10:36:12 
+
Parents: 3256f775cd4dfd2d4677a9d77816ae0b9d26b55e
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=bdf652b6514c5234e989cd21cf8be29f44d4e76d
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_1_1'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.2.0-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.0-RC1 in php-src.git was created
Tag: 99c6bbfa48cc429623452f4f19cd87277560354a
Tagger:  David Soria Parrad...@y3.php.net Wed Mar 20 20:09:59 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=99c6bbfa48cc429623452f4f19cd87277560354a

Target:  f476a2672132becf22e532b4953e0f4591b90e2a
Author:  SVN Migration s...@php.net Wed, 20 Mar 2002 20:09:59 
+
Parents: 8251af93d901bcf99c68f325b009b7dea0c79fdd
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=f476a2672132becf22e532b4953e0f4591b90e2a
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC1'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.2.0

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.0 in php-src.git was created
Tag: f29d7d60d6b040bfc070526a92c1868628fd7084
Tagger:  David Soria Parrad...@y3.php.net Mon Apr 22 10:20:24 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=f29d7d60d6b040bfc070526a92c1868628fd7084

Target:  0cf31a3d89b872e89110f19fd7393ad72934aadc
Author:  SVN Migration s...@php.net Mon, 22 Apr 2002 10:20:24 
+
Parents: 83f57e03814967ea87018dcf329cb0eebb06fc95
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=0cf31a3d89b872e89110f19fd7393ad72934aadc
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0'.

Changed paths:
  M  NEWS
  M  configure.in
  D  ext/mbstring/tests/common.inc
  M  main/php_version.h



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



[PHP-CVS] tag php-src: create tag PHP-4.2.0-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.0-RC2 in php-src.git was created
Tag: d8910b711d6cdff99b8be804b830a8a0d2f1e0da
Tagger:  David Soria Parrad...@y3.php.net Wed Apr 3 19:47:14 2002 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=d8910b711d6cdff99b8be804b830a8a0d2f1e0da

Target:  f7838f5c2a3cec9e3b54b52b4bf7a28db8059b1d
Author:  SVN Migration s...@php.net Wed, 3 Apr 2002 19:47:14 +
Parents: 361b97226ece39f2d3176a5d96dcc6f72efd50f7
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=f7838f5c2a3cec9e3b54b52b4bf7a28db8059b1d
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC2'.

Changed paths:
  D  ext/mbstring/tests/common.inc



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



[PHP-CVS] tag php-src: create tag PHP-4.2.0-RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.0-RC3 in php-src.git was created
Tag: 34fa93757972dffd5d6d521a3a3fb4df1eea95fa
Tagger:  David Soria Parrad...@y3.php.net Fri Apr 12 19:14:19 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=34fa93757972dffd5d6d521a3a3fb4df1eea95fa

Target:  e16d458b636116b34d3d16d685fbeb97a905ef74
Author:  SVN Migration s...@php.net Fri, 12 Apr 2002 19:14:19 
+
Parents: 0ed61df9d55de45b7c7ad52a1100574ea931f1f0
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=e16d458b636116b34d3d16d685fbeb97a905ef74
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC3'.

Changed paths:
  D  ext/mbstring/tests/common.inc



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



[PHP-CVS] tag php-src: create tag PHP-4.2.1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.1 in php-src.git was created
Tag: 845f237e94531e1780e09f69c9a1ce34a062c13b
Tagger:  David Soria Parrad...@y3.php.net Sun May 12 21:23:58 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=845f237e94531e1780e09f69c9a1ce34a062c13b

Target:  8328c689402a5c3c244b5eba6679892b561c83f2
Author:  SVN Migration s...@php.net Sun, 12 May 2002 21:23:58 
+
Parents: fb1b7c906034fc5f9a7c1d508114a26dbe124323
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=8328c689402a5c3c244b5eba6679892b561c83f2
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_1'.

Changed paths:
  D  ext/mbstring/tests/common.inc



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



[PHP-CVS] tag php-src: create tag PHP-4.2.0-RC4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.0-RC4 in php-src.git was created
Tag: f60f4e16d2923b4114b93f20ad9ec35d2c68a826
Tagger:  David Soria Parrad...@y3.php.net Sun Apr 14 18:28:33 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=f60f4e16d2923b4114b93f20ad9ec35d2c68a826

Target:  0bbd20d04ef133006c9fa0c2f6af94e96b05744f
Author:  SVN Migration s...@php.net Sun, 14 Apr 2002 18:28:33 
+
Parents: fa002563bc37cfa14e837534fed75d26a5e5e7a2
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=0bbd20d04ef133006c9fa0c2f6af94e96b05744f
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_0RC4'.

Changed paths:
  D  ext/mbstring/tests/common.inc
  M  ext/oci8/oci8.c



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



[PHP-CVS] tag php-src: create tag PHP-4.2.1-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.1-RC1 in php-src.git was created
Tag: 06c6b19ef356b867367d70b9911a202dc67414ac
Tagger:  David Soria Parrad...@y3.php.net Wed May 1 12:11:19 2002 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_1RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=06c6b19ef356b867367d70b9911a202dc67414ac

Target:  010af6194bd7cf669035c097ef21eb95b1889ac7
Author:  SVN Migration s...@php.net Wed, 1 May 2002 12:11:19 +
Parents: 37fb4ddb51e0fe3715ece7e24572727e70c2
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=010af6194bd7cf669035c097ef21eb95b1889ac7
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_1RC1'.

Changed paths:
  D  ext/mbstring/tests/common.inc



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



[PHP-CVS] tag php-src: create tag PHP-4.2.1-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.1-RC2 in php-src.git was created
Tag: 2b916e7539ad5c0b3b9d5f310fda904807d6acff
Tagger:  David Soria Parrad...@y3.php.net Mon May 6 17:32:06 2002 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_1RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=2b916e7539ad5c0b3b9d5f310fda904807d6acff

Target:  24b2921a16d3fde8a06c9414b91c7e277e44ecbe
Author:  SVN Migration s...@php.net Mon, 6 May 2002 17:32:06 +
Parents: a6faca14b71596b88d898eb5c5be80a6780085b9
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=24b2921a16d3fde8a06c9414b91c7e277e44ecbe
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_1RC2'.

Changed paths:
  D  ext/mbstring/tests/common.inc



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



[PHP-CVS] tag php-src: create tag PHP-4.2.2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.2 in php-src.git was created
Tag: 686011e9db1a16729a983725c839bc1e353481d6
Tagger:  David Soria Parrad...@y3.php.net Sun Jul 21 12:49:34 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=686011e9db1a16729a983725c839bc1e353481d6

Target:  6e53dfe98562391149483fe84be1ff7e16f74a51
Author:  SVN Migration s...@php.net Sun, 21 Jul 2002 12:49:34 
+
Parents: a435b7baa98ee17b6af7cd8a157ee64344b65bc6
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=6e53dfe98562391149483fe84be1ff7e16f74a51
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_2'.

Changed paths:



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



[PHP-CVS] tag php-src: create tag PHP-4.2.3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.3 in php-src.git was created
Tag: 94afb19e7c58121edaf9e619472585a0fbfdda01
Tagger:  David Soria Parrad...@y3.php.net Thu Sep 5 23:20:51 2002 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=94afb19e7c58121edaf9e619472585a0fbfdda01

Target:  7203320201254d6ca41ddc812f65ed07209a7ab6
Author:  SVN Migration s...@php.net Thu, 5 Sep 2002 23:20:51 +
Parents: 27176de818d422b79739a79aac23ee5f3cbd1d11
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=7203320201254d6ca41ddc812f65ed07209a7ab6
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_3'.

Changed paths:
  D  TSRM/tsrm_config.nw.h
  D  TSRM/tsrm_nw.c
  D  TSRM/tsrm_nw.h
  D  ext/mysql/mysql.mak
  D  main/config.nw.h
  D  netware/build.bat
  D  netware/buildext.bat
  D  netware/buildsapi.bat
  D  netware/common.mif
  D  netware/mktemp.h
  D  netware/php4apache.mak
  D  netware/pwd.h
  D  netware/sys/stat.h
  D  netware/tsrm.mak
  D  netware/zend.mak



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



[PHP-CVS] tag php-src: create tag PHP-4.2.3-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.3-RC1 in php-src.git was created
Tag: f41e8b72a7197ff5a87592106140e06c0afefc38
Tagger:  David Soria Parrad...@y3.php.net Sat Aug 24 01:07:32 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_3RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=f41e8b72a7197ff5a87592106140e06c0afefc38

Target:  677471c12652ce1b504978497f1b87a98a45c4b3
Author:  SVN Migration s...@php.net Sat, 24 Aug 2002 01:07:32 
+
Parents: 303da734d9412cb5ee68618090426afdf5c7bf4e
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=677471c12652ce1b504978497f1b87a98a45c4b3
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_3RC1'.

Changed paths:
  D  TSRM/tsrm_config.nw.h
  D  TSRM/tsrm_nw.c
  D  TSRM/tsrm_nw.h
  D  ext/mysql/mysql.mak
  D  ext/standard/tests/file/002.phpt
  D  main/config.nw.h
  M  makedist
  D  netware/build.bat
  D  netware/buildext.bat
  D  netware/buildsapi.bat
  D  netware/common.mif
  D  netware/mktemp.h
  D  netware/php4apache.mak
  D  netware/pwd.h
  D  netware/sys/stat.h
  D  netware/tsrm.mak
  D  netware/zend.mak



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



[PHP-CVS] tag php-src: create tag PHP-4.2.3-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.2.3-RC2 in php-src.git was created
Tag: 73097eff00d8ed5643269b1ca3db8c51dc5a49fb
Tagger:  David Soria Parrad...@y3.php.net Mon Sep 2 15:28:27 2002 
+
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_3RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=73097eff00d8ed5643269b1ca3db8c51dc5a49fb

Target:  8923943a24f70c3a9dce66d59a4d382949ad4407
Author:  SVN Migration s...@php.net Mon, 2 Sep 2002 15:28:27 +
Parents: ca9cfc7525c253fe7e3b3e419f35e9123a0a6144
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=8923943a24f70c3a9dce66d59a4d382949ad4407
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_2_3RC2'.

Changed paths:
  D  TSRM/tsrm_config.nw.h
  D  TSRM/tsrm_nw.c
  D  TSRM/tsrm_nw.h
  D  ext/mysql/mysql.mak
  D  main/config.nw.h
  D  netware/build.bat
  D  netware/buildext.bat
  D  netware/buildsapi.bat
  D  netware/common.mif
  D  netware/mktemp.h
  D  netware/php4apache.mak
  D  netware/pwd.h
  D  netware/sys/stat.h
  D  netware/tsrm.mak
  D  netware/zend.mak



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



[PHP-CVS] tag php-src: create tag PHP-4.3.0

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.3.0 in php-src.git was created
Tag: 3c312849f64813b00cd483805ba0bdeea3a3db13
Tagger:  David Soria Parrad...@y3.php.net Fri Dec 27 04:47:46 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=3c312849f64813b00cd483805ba0bdeea3a3db13

Target:  2a91937af1913e052a5c14109d1491ed412d03e6
Author:  SVN Migration s...@php.net Fri, 27 Dec 2002 04:47:46 
+
Parents: 8ef253d9dc39df8aa4feaeae6055ec8b1c544b9e
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=2a91937af1913e052a5c14109d1491ed412d03e6
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0'.

Changed paths:
  D  ext/dba/php_db4.h



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



[PHP-CVS] tag php-src: create tag PHP-4.3.0-RC1

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.3.0-RC1 in php-src.git was created
Tag: a808f260cfcf682fcc031353a3d7aedfc89bcbc0
Tagger:  David Soria Parrad...@y3.php.net Thu Nov 14 17:03:37 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC1'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=a808f260cfcf682fcc031353a3d7aedfc89bcbc0

Target:  9f62abd3c61c9bbae5d1dd1ee2e9cf204bf4cc7b
Author:  SVN Migration s...@php.net Thu, 14 Nov 2002 17:03:37 
+
Parents: f16941595ae1a3641ec1b2043e203197d9da455c
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=9f62abd3c61c9bbae5d1dd1ee2e9cf204bf4cc7b
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC1'.

Changed paths:
  D  ext/cybermut/config.m4
  D  ext/cybermut/cybermut.c
  D  ext/cybermut/cybermut.xml
  D  ext/cybermut/php_cybermut.h
  D  ext/cybermut/tests/001.phpt



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



[PHP-CVS] tag php-src: create tag PHP-4.3.0-RC3

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.3.0-RC3 in php-src.git was created
Tag: e15ee52050cb1783db4651983bc1718611f0ec07
Tagger:  David Soria Parrad...@y3.php.net Wed Dec 11 20:10:58 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC3'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=e15ee52050cb1783db4651983bc1718611f0ec07

Target:  0fc0a6084ef523883d968296ad8198597e7b90cc
Author:  SVN Migration s...@php.net Wed, 11 Dec 2002 20:10:58 
+
Parents: 9aee6dce1a74cdf5b0af55ccbae36879d2922204
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=0fc0a6084ef523883d968296ad8198597e7b90cc
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC3'.

Changed paths:
  D  ext/dba/php_db4.h
  M  ext/fdf/fdf.c
  M  run-tests.php



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



[PHP-CVS] tag php-src: create tag PHP-4.3.0-RC2

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.3.0-RC2 in php-src.git was created
Tag: c5041aa9309780c5f8009ad6042b8252cdc4360c
Tagger:  David Soria Parrad...@y3.php.net Wed Nov 27 18:54:55 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC2'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=c5041aa9309780c5f8009ad6042b8252cdc4360c

Target:  b8e1f3e0467611a2fae8414a1b5cad43e2ccf2fb
Author:  SVN Migration s...@php.net Wed, 27 Nov 2002 18:54:55 
+
Parents: 2ebb360d0eba52562caa2f905a71aaafc7ec1c29
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=b8e1f3e0467611a2fae8414a1b5cad43e2ccf2fb
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC2'.

Changed paths:
  D  ext/dba/php_db4.h
  M  ext/imap/php_imap.c
  D  sapi/cgi/libfcgi/include/fcgi_config_win32.h



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



[PHP-CVS] tag php-src: create tag PHP-4.3.0-RC4

2012-03-28 Thread Stanislav Malyshev
Tag PHP-4.3.0-RC4 in php-src.git was created
Tag: cb23406605d1f2dea1e5bb8ba6e3402b09cd0c20
Tagger:  David Soria Parrad...@y3.php.net Sat Dec 21 01:30:21 
2002 +
Log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC4'.

Link: 
http://git.php.net/?p=php-src.git;a=tag;h=cb23406605d1f2dea1e5bb8ba6e3402b09cd0c20

Target:  754153c5d11425efa38ca9456f5f052f11a1722c
Author:  SVN Migration s...@php.net Sat, 21 Dec 2002 01:30:21 
+
Parents: f380b6b5da97fa9813b75530c24dbe995b9a601e
Target link: 
http://git.php.net/?p=php-src.git;a=commitdiff;h=754153c5d11425efa38ca9456f5f052f11a1722c
Target log:
This commit was manufactured by cvs2svn to create tag 'php_4_3_0RC4'.

Changed paths:
  D  ext/dba/php_db4.h



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



  1   2   3   4   >