mirror of
https://github.com/gnosygnu/xowa.git
synced 2026-03-02 03:49:30 +00:00
Refactor: Refactor baselib; merge Array_ and Bool_
This commit is contained in:
7
190_jtidy_xowa/.classpath
Normal file
7
190_jtidy_xowa/.classpath
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src/main/java"/>
|
||||
<classpathentry kind="src" path="src/main/resources"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="output" path="bin"/>
|
||||
</classpath>
|
||||
17
190_jtidy_xowa/.project
Normal file
17
190_jtidy_xowa/.project
Normal file
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>jtidy</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
53
190_jtidy_xowa/LICENSE.txt
Normal file
53
190_jtidy_xowa/LICENSE.txt
Normal file
@@ -0,0 +1,53 @@
|
||||
/**
|
||||
* Java HTML Tidy - JTidy
|
||||
* HTML parser and pretty printer
|
||||
*
|
||||
* Copyright (c) 1998-2000 World Wide Web Consortium (Massachusetts
|
||||
* Institute of Technology, Institut National de Recherche en
|
||||
* Informatique et en Automatique, Keio University). All Rights
|
||||
* Reserved.
|
||||
*
|
||||
* Contributing Author(s):
|
||||
*
|
||||
* Dave Raggett <dsr@w3.org>
|
||||
* Andy Quick <ac.quick@sympatico.ca> (translation to Java)
|
||||
* Gary L Peskin <garyp@firstech.com> (Java development)
|
||||
* Sami Lempinen <sami@lempinen.net> (release management)
|
||||
* Fabrizio Giustina <fgiust at users.sourceforge.net>
|
||||
*
|
||||
* The contributing author(s) would like to thank all those who
|
||||
* helped with testing, bug fixes, and patience. This wouldn't
|
||||
* have been possible without all of you.
|
||||
*
|
||||
* COPYRIGHT NOTICE:
|
||||
*
|
||||
* This software and documentation is provided "as is," and
|
||||
* the copyright holders and contributing author(s) make no
|
||||
* representations or warranties, express or implied, including
|
||||
* but not limited to, warranties of merchantability or fitness
|
||||
* for any particular purpose or that the use of the software or
|
||||
* documentation will not infringe any third party patents,
|
||||
* copyrights, trademarks or other rights.
|
||||
*
|
||||
* The copyright holders and contributing author(s) will not be
|
||||
* liable for any direct, indirect, special or consequential damages
|
||||
* arising out of any use of the software or documentation, even if
|
||||
* advised of the possibility of such damage.
|
||||
*
|
||||
* Permission is hereby granted to use, copy, modify, and distribute
|
||||
* this source code, or portions hereof, documentation and executables,
|
||||
* for any purpose, without fee, subject to the following restrictions:
|
||||
*
|
||||
* 1. The origin of this source code must not be misrepresented.
|
||||
* 2. Altered versions must be plainly marked as such and must
|
||||
* not be misrepresented as being the original source.
|
||||
* 3. This Copyright notice may not be removed or altered from any
|
||||
* source or altered source distribution.
|
||||
*
|
||||
* The copyright holders and contributing author(s) specifically
|
||||
* permit, without fee, and encourage the use of this source code
|
||||
* as a component for supporting the Hypertext Markup Language in
|
||||
* commercial products. If you use this source code in a product,
|
||||
* acknowledgment is not required but would be appreciated.
|
||||
*
|
||||
*/
|
||||
13
190_jtidy_xowa/README.md
Normal file
13
190_jtidy_xowa/README.md
Normal file
@@ -0,0 +1,13 @@
|
||||
jtidy_xowa
|
||||
==========
|
||||
|
||||
jtidy_xowa is a fork of http://jtidy.sourceforge.net. It is intended to closely emulate tidy (http://tidy.sourceforge.net). for XOWA: an offline Wikipedia application.
|
||||
|
||||
Here are some examples of fixes / changes:
|
||||
|
||||
* JTidy always converts "<hr/>" to "<br><br>".
|
||||
* JTidy indents content inside a textarea when setIndentContent is true
|
||||
* JTidy sometimes behaves strangely for setEncloseBlockText
|
||||
* JTidy leaks memory when called repeatedly (In XOWA's case, jtidy_xowa now runs through 5.5 million pages without running out of memory)
|
||||
|
||||
In total, there are approximately 150+ changes to JTidy.
|
||||
3
190_jtidy_xowa/bin/jtidy.properties
Normal file
3
190_jtidy_xowa/bin/jtidy.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
# to be updated with every release
|
||||
version = r938
|
||||
date = 2009-12-01
|
||||
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Anchor.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Anchor.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttVal.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttVal.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheck.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheck.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckAlign.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckAlign.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckBool.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckBool.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckClear.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckClear.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckColor.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckColor.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckFsubmit.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckFsubmit.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckId.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckId.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckLang.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckLang.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckLength.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckLength.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckName.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckName.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckNumber.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckNumber.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckScope.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckScope.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckScript.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckScript.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckScroll.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckScroll.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckShape.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckShape.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckTarget.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckTarget.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckTextDir.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckTextDir.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckUrl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckUrl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckVType.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckVType.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckValign.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl$CheckValign.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttrCheckImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Attribute.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Attribute.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttributeTable.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/AttributeTable.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Clean.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Clean.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Configuration$Flag.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Configuration$Flag.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Configuration.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Configuration.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMAttrImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMAttrImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMAttrMapImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMAttrMapImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMCDATASectionImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMCDATASectionImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMCharacterDataImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMCharacterDataImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMCommentImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMCommentImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMDocumentImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMDocumentImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMDocumentTypeImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMDocumentTypeImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMElementImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMElementImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMNodeImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMNodeImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMNodeListByTagNameImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMNodeListByTagNameImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMNodeListImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMNodeListImpl.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMTextImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/DOMTextImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Dict.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Dict.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingNameMapper.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingNameMapper.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingUtils$GetBytes.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingUtils$GetBytes.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingUtils$PutBytes.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingUtils$PutBytes.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingUtils.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EncodingUtils.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Entity.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Entity.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EntityTable.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/EntityTable.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/IStack.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/IStack.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Lexer$W3CVersionInfo.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Lexer$W3CVersionInfo.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Lexer.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Lexer.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Node.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Node.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Out.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Out.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/OutFactory.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/OutFactory.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/OutJavaImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/OutJavaImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/PPrint.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/PPrint.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParseProperty.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParseProperty.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParsePropertyImpl$ParseInt.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParsePropertyImpl$ParseInt.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParsePropertyImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParsePropertyImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Parser.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Parser.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseBlock.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseBlock.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseBody.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseBody.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseColGroup.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseColGroup.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseDefList.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseDefList.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseEmpty.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseEmpty.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseFrameSet.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseFrameSet.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseHTML.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseHTML.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseHead.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseHead.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseInline.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseInline.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseList.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseList.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseNoFrames.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseNoFrames.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseOptGroup.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseOptGroup.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParsePre.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParsePre.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseRow.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseRow.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseRowGroup.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseRowGroup.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseScript.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseScript.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseSelect.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseSelect.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseTableTag.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseTableTag.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseText.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseText.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseTitle.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl$ParseTitle.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/ParserImpl.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Report.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/Report.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/StreamIn.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/StreamIn.class
Normal file
Binary file not shown.
BIN
190_jtidy_xowa/bin/org/w3c/tidy/StreamInFactory.class
Normal file
BIN
190_jtidy_xowa/bin/org/w3c/tidy/StreamInFactory.class
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user