Quantcast

Status of ZF2 documentation?

classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Status of ZF2 documentation?

Ralf Eggert
Hi,

I just stumbled upon a couple of uncommented component like
Zend\Navigation, Zend\Feed and Zend\Serializer or incomplete components
like Zend\Stdlib.

Shouldn't the documentation be completed before the 2.0.0 stable release
is poublished? Maybe someone could send an update of the doc tasks. Or
is this list up to date?

https://gist.github.com/3183360

I would love to step in here for small documentation tasks and maybe
others will as well...

Regards,

Ralf
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Status of ZF2 documentation?

weierophinney
Administrator
-- Ralf Eggert <[hidden email]> wrote
(on Sunday, 02 September 2012, 08:51 AM +0200):

> I just stumbled upon a couple of uncommented component like
> Zend\Navigation, Zend\Feed and Zend\Serializer or incomplete components
> like Zend\Stdlib.
>
> Shouldn't the documentation be completed before the 2.0.0 stable release
> is poublished? Maybe someone could send an update of the doc tasks. Or
> is this list up to date?
>
> https://gist.github.com/3183360
>
> I would love to step in here for small documentation tasks and maybe
> others will as well...

We'd love to have the docs complete for the stable release. But,
honestly, nobody is stepping up to help, despite the fact that in every
RC announcement, I've had a big section highlighting that we need help,
and pointing to resources on what needs to be done, and how to do it.

So, yes, please do help. That gist is basically where things still
stand, though some work has been done on DB and Log, IIRC. Any
assistance would be fantastic. That said, we're not holding the release
for docs at this time.

--
Matthew Weier O'Phinney
Project Lead            | [hidden email]
Zend Framework          | http://framework.zend.com/
PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Status of ZF2 documentation?

Wesley Overdijk
I'm actually curious. Is this about the docs as in docblocks or about actual documentation with usage examples etc? Sorry if it's a stupid question.
On 04 Sep 2012, at 06:27, Matthew Weier O'Phinney wrote:

> -- Ralf Eggert <[hidden email]> wrote
> (on Sunday, 02 September 2012, 08:51 AM +0200):
>> I just stumbled upon a couple of uncommented component like
>> Zend\Navigation, Zend\Feed and Zend\Serializer or incomplete components
>> like Zend\Stdlib.
>>
>> Shouldn't the documentation be completed before the 2.0.0 stable release
>> is poublished? Maybe someone could send an update of the doc tasks. Or
>> is this list up to date?
>>
>> https://gist.github.com/3183360
>>
>> I would love to step in here for small documentation tasks and maybe
>> others will as well...
>
> We'd love to have the docs complete for the stable release. But,
> honestly, nobody is stepping up to help, despite the fact that in every
> RC announcement, I've had a big section highlighting that we need help,
> and pointing to resources on what needs to be done, and how to do it.
>
> So, yes, please do help. That gist is basically where things still
> stand, though some work has been done on DB and Log, IIRC. Any
> assistance would be fantastic. That said, we're not holding the release
> for docs at this time.
>
> --
> Matthew Weier O'Phinney
> Project Lead            | [hidden email]
> Zend Framework          | http://framework.zend.com/
> PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc

Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Status of ZF2 documentation?

weierophinney
Administrator
-- Wesley Overdijk <[hidden email]> wrote
(on Tuesday, 04 September 2012, 08:13 AM +0200):
> I'm actually curious. Is this about the docs as in docblocks or about
> actual documentation with usage examples etc? Sorry if it's a stupid
> question.

Actual end-user documentation.

> On 04 Sep 2012, at 06:27, Matthew Weier O'Phinney wrote:
>
> > -- Ralf Eggert <[hidden email]> wrote
> > (on Sunday, 02 September 2012, 08:51 AM +0200):
> >> I just stumbled upon a couple of uncommented component like
> >> Zend\Navigation, Zend\Feed and Zend\Serializer or incomplete components
> >> like Zend\Stdlib.
> >>
> >> Shouldn't the documentation be completed before the 2.0.0 stable release
> >> is poublished? Maybe someone could send an update of the doc tasks. Or
> >> is this list up to date?
> >>
> >> https://gist.github.com/3183360
> >>
> >> I would love to step in here for small documentation tasks and maybe
> >> others will as well...
> >
> > We'd love to have the docs complete for the stable release. But,
> > honestly, nobody is stepping up to help, despite the fact that in every
> > RC announcement, I've had a big section highlighting that we need help,
> > and pointing to resources on what needs to be done, and how to do it.
> >
> > So, yes, please do help. That gist is basically where things still
> > stand, though some work has been done on DB and Log, IIRC. Any
> > assistance would be fantastic. That said, we're not holding the release
> > for docs at this time.
> >
> > --
> > Matthew Weier O'Phinney
> > Project Lead            | [hidden email]
> > Zend Framework          | http://framework.zend.com/
> > PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc
>

--
Matthew Weier O'Phinney
Project Lead            | [hidden email]
Zend Framework          | http://framework.zend.com/
PGP key: http://framework.zend.com/zf-matthew-pgp-key.asc
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

Re: Status of ZF2 documentation?

Ralf Eggert
In reply to this post by weierophinney
Hi,

I will try my best. I also blogged about this problem to the German ZF
community and hopefully we find some volunteers.

Regards,

Ralf
Reply | Threaded
Open this post in threaded view
|  
Report Content as Inappropriate
star

schemas with Zend/Db

rodo

Hi,

I have defined tables in schemas in postgres but I can't read them with
Zend/Db (ZF2).  I define the table like "schema.table" and when ZF try to
read it doesn't find it.

select "schema.table".* from "schema.table"

In postgres, when I remove the quotes it works fine.


class ClientTable extends AbstractTableGateway
{
    protected $table = 'vip.clients';

"vip" is ths schema name.


How could indicate the schema, appart from the table name?


Thanks.

Rodolfo.


Loading...