Changeset 424
- Timestamp:
- May 17, 2010, 5:11:29 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r419 r424 1 1 #Grails Metadata file 2 #Mon May 17 1 2:04:52CEST 20103 app.grails.version=1.3. 02 #Mon May 17 17:23:37 CEST 2010 3 app.grails.version=1.3.1 4 4 app.name=gscf 5 5 app.servlet.version=2.4 … … 7 7 plugins.crypto=2.0 8 8 plugins.db-util=0.4 9 plugins.hibernate=1.3. 09 plugins.hibernate=1.3.1 10 10 plugins.jquery=1.4.1.1 11 11 plugins.mail=0.9 … … 14 14 plugins.searchable=0.5.5 15 15 plugins.shiro=1.0.1 16 plugins.tomcat=1.3. 017 plugins.webflow=1.3. 016 plugins.tomcat=1.3.1 17 plugins.webflow=1.3.1 -
trunk/grails-app/conf/BootStrap.groovy
r423 r424 599 599 species: humanTerm, 600 600 template: humanTemplate) 601 //.setFieldValue("Gender", ( (boolean) (y / 2) ? "Male" : "Female"))601 .setFieldValue("Gender", (Math.random() > 0.5) ? "Male" : "Female") 602 602 .setFieldValue("DOB", new java.text.SimpleDateFormat("dd-mm-yy").parse("01-02-19" + (10 + (int) (Math.random() * 80)))) 603 603 .setFieldValue("Age (years)", 30)
Note: See TracChangeset
for help on using the changeset viewer.