@ -73,7 +73,8 @@ public class Load_RSS_p {
prop . put ( "shownewfeeds" , 0 ) ;
prop . put ( "showscheduledfeeds" , 0 ) ;
prop . put ( "url" , "" ) ;
prop . put ( "showerrmsg" , 0 ) ;
if ( post ! = null & & post . containsKey ( "removeSelectedFeedsNewList" ) ) {
for ( final Map . Entry < String , String > entry : post . entrySet ( ) ) {
if ( entry . getValue ( ) . startsWith ( "mark_" ) ) try {
@ -262,7 +263,7 @@ public class Load_RSS_p {
try {
url = post . containsKey ( "url" ) ? new DigestURL ( post . get ( "url" , "" ) ) : null ;
} catch ( final MalformedURLException e ) {
ConcurrentLog . warn ( "Load_RSS _p ", "url not well-formed: '" + post . get ( "url" , "" ) + "'" ) ;
ConcurrentLog . warn ( "Load_RSS ", "url not well-formed: '" + post . get ( "url" , "" ) + "'" ) ;
}
ClientIdentification . Agent agent = post = = null ? ClientIdentification . yacyInternetCrawlerAgent : ClientIdentification . getAgent ( post . get ( "agentName" , ClientIdentification . yacyInternetCrawlerAgentName ) ) ;
@ -275,7 +276,10 @@ public class Load_RSS_p {
final byte [ ] resource = response = = null ? null : response . getContent ( ) ;
rss = resource = = null ? null : RSSReader . parse ( RSSFeed . DEFAULT_MAXSIZE , resource ) ;
} catch ( final IOException e ) {
ConcurrentLog . logException ( e ) ;
ConcurrentLog . warn ( "Load_RSS" , e . getMessage ( ) ) ;
prop . put ( "showerrmsg" , 1 ) ;
prop . put ( "showerrmsg_msgtxt" , "no valid response from given url" ) ;
return prop ; // if no response nothing to process further
}
// index all selected items: description only