Changeset 7361
- Timestamp:
- 02/06/08 09:26:17 (10 months ago)
- Files:
-
- doc/branches/1.1/tutorial/my-first-project.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
doc/branches/1.1/tutorial/my-first-project.txt
r7360 r7361 92 92 93 93 >**Note**: Make sure to be at the root of your project (`sf_sandbox/`) when you 94 call the `symfony` command.94 >call the `symfony` command. 95 95 96 96 A few classes are created in the `sf_sandbox/lib/model/` directory. These are the … … 132 132 133 133 >**Note**: Don't worry if there is a warning at that point, it is normal. 134 The `propel:insert-sql` command removes existing tables before adding the ones135 of your `lib.model.schema.sql`, and there is no table to remove at that time.134 >The `propel:insert-sql` command removes existing tables before adding the ones 135 >of your `lib.model.schema.sql`, and there is no table to remove at that time. 136 136 137 137 As we want to be able to create and edit the blog posts and comments, we also need to … … 179 179 180 180 >**Note**: In the URLs above, the name of the main script - called 181 *front controller* in symfony - was changed from `index.php` to `frontend_dev.php`.182 The two scripts access the same application (`frontend`), but in different environments.183 With `frontend_dev.php`, you access the application in the **development environment**,184 which provides handy development tools like the debug toolbar on the top right185 of the screen and the live configuration engine. That's why the processing of186 each page is slower than when using `index.php`, which is the front controller187 of the **production environment**, optimized for speed. If you want to keep on188 using the production environment, replace `frontend_dev.php/` by `index.php/`189 in the following URLs, but don't forget to clear the cache before watching the190 changes:181 >*front controller* in symfony - was changed from `index.php` to `frontend_dev.php`. 182 >The two scripts access the same application (`frontend`), but in different environments. 183 >With `frontend_dev.php`, you access the application in the **development environment**, 184 >which provides handy development tools like the debug toolbar on the top right 185 >of the screen and the live configuration engine. That's why the processing of 186 >each page is slower than when using `index.php`, which is the front controller 187 >of the **production environment**, optimized for speed. If you want to keep on 188 >using the production environment, replace `frontend_dev.php/` by `index.php/` 189 >in the following URLs, but don't forget to clear the cache before watching the 190 >changes: 191 191 > 192 192 > $ php symfony cache:clear … … 454 454 455 455 >**Note**: Beware that you don't copy 4 extra spaces at the beginning of each 456 line, since the YAML parser would fail in that case. The first letter of this457 file must be the 'm' of 'methods'.456 >line, since the YAML parser would fail in that case. The first letter of this 457 >file must be the 'm' of 'methods'. 458 458 459 459 The `fillin` activation enables the repopulation of the form with the value