├── .gitignore ├── LICENSE ├── README.md ├── cache ├── feeds │ └── feed.xml └── logs │ ├── index.php │ ├── requests │ └── request.log │ ├── styles.css │ ├── updateReport.php │ └── updates │ └── update.log ├── documentation.pdf ├── index.html ├── lib ├── feed.js └── loading_50.gif ├── service ├── RSS.php ├── RSSget.php ├── atom2rss.php ├── atom2rss.xsl ├── config.php ├── cron.php ├── feedIndex.php └── get_fcontent.php └── test.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/README.md -------------------------------------------------------------------------------- /cache/feeds/feed.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/logs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/cache/logs/index.php -------------------------------------------------------------------------------- /cache/logs/requests/request.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cache/logs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/cache/logs/styles.css -------------------------------------------------------------------------------- /cache/logs/updateReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/cache/logs/updateReport.php -------------------------------------------------------------------------------- /cache/logs/updates/update.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/documentation.pdf -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/index.html -------------------------------------------------------------------------------- /lib/feed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/lib/feed.js -------------------------------------------------------------------------------- /lib/loading_50.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/lib/loading_50.gif -------------------------------------------------------------------------------- /service/RSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/RSS.php -------------------------------------------------------------------------------- /service/RSSget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/RSSget.php -------------------------------------------------------------------------------- /service/atom2rss.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/atom2rss.php -------------------------------------------------------------------------------- /service/atom2rss.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/atom2rss.xsl -------------------------------------------------------------------------------- /service/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/config.php -------------------------------------------------------------------------------- /service/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/cron.php -------------------------------------------------------------------------------- /service/feedIndex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/feedIndex.php -------------------------------------------------------------------------------- /service/get_fcontent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/service/get_fcontent.php -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fberrizbeitia/RSS-API/HEAD/test.php --------------------------------------------------------------------------------