Changes between Version 4 and Version 5 of CodingConventions


Ignore:
Timestamp:
Mar 23, 2009, 9:56:09 PM (15 years ago)
Author:
Gavin
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodingConventions

    v4 v5  
    1515'''Grails'''
    1616
    17  * As much as possible will keep 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"
    1818 * For example the view ''show'' is retained ''as is'' for application administration.
    1919 * If we want to modify the ''show'' view, create a copy called ''showDetail'' in the views and controller logic then modify those.
    2020
     21This 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