HomeSort by relevance Sort by last modified time
    Searched full:tagsoup (Results 1 - 25 of 49) sorted by null

1 2

  /external/tagsoup/
README.android 1 This is TagSoup 1.2.1, downloaded from http://ccil.org/~cowan/XML/tagsoup/
4 - download tagsoup
6 - cd into the tagsoup directory
11 Updated on Oct 21, 2013 from tagsoup 1.2.
README 0 TagSoup - Just Keep On Truckin'
5 This is the home page of TagSoup, a SAX-compliant parser written in
8 far from short. TagSoup is designed for people who have to process this
11 to even the worst HTML. TagSoup also includes a command-line processor
15 This is also the README file packaged with TagSoup.
17 TagSoup is free and Open Source software. As of version 1.2, it is
23 Warning: TagSoup will not build on stock Java 5.x or 6.x!
26 TagSoup will not build out of the box. You need to retrieve [3]Saxon
29 $ANT_HOME/lib. The Ant build process for TagSoup will then notice that
32 TagSoup 1.2 release
    [all...]
build.xml 2 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
4 // TagSoup is licensed under the Apache License,
9 // TagSoup is distributed in the hope that it will be useful, but
10 // unless required by applicable law or agreed to in writing, TagSoup
16 <project name="tagsoup" default="dist">
62 <param name="version" value="${tagsoup.version}"/>
70 <jar jarfile="${dist}/lib/tagsoup-${tagsoup.version}.jar" basedir="${buildDir}">
72 <attribute name="Version" value="${tagsoup.version}"/>
73 <attribute name="Main-Class" value="org.ccil.cowan.tagsoup.CommandLine"/
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/jaxp/
SAXParserImpl.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
14 package org.ccil.cowan.tagsoup.jaxp;
22 import org.ccil.cowan.tagsoup.Parser;
26 * to allow easier integration of TagSoup with the default JDK
34 final org.ccil.cowan.tagsoup.Parser parser;
39 parser = new org.ccil.cowan.tagsoup.Parser();
JAXPTest.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
14 package org.ccil.cowan.tagsoup.jaxp;
22 * Trivial non-robust test class, to show that TagSoup can be accessed using
42 System.setProperty("javax.xml.parsers.SAXParserFactory", "org.ccil.cowan.tagsoup.jaxp.SAXFactoryImpl");
SAX1ParserAdapter.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
14 package org.ccil.cowan.tagsoup.jaxp;
23 * of basic SAX2 implementation, such as TagSoup.
89 throw new SAXNotSupportedException("TagSoup does not implement setLocale() method");
SAXFactoryImpl.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
14 package org.ccil.cowan.tagsoup.jaxp;
23 * to allow easier integration of TagSoup with the default JDK
36 * this could be changed in future, if TagSoup parser object allowed
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Scanner.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
17 package org.ccil.cowan.tagsoup;
AutoDetector.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
17 package org.ccil.cowan.tagsoup;
HTMLModels.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
23 package org.ccil.cowan.tagsoup;
ScanHandler.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
17 package org.ccil.cowan.tagsoup;
PYXScanner.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
15 // This file is part of TagSoup.
30 package org.ccil.cowan.tagsoup;
CommandLine.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
15 // The TagSoup command line UI
17 package org.ccil.cowan.tagsoup;
29 The stand-alone TagSoup program.
71 System.err.println("TagSoup version 1.2");
104 System.err.print("usage: java -jar tagsoup-*.jar ");
Element.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
14 package org.ccil.cowan.tagsoup;
PYXWriter.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
19 package org.ccil.cowan.tagsoup;
Schema.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
17 package org.ccil.cowan.tagsoup;
ElementType.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
14 package org.ccil.cowan.tagsoup;
  /external/tagsoup/stml/
stml.rnc 1 # This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 # TagSoup is licensed under the Apache License,
8 # TagSoup is distributed in the hope that it will be useful, but
9 # unless required by applicable law or agreed to in writing, TagSoup
15 default namespace = "http://www.ccil.org/~cowan/XML/tagsoup/stml"
stml.xslt 2 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
4 // TagSoup is licensed under the Apache License,
9 // TagSoup is distributed in the hope that it will be useful, but
10 // unless required by applicable law or agreed to in writing, TagSoup
17 xmlns:stml="http://www.ccil.org/~cowan/XML/tagsoup/stml"
  /external/tagsoup/templates/org/ccil/cowan/tagsoup/
HTMLModels.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
23 package org.ccil.cowan.tagsoup;
HTMLSchema.java 1 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 // TagSoup is licensed under the Apache License,
8 // TagSoup is distributed in the hope that it will be useful, but
9 // unless required by applicable law or agreed to in writing, TagSoup
23 package org.ccil.cowan.tagsoup;
  /external/tagsoup/tssl/
tssl-validate.xslt 4 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
6 // TagSoup is licensed under the Apache License,
11 // TagSoup is distributed in the hope that it will be useful, but
12 // unless required by applicable law or agreed to in writing, TagSoup
19 xmlns:tssl="http://www.ccil.org/~cowan/XML/tagsoup/tssl"
tssl-models.xslt 4 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
6 // This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
8 // TagSoup is licensed under the Apache License,
13 // TagSoup is distributed in the hope that it will be useful, but
14 // unless required by applicable law or agreed to in writing, TagSoup
21 xmlns:tssl="http://www.ccil.org/~cowan/XML/tagsoup/tssl"
tssl.rnc 1 # This file is part of TagSoup and is Copyright 2002-2008 by John Cowan.
3 # TagSoup is licensed under the Apache License,
8 # TagSoup is distributed in the hope that it will be useful, but
9 # unless required by applicable law or agreed to in writing, TagSoup
14 default namespace = "http://www.ccil.org/~cowan/XML/tagsoup/tssl"
  /external/doclava/
build.gradle 29 compile project(':tagsoup')

Completed in 412 milliseconds

1 2