[PHP-CVS] cvs: php-src / header

2003-09-19 Thread Jani Taskinen
sniper  Fri Sep 19 05:02:14 2003 EDT

  Modified files:  
/php-srcheader 
  Log:
  Is the version 5 now? :)
  
Index: php-src/header
diff -u php-src/header:1.13 php-src/header:1.14
--- php-src/header:1.13 Tue Jun 10 16:03:23 2003
+++ php-src/header  Fri Sep 19 05:02:14 2003
@@ -1,6 +1,6 @@
 /*
   +--+
-  | PHP Version 4|
+  | PHP Version 5|
   +--+
   | Copyright (c) 1997-2003 The PHP Group|
   +--+
@@ -16,4 +16,4 @@
   +--+
 */
 
-/* $Id: header,v 1.13 2003/06/10 20:03:23 imajes Exp $ */
+/* $Id: header,v 1.14 2003/09/19 09:02:14 sniper Exp $ */

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



[PHP-CVS] cvs: php-src /win32 install.txt

2003-09-19 Thread Derick Rethans
derick  Fri Sep 19 08:24:06 2003 EDT

  Modified files:  
/php-src/win32  install.txt 
  Log:
  - Fixed typo
  
Index: php-src/win32/install.txt
diff -u php-src/win32/install.txt:1.21 php-src/win32/install.txt:1.22
--- php-src/win32/install.txt:1.21  Mon Jun 30 16:29:52 2003
+++ php-src/win32/install.txt   Fri Sep 19 08:24:06 2003
@@ -195,7 +195,7 @@
   php_zlib.dll  ZLib compression functions
 
  For more information see the section about Windows extensions at
- http://www.php.net/manual/en/install-windows.php#install.windows.extensions
+ http://www.php.net/manual/en/install.windows.php#install.windows.extensions
 
 
 Web server configuration

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



[PHP-CVS] cvs: php-src(PHP_4_3) /win32 install.txt

2003-09-19 Thread Derick Rethans
derick  Fri Sep 19 08:24:48 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php-src/win32  install.txt 
  Log:
  MFH: - Fixed typo
  
Index: php-src/win32/install.txt
diff -u php-src/win32/install.txt:1.16.2.2 php-src/win32/install.txt:1.16.2.3
--- php-src/win32/install.txt:1.16.2.2  Thu Dec 19 13:11:58 2002
+++ php-src/win32/install.txt   Fri Sep 19 08:24:48 2003
@@ -195,7 +195,7 @@
   php_zlib.dll  ZLib compression functions
 
  For more information see the section about Windows extensions at
- http://www.php.net/manual/en/install-windows.php#install.windows.extensions
+ http://www.php.net/manual/en/install.windows.php#install.windows.extensions
 
 
 Web server configuration

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



[PHP-CVS] cvs: php-src(PHP_4_3) / NEWS

2003-09-19 Thread Ilia Alshanetsky
iliaa   Fri Sep 19 21:41:45 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php-srcNEWS 
  Log:
  Bug fixing news.
  
  
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.399 php-src/NEWS:1.1247.2.400
--- php-src/NEWS:1.1247.2.399   Thu Sep 18 20:44:57 2003
+++ php-src/NEWSFri Sep 19 21:41:45 2003
@@ -7,6 +7,7 @@
 - Fixed crash bug when non-existing save/serializer handler was used. (Jani)
 - Fixed memory leak in gethostbynamel() if an error occurs. (Sara)
 - Fixed FastCGI being unable to bind to a specific IP. (Sascha)
+- Fixed bug #25583 (Incorrect handling of absolute path without drive). (Ilia)
 - Fixed bug #25570 (Possible crash in apache2handler when zend_bailout called
   outside of zend_try {} block). (Ilia)
 - Fixed bug #25530 (checkdate() incorrectly handles floats). (Ilia)

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



[PHP-CVS] cvs: php-src /ext/standard dir.c

2003-09-19 Thread Ilia Alshanetsky
iliaa   Fri Sep 19 22:51:21 2003 EDT

  Modified files:  
/php-src/ext/standard   dir.c 
  Log:
  Fixed bug #25583 (Incorrect handling of paths starting with / on win32 
  inside glob() function).
  
  
Index: php-src/ext/standard/dir.c
diff -u php-src/ext/standard/dir.c:1.127 php-src/ext/standard/dir.c:1.128
--- php-src/ext/standard/dir.c:1.127Sat Aug  2 09:49:12 2003
+++ php-src/ext/standard/dir.c  Fri Sep 19 22:51:20 2003
@@ -16,7 +16,7 @@
+--+
  */
 
-/* $Id: dir.c,v 1.127 2003/08/02 13:49:12 helly Exp $ */
+/* $Id: dir.c,v 1.128 2003/09/20 02:51:20 iliaa Exp $ */
 
 /* {{{ includes/startup/misc */
 
@@ -373,6 +373,11 @@
cwd[0] = '\0';
}
cwd_skip = strlen(cwd)+1;
+#ifdef PHP_WIN32
+   if (IS_SLASH(cwd[0])  !IS_UNC_PATH(pattern, pattern_len)) {
+   cwd[2] = '\0';
+   }
+#endif
snprintf(work_pattern, MAXPATHLEN, %s%c%s, cwd, DEFAULT_SLASH, 
pattern);
pattern = work_pattern;
} 

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



[PHP-CVS] cvs: php-src(PHP_4_3) / NEWS /ext/standard dir.c

2003-09-19 Thread Ilia Alshanetsky
iliaa   Fri Sep 19 22:52:46 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php-srcNEWS 
/php-src/ext/standard   dir.c 
  Log:
  MFH: Fixed bug #25583 (Incorrect handling of paths starting with / on win32
  inside glob() function).
  
  
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.400 php-src/NEWS:1.1247.2.401
--- php-src/NEWS:1.1247.2.400   Fri Sep 19 21:41:45 2003
+++ php-src/NEWSFri Sep 19 22:52:44 2003
@@ -7,7 +7,8 @@
 - Fixed crash bug when non-existing save/serializer handler was used. (Jani)
 - Fixed memory leak in gethostbynamel() if an error occurs. (Sara)
 - Fixed FastCGI being unable to bind to a specific IP. (Sascha)
-- Fixed bug #25583 (Incorrect handling of absolute path without drive). (Ilia)
+- Fixed bug #25583 (Incorrect handling of paths starting with / on win32 
+  inside glob() function). (Ilia)
 - Fixed bug #25570 (Possible crash in apache2handler when zend_bailout called
   outside of zend_try {} block). (Ilia)
 - Fixed bug #25530 (checkdate() incorrectly handles floats). (Ilia)
Index: php-src/ext/standard/dir.c
diff -u php-src/ext/standard/dir.c:1.109.2.10 php-src/ext/standard/dir.c:1.109.2.11
--- php-src/ext/standard/dir.c:1.109.2.10   Wed Jul 23 17:41:53 2003
+++ php-src/ext/standard/dir.c  Fri Sep 19 22:52:45 2003
@@ -16,7 +16,7 @@
+--+
  */
 
-/* $Id: dir.c,v 1.109.2.10 2003/07/23 21:41:53 iliaa Exp $ */
+/* $Id: dir.c,v 1.109.2.11 2003/09/20 02:52:45 iliaa Exp $ */
 
 /* {{{ includes/startup/misc */
 
@@ -371,6 +371,11 @@
cwd[0] = '\0';
}
cwd_skip = strlen(cwd)+1;
+#ifdef PHP_WIN32
+   if (IS_SLASH(cwd[0])  !IS_UNC_PATH(pattern, pattern_len)) {
+   cwd[2] = '\0';
+   }
+#endif
snprintf(work_pattern, MAXPATHLEN, %s%c%s, cwd, DEFAULT_SLASH, 
pattern);
pattern = work_pattern;
} 

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



[PHP-CVS] cvs: php-src /win32 glob.c

2003-09-19 Thread Jani Taskinen
sniper  Fri Sep 19 23:22:37 2003 EDT

  Modified files:  
/php-src/win32  glob.c 
  Log:
  Nuke compile warnings
  
Index: php-src/win32/glob.c
diff -u php-src/win32/glob.c:1.5 php-src/win32/glob.c:1.6
--- php-src/win32/glob.c:1.5Sun Feb 16 22:07:32 2003
+++ php-src/win32/glob.cFri Sep 19 23:22:36 2003
@@ -34,7 +34,7 @@
  * SUCH DAMAGE.
  */
 
-/* $Id: glob.c,v 1.5 2003/02/17 03:07:32 sniper Exp $ */
+/* $Id: glob.c,v 1.6 2003/09/20 03:22:36 sniper Exp $ */
 
 /*
  * glob(3) -- a superset of the one defined in POSIX 1003.2.
@@ -510,7 +510,7 @@
}
if (!(pglob-gl_flags  GLOB_NOSORT))
qsort(pglob-gl_pathv + pglob-gl_offs + oldpathc,
-   pglob-gl_pathc - oldpathc, sizeof(char *), compare);
+   pglob-gl_pathc - oldpathc, sizeof(char *), (const void *) 
compare);
return(0);
 }
 

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



[PHP-CVS] cvs: php-src(PHP_4_3) /win32 glob.c

2003-09-19 Thread Jani Taskinen
sniper  Fri Sep 19 23:22:55 2003 EDT

  Modified files:  (Branch: PHP_4_3)
/php-src/win32  glob.c 
  Log:
  MFH
  
Index: php-src/win32/glob.c
diff -u php-src/win32/glob.c:1.3.4.1 php-src/win32/glob.c:1.3.4.2
--- php-src/win32/glob.c:1.3.4.1Mon Jan 27 11:32:48 2003
+++ php-src/win32/glob.cFri Sep 19 23:22:54 2003
@@ -34,7 +34,7 @@
  * SUCH DAMAGE.
  */
 
-/* $Id: glob.c,v 1.3.4.1 2003/01/27 16:32:48 edink Exp $ */
+/* $Id: glob.c,v 1.3.4.2 2003/09/20 03:22:54 sniper Exp $ */
 
 /*
  * glob(3) -- a superset of the one defined in POSIX 1003.2.
@@ -72,7 +72,7 @@
 #endif
 #endif
 
-#include php.h
+#include php.h
 #include sys/stat.h
 
 #include ctype.h
@@ -510,7 +510,7 @@
}
if (!(pglob-gl_flags  GLOB_NOSORT))
qsort(pglob-gl_pathv + pglob-gl_offs + oldpathc,
-   pglob-gl_pathc - oldpathc, sizeof(char *), compare);
+   pglob-gl_pathc - oldpathc, sizeof(char *), (const void *) 
compare);
return(0);
 }
 

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



[PHP-CVS] cvs: CVSROOT / avail

2003-09-19 Thread Rasmus Lerdorf
rasmus  Sat Sep 20 01:50:13 2003 EDT

  Modified files:  
/CVSROOTavail 
  Log:
  Karma for new accounts
  
  Index: CVSROOT/avail
diff -u CVSROOT/avail:1.749 CVSROOT/avail:1.750
--- CVSROOT/avail:1.749 Thu Sep 18 16:31:24 2003
+++ CVSROOT/avail   Sat Sep 20 01:50:12 2003
@@ -26,7 +26,7 @@
 # The PHP Documentation Group maintains the documentation and its
 # translations.
 
-avail|frogger,coldocean,alan_k,fleaslob,torben,lynch,kk,ted,paul,mbritton,coar,joey,bibi,mrobinso,perugini,tzwenny,hirokawa,drews,paulsen,hartmann,leon,jonen,tschuer,tfromm,manuel,stas,danbeck,sli,jmcastagnetto,mohrt,goba,samesch,jon,soneca,ronabop,glace,latoserver,rafael,jan,jcmeloni,chrullrich,mk,sebastian,troels,mathieu,phaethon,mj,corean,pandach,cycle98,vizvil,regina,cynic,jpm,dams,karoora,pcraft,suvia,zak,zimt,jmoore,ftfuture,ag315,bbonev,afortaleza,neotron,cg,delrom,jkj,hellekin,kgergely,cnewbill,fuzzy74,bjoern,fams,smasiello,dim,lucasr,cpereira,ernani,theseer,noribsd,subjective,ufux,hadar_p,asautins,dbenson,aleczapka,tom,amiller,cortesi,rarruda,betz,philip,alindeman,thyla,cucinato,zyprexia,tpug,mitja,conni,sts,georg,nmav,subbie,leszek,spheroid,slawek,alan_dangelo,ae,nohn,kaser01,visualmind,kurtz,luk,tronic,moh,bernd,yohgaki,fujimoto,gerzson,webler,spooky,cece,daniel,boo,nhoizey,joerg,imajes,hakan,chief977,shlomi,raful,yuval,tomer,barak,ido,mork,lior,gal,adiju,cr_depend,florian,kappu,muricaru,dt,critix,ck,costra,fancao0515,tibee,eriksson,wenz,bs,anderson,tal,sander,matroz,ave,adu,mmeier,wentzel,scaro,aspinei,lmaxcar,manuzhai,darvina,peter,maxim,romakhin,n0nick,attila,sagi,kai,microbrain,rhheo,shimi,k.schroeder,djworld,emil,lboshell,netholic,dmitry83,progcom,verdana,yincheng,surfmax,nicos,chregu,msopacua,bbd,cyril,gregory,hudzilla,klean,mignoni,wiesemann,xqi,mersal,zruya,sean,staybyte,aber_sabeel,alzahrani,thomaslio,sfox,jippie,antonio,ahxiao,akcakayaa,allhibi,aner,black,class007,digo,dima,dorons,eshare,hpop1,itay,juppie,mrmatrix,saad,thomasgm,xbite,tobsn,jome,analytik,outsider,heymarcel,asmodean,bader,elmaystro,sp,truelight,gnuhacker,_batman_,sachat,dallas,dejan,zer0fill,steve3d,lm92,bradmssw,tahani,victor,erica,simonh,phpman,mrphp,notarius,joseph,mmkhajah,mohammed,proton,klootz,takashima,leoca,ahmad,abobader,fboudot,wurm,hakawy,felix,ahmedss,mahrous2020,yorgo,gal_ga,abodive,ama,andras,hassen,jkhdk,okamura,popov,xman,fernandoc,avenger,hwin,tix,alrehawi_,liuming,ramysaweres,astone,shiflett,jaenecke,bdensley,adamchan,jingfs,murphy,potatotsang,the_q,jsheets,xelis,equerci,phpcatala,tofanini,umut,kriga,ray,royhuggins,logician,almanar,alexws,gonik,haiaw,lkwang_cn,shadowwulf,telecart,pongsakorn,naveed,shivas,tularis,angela,decorj,hitcho,kevinkee,nmee,thx1140,crotalus,didou,novotnyr,sil,traduim,gui,mgf,ivanr,michal,tsirman,momo,cysoft,firefox,kouber,mipac,muslem,tomysk,vemarkov,garth,lord_lele,stone,laacz,tony2001,retnug,ernestyang,hatem,house,luisdaniel,nizar,nvivo,seth,tomh,danguer,adam,nio,wassago,beeven,colacino,zvaranka,cesarguru,chubu,dark2907,portoban,reven,wizzard,sywr,koendw83,rylin,webstudio,jsjohnst,dmanusset,et,pitiphan,mbr,cdalar,alrashoudi,hafid,enough,zhouhao007,jnorbi,lorenzohgh,denisr,coder03,jcclaros,thomas,freeman,rioter,jschultz,davey,belleto,jtacon,yuw,ohill,elfyn,noam,nathan,salman,cheezy,ene,rezaiqbal,purnomo,dufiga_php,ftp_geo,udhien,prio,luckyguy354,maf,handi,meme,satiri,maddankara,rildo,hd,ali,lpj,adhitama,engkongs,preilly|phpdoc,ZendAPI,phpdoc-ar,phpdoc-cs,phpdoc-de,phpdoc-es,phpdoc-fi,phpdoc-fr,phpdoc-he,phpdoc-hk,phpdoc-hu,phpdoc-it,phpdoc-ja,phpdoc-kr,phpdoc-lt,phpdoc-nl,phpdoc-pl,phpdoc-pt_BR,phpdoc-ro,phpdoc-ru,phpdoc-sk,phpdoc-sl,phpdoc-sv,phpdoc-tr,phpdoc-tw,phpdoc-zh,phpdoc-el,phpdoc-id