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 @@
+?xml version=1.0 encoding=utf-8?
+!-- $Revision: 299459 $ --
+
+refentry xml:id=sqlite3.createcollation
+xmlns=http://docbook.org/ns/docbook;
+xmlns:xlink=http://www.w3.org/1999/xlink;
+ refnamediv
+  refnameSQLite3::createCollation/refname
+
+  refpurposeRegisters a PHP function for use as an SQL collating
+ function/refpurpose /refnamediv
+
+ refsect1 role=description
+  reftitle.description;
+  methodsynopsis
+   modifierpublic/modifier 
typebool/typemethodnameSQLite3::createCollation/methodname
+   methodparamtypestring/typeparametername/parameter/methodparam
+
+ methodparamtypecallable/typeparametercallback/parameter/met
+ hodparam
+  /methodsynopsis
+  para
+   Registers a PHP function or user-defined function for use as a collating
+   function within SQL statements.
+  /para
+ /refsect1
+
+ refsect1 role=parameters
+  reftitle.parameters;
+  variablelist
+   varlistentry
+termparametername/parameter/term
+listitem
+ para
+  Name of the SQL collating function to be created or redefined
+ /para
+/listitem
+   /varlistentry
+   varlistentry
+termparametercallback/parameter/term
+listitem
+ para
+  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 functionstrcmp/function does, i.e. it 
should return -1, 1,
+  or 0 if the first string sorts before, sorts after, or is equal to the 
second.
+ /para
+/listitem
+   /varlistentry
+  /variablelist
+ /refsect1
+
+ refsect1 role=returnvalues
+  reftitle.returnvalues;
+  para
+   return.success;
+  /para
+ /refsect1
+
+ refsect1 role=examples
+  reftitle.examples;
+  para
+   example
+titlefunctionSQLite3::createCollation/function example/title
+para
+ Register the PHP function functionstrnatcmp/function as a collating 
sequence in the SQLite3 database.
+/para
+programlisting role=php
+![CDATA[
+?php
+
+$db = new SQLite3(:memory:);
+$db-exec(CREATE TABLE test (col1 string)); $db-exec(INSERT INTO
+test VALUES ('a1')); $db-exec(INSERT INTO test VALUES ('a10'));
+$db-exec(INSERT INTO test VALUES ('a2'));
+
+$db-createCollation('NATURAL_CMP', 'strnatcmp');
+
+$defaultSort = $db-query(SELECT col1 FROM test ORDER BY col1);
+$naturalSort = $db-query(SELECT col1 FROM test ORDER BY col1 COLLATE
+NATURAL_CMP);
+
+echo default:n;
+while ($row = $defaultSort-fetchArray()){
+  echo $row['col1'], n;
+}
+
+echo nnatural:n;
+while ($row = $naturalSort-fetchArray()){
+  echo $row['col1'], n;
+}
+
+$db-close();
+
+?
+]]
+/programlisting
+example.outputs;
+screen
+![CDATA[
+
+default:
+a1
+a10
+a2
+
+natural:
+a1
+a2
+a10
+
+]]
+/screen
+   /example
+  /para
+ /refsect1
+
+ refsect1 role=seealso
+  reftitle.seealso;
+  simplelist
+   memberThe SQLite collation documentation: link
+ xlink:href=url.sqlite.collation;url.sqlite.collation;/link/mem
+ ber
+  /simplelist
+ /refsect1
+
+/refentry
+
+!-- Keep this comment at the end of the file Local variables:
+mode: sgml
+sgml-omittag:t
+sgml-shorttag:t
+sgml-minimize-attributes:nil
+sgml-always-quote-attributes:t
+sgml-indent-step:1
+sgml-indent-data:t
+indent-tabs-mode:nil
+sgml-parent-document:nil
+sgml-default-dtd-file:~/.phpdoc/manual.ced
+sgml-exposed-tags:nil
+sgml-local-catalogs:nil
+sgml-local-ecat-files:nil
+End:
+vim600: syn=xml fen fdm=syntax fdl=2 si
+vim: et tw=78 syn=sgml
+vi: ts=1 sw=1
+--
 No newline at end of file


= Put this change into your patches : 
https://edit.php.net/?project=phpaction=putIntoMyPatchesidDB=43558
= Delete this change: 
https://edit.php.net/?project=phpaction=deleteThisChangeidDB=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 @@
  

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

2013-05-27 Thread Peter Cowburn
On 27 May 2013 19:56, Brad Dewar bde...@stfx.ca 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-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 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 :
 ---

 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 @@
/methodsynopsis
para
 The functionpcntl_signal/function function installs a new
 -   signal handler for the signal indicated by
 parametersigno/parameter.
 +   signal handler or replaces the current signal handler for the signal
 indicated by parametersigno/parameter.
/para
   /refsect1

 @@ -168,6 +168,15 @@
 /example
/para
   /refsect1
 +
 +
 +
 +
 +refsect1 role=notes!-- {{{ --
 +reftitle.notes;
 +functionpcntl_signal/function doesn't stack the signal handlers, but
 replaces them.
 +/refsect1!-- }}} --
 +

   refsect1 role=seealso
reftitle.seealso;
 @@ -178,6 +187,8 @@
 /simplelist
/para
   /refsect1
 +
 +

  /refentry



 = Put this change into your patches :
 https://edit.php.net/?project=phpaction=putIntoMyPatchesidDB=44062
 = Delete this change:
 https://edit.php.net/?project=phpaction=deleteThisChangeidDB=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 @@
methodsynopsis
 typevoid/typemethodnamepcntl_exec/methodname

 methodparamtypestring/typeparameterpath/parameter/methodparam
 -   methodparam
 choice=opttypearray/typeparameterargs/parameter/methodparam
 -   methodparam
 choice=opttypearray/typeparameterenvs/parameter/methodparam
 +   methodparam
 choice=opttypearray/typeparameterargs/parameterinitializerarray()/initializer/methodparam
 +   methodparam
 choice=opttypearray/typeparameterenvs/parameterinitializerarray()/initializer/methodparam
/methodsynopsis
para
 Executes the program with the given arguments.


 = Put this change into your patches :
 https://edit.php.net/?project=phpaction=putIntoMyPatchesidDB=44063
 = Delete this change:
 https://edit.php.net/?project=phpaction=deleteThisChangeidDB=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 @@
  ?xml version=1.0 encoding=utf-8?
 -!-- $Revision: 329086 $ --
 +!-- $Revision: 313291 $ --
  refentry xml:id=function.preg-split xmlns=
 http://docbook.org/ns/docbook;
   refnamediv
refnamepreg_split/refname
 @@ -147,6 +147,7 @@
  // which include  , r, t, n and f
  $keywords = preg_split(/[s,]+/, hypertext language, programming);
  print_r($keywords);
 +?
  ]]
  /programlisting
  example.outputs;
 @@ -171,6 +172,7 @@
  $str = 'string';
  $chars = preg_split('//', $str, -1, PREG_SPLIT_NO_EMPTY);
  print_r($chars);
 +?
  ]]
  /programlisting
  example.outputs;


 = Put this change into your patches :
 https://edit.php.net/?project=phpaction=putIntoMyPatchesidDB=44094
 = Delete this change:
 https://edit.php.net/?project=phpaction=deleteThisChangeidDB=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 @@
 entry valign=topconstantCURLOPT_FILE/constant/entry
 entry valign=top
  The file that the transfer should be written to. The default
 -is literalSTDOUT/literal (the browser window).
 +is literalSTDOUT/literal (the browser window). Should be
 a stream resource.
 /entry
/row
row
 entry valign=topconstantCURLOPT_INFILE/constant/entry
 entry valign=top
 -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.
 /entry
/row
row
 entry valign=topconstantCURLOPT_STDERR/constant/entry
 entry valign=top
  

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 petercowb...@gmail.com wrote:
 Howdy!
 
 On 12 November 2012 13:00,  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.
 
 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 Peter Cowburn
Howdy!

On 12 November 2012 13:00,  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.

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-11-12 Thread Hannes Magnusson
On Mon, Nov 12, 2012 at 2:59 PM, Peter Cowburn petercowb...@gmail.com wrote:
 Howdy!

 On 12 November 2012 13:00,  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.

 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-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 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 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 pdezw...@rubiconproject.com

 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 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 Alexander Moskaliov
2012/2/15 Yannick Torrès yannick.tor...@gmail.com:
 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 Yannick Torrès
Great job Alexander

2012/2/21 Alexander Moskaliov ir...@irker.net

 2012/2/15 Yannick Torrès yannick.tor...@gmail.com:
  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
Hi all,

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

Best,
Yannick

2012/2/13 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 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 phpdoc@lists.php.net 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
2012/2/15 Maciek Sokolewicz maciek.sokolew...@gmail.com

 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 phpdoc@lists.php.net 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



--

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

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

2011/1/10 Peter Cowburn petercowb...@gmail.com:
 On 10 January 2011 13:00,  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.

 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,  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.

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.