forked from blallo/rss-bridge
3f64d2d65a
The specific content filtering used in these bridges will need to be reintegrated later as part of the bridge or as part of the WordPressBridge if they are considered generic enough filters, such as the already existing WordPressBridge <script> removal filter. Signed-off-by: Pierre Mazière <pierre.maziere@gmx.com>
11 lines
348 B
PHP
11 lines
348 B
PHP
<?php
|
|
require_once('WordPressBridge.php');
|
|
|
|
class ArstechnicaBridge extends WordPressBridge {
|
|
|
|
const MAINTAINER = "prysme";
|
|
const NAME = "ArstechnicaBridge";
|
|
const URI = "http://arstechnica.com";
|
|
const DESCRIPTION = "The PC enthusiast's resource. Power users and the tools they love, without computing religion";
|
|
const PARAMETERS = array();
|
|
}
|