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

2013-05-27 Thread Peter Cowburn
On 27 May 2013 19:56, Brad Dewar  wrote:

>
> The 'contribution ready for review' that is about SQLite3::createCollation
> is from me.  createCollation is a relatively new addition to PHP and is
> still undocumented.
>
> Never contributed to the docs before -- any tips on finding a committer?
>

Poke the list… oh, wait. :-)

If you haven't already, you'll need to use the magic word "kitten" in our
IRC channel (#php.doc on Efnet).


>
> Thanks,
> Brad


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

2013-05-27 Thread Brad Dewar

The 'contribution ready for review' that is about SQLite3::createCollation is 
from me.  createCollation is a relatively new addition to PHP and is still 
undocumented.

Never contributed to the docs before -- any tips on finding a committer?

Thanks,
Brad


-Original Message-
From: phpdoc@lists.php.net [mailto:phpdoc@lists.php.net]
Sent: May-27-13 9:00 AM
To: phpdoc@lists.php.net
Subject: [PHP-DOC] Contributions are ready for review

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 :
---

New file: en/reference/sqlite3/sqlite3/createcollation.xml
By: b dewar on 2013-04-10 04:59:20
===
--- en/reference/sqlite3/sqlite3/createcollation.xml
+++ en/reference/sqlite3/sqlite3/createcollation.xml
@@ -0,0 +1,142 @@
+
+
+
+http://docbook.org/ns/docbook";
+xmlns:xlink="http://www.w3.org/1999/xlink";>
+ 
+  SQLite3::createCollation
+
+  Registers a PHP function for use as an SQL collating
+ function 
+
+ 
+  &reftitle.description;
+  
+   public 
boolSQLite3::createCollation
+   stringname
+
+ callablecallback
+  
+  
+   Registers a PHP function or user-defined function for use as a collating
+   function within SQL statements.
+  
+ 
+
+ 
+  &reftitle.parameters;
+  
+   
+name
+
+ 
+  Name of the SQL collating function to be created or redefined
+ 
+
+   
+   
+callback
+
+ 
+  The name of a PHP function or user-defined function to apply as a
+  callback, defining the behavior of the collation.  It should accept
+  two strings and return as strcmp does, i.e. it 
should return -1, 1,
+  or 0 if the first string sorts before, sorts after, or is equal to the 
second.
+ 
+
+   
+  
+ 
+
+ 
+  &reftitle.returnvalues;
+  
+   &return.success;
+  
+ 
+
+ 
+  &reftitle.examples;
+  
+   
+SQLite3::createCollation example
+
+ Register the PHP function strnatcmp as a collating 
sequence in the SQLite3 database.
+
+
+
+
+&example.outputs;
+
+
+
+   
+  
+ 
+
+ 
+  &reftitle.seealso;
+  
+   The SQLite collation documentation: &url.sqlite.collation;
+  
+ 
+
+
+
+
 No newline at end of file


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

  
--

Modified: en/reference/sqlite3/versions.xml
By: b dewar on 2012-11-29 08:42:57
===
--- en/reference/sqlite3/versions.xml
+++ en/reference/sqlite3/versions.xml
@@ -9,6 +9,7 @@
  
  
  
+ 
  
  
  


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

  
--

Modified: en/reference/var/functions/intval.xml
By: anonymous on 2013-03-27 02:18:53
===
--- en/reference/var/functions/intval.xml
+++ en/reference/var/functions/intval.xml
@@ -40,6 +40,31 @@
   
The base for the conversion
   
+  
+   
+If base is 0, the base used is determined
+by the format of var:
+
+ 
+  
+   if string includes a "0x" (or "0X") prefix, the base is taken
+   as 16 (hex); otherwise,
+  
+ 
+ 
+  
+   if string starts with "0", the base is taken as 8 (octal);
+   otherwise,
+  
+ 
+ 
+  
+   the base is taken as 10 (decimal).
+  
+ 
+
+   
+  
  
 



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

  
--

Modified: en/reference/pcre/pattern.syntax.xml
By: anonymous on 2013-03-29 01:31:14
===
--- en/reference/pcre/pattern.syntax.xml
+++ en/reference/pcre/pattern.syntax.xml
@@ -271,7 +271,7 @@
  
   
a character with the xx property, see
-   unicode properties
+   Unicode
+ properties
for more info
   
  
@@ -281,7 +281,17 @@
  
   
a character without the xx property, see
-   unicode properties
+   Unicod

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

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

2012-11-13 Thread Philip Olson

On Nov 12, 2012, at 7:16 PM, Hannes Magnusson wrote:

> On Mon, Nov 12, 2012 at 2:59 PM, Peter Cowburn  wrote:
>> Howdy!
>> 
>> On 12 November 2012 13:00,   wrote:
>>> Hello PHP EN Documentation team,
>>> 
>>> There are contributions within the online editor queue for this language.
>>> Please review, then commit or delete these patches.
>> 
>> I have gone through the list of patches and reviewed/trashed/committed
>> them. All that remains, at the time of writing, is Rafael's date
>> changes (that I can't do anything with).
>> 
>> Thanks to everyone for their contributions.
> 
> Thanks for going through them all!

Kudos for this! And also to Adam for closing a bunch of bugs recently… 
and at least we never made it to 300 open doc bugs! :) :( :)

Regards,
Philip

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

2012-11-12 Thread Hannes Magnusson
On Mon, Nov 12, 2012 at 2:59 PM, Peter Cowburn  wrote:
> Howdy!
>
> On 12 November 2012 13:00,   wrote:
>> Hello PHP EN Documentation team,
>>
>> There are contributions within the online editor queue for this language.
>> Please review, then commit or delete these patches.
>
> I have gone through the list of patches and reviewed/trashed/committed
> them. All that remains, at the time of writing, is Rafael's date
> changes (that I can't do anything with).
>
> Thanks to everyone for their contributions.

Thanks for going through them all!

-Hannes


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

2012-11-12 Thread Peter Cowburn
Howdy!

On 12 November 2012 13:00,   wrote:
> Hello PHP EN Documentation team,
>
> There are contributions within the online editor queue for this language.
> Please review, then commit or delete these patches.

I have gone through the list of patches and reviewed/trashed/committed
them. All that remains, at the time of writing, is Rafael's date
changes (that I can't do anything with).

Thanks to everyone for their contributions.


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

2012-03-06 Thread Yannick Torrès
Hi Peter,

You must right click on a file in the "patch for review" section (on your
left). Then, choose the "view diff" option.
A window open, you review the diff and it's a "good" modification, you can
change the owner of this modification to you (or delete the patch). Then,
you have to commit all of files under your username.

Best,
Yannick

2012/3/6 Pieter de Zwart 

> Please forgive my lack of knowledge, but I see a patch listed for review
> by mch:
> * (update) On 2011-10-11 06:36:22 by mch : en/reference/amqp/constants.xml
>
> I logged into edits.php.net, but I could not figure out how to see what
> the patch was. I seem to have three options: Continue to modify this file,
> Reject this patch, Validate this patch. Do I choose one of those, and if
> so, how do I see the diff?
>
> Thanks!
> Pieter
>
>
>
>
>
>
>
> On 3/5/12 5:00 AM, "phpdoc@lists.php.net"  wrote:
>
> >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 :
> >---
> >* (update) On 2011-05-26 09:31:28 by uw :
> >en/reference/mysqlnd_ms/concepts.xml
> >* (update) On 2011-06-27 21:34:04 by guilhermeblanco :
> >en/language/predefined/errorexception/construct.xml
> >* (update) On 2011-08-16 11:29:39 by rdohms :
> >en/reference/strings/functions/strrchr.xml
> >* (update) On 2011-08-21 16:53:17 by ch :
> >en/reference/snmp/snmp/construct.xml
> >* (update) On 2011-08-21 17:01:11 by ch :
> >en/reference/snmp/book.xml
> >* (update) On 2011-09-24 04:35:10 by mch :
> >en/language/predefined/variables/server.xml
> >* (update) On 2011-10-11 06:36:22 by mch :
> >en/reference/amqp/constants.xml
> >* (update) On 2011-10-12 00:44:09 by mch :
> >en/reference/gearman/gearmanclient.xml
> >* (update) On 2011-11-13 19:18:10 by anonymous :
> >en/reference/curl/functions/curl-setopt-array.xml
> >* (update) On 2011-11-15 11:21:38 by anonymous :
> >en/reference/bzip2/functions/bzwrite.xml
> >* (update) On 2011-11-15 11:21:59 by anonymous :
> >en/reference/apc/apciterator/construct.xml
> >* (update) On 2011-11-15 11:26:44 by anonymous :
> >en/reference/apc/functions/apc-bin-dumpfile.xml
> >* (update) On 2011-11-15 11:32:27 by anonymous :
> >en/reference/zlib/functions/gzgetss.xml
> >* (update) On 2011-11-15 11:35:47 by anonymous :
> >en/reference/amqp/amqpexchange/publish.xml
> >* (update) On 2011-11-15 11:43:59 by anonymous :
> >en/reference/apc/functions/apc-add.xml
> >* (update) On 2011-11-15 11:46:45 by anonymous :
> >en/reference/apc/functions/apc-bin-dump.xml
> >* (update) On 2011-11-15 11:47:47 by anonymous :
> >en/reference/apc/functions/apc-cache-info.xml
> >* (update) On 2011-11-15 11:48:46 by anonymous :
> >en/reference/apc/functions/apc-clear-cache.xml
> >* (update) On 2011-11-27 19:57:45 by joey :
> >en/reference/apc/ini.xml
> >* (update) On 2012-01-01 12:55:20 by anonymous :
> >en/language/variables.xml
> >
> >
> >
> >--
> >https://edit.php.net/
> >This email is send automatically by the Php Docbook Online Editor.
>
>


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

2012-03-06 Thread Pieter de Zwart
Please forgive my lack of knowledge, but I see a patch listed for review
by mch:
* (update) On 2011-10-11 06:36:22 by mch : en/reference/amqp/constants.xml

I logged into edits.php.net, but I could not figure out how to see what
the patch was. I seem to have three options: Continue to modify this file,
Reject this patch, Validate this patch. Do I choose one of those, and if
so, how do I see the diff?

Thanks!
Pieter







On 3/5/12 5:00 AM, "phpdoc@lists.php.net"  wrote:

>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 :
>---
>* (update) On 2011-05-26 09:31:28 by uw :
>en/reference/mysqlnd_ms/concepts.xml
>* (update) On 2011-06-27 21:34:04 by guilhermeblanco :
>en/language/predefined/errorexception/construct.xml
>* (update) On 2011-08-16 11:29:39 by rdohms :
>en/reference/strings/functions/strrchr.xml
>* (update) On 2011-08-21 16:53:17 by ch :
>en/reference/snmp/snmp/construct.xml
>* (update) On 2011-08-21 17:01:11 by ch :
>en/reference/snmp/book.xml
>* (update) On 2011-09-24 04:35:10 by mch :
>en/language/predefined/variables/server.xml
>* (update) On 2011-10-11 06:36:22 by mch :
>en/reference/amqp/constants.xml
>* (update) On 2011-10-12 00:44:09 by mch :
>en/reference/gearman/gearmanclient.xml
>* (update) On 2011-11-13 19:18:10 by anonymous :
>en/reference/curl/functions/curl-setopt-array.xml
>* (update) On 2011-11-15 11:21:38 by anonymous :
>en/reference/bzip2/functions/bzwrite.xml
>* (update) On 2011-11-15 11:21:59 by anonymous :
>en/reference/apc/apciterator/construct.xml
>* (update) On 2011-11-15 11:26:44 by anonymous :
>en/reference/apc/functions/apc-bin-dumpfile.xml
>* (update) On 2011-11-15 11:32:27 by anonymous :
>en/reference/zlib/functions/gzgetss.xml
>* (update) On 2011-11-15 11:35:47 by anonymous :
>en/reference/amqp/amqpexchange/publish.xml
>* (update) On 2011-11-15 11:43:59 by anonymous :
>en/reference/apc/functions/apc-add.xml
>* (update) On 2011-11-15 11:46:45 by anonymous :
>en/reference/apc/functions/apc-bin-dump.xml
>* (update) On 2011-11-15 11:47:47 by anonymous :
>en/reference/apc/functions/apc-cache-info.xml
>* (update) On 2011-11-15 11:48:46 by anonymous :
>en/reference/apc/functions/apc-clear-cache.xml
>* (update) On 2011-11-27 19:57:45 by joey :
>en/reference/apc/ini.xml
>* (update) On 2012-01-01 12:55:20 by anonymous :
>en/language/variables.xml
>
>
>
>-- 
>https://edit.php.net/
>This email is send automatically by the Php Docbook Online Editor.



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

2012-02-21 Thread Yannick Torrès
Great job Alexander

2012/2/21 Alexander Moskaliov 

> 2012/2/15 Yannick Torrès :
> > Yes, only administrator can modify/reject/delete patch made by
> non-anonymous
> > user.
> I'm working now on fix for some issue for this.
>
> Svn user can login only in languages that karma he have.
> But if user already logged in , he can switch to any language without
> karma for this language.
> For example we have now some patches from non en karma in en language.
> And En users can not commit this patches.
>
>
> I will add "haveKarma" flag to user in current language. With using this
> flag :
> - user can login to any language, but if he have not karma, he can not
> commit and etc.(like as anonymous user)
> - user with current lang karma can commit patches from svn user
> without lang karma in this lang. (like as anonymous patch)
>
> I finished this fix/feature, I will commit it after some testing.
>
>
> With regards, Alexander Moskaliov
> ir...@irker.net
>


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

2012-02-21 Thread Alexander Moskaliov
2012/2/15 Yannick Torrès :
> Yes, only administrator can modify/reject/delete patch made by non-anonymous
> user.
I'm working now on fix for some issue for this.

Svn user can login only in languages that karma he have.
But if user already logged in , he can switch to any language without
karma for this language.
For example we have now some patches from non en karma in en language.
And En users can not commit this patches.


I will add "haveKarma" flag to user in current language. With using this flag :
- user can login to any language, but if he have not karma, he can not
commit and etc.(like as anonymous user)
- user with current lang karma can commit patches from svn user
without lang karma in this lang. (like as anonymous patch)

I finished this fix/feature, I will commit it after some testing.


With regards, Alexander Moskaliov
ir...@irker.net


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

2012-02-15 Thread Yannick Torrès
2012/2/15 Maciek Sokolewicz 

> I have already commited about half of these; apparently I can't commit
> patches from non-anonymous users since the commit options seems to be
> missing in the menu (and I currently don't have an SVN client on this
> semi-public computer; nor any inclination to install one).
>
> Deleting of patches would be easier if there was actually such an option
> next to the commit option (ie. the right-click menu). Instead, you have to
> open the file for editing and manually reject the patch.
>

Yes, only administrator can modify/reject/delete patch made by
non-anonymous user.

Thanks for your work on this ;)



>
> - Tul
>
>
> On 15-02-2012 13:55, Yannick Torrčs wrote:
>
>> Hi all,
>>
>> Is there some one who can work on all of this proposal ?
>>
>> Best,
>> Yannick
>>
>> 2012/2/13 mailto:phpdoc@lists.php.net>>
>>
>>
>>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 :
>>---
>>* (update) On 2011-05-26 09:31:28 by uw :
>>en/reference/mysqlnd_ms/**concepts.xml
>>* (update) On 2011-06-27 21:34:04 by guilhermeblanco :
>>en/language/predefined/**errorexception/construct.xml
>>* (update) On 2011-08-16 11:29:39 by rdohms :
>>en/reference/strings/**functions/strrchr.xml
>>* (update) On 2011-08-21 16:53:17 by ch :
>>en/reference/snmp/snmp/**construct.xml
>>* (update) On 2011-08-21 17:01:11 by ch :
>>en/reference/snmp/book.xml
>>* (update) On 2011-08-31 21:40:23 by breck7 :
>>en/reference/network/**functions/header.xml
>>* (update) On 2011-09-24 04:35:10 by mch :
>>en/language/predefined/**variables/server.xml
>>* (update) On 2011-10-11 06:36:22 by mch :
>>en/reference/amqp/constants.**xml
>>* (update) On 2011-10-12 00:44:09 by mch :
>>en/reference/gearman/**gearmanclient.xml
>>* (update) On 2011-10-22 14:16:59 by anonymous #11769 :
>>en/language/operators.xml
>>* (update) On 2011-10-27 04:16:08 by anonymous #11351 :
>>en/reference/mysqlnd_ms/ini.**xml
>>* (update) On 2011-11-13 19:18:10 by anonymous #12333 :
>>en/reference/curl/functions/**curl-setopt-array.xml
>>* (update) On 2011-11-15 11:21:38 by anonymous #12333 :
>>en/reference/bzip2/functions/**bzwrite.xml
>>* (update) On 2011-11-15 11:21:59 by anonymous #12333 :
>>en/reference/apc/apciterator/**construct.xml
>>* (update) On 2011-11-15 11:26:44 by anonymous #12333 :
>>en/reference/apc/functions/**apc-bin-dumpfile.xml
>>* (update) On 2011-11-15 11:32:27 by anonymous #12333 :
>>en/reference/zlib/functions/**gzgetss.xml
>>* (update) On 2011-11-15 11:35:47 by anonymous #12333 :
>>en/reference/amqp/**amqpexchange/publish.xml
>>* (update) On 2011-11-15 11:39:06 by anonymous #12333 :
>>en/reference/apache/functions/**apache-getenv.xml
>>* (update) On 2011-11-15 11:42:47 by anonymous #12333 :
>>en/reference/apache/functions/**apache-note.xml
>>* (update) On 2011-11-15 11:43:59 by anonymous #12333 :
>>en/reference/apc/functions/**apc-add.xml
>>* (update) On 2011-11-15 11:46:45 by anonymous #12333 :
>>en/reference/apc/functions/**apc-bin-dump.xml
>>* (update) On 2011-11-15 11:47:47 by anonymous #12333 :
>>en/reference/apc/functions/**apc-cache-info.xml
>>* (update) On 2011-11-15 11:48:46 by anonymous #12333 :
>>en/reference/apc/functions/**apc-clear-cache.xml
>>* (update) On 2011-11-27 19:57:45 by joey :
>>en/reference/apc/ini.xml
>>* (update) On 2011-12-28 16:31:18 by anonymous #13445 :
>>en/reference/datetime/book.xml
>>* (update) On 2011-12-28 17:03:22 by anonymous #13445 :
>>en/reference/iconv/functions/**iconv-set-encoding.xml
>>* (update) On 2012-01-01 12:55:20 by anonymous #13445 :
>>en/language/variables.xml
>>* (update) On 2012-01-03 01:39:47 by anonymous #13445 :
>>en/reference/datetime/**functions/mktime.xml
>>* (update) On 2012-01-03 01:39:51 by anonymous #13445 :
>>en/reference/datetime/**functions/gmmktime.xml
>>* (update) On 2012-01-26 02:21:33 by christoph.rosse :
>>en/reference/classobj/**functions/get-class-vars.xml
>>* (update) On 2012-01-26 04:33:55 by christoph.rosse :
>>en/reference/classobj/**functions/get-parent-class.xml
>>* (update) On 2012-02-06 01:54:13 by anonymous #11769 :
>>en/language/wrappers/rar.xml
>>* (update) On 2012-02-06 02:12:11 by anonymous #11769 :
>>en/language/wrappers/audio.xml
>>* (update) On 2012-02-12 19:07:22 by Narf :
>>en/reference/cubrid/functions/**cubrid-pconnect.xml

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

2012-02-15 Thread Maciek Sokolewicz
I have already commited about half of these; apparently I can't commit 
patches from non-anonymous users since the commit options seems to be 
missing in the menu (and I currently don't have an SVN client on this 
semi-public computer; nor any inclination to install one).


Deleting of patches would be easier if there was actually such an option 
next to the commit option (ie. the right-click menu). Instead, you have 
to open the file for editing and manually reject the patch.


- Tul

On 15-02-2012 13:55, Yannick Torrès wrote:

Hi all,

Is there some one who can work on all of this proposal ?

Best,
Yannick

2012/2/13 mailto:phpdoc@lists.php.net>>

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 :
---
* (update) On 2011-05-26 09:31:28 by uw :
en/reference/mysqlnd_ms/concepts.xml
* (update) On 2011-06-27 21:34:04 by guilhermeblanco :
en/language/predefined/errorexception/construct.xml
* (update) On 2011-08-16 11:29:39 by rdohms :
en/reference/strings/functions/strrchr.xml
* (update) On 2011-08-21 16:53:17 by ch :
en/reference/snmp/snmp/construct.xml
* (update) On 2011-08-21 17:01:11 by ch :
en/reference/snmp/book.xml
* (update) On 2011-08-31 21:40:23 by breck7 :
en/reference/network/functions/header.xml
* (update) On 2011-09-24 04:35:10 by mch :
en/language/predefined/variables/server.xml
* (update) On 2011-10-11 06:36:22 by mch :
en/reference/amqp/constants.xml
* (update) On 2011-10-12 00:44:09 by mch :
en/reference/gearman/gearmanclient.xml
* (update) On 2011-10-22 14:16:59 by anonymous #11769 :
en/language/operators.xml
* (update) On 2011-10-27 04:16:08 by anonymous #11351 :
en/reference/mysqlnd_ms/ini.xml
* (update) On 2011-11-13 19:18:10 by anonymous #12333 :
en/reference/curl/functions/curl-setopt-array.xml
* (update) On 2011-11-15 11:21:38 by anonymous #12333 :
en/reference/bzip2/functions/bzwrite.xml
* (update) On 2011-11-15 11:21:59 by anonymous #12333 :
en/reference/apc/apciterator/construct.xml
* (update) On 2011-11-15 11:26:44 by anonymous #12333 :
en/reference/apc/functions/apc-bin-dumpfile.xml
* (update) On 2011-11-15 11:32:27 by anonymous #12333 :
en/reference/zlib/functions/gzgetss.xml
* (update) On 2011-11-15 11:35:47 by anonymous #12333 :
en/reference/amqp/amqpexchange/publish.xml
* (update) On 2011-11-15 11:39:06 by anonymous #12333 :
en/reference/apache/functions/apache-getenv.xml
* (update) On 2011-11-15 11:42:47 by anonymous #12333 :
en/reference/apache/functions/apache-note.xml
* (update) On 2011-11-15 11:43:59 by anonymous #12333 :
en/reference/apc/functions/apc-add.xml
* (update) On 2011-11-15 11:46:45 by anonymous #12333 :
en/reference/apc/functions/apc-bin-dump.xml
* (update) On 2011-11-15 11:47:47 by anonymous #12333 :
en/reference/apc/functions/apc-cache-info.xml
* (update) On 2011-11-15 11:48:46 by anonymous #12333 :
en/reference/apc/functions/apc-clear-cache.xml
* (update) On 2011-11-27 19:57:45 by joey :
en/reference/apc/ini.xml
* (update) On 2011-12-28 16:31:18 by anonymous #13445 :
en/reference/datetime/book.xml
* (update) On 2011-12-28 17:03:22 by anonymous #13445 :
en/reference/iconv/functions/iconv-set-encoding.xml
* (update) On 2012-01-01 12:55:20 by anonymous #13445 :
en/language/variables.xml
* (update) On 2012-01-03 01:39:47 by anonymous #13445 :
en/reference/datetime/functions/mktime.xml
* (update) On 2012-01-03 01:39:51 by anonymous #13445 :
en/reference/datetime/functions/gmmktime.xml
* (update) On 2012-01-26 02:21:33 by christoph.rosse :
en/reference/classobj/functions/get-class-vars.xml
* (update) On 2012-01-26 04:33:55 by christoph.rosse :
en/reference/classobj/functions/get-parent-class.xml
* (update) On 2012-02-06 01:54:13 by anonymous #11769 :
en/language/wrappers/rar.xml
* (update) On 2012-02-06 02:12:11 by anonymous #11769 :
en/language/wrappers/audio.xml
* (update) On 2012-02-12 19:07:22 by Narf :
en/reference/cubrid/functions/cubrid-pconnect.xml
* (update) On 2012-02-12 19:22:47 by Narf :
en/reference/cubrid/functions/cubrid-pconnect-with-url.xml



--
https://edit.php.net/
This email is send automatically by the Php Docbook Online Editor.






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

2012-02-15 Thread Yannick Torrès
Hi all,

Is there some one who can work on all of this proposal ?

Best,
Yannick

2012/2/13 

> 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 :
>---
>* (update) On 2011-05-26 09:31:28 by uw :
> en/reference/mysqlnd_ms/concepts.xml
>* (update) On 2011-06-27 21:34:04 by guilhermeblanco :
> en/language/predefined/errorexception/construct.xml
>* (update) On 2011-08-16 11:29:39 by rdohms :
> en/reference/strings/functions/strrchr.xml
>* (update) On 2011-08-21 16:53:17 by ch :
> en/reference/snmp/snmp/construct.xml
>* (update) On 2011-08-21 17:01:11 by ch : en/reference/snmp/book.xml
>* (update) On 2011-08-31 21:40:23 by breck7 :
> en/reference/network/functions/header.xml
>* (update) On 2011-09-24 04:35:10 by mch :
> en/language/predefined/variables/server.xml
>* (update) On 2011-10-11 06:36:22 by mch :
> en/reference/amqp/constants.xml
>* (update) On 2011-10-12 00:44:09 by mch :
> en/reference/gearman/gearmanclient.xml
>* (update) On 2011-10-22 14:16:59 by anonymous #11769 :
> en/language/operators.xml
>* (update) On 2011-10-27 04:16:08 by anonymous #11351 :
> en/reference/mysqlnd_ms/ini.xml
>* (update) On 2011-11-13 19:18:10 by anonymous #12333 :
> en/reference/curl/functions/curl-setopt-array.xml
>* (update) On 2011-11-15 11:21:38 by anonymous #12333 :
> en/reference/bzip2/functions/bzwrite.xml
>* (update) On 2011-11-15 11:21:59 by anonymous #12333 :
> en/reference/apc/apciterator/construct.xml
>* (update) On 2011-11-15 11:26:44 by anonymous #12333 :
> en/reference/apc/functions/apc-bin-dumpfile.xml
>* (update) On 2011-11-15 11:32:27 by anonymous #12333 :
> en/reference/zlib/functions/gzgetss.xml
>* (update) On 2011-11-15 11:35:47 by anonymous #12333 :
> en/reference/amqp/amqpexchange/publish.xml
>* (update) On 2011-11-15 11:39:06 by anonymous #12333 :
> en/reference/apache/functions/apache-getenv.xml
>* (update) On 2011-11-15 11:42:47 by anonymous #12333 :
> en/reference/apache/functions/apache-note.xml
>* (update) On 2011-11-15 11:43:59 by anonymous #12333 :
> en/reference/apc/functions/apc-add.xml
>* (update) On 2011-11-15 11:46:45 by anonymous #12333 :
> en/reference/apc/functions/apc-bin-dump.xml
>* (update) On 2011-11-15 11:47:47 by anonymous #12333 :
> en/reference/apc/functions/apc-cache-info.xml
>* (update) On 2011-11-15 11:48:46 by anonymous #12333 :
> en/reference/apc/functions/apc-clear-cache.xml
>* (update) On 2011-11-27 19:57:45 by joey : en/reference/apc/ini.xml
>* (update) On 2011-12-28 16:31:18 by anonymous #13445 :
> en/reference/datetime/book.xml
>* (update) On 2011-12-28 17:03:22 by anonymous #13445 :
> en/reference/iconv/functions/iconv-set-encoding.xml
>* (update) On 2012-01-01 12:55:20 by anonymous #13445 :
> en/language/variables.xml
>* (update) On 2012-01-03 01:39:47 by anonymous #13445 :
> en/reference/datetime/functions/mktime.xml
>* (update) On 2012-01-03 01:39:51 by anonymous #13445 :
> en/reference/datetime/functions/gmmktime.xml
>* (update) On 2012-01-26 02:21:33 by christoph.rosse :
> en/reference/classobj/functions/get-class-vars.xml
>* (update) On 2012-01-26 04:33:55 by christoph.rosse :
> en/reference/classobj/functions/get-parent-class.xml
>* (update) On 2012-02-06 01:54:13 by anonymous #11769 :
> en/language/wrappers/rar.xml
>* (update) On 2012-02-06 02:12:11 by anonymous #11769 :
> en/language/wrappers/audio.xml
>* (update) On 2012-02-12 19:07:22 by Narf :
> en/reference/cubrid/functions/cubrid-pconnect.xml
>* (update) On 2012-02-12 19:22:47 by Narf :
> en/reference/cubrid/functions/cubrid-pconnect-with-url.xml
>
>
>
> --
> https://edit.php.net/
> This email is send automatically by the Php Docbook Online Editor.
>


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

2011-01-11 Thread Yannick Torrès
Hi Peter,

2011/1/10 Peter Cowburn :
> On 10 January 2011 13:00,   wrote:
>>
>> Hello PHP EN Documentation team,
>>
>> There are contributions within the online editor queue for this language.
>> Please review, then commit or delete these patches.
>
> For the "Patches for review" section, is there any way for us to apply
> them? In the editor, I can see the diffs/changes for joey and conf's
> patches but not commit them.  When opening the changed files in the
> editor, I cannot save them as my own work in progress (to then
> commit).

In this module, when a file have been modified by a valid VCS user,
you can just review it, but can't commit it. Karma is checked at
logging time, so this vcs user can commit it his self.
Anyway, if a valid user have modified a file a long time ago, without
commit it, a global or lang admin can modify the owner of this file.
As it, the new owner can commit the change, or just clear it.
For anonymous user modification, I plan to modify it quickly.
Actually, you must open the modified file as a valid user, and the
editor tell you that you can modify it. Just modify the file to became
the new owner of this file, and then, commit it or not.


>
> As for the "Work in progress" section, I cannot see any of them in the
> editor... maybe it is intentional, but if so then why list them here?

I have seen some bad entries in the mail, yes. By bad entries, I just
mean that there is a mistake in the DB and I must change it and
investigate how this user was able to do that.

Best,
Yannick

>
> (If it makes a difference, I logged in for the English language as a
> VCS user, not anonymous.)
>
>>
>>    Work in progress :
>>    ---
>>        * (new) On 2010-05-24 16:36:37 by markskilbeck : 
>> en/reference/cairoimages/-
>>        * (new) On 2010-08-03 11:57:22 by mfonda : 
>> en/reference/array/functions/key-exists.xml
>>        * (new) On 2010-08-10 04:48:00 by dragoonis : 
>> en/reference/network/functions/http-response-code-
>>        * (new) On 2010-08-10 05:32:52 by dragoonis : 
>> en/reference/network/functions/http-response-code/
>>        * (new) On 2010-09-11 05:30:24 by anonymous #476 : 
>> en/referencessdeep/-
>>        * (new) On 2010-09-12 15:15:46 by anonymous #478 : en/chapters1/-
>>        * (update) On 2010-07-23 23:24:22 by anonymous #249 : 
>> en/reference/mysqli/mysqli/real-connect.xml
>>        * (update) On 2010-08-03 11:58:40 by mfonda : 
>> en/reference/array/entities.functions.xml
>>        * (update) On 2010-09-13 17:18:18 by danbrown : 
>> en/reference/sdo/setup.xml
>>        * (update) On 2010-09-26 07:22:48 by anonymous #532 : 
>> en/reference/fileinfo/functions/mime-content-type.xml
>>        * (update) On 2010-09-29 09:19:34 by anonymous #539 : 
>> en/features/commandline.xml
>>        * (update) On 2010-10-08 13:27:08 by anonymous #569 : 
>> en/reference/stream/streamwrapper/stream-open.xml
>>        * (update) On 2010-10-10 13:35:59 by anonymous #478 : 
>> en/reference/amqp/amqpconnection.xml
>>        * (update) On 2010-10-12 01:36:47 by anonymous #283 : 
>> en/extensions.ent
>>        * (update) On 2010-10-26 04:56:37 by anonymous #619 : 
>> en/reference/filesystem/functions/fnmatch.xml
>>        * (update) On 2010-12-06 17:11:48 by anonymous #808 : en/faq/com.xml
>>        * (update) On 2010-12-06 23:58:59 by anonymous #810 : 
>> en/contributors.xml
>>        * (update) On 2010-12-16 08:56:58 by anonymous #916 : 
>> en/reference/strings/functions/echo.xml
>>        * (update) On 2011-01-08 10:04:57 by anonymous #1091 : 
>> en/language-defs.ent
>>
>>
>>    Patches for review :
>>    ---
>>        * (update) On 2010-10-15 08:28:58 by conf : en/language/types.xml
>>        * (update) On 2010-10-19 04:38:43 by conf : 
>> en/language/types/array.xml
>>        * (update) On 2010-11-24 14:27:46 by joey : 
>> en/reference/pcre/pattern.syntax.xml
>>
>>
>>
>> --
>> https://edit.php.net/
>> This email is send automatically by the Php Docbook Online Editor.
>>
>


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

2011-01-10 Thread Peter Cowburn
On 10 January 2011 13:00,   wrote:
>
> Hello PHP EN Documentation team,
>
> There are contributions within the online editor queue for this language.
> Please review, then commit or delete these patches.

For the "Patches for review" section, is there any way for us to apply
them? In the editor, I can see the diffs/changes for joey and conf's
patches but not commit them.  When opening the changed files in the
editor, I cannot save them as my own work in progress (to then
commit).

As for the "Work in progress" section, I cannot see any of them in the
editor... maybe it is intentional, but if so then why list them here?

(If it makes a difference, I logged in for the English language as a
VCS user, not anonymous.)

>
>    Work in progress :
>    ---
>        * (new) On 2010-05-24 16:36:37 by markskilbeck : 
> en/reference/cairoimages/-
>        * (new) On 2010-08-03 11:57:22 by mfonda : 
> en/reference/array/functions/key-exists.xml
>        * (new) On 2010-08-10 04:48:00 by dragoonis : 
> en/reference/network/functions/http-response-code-
>        * (new) On 2010-08-10 05:32:52 by dragoonis : 
> en/reference/network/functions/http-response-code/
>        * (new) On 2010-09-11 05:30:24 by anonymous #476 : en/referencessdeep/-
>        * (new) On 2010-09-12 15:15:46 by anonymous #478 : en/chapters1/-
>        * (update) On 2010-07-23 23:24:22 by anonymous #249 : 
> en/reference/mysqli/mysqli/real-connect.xml
>        * (update) On 2010-08-03 11:58:40 by mfonda : 
> en/reference/array/entities.functions.xml
>        * (update) On 2010-09-13 17:18:18 by danbrown : 
> en/reference/sdo/setup.xml
>        * (update) On 2010-09-26 07:22:48 by anonymous #532 : 
> en/reference/fileinfo/functions/mime-content-type.xml
>        * (update) On 2010-09-29 09:19:34 by anonymous #539 : 
> en/features/commandline.xml
>        * (update) On 2010-10-08 13:27:08 by anonymous #569 : 
> en/reference/stream/streamwrapper/stream-open.xml
>        * (update) On 2010-10-10 13:35:59 by anonymous #478 : 
> en/reference/amqp/amqpconnection.xml
>        * (update) On 2010-10-12 01:36:47 by anonymous #283 : en/extensions.ent
>        * (update) On 2010-10-26 04:56:37 by anonymous #619 : 
> en/reference/filesystem/functions/fnmatch.xml
>        * (update) On 2010-12-06 17:11:48 by anonymous #808 : en/faq/com.xml
>        * (update) On 2010-12-06 23:58:59 by anonymous #810 : 
> en/contributors.xml
>        * (update) On 2010-12-16 08:56:58 by anonymous #916 : 
> en/reference/strings/functions/echo.xml
>        * (update) On 2011-01-08 10:04:57 by anonymous #1091 : 
> en/language-defs.ent
>
>
>    Patches for review :
>    ---
>        * (update) On 2010-10-15 08:28:58 by conf : en/language/types.xml
>        * (update) On 2010-10-19 04:38:43 by conf : en/language/types/array.xml
>        * (update) On 2010-11-24 14:27:46 by joey : 
> en/reference/pcre/pattern.syntax.xml
>
>
>
> --
> https://edit.php.net/
> This email is send automatically by the Php Docbook Online Editor.
>