Hello, I am crawling a SharePoint 2010 library named Pages. This library contains *.aspx files only.
There is an if check in SPSProxyHelper.java that ignores aspx files.
if (!relPath.endsWith(".aspx")) {
fileStream.addFile( relPath );
}
What is the motivation of this if clause?
If I disable this if check, I can successfully get content of *.aspx files and
metadata (field values) that I selected for this Pages library.
Thanks,
Ahmet
