if (pathInfo.length > 1) {
try {
// Parse pathinfo to determine file path
String filePath = filePathFromPathInfo(pathInfo);
MediaFile mf = fmgr.getMediaFileByOriginalPath(website, filePath);
return new AtomMediaResource(
mf.getName(),
mf.getLength(),
new Date(mf.getLastModified()),
mf.getInputStream());
} catch (Exception e) {