]> git.p6c8.net - devedit.git/blobdiff - modules/Tool.pm
Updated to version 1.3
[devedit.git] / modules / Tool.pm
index 75b9f31b6c8e247e7f9342b466f490d2abfae3e8..1009640c046d86aad9a2553bde2331e61031d16c 100644 (file)
@@ -6,7 +6,7 @@ package Tool;
 # Some shared sub routines
 #
 # Author:        Patrick Canterino <patshaping@gmx.net>
-# Last modified: 2003-10-27
+# Last modified: 2004-02-24
 #
 
 use strict;
@@ -24,6 +24,7 @@ use base qw(Exporter);
 @EXPORT = qw(check_path
              clean_path
              devedit_reload
+             equal_url
              file_name
              upper_path);
 
@@ -76,7 +77,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);
@@ -125,9 +126,30 @@ sub devedit_reload($)
  return \$header;
 }
 
+# equal_url()
+#
+# Create URL equal to a file or directory
+#
+# Params: 1. HTTP root
+#         2. Relative path
+#
+# Return: Formatted link (String)
+
+sub equal_url($$)
+{
+ my ($root,$path) = @_;
+ my $url;
+
+ $root =~ s!/$!!;
+ $path =~ s!^/!!;
+ $url  =  $root."/".$path;
+
+ return $url;
+}
+
 # file_name()
 #
-# Returns the last path of a path
+# Return the last path of a path
 #
 # Params: Path
 #
@@ -149,12 +171,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 away the last part of a path
 #
 # Params: Path
 #

patrick-canterino.de