Changeset 142 for trunk/grails-app


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.

Location:
trunk/grails-app
Files:
3 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
  • trunk/grails-app/views/layouts/main.gsp

    r141 r142  
    1010        <g:javascript library="application" />
    1111    </head>
    12    
     12
    1313    <!-- Added g:pageProperty so that onload in each page works -->
    1414    <body onload="<g:pageProperty name='body.onload'/>">
     
    2323                    <a href="http://www.gnumims.org" id=HeaderLink></a>
    2424                </div>
    25                
     25
    2626                <g:isLoggedIn>
    27                     <div style="height: 2em;">
     27                    <div class="appControl">
    2828                        <g:link controller="logout" class="logoutButton">
    2929                                Log out (<g:loggedInUsername/>)
     
    3131                        <div id="menu">
    3232                            <nav:render group="nav"/>
    33                         </div>   
     33                        </div>
    3434                    </div>
    3535                </g:isLoggedIn>   
  • trunk/grails-app/views/login/auth.gsp

    r139 r142  
    2222        clear: left;
    2323        margin: 0;
    24         padding: 5px 0 8px 0;
     24        padding: 5px 0 0 0;
    2525        padding-left: 105px;
    2626/*      border-top: 1px dashed gray;*/
     
    4343        margin-left: -105px;
    4444        width: 100px;
     45        padding: 5px 0 0 0;
    4546}
    4647#login .inner .login_message {color:red;}
Note: See TracChangeset for help on using the changeset viewer.