2009-05-19 19:32:06 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Validates news (Usenet) as defined by generic RFC 1738
|
|
|
|
*/
|
|
|
|
class HTMLPurifier_URIScheme_news extends HTMLPurifier_URIScheme {
|
|
|
|
|
|
|
|
public $browsable = false;
|
2011-03-28 13:46:24 +02:00
|
|
|
public $may_omit_host = true;
|
2009-05-19 19:32:06 +02:00
|
|
|
|
2011-03-28 13:46:24 +02:00
|
|
|
public function doValidate(&$uri, $config, $context) {
|
2009-05-19 19:32:06 +02:00
|
|
|
$uri->userinfo = null;
|
|
|
|
$uri->host = null;
|
|
|
|
$uri->port = null;
|
|
|
|
$uri->query = null;
|
|
|
|
// typecode check needed on path
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// vim: et sw=4 sts=4
|