- Timestamp:
- Oct 4, 2009, 12:59:04 AM (15 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/conf/BootStrap.groovy
r142 r145 155 155 //Person #2 156 156 personInstance = new Person(loginName:"manager", 157 firstName:" Meca",157 firstName:"Demo", 158 158 lastName:"Manager", 159 159 pass:passClearText, -
trunk/grails-app/conf/SecurityConfig.groovy
r140 r145 39 39 '/images/**': ['IS_AUTHENTICATED_ANONYMOUSLY'], 40 40 '/js/**': ['IS_AUTHENTICATED_ANONYMOUSLY'], 41 '/plugins/help-balloons-1.2/**': ['IS_AUTHENTICATED_FULLY'], 42 '/plugins/richui-0.6/**': ['IS_AUTHENTICATED_FULLY'], 43 '/plugins/navigation-1.1/**': ['IS_AUTHENTICATED_FULLY'], 44 '/plugins/filterpane-0.6.2/**': ['IS_AUTHENTICATED_FULLY'], 45 '/plugins/class-diagram-0.3/**': ['IS_AUTHENTICATED_FULLY'], 46 '/classDiagram*': ['IS_AUTHENTICATED_FULLY'], 47 '/classDiagram/**': ['IS_AUTHENTICATED_FULLY'], 41 '/plugins/**': ['IS_AUTHENTICATED_FULLY'], 42 // '/plugins/help-balloons-1.2/**': ['IS_AUTHENTICATED_FULLY'], 43 // '/plugins/richui-0.6/**': ['IS_AUTHENTICATED_FULLY'], 44 // '/plugins/navigation-1.1/**': ['IS_AUTHENTICATED_FULLY'], 45 // '/plugins/filterpane-0.6.2/**': ['IS_AUTHENTICATED_FULLY'], 46 // '/plugins/calendar-1.2.0-SNAPSHOT2/**': ['IS_AUTHENTICATED_FULLY'], 47 // 48 // '/plugins/class-diagram-0.3/**': ['IS_AUTHENTICATED_FULLY'], 49 // '/classDiagram*': ['IS_AUTHENTICATED_FULLY'], 50 // '/classDiagram/**': ['IS_AUTHENTICATED_FULLY'], 48 51 '/login*': ['IS_AUTHENTICATED_ANONYMOUSLY'], 49 52 '/login/**': ['IS_AUTHENTICATED_ANONYMOUSLY'], -
trunk/grails-app/views/taskDetailed/create.gsp
r140 r145 5 5 <title>Create Task</title> 6 6 <nav:resources override="true"/> 7 <resource:dateChooser /> 7 8 </head> 8 9 <body onload="document.createTaskForm.description.focus();"> … … 19 20 </div> 20 21 </g:hasErrors> 22 21 23 <g:form id='createTaskForm' name='createTaskForm' action="save" method="post" > 22 24 <div class="dialog"> … … 49 51 </td> 50 52 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetStartDate','errors')}"> 51 < g:datePicker name="targetStartDate" value="${taskInstance?.targetStartDate}" precision="day"></g:datePicker>53 <richui:dateChooser name="targetStartDate" format="dd-MM-yyyy" value="${new Date()}" /> 52 54 <g:helpBalloon class="helpballoon" code="task.targetStartDate" /> 53 55 </td> … … 59 61 </td> 60 62 <td valign="top" class="value ${hasErrors(bean:taskInstance,field:'targetCompletionDate','errors')}"> 61 < g:datePicker name="targetCompletionDate" value="${taskInstance?.targetCompletionDate}" precision="day"></g:datePicker>63 <richui:dateChooser name="targetCompletionDate" format="dd-MM-yyyy" value="${new Date()}" /> 62 64 <g:helpBalloon class="helpballoon" code="task.targetCompletionDate" /> 63 65 </td>
Note: See TracChangeset
for help on using the changeset viewer.