├── README.md ├── all.lisp ├── cl-feedparser.asd ├── feed-sanitizer.lisp ├── handlers.lisp ├── parser.lisp ├── test ├── cl-feedparser-tests.asd ├── data │ ├── 2013-06-28HypocriteReader.rss │ ├── 3q-atom.xml │ ├── alistapart.rss │ ├── arrdem.xml │ ├── binnsblog.rss │ ├── distrijob.xml │ ├── elliotjaystocks.xml │ ├── foolnews_rss091.xml │ ├── guid-mask │ │ ├── archinect.xml │ │ ├── brandon.xml │ │ ├── kmuto.xml │ │ ├── mythics.xml │ │ └── nessus.xml │ ├── hpr_ogg_rss.php │ ├── html5sec.rss │ ├── hydro74.rss │ ├── hypercritical.xml │ ├── ideachampions.rdf │ ├── iphonelife │ ├── jqmobile.rss │ ├── kinlay.xml │ ├── locklin-etx.xml │ ├── lol.xml │ ├── mfarmer-no-cdata.rss │ ├── mit-newcourses │ ├── mit-newcourses-15 │ ├── notes.unwieldy.rss │ ├── ongoing.atom │ ├── push-pub.xml │ ├── samuel-clay.rss │ ├── slashdot-iframes.rss │ ├── statwing-poison.html │ ├── statwing.xml │ ├── substack.rss │ ├── tao.xml │ ├── teche.xml │ ├── testbed.xml │ ├── understandingsociety.xml │ ├── what-if-imgs.atom │ ├── what-if.atom │ ├── xxe-exploit.rss │ └── yayitsrob.rss ├── package.lisp ├── suite.lisp └── tests.lisp ├── time.lisp └── xml-namespaces.lisp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/README.md -------------------------------------------------------------------------------- /all.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/all.lisp -------------------------------------------------------------------------------- /cl-feedparser.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/cl-feedparser.asd -------------------------------------------------------------------------------- /feed-sanitizer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/feed-sanitizer.lisp -------------------------------------------------------------------------------- /handlers.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/handlers.lisp -------------------------------------------------------------------------------- /parser.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/parser.lisp -------------------------------------------------------------------------------- /test/cl-feedparser-tests.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/cl-feedparser-tests.asd -------------------------------------------------------------------------------- /test/data/2013-06-28HypocriteReader.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/2013-06-28HypocriteReader.rss -------------------------------------------------------------------------------- /test/data/3q-atom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/3q-atom.xml -------------------------------------------------------------------------------- /test/data/alistapart.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/alistapart.rss -------------------------------------------------------------------------------- /test/data/arrdem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/arrdem.xml -------------------------------------------------------------------------------- /test/data/binnsblog.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/binnsblog.rss -------------------------------------------------------------------------------- /test/data/distrijob.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/distrijob.xml -------------------------------------------------------------------------------- /test/data/elliotjaystocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/elliotjaystocks.xml -------------------------------------------------------------------------------- /test/data/foolnews_rss091.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/foolnews_rss091.xml -------------------------------------------------------------------------------- /test/data/guid-mask/archinect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/guid-mask/archinect.xml -------------------------------------------------------------------------------- /test/data/guid-mask/brandon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/guid-mask/brandon.xml -------------------------------------------------------------------------------- /test/data/guid-mask/kmuto.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/guid-mask/kmuto.xml -------------------------------------------------------------------------------- /test/data/guid-mask/mythics.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/guid-mask/mythics.xml -------------------------------------------------------------------------------- /test/data/guid-mask/nessus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/guid-mask/nessus.xml -------------------------------------------------------------------------------- /test/data/hpr_ogg_rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/hpr_ogg_rss.php -------------------------------------------------------------------------------- /test/data/html5sec.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/html5sec.rss -------------------------------------------------------------------------------- /test/data/hydro74.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/hydro74.rss -------------------------------------------------------------------------------- /test/data/hypercritical.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/hypercritical.xml -------------------------------------------------------------------------------- /test/data/ideachampions.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/ideachampions.rdf -------------------------------------------------------------------------------- /test/data/iphonelife: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/iphonelife -------------------------------------------------------------------------------- /test/data/jqmobile.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/jqmobile.rss -------------------------------------------------------------------------------- /test/data/kinlay.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/kinlay.xml -------------------------------------------------------------------------------- /test/data/locklin-etx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/locklin-etx.xml -------------------------------------------------------------------------------- /test/data/lol.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/lol.xml -------------------------------------------------------------------------------- /test/data/mfarmer-no-cdata.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/mfarmer-no-cdata.rss -------------------------------------------------------------------------------- /test/data/mit-newcourses: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/mit-newcourses -------------------------------------------------------------------------------- /test/data/mit-newcourses-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/mit-newcourses-15 -------------------------------------------------------------------------------- /test/data/notes.unwieldy.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/notes.unwieldy.rss -------------------------------------------------------------------------------- /test/data/ongoing.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/ongoing.atom -------------------------------------------------------------------------------- /test/data/push-pub.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/push-pub.xml -------------------------------------------------------------------------------- /test/data/samuel-clay.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/samuel-clay.rss -------------------------------------------------------------------------------- /test/data/slashdot-iframes.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/slashdot-iframes.rss -------------------------------------------------------------------------------- /test/data/statwing-poison.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/statwing-poison.html -------------------------------------------------------------------------------- /test/data/statwing.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/statwing.xml -------------------------------------------------------------------------------- /test/data/substack.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/substack.rss -------------------------------------------------------------------------------- /test/data/tao.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/tao.xml -------------------------------------------------------------------------------- /test/data/teche.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/teche.xml -------------------------------------------------------------------------------- /test/data/testbed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/testbed.xml -------------------------------------------------------------------------------- /test/data/understandingsociety.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/understandingsociety.xml -------------------------------------------------------------------------------- /test/data/what-if-imgs.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/what-if-imgs.atom -------------------------------------------------------------------------------- /test/data/what-if.atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/what-if.atom -------------------------------------------------------------------------------- /test/data/xxe-exploit.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/xxe-exploit.rss -------------------------------------------------------------------------------- /test/data/yayitsrob.rss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/data/yayitsrob.rss -------------------------------------------------------------------------------- /test/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/package.lisp -------------------------------------------------------------------------------- /test/suite.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/suite.lisp -------------------------------------------------------------------------------- /test/tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/test/tests.lisp -------------------------------------------------------------------------------- /time.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/time.lisp -------------------------------------------------------------------------------- /xml-namespaces.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ruricolist/cl-feedparser/HEAD/xml-namespaces.lisp --------------------------------------------------------------------------------