gitextract_1gv9702v/ ├── README.md ├── README.txt ├── UPDATING.txt ├── admin/ │ ├── apc.php │ ├── codemirror/ │ │ ├── codemirror.css │ │ ├── codemirror.js │ │ └── properties.js │ ├── edit-pattern.php │ ├── index.php │ ├── login.php │ ├── require_login.php │ ├── template.php │ └── update.php ├── cache/ │ ├── index.php │ ├── rss/ │ │ └── index.php │ └── urls/ │ └── index.php ├── changelog.txt ├── cleancache.php ├── config.php ├── css/ │ ├── feed.css │ └── feed.xsl ├── custom_config.php.demo ├── ftr_compatibility_test.php ├── index.php ├── js/ │ ├── bootstrap-popover.js │ ├── bootstrap-tab.js │ └── bootstrap-tooltip.js ├── libraries/ │ ├── Zend/ │ │ ├── Cache/ │ │ │ ├── Backend/ │ │ │ │ ├── ExtendedInterface.php │ │ │ │ ├── File.php │ │ │ │ └── Interface.php │ │ │ ├── Backend.php │ │ │ ├── Core.php │ │ │ └── Exception.php │ │ ├── Cache.php │ │ └── Exception.php │ ├── content-extractor/ │ │ ├── ContentExtractor.php │ │ └── SiteConfig.php │ ├── feedwriter/ │ │ ├── FeedItem.php │ │ └── FeedWriter.php │ ├── htmLawed/ │ │ └── htmLawed2.php │ ├── html5/ │ │ ├── Data.php │ │ ├── InputStream.php │ │ ├── Parser.php │ │ ├── Tokenizer.php │ │ ├── TreeBuilder.php │ │ └── named-character-references.ser │ ├── humble-http-agent/ │ │ ├── CookieJar.php │ │ ├── HumbleHttpAgent.php │ │ ├── RollingCurl.php │ │ └── SimplePie_HumbleHttpAgent.php │ ├── language-detect/ │ │ ├── LanguageDetect/ │ │ │ ├── Exception.php │ │ │ ├── ISO639.php │ │ │ └── Parser.php │ │ └── LanguageDetect.php │ ├── readability/ │ │ ├── ImageCaching.php │ │ ├── JSLikeHTMLElement.php │ │ └── Readability.php │ └── simplepie/ │ ├── LICENSE.txt │ ├── autoloader.php │ └── library/ │ ├── SimplePie/ │ │ ├── Author.php │ │ ├── Cache/ │ │ │ ├── Base.php │ │ │ ├── DB.php │ │ │ ├── File.php │ │ │ ├── Memcache.php │ │ │ └── MySQL.php │ │ ├── Cache.php │ │ ├── Caption.php │ │ ├── Category.php │ │ ├── Content/ │ │ │ └── Type/ │ │ │ └── Sniffer.php │ │ ├── Copyright.php │ │ ├── Core.php │ │ ├── Credit.php │ │ ├── Decode/ │ │ │ └── HTML/ │ │ │ └── Entities.php │ │ ├── Enclosure.php │ │ ├── Exception.php │ │ ├── File.php │ │ ├── HTTP/ │ │ │ └── Parser.php │ │ ├── IRI.php │ │ ├── Item.php │ │ ├── Locator.php │ │ ├── Misc.php │ │ ├── Net/ │ │ │ └── IPv6.php │ │ ├── Parse/ │ │ │ └── Date.php │ │ ├── Parser.php │ │ ├── Rating.php │ │ ├── Registry.php │ │ ├── Restriction.php │ │ ├── Sanitize.php │ │ ├── Source.php │ │ ├── XML/ │ │ │ └── Declaration/ │ │ │ └── Parser.php │ │ └── gzdecode.php │ └── SimplePie.php ├── license.txt ├── makefulltextfeed.php ├── manifest.yml └── site_config/ ├── README.txt ├── custom/ │ └── index.php ├── index.php └── standard/ ├── .wikipedia.org.txt └── version.txt