Changeset 142


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
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/application.properties

    r140 r142  
    11#utf-8
    2 #Wed Sep 30 21:48:49 EST 2009
     2#Fri Oct 02 18:50:25 EST 2009
    33plugins.acegi=0.5.1
    44plugins.navigation=1.1
    55app.version=
    6 plugins.class-diagram=0.3
    76plugins.help-balloons=1.2
    87plugins.quartz=0.4.1-SNAPSHOT
  • 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;}
  • trunk/web-app/css/main.css

    r141 r142  
    106106}
    107107
    108 /* Login/out and Admin */
     108/* Logout and Top Navigation Level */
     109
     110.appControl {
     111    height: 2em;
     112}
    109113
    110114.logoutButton {
    111115    float: right;
    112     padding: 0.3em 165px 0.3em 0;
    113     font-size: 14px;
    114 /*     border: 1px solid #ccc; */
     116    padding: 0.3em 0px 0.3em 0;
     117    font-size: 14px;
     118    margin: 0 165px 0 0;
     119    /*border: 1px solid #ccc;*/
    115120}
    116121
    117122.logoutButton:hover {
    118123    color: red;
    119     margin: 0.2em 0 0 0;
     124    padding: 0.5em 0px 0.1em 0;
    120125}
    121126
     
    413418/*     font-weight: normal; */
    414419/*     font-size: 14px; */
    415     margin: 0.2em 0 0 0;
     420    padding: 0.5em 0.75em;
    416421    /*cursor: default;*/
    417422}
     
    432437    font-weight: bold;
    433438    font-size: 17px;
    434     margin: 0 0 0 0;
     439    padding: 0.3em 0.75em;
    435440    /*background-color: #555;*/
    436441}
Note: See TracChangeset for help on using the changeset viewer.