Re: [PHP-DOC] Contributions are ready for review

2013-03-04 Thread Yannick Torrès
Hi all,

Is there someone who can take a look at all of this change ?

Best,
Yannick


2013/3/4 

> Hello PHP EN Documentation team,
>
> There are contributions within the online editor queue for this language.
> Please review, then commit or delete these patches.
>
> Patches for review :
> ---
>
> Modified: en/reference/pcntl/functions/pcntl-signal.xml
> By: da vinci on 2012-12-28 02:32:53
> ===
> --- en/reference/pcntl/functions/pcntl-signal.xml
> +++ en/reference/pcntl/functions/pcntl-signal.xml
> @@ -16,7 +16,7 @@
>
>
> The pcntl_signal function installs a new
> -   signal handler for the signal indicated by
> signo.
> +   signal handler or replaces the current signal handler for the signal
> indicated by signo.
>
>   
>
> @@ -168,6 +168,15 @@
> 
>
>   
> +
> +
> +
> +
> +
> +&reftitle.notes;
> +pcntl_signal doesn't stack the signal handlers, but
> replaces them.
> +
> +
>
>   
>&reftitle.seealso;
> @@ -178,6 +187,8 @@
> 
>
>   
> +
> +
>
>  
>
>
>
> => Put this change into your patches :
> https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44062
> => Delete this change:
> https://edit.php.net/?project=php&action=deleteThisChange&idDB=44062
>
>
> --
>
> Modified: en/reference/pcntl/functions/pcntl-exec.xml
> By: da vinci on 2012-12-28 02:46:08
> ===
> --- en/reference/pcntl/functions/pcntl-exec.xml
> +++ en/reference/pcntl/functions/pcntl-exec.xml
> @@ -11,8 +11,8 @@
>
> voidpcntl_exec
>
> stringpath
> -choice="opt">arrayargs
> -choice="opt">arrayenvs
> +choice="opt">arrayargsarray()
> +choice="opt">arrayenvsarray()
>
>
> Executes the program with the given arguments.
>
>
> => Put this change into your patches :
> https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44063
> => Delete this change:
> https://edit.php.net/?project=php&action=deleteThisChange&idDB=44063
>
>
> --
>
> Modified: en/reference/pcre/functions/preg-split.xml
> By: anonymous on 2012-12-31 11:39:41
> ===
> --- en/reference/pcre/functions/preg-split.xml
> +++ en/reference/pcre/functions/preg-split.xml
> @@ -1,5 +1,5 @@
>  
> -
> +
>  http://docbook.org/ns/docbook";>
>   
>preg_split
> @@ -147,6 +147,7 @@
>  // which include " ", r, t, n and f
>  $keywords = preg_split("/[s,]+/", "hypertext language, programming");
>  print_r($keywords);
> +?>
>  ]]>
>  
>  &example.outputs;
> @@ -171,6 +172,7 @@
>  $str = 'string';
>  $chars = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY);
>  print_r($chars);
> +?>
>  ]]>
>  
>  &example.outputs;
>
>
> => Put this change into your patches :
> https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44094
> => Delete this change:
> https://edit.php.net/?project=php&action=deleteThisChange&idDB=44094
>
>
> --
>
> Modified: en/reference/curl/functions/curl-setopt.xml
> By: Genadi Saltikov on 2013-01-02 06:03:37
> ===
> --- en/reference/curl/functions/curl-setopt.xml
> +++ en/reference/curl/functions/curl-setopt.xml
> @@ -1237,26 +1237,26 @@
> CURLOPT_FILE
> 
>  The file that the transfer should be written to. The default
> -is STDOUT (the browser window).
> +is STDOUT (the browser window). Should be
> a stream resource.
> 
>
>
> CURLOPT_INFILE
> 
> -The file that the transfer should be read from when uploading.
> +The file that the transfer should be read from when
> uploading. Should be a stream resource.
> 
>
>
> CURLOPT_STDERR
> 
>  An alternative location to output errors to instead of
> -STDERR.
> +STDERR. Should be a stream resource.
> 
>
>
>  valign="top">CURLOPT_WRITEHEADER
> 
> -The file that the header part of the transfer is written to.
> +The file that the header part of the transfer is written to.
> Should be a stream resource.
> 
>
>   
>
>
> => Put this change into your patches :
> https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44105
> => Delete this change:
> https://edit.php.net/?project=php&action=deleteThisChange&idDB=44105
>
>
> --
>
> Modified: en/reference/network/function

[PHP-DOC] Contributions are ready for review

2013-03-04 Thread phpdoc
Hello PHP EN Documentation team,

There are contributions within the online editor queue for this language.
Please review, then commit or delete these patches.

Patches for review : 
---

Modified: en/reference/pcntl/functions/pcntl-signal.xml
By: da vinci on 2012-12-28 02:32:53
===
--- en/reference/pcntl/functions/pcntl-signal.xml
+++ en/reference/pcntl/functions/pcntl-signal.xml
@@ -16,7 +16,7 @@
   
   
The pcntl_signal function installs a new
-   signal handler for the signal indicated by signo.   
+   signal handler or replaces the current signal handler for the signal 
indicated by signo.
   
  
 
@@ -168,6 +168,15 @@

   
  
+ 
+ 
+ 
+
+
+&reftitle.notes;
+pcntl_signal doesn't stack the signal handlers, but 
replaces them.
+
+ 
 
  
   &reftitle.seealso;
@@ -178,6 +187,8 @@

   
  
+ 
+ 
 
 
 


=> Put this change into your patches : 
https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44062
=> Delete this change: 
https://edit.php.net/?project=php&action=deleteThisChange&idDB=44062

  
--

Modified: en/reference/pcntl/functions/pcntl-exec.xml
By: da vinci on 2012-12-28 02:46:08
===
--- en/reference/pcntl/functions/pcntl-exec.xml
+++ en/reference/pcntl/functions/pcntl-exec.xml
@@ -11,8 +11,8 @@
   
voidpcntl_exec
stringpath
-   arrayargs
-   arrayenvs
+   arrayargsarray()
+   arrayenvsarray()
   
   
Executes the program with the given arguments.


=> Put this change into your patches : 
https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44063
=> Delete this change: 
https://edit.php.net/?project=php&action=deleteThisChange&idDB=44063

  
--

Modified: en/reference/pcre/functions/preg-split.xml
By: anonymous on 2012-12-31 11:39:41
===
--- en/reference/pcre/functions/preg-split.xml
+++ en/reference/pcre/functions/preg-split.xml
@@ -1,5 +1,5 @@
 
-
+
 http://docbook.org/ns/docbook";>
  
   preg_split
@@ -147,6 +147,7 @@
 // which include " ", r, t, n and f
 $keywords = preg_split("/[s,]+/", "hypertext language, programming");
 print_r($keywords);
+?>
 ]]>
 
 &example.outputs;
@@ -171,6 +172,7 @@
 $str = 'string';
 $chars = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY);
 print_r($chars);
+?>
 ]]>
 
 &example.outputs;


=> Put this change into your patches : 
https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44094
=> Delete this change: 
https://edit.php.net/?project=php&action=deleteThisChange&idDB=44094

  
--

Modified: en/reference/curl/functions/curl-setopt.xml
By: Genadi Saltikov on 2013-01-02 06:03:37
===
--- en/reference/curl/functions/curl-setopt.xml
+++ en/reference/curl/functions/curl-setopt.xml
@@ -1237,26 +1237,26 @@
CURLOPT_FILE

 The file that the transfer should be written to. The default
-is STDOUT (the browser window).
+is STDOUT (the browser window). Should be a 
stream resource.

   
   
CURLOPT_INFILE

-The file that the transfer should be read from when uploading.
+The file that the transfer should be read from when uploading. 
Should be a stream resource.

   
   
CURLOPT_STDERR

 An alternative location to output errors to instead of
-STDERR.
+STDERR. Should be a stream resource.

   
   
CURLOPT_WRITEHEADER

-The file that the header part of the transfer is written to.
+The file that the header part of the transfer is written to. 
Should be a stream resource.

   
  


=> Put this change into your patches : 
https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=44105
=> Delete this change: 
https://edit.php.net/?project=php&action=deleteThisChange&idDB=44105

  
--

Modified: en/reference/network/functions/setcookie.xml
By: anonymous on 2013-01-04 03:11:56
===
--- en/reference/network/functions/setcookie.xml
+++ en/reference/network/functions/setcookie.xml
@@ -373,6 +373,7 @@