[PHP-DOC] #15637 [Com]: if using URI, ldap_connect() returns resource ID when server does not exist

2003-02-28 Thread korte-php at et dot rub dot de
 ID:   15637
 Comment by:   korte-php at et dot rub dot de
 Reported By:  cjm46543 at hotmail dot com
 Status:   Analyzed
 Bug Type: Documentation problem
 Operating System: Linux - RedHat 7.2
 PHP Version:  4.4.0-dev
 New Comment:

Rather anoying though since ldap_bind also fails when using a wrong
password... only looking at bind fails doen't neccessarily mean, that
the ldap server is down :(


Previous Comments:


[2003-02-10 12:30:10] [EMAIL PROTECTED]

When openldap 2.x is used, the ldap_connect() does not actually
connect, it just initializes the connecting parameters. The actual
connect happens with next calls
to ldap_* funcs, usually it is 'ldap_bind()'.

This is just documentation problem. Not any bug in code.




[2003-01-24 19:51:01] [EMAIL PROTECTED]

Yes, I still get ldap resources everytime except when passing in "/" or
a wrong parameter count.



[2003-01-20 16:12:25] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php4-STABLE-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php4-win32-STABLE-latest.zip

With latest CVS it returns FALSE when appropriate, cannot replicate the
problem.



[2003-01-17 22:26:57] [EMAIL PROTECTED]

I cannot get ldap_connect() to return false under ANY conditions,
including with the examples provided in this bug report.  I find this
behavior impossible to document, please have another look at this. 
Reclassifying -> ldap related.

Shouldn't these return false?  They are not URI's:
var_dump(ldap_connect('foo'));
var_dump(ldap_connect('does.not.exist'));

I get resources with both.  apache1.3.26/php4.4/openldap2.0.23



[2003-01-06 11:28:38] martin at kouba dot at

when using an ip address ldap_connect doesn't work as described.

$server = "10.1.1.100";
$port = "389";

$ds = ldap_connect($server, $port);

the result is true even if the server does not exist or the service is
not running.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/15637

-- 
Edit this bug report at http://bugs.php.net/?id=15637&edit=1


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



[PHP-DOC] #22331 [Opn]: mbstring configuration variables are marked PHP_INI_ALL, but this is false.

2003-02-28 Thread moriyoshi
 ID:   22331
 Updated by:   [EMAIL PROTECTED]
 Reported By:  vigna at dsi dot unimi dot it
 Status:   Open
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  4.3.0
-Assigned To:  
+Assigned To:  hirokawa
 New Comment:

Assigning this task to Rui Hirokawa for fear it'd be forgotten. (Rui,
feel free to reassign to me if you think it better)



Previous Comments:


[2003-02-20 07:22:07] vigna at dsi dot unimi dot it

Sorry: apparently they cannot even be modified in .htaccess--that was a
mistake.



[2003-02-20 07:17:34] vigna at dsi dot unimi dot it

The documentation states that the 

mbstring.func_overload 
mbstring.internal_encoding 
mbstring.http_input
mbstring.http_output
mbstring.substitute_character

are PHP_INI_ALL. This is completely false--it is impossible to set them
in a script (except maybe for internal_encoding, but the effect is not
completely clear if you already have strings floating around). 

Apparently, all of them can be set using .htaccess except for
func_overload, which must be set in php.ini.





-- 
Edit this bug report at http://bugs.php.net/?id=22331&edit=1


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



[PHP-DOC] #22331 [Opn->Asn]: mbstring configuration variables are marked PHP_INI_ALL, but this is false.

2003-02-28 Thread moriyoshi
 ID:   22331
 Updated by:   [EMAIL PROTECTED]
 Reported By:  vigna at dsi dot unimi dot it
-Status:   Open
+Status:   Assigned
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  4.3.0
 Assigned To:  hirokawa


Previous Comments:


[2003-02-28 04:54:16] [EMAIL PROTECTED]

Assigning this task to Rui Hirokawa for fear it'd be forgotten. (Rui,
feel free to reassign to me if you think it better)




[2003-02-20 07:22:07] vigna at dsi dot unimi dot it

Sorry: apparently they cannot even be modified in .htaccess--that was a
mistake.



[2003-02-20 07:17:34] vigna at dsi dot unimi dot it

The documentation states that the 

mbstring.func_overload 
mbstring.internal_encoding 
mbstring.http_input
mbstring.http_output
mbstring.substitute_character

are PHP_INI_ALL. This is completely false--it is impossible to set them
in a script (except maybe for internal_encoding, but the effect is not
completely clear if you already have strings floating around). 

Apparently, all of them can be set using .htaccess except for
func_overload, which must be set in php.ini.





-- 
Edit this bug report at http://bugs.php.net/?id=22331&edit=1


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



[PHP-DOC] Inconsistency in Array section of manual

2003-02-28 Thread keith.underdown
www.php.net/manual/en/language.types.array.php is inconsistent on the issue
of integer keys for arrays.

Right at the start we have:

array( [key =>] value
 , ...
 )
// key is either string or nonnegative integer
// value can be anything
-
which to my mind rules out negative integers as keys. as someone well versed
in traditional arrays that sees reasonable!

However, later we have:

 If you omit a key, the maximum of the integer-indices is taken, and the new
key will be that maximum + 1. As integers can be negative, this is also true
for negative indices. Having e.g. the highest index being -6 will result
in -5 being the new key. If no integer-indices exist yet, the key will be 0
(zero). If you specify a key that already has a value assigned to it, that
value will be overwritten.
---

which implies that negative integers are ok as a key!

Which is correct?

__
Keith Underdown
Q Consultancy
8A New Rowley Rd
DUDLEY
DY2 8AS
+44 1384 231180
+44 7798 934782



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



[PHP-DOC] #22476 [NEW]: session.save_path documentation is misleading

2003-02-28 Thread mccarthy36 at earthlink dot net
From: mccarthy36 at earthlink dot net
Operating system: 
PHP version:  4.3.0
PHP Bug Type: Documentation problem
Bug description:  session.save_path documentation is misleading

The Session documentation says:
[
If session.save_path's path depth is more than 2, garbage collection will
not be performed.
]

Honestly I never understood why that would be the case, but it seems to
not / no longer be the case.

I'm on Linux / Apache 1.3.26 / PHP 4.3.0 with a session.save_path of
home/username/data/sessions and garbage collection seems to be working
normally.

Sorry if I've misunderstood something, but this doesn't make sense to me.

I hope that that section of the manual is just wrong / outdated, because
that would be a big downer if true.  If it is wrong, then obviously it
would be helpful to have it corrected.

Thanks
-- 
Edit bug report at http://bugs.php.net/?id=22476&edit=1
-- 
Try a CVS snapshot: http://bugs.php.net/fix.php?id=22476&r=trysnapshot
Fixed in CVS:   http://bugs.php.net/fix.php?id=22476&r=fixedcvs
Fixed in release:   http://bugs.php.net/fix.php?id=22476&r=alreadyfixed
Need backtrace: http://bugs.php.net/fix.php?id=22476&r=needtrace
Try newer version:  http://bugs.php.net/fix.php?id=22476&r=oldversion
Not developer issue:http://bugs.php.net/fix.php?id=22476&r=support
Expected behavior:  http://bugs.php.net/fix.php?id=22476&r=notwrong
Not enough info:http://bugs.php.net/fix.php?id=22476&r=notenoughinfo
Submitted twice:http://bugs.php.net/fix.php?id=22476&r=submittedtwice
register_globals:   http://bugs.php.net/fix.php?id=22476&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=22476&r=php3
Daylight Savings:   http://bugs.php.net/fix.php?id=22476&r=dst
IIS Stability:  http://bugs.php.net/fix.php?id=22476&r=isapi
Install GNU Sed:http://bugs.php.net/fix.php?id=22476&r=gnused


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



[PHP-DOC] #22476 [Opn->Asn]: session.save_path documentation is misleading

2003-02-28 Thread philip
 ID:  22476
 Updated by:  [EMAIL PROTECTED]
 Reported By: mccarthy36 at earthlink dot net
-Status:  Open
+Status:  Assigned
 Bug Type:Documentation problem
 PHP Version: 4.3.0
-Assigned To: 
+Assigned To: philip
 New Comment:

Yes, it is misleading.  The following are exerpts from php.ini-dist
which explains it pretty well.  Note that the '2' in the docs refers to
the 'N' in php.ini.  Also note that the parameter separator is a
semi-colon (;) for all OS's and since ; is also for comments in
php.ini, one must quote the string when N is used.

[snip]

; Argument passed to save_handler.  In the case of files, this is the
path
; where data files are stored. Note: Windows users have to change this

; variable in order to use PHP's session functions.
;
; As of PHP 4.0.1, you can define the path as:
;
; session.save_path = "N;/path"
;
; where N is an integer.  Instead of storing all the session files in 
; /path, what this will do is use subdirectories N-levels deep, and 
; store the session data in those directories.  This is useful if you 
; or your OS have problems with lots of files in one directory, and is

; a more efficient layout for servers that handle lots of sessions.
;
; NOTE 1: PHP will not create this directory structure automatically.
; You can use the script in the ext/session dir for that
purpose.
; NOTE 2: See the section on garbage collection below if you choose to
; use subdirectories for session storage
;
; The file storage module creates files using mode 600 by default.
; You can change that by using
; 
; session.save_path = "N;MODE;/path"
;
; where MODE is the octal representation of the mode. Note that this
; does not overwrite the process's umask.
session.save_path = "/tmp"

[snip]

; After this number of seconds, stored data will be seen as 'garbage'
and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440

; NOTE: If you are using the subdirectory option for storing session
files
;   (see session.save_path above), then garbage collection does
*not*
;   happen automatically.  You will need to do your own garbage 
;   collection through a shell script, cron entry, or some other
method. 
;   For example, the following script would is the equivalent of
;   setting session.gc_maxlifetime to 1440 (1440 seconds = 24
minutes):
;  cd /path/to/sessions; find -cmin +24 | xargs rm

; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope, albeit
register_globals
; is disabled.  PHP 4.3 and later will warn you, if this feature is
used.
; You can disable the feature and the warning seperately. At this
time,
; the warning is only displayed, if bug_compat_42 is enabled.

session.bug_compat_42 = 1
session.bug_compat_warn = 1


Previous Comments:


[2003-02-28 09:27:30] mccarthy36 at earthlink dot net

The Session documentation says:
[
If session.save_path's path depth is more than 2, garbage collection
will not be performed.
]

Honestly I never understood why that would be the case, but it seems to
not / no longer be the case.

I'm on Linux / Apache 1.3.26 / PHP 4.3.0 with a session.save_path of
home/username/data/sessions and garbage collection seems to be working
normally.

Sorry if I've misunderstood something, but this doesn't make sense to
me.

I hope that that section of the manual is just wrong / outdated,
because that would be a big downer if true.  If it is wrong, then
obviously it would be helpful to have it corrected.

Thanks




-- 
Edit this bug report at http://bugs.php.net/?id=22476&edit=1


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



Re: [PHP-DOC] Re: PDF Doc. When??

2003-02-28 Thread Gabor Hojtsy
I'll start to adapt the xsl-stylesheets in the next days, but my 
priority is the html-version, and then I'll do the fo-version (Will take 
1-3 weeks).

But I don't think that it will be provided as autogenerated files to 
download that soon, so you'd have to be familiar with processing fo- to 
pdf-files (with e.g FOP).
Cool! I am eager to see any results ;)

Goba



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


Re: [PHP-DOC] Online documents havn't been build for a month,what's going on?

2003-02-28 Thread Gabor Hojtsy
Heh, you are right. The logs says, that the last attempt to build was on 
Jan 27 (for English version). I don't know what is the problem. Maybe 
systems guys?

Goba

Dallas Thunder wrote:
I noticed that no online documents have been build for each language since
February.  Is there anything wrong in build server?




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


Re: [PHP-DOC] Inconsistency in Array section of manual

2003-02-28 Thread Gabor Hojtsy
Please submit "Documentation problems" at http://bugs.php.net/

Thanks,
Goba
[EMAIL PROTECTED] wrote:
www.php.net/manual/en/language.types.array.php is inconsistent on the issue
of integer keys for arrays.
Right at the start we have:

array( [key =>] value
 , ...
 )
// key is either string or nonnegative integer
// value can be anything
-
which to my mind rules out negative integers as keys. as someone well versed
in traditional arrays that sees reasonable!
However, later we have:

 If you omit a key, the maximum of the integer-indices is taken, and the new
key will be that maximum + 1. As integers can be negative, this is also true
for negative indices. Having e.g. the highest index being -6 will result
in -5 being the new key. If no integer-indices exist yet, the key will be 0
(zero). If you specify a key that already has a value assigned to it, that
value will be overwritten.
---
which implies that negative integers are ok as a key!

Which is correct?

__
Keith Underdown
Q Consultancy
8A New Rowley Rd
DUDLEY
DY2 8AS
+44 1384 231180
+44 7798 934782




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


[PHP-DOC] #22476 [Asn]: session.save_path documentation is misleading

2003-02-28 Thread mccarthy36 at earthlink dot net
 ID:  22476
 User updated by: mccarthy36 at earthlink dot net
 Reported By: mccarthy36 at earthlink dot net
 Status:  Assigned
 Bug Type:Documentation problem
 PHP Version: 4.3.0
 Assigned To: philip
 New Comment:

But according to what you quoted:
[
; NOTE: If you are using the subdirectory option for storing session
files
;   (see session.save_path above), then garbage collection does
*not*
;   happen automatically.  
]

The note doesn't seem to make any qualification with respect to the
level, N.  Taken at face value that note says that, unconditionally, if
you use the N;/path form, automatic garbage collection will not take
place.

At the moment I'm most concerned with clarifying what happens in the
more basic situation when only a path is specified.  In that case,
automatic garbage collection occurs normally regardless of the path
depth?

Thanks


Previous Comments:


[2003-02-28 10:49:27] [EMAIL PROTECTED]

Yes, it is misleading.  The following are exerpts from php.ini-dist
which explains it pretty well.  Note that the '2' in the docs refers to
the 'N' in php.ini.  Also note that the parameter separator is a
semi-colon (;) for all OS's and since ; is also for comments in
php.ini, one must quote the string when N is used.

[snip]

; Argument passed to save_handler.  In the case of files, this is the
path
; where data files are stored. Note: Windows users have to change this

; variable in order to use PHP's session functions.
;
; As of PHP 4.0.1, you can define the path as:
;
; session.save_path = "N;/path"
;
; where N is an integer.  Instead of storing all the session files in 
; /path, what this will do is use subdirectories N-levels deep, and 
; store the session data in those directories.  This is useful if you 
; or your OS have problems with lots of files in one directory, and is

; a more efficient layout for servers that handle lots of sessions.
;
; NOTE 1: PHP will not create this directory structure automatically.
; You can use the script in the ext/session dir for that
purpose.
; NOTE 2: See the section on garbage collection below if you choose to
; use subdirectories for session storage
;
; The file storage module creates files using mode 600 by default.
; You can change that by using
; 
; session.save_path = "N;MODE;/path"
;
; where MODE is the octal representation of the mode. Note that this
; does not overwrite the process's umask.
session.save_path = "/tmp"

[snip]

; After this number of seconds, stored data will be seen as 'garbage'
and
; cleaned up by the garbage collection process.
session.gc_maxlifetime = 1440

; NOTE: If you are using the subdirectory option for storing session
files
;   (see session.save_path above), then garbage collection does
*not*
;   happen automatically.  You will need to do your own garbage 
;   collection through a shell script, cron entry, or some other
method. 
;   For example, the following script would is the equivalent of
;   setting session.gc_maxlifetime to 1440 (1440 seconds = 24
minutes):
;  cd /path/to/sessions; find -cmin +24 | xargs rm

; PHP 4.2 and less have an undocumented feature/bug that allows you to
; to initialize a session variable in the global scope, albeit
register_globals
; is disabled.  PHP 4.3 and later will warn you, if this feature is
used.
; You can disable the feature and the warning seperately. At this
time,
; the warning is only displayed, if bug_compat_42 is enabled.

session.bug_compat_42 = 1
session.bug_compat_warn = 1



[2003-02-28 09:27:30] mccarthy36 at earthlink dot net

The Session documentation says:
[
If session.save_path's path depth is more than 2, garbage collection
will not be performed.
]

Honestly I never understood why that would be the case, but it seems to
not / no longer be the case.

I'm on Linux / Apache 1.3.26 / PHP 4.3.0 with a session.save_path of
home/username/data/sessions and garbage collection seems to be working
normally.

Sorry if I've misunderstood something, but this doesn't make sense to
me.

I hope that that section of the manual is just wrong / outdated,
because that would be a big downer if true.  If it is wrong, then
obviously it would be helpful to have it corrected.

Thanks




-- 
Edit this bug report at http://bugs.php.net/?id=22476&edit=1


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



[PHP-DOC] #7634 [Com]: mysql_pconnect() + lock tables can hang server

2003-02-28 Thread queen_145 at msn dot com
 ID:   7634
 Comment by:   queen_145 at msn dot com
 Reported By:  [EMAIL PROTECTED]
 Status:   Closed
 Bug Type: Documentation problem
 Operating System: Mandrake 7.0
 PHP Version:  4.0 Latest CVS (03/11/2000)
 New Comment:

ãÔßáÉ Ýí ÇáÏÎæá


Previous Comments:


[2002-06-10 04:10:29] [EMAIL PROTECTED]

My dear, it's already documented in the "Persistent Database" section
... sorry :-p



[2002-06-10 04:08:04] [EMAIL PROTECTED]

What is 'closing as doc problem' ? :) Reopening until it's really
fixed.



[2001-11-20 22:05:29] [EMAIL PROTECTED]

Closed as a Doc problem; added a warning in CVS about the
issue. Also included some info regarding transactions
behaving similarly from the user notes.



[2001-11-20 20:10:51] [EMAIL PROTECTED]

Nope, still happens. This is on Debian woody, PHP 4.1.0RC3
(haven't tried on the win32 version you posted a link to,
but whatever).

Same script.




[2001-11-20 19:46:00] [EMAIL PROTECTED]

Can you try latest RC and see if the problem persists

http://phpuk.org/~james/php-4.1.0RC3-win32.zip

Feedback.



The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
http://bugs.php.net/7634

-- 
Edit this bug report at http://bugs.php.net/?id=7634&edit=1


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



[PHP-DOC] imageistruecolor and imagesavealpha

2003-02-28 Thread Pierre-Alain Joye
Hello,

Please find as attachments the doc for the 2 new image functions:
imageistruecolor and imagesavealpha.

Both will be available in the next 4.3 releases, and already in head.

hth

pierre



 
  
   imageistruecolorcreate
   Finds whether an image is a truecolor image.
  
  
   Description

 boolimageistruecolor
 resourceimage

   
imageistruecolor Finds whether an image is a truecolor image.
   
   
See also imagecreatetruecolor.
   
  
 





 
  
   imagesavealpha
   Set the flag to save full alpha channel information (as opposed to
   single-color transparency) when saving PNG images.
  
  
   Description

 boolimageistruecolor
 resourceimage

   
imageistruecolor sets the flat to  attempt to save full alpha
 channel information (as opposed to single-color transparency) when saving PNG images.
   
   
 You have to unset alphablending (imagealphaplending($im, &false;)) to use it.
   
   
  Alpha channel is not supported by all browsers, if you have problem with
  your browser, try to load your script with a alpha channel compliant
  browser, i.e. latest mozilla.
   
   
See also imagealphablending.
   
  
 



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

[PHP-DOC] cvs: phpdoc /en/reference/yaz reference.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:39:41 2003 EDT

  Modified files:  
/phpdoc/en/reference/yazreference.xml 
  Log:
  removing non sense function tag
  
Index: phpdoc/en/reference/yaz/reference.xml
diff -u phpdoc/en/reference/yaz/reference.xml:1.6 
phpdoc/en/reference/yaz/reference.xml:1.7
--- phpdoc/en/reference/yaz/reference.xml:1.6   Thu Jan 16 04:44:49 2003
+++ phpdoc/en/reference/yaz/reference.xml   Fri Feb 28 18:39:41 2003
@@ -1,5 +1,5 @@
 
-
+
  
   YAZ functions
   YAZ
@@ -54,7 +54,7 @@
 
 
  
-  Parallel searching using YAZ
+  Parallel searching using Yaz
   
The script below demonstrates the parallel searching feature of
the API. When invoked with no arguments it prints a query form; else



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



[PHP-DOC] cvs: phpdoc /en/reference/tokenizer reference.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:43:56 2003 EDT

  Modified files:  
/phpdoc/en/reference/tokenizer  reference.xml 
  Log:
  Minor addendum
  
Index: phpdoc/en/reference/tokenizer/reference.xml
diff -u phpdoc/en/reference/tokenizer/reference.xml:1.8 
phpdoc/en/reference/tokenizer/reference.xml:1.9
--- phpdoc/en/reference/tokenizer/reference.xml:1.8 Thu Feb  6 04:38:25 2003
+++ phpdoc/en/reference/tokenizer/reference.xml Fri Feb 28 18:43:56 2003
@@ -1,5 +1,5 @@
 
-
+
  
   Tokenizer functions
   Tokenizer functions
@@ -19,17 +19,13 @@
 

 
-   
-&reftitle.required;
-&no.requirement;
-   
+   
+&reftitle.required; 
+&no.requirement; 
+
 
&reference.tokenizer.configure;
 
-   
-
&reference.tokenizer.constants;
 

@@ -40,7 +36,7 @@
  and print the pure code only.
 
 
- Strip comments
+ Strip comments with the tokenizer
  
 

[PHP-DOC] cvs: phpdoc /en/reference/swf/functions swf-actiongeturl.xml swf-actiongotoframe.xml swf-actiongotolabel.xml swf-actionsettarget.xml swf-actionwaitforframe.xml swf-endbutton.xml swf-oncondition.xml swf-shapearc.xml swf-shapefilloff.xml swf-shapefillsolid.xml swf-shapelinesolid.xml swf-shapelineto.xml swf-shapemoveto.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:44:44 2003 EDT

  Modified files:  
/phpdoc/en/reference/swf/functions  swf-actiongeturl.xml 
swf-actiongotoframe.xml 
swf-actiongotolabel.xml 
swf-actionsettarget.xml 
swf-actionwaitforframe.xml 
swf-endbutton.xml 
swf-oncondition.xml 
swf-shapearc.xml 
swf-shapefilloff.xml 
swf-shapefillsolid.xml 
swf-shapelinesolid.xml 
swf-shapelineto.xml 
swf-shapemoveto.xml 
  Log:
  Function name to lowercase
  Index: phpdoc/en/reference/swf/functions/swf-actiongeturl.xml
diff -u phpdoc/en/reference/swf/functions/swf-actiongeturl.xml:1.2 
phpdoc/en/reference/swf/functions/swf-actiongeturl.xml:1.3
--- phpdoc/en/reference/swf/functions/swf-actiongeturl.xml:1.2  Wed Apr 17 02:44:25 
2002
+++ phpdoc/en/reference/swf/functions/swf-actiongeturl.xml  Fri Feb 28 18:44:43 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -14,7 +14,7 @@
   stringtarget
  
 
- The swf_actionGetUrl function gets the URL
+ The swf_actiongeturl function gets the URL
  specified by the parameter url with the
  target  target.
 
Index: phpdoc/en/reference/swf/functions/swf-actiongotoframe.xml
diff -u phpdoc/en/reference/swf/functions/swf-actiongotoframe.xml:1.2 
phpdoc/en/reference/swf/functions/swf-actiongotoframe.xml:1.3
--- phpdoc/en/reference/swf/functions/swf-actiongotoframe.xml:1.2   Wed Apr 17 
02:44:25 2002
+++ phpdoc/en/reference/swf/functions/swf-actiongotoframe.xml   Fri Feb 28 18:44:43 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -13,7 +13,7 @@
   intframenumber
  
 
- The swf_actionGotoFrame function will go to
+ The swf_actiongotoframe function will go to
  the frame specified by framenumber, play
  it, and then stop.
 
Index: phpdoc/en/reference/swf/functions/swf-actiongotolabel.xml
diff -u phpdoc/en/reference/swf/functions/swf-actiongotolabel.xml:1.2 
phpdoc/en/reference/swf/functions/swf-actiongotolabel.xml:1.3
--- phpdoc/en/reference/swf/functions/swf-actiongotolabel.xml:1.2   Wed Apr 17 
02:44:25 2002
+++ phpdoc/en/reference/swf/functions/swf-actiongotolabel.xml   Fri Feb 28 18:44:43 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -15,7 +15,7 @@
   stringlabel
  
 
- The swf_actionGotoLabel function displays
+ The swf_actiongotolabel function displays
  the frame with the label given by the
  label parameter and then stops.
 
Index: phpdoc/en/reference/swf/functions/swf-actionsettarget.xml
diff -u phpdoc/en/reference/swf/functions/swf-actionsettarget.xml:1.2 
phpdoc/en/reference/swf/functions/swf-actionsettarget.xml:1.3
--- phpdoc/en/reference/swf/functions/swf-actionsettarget.xml:1.2   Wed Apr 17 
02:44:26 2002
+++ phpdoc/en/reference/swf/functions/swf-actionsettarget.xml   Fri Feb 28 18:44:43 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -13,7 +13,7 @@
   stringtarget
  
 
- The swf_actionSetTarget function sets the
+ The swf_actionsettarget function sets the
  context for all actions.  You can use this to control other flash
  movies that are currently playing.
 
Index: phpdoc/en/reference/swf/functions/swf-actionwaitforframe.xml
diff -u phpdoc/en/reference/swf/functions/swf-actionwaitforframe.xml:1.2 
phpdoc/en/reference/swf/functions/swf-actionwaitforframe.xml:1.3
--- phpdoc/en/reference/swf/functions/swf-actionwaitforframe.xml:1.2Wed Apr 17 
02:44:27 2002
+++ phpdoc/en/reference/swf/functions/swf-actionwaitforframe.xmlFri Feb 28 
18:44:43 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -16,7 +16,7 @@
   intskipcount
  
 
- The swf_actionWaitForFrame function will
+ The swf_actionwaitforframe function will
  check to see if the frame, specified by the
  framenumber parameter has been loaded, if
  not it will skip the number of actions specified by the
Index: phpdoc/en/reference/swf/functions/swf-endbutton.xml
diff -u phpdoc/en/reference/swf/functions/swf-endbutton.xml:1.2 
phpdoc/en/reference/swf/functions/swf-endbutton.xml:1.3
--- phpdoc/en/reference/swf/functions/swf-endbutton.xml:1.2 Wed Apr 17 02:44:28 
2002
+++ phpdoc/en/reference/swf/functions/swf-endbutton.xml Fri Feb 28 18:44:43 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -15,7 +15,7 @@
   
  
 
- The swf_endButton function ends the
+ The swf_endbutton function ends the
  definition of the current button.
 

Index: phpdoc/en/reference/swf/functions/swf-oncondition.xml
diff -u phpdoc/en/reference/swf/functions/swf-oncondition.xml:1.2 
phpdoc/en/reference/swf/func

[PHP-DOC] cvs: phpdoc /en/reference/strings/functions echo.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:47:08 2003 EDT

  Modified files:  
/phpdoc/en/reference/strings/functions  echo.xml 
  Log:
  Completing declaration
  
Index: phpdoc/en/reference/strings/functions/echo.xml
diff -u phpdoc/en/reference/strings/functions/echo.xml:1.5 
phpdoc/en/reference/strings/functions/echo.xml:1.6
--- phpdoc/en/reference/strings/functions/echo.xml:1.5  Sun Dec  1 05:29:14 2002
+++ phpdoc/en/reference/strings/functions/echo.xml  Fri Feb 28 18:47:08 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -9,7 +9,7 @@

 Description
  
-  echo
+  voidecho
   stringarg1
   stringargn...
  



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



[PHP-DOC] cvs: phpdoc /en/reference/strings/functions setlocale.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:47:32 2003 EDT

  Modified files:  
/phpdoc/en/reference/strings/functions  setlocale.xml 
  Log:
  moving quots
  
Index: phpdoc/en/reference/strings/functions/setlocale.xml
diff -u phpdoc/en/reference/strings/functions/setlocale.xml:1.7 
phpdoc/en/reference/strings/functions/setlocale.xml:1.8
--- phpdoc/en/reference/strings/functions/setlocale.xml:1.7 Tue Jan 21 04:37:36 
2003
+++ phpdoc/en/reference/strings/functions/setlocale.xml Fri Feb 28 18:47:31 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -12,7 +12,7 @@
   stringsetlocale
   mixedcategory
   stringlocale
-  string...
+  string...
  
  
   stringsetlocale



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



[PHP-DOC] cvs: phpdoc /en/reference/strings/functions htmlspecialchars.xml str-replace.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:47:53 2003 EDT

  Modified files:  
/phpdoc/en/reference/strings/functions  htmlspecialchars.xml 
str-replace.xml 
  Log:
  typographic convention
  
Index: phpdoc/en/reference/strings/functions/htmlspecialchars.xml
diff -u phpdoc/en/reference/strings/functions/htmlspecialchars.xml:1.3 
phpdoc/en/reference/strings/functions/htmlspecialchars.xml:1.4
--- phpdoc/en/reference/strings/functions/htmlspecialchars.xml:1.3  Sat Aug 10 
06:59:48 2002
+++ phpdoc/en/reference/strings/functions/htmlspecialchars.xml  Fri Feb 28 18:47:53 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -89,7 +89,7 @@
 
 
  See also get_html_translation_table,
- htmlentities and nl2br.
+ htmlentities, and nl2br.
 

   
Index: phpdoc/en/reference/strings/functions/str-replace.xml
diff -u phpdoc/en/reference/strings/functions/str-replace.xml:1.3 
phpdoc/en/reference/strings/functions/str-replace.xml:1.4
--- phpdoc/en/reference/strings/functions/str-replace.xml:1.3   Thu Jan 30 00:25:37 
2003
+++ phpdoc/en/reference/strings/functions/str-replace.xml   Fri Feb 28 18:47:53 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -67,7 +67,7 @@
  
 
 
- See also :
+ See also 
  str_ireplace,
  ereg_replace,
  preg_replace, and 



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



[PHP-DOC] cvs: phpdoc /en/reference/stream/functions stream-filter-append.xml stream-filter-prepend.xml stream-get-filters.xml stream-get-wrappers.xml stream-register-filter.xml stream-register-wrapper.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:48:44 2003 EDT

  Modified files:  
/phpdoc/en/reference/stream/functions   stream-filter-append.xml 
stream-filter-prepend.xml 
stream-get-filters.xml 
stream-get-wrappers.xml 
stream-register-filter.xml 
stream-register-wrapper.xml 
  Log:
  Moving boolean to bool in prototypes plus See also minor update
  
Index: phpdoc/en/reference/stream/functions/stream-filter-append.xml
diff -u phpdoc/en/reference/stream/functions/stream-filter-append.xml:1.3 
phpdoc/en/reference/stream/functions/stream-filter-append.xml:1.4
--- phpdoc/en/reference/stream/functions/stream-filter-append.xml:1.3   Thu Feb 20 
14:10:24 2003
+++ phpdoc/en/reference/stream/functions/stream-filter-append.xml   Fri Feb 28 
18:48:43 2003
@@ -1,5 +1,5 @@
 
-
+
   

 stream_filter_append
@@ -85,7 +85,7 @@
  
 
 
- See Also:
+ See also
  stream_register_filter, and
  stream_filter_prepend
 
Index: phpdoc/en/reference/stream/functions/stream-filter-prepend.xml
diff -u phpdoc/en/reference/stream/functions/stream-filter-prepend.xml:1.3 
phpdoc/en/reference/stream/functions/stream-filter-prepend.xml:1.4
--- phpdoc/en/reference/stream/functions/stream-filter-prepend.xml:1.3  Thu Feb 20 
14:10:24 2003
+++ phpdoc/en/reference/stream/functions/stream-filter-prepend.xml  Fri Feb 28 
18:48:43 2003
@@ -1,5 +1,5 @@
 
-
+
   

 stream_filter_prepend
@@ -29,7 +29,7 @@
  if the file was opened for reading (i.e. File Mode:
  r, and/or +).  The filter
  will also be attached to the write filter chain
- if the file was opened for writting (i.e. File Mode:
+ if the file was opened for writing (i.e. File Mode:
  w, a, and/or +).
  STREAM_FILTER_READ,
  STREAM_FILTER_WRITE, and/or
@@ -46,7 +46,7 @@
  
 
 
- See Also:
+ See also
  stream_register_filter, and
  stream_filter_append
 
Index: phpdoc/en/reference/stream/functions/stream-get-filters.xml
diff -u phpdoc/en/reference/stream/functions/stream-get-filters.xml:1.3 
phpdoc/en/reference/stream/functions/stream-get-filters.xml:1.4
--- phpdoc/en/reference/stream/functions/stream-get-filters.xml:1.3 Tue Jan  7 
17:37:00 2003
+++ phpdoc/en/reference/stream/functions/stream-get-filters.xml Fri Feb 28 18:48:43 
2003
@@ -1,5 +1,5 @@
 
-
+
   

 stream_get_filters
@@ -42,7 +42,7 @@
  
 
 
- See Also:
+ See also
  stream_register_filter, and
  stream_get_wrappers
 
Index: phpdoc/en/reference/stream/functions/stream-get-wrappers.xml
diff -u phpdoc/en/reference/stream/functions/stream-get-wrappers.xml:1.1 
phpdoc/en/reference/stream/functions/stream-get-wrappers.xml:1.2
--- phpdoc/en/reference/stream/functions/stream-get-wrappers.xml:1.1Fri Jan  3 
03:16:38 2003
+++ phpdoc/en/reference/stream/functions/stream-get-wrappers.xmlFri Feb 28 
18:48:43 2003
@@ -1,5 +1,5 @@
 
-
+
   

 stream_get_wrappers
@@ -16,7 +16,7 @@
  available on the running system.
 
 
- See Also:
+ See also
  stream_register_wrapper
 

Index: phpdoc/en/reference/stream/functions/stream-register-filter.xml
diff -u phpdoc/en/reference/stream/functions/stream-register-filter.xml:1.2 
phpdoc/en/reference/stream/functions/stream-register-filter.xml:1.3
--- phpdoc/en/reference/stream/functions/stream-register-filter.xml:1.2 Sat Jan  4 
23:25:06 2003
+++ phpdoc/en/reference/stream/functions/stream-register-filter.xml Fri Feb 28 
18:48:43 2003
@@ -1,5 +1,5 @@
 
-
+
   

 stream_register_filter
@@ -8,7 +8,7 @@

 Description
 
- booleanstream_register_filter
+ boolstream_register_filter
  stringfiltername
  stringclassname
 
Index: phpdoc/en/reference/stream/functions/stream-register-wrapper.xml
diff -u phpdoc/en/reference/stream/functions/stream-register-wrapper.xml:1.1 
phpdoc/en/reference/stream/functions/stream-register-wrapper.xml:1.2
--- phpdoc/en/reference/stream/functions/stream-register-wrapper.xml:1.1Thu 
Jan  2 21:41:14 2003
+++ phpdoc/en/reference/stream/functions/stream-register-wrapper.xmlFri Feb 28 
18:48:43 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -9,7 +9,7 @@

 Description
 
- booleanstream_register_wrapper
+ boolstream_register_wrapper
  stringprotocol
  stringclassname
 
@@ -33,7 +33,7 @@
 
 
 
- booleanstream_open
+ boolstream_open
  stringpath
  stringmode
  intoptions
@@ -137,7 +137,7 @@
 

 
- booleanstream_eof
+ boolstream_eof
  void
 
 
@@ -158,7 +158,7 @@
 
 
 
- booleanstream_seek
+ boolstream_seek
  intoffset
  intwhence
 
@@ -172,7 +172,7 @@
 
 
 
- boole

[PHP-DOC] cvs: phpdoc /en/reference/regex/functions ereg-replace.xml ereg.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:49:59 2003 EDT

  Modified files:  
/phpdoc/en/reference/regex/functionsereg-replace.xml ereg.xml 
  Log:
  See also presentation
  
Index: phpdoc/en/reference/regex/functions/ereg-replace.xml
diff -u phpdoc/en/reference/regex/functions/ereg-replace.xml:1.2 
phpdoc/en/reference/regex/functions/ereg-replace.xml:1.3
--- phpdoc/en/reference/regex/functions/ereg-replace.xml:1.2Wed Apr 17 02:43:50 
2002
+++ phpdoc/en/reference/regex/functions/ereg-replace.xmlFri Feb 28 18:49:59 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -99,11 +99,14 @@
   
  
 
-
- See also ereg, eregi,
- eregi_replace, str_replace,
- and preg_match.
-
+
+ See also 
+ ereg, 
+ eregi,
+ eregi_replace, 
+ str_replace, and 
+ preg_match.
+

   
 
Index: phpdoc/en/reference/regex/functions/ereg.xml
diff -u phpdoc/en/reference/regex/functions/ereg.xml:1.3 
phpdoc/en/reference/regex/functions/ereg.xml:1.4
--- phpdoc/en/reference/regex/functions/ereg.xml:1.3Thu Feb 20 04:47:21 2003
+++ phpdoc/en/reference/regex/functions/ereg.xmlFri Feb 28 18:49:59 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -57,7 +57,7 @@
  The following code snippet takes a date in ISO format
  (-MM-DD) and prints it in DD.MM. format:
  
-  ereg Example
+  ereg example
   
 

[PHP-DOC] cvs: phpdoc /en/reference/pcre/functions preg-replace-callback.xml preg-split.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:50:36 2003 EDT

  Modified files:  
/phpdoc/en/reference/pcre/functions preg-replace-callback.xml 
preg-split.xml 
  Log:
  detect constant plus see also
  
Index: phpdoc/en/reference/pcre/functions/preg-replace-callback.xml
diff -u phpdoc/en/reference/pcre/functions/preg-replace-callback.xml:1.4 
phpdoc/en/reference/pcre/functions/preg-replace-callback.xml:1.5
--- phpdoc/en/reference/pcre/functions/preg-replace-callback.xml:1.4Thu Feb 20 
05:27:20 2003
+++ phpdoc/en/reference/pcre/functions/preg-replace-callback.xmlFri Feb 28 
18:50:36 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -24,7 +24,7 @@
  replacement string. 
 
   
-   preg_replace_callback
+   preg_replace_callback example

 

[PHP-DOC] cvs: phpdoc /en/reference/objaggregation/functions aggregate-methods-by-list.xml aggregate-methods-by-regexp.xml aggregate-properties-by-list.xml aggregate-properties-by-regexp.xml aggregation-info.xml deaggregate.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:51:57 2003 EDT

  Modified files:  
/phpdoc/en/reference/objaggregation/functions   
aggregate-methods-by-list.xml 

aggregate-methods-by-regexp.xml 

aggregate-properties-by-list.xml 

aggregate-properties-by-regexp.xml 
aggregation-info.xml 
deaggregate.xml 
  Log:
  moving quotes
  
Index: phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-list.xml
diff -u phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-list.xml:1.3 
phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-list.xml:1.4
--- phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-list.xml:1.3 
 Sat Aug  3 22:47:42 2002
+++ phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-list.xml  Fri 
Feb 28 18:51:57 2003
@@ -1,5 +1,5 @@
 
-
+
  

 aggregate_methods_by_list
@@ -14,7 +14,7 @@
   objectobject
   stringclass_name
   arraymethods_list
-  booleanexclude
+  boolexclude
  
 
  Aggregates methods from a class to
Index: phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-regexp.xml
diff -u 
phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-regexp.xml:1.2 
phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-regexp.xml:1.3
--- phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-regexp.xml:1.2   
 Sat Aug  3 22:47:42 2002
+++ phpdoc/en/reference/objaggregation/functions/aggregate-methods-by-regexp.xml   
 Fri Feb 28 18:51:57 2003
@@ -1,5 +1,5 @@
 
-
+
  

 aggregate_methods_by_regexp
@@ -15,7 +15,7 @@
   objectobject
   stringclass_name
   stringregexp
-  booleanexclude
+  boolexclude
  
 
  Aggregates methods from a class to
Index: phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-list.xml
diff -u 
phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-list.xml:1.2 
phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-list.xml:1.3
--- phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-list.xml:1.2  
 Sat Aug  3 22:47:42 2002
+++ phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-list.xml  
 Fri Feb 28 18:51:57 2003
@@ -1,5 +1,5 @@
 
-
+
  

 aggregate_properties_by_list
@@ -14,7 +14,7 @@
   objectobject
   stringclass_name
   
arrayproperties_list
-  booleanexclude
+  boolexclude
  
 
  Aggregates properties from a class to
Index: phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-regexp.xml
diff -u 
phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-regexp.xml:1.2 
phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-regexp.xml:1.3
--- 
phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-regexp.xml:1.2 
Sat Aug  3 22:47:42 2002
+++ phpdoc/en/reference/objaggregation/functions/aggregate-properties-by-regexp.xml
 Fri Feb 28 18:51:57 2003
@@ -1,5 +1,5 @@
 
-
+
  

 aggregate_properties_by_regexp
@@ -15,7 +15,7 @@
   objectobject
   stringclass_name
   stringregexp
-  booleanexclude
+  boolexclude
  
 
  Aggregates properties from a class to
Index: phpdoc/en/reference/objaggregation/functions/aggregation-info.xml
diff -u phpdoc/en/reference/objaggregation/functions/aggregation-info.xml:1.2 
phpdoc/en/reference/objaggregation/functions/aggregation-info.xml:1.3
--- phpdoc/en/reference/objaggregation/functions/aggregation-info.xml:1.2   Thu 
Dec  5 16:44:07 2002
+++ phpdoc/en/reference/objaggregation/functions/aggregation-info.xml   Fri Feb 28 
18:51:57 2003
@@ -1,14 +1,15 @@
 
-
+
   

 aggregation_info
-Synonym for aggregate_info
+Alias for aggregate_info


 Description
 
-  
arrayaggregation_infoobjectobject
+  arrayaggregation_info
+  objectobject
 
 
  Will return the aggretaion information for a particular object
Index: phpdoc/en/reference/objaggregation/functions/deaggregate.xml
diff -u phpdoc/en/reference/objaggregation/functions/deaggregate.xml:1.2 
phpdoc/en/reference/objaggregation/functions/deaggregate.xml:1.3
--- phpdoc/en/reference/objaggregation/functions/deaggregate.xml:1.2Sat Aug  3 
22:47:42 2002
+++ phpdoc/en/reference/objaggregation/functions/deaggregate.xmlFri Feb 28 
18:51:57 2003
@@ -1,18 +1,18 @@
 
-
+
  

 deaggregate
 
- removes the aggregated methods and properties from an object
+ Removes the aggregated methods and properties from an object
 


 Description
  
-  voidobject_aggregation

[PHP-DOC] cvs: phpdoc /en/reference/objaggregation reference.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:52:17 2003 EDT

  Modified files:  
/phpdoc/en/reference/objaggregation reference.xml 
  Log:
  removing extra id
  
Index: phpdoc/en/reference/objaggregation/reference.xml
diff -u phpdoc/en/reference/objaggregation/reference.xml:1.6 
phpdoc/en/reference/objaggregation/reference.xml:1.7
--- phpdoc/en/reference/objaggregation/reference.xml:1.6Sun Dec  1 09:29:25 
2002
+++ phpdoc/en/reference/objaggregation/reference.xmlFri Feb 28 18:52:17 2003
@@ -1,10 +1,10 @@
 
-
+
  
   Object Aggregation/Composition Functions
   Object Aggregation
 
-  
+  
 &warn.experimental;
 
  &reftitle.intro;



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



[PHP-DOC] cvs: phpdoc /en/reference/network/functions dns-get-mx.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:52:53 2003 EDT

  Modified files:  
/phpdoc/en/reference/network/functions  dns-get-mx.xml 
  Log:
  correcting function name
  
Index: phpdoc/en/reference/network/functions/dns-get-mx.xml
diff -u phpdoc/en/reference/network/functions/dns-get-mx.xml:1.1 
phpdoc/en/reference/network/functions/dns-get-mx.xml:1.2
--- phpdoc/en/reference/network/functions/dns-get-mx.xml:1.1Fri Nov 22 21:38:50 
2002
+++ phpdoc/en/reference/network/functions/dns-get-mx.xmlFri Feb 28 18:52:53 
2003
@@ -1,5 +1,5 @@
 
-
+
   

 dns_get_mx
@@ -8,7 +8,7 @@

 Description
  
-  intgetmxrr
+  intdns_get_mx
   stringhostname
   arraymxhosts
   array&weight



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



[PHP-DOC] cvs: phpdoc /en/reference/network/functions socket-set-timeout.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:53:09 2003 EDT

  Modified files:  
/phpdoc/en/reference/network/functions  socket-set-timeout.xml 
  Log:
  use of &alias
  
Index: phpdoc/en/reference/network/functions/socket-set-timeout.xml
diff -u phpdoc/en/reference/network/functions/socket-set-timeout.xml:1.4 
phpdoc/en/reference/network/functions/socket-set-timeout.xml:1.5
--- phpdoc/en/reference/network/functions/socket-set-timeout.xml:1.4Sat Sep 28 
19:30:31 2002
+++ phpdoc/en/reference/network/functions/socket-set-timeout.xmlFri Feb 28 
18:53:09 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -9,7 +9,8 @@

 Description
 
- This is an alias for stream_set_timeout.
+ socket_set_timeout is an &alias; 
+ for stream_set_timeout.
 

   



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



[PHP-DOC] cvs: phpdoc /en/reference/mysql/functions mysql-drop-db.xml mysql-errno.xml mysql-fetch-array.xml mysql-num-fields.xml mysql-num-rows.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:53:38 2003 EDT

  Modified files:  
/phpdoc/en/reference/mysql/functionsmysql-drop-db.xml 
mysql-errno.xml 
mysql-fetch-array.xml 
mysql-num-fields.xml 
mysql-num-rows.xml 
  Log:
  making see also and example title consistent
  
Index: phpdoc/en/reference/mysql/functions/mysql-drop-db.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-drop-db.xml:1.5 
phpdoc/en/reference/mysql/functions/mysql-drop-db.xml:1.6
--- phpdoc/en/reference/mysql/functions/mysql-drop-db.xml:1.5   Fri Jun 21 08:50:59 
2002
+++ phpdoc/en/reference/mysql/functions/mysql-drop-db.xml   Fri Feb 28 18:53:38 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -16,14 +16,14 @@

  
 
- &return.success;
-
-
  mysql_drop_db attempts to drop (remove) an
  entire database from the server associated with the specified
  link identifier.
 
 
+ &return.success;
+
+
  For downward compatibility mysql_dropdb
  can also be used. This is deprecated, however.
 
@@ -35,7 +35,7 @@
  
 
 
- See also: mysql_create_db,
+ See also mysql_create_db, and
  mysql_query.
 

Index: phpdoc/en/reference/mysql/functions/mysql-errno.xml
diff -u phpdoc/en/reference/mysql/functions/mysql-errno.xml:1.5 
phpdoc/en/reference/mysql/functions/mysql-errno.xml:1.6
--- phpdoc/en/reference/mysql/functions/mysql-errno.xml:1.5 Mon Jul  1 18:20:00 
2002
+++ phpdoc/en/reference/mysql/functions/mysql-errno.xml Fri Feb 28 18:53:38 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -31,7 +31,7 @@
   make sure you check the value before calling another MySQL
   function.
  
-  mysql_errno Example
+  mysql_errno example
   
 

[PHP-DOC] cvs: phpdoc /en/reference/mssql/functions mssql-close.xml mssql-fetch-object.xml mssql-fetch-row.xml mssql-num-fields.xml mssql-num-rows.xml mssql-query.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:53:59 2003 EDT

  Modified files:  
/phpdoc/en/reference/mssql/functionsmssql-close.xml 
mssql-fetch-object.xml 
mssql-fetch-row.xml 
mssql-num-fields.xml 
mssql-num-rows.xml 
mssql-query.xml 
  Log:
  making see also and example title consistent
  
Index: phpdoc/en/reference/mssql/functions/mssql-close.xml
diff -u phpdoc/en/reference/mssql/functions/mssql-close.xml:1.2 
phpdoc/en/reference/mssql/functions/mssql-close.xml:1.3
--- phpdoc/en/reference/mssql/functions/mssql-close.xml:1.2 Wed Apr 17 02:41:00 
2002
+++ phpdoc/en/reference/mssql/functions/mssql-close.xml Fri Feb 28 18:53:59 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -12,15 +12,15 @@
   intmssql_close
   intlink_identifier
  
-
- Returns: &true; on success, &false; on error.
-
  
  mssql_close closes the link to a MS SQL
  Server database that's associated with the specified link
  identifier.  If the link identifier isn't specified, the last
  opened link is assumed.
 
+
+ &return.success;
+
  
  Note that this isn't usually necessary, as non-persistent open
  links are automatically closed at the end of the script's
@@ -31,7 +31,8 @@
  generated by mssql_pconnect.
 
  
- See also: mssql_connect,
+ See also 
+ mssql_connect, and
  mssql_pconnect.  
 

Index: phpdoc/en/reference/mssql/functions/mssql-fetch-object.xml
diff -u phpdoc/en/reference/mssql/functions/mssql-fetch-object.xml:1.3 
phpdoc/en/reference/mssql/functions/mssql-fetch-object.xml:1.4
--- phpdoc/en/reference/mssql/functions/mssql-fetch-object.xml:1.3  Thu Feb 13 
21:53:07 2003
+++ phpdoc/en/reference/mssql/functions/mssql-fetch-object.xml  Fri Feb 28 18:53:59 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -31,8 +31,8 @@
 
  
  See also
- mssql_fetch-array, and
- mssql_fetch-row.
+ mssql_fetch_array, and
+ mssql_fetch_row.
 

   
Index: phpdoc/en/reference/mssql/functions/mssql-fetch-row.xml
diff -u phpdoc/en/reference/mssql/functions/mssql-fetch-row.xml:1.2 
phpdoc/en/reference/mssql/functions/mssql-fetch-row.xml:1.3
--- phpdoc/en/reference/mssql/functions/mssql-fetch-row.xml:1.2 Wed Apr 17 02:41:01 
2002
+++ phpdoc/en/reference/mssql/functions/mssql-fetch-row.xml Fri Feb 28 18:53:59 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -28,7 +28,8 @@
  more rows.
 
 
- See also: mssql_fetch_array,
+ See also
+ mssql_fetch_array,
  mssql_fetch_object,
  mssql_data_seek,
  mssql_fetch_lengths, and
Index: phpdoc/en/reference/mssql/functions/mssql-num-fields.xml
diff -u phpdoc/en/reference/mssql/functions/mssql-num-fields.xml:1.2 
phpdoc/en/reference/mssql/functions/mssql-num-fields.xml:1.3
--- phpdoc/en/reference/mssql/functions/mssql-num-fields.xml:1.2Wed Apr 17 
02:41:01 2002
+++ phpdoc/en/reference/mssql/functions/mssql-num-fields.xmlFri Feb 28 18:53:59 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -17,7 +17,8 @@
  fields in a result set.
 
  
- See also: mssql_db_query,
+ See also
+ mssql_db_query,
  mssql_query,
  mssql_fetch_field, and
  mssql_num_rows.
Index: phpdoc/en/reference/mssql/functions/mssql-num-rows.xml
diff -u phpdoc/en/reference/mssql/functions/mssql-num-rows.xml:1.2 
phpdoc/en/reference/mssql/functions/mssql-num-rows.xml:1.3
--- phpdoc/en/reference/mssql/functions/mssql-num-rows.xml:1.2  Wed Apr 17 02:41:01 
2002
+++ phpdoc/en/reference/mssql/functions/mssql-num-rows.xml  Fri Feb 28 18:53:59 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -17,7 +17,8 @@
  a result set.
 
 
- See also: mssql_db_query,
+ See also
+ mssql_db_query,
  mssql_query, and
  mssql_fetch_row.
 
Index: phpdoc/en/reference/mssql/functions/mssql-query.xml
diff -u phpdoc/en/reference/mssql/functions/mssql-query.xml:1.2 
phpdoc/en/reference/mssql/functions/mssql-query.xml:1.3
--- phpdoc/en/reference/mssql/functions/mssql-query.xml:1.2 Wed Apr 17 02:41:02 
2002
+++ phpdoc/en/reference/mssql/functions/mssql-query.xml Fri Feb 28 18:53:59 2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -26,7 +26,8 @@
  mssql_connect was called, and use it.
 
 
- See also: mssql_db_query,
+ See also
+ mssql_db_query,
  mssql_select_db, and
  mssql_connect.
 



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



[PHP-DOC] cvs: phpdoc /en/reference/msql/functions msql-fetch-array.xml msql-select-db.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 18:54:26 2003 EDT

  Modified files:  
/phpdoc/en/reference/msql/functions msql-fetch-array.xml 
msql-select-db.xml 
  Log:
  making see also and example title consistent
  
Index: phpdoc/en/reference/msql/functions/msql-fetch-array.xml
diff -u phpdoc/en/reference/msql/functions/msql-fetch-array.xml:1.2 
phpdoc/en/reference/msql/functions/msql-fetch-array.xml:1.3
--- phpdoc/en/reference/msql/functions/msql-fetch-array.xml:1.2 Wed Apr 17 02:40:54 
2002
+++ phpdoc/en/reference/msql/functions/msql-fetch-array.xml Fri Feb 28 18:54:26 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -40,7 +40,7 @@
  a significant added value.
   
 
- For further details, also see
+ See also
  msql_fetch_row.
 

Index: phpdoc/en/reference/msql/functions/msql-select-db.xml
diff -u phpdoc/en/reference/msql/functions/msql-select-db.xml:1.2 
phpdoc/en/reference/msql/functions/msql-select-db.xml:1.3
--- phpdoc/en/reference/msql/functions/msql-select-db.xml:1.2   Wed Apr 17 02:40:58 
2002
+++ phpdoc/en/reference/msql/functions/msql-select-db.xml   Fri Feb 28 18:54:26 
2003
@@ -1,5 +1,5 @@
 
-
+
 
   

@@ -29,7 +29,8 @@
  made on the active database.
 
 
- See also: msql_connect,
+ See also 
+ msql_connect,
  msql_pconnect, and
  msql_query.
 



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



[PHP-DOC] cvs: phpdoc /en/reference/tokenizer reference.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 19:08:37 2003 EDT

  Modified files:  
/phpdoc/en/reference/tokenizer  reference.xml 
  Log:
  correcting build
  
Index: phpdoc/en/reference/tokenizer/reference.xml
diff -u phpdoc/en/reference/tokenizer/reference.xml:1.9 
phpdoc/en/reference/tokenizer/reference.xml:1.10
--- phpdoc/en/reference/tokenizer/reference.xml:1.9 Fri Feb 28 18:43:56 2003
+++ phpdoc/en/reference/tokenizer/reference.xml Fri Feb 28 19:08:37 2003
@@ -1,5 +1,5 @@
 
-
+
  
   Tokenizer functions
   Tokenizer functions
@@ -19,7 +19,7 @@
 

 
-   
+   
 &reftitle.required; 
 &no.requirement; 
 



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



[PHP-DOC] cvs: phpdoc /en/reference/yaz reference.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 19:11:55 2003 EDT

  Modified files:  
/phpdoc/en/reference/yazreference.xml 
  Log:
  correcting build
  
Index: phpdoc/en/reference/yaz/reference.xml
diff -u phpdoc/en/reference/yaz/reference.xml:1.7 
phpdoc/en/reference/yaz/reference.xml:1.8
--- phpdoc/en/reference/yaz/reference.xml:1.7   Fri Feb 28 18:39:41 2003
+++ phpdoc/en/reference/yaz/reference.xml   Fri Feb 28 19:11:55 2003
@@ -1,5 +1,5 @@
 
-
+
  
   YAZ functions
   YAZ
@@ -52,15 +52,15 @@
  (Z-Associations). A resource represents a connection to a
  target.
 
-
- 
-  Parallel searching using Yaz
   
The script below demonstrates the parallel searching feature of
the API. When invoked with no arguments it prints a query form; else
(arguments are supplied) it searches the targets as given in array
host.
   
+
+ 
+  Parallel searching using Yaz
   
 

[PHP-DOC] cvs: phpdoc /en/reference/yaz reference.xml

2003-02-28 Thread Damien Seguy
damsFri Feb 28 19:13:03 2003 EDT

  Modified files:  
/phpdoc/en/reference/yazreference.xml 
  Log:
  correcting build 2
  
Index: phpdoc/en/reference/yaz/reference.xml
diff -u phpdoc/en/reference/yaz/reference.xml:1.8 
phpdoc/en/reference/yaz/reference.xml:1.9
--- phpdoc/en/reference/yaz/reference.xml:1.8   Fri Feb 28 19:11:55 2003
+++ phpdoc/en/reference/yaz/reference.xml   Fri Feb 28 19:13:02 2003
@@ -1,5 +1,5 @@
 
-
+
  
   YAZ functions
   YAZ
@@ -52,12 +52,12 @@
  (Z-Associations). A resource represents a connection to a
  target.
 
-  
-   The script below demonstrates the parallel searching feature of
-   the API. When invoked with no arguments it prints a query form; else
-   (arguments are supplied) it searches the targets as given in array
-   host.
-  
+
+ The script below demonstrates the parallel searching feature of
+ the API. When invoked with no arguments it prints a query form; else
+ (arguments are supplied) it searches the targets as given in array
+ host.
+
 
  
   Parallel searching using Yaz



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



Re: [PHP-DOC] imageistruecolor and imagesavealpha

2003-02-28 Thread Pierre-Alain Joye
Hello,

Better to check which I include :), here is the correct
imagesavealpha.xml

hth

pierre



 
  
   imagesavealpha
   Set the flag to save full alpha channel information (as opposed to
   single-color transparency) when saving PNG images.
  
  
   Description

 boolimagesavealpha
 resourceimage
 boolsaveflag
  
   
imagesavealpha sets the flat to  attempt to save full alpha
 channel information (as opposed to single-color transparency) when saving PNG images.
   
   
 You have to unset alphablending (imagealphaplending($im, &false;)) to use it.
   
   
  Alpha channel is not supported by all browsers, if you have problem with
  your browser, try to load your script with a alpha channel compliant
  browser, i.e. latest mozilla.
   
   
See also imagealphablending.
   
  
 



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

[PHP-DOC] #22331 [Asn]: mbstring configuration variables are marked PHP_INI_ALL, but this is false.

2003-02-28 Thread hirokawa
 ID:   22331
 Updated by:   [EMAIL PROTECTED]
 Reported By:  vigna at dsi dot unimi dot it
 Status:   Assigned
 Bug Type: Documentation problem
 Operating System: Linux
 PHP Version:  4.3.0
 Assigned To:  hirokawa
 New Comment:

I can not get the result with you.
I can change mbstring.http_output (and some others) in a script.
This is a sample script,


And, mbstring.func_overload is defined as PHP_INI_SYSTEM
in the php manual, and is not defined as PHP_INI_ALL.



Previous Comments:


[2003-02-28 04:54:16] [EMAIL PROTECTED]

Assigning this task to Rui Hirokawa for fear it'd be forgotten. (Rui,
feel free to reassign to me if you think it better)




[2003-02-20 07:22:07] vigna at dsi dot unimi dot it

Sorry: apparently they cannot even be modified in .htaccess--that was a
mistake.



[2003-02-20 07:17:34] vigna at dsi dot unimi dot it

The documentation states that the 

mbstring.func_overload 
mbstring.internal_encoding 
mbstring.http_input
mbstring.http_output
mbstring.substitute_character

are PHP_INI_ALL. This is completely false--it is impossible to set them
in a script (except maybe for internal_encoding, but the effect is not
completely clear if you already have strings floating around). 

Apparently, all of them can be set using .htaccess except for
func_overload, which must be set in php.ini.





-- 
Edit this bug report at http://bugs.php.net/?id=22331&edit=1


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