Bug 1243

Summary: Fix IOUtil.cleanPathString(..) special case ; Allow IOUtil and Uri to handle relative path
Product: [JogAmp] Gluegen Reporter: Sven Gothel <sgothel>
Component: coreAssignee: Sven Gothel <sgothel>
Status: RESOLVED FIXED    
Severity: major    
Priority: ---    
Version: 2.3.2   
Hardware: All   
OS: all   
Type: DEFECT SCM Refs:
026875dd5256051d4e3504f1d9b01f7ce2bb70ff
Workaround: ---

Description Sven Gothel 2015-10-03 11:42:50 CEST
Fix IOUtil.cleanPathString(..) special case:
  Special case '/a/./../b' -> '/b'
  requires to resolve './' before '../'.

Allow IOUtil and Uri to handle relative path:
- IOUtil.getParentOf(..)
- IOUtil.cleanPathString(..)
  Handle cases:
   'a/./../b' -> 'b'
   '.././b' -> '../b'

- Uri: Handle null scheme
Comment 1 Sven Gothel 2015-10-03 11:44:36 CEST
commit 026875dd5256051d4e3504f1d9b01f7ce2bb70ff
  Fixed as described