Ignore:
Timestamp:
Oct 3, 2009, 1:48:27 AM (15 years ago)
Author:
gav
Message:

Uninstall class-diagram plugin from repo since it has deployment issues in Tomcat.
A few more css improvements.
Spread the date range of tasks created during bootstrap.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/conf/BootStrap.groovy

    r140 r142  
    283283                 leadPerson:Person.get(2),
    284284                 description:"Check specific level sensor",
    285                  comment:"Has been noted as problematic, try recalibrating.")
     285                 comment:"Has been noted as problematic, try recalibrating.",
     286                targetStartDate:new Date())
    286287        BootStrapSaveAndTest(taskInstance)
    287288
     
    294295                description:"Some follow-up work",
    295296                comment:"Some help required",
     297                targetStartDate:new Date()+1,
    296298                parentTask: Task.get(1))
    297299        BootStrapSaveAndTest(taskInstance)
     
    305307                description:"A Sub Task can be created by setting the Parent Task value",
    306308                comment:"Some help required",
     309                targetStartDate:new Date()-1,
    307310                parentTask: Task.get(1))
    308311        BootStrapSaveAndTest(taskInstance)
     
    316319                 description:"Replace sensor at next opportunity.",
    317320                 comment:"Nothing else has worked.",
     321                targetStartDate:new Date()+7,
    318322                parentTask: Task.get(1))
    319323        BootStrapSaveAndTest(taskInstance)
     
    326330                 leadPerson:Person.get(6),
    327331                 description:"Production Report",
    328                  comment:"Production report for specific production run or shift")
     332                 comment:"Production report for specific production run or shift",
     333                targetStartDate:new Date()-7)
    329334        BootStrapSaveAndTest(taskInstance)
    330335
     
    336341                 leadPerson:Person.get(1),
    337342                 description:"Make killer CMMS app",
    338                  comment:"Use Grails and get a move on!")
     343                 comment:"Use Grails and get a move on!",
     344                targetStartDate:new Date()-6)
    339345        BootStrapSaveAndTest(taskInstance)
    340346
Note: See TracChangeset for help on using the changeset viewer.