Index: trunk/grails-app/controllers/AssetDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/AssetDetailedController.groovy	(revision 333)
+++ trunk/grails-app/controllers/AssetDetailedController.groovy	(revision 334)
@@ -105,13 +105,4 @@
         def s = csvService.buildAssetTree(assetList)
         render s
-    }
-
-    /**
-    * List action.
-    */
-    @Secured(['ROLE_AppAdmin', 'ROLE_Manager', 'ROLE_AssetManager', 'ROLE_AssetUser'])
-    def list = {
-        params.max = Math.min( params.max ? params.max.toInteger() : 10,  100)
-        [ assetInstanceList: Asset.list( params ), assetInstanceTotal: Asset.count() ]
     }
 
@@ -309,5 +300,5 @@
         else {
             flash.message = "Asset not found with id ${params.id}"
-            redirect(action:list)
+            redirect(action:search)
         }
     }
@@ -368,5 +359,5 @@
         if(result.error.code == "default.not.found") {
             flash.message = g.message(code: result.error.code, args: ["Asset", params.assetToCopy?.id])
-            redirect(action: list)
+            redirect(action: search)
             return
         }
Index: trunk/grails-app/views/assetDetailed/list.gsp
===================================================================
--- trunk/grails-app/views/assetDetailed/list.gsp	(revision 333)
+++ 	(revision )
@@ -1,65 +1,0 @@
-
-
-<html>
-    <head>
-        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
-        <meta name="layout" content="main" />
-        <title>Asset List</title>
-        <nav:resources override="true"/>
-    </head>
-    <body>
-        <div class="nav">
-            <nav:renderSubItems group="nav"/>
-        </div>
-        <div class="body">
-            <g:if test="${flash.message}">
-            <div class="message">${flash.message}</div>
-            </g:if>
-            <div class="list">
-                <table>
-                    <thead>
-                        <tr>
-                        
-                   	        <g:sortableColumn property="id" title="Id" />
-                        
-                   	        <g:sortableColumn property="name" title="Name" />
-                        
-                   	        <g:sortableColumn property="description" title="Description" />
-                        
-                   	        <g:sortableColumn property="isActive" title="Is Active" />
-                        
-                   	        <th>Section</th>
-                   	    
-                        </tr>
-                    </thead>
-                    <tbody>
-                    <g:each in="${assetInstanceList}" status="i" var="assetInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'/>
-                        
-                            <td>${fieldValue(bean:assetInstance, field:'id')}</td>
-                        
-                            <td>${fieldValue(bean:assetInstance, field:'name')}</td>
-                        
-                            <td>${fieldValue(bean:assetInstance, field:'description')}</td>
-                        
-                            <td>${fieldValue(bean:assetInstance, field:'isActive')}</td>
-                        
-                            <td>${fieldValue(bean:assetInstance, field:'section')}</td>
-
-                            <td>
-                                <g:link action="show" id="${assetInstance.id}">
-                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
-                                </g:link>
-                            </td>
-                        
-                        </tr>
-                    </g:each>
-                    </tbody>
-                </table>
-            </div>
-            <div class="paginateButtons">
-                <g:paginate total="${assetInstanceTotal}" />
-            </div>
-        </div>
-    </body>
-</html>
