*) bugfix: setting mimeType properly for dir listing with e.g. "?format=xml"

git-svn-id: https://svn.berlios.de/svnroot/repos/yacy/trunk@3516 6c8d7289-2bf4-0310-a012-ef5d649a1542
pull/1/head
theli 18 years ago
parent 242c19b480
commit c2e6afbd69

@ -466,6 +466,7 @@ public final class httpdFileHandler extends httpdAbstractHandler implements http
//no defaultfile, send a dirlisting
if(targetFile == null || !targetFile.exists()){
String dirlistFormat = (args==null)?"html":args.get("format","html");
targetExt = dirlistFormat; // this is needed to set the mime type correctly
targetFile = getOverlayedFile("/htdocsdefault/dir." + dirlistFormat);
targetClass=getOverlayedClass("/htdocsdefault/dir." + dirlistFormat);
if(! (( targetFile != null && targetFile.exists()) && ( targetClass != null && targetClass.exists())) ){

Loading…
Cancel
Save