]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/filecheck_failing_to_find_files.mdwn
bug and fix
[ikiwiki.git] / doc / bugs / filecheck_failing_to_find_files.mdwn
1 Using the attachment plugin, when filecheck was checking the mime-type of the attachment before allowing the attachment to be removed, it was returning with an error saying that the mime-type of the file was "unknown" (when the mime-type definitely was known!)
2
3 It turns out that the filecheck plugin couldn't find the file, because it was merely using the $pagesources hash, rather than finding the absolute path of the file in question.
4
5 The following patch fixes the problem:
6
7         diff --git a/IkiWiki/Plugin/filecheck.pm b/IkiWiki/Plugin/filecheck.pm
8         index 01d4909..1cec0cf 100644
9         --- a/IkiWiki/Plugin/filecheck.pm
10         +++ b/IkiWiki/Plugin/filecheck.pm
11         @@ -118,6 +118,10 @@ sub match_mimetype ($$;@) {
12                 if (! defined $file) {
13                         return IkiWiki::ErrorReason->new("no file specified");
14                 }
15         +       if (! -e $file) {
16         +           # get the absolute path of the file if you can't find it
17         +           $file = IkiWiki::srcfile($file);
18         +       }
19          
20                 # Use ::magic to get the mime type, the idea is to only trust
21                 # data obtained by examining the actual file contents.
22
23 [[!tag patch]]