Changeset 326 for trunk/grails-app/controllers
- Timestamp:
- Feb 8, 2010, 4:30:14 AM (15 years ago)
- Location:
- trunk/grails-app/controllers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/AssetDetailedController.groovy
r325 r326 16 16 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_AssetManager', 'ROLE_AssetUser']) 17 17 def index = { redirect(action:search,params:params) } 18 19 /** 20 * Set session.assetSearchParamsMax 21 */ 22 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_AssetManager', 'ROLE_AssetUser']) 23 def setSearchParamsMax = { 24 def max = 1000 25 if(params.newMax.isInteger()) { 26 def i = params.newMax.toInteger() 27 if(i > 0 && i <= max) 28 session.assetSearchParamsMax = params.newMax 29 if(i > max) 30 session.assetSearchParamsMax = max 31 } 32 forward(action: 'search', params: params) 33 } 18 34 19 35 /** … … 167 183 168 184 response.contentType = ConfigurationHolder.config.grails.mime.types[params.format] 169 response.setHeader("Content-disposition", "attachment; filename= tasks.${params.extension}")185 response.setHeader("Content-disposition", "attachment; filename=assets.${params.extension}") 170 186 List fields = ["section.site", 171 187 "section", -
trunk/grails-app/controllers/TaskDetailedController.groovy
r298 r326 26 26 27 27 @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_TaskManager', 'ROLE_TaskUser']) 28 def set TaskSearchParamsMax = {28 def setSearchParamsMax = { 29 29 def max = 1000 30 30 if(params.newMax.isInteger()) {
Note: See TracChangeset
for help on using the changeset viewer.