Find a file
LogMANOriginal bf9946d1fc
CSS adjustments to improve readability for bridge parameters (#763)
* Group common selectors
* Fix indentation using tabs
* Use same styles for number and text inputs
* Use grid layout for parameters

Introduces the grid layout for bridge parameters. All parameters are
arranged in a grid to improve readability. Read more on grid layouts
at

- https://www.w3schools.com/css/css_grid.asp
- https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout

Notice:

Grid layouts are not supported in very old browser versions:
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Grid_Layout/CSS_Grid_and_Progressive_Enhancement

This is why @supports checks for browser support (not supported in IE)
https://developer.mozilla.org/en-US/docs/Web/CSS/@supports#Browser_compatibility

In case grid layout is not supported, the displayed form is usable
but not very pretty due to <br> being removed by this commit for
cosmetic reasons (breaks grid layout).

Unfortunately it doesn't seem possible to insert line breaks manually
via '::after { content: '\A' }' in cases where grid layout isn't
supported.

* Add padding to card parameters

Adds padding to parameters to improve readability. For bridges without
parameters (count($parameters) === 0), the parameter 'div' is no longer
created.

* Add colon ':' after label via CSS
* Capitalize first letter of label for readability
* Fix checkbox isn't aligned left

Sets the size of the checkbox to 20x20 px for good measure.

* Harmonize formatting
* Add new style to number and select boxes

References #797

* Add fallback solution for browsers without grid support
2018-09-15 16:39:50 +02:00
bridges [FB2Bridge] Prevent Facebook link href's ending in two quotes (#831) 2018-09-15 15:16:15 +02:00
cache PHP settings 2016-11-05 21:33:31 +01:00
caches [FileCache] reseting cached file stat result to have correct getTime() result (#792) 2018-08-25 20:00:51 +01:00
formats [MrssFormat] Escape double quotes in XML attributes (#813) 2018-09-15 14:13:05 +02:00
lib CSS adjustments to improve readability for bridge parameters (#763) 2018-09-15 16:39:50 +02:00
static CSS adjustments to improve readability for bridge parameters (#763) 2018-09-15 16:39:50 +02:00
tests tests: reuse RssBridge.php instead of implementing a custom solution 2018-08-10 15:33:32 +02:00
vendor [core] Add urljoin (#756) 2018-08-02 06:31:56 +02:00
.dockerignore Add dockerfile to create an official docker image (#720) 2018-06-23 16:51:48 +02:00
.gitattributes First commit 2013-08-06 23:57:22 +02:00
.gitignore Add user config (#653) 2018-05-29 11:52:17 +02:00
.travis.yml [tests] Add unit test for bridge implementation 2018-08-09 17:04:16 +02:00
CHANGELOG.md [CHANGELOG] Add 2017-08-19 2017-08-19 21:08:44 +02:00
config.default.ini.php Add basic authentication support (#728) 2018-06-27 19:09:41 +02:00
CONTRIBUTING.md Add contribution guidelines. 2017-03-07 11:46:54 +00:00
Dockerfile Add dockerfile to create an official docker image (#720) 2018-06-23 16:51:48 +02:00
index.php Catching up | [Main] Debug mode, parse utils, MIME | [Bridges] Add/Improve 20 bridges (#802) 2018-09-09 20:20:13 +01:00
phpcs.xml [phpcs] enforce single quotes (#732) 2018-06-29 22:55:33 +01:00
phpunit.xml [tests] Add unit test for bridge implementation 2018-08-09 17:04:16 +02:00
README.md [README] Add a "Deploy to Cloud" button for Docker 2018-08-21 18:40:39 +02:00
scalingo.json Typo 2016-08-02 23:37:01 +02:00
UNLICENSE let's unlicense ! 2014-05-21 20:11:01 +02:00

rss-bridge

LICENSE GitHub release Build Status Docker Build Status

rss-bridge is a PHP project capable of generating ATOM feeds for websites which don't have one.

Supported sites/pages (main)

  • Bandcamp : Returns last release from bandcamp for a tag
  • Cryptome : Returns the most recent documents from Cryptome.org
  • DansTonChat: Most recent quotes from danstonchat.com
  • DuckDuckGo: Most recent results from DuckDuckGo.com
  • Facebook : Returns the latest posts on a page or profile on Facebook
  • FlickrExplore : Latest interesting images from Flickr
  • GooglePlus : Most recent posts of user timeline
  • GoogleSearch : Most recent results from Google Search
  • Identi.ca : Identica user timeline (Should be compatible with other Pump.io instances)
  • Instagram: Most recent photos from an Instagram user
  • OpenClassrooms: Lastest tutorials from fr.openclassrooms.com
  • Pinterest: Most recent photos from user or search
  • ScmbBridge: Newest stories from secouchermoinsbete.fr
  • ThePirateBay : Returns the newest indexed torrents from The Pirate Bay with keywords
  • Twitter : Return keyword/hashtag search or user timeline
  • Wikipedia: highlighted articles from Wikipedia in English, German, French or Esperanto
  • YouTube : YouTube user channel, playlist or search

Plus many other bridges to enable, thanks to the community

Output format

Output format can take several forms:

  • Atom : ATOM Feed, for use in RSS/Feed readers
  • Html : Simple html page.
  • Json : Json, for consumption by other applications.
  • Mrss : MRSS Feed, for use in RSS/Feed readers
  • Plaintext : raw text (php object, as returned by print_r)

Screenshot

Welcome screen:

Screenshot

RSS-Bridge hashtag (#rss-bridge) search on Twitter, in ATOM format (as displayed by Firefox):

Screenshot

Requirements

  • PHP 5.6, e.g. AddHandler application/x-httpd-php56 .php in .htaccess
  • openssl extension enabled in PHP config (php.ini)
  • curl extension enabled in PHP config (php.ini)

Enabling/Disabling bridges

By default, the script creates whitelist.txt and adds the main bridges (see above). whitelist.txt is ignored by git, you can edit it:

  • to enable extra bridges (one bridge per line)
  • to disable main bridges (remove the line)
  • to enable all bridges (just one wildcard * as file content)

New bridges are disabled by default, so make sure to check regularly what's new and whitelist what you want!

Deploy

Deploy on Scalingo Deploy to Docker Cloud

Authors

We are RSS Bridge Community, a group of developers continuing the project initiated by sebsauvage, webmaster of sebsauvage.net, author of Shaarli and ZeroBin.

Patch/contributors :

Licenses

Code is Public Domain.

Including PHP Simple HTML DOM Parser under the MIT License

Technical notes

  • There is a cache so that source services won't ban you even if you hammer the rss-bridge with requests. Each bridge can have a different duration for the cache. The cache subdirectory will be automatically created and cached objects older than 24 hours get purged.
  • To implement a new Bridge, follow the specifications and take a look at existing Bridges for examples.
  • To enable debug mode (disabling cache and enabling error reporting), create an empty file named DEBUG in the root directory (next to index.php).
  • For more information refer to the Wiki

Rant

Dear so-called "social" websites.

Your catchword is "share", but you don't want us to share. You want to keep us within your walled gardens. That's why you've been removing RSS links from webpages, hiding them deep on your website, or removed feeds entirely, replacing it with crippled or demented proprietary API. FUCK YOU.

You're not social when you hamper sharing by removing feeds. You're happy to have customers creating content for your ecosystem, but you don't want this content out - a content you do not even own. Google Takeout is just a gimmick. We want our data to flow, we want RSS or ATOM feeds.

We want to share with friends, using open protocols: RSS, ATOM, XMPP, whatever. Because no one wants to have your service with your applications using your API force-feeding them. Friends must be free to choose whatever software and service they want.

We are rebuilding bridges you have wilfully destroyed.

Get your shit together: Put RSS/ATOM back in.