[nntprss-commit] nntprss/src/org/methodize/nntprss/feed/parser RSSParser.java, 1.12, 1.13
Status: Beta
Brought to you by:
jasonbrome
|
From: Jason B. <jas...@us...> - 2007-12-17 04:13:42
|
Update of /cvsroot/nntprss/nntprss/src/org/methodize/nntprss/feed/parser In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv32703/src/org/methodize/nntprss/feed/parser Modified Files: RSSParser.java Log Message: Minor updates Index: RSSParser.java =================================================================== RCS file: /cvsroot/nntprss/nntprss/src/org/methodize/nntprss/feed/parser/RSSParser.java,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** RSSParser.java 17 May 2006 04:14:33 -0000 1.12 --- RSSParser.java 17 Dec 2007 04:13:45 -0000 1.13 *************** *** 3,7 **** /* ----------------------------------------------------------- * nntp//rss - a bridge between the RSS world and NNTP clients ! * Copyright (c) 2002-2006 Jason Brome. All Rights Reserved. * * email: nn...@me... --- 3,7 ---- /* ----------------------------------------------------------- * nntp//rss - a bridge between the RSS world and NNTP clients ! * Copyright (c) 2002-2007 Jason Brome. All Rights Reserved. * * email: nn...@me... *************** *** 92,97 **** }; ! private static RSSParser rssParser = new RSSParser(); ! private Logger log = Logger.getLogger(RSSParser.class); private RSSParser() { --- 92,97 ---- }; ! private static final RSSParser rssParser = new RSSParser(); ! private static final Logger log = Logger.getLogger(RSSParser.class); private RSSParser() { *************** *** 184,193 **** itemCount--) { Element itemElm = (Element) itemList.item(itemCount); - String title; - String link; - String description; - ByteArrayOutputStream bos; - byte[] signatureSource; - byte[] signature; String signatureStr = generateItemSignature(md, itemElm); --- 184,187 ---- *************** *** 245,249 **** if (pubDateStr != null && pubDateStr.length() > 0) { // Parse Date... ! log.info("pubDate == " + pubDateStr); try { pubDate = --- 239,243 ---- if (pubDateStr != null && pubDateStr.length() > 0) { // Parse Date... ! log.debug("pubDate == " + pubDateStr); try { pubDate = |