X-Git-Url: https://git.p6c8.net/devedit.git/blobdiff_plain/3e6b9e338fe5ea06b487202fe54217f2082cd13d..7febe1a1710566c5d66cdbd125fd81fb0f89512f:/modules/Tool.pm diff --git a/modules/Tool.pm b/modules/Tool.pm index 47b73e6..fc1b3b4 100644 --- a/modules/Tool.pm +++ b/modules/Tool.pm @@ -6,17 +6,15 @@ package Tool; # Some shared sub routines # # Author: Patrick Canterino -# Last modified: 09-22-2003 +# Last modified: 2003-12-02 # use strict; use vars qw(@EXPORT); -use Carp qw(croak); - +use CGI qw(redirect); use Cwd qw(abs_path); -use File::Basename; use File::Spec; ### Export ### @@ -25,7 +23,8 @@ use base qw(Exporter); @EXPORT = qw(check_path clean_path - filemode + devedit_reload + file_name upper_path); # check_path() @@ -56,17 +55,11 @@ sub check_path($$) # The path points to a file # We have to extract the directory name and create the absolute path - my @pathinfo = fileparse($path); - - # This is only to avoid errors - - my $basename = $pathinfo[0] || ''; - my $dir = $pathinfo[1] || ''; - my $ext = $pathinfo[2] || ''; - - $dir = abs_path($dir); + my $dir = upper_path($path); + my $file = file_name($path); - $path = $dir."/".$basename.$ext; + $dir = abs_path($dir); + $path = $dir."/".$file; } else { @@ -83,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); @@ -107,42 +100,56 @@ sub clean_path($) return $path; } -# filemode() +# devedit_reload() # -# Creates a readable string of a UNIX filemode number -# (copied from Tool.pm of Dev-Editor 0.1.4) +# Create a HTTP redirection header to load Dev-Editor +# with some other parameters # -# Params: Filemode as number +# Params: Hash Reference (will be merged to a query string) # -# Return: Filemode as readable string +# Return: HTTP redirection header (Scalar Reference) -sub filemode($) +sub devedit_reload($) { - my ($modestring, $ur, $uw, $ux, $gr, $gw, $gx, $or, $ow, $ox); - my $mode = shift; - - $ur = ($mode & 0400) ? "r" : "-"; # User Read - $uw = ($mode & 0200) ? "w" : "-"; # User Write - $ux = ($mode & 0100) ? "x" : "-"; # User eXecute - $gr = ($mode & 0040) ? "r" : "-"; # Group Read - $gw = ($mode & 0020) ? "w" : "-"; # Group Write - $gx = ($mode & 0010) ? "x" : "-"; # Group eXecute - $or = ($mode & 0004) ? "r" : "-"; # Other Read - $ow = ($mode & 0002) ? "w" : "-"; # Other Write - $ox = ($mode & 0001) ? "x" : "-"; # Other eXecute - - # build a readable mode string (rwxrwxrwx) - return $ur . $uw . $ux . $gr . $gw . $gx . $or . $ow . $ox; + 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; } -# upper_path() +# file_name() +# +# Returns the last path of a path # -# Truncate a path in one of the following ways: +# Params: Path +# +# Return: Last part of the path + +sub file_name($) +{ + my $path = shift; + $path =~ tr!\\!/!; + + unless($path eq "/") + { + $path = substr($path,0,-1) if($path =~ m!/$!); + $path = substr($path,rindex($path,"/")+1); + } + + return $path; +} + +# upper_path() # -# - 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 # @@ -156,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;