# Dev-Editor's main program
#
# Author: Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-11-07
+# Last modified: 2004-11-13
#
use strict;
unless(-d clean_path($config->{'fileroot'}."/".$dir))
{
- abort($config->{'errors'}->{'dir_not_exist'});
+ abort($config->{'errors'}->{'dir_not_exist'},"/");
}
# ... and check if the path is above the root directory
unless(($new_physical,$new_virtual) = check_path($config->{'fileroot'},$dir))
{
- abort($config->{'errors'}->{'create_ar'});
+ abort($config->{'errors'}->{'create_ar'},"/");
}
# Create the physical and the virtual path
lockfile => $config->{'lock_file'},
timeout => $config->{'lock_timeout'});
- $uselist->lock or abort($config->{'errors'}->{'lock_failed'},{USELIST => $config->{'uselist_file'}, LOCK_FILE => $config->{'lock_file'}});
+ $uselist->lock or abort($config->{'errors'}->{'lock_failed'},undef,{USELIST => $config->{'uselist_file'}, LOCK_FILE => $config->{'lock_file'}});
$uselist->load;
# Create a hash with data submitted by user
}
else
{
- abort($config->{'errors'}->{'above_root'});
+ abort($config->{'errors'}->{'above_root'},"/");
}
}
else
{
- abort($config->{'errors'}->{'not_exist'});
+ abort($config->{'errors'}->{'not_exist'},"/");
}
#
# HTML generating routines
#
# Author: Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-03-12
+# Last modified: 2004-11-13
#
use strict;
# Format an error message
#
# Params: 1. Error message
-# 2. Virtual path to which a link should be displayed (optional)
+# 2. Display a link to this path at the bottom of the page (optional)
# 3. Hash reference: Template variables (optional)
#
# Return: Formatted message (Scalar Reference)
# ^^^^^
#
# Params: 1. Error message
-# 2. Hash reference: Template variables (optional)
+# 2. Display a link to this path at the bottom of the page (optional)
+# 3. Hash reference: Template variables (optional)
-sub abort($;$)
+sub abort($;$$)
{
- my $output = error(shift,undef,shift);
+ my $output = error(shift,shift,shift);
print $$output;
exit;
}
# Some shared sub routines
#
# Author: Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2004-11-04
+# Last modified: 2004-11-13
#
use strict;
$first = abs_path($first);
$path = $first."/".$last;
- $path = File::Spec->canonpath($path);
+ $first = File::Spec->canonpath($first);
+ $path = File::Spec->canonpath($path);
# Check if the path is above the root directory
return if(index($path,$root) == -1);
+ return if($first eq $root && $last =~ m!^(/|\\)?\.\.(/|\\)?$!);
# Create short path name