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

Reply via email to