Updated doc

This commit is contained in:
William DURAND 2012-05-09 01:05:12 +02:00
parent 590787d2b6
commit d9aee82a78
3 changed files with 13 additions and 13 deletions

View file

@ -24,17 +24,17 @@ As `Propel2` will be released in the near future, we are migrating the branching
## Features
* Generation of model classes based on an XML schema (not YAML) placed under `BundleName/Resources/*schema.xml`.
* Insertion of SQL statements.
* Runtime autoloading of Propel and generated classes.
* Propel runtime initialization through the XML configuration.
* Migrations [Propel 1.6](http://www.propelorm.org/documentation/10-migrations.html).
* Reverse engineering from [existing database](http://www.propelorm.org/wiki/Documentation/1.6/Existing-Database).
* Integration to the Symfony2 Profiler.
* Load SQL, YAML and XML fixtures.
* Create/Drop databases.
* Integration with the Form component.
* Integration with the Security component.
* Generation of model classes based on an XML schema (not YAML) placed under `BundleName/Resources/*schema.xml`;
* Insertion of SQL statements;
* Runtime autoloading of Propel and generated classes;
* Propel runtime initialization through the XML configuration;
* Migrations [Propel 1.6](http://www.propelorm.org/documentation/10-migrations.html);
* Reverse engineering from [existing database](http://www.propelorm.org/wiki/Documentation/1.6/Existing-Database);
* Integration to the Symfony2 Profiler;
* Load SQL, YAML and XML fixtures;
* Create/Drop databases;
* Integration with the Form component;
* Integration with the Security component;
* Propel ParamConverter can be used with Sensio Framework Extra Bundle.
For documentation, see:

View file

@ -15,7 +15,7 @@ This will switch the provider to be the `AuditableAclProvider` of the `PropelBun
The auditing of this provider is set to a sensible default. It will audit all ACL failures but no success by default.
If you also want to audit successful authorizations, you need to update the auditing of the given ACL accordingly.
After adding the provider, you only need to run the `propel:init:acl` command in order to get the model generated.
After adding the provider, you only need to run the `propel:acl:init` command in order to get the model generated.
If you already got an ACL database, the schema of the `PropelBundle` is compatible with the default schema of Symfony2.
#### Separate database connection for ACL ####

View file

@ -40,7 +40,7 @@ You can choose which Form Type to build by specifing Model names:
You can generate **Graphviz** file for your project by using the following command line:
> php app/console propel:graphviz
> php app/console propel:graphviz:generate
It will write files in `app/propel/graph/`.