diff options
Diffstat (limited to 'idrop-web/grails-app/controllers/org/irods/mydrop/controller/HomeController.groovy')
-rwxr-xr-x | idrop-web/grails-app/controllers/org/irods/mydrop/controller/HomeController.groovy | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/idrop-web/grails-app/controllers/org/irods/mydrop/controller/HomeController.groovy b/idrop-web/grails-app/controllers/org/irods/mydrop/controller/HomeController.groovy index e5f0337..171f05c 100755 --- a/idrop-web/grails-app/controllers/org/irods/mydrop/controller/HomeController.groovy +++ b/idrop-web/grails-app/controllers/org/irods/mydrop/controller/HomeController.groovy @@ -59,6 +59,10 @@ class HomeController { // TODO: refactor, add check to see if on same grid, in which case the account should not be changed String mungedIRODSURI = irodsURIString.replaceAll(" ", "&&space&&") URI irodsURI = new URI(mungedIRODSURI) + + log.info("irodsURI ${irodsURI}") + + String filePath = irodsURI.getPath() log.info("irodsFilePath:${filePath}") filePath = filePath.replaceAll("&&space&&", " ") |