Hey Phil!

Thanks for the corrections - I've made them here:
https://github.com/symfony/symfony-docs/commit/a248784f3296cec17b3a1d49339ca7a495f0676e.
If there's still anything wrong with that area, someone will catch it :)

I've also made a note about the Doctrine repositories and how you reference
classes. There are certain portions of the docs that we'll be going through
and refactoring, reorganizing and filling in missing pieces. The Symfony
Doctrine docs are on my radar.

There is no official roadmap for the docs, but they're under heavy
development: we'll definitely be ready before the release of Symfony2
itself. As we get closer, we'll publish a list of things that are missing so
we can make sure to cover everything.

Thanks!

Ryan Weaver
US Office Head & Trainer - KnpLabs - Nashville, TN
http://www.knplabs.com <http://www.knplabs.com/en>
http://www.thatsquality.com
Twitter: @weaverryan


On Sat, Apr 2, 2011 at 3:42 AM, phiamo <[email protected]> wrote:

> Hi folks,
> not sure if here is the right place but at least i want to leave it
> somewhere:
> First of all symfony2 is really the best thing i ever saw, and i love
> it. Thanks a lot for all this work!
>
> In the current Book there are severeral things not correct and if
> these are getting to final i think it would be nice to update them. If
> thats not done automagically
>
> In http://symfony.com/doc/2.0/book/security/acl.html the yaml portion
> has to be:
> security:
>    # ...
>    acl:
>        connection: default
>
> In http://symfony.com/doc/2.0/book/security/config_reference.html
> there are some options missing which were there in AcmeDemoBundle:
> like
> security:
>    #...
>    firewalls:
>        secured_area:
>            #...
>            logout:
>                path:   /partner/secured/logout
>                target: /partner/
>
> It Would be nice to mention for doctrine howto Use Repositories and
> Howto reference classes:
> like:
>  class SmthRepository extends EntityRepository
> {
>        public function getLatest($max = 1){
>                $dql = 'SELECT d FROM My\SmthBundle\Entity\Smth d';
>                $query = $this->getEntityManager()
>                        ->createQuery($dql)
>                #->createQueryBuilder()->select('d')
>                #       ->from('My\SmthBundle\Entity\Smth', 'd')
>                                ->setMaxResults($max);
>                #->getQuery();
>        return  $query->getResult();
>        }
> }
> or to explain how a alias is configured from within Symfony.
> I know this is doctrine, but since it would be  nice to have a fast
> starting Point that would help a lot to get in even faster.
>
> Also what i was missing a bit was the old section of howto startover
> and howto pack one's own data into a local git (in 1.x there was some
> section howto pack things into svn)
>
> Is there anywhere a docu roadmap or something?
> cheers philipp
>
> --
> If you want to report a vulnerability issue on symfony, please send it to
> security at symfony-project.com
>
> You received this message because you are subscribed to the Google
> Groups "symfony developers" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/symfony-devs?hl=en
>

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-devs?hl=en

Reply via email to