[PHP-DOC] Re: [PECL-DEV] Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-23 Thread Kristina Chodorow
Okay, I think that I fixed everything mentioned previously. I've removed all the doc for classes written in PHP (sorry about that). changes.tar contains files for five classes written in C: MongoId, MongoDate, MongoCode, MongoRegex and MongoBinData. The diff (changes.patch) corrects the MongoDB

Re: [PHP-DOC] Re: [PECL-DEV] Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-23 Thread Philip Olson
On 23 Mar 2009, at 11:22, Kristina Chodorow wrote: Okay, I think that I fixed everything mentioned previously. I've removed all the doc for classes written in PHP (sorry about that). Hello Kristina, You now have phpdoc karma, so have fun! :) A few notes: - The pecl.info; entity would

Re: [PHP-DOC] Re: [PECL-DEV] Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-23 Thread Hannes Magnusson
On Mon, Mar 23, 2009 at 19:51, Philip Olson phi...@roshambo.org wrote: - Change $Revision: 1.1.1.1 $ to $Revision$ Typo alert. It should be $Revision: $ A full $Revision: ... $ string is fine, CVS will automatically fix it. -Hannes

Re: [PHP-DOC] Re: [PECL-DEV] Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-23 Thread Philip Olson
On 23 Mar 2009, at 13:59, Hannes Magnusson wrote: On Mon, Mar 23, 2009 at 19:51, Philip Olson phi...@roshambo.org wrote: - Change $Revision: 1.1.1.1 $ to $Revision$ Typo alert. It should be $Revision: $ I've used both in the past but am not sure if there is any difference. A full

Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-10 Thread Kristina Chodorow
- Is 'pecl install mongo' not recommended? pecl install mongo wasn't working initially, but now it should be. I'll update that doc. But, I'm a little confused... is this documentation for code written in PHP? If so that seems wrong... we only document APIs and not optional PHP libraries.

Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-10 Thread Philip Olson
But, I'm a little confused... is this documentation for code written in PHP? If so that seems wrong... we only document APIs and not optional PHP libraries. Please explain the situation and why the OOP API isn't written in the extension itself. This documentation is (almost all) for PHP

Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-10 Thread Kristina Chodorow
I'm using and updating the C code. The C code just has basic functions, like connect to the database or query the database. Since I find writing in PHP a bit quicker than writing in C, I wrote more complex functions in PHP, but they still call the C functions to actually interact with the

Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-10 Thread Hannes Magnusson
On Tue, Mar 10, 2009 at 18:10, Kristina Chodorow krist...@10gen.com wrote: I'm using and updating the C code.  The C code just has basic functions, like connect to the database or query the database. Since I find writing in PHP a bit quicker than writing in C, I wrote more complex functions in

[PHP-DOC] Mongo Extension Doc Patch

2009-03-09 Thread Kristina Chodorow
I've added documentation for the OOP part of my PECL extension. It includes classes and functions for connecting to the server, getting and using databases. collections, database results, database files, and Mongo-specific types. Unfortunately, my karma doesn't seem to be high enough to commit

Re: [PHP-DOC] Mongo Extension Doc Patch

2009-03-09 Thread Philip Olson
On 9 Mar 2009, at 14:00, Kristina Chodorow wrote: I've added documentation for the OOP part of my PECL extension. It includes classes and functions for connecting to the server, getting and using databases. collections, database results, database files, and Mongo-specific types. Hello