xml escape fix?
[mir.git] / source / mir / rss / RSS091Reader.java
index 2ca3686..635e933 100755 (executable)
@@ -177,6 +177,7 @@ public class RSS091Reader {
 
     public XMLReader.SectionHandler startElement(XMLReader.XMLName aTag, Map anAttributes) throws XMLReader.XMLReaderExc {
       String tag = aTag.getLocalName();
+      System.out.println(tag);
 
       if (tag.equals("item"))
         return new RSS091ItemSectionHandler();
@@ -218,6 +219,7 @@ public class RSS091Reader {
 
     public XMLReader.SectionHandler startElement(XMLReader.XMLName aTag, Map anAttributes) throws XMLReader.XMLReaderExc {
       String tag = aTag.getLocalName();
+      System.out.println(tag);
 
       if (mappedItemProperties.containsKey(tag)) {
         currentTag=(String) mappedChannelProperties.get(tag);