From: pcanterino <> Date: Thu, 6 Jan 2005 11:25:46 +0000 (+0000) Subject: - When composing the temporary virtual path for a new file, don't call X-Git-Tag: version_2_3~5 X-Git-Url: https://git.p6c8.net/devedit.git/commitdiff_plain/548d69a4ee38cc59612e787f479ac198d5c37741?ds=inline;hp=548d69a4ee38cc59612e787f479ac198d5c37741 - When composing the temporary virtual path for a new file, don't call clean_path(). It is unnecessary and it also caused a problem if this path would begin with /../, because on UNIX systems, canonpath() removes /../ at the beginning of a path. So if a user wanted to create the file /../file.ext (which he wasn't allowed to), he created /file.ext. - file_name() and upper_path() now remove multiple trailing slashes - Improved configuration file parser: - Allow configuration options with empty values - If a option is defined twice, the line number is shown in the error message - Static values are now surrounded by single quotes. Maybe it helps to increase the speed of Dev-Editor, because Perl doesn't have to try to interpolate variables in the values. ---