Can u plz help me that where html entities are trannsformed in the source code. Actually i don't want to tranform xml entities(& , < etc) in the...
... All SAX parsers convert entities to characters when returning values to the caller. It's up to the caller, if it intends to produce output as XML, to...
Thanks John. I m able to do it with XMLWriter or Regex . But when i m removing "<entity name='amp' codepoint='0026'/>" from definitions.html.tssl then it...
... When TagSoup sees an entity that's not in its tables, it returns the entity reference as text (what else is there to do, given the Keep On Truckin'...
Hi, I'm an experienced Java programmer but I've never written a SAX application from scratch and I'm not sure how it should all hang together. I'm trying to...
... Spiders aren't exactly trivial code, but thanks for thinking of TagSoup. You might want to reuse someone else's spider and then use TagSoup to postprocess...
... It's mishandling EOF somewhere. I hope to be able to do some more work on TagSoup soon. I've recently changed jobs, which has been stressful. Let me take...
hi, in order to evaluate tagsoup, I downloaded it and tried it with "java -jar tagsoup-1.0rc3 --files --html ..." on some html pages saved with 'save page...
... Can you send me the particular HTML page that failed? -- Even a refrigerator can conform to the XML John Cowan Infoset, as long as it has a door...
hi, I wanted to rebuild tagsoup to be able to watch it work in the debugger, but the compiler complains about HTMLSchema and HTMLScanner. I looked in the...
... Install Ant and say "ant" from the root TagSoup directory; that will drop the current TagSoup .jar in the dist/lib directory. Make sure you are building...
... well... I'm using eclipse 3.1 I suppose there is an ant build file somewehe. i will try to figure out how to setup eclipse to use it. thanx. Pierre....
... that's funny. when you have eclipse, you do not even have javac ;) I asked eclipse to build TagSoup with the ant build file, and because of the above...
Hello, I was wondering when Tagsoup 1.0 would be released? I see that rc3 has been out a while. Also, is there a bugtracker for this project? I'd like to see...
... I've changed jobs and been swamped. I hope to get a chance to work on it soon. ... CHANGES in the 1.0rc3 distribution is your friend. -- John Cowan...
... Yes. ... -- Possession is said to be nine points of the law, John Cowan but that's not saying how many points the law might have. cowan@... --Thomas...
YES! TagSoup does black magic! :) I have the following html source file in which a <th> is incorrectly close by a </td> ... <html> <head></head> <body> ...
Hi, I use tagsoup to parse html and build it into XOM document. After I call document.toXML(), The original doctype declaration is gone. I notice that in the...
Hi, TagSoup add default attribute values on some (all?) elements: for example, <td> become <td rowspan="1" colspan="1"> is it possible, without modifying the...
... Essentially it means that the element will not be closed implicitly when its parent element is closed. Instead, it will be popped off the stack and saved,...
I'm trying to write a utility that will pull a webpage with a table on it and then extract the information from within that table. I was thinking that instead...
TagSoup replace your SAX parser. but a SAX parser does not create a DOM tree, it just trigger events, events which give you the opportunity to create a DOM...
... That's right, TagSoup is a SAX parser, so it does not need to be used with a different SAX parser. You then need to have a DOM or DOM-like object model ...