]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Plugin/attachment.pm
remove trailing slash from attachment_holding_dir
[ikiwiki.git] / IkiWiki / Plugin / attachment.pm
index ea40379ffaa21351880d7f13aebeeebaf1f5f556..4bd08bf7b6da8bf3f0f4b7d6f48efa1ced9eadf0 100644 (file)
@@ -153,25 +153,24 @@ sub formbuilder (@) {
        $form->tmpl_param("attachment_list" => [attachment_list($form->field('page'))]);
 }
 
-sub attachment_holding_dir {
+sub attachment_holding_location {
        my $page=attachment_location(shift);
 
-       return $config{wikistatedir}."/attachments/".
+       my $dir=$config{wikistatedir}."/attachments/".
                IkiWiki::possibly_foolish_untaint(linkpage($page));
+       $dir=~s/\/$//;
+       return $dir;
 }
 
-sub remove_held_attachment {
+sub is_held_attachment {
        my $attachment=shift;
 
-       my $f=attachment_holding_dir($attachment);
-       $f=~s/\/$//;
+       my $f=attachment_holding_location($attachment);
        if (-f $f) {
-               require IkiWiki::Render;
-               IkiWiki::prune($f);
-               return 1;
+               return $f
        }
        else {
-               return 0;
+               return undef;
        }
 }
 
@@ -216,7 +215,7 @@ sub attachment_store {
 
        # Move the attachment into holding directory.
        # Try to use a fast rename; fall back to copying.
-       my $dest=attachment_holding_dir($form->field('page'));
+       my $dest=attachment_holding_location($form->field('page'));
        IkiWiki::prep_writefile($filename, $dest);
        unlink($dest."/".$filename);
        if (rename($tempfile, $dest."/".$filename)) {
@@ -250,7 +249,7 @@ sub attachments_save {
 
        # Move attachments out of holding directory.
        my @attachments;
-       my $dir=attachment_holding_dir($form->field('page'));
+       my $dir=attachment_holding_location($form->field('page'));
        foreach my $filename (glob("$dir/*")) {
                next unless -f $filename;
                my $dest=$config{srcdir}."/".
@@ -319,15 +318,16 @@ sub attachment_list ($) {
        }
        
        # attachments in holding directory
-       my $dir=attachment_holding_dir($page);
+       my $dir=attachment_holding_location($page);
        my $heldmsg=gettext("this attachment is not yet saved");
        foreach my $file (glob("$dir/*")) {
-               my $mtime=(stat($file))[9];
-               my $f=$file;
-               $f=~s/^\Q$dir\E\///;
+               next unless -f $file;
+               my $mtime=(stat(_))[9];
+               my $base=IkiWiki::basename($file);
+               my $f=$loc.$base;
                $attachments{$f}={
-                       $std->($page."/".$f, (stat($file))[9], (stat($file))[7]),
-                       link => "<span title=\"$heldmsg\">$f</span>",
+                       $std->($f, (stat($file))[9], (stat(_))[7]),
+                       link => "<span title=\"$heldmsg\">$base</span>",
                }
        }