]> git.mxchange.org Git - quix0rs-gnu-social.git/commit
Initial functional version of feed subscription plugin, currently supporting only...
authorBrion Vibber <brion@pobox.com>
Fri, 20 Nov 2009 17:42:19 +0000 (09:42 -0800)
committerBrion Vibber <brion@pobox.com>
Fri, 20 Nov 2009 17:42:19 +0000 (09:42 -0800)
commitb189c9500c3ea5362edfcbf818c2f847b4892da5
tree760ed684d9595b872ec3258ff338c5cf22e27bf0
parentd645db38ae4ff4179f7fc31d4501d48054c4b8e6
Initial functional version of feed subscription plugin, currently supporting only PuSH-enabled feeds.
49 files changed:
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]