Changeset 136 for trunk/grails-app/conf
- Timestamp:
- May 15, 2009, 4:09:30 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/BootStrap.groovy
r134 r136 32 32 { 33 33 println "BootStrapping demo data..." 34 3.times{println it} 34 35 35 36 /*********************** … … 415 416 taskRecurringScheduleInstance = new TaskRecurringSchedule(task: Task.get(1), 416 417 recurEvery: 1, 417 period: Period.get(1), 418 nextDueDate: new Date()) 418 recurPeriod: Period.get(1), 419 startDate: new Date(), 420 generateAhead: 1, 421 generateAheadPeriod: Period.get(1), 422 taskDuration: 1, 423 taskDurationPeriod: Period.get(1)) 419 424 BootStrapSaveAndTest(taskRecurringScheduleInstance) 420 425 … … 422 427 taskRecurringScheduleInstance = new TaskRecurringSchedule(task: Task.get(2), 423 428 recurEvery: 1, 424 period: Period.get(1), 425 nextDueDate: new Date()) 429 recurPeriod: Period.get(1), 430 startDate: new Date(), 431 generateAhead: 1, 432 generateAheadPeriod: Period.get(1), 433 taskDuration: 1, 434 taskDurationPeriod: Period.get(1)) 426 435 BootStrapSaveAndTest(taskRecurringScheduleInstance) 427 436
Note: See TracChangeset
for help on using the changeset viewer.