]> git.p6c8.net - devedit.git/blobdiff - modules/Tool.pm
Now, when the user wants to remove a file, a confirmation dialog will be displayed
[devedit.git] / modules / Tool.pm
index 9e89e43e6ad71e0ad1e13cafe1c06bad5d428ef8..fc1b3b47034a3c38ed616fbd7f4322bc10a1f793 100644 (file)
@@ -6,13 +6,14 @@ package Tool;
 # Some shared sub routines
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2003-10-03
+# Last modified: 2003-12-02
 #
 
 use strict;
 
 use vars qw(@EXPORT);
 
+use CGI qw(redirect);
 use Cwd qw(abs_path);
 use File::Spec;
 
@@ -22,6 +23,7 @@ use base qw(Exporter);
 
 @EXPORT = qw(check_path
              clean_path
+             devedit_reload
              file_name
              upper_path);
 
@@ -74,7 +76,7 @@ sub check_path($$)
 
  my $short_path = substr($path,length($root));
  $short_path =~ tr!\\!\/!;
- $short_path = "/".$short_path unless($short_path =~ m!^/!);
+ $short_path = "/".$short_path if($short_path !~ m!^/!);
  $short_path = $short_path."/" if($short_path !~ m!/$! && -d $path);
 
  return ($path,$short_path);
@@ -98,9 +100,34 @@ sub clean_path($)
  return $path;
 }
 
+# devedit_reload()
+#
+# Create a HTTP redirection header to load Dev-Editor
+# with some other parameters
+#
+# Params: Hash Reference (will be merged to a query string)
+#
+# Return: HTTP redirection header (Scalar Reference)
+
+sub devedit_reload($)
+{
+ my $params = shift;
+ my @list;
+
+ while(my ($param,$value) = each(%$params))
+ {
+  push(@list,$param."=".$value);
+ }
+
+ my $query  = join("&",@list);
+ my $header = redirect("http://$ENV{'HTTP_HOST'}$ENV{'SCRIPT_NAME'}?$query");
+
+ return \$header;
+}
+
 # file_name()
 #
-# Returns the last path of a filename
+# Returns the last path of a path
 #
 # Params: Path
 #
@@ -122,12 +149,7 @@ sub file_name($)
 
 # upper_path()
 #
-# Truncate a path in one of the following ways:
-#
-# - If the path points to a directory, the upper directory
-#   will be returned.
-# - If the path points to a file, the directory containing
-#   the file will be returned.
+# Cut the last part of a path away
 #
 # Params: Path
 #
@@ -141,8 +163,7 @@ sub upper_path($)
  unless($path eq "/")
  {
   $path = substr($path,0,-1) if($path =~ m!/$!);
-  $path = substr($path,0,rindex($path,"/"));
-  $path = $path."/";
+  $path = substr($path,0,rindex($path,"/")+1);
  }
 
  return $path;

patrick-canterino.de