diff options
Diffstat (limited to 'rt/html/NoAuth/images')
-rw-r--r-- | rt/html/NoAuth/images/autohandler | 24 | ||||
-rw-r--r-- | rt/html/NoAuth/images/bplogo.gif | bin | 825 -> 0 bytes | |||
-rw-r--r-- | rt/html/NoAuth/images/favicon.png | bin | 335 -> 0 bytes | |||
-rw-r--r-- | rt/html/NoAuth/images/small-logo.png | bin | 4887 -> 0 bytes | |||
-rw-r--r-- | rt/html/NoAuth/images/space.gif | bin | 43 -> 0 bytes |
5 files changed, 0 insertions, 24 deletions
diff --git a/rt/html/NoAuth/images/autohandler b/rt/html/NoAuth/images/autohandler deleted file mode 100644 index 2e428c157..000000000 --- a/rt/html/NoAuth/images/autohandler +++ /dev/null @@ -1,24 +0,0 @@ -<%init> - -# This autohandler will spit out RT's images if the user hasn't -# properly configured their webserver to stop RT from passing -# images through the mason handler. - -my $file = $m->base_comp->source_file; -my $type = "application/octet-stream"; - -if ($file =~ /\.(gif|png|jpe?g)$/i) { - $type = "image/$1"; - $type =~ s/jpg/jpeg/gi; -} - -die unless (-f $file && -r $file); -$r->content_type($type); -open (FILE, "<$file") || die; -{ - local $/ = \16384; - $m->out($_) while (<FILE>); - close(FILE); -} -$m->abort; -</%init> diff --git a/rt/html/NoAuth/images/bplogo.gif b/rt/html/NoAuth/images/bplogo.gif Binary files differdeleted file mode 100644 index e2cf49c42..000000000 --- a/rt/html/NoAuth/images/bplogo.gif +++ /dev/null diff --git a/rt/html/NoAuth/images/favicon.png b/rt/html/NoAuth/images/favicon.png Binary files differdeleted file mode 100644 index ed1ee37ff..000000000 --- a/rt/html/NoAuth/images/favicon.png +++ /dev/null diff --git a/rt/html/NoAuth/images/small-logo.png b/rt/html/NoAuth/images/small-logo.png Binary files differdeleted file mode 100644 index 1e415e6d8..000000000 --- a/rt/html/NoAuth/images/small-logo.png +++ /dev/null diff --git a/rt/html/NoAuth/images/space.gif b/rt/html/NoAuth/images/space.gif Binary files differdeleted file mode 100644 index 1d11fa9ad..000000000 --- a/rt/html/NoAuth/images/space.gif +++ /dev/null |