- Timestamp:
- Oct 3, 2009, 1:48:27 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r140 r142 1 1 #utf-8 2 # Wed Sep 30 21:48:49EST 20092 #Fri Oct 02 18:50:25 EST 2009 3 3 plugins.acegi=0.5.1 4 4 plugins.navigation=1.1 5 5 app.version= 6 plugins.class-diagram=0.37 6 plugins.help-balloons=1.2 8 7 plugins.quartz=0.4.1-SNAPSHOT -
trunk/grails-app/conf/BootStrap.groovy
r140 r142 283 283 leadPerson:Person.get(2), 284 284 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()) 286 287 BootStrapSaveAndTest(taskInstance) 287 288 … … 294 295 description:"Some follow-up work", 295 296 comment:"Some help required", 297 targetStartDate:new Date()+1, 296 298 parentTask: Task.get(1)) 297 299 BootStrapSaveAndTest(taskInstance) … … 305 307 description:"A Sub Task can be created by setting the Parent Task value", 306 308 comment:"Some help required", 309 targetStartDate:new Date()-1, 307 310 parentTask: Task.get(1)) 308 311 BootStrapSaveAndTest(taskInstance) … … 316 319 description:"Replace sensor at next opportunity.", 317 320 comment:"Nothing else has worked.", 321 targetStartDate:new Date()+7, 318 322 parentTask: Task.get(1)) 319 323 BootStrapSaveAndTest(taskInstance) … … 326 330 leadPerson:Person.get(6), 327 331 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) 329 334 BootStrapSaveAndTest(taskInstance) 330 335 … … 336 341 leadPerson:Person.get(1), 337 342 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) 339 345 BootStrapSaveAndTest(taskInstance) 340 346 -
trunk/grails-app/views/layouts/main.gsp
r141 r142 10 10 <g:javascript library="application" /> 11 11 </head> 12 12 13 13 <!-- Added g:pageProperty so that onload in each page works --> 14 14 <body onload="<g:pageProperty name='body.onload'/>"> … … 23 23 <a href="http://www.gnumims.org" id=HeaderLink></a> 24 24 </div> 25 25 26 26 <g:isLoggedIn> 27 <div style="height: 2em;">27 <div class="appControl"> 28 28 <g:link controller="logout" class="logoutButton"> 29 29 Log out (<g:loggedInUsername/>) … … 31 31 <div id="menu"> 32 32 <nav:render group="nav"/> 33 </div> 33 </div> 34 34 </div> 35 35 </g:isLoggedIn> -
trunk/grails-app/views/login/auth.gsp
r139 r142 22 22 clear: left; 23 23 margin: 0; 24 padding: 5px 0 8px0;24 padding: 5px 0 0 0; 25 25 padding-left: 105px; 26 26 /* border-top: 1px dashed gray;*/ … … 43 43 margin-left: -105px; 44 44 width: 100px; 45 padding: 5px 0 0 0; 45 46 } 46 47 #login .inner .login_message {color:red;} -
trunk/web-app/css/main.css
r141 r142 106 106 } 107 107 108 /* Login/out and Admin */ 108 /* Logout and Top Navigation Level */ 109 110 .appControl { 111 height: 2em; 112 } 109 113 110 114 .logoutButton { 111 115 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;*/ 115 120 } 116 121 117 122 .logoutButton:hover { 118 123 color: red; 119 margin: 0.2em 0 00;124 padding: 0.5em 0px 0.1em 0; 120 125 } 121 126 … … 413 418 /* font-weight: normal; */ 414 419 /* font-size: 14px; */ 415 margin: 0.2em 0 0 0;420 padding: 0.5em 0.75em; 416 421 /*cursor: default;*/ 417 422 } … … 432 437 font-weight: bold; 433 438 font-size: 17px; 434 margin: 0 0 0 0;439 padding: 0.3em 0.75em; 435 440 /*background-color: #555;*/ 436 441 }
Note: See TracChangeset
for help on using the changeset viewer.