Blanks in path and filename will be replaced by %20
Status: Alpha
Brought to you by:
altumano
Running PLDoc on a german Windows XP professional. Creation of a package documentation below the personal folder "Eigene Dateien" (same like "My Documents") causes that PLDoc is replaceing every blank in the path and file name with "%20". This causes a creation of a different path. Result are two different paths, the original one contains the generated documentation with all generated summary html files, but the other one contains the package documentation files only! Also the second path won't be displayed in the explorer, but only on the command line!! (same behaviour on cmd.exe and in cygwin). The display the documentation properly I have to copy the package doc files into the original path...
Screenshot to show the problem
Problem fixed by (mostly) reverting to altumano's fix in svn revision 21.
It was reverted because an output directory with a relative path resulted in the redirect creating the unit files, e.g.
specified output directory = ./outputDirectory and a module prc_unit
./outputDirectory/outputDirectory/prc_unit.html
The solution to this problem was to use File.getAbsolutePath() rather than File.getPath() to specify the targetFolder XSLT parameter: this outputs the HTML files in the correct location and copes with directory paths containing spaces.