├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── article.php ├── choose_edition.php ├── composer.json ├── composer.lock ├── composer.phar ├── image.php ├── image_compressed.php ├── index.php └── php ├── .DS_Store ├── autoloader.php ├── googlenews.php └── library ├── .DS_Store ├── SimplePie.php └── SimplePie ├── Author.php ├── Cache.php ├── Cache ├── Base.php ├── DB.php ├── File.php ├── Memcache.php ├── Memcached.php ├── MySQL.php └── Redis.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 /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/README.md -------------------------------------------------------------------------------- /article.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/article.php -------------------------------------------------------------------------------- /choose_edition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/choose_edition.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/composer.lock -------------------------------------------------------------------------------- /composer.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/composer.phar -------------------------------------------------------------------------------- /image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/image.php -------------------------------------------------------------------------------- /image_compressed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/image_compressed.php -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/index.php -------------------------------------------------------------------------------- /php/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/.DS_Store -------------------------------------------------------------------------------- /php/autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/autoloader.php -------------------------------------------------------------------------------- /php/googlenews.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/googlenews.php -------------------------------------------------------------------------------- /php/library/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/.DS_Store -------------------------------------------------------------------------------- /php/library/SimplePie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie.php -------------------------------------------------------------------------------- /php/library/SimplePie/Author.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Author.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache/Base.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache/DB.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache/File.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache/Memcache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache/Memcache.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache/Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache/Memcached.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache/MySQL.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache/MySQL.php -------------------------------------------------------------------------------- /php/library/SimplePie/Cache/Redis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Cache/Redis.php -------------------------------------------------------------------------------- /php/library/SimplePie/Caption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Caption.php -------------------------------------------------------------------------------- /php/library/SimplePie/Category.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Category.php -------------------------------------------------------------------------------- /php/library/SimplePie/Content/Type/Sniffer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Content/Type/Sniffer.php -------------------------------------------------------------------------------- /php/library/SimplePie/Copyright.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Copyright.php -------------------------------------------------------------------------------- /php/library/SimplePie/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Core.php -------------------------------------------------------------------------------- /php/library/SimplePie/Credit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Credit.php -------------------------------------------------------------------------------- /php/library/SimplePie/Decode/HTML/Entities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Decode/HTML/Entities.php -------------------------------------------------------------------------------- /php/library/SimplePie/Enclosure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Enclosure.php -------------------------------------------------------------------------------- /php/library/SimplePie/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Exception.php -------------------------------------------------------------------------------- /php/library/SimplePie/File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/File.php -------------------------------------------------------------------------------- /php/library/SimplePie/HTTP/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/HTTP/Parser.php -------------------------------------------------------------------------------- /php/library/SimplePie/IRI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/IRI.php -------------------------------------------------------------------------------- /php/library/SimplePie/Item.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Item.php -------------------------------------------------------------------------------- /php/library/SimplePie/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Locator.php -------------------------------------------------------------------------------- /php/library/SimplePie/Misc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Misc.php -------------------------------------------------------------------------------- /php/library/SimplePie/Net/IPv6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Net/IPv6.php -------------------------------------------------------------------------------- /php/library/SimplePie/Parse/Date.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Parse/Date.php -------------------------------------------------------------------------------- /php/library/SimplePie/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Parser.php -------------------------------------------------------------------------------- /php/library/SimplePie/Rating.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Rating.php -------------------------------------------------------------------------------- /php/library/SimplePie/Registry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Registry.php -------------------------------------------------------------------------------- /php/library/SimplePie/Restriction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Restriction.php -------------------------------------------------------------------------------- /php/library/SimplePie/Sanitize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Sanitize.php -------------------------------------------------------------------------------- /php/library/SimplePie/Source.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/Source.php -------------------------------------------------------------------------------- /php/library/SimplePie/XML/Declaration/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/XML/Declaration/Parser.php -------------------------------------------------------------------------------- /php/library/SimplePie/gzdecode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActionRetro/68k-news/HEAD/php/library/SimplePie/gzdecode.php --------------------------------------------------------------------------------