[PHP-CVS-DAILY] cvs: php-src / ChangeLog

2003-10-23 Thread changelog
changelog   Thu Oct 23 20:34:02 2003 EDT

  Modified files:  
/php-srcChangeLog 
  Log:
  ChangeLog update
  
Index: php-src/ChangeLog
diff -u php-src/ChangeLog:1.1425 php-src/ChangeLog:1.1426
--- php-src/ChangeLog:1.1425Wed Oct 22 20:32:49 2003
+++ php-src/ChangeLog   Thu Oct 23 20:34:00 2003
@@ -1,3 +1,15 @@
+2003-10-23  Gabor Hojtsy  [EMAIL PROTECTED]
+
+* win32/install.txt:
+  The web server user name starts with IUSR_ and not ISUR_,
+  and some clarifications from Phil Driscoll
+
+2003-10-23  Sebastian Bergmann  [EMAIL PROTECTED]
+
+* ZendEngine2/Zend.dsp
+  ZendEngine2/ZendTS.dsp:
+  Add zend_interfaces.{c|h}.
+
 2003-10-22  Ilia Alshanetsky  [EMAIL PROTECTED]
 
 * (PHP_4_3)


[PHP-CVS] cvs: functable / php5protos php5protos.awk version5.tags

2003-10-23 Thread Hartmut Holzgraefe
hholzgraThu Oct 23 03:08:47 2003 EDT

  Added files: 
/functable  php5protos php5protos.awk version5.tags 
  Log:
  go for 5 ...
  

Index: functable/php5protos.awk
+++ functable/php5protos.awk
/^[[:space:]]*\/\*[[:space:]]*\{\{\{[[:space:]]*proto/ { 
split($0,proto,proto[[:space:]]+|\\*/[[:space:]]*$);
parse=1; 
same=1;
lc=0;
}
/\*\// {
if(parse) {
lines=;
for(i=0;ilc;i++) {
lines = sprintf(%s %s ,lines,line[i]);
}
if(!same) {
split($0,temp,\*/[[:space:]]*$);
lines = sprintf(%s %s ,lines,temp[1]);
}
split(proto[2],p2, |\\();
gsub(','',lines);
printf(insert into proto5 set function 
='%s',proto='%s',proto_desc='%s';\n,p2[2],proto[2],lines);
parse=0;
}
next;
}
{   
if(parse  !same) { 
split($0,temp,\*/[[:space:]]*$);
line[lc++]=temp[1];

} 
same=0;
}

Index: functable/version5.tags
+++ functable/version5.tags

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



[PHP-CVS] cvs: spl / spl_functions.c

2003-10-23 Thread Marcus Boerger
helly   Thu Oct 23 03:09:05 2003 EDT

  Modified files:  
/splspl_functions.c 
  Log:
  Update
  
Index: spl/spl_functions.c
diff -u spl/spl_functions.c:1.16 spl/spl_functions.c:1.17
--- spl/spl_functions.c:1.16Sat Sep  6 22:37:10 2003
+++ spl/spl_functions.c Thu Oct 23 03:09:04 2003
@@ -72,9 +72,7 @@
 /* {{{ spl_register_implement */
 void spl_register_implement(zend_class_entry * class_entry, zend_class_entry * 
interface_entry TSRMLS_DC)
 {
-   class_entry-interfaces = realloc(class_entry-interfaces, 
sizeof(zend_class_entry*) * (class_entry-num_interfaces+1));
-   class_entry-interfaces[class_entry-num_interfaces++] = interface_entry;
-   zend_do_implement_interface(class_entry, interface_entry);
+   zend_class_implements(class_entry TSRMLS_CC, 1, interface_entry);
 }
 /* }}} */
 

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



[PHP-CVS] cvs: functable / genfunclist

2003-10-23 Thread Hartmut Holzgraefe
hholzgraThu Oct 23 03:10:15 2003 EDT

  Modified files:  
/functable  genfunclist 
  Log:
  add #5
  
Index: functable/genfunclist
diff -u functable/genfunclist:1.12 functable/genfunclist:1.13
--- functable/genfunclist:1.12  Fri Jul 19 19:50:36 2002
+++ functable/genfunclist   Thu Oct 23 03:10:15 2003
@@ -5,7 +5,7 @@
 
 # for the releases we do not replace informations
 # already available
-for version in $versions php_3_cvs php_4_cvs
+for version in $versions php_3_cvs php_4_cvs php_5_cvs
 do
echo -n parsing version $version ... 

@@ -27,7 +27,7 @@
   rm -f tmp.txt ; touch tmp.txt
   for file in `find $version -name *.[c] -print -o -name *.ec -print | xargs 
egrep -li function_entry| sed -es/\.\///g` 
   do
-file2=`echo $file | sed -es|^php_3[^/]*|php3|g | sed -es|^php_4[^/]*|php4|g`
+file2=`echo $file | sed -es|^php_3[^/]*|php3|g | sed -es|^php_4[^/]*|php4|g | 
sed -es|^php_5[^/]*|php5|g`
 awk -f ../funcparse.awk  $file | sed -es/ *//g | sed -es/  //g | sed 
-es|$|,'$file2');|g  tmp.txt
   done
   
@@ -52,8 +52,10 @@
 mysql -uphpdoc -pphpdoc phpdoc EOF
update funclist set versionid=399 where version='php_3_cvs';
update funclist set versionid=499 where version='php_4_cvs';
+   update funclist set versionid=599 where version='php_5_cvs';
update funcimp  set versionid=399 where version='php_3_cvs';
update funcimp  set versionid=499 where version='php_4_cvs';
+   update funcimp  set versionid=599 where version='php_5_cvs';
delete from funclist where function like \t%;  
delete from funclist where function like ;  
   delete from funclist where alias_for='warn_not_available';

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



[PHP-CVS] cvs: functable /lib dbconnect.php

2003-10-23 Thread Hartmut Holzgraefe
hholzgraThu Oct 23 03:11:44 2003 EDT

  Modified files:  
/functable/lib  dbconnect.php 
  Log:
  set exit status to non-zero on errors, typo fix ...
  
  
Index: functable/lib/dbconnect.php
diff -u functable/lib/dbconnect.php:1.1 functable/lib/dbconnect.php:1.2
--- functable/lib/dbconnect.php:1.1 Fri Sep 20 07:31:27 2002
+++ functable/lib/dbconnect.php Thu Oct 23 03:11:44 2003
@@ -1,7 +1,7 @@
 ?php
 
 $db = mysql_connect($dbhost, $dbuser, $dbpass);
-if(! $db) { echo mysql_error(); exit; }
-if(! mysql_select_db($dbname)) { echo mysq_error(); exit;}
+if(! $db) { echo mysql_error(); exit(3); }
+if(! mysql_select_db($dbname)) { echo mysql_error(); exit(3);}
 
 ?

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



[PHP-CVS] cvs: functable /lib/statistics aliases.php no_prototype.php not_published.php undocumented_aliases.php undocumented_functions.php

2003-10-23 Thread Hartmut Holzgraefe
hholzgraThu Oct 23 03:13:08 2003 EDT

  Modified files:  
/functable/lib/statistics   aliases.php no_prototype.php 
not_published.php 
undocumented_aliases.php 
undocumented_functions.php 
  Log:
  head is now php 5 cvs
  
Index: functable/lib/statistics/aliases.php
diff -u functable/lib/statistics/aliases.php:1.1 
functable/lib/statistics/aliases.php:1.2
--- functable/lib/statistics/aliases.php:1.1Tue May 28 07:42:38 2002
+++ functable/lib/statistics/aliases.phpThu Oct 23 03:13:07 2003
@@ -8,7 +8,7 @@
   , funclist.alias_for AS aname
   , funclist.linenoAS lineno
FROM funclist 
-  WHERE funclist.versionid = 499 
+  WHERE funclist.versionid = 599 
 AND funclist.alias_for IS NOT NULL 
ORDER BY funclist.filename
   , funclist.function
Index: functable/lib/statistics/no_prototype.php
diff -u functable/lib/statistics/no_prototype.php:1.1 
functable/lib/statistics/no_prototype.php:1.2
--- functable/lib/statistics/no_prototype.php:1.1   Tue May 28 07:42:55 2002
+++ functable/lib/statistics/no_prototype.php   Thu Oct 23 03:13:07 2003
@@ -7,11 +7,11 @@
   , funclist.filename AS file
   , funclist.lineno   AS lineno 
FROM funclist 
-  LEFT JOIN proto4 
- ON funclist.function = proto4.function 
-  WHERE proto4.function IS NULL 
+  LEFT JOIN proto5
+ ON funclist.function = proto5.function 
+  WHERE proto5.function IS NULL 
 AND alias_for IS NULL  
-AND versionid = 499 
+AND versionid = 599 
ORDER BY funclist.filename
   , funclist.function
 );
Index: functable/lib/statistics/not_published.php
diff -u functable/lib/statistics/not_published.php:1.1 
functable/lib/statistics/not_published.php:1.2
--- functable/lib/statistics/not_published.php:1.1  Tue May 28 07:42:59 2002
+++ functable/lib/statistics/not_published.php  Thu Oct 23 03:13:07 2003
@@ -8,7 +8,7 @@
 LEFT OUTER JOIN funclist f 
  ON (f.function  = i.function or f.alias_for = i.function)
 AND f.versionid = i.versionid 
- 
WHERE i.versionid = 499 
+ 
WHERE i.versionid = 599 
 AND f.versionid IS NULL
 ORDER BY file
   , function
@@ -16,7 +16,7 @@
 $count['notpub']=mysql_num_rows($result);
 while($row=mysql_fetch_array($result)) {
bg_toggle();
-   $filename = str_replace(php_4_cvs,php4,$row[file]);
+   $filename = str_replace(php_5_cvs,php5,$row[file]);
print(tr 
bgcolor=\$bgcolor\td.fpage($row[function])./tdtd.sourceref($filename.#.$row[lineno])./td/tr\n);
 }
 mysql_free_result($result);
Index: functable/lib/statistics/undocumented_aliases.php
diff -u functable/lib/statistics/undocumented_aliases.php:1.1 
functable/lib/statistics/undocumented_aliases.php:1.2
--- functable/lib/statistics/undocumented_aliases.php:1.1   Tue May 28 07:43:09 
2002
+++ functable/lib/statistics/undocumented_aliases.php   Thu Oct 23 03:13:07 2003
@@ -11,7 +11,7 @@
   , funclist.linenoAS lineno
FROM funclist 
   LEFT JOIN docfile ON funclist.function = docfile.function 
-  WHERE funclist.versionid=499 
+  WHERE funclist.versionid=599 
 AND docfile.function IS NULL
 AND funclist.alias_for IS NOT NULL
ORDER BY funclist.filename
Index: functable/lib/statistics/undocumented_functions.php
diff -u functable/lib/statistics/undocumented_functions.php:1.1 
functable/lib/statistics/undocumented_functions.php:1.2
--- functable/lib/statistics/undocumented_functions.php:1.1 Tue May 28 07:43:13 
2002
+++ functable/lib/statistics/undocumented_functions.php Thu Oct 23 03:13:07 2003
@@ -8,7 +8,7 @@
 funclist.function AS fname
FROM funclist
   LEFT JOIN docfile ON funclist.function = docfile.function 
-  WHERE funclist.versionid = 499
+  WHERE funclist.versionid = 599
 AND funclist.alias_for IS NULL 
 AND docfile.function IS NULL  
ORDER BY 

[PHP-CVS] cvs: functable / update.all

2003-10-23 Thread Hartmut Holzgraefe
hholzgraThu Oct 23 03:13:54 2003 EDT

  Modified files:  
/functable  update.all 
  Log:
  checkout php 5 head
  
Index: functable/update.all
diff -u functable/update.all:1.11 functable/update.all:1.12
--- functable/update.all:1.11   Mon Jan 20 05:31:00 2003
+++ functable/update.allThu Oct 23 03:13:54 2003
@@ -3,7 +3,7 @@
 # test for net connection
 #if ping -c 1 -nq cvs.php.net /dev/null 2/dev/null
 #then 
-   HAVE_CVS=1
+ HAVE_CVS=1
 #else
 #  HAVE_CVS=0
 #fi
@@ -42,13 +42,14 @@
 cvs -d :pserver:[EMAIL PROTECTED]:/repository get -d php_3_cvs php3
   fi

-   # getting php4 releases
+  # getting php4 releases
   for release in `xargs echo  ../version4.tags`
   do
 if [ ! -d $release ]
 then 
echo fetching $release from cvs
-  ../cvs-get-release php4 $release
+  echo ../cvs-get-release php-src $release
+  ../cvs-get-release php-src $release
 else
   echo $release already there
 fi
@@ -58,9 +59,32 @@
   echo updating php4 cvs
   if [ -d php_4_cvs ]
   then
-(cd php_4_cvs; cvs update 21 | grep -v ^. php_3_cvs | grep -v Updating)
+(cd php_4_cvs; cvs update 21 | grep -v ^. php_4_cvs | grep -v Updating)
   else
-cvs -d :pserver:[EMAIL PROTECTED]:/repository get -d php_4_cvs php5
+cvs -d :pserver:[EMAIL PROTECTED]:/repository get -d php_4_cvs -r PHP_4_3 
php-src
+  fi
+
+
+  # getting php5 releases
+  for release in `xargs echo  ../version5.tags`
+  do
+if [ ! -d $release ]
+then 
+  echo fetching $release from cvs
+  echo ../cvs-get-release php-src $release
+  ../cvs-get-release php-src $release
+else
+  echo $release already there
+fi
+  done
+   
+  # getting php5 latest developement snapshot
+  echo updating php5 cvs
+  if [ -d php_5_cvs ]
+  then
+(cd php_5_cvs; cvs update 21 | grep -v ^. php_5_cvs | grep -v Updating)
+  else
+cvs -d :pserver:[EMAIL PROTECTED]:/repository get -d php_5_cvs -r HEAD php-src
   fi

# getting current manual snapshot
@@ -70,7 +94,7 @@
 (cd phpdoc; rm -f version.dsl version.xml; cvs update )
   else
 cvs -d :pserver:[EMAIL PROTECTED]:/repository get -d phpdoc phpdoc-all
-( cd phpdoc; autoconf; ./configure --with-lang=en  --with-source=../php_4_cvs )
+( cd phpdoc; autoconf; ./configure --with-lang=en  --with-source=../php_5_cvs )
   fi

 else
@@ -95,7 +119,8 @@
 
 
 echo ... what is where
-(cd sources/phpdoc  make funclist.txt  ../../checkdoc funclist.txt | mysql -u 
phpdoc -pphpdoc phpdoc )
+(cd sources/phpdoc  make funclist.txt)
+checkdoc.php
 
 echo ... quickref 
 ./quickref
@@ -106,6 +131,9 @@
 echo ... protos in php 4
 ./php4protos
 
+echo ... protos in php 5
+./php5protos
+
 
 
 
@@ -113,6 +141,8 @@
 echo removing ext_skel entries
 echo delete from funclist where filename like '%skeleton%' | mysql -u phpdoc 
-pphpdoc phpdoc
 echo delete from funcimp  where filelike '%skeleton%' | mysql -u phpdoc 
-pphpdoc phpdoc
+
+# hide the easter egg ;)
 echo delete from funclist where function = 'php_egg_logoguid' | mysql -u phpdoc 
-pphpdoc phpdoc
 echo delete from funcimp  where function = 'php_egg_logoguid' | mysql -u phpdoc 
-pphpdoc phpdoc
 

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



[PHP-CVS] cvs: spl /tests forward.phpt sequence.phpt

2003-10-23 Thread Marcus Boerger
helly   Thu Oct 23 03:14:51 2003 EDT

  Modified files:  
/spl/tests  forward.phpt sequence.phpt 
  Log:
  Update tests
  
Index: spl/tests/forward.phpt
diff -u spl/tests/forward.phpt:1.7 spl/tests/forward.phpt:1.8
--- spl/tests/forward.phpt:1.7  Thu Sep 18 12:26:29 2003
+++ spl/tests/forward.phpt  Thu Oct 23 03:14:50 2003
@@ -34,7 +34,9 @@
 
 $i = new c();
 
-$c_info = array(get_class($i) = array('inheits' = class_parents($i), 'implements' 
= class_implements($i)));
+$implements = class_implements($i);
+asort($implements);
+$c_info = array(get_class($i) = array('inheits' = class_parents($i), 'implements' 
= $implements));
 print_r($c_info);
 $methods = get_class_methods(spl_forward_assoc);
 sort($methods);
@@ -75,9 +77,9 @@
 
 [implements] = Array
 (
-[spl_forward_assoc] = spl_forward_assoc
 [spl_assoc] = spl_assoc
 [spl_forward] = spl_forward
+[spl_forward_assoc] = spl_forward_assoc
 )
 
 )
Index: spl/tests/sequence.phpt
diff -u spl/tests/sequence.phpt:1.6 spl/tests/sequence.phpt:1.7
--- spl/tests/sequence.phpt:1.6 Thu Sep 18 12:26:29 2003
+++ spl/tests/sequence.phpt Thu Oct 23 03:14:50 2003
@@ -52,8 +52,13 @@
 $t = new c();
 $i = $t-newIterator(); 
 
-$c_info = array(get_class($t) = array('inheits' = class_parents($t), 'implements' 
= class_implements($t)),
-get_class($i) = array('inheits' = class_parents($i), 'implements' 
= class_implements($i)));
+$implements_t = class_implements($t);
+asort($implements_t);
+$implements_i = class_implements($i);
+asort($implements_i);
+
+$c_info = array(get_class($t) = array('inheits' = class_parents($t), 'implements' 
= $implements_t),
+get_class($i) = array('inheits' = class_parents($i), 'implements' 
= $implements_i));
 print_r($c_info);
 
 foreach($i as $w) {
@@ -91,11 +96,11 @@
 
 [implements] = Array
 (
-[spl_sequence_assoc] = spl_sequence_assoc
-[spl_forward_assoc] = spl_forward_assoc
 [spl_assoc] = spl_assoc
 [spl_forward] = spl_forward
+[spl_forward_assoc] = spl_forward_assoc
 [spl_sequence] = spl_sequence
+[spl_sequence_assoc] = spl_sequence_assoc
 )
 
 )

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



[PHP-CVS] cvs: functable / checkdoc.php protos.php

2003-10-23 Thread Hartmut Holzgraefe
hholzgraThu Oct 23 03:15:07 2003 EDT

  Added files: 
/functable  checkdoc.php protos.php 
  Log:
  additional scripts 
  

Index: functable/checkdoc.php
+++ functable/checkdoc.php
#!/usr/local/bin/php
?php

require_once PEAR.php;
require_once File/Find.php;
require_once XML/Parser.php;

require_once config.php;
require_once lib/dbconnect.php;

/**
 * Scan file for refname tags and store their positions
 *
 * @author Hartmut Holzgraefe [EMAIL PROTECTED]
 */
class func_finder extends XML_Parser {
/**
 * Name of file being scanned
 *
 * @type string
 */
var $filename = ;

/**
 * Remember last chunk of plain data here
 *
 * @type string
 */
var $last_data = ;

/**
 * Data handler just stores last data seen 
 *
 * @access private
 * @param  resource XML parser 
 * @param  string   cdata
 */
function cdataHandler($xp, $cdata) {
$this-last_data = $cdata;
}

/**
 * refname end tag handler stores tag position in database
 *
 * We assume that refname.../refname is on a single line
 * and that the cdata within is just a single chunk
 *
 * @access private
 * @param  resource XML parser
 * @param  string   tag name
 */
function xmltag_refname_($xp, $elem) {
$query = sprintf(INSERT INTO docfile (function, docfile, lineno) 
   VALUES ('%s', '%s',%d);\n,
 $this-last_data,
 ereg_replace(^sources/, , 
$this-filename),
 xml_get_current_line_number($xp)
 );
mysql_query($query);
}

/**
 * Constructor
 *
 * @access public
 * @param  string  file to scan
 */
function func_finder($filename) {
parent::XML_Parser(null, func);
$this-filename = $filename;
$this-setInputFile($filename);
$this-parse();
}
}

   
/*   _   _   _ _  
 *  __ _| | ___ | |__   __ _| |   ___ ___   __| | ___ 
 * / _` | |/ _ \| '_ \ / _` | |  / __/ _ \ / _` |/ _ \
 *| (_| | | (_) | |_) | (_| | | | (_| (_) | (_| |  __/
 * \__, |_|\___/|_.__/ \__,_|_|  \___\___/ \__,_|\___|
 * |___/  
 */

// purge database 
mysql_query(TRUNCATE TABLE docfile);

// get a file finder helper object
$find = new File_Find;

// now let it search for all relevant XML files
foreach ($find-search('.*\.xml', 'sources/phpdoc/en/reference') as $file) {
// and scan them
$ff = new func_finder($file); unset($ff);
}


?
Index: functable/protos.php
+++ functable/protos.php
#!/usr/local/bin/php
?php

require_once PEAR.php;
require_once File/Find.php;

require_once config.php;
require_once lib/dbconnect.php;

function proto_scan ($version, $filename) {

$fp = fopen($filename, r);

if ($fp) {
$lineno = 0;
while (!feof($fp)) {
$line = fgets($fp);
$lineno++;

// check for proto lines
if (preg_match('|/\*\s*\{\{\{\s+proto\s(.*)|', $line, 
$matches)) {
$proto = $matches[1];
$proto_line = $lineno;

// ignore protos for object methods
if (strstr($proto, ::) || strstr($proto, -)) {
continue;
}

// ingore anything that does not look like a function 
if (!preg_match('|(\w+)\s*\(|', $proto, $matches)) {
continue;
}
$function = $matches[1];

// the rest of the comment is the description
$comment = ;
while (!feof($fp)) {
$comment .= trim(fgets($fp)). ;
$lineno++;

// check for comment end and cut where 
appropriate
$pos = strpos($comment, */);
if ($pos !== false) {
$comment = substr($comment, 0, $pos);
break;
}
}

   

[PHP-CVS] cvs: functable / dbmodel.sql

2003-10-23 Thread Hartmut Holzgraefe
hholzgraThu Oct 23 03:15:52 2003 EDT

  Modified files:  
/functable  dbmodel.sql 
  Log:
  add php 5 protos
  
Index: functable/dbmodel.sql
diff -u functable/dbmodel.sql:1.6 functable/dbmodel.sql:1.7
--- functable/dbmodel.sql:1.6   Fri Jul 19 19:50:36 2002
+++ functable/dbmodel.sql   Thu Oct 23 03:15:52 2003
@@ -10,10 +10,9 @@
 
 DROP TABLE IF EXISTS docfile;
 CREATE TABLE docfile (
-  function varchar(100) DEFAULT '' NOT NULL,
+  function varchar(100) NOT NULL PRIMARY KEY,
   docfile varchar(100),
-   lineno integer,
-   key df_idx (function)
+   lineno integer
 );
 
 #
@@ -69,6 +68,19 @@
   proto_desc text,
   proto text,
key p4_idx (function)
+);
+
+
+#
+# Table structure for table 'proto5'
+#
+
+DROP TABLE IF EXISTS proto5;
+CREATE TABLE proto5 (
+  function varchar(100) DEFAULT '' NOT NULL,
+  proto_desc text,
+  proto text,
+   key p5_idx (function)
 );
 
 #

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



[PHP-CVS] cvs: CVSROOT / avail

2003-10-23 Thread Sascha Schumann
sas Thu Oct 23 03:23:04 2003 EDT

  Modified files:  
/CVSROOTavail 
  Log:
  phpdoc karma for javi and mrmaster 
  
  
Index: CVSROOT/avail
diff -u CVSROOT/avail:1.766 CVSROOT/avail:1.767
--- CVSROOT/avail:1.766 Tue Oct 21 12:51:41 2003
+++ CVSROOT/avail   Thu Oct 23 03:23:03 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,dave,marcelo,curt,fd|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

[PHP-CVS] cvs: CVSROOT / avail

2003-10-23 Thread Sascha Schumann
sas Thu Oct 23 03:25:49 2003 EDT

  Modified files:  
/CVSROOTavail 
  Log:
  phpdoc karma for fa
  
  
Index: CVSROOT/avail
diff -u CVSROOT/avail:1.767 CVSROOT/avail:1.768
--- CVSROOT/avail:1.767 Thu Oct 23 03:23:03 2003
+++ CVSROOT/avail   Thu Oct 23 03:25:48 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,dave,marcelo,curt,fd,javi,mrmaster|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

[PHP-CVS] cvs: CVSROOT / avail

2003-10-23 Thread Sascha Schumann
sas Thu Oct 23 03:27:07 2003 EDT

  Modified files:  
/CVSROOTavail 
  Log:
  smarty web karma for jrieger
  
  
Index: CVSROOT/avail
diff -u CVSROOT/avail:1.768 CVSROOT/avail:1.769
--- CVSROOT/avail:1.768 Thu Oct 23 03:25:48 2003
+++ CVSROOT/avail   Thu Oct 23 03:27:07 2003
@@ -87,7 +87,7 @@
 
 # The Smarty Web Group has access to the Smarty website.
 
-avail|cmv,mohrt,imajes,darkelder,messju,mose|smarty-web
+avail|cmv,mohrt,imajes,darkelder,messju,mose,jrieger|smarty-web
 
 # Some CVS modules have a ChangeLog file that is automatically updated
 # by a program that commits as user 'changelog'.

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



[PHP-CVS] cvs: CVSROOT / avail

2003-10-23 Thread Sascha Schumann
sas Thu Oct 23 03:28:32 2003 EDT

  Modified files:  
/CVSROOTavail 
  Log:
  more smarty web karma
  
  
Index: CVSROOT/avail
diff -u CVSROOT/avail:1.769 CVSROOT/avail:1.770
--- CVSROOT/avail:1.769 Thu Oct 23 03:27:07 2003
+++ CVSROOT/avail   Thu Oct 23 03:28:31 2003
@@ -87,7 +87,7 @@
 
 # The Smarty Web Group has access to the Smarty website.
 
-avail|cmv,mohrt,imajes,darkelder,messju,mose,jrieger|smarty-web
+avail|cmv,mohrt,imajes,darkelder,messju,mose,jrieger,boots,mose,marclaporte|smarty-web
 
 # Some CVS modules have a ChangeLog file that is automatically updated
 # by a program that commits as user 'changelog'.

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



[PHP-CVS] cvs: CVSROOT / avail

2003-10-23 Thread Gabor Hojtsy
gobaThu Oct 23 05:52:37 2003 EDT

  Modified files:  
/CVSROOTavail 
  Log:
  Add myself to the php developers group, not to develop PHP,
  but to fix doc-related bugs in comments, READMEs, INSTALLs, etc.
  
Index: CVSROOT/avail
diff -u CVSROOT/avail:1.770 CVSROOT/avail:1.771
--- CVSROOT/avail:1.770 Thu Oct 23 03:28:31 2003
+++ CVSROOT/avail   Thu Oct 23 05:52:36 2003
@@ -17,7 +17,7 @@
 # The PHP Developers have full access to the full source trees for
 # PHP and PEAR, as well as the documentation.
 
-avail|alan_k,rrichards,tal,mfischer,fmk,hirokawa,jah,eschmid,dbeu,sebastian,samjam,avsm,ronabob,derick,sterling,venaas,stas,hholzgra,cmv,phildriscoll,jmoore,andre,sniper,sr,david,jdonagher,chagenbu,jon,elixer,joosters,jason,mysql,kalowsky,opaquedave,steinm,phanto,gluke,svanegmond,rjs,vlad,jimjag,emile,wez,sasha,camber,ohrn,romolo,martin,lurcher,wsanchez,dreid,bmcadams,swm,zhang,kevin,joey,entity,cardinal,coar,jflemer,raphael,danda,rbb,mboeren,dougm,mlwmohawk,edink,alexwaugh,bernd,zak,sesser,yohgaki,imajes,markonen,dickmeiss,helly,sander,jan,kir,aaron,jwoolley,pbannister,rvenkat,dali,rodif_bl,hyanantha,witten,georg,msopacua,mpdoremus,fujimoto,iliaa,chregu,azzit,gschlossnagle,andrey,dan,moriyoshi,dviner,bfrance,flex,iwakiri,john,harrie,pollita,ianh,k.schroeder,dcowgill,jerenkrantz,jay,ddhill,jorton,thetaphi,abies,vincent|phpfi,php3,php-src,phpdoc,pecl,pear,peardoc,spl,ZendAPI,phpdoc-ar,phpdoc-cs,phpdoc-de,phpdoc-es,phpdoc-fi,phpdoc-fr,phpdoc-he,phpdoc-hk,phpdoc-hu,phpdoc-id,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
+avail|alan_k,rrichards,tal,mfischer,fmk,hirokawa,jah,eschmid,dbeu,sebastian,samjam,avsm,ronabob,derick,sterling,venaas,stas,hholzgra,cmv,phildriscoll,jmoore,andre,sniper,sr,david,jdonagher,chagenbu,jon,elixer,joosters,jason,mysql,kalowsky,opaquedave,steinm,phanto,gluke,svanegmond,rjs,vlad,jimjag,emile,wez,sasha,camber,ohrn,romolo,martin,lurcher,wsanchez,dreid,bmcadams,swm,zhang,kevin,joey,entity,cardinal,coar,jflemer,raphael,danda,rbb,mboeren,dougm,mlwmohawk,edink,alexwaugh,bernd,zak,sesser,yohgaki,imajes,markonen,dickmeiss,helly,sander,jan,kir,aaron,jwoolley,pbannister,rvenkat,dali,rodif_bl,hyanantha,witten,georg,msopacua,mpdoremus,fujimoto,iliaa,chregu,azzit,gschlossnagle,andrey,dan,moriyoshi,dviner,bfrance,flex,iwakiri,john,harrie,pollita,ianh,k.schroeder,dcowgill,jerenkrantz,jay,ddhill,jorton,thetaphi,abies,vincent,goba|phpfi,php3,php-src,phpdoc,pecl,pear,peardoc,spl,ZendAPI,phpdoc-ar,phpdoc-cs,phpdoc-de,phpdoc-es,phpdoc-fi,phpdoc-fr,phpdoc-he,phpdoc-hk,phpdoc-hu,phpdoc-id,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
 
 
 # People who work on the Engine

-- 
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-10-23 Thread Gabor Hojtsy
gobaThu Oct 23 05:53:31 2003 EDT

  Modified files:  
/php-src/win32  install.txt 
  Log:
  The web server user name starts with IUSR_ and not ISUR_,
  and some clarifications from Phil Driscoll
  
Index: php-src/win32/install.txt
diff -u php-src/win32/install.txt:1.22 php-src/win32/install.txt:1.23
--- php-src/win32/install.txt:1.22  Fri Sep 19 08:24:06 2003
+++ php-src/win32/install.txt   Thu Oct 23 05:53:31 2003
@@ -684,8 +684,8 @@
If it still fails then it could be one of the following:
 
file permissions on your php script, php.exe, php4ts.dll, php.ini or any php
-   extensions you are trying to load are such that the anonymous internet user
-   ISUR_machinename cannot access them.
+   extensions you are trying to load are such that the web server cannot access 
+   them. For IIS, IUSR_machinename needs at least read access.
 
The script file does not exist (or possibly isn't where you think it is
relative to your web root directory). Note that for IIS you can trap this error by 
ticking

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