You can subscribe to this list here.
2004 |
Jan
(29) |
Feb
(1) |
Mar
(6) |
Apr
(31) |
May
(2) |
Jun
(2) |
Jul
(13) |
Aug
(31) |
Sep
(41) |
Oct
(12) |
Nov
(13) |
Dec
(4) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(17) |
Feb
(3) |
Mar
(3) |
Apr
|
May
(1) |
Jun
(2) |
Jul
(1) |
Aug
(3) |
Sep
(3) |
Oct
(1) |
Nov
(2) |
Dec
(6) |
2006 |
Jan
(4) |
Feb
(6) |
Mar
(2) |
Apr
(1) |
May
|
Jun
|
Jul
(21) |
Aug
(7) |
Sep
(5) |
Oct
(4) |
Nov
(2) |
Dec
(2) |
2007 |
Jan
(1) |
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
|
Jul
(1) |
Aug
(2) |
Sep
(2) |
Oct
(2) |
Nov
|
Dec
(1) |
2008 |
Jan
(1) |
Feb
(1) |
Mar
(7) |
Apr
(2) |
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(1) |
Nov
(2) |
Dec
(8) |
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(2) |
Jul
(5) |
Aug
(24) |
Sep
(16) |
Oct
(8) |
Nov
(42) |
Dec
(3) |
2010 |
Jan
(8) |
Feb
(8) |
Mar
(14) |
Apr
(29) |
May
(2) |
Jun
(1) |
Jul
(11) |
Aug
(47) |
Sep
(4) |
Oct
(16) |
Nov
(18) |
Dec
|
2011 |
Jan
(5) |
Feb
(4) |
Mar
(2) |
Apr
|
May
|
Jun
(10) |
Jul
(50) |
Aug
(4) |
Sep
(4) |
Oct
(1) |
Nov
(4) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
(8) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: SourceForge.net <no...@so...> - 2004-04-02 21:58:04
|
Feature Requests item #840758, was opened at 2003-11-12 16:13 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=840758&group_id=13153 Category: None Group: None >Status: Closed Priority: 5 Submitted By: Michael Blakeley (mblakele) >Assigned to: fabrizio giustina (fgiust) Summary: add set methods for Configuration Initial Comment: This patch adds a set method for every protected Configuration variable. This allows code like: import org.w3c.tidy.Configuration; import org.w3c.tidy.Node; import org.w3c.tidy.Tidy; public class MyClass implements Whatever { public void convertToXML(String fileName, OutputStream out) throws FileNotFoundException { Tidy tidy = new Tidy(); Configuration conf = tidy.getConfiguration(); conf.setXhtml(true); conf.setOnlyErrors(true); BufferedInputStream in = new BufferedInputStream(new FileInputStream(new File(fileName))); Node document = tidy.parse(in, out); } // convertToXML } ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-04-02 23:58 Message: Logged In: YES user_id=798060 setter methods for configuration options are already available in the Tidy class. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=840758&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-04-02 21:52:28
|
Feature Requests item #646539, was opened at 2002-12-01 18:40 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=646539&group_id=13153 Category: None Group: None Status: Open Priority: 5 Submitted By: Mark Diekhans (diekhans) >Assigned to: fabrizio giustina (fgiust) Summary: More control over warnings and errors Initial Comment: When using JTidy as a parser it is not always desirable to have it modify the document, as the results can be difficult for the user to predict. It would be very useful to be able to have control over what is considered a warning vs an error. A plugable error handler, in place of the static Report class, would be one way to implement this. Since are individually identified by a constant, the error handler could make the decision on warning vs error. Optionally preventing modification of the internal representation of document would also be useful. ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-04-02 23:52 Message: Logged In: YES user_id=798060 a jtidy error handler will be added in r8. Part of the work is already done in CVS, but not yet completed ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=646539&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-04-02 21:50:39
|
Feature Requests item #439110, was opened at 2001-07-06 18:43 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=439110&group_id=13153 Category: None Group: None >Status: Closed Priority: 5 Submitted By: Duane Morin (ddm) >Assigned to: fabrizio giustina (fgiust) Summary: Stripping HTML/HEAD/BODY Initial Comment: In the application we use, we have a navigation framework and just let authors drop in hunks of content that they write as MSWord files. We render these using Word2000 and then want to run Tidy on them for obvious reasons :). But something that would be cool is the ability to say "this is not a complete HTML file, just a blurb" and thus not provide any HTML,HEAD or BODY tags -- just the raw content. Any thoughts on that? I'll try to add it myself and submit it back to the project if I can get it working, but wasn't sure if anybody was already on the case. ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-04-02 23:50 Message: Logged In: YES user_id=798060 JTidy r8 will support the --show-body-only option to print only a document body, like the c version. Code has already been submitted to CVS. Testcase is 434940. ---------------------------------------------------------------------- Comment By: Terry Teague (terry_teague) Date: 2001-07-19 09:47 Message: Logged In: YES user_id=225318 The current (18 Jul 01) C version of the Tidy code has such a feature; similar code has been provided by Ignacio Vazquez- Abrams as a source patch for the 04 Aug 00 release of the C version of Tidy. He recently answered a similar question the html-tidy mailing list : < http://lists.w3.org/Archives/Public/html-tidy/2001JulSep/ 0051.html> I expect JTidy will follow the C version of Tidy when the next release of Tidy is done (which should be soon). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=439110&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-04-02 21:44:02
|
Bugs item #917012, was opened at 2004-03-16 01:43 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=917012&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Spaces are moved from content to between tags Initial Comment: Tag content (such as text in a font tag) that has space at either end of the content has the space stripped and placed between the font tags. For example: <html> <body> <p> <font style="font-size: 36pt">big </font><font style="color: #red; font-size: 36pt">coloured</font><font style="font-size: 36pt"> text</font> </p> </body> </html> will get converted to something like this: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <body> <p><span style="font-size: 36pt">big</span> <span style= "color: #red; font-size: 36pt">coloured</span> <span style= "font-size: 36pt">text</span></p> </body> </html> Notice that the space after big appears to have been moved to between the span tags. This results in spaces at the default point size being used between the words. ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-04-02 23:44 Message: Logged In: YES user_id=798060 added testcase ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=917012&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-04-02 21:32:55
|
Bugs item #922302, was opened at 2004-03-24 10:05 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=922302&group_id=13153 >Category: Tidy functionality Group: None Status: Open Resolution: None >Priority: 7 Submitted By: Cyrille Morvan (cyrille_morvan) Assigned to: Nobody/Anonymous (nobody) >Summary: Add comment <!-- --> to script tag to produce valid XML Initial Comment: Look this code : <script> document.write("<img src=\gnagna.jpg\">); </script> An XML parser (as Xerces) will say it's not valid XML because 'src' in 'img' tag must be followed by " and not \ !!! To correct this, JTidy must add comment tag inside the script tag, to produce valid XHTML : <script> <!-- document.write("<img src=\gnagna.jpg\">); --> </script> Thank you. - Cyrille Morvan ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-04-02 23:32 Message: Logged In: YES user_id=798060 added testcase ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=922302&group_id=13153 |
From: Fabrizio G. <fgi...@sa...> - 2004-03-28 17:32:54
|
The JTidy source has already been cleaned-up after the r7 release. Javadocs are in progress. You can find the latest source and reports on code standards/javadocs here: http://jtidy.sourceforge.net/ fabrizio ________________________________ From: jti...@li... [mailto:jti...@li...] On Behalf Of Mireia Ribera Sent: Friday, March 26, 2004 10:19 AM To: jti...@li... Subject: [Jtidy-devel] Imports and comments If you open Jtidy project (original version) in Eclipse (www.eclipse.org) you'll find many imports not necessary, and somme TODO comments not resolved. Think this should be fixed [if necessary I can submit a list of Eclipse messages]. =20 Mireia Ribera Facultat Biblioteconomia i Documentacio Universitat Barcelona SPAIN |
From: Mireia R. <ri...@fb...> - 2004-03-26 09:21:13
|
If you open Jtidy project (original version) in Eclipse = (www.eclipse.org) you'll find many imports not necessary, and somme TODO comments not resolved. Think this = should be fixed [if necessary I can submit a list of Eclipse messages]. Mireia Ribera Facultat Biblioteconomia i Documentacio Universitat Barcelona SPAIN |
From: SourceForge.net <no...@so...> - 2004-03-24 09:05:34
|
Bugs item #922302, was opened at 2004-03-24 10:05 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=922302&group_id=13153 Category: DOM Support Group: None Status: Open Resolution: None Priority: 5 Submitted By: Cyrille Morvan (cyrille_morvan) Assigned to: Nobody/Anonymous (nobody) Summary: Add comment <!-- --> to script tag to produce valid XML Initial Comment: Look this code : <script> document.write("<img src=\gnagna.jpg\">); </script> An XML parser (as Xerces) will say it's not valid XML because 'src' in 'img' tag must be followed by " and not \ !!! To correct this, JTidy must add comment tag inside the script tag, to produce valid XHTML : <script> <!-- document.write("<img src=\gnagna.jpg\">); --> </script> Thank you. - Cyrille Morvan ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=922302&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-03-16 00:43:59
|
Bugs item #917012, was opened at 2004-03-15 16:43 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=917012&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Spaces are moved from content to between tags Initial Comment: Tag content (such as text in a font tag) that has space at either end of the content has the space stripped and placed between the font tags. For example: <html> <body> <p> <font style="font-size: 36pt">big </font><font style="color: #red; font-size: 36pt">coloured</font><font style="font-size: 36pt"> text</font> </p> </body> </html> will get converted to something like this: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <body> <p><span style="font-size: 36pt">big</span> <span style= "color: #red; font-size: 36pt">coloured</span> <span style= "font-size: 36pt">text</span></p> </body> </html> Notice that the space after big appears to have been moved to between the span tags. This results in spaces at the default point size being used between the words. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=917012&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-03-11 13:14:24
|
Bugs item #914097, was opened at 2004-03-11 13:56 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=914097&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None Priority: 5 Submitted By: Cyrille Morvan (cyrille_morvan) Assigned to: Nobody/Anonymous (nobody) Summary: [FEATURE] Ignore unknown element Initial Comment: Is it possible to have an option to ignore unknown elements. Tidy.setIgnoreUnknownElement(boolean); I'm using today cvs version, and I get : line 3 column 261 - Error: <a_href> is not recognized! I don't care if a_href is not recognized ! Thank you. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=914097&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-03-03 17:32:09
|
Bugs item #909187, was opened at 2004-03-03 09:18 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=909187&group_id=13153 Category: None Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: JTidy should remove 0x0 from stream Initial Comment: I am trying to use JDOM after JTidy on a HTML document. The HTML document has an embedded 0x0, resulting in the following error: org.jdom.IllegalDataException: The data " (Widescreen, Repeat, Subtitles, Sign Language and Enhanced Commentary, 1999, 4 Star)[box]" is not legal for a JDOM character content: 0x0 is not a legal XML character. JTidy should remove any 0x0 after character decoding. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=909187&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-02-13 11:21:36
|
Feature Requests item #896430, was opened at 2004-02-13 11:19 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=896430&group_id=13153 Category: None Group: None Status: Open Priority: 5 Submitted By: Hillebrand Gelderblom (hgelderblom) Assigned to: Nobody/Anonymous (nobody) Summary: Other encoding in than out. Initial Comment: The encoding of the xml document which is to be parsed by JTidy is in UTF-8 encoding. When the document is being cleaned and some additional operations are done on the dom object, I want to serialize the document back to text using the pprint method. When i set the encoding to UTF the output is also done in utf causing characters with a value over 127 not to be mapped to entities. I can't find a way for this to happen. I tried to set rawoutput to false but that doesn't help. Maybe the output encoding should be able to be set to ASCII? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=896430&group_id=13153 |
From: john d. <jo...@ma...> - 2004-01-31 04:36:54
|
i'm trying to use jtidy(r7) in order to clean up/sanitize user inputted html before displaying it on a website(in this case www.indymedia.org). i have run into some serious issues with character encoding which i have been unable to resolve. specifically, i want utf8 input text to remain utf8 after being passed through jtidy. at the moment, i cannot get this to happen, instead, all utf8 characters *and* entity references like é show up in the output as ? more detail: basically the approach i am using is to parse/clean using jtidy, then walk the dom tree, outputing tags/attributes if they are approved. the code which sets up the walk is as follows: ByteArrayOutputStream result=new ByteArrayOutputStream(); PrintWriter out = new PrintWriter(result); Tidy tidy = new Tidy(); ByteArrayInputStream in = new ByteArrayInputStream(aText.getBytes()); tidy.setMakeClean(true); tidy.setXmlOut(true); print(tidy.parseDOM(in, null),out); return result.toString(); and the "print" method which recursively processes nodes looks like(cut down to just the part dealing with text nodes for brevity): private void print(Node node,PrintWriter out) { int type = node.getNodeType(); <snip> case Node.TEXT_NODE: out.print(node.getNodeValue()); break; } <snip> } what am I doing wrong? i've tried numerous combinations of jtidy options with no success...perhaps I missed something? thanks for any help you can offer, john duda john--at--manifestor.org (please cc me on any replies as i am not subscribed to the list) -- this is where my public key can be found: gpg --keyserver pgp.mit.edu --recv-keys 03817826 Key fingerprint = 6C11 8D70 2ADE EFA9 498D 72CB 77EA 391A 0381 7826 |
From: SourceForge.net <no...@so...> - 2004-01-26 22:28:31
|
Bugs item #880523, was opened at 2004-01-20 13:08 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=880523&group_id=13153 Category: DOM Support Group: None >Status: Closed Resolution: None Priority: 5 Submitted By: Andrew R. Thornton (zeripath) >Assigned to: fabrizio giustina (fgiust) Summary: DOM2 methods should throw DOMException if unsupported Initial Comment: Currently there are stubs for DOM2 extensions to the DOMImpl classes. These however return null instead of throwing a DOMException NotSupportedErr. This is incorrect behaviour, these methods must throw an exception or return a valid object. ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-26 23:28 Message: Logged In: YES user_id=798060 fixed in cvs, now unimplemented DOM methods properly throws DOMException.NOT_SUPPORTED_ERR ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=880523&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-20 16:30:13
|
Bugs item #880665, was opened at 2004-01-20 08:30 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=880665&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) Assigned to: Nobody/Anonymous (nobody) Summary: Tidy loop processing more than 1024 chars Initial Comment: JTidy always freeze on pprint.printTree(...) on a stram bigger than 1024 (more or less) characters....please help ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=880665&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-20 12:08:47
|
Bugs item #880523, was opened at 2004-01-20 12:08 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=880523&group_id=13153 Category: DOM Support Group: None Status: Open Resolution: None Priority: 5 Submitted By: Andrew R. Thornton (zeripath) Assigned to: Nobody/Anonymous (nobody) Summary: DOM2 methods should throw DOMException if unsupported Initial Comment: Currently there are stubs for DOM2 extensions to the DOMImpl classes. These however return null instead of throwing a DOMException NotSupportedErr. This is incorrect behaviour, these methods must throw an exception or return a valid object. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=880523&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-16 13:55:29
|
Bugs item #508245, was opened at 2002-01-25 02:35 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=508245&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None Priority: 5 Submitted By: Nobody/Anonymous (nobody) >Assigned to: fabrizio giustina (fgiust) Summary: Do not convert the & or < to Entity Ref Initial Comment: If & or < is found inside HTML Text , it is not converted to entity refrence. In following example it does not fix <img or & or < inside hello world. <html> <body> <table> <tr><td><img src="deno.gif" </td></tr> <tr><td> hello & world</td></tr> <tr><td> hello < world</td></tr> </table> </body> </html> ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-16 14:55 Message: Logged In: YES user_id=798060 Jtidy doesn't generate any output since it fails to correct the unclosed <img tag. This is working in tidy. Added test case. ---------------------------------------------------------------------- Comment By: Gary L Peskin (garypeskin) Date: 2002-01-25 03:22 Message: Logged In: YES user_id=91501 Please run your file through the c version of tidy which is the official version of tidy. This can be obtained from <http://sourceforge.net/projects/tidy/>. If the problem occurs with the c version, please close this bug and report this to the HTML Tidy folk. If the problem, does not occur with the c version, please post that fact here and we will look into it. You should use the officially release version of HTML Tidy dated 04aug00 since that is what JTidy supports. Since JTidy is a java port of the official c version of Tidy, we strive to maintain complete compatibility with the official version. Any bugs that you receive from the c version of tidy should be reported to the html-tidy mailing list or to the HTML Tidy project here at SourceForge where they can be addressed. When the bugs are fixed in the c version of tidy, that will be reflected in the java version as well. Source code for JTidy is available from the CVS section of this site. Please feel free to download the source and make any local changes in your copy of Tidy to correct your problems. Thank you. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=508245&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-16 13:45:11
|
Bugs item #475643, was opened at 2001-10-27 22:20 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=475643&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None Priority: 5 Submitted By: Liam Quinn (liamquinn) >Assigned to: fabrizio giustina (fgiust) Summary: Hex character references not handled Initial Comment: Hexadecimal character references such as < (which is equivalent to <) are not handled by JTidy. The C version of Tidy seems to have no trouble with it. When faced with <, JTidy reports Warning: entity "" doesn't end in ';'. For a couple example pages that demonstrate the problem when run through JTidy, see: http://htmlhelp.com/reference/html40/entities/special.html http://htmlhelp.com/reference/html40/entities/latin1.html I'm using jtidy-04aug2000r7-dev. ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-16 14:45 Message: Logged In: YES user_id=798060 added test case ---------------------------------------------------------------------- Comment By: Gary L Peskin (garypeskin) Date: 2001-12-17 17:28 Message: Logged In: YES user_id=91501 Thanks for the info. We will look into this when working on the new version of JTidy as soon as the HTML Tidy folks issue their next release. Gary ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=475643&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-16 13:27:56
|
Bugs item #462423, was opened at 2001-09-18 04:09 Message generated for change (Settings changed) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=462423&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None >Priority: 9 Submitted By: Nobody/Anonymous (nobody) >Assigned to: fabrizio giustina (fgiust) Summary: stdin support doesn't work on cmd line Initial Comment: For example, whenever I try to process stdin I get this: cat x.html | jtidy -asxml Tidy: can't open file "stdin" I don't think the processing of stdin in Tidy.java's main() is correct. Around line 1562 we have this: if (argc > 1) { file = argv[argIndex]; } else { file = "stdin"; } whereas I think we want this ? if (argc > 1) { file = argv[argIndex]; } else { file = null; } Because: private Node parse(InputStream in, String file, OutputStream out) has this: if (file != null) { in = new FileInputStream(file); inputStreamName = file; } else if (in == null) { in = System.in; inputStreamName = "stdin"; } so passing null as 1st argument to parse() will cause it to use stdin. passing "stdin" will cause it to try and open a fie of that name. Anyway - I have tried patching it like this and I can now get my example command to work. Dave ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2001-09-18 04:25 Message: Logged In: NO Sorry - hadn't meant to be quite so anonymous. Haven't used this system before. Also, should maybe note that the problem occured with the 04aug200-r7dev release. Cheers, da...@wa... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=462423&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-16 13:25:52
|
Bugs item #522003, was opened at 2002-02-24 09:01 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=522003&group_id=13153 Category: Tidy functionality Group: None >Status: Closed Resolution: None Priority: 9 Submitted By: Nobody/Anonymous (nobody) Assigned to: fabrizio giustina (fgiust) Summary: Typo in Configuration.parseProps() Initial Comment: line 210-212: value = _properties.getProperty("indent-attributes"); if (value != null) IndentAttributes = parseBool(value, "ident- attributes"); note that first compare uses "indent-attributes", while parseBool() is given "ident-attributes". ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-16 14:25 Message: Logged In: YES user_id=798060 fixed in CVS ---------------------------------------------------------------------- Comment By: fabrizio giustina (fgiust) Date: 2004-01-10 22:42 Message: Logged In: YES user_id=798060 confirmed ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=522003&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-12 10:33:23
|
Feature Requests item #850239, was opened at 2003-11-27 14:12 Message generated for change (Comment added) made by mbeyer73 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=850239&group_id=13153 Category: None Group: None Status: Closed Priority: 5 Submitted By: Marcus Beyer (mbeyer73) Assigned to: fabrizio giustina (fgiust) Summary: INTEGRATE PATCHES OR ACCEPT NEW PROJECT MANAGER Initial Comment: You shouldn't force developers to branch JTidy. If you have no time for it, why shouldn't others continue to develop JTidy under the same project name? Cheers! Marcus ---------------------------------------------------------------------- >Comment By: Marcus Beyer (mbeyer73) Date: 2004-01-12 11:33 Message: Logged In: YES user_id=835758 > fixed. The project has a new administrator and developer, all > the submitted patches will be applied soon this is great news :) thanx! Marcus ---------------------------------------------------------------------- Comment By: fabrizio giustina (fgiust) Date: 2004-01-05 12:20 Message: Logged In: YES user_id=798060 fixed. The project has a new administrator and developer, all the submitted patches will be applied soon ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=363153&aid=850239&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-10 21:42:44
|
Bugs item #522003, was opened at 2002-02-24 09:01 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=522003&group_id=13153 Category: Tidy functionality Group: None Status: Open Resolution: None >Priority: 9 Submitted By: Nobody/Anonymous (nobody) >Assigned to: fabrizio giustina (fgiust) Summary: Typo in Configuration.parseProps() Initial Comment: line 210-212: value = _properties.getProperty("indent-attributes"); if (value != null) IndentAttributes = parseBool(value, "ident- attributes"); note that first compare uses "indent-attributes", while parseBool() is given "ident-attributes". ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-10 22:42 Message: Logged In: YES user_id=798060 confirmed ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=522003&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-10 21:38:53
|
Bugs item #763186, was opened at 2003-06-30 15:30 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=763186&group_id=13153 Category: DOM Support Group: None >Status: Pending >Resolution: Works For Me Priority: 5 Submitted By: Meenakshi Sundaram P (meenakship) >Assigned to: fabrizio giustina (fgiust) Summary: Another DOM Parsing error Initial Comment: Hi The bug is, JTidy while parsing the htmlpage(to form document) inserts a space into text which follows </a> Before parsing <html> <body> <table> <tr> <td valign = "top" align = "left" class = "psTd" > <a href = "abc.html" >Joint </a> <br></br> <br></br>Standard </td> </tr> </table> </body> <html> After parsing <html> <body> <table> <tr> <td valign = "top" align = "left" class = "psTd" > <a href = "abc.html" >Joint </a> <br></br> <br></br>S tandard </td> </tr> </table> </body> <html> Please note that the text "Standard" becomes "S tandard" What is the reason for it? Thanks in Advance Meenakshi Sundaram P mee...@lu... ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-10 22:38 Message: Logged In: YES user_id=798060 Unable to reproduce the problem using r7 and the given text. Please upload a test file and your current configuration. Added test case. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=763186&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-10 21:22:51
|
Bugs item #741052, was opened at 2003-05-21 13:16 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=741052&group_id=13153 Category: Tidy functionality Group: None >Status: Closed >Resolution: Invalid Priority: 5 Submitted By: Nobody/Anonymous (nobody) >Assigned to: fabrizio giustina (fgiust) Summary: JTidy MAC OSX Initial Comment: Hi , Our application is converting Html file to Xml ,For this we are using JTidy . our applications are built on Database used is Oracle 9i release 2 Language used is Java1.3 Platform is Mac OS X ( 10.2 ) Currently we are using JTidy for doing the same.We are sucessful in acheiving the requirement, but its running only on windows platform. The basic problem we are facing is with the download of JTidy on Mac OS X (the required Jar file is missing in the download Zip). Is there version aviable for Mac OS X . Also there are some bugs with jTidy application. If HTML file having tags like <frame> &amb; ® © then it won't parse fill . Is there any methods available for ignore these tags from Html file while parsing. waiting for ur reply on this. Plz give some input on this. Thanks Deepak ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-10 22:22 Message: Logged In: YES user_id=798060 The jtidy jar is the same for all platform, how can you have problems downloading it on mac OSX? About parsing problem please submit a valid test file, the reported problem and the desired behaviour. We can't do much without that... ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=741052&group_id=13153 |
From: SourceForge.net <no...@so...> - 2004-01-10 21:18:15
|
Bugs item #763191, was opened at 2003-06-30 15:34 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=763191&group_id=13153 Category: DOM Support Group: None Status: Open Resolution: None >Priority: 7 Submitted By: Meenakshi Sundaram P (meenakship) >Assigned to: fabrizio giustina (fgiust) Summary: Again DOM Pasring error Initial Comment: Hi In an html, i have got a select box with option like <option value='AB 12345 xy' >opt1</option>, JTidy while parsing the html stream trims all (sequential) white spaces into a single white space. So the resultant html is <option value='AB 12345 xy' >opt1</option>, what is the reason for it? Thanks in Advance Meenakshi Sundaram P mee...@lu... ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-01-10 22:18 Message: Logged In: YES user_id=798060 confirmed. Added test case. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=763191&group_id=13153 |