Changes between Version 4 and Version 5 of CodingConventions
- Timestamp:
- Mar 23, 2009, 9:56:09 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingConventions
v4 v5 15 15 '''Grails''' 16 16 17 * As much as possible willkeep the CRUD pages as generated by "grails generate-all"17 * As much as possible try to keep the CRUD pages as generated by "grails generate-all" 18 18 * For example the view ''show'' is retained ''as is'' for application administration. 19 19 * If we want to modify the ''show'' view, create a copy called ''showDetail'' in the views and controller logic then modify those. 20 20 21 This way the original views are available as direct access to the data for administration. If the domain changes enough a "grails generate-all" can be performed on most domains without losing the customisations. I propose the suffix 'Detail until a better one is suggested. 22