split functions php into two parts because syntastic is too slow

get_feeds_from_html: stricter feed detection based on whatwg guidelines
This commit is contained in:
Andrew Dolgov 2014-03-05 16:48:41 +04:00
parent 38e063418d
commit 97b7d5c038
3 changed files with 2411 additions and 2394 deletions

View File

@ -587,6 +587,18 @@ class Handler_Public extends Handler {
}
}
function subtest() {
header("Content-type: text/plain; charset=utf-8");
$url = $_REQUEST["url"];
print "$url\n\n";
print_r(get_feeds_from_html($url, fetch_file_contents($url)));
}
function subscribe() {
if (SINGLE_USER_MODE) {
login_sequence();

File diff suppressed because it is too large Load Diff

2397
include/functions2.php Normal file

File diff suppressed because it is too large Load Diff