public static Collection<FeedIF> parse(InputSource inpSource,
URL baseLocation) throws IOException, ParseException {
// document reading without validation
SAXBuilder saxBuilder = new SAXBuilder(false);
// turn off DTD loading
saxBuilder.setEntityResolver(new NoOpEntityResolver());
try {
Document doc = saxBuilder.build(inpSource);
return parse(doc);
} catch (JDOMException e) {
throw new ParseException(e);