Changeset 955
- Timestamp:
- 03/08/06 16:43:11 (3 years ago)
- Files:
-
- trunk/doc/book/content/404.txt (modified) (1 diff)
- trunk/doc/book/content/about.txt (modified) (1 diff)
- trunk/doc/book/content/batch.txt (modified) (1 diff)
- trunk/doc/book/content/validate_form.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/doc/book/content/404.txt
r952 r955 5 5 -------- 6 6 7 With symfony, you can easily define a custom 404 page. You even have several ways to do it.7 With symfony, you can easily define a custom error 404 page. You even have several ways to do it. 8 8 9 9 Introduction trunk/doc/book/content/about.txt
r952 r955 22 22 Using symfony is so natural and easy for people used to PHP and the design patterns of Internet applications that the learning curve is reduced to less than a day. The clean design and code readability will keep your delays short. Developers can apply agile development principles (such as [DRY][3], [KISS][4] or the [XP][5] philosophy), focus on the application logic and avoid wasting time writing endless XML configuration files. 23 23 24 Symfony is aimed at building robust applications in an enterprise context. This means that you have full control over the configuration: from the directory structure to the foreign libraries, almost everything can be customized. To match your enterprise's development guidelines, symfony is bundled with additional tools to help you t o test, debug and document your project.24 Symfony is aimed at building robust applications in an enterprise context. This means that you have full control over the configuration: from the directory structure to the foreign libraries, almost everything can be customized. To match your enterprise's development guidelines, symfony is bundled with additional tools to help you test, debug and document your project. 25 25 26 26 Last but not least, by choosing symfony you get the benefits of an active open-source community. It is entirely free and published under the MIT license. trunk/doc/book/content/batch.txt
r609 r955 41 41 ----------------------- 42 42 43 Below are some examples of batch process that you might create.43 Below are some examples of batch processes that you might create. 44 44 45 45 ### Loading Test Data trunk/doc/book/content/validate_form.txt
r952 r955 206 206 param: 207 207 match: Yes 208 match_error: You didn't enter a valid email address (for example: name@domain.com). Please try again.208 match_error: "You didn't enter a valid email address (for example: name@domain.com). Please try again." 209 209 pattern: /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/i 210 210