]> git.mxchange.org Git - quix0rs-gnu-social.git/commit - plugins/FeedSub/extlib/XML/Feed/Parser.php
Initial functional version of feed subscription plugin, currently supporting only...
authorBrion Vibber <brion@pobox.com>
Fri, 20 Nov 2009 04:55:38 +0000 (20:55 -0800)
committerBrion Vibber <brion@pobox.com>
Fri, 20 Nov 2009 05:04:21 +0000 (21:04 -0800)
commitdd36c2de23dbdb30f333be1f9d5292d62363b0c8
tree89eae38f77e74b51478cc2ec0c13a0ac249d75ba
parentdc90e90fd2748f953a2d4750105817b41cafe43a
Initial functional version of feed subscription plugin, currently supporting only PuSH-enabled feeds.
51 files changed:
db/08to09_pg.sql
db/statusnet_pg.sql
plugins/FeedSub/FeedSubPlugin.php [new file with mode: 0644]
plugins/FeedSub/README [new file with mode: 0644]
plugins/FeedSub/actions/feedsubcallback.php [new file with mode: 0644]
plugins/FeedSub/actions/feedsubsettings.php [new file with mode: 0644]
plugins/FeedSub/extlib/README [new file with mode: 0644]
plugins/FeedSub/extlib/XML/Feed/Parser.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/Atom.php [new file with mode: 0644]
plugins/FeedSub/extlib/XML/Feed/Parser/AtomElement.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/Exception.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS09.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS09Element.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS1.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS11.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS11Element.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS1Element.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS2.php [new file with mode: 0644]
plugins/FeedSub/extlib/XML/Feed/Parser/RSS2Element.php [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/Parser/Type.php [new file with mode: 0644]
plugins/FeedSub/extlib/XML/Feed/samples/atom10-entryonly.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/atom10-example1.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/atom10-example2.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/delicious.feed [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/flickr.feed [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/grwifi-atom.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/hoder.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/illformed_atom10.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/rss091-complete.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/rss091-international.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/rss091-simple.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/rss092-sample.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/rss10-example1.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/rss10-example2.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/rss2sample.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/sixapart-jp.xml [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/samples/technorati.feed [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/schemas/atom.rnc [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/schemas/rss10.rnc [new file with mode: 0755]
plugins/FeedSub/extlib/XML/Feed/schemas/rss11.rnc [new file with mode: 0755]
plugins/FeedSub/extlib/xml-feed-parser-bug-16416.patch [new file with mode: 0644]
plugins/FeedSub/feeddiscovery.php [new file with mode: 0644]
plugins/FeedSub/feedinfo.php [new file with mode: 0644]
plugins/FeedSub/feedinfo.sql [new file with mode: 0644]
plugins/FeedSub/feedmunger.php [new file with mode: 0644]
plugins/FeedSub/images/24px-Feed-icon.svg.png [new file with mode: 0644]
plugins/FeedSub/images/48px-Feed-icon.svg.png [new file with mode: 0644]
plugins/FeedSub/images/96px-Feed-icon.svg.png [new file with mode: 0644]
plugins/FeedSub/images/README [new file with mode: 0644]
plugins/FeedSub/tests/FeedDiscoveryTest.php [new file with mode: 0644]
plugins/FeedSub/tests/FeedMungerTest.php [new file with mode: 0644]