-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add AnimeUltime, CNET, LeMondeInformatique, Silicon, 3DSDB, T411 #161
Conversation
Add AnimeUltime, CNET, LeMondeInformatique, Silicon, 3DSDB, T411
} | ||
|
||
//Retrieve torrent listing as truncated rss, which does not contain torrent description | ||
$url = 'http://www.t411.in/torrents/rss/?'.$param['search'].'&order=added&type=desc'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sadly, &order=added&type=desc
aren't used by t411 for their RSS. So you can a kind of random results which aren't sort by most recent torrents :(
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some investigation, it seems like their RSS feed feature only works properly for recent content. Eg if I search for ubuntu
, the most recent item is 5 months old, and rss feed for that search does not match, displaying first an item published in 2011. However, if I search for, let's say, some popular category like the movie
category, I get the same exact results from the search results and the rss feed, with some content added about 1 hour ago. That should explain why I never saw the issue you encountered while developping this bridge, because I tested search queries giving out some recent content.
- Update parser to version 1.7 https://sourceforge.net/projects/simplehtmldom/files/simplehtmldom/1.7/ References #959 -------------------- CHANGELOG -------------------- - Added code documentation to improve readability - Added unit tests for `simple_html_dom::$self_closing_tags` - Added unit tests for `simple_html_dom::$optional_closing_tags` - Added unit tests for bug reports - Added test for bug [#56](https://sourceforge.net/p/simplehtmldom/bugs/56/) - Added test for bug [#97](https://sourceforge.net/p/simplehtmldom/bugs/97/) - Added test for bug [#116](https://sourceforge.net/p/simplehtmldom/bugs/116/) - Added test for bug [#121](https://sourceforge.net/p/simplehtmldom/bugs/127/) - Added test for bug [#127](https://sourceforge.net/p/simplehtmldom/bugs/127/) - Added test for bug [#154](https://sourceforge.net/p/simplehtmldom/bugs/154/) - Added test for bug [#160](https://sourceforge.net/p/simplehtmldom/bugs/160/) - Added unit tests for memory management of the parser - Added bit flags to `simple_html_dom::load()` - Added bit flag `HDOM_SMARTY_AS_TEXT` to optionally filter Smarty scripts (#154)\ **Note**: Smarty scripts are no longer filtered by default!\ - Added build script to automate releases - Added support for attributes without whitespace to separate them - Improved documentation and readability for `$self_closing_tags` - Improved documentation and readability for `$block_tags` - Improved documentation and readability for `$optional_closing_tags` - Updated list of `simple_html_dom::$self_closing_tags` - Removed 'spacer' (obsolete) - Added 'area' - Added 'col' - Added 'meta' - Added 'param' - Added 'source' - Added 'track' - Added 'wbr' - Updated list of `simple_html_dom::$optional_closing_tags` - Removed "nobr" (obsolete) - Added 'th' as closable element to 'td' - Added 'td' as closable element to 'th' - Added 'optgroup' with 'optgroup' and 'option' as closable elements - Added 'optgroup' as closable element to 'option' - Added 'rp' with 'rp' and 'rt' as closable elements - Added 'rt' with 'rt' and 'rp' as closable elements - Clarified meaning of `simple_html_dom->parent` - Changed default `$offset` for `file_get_html()` from -1 to 0 (#161) - Changed `simple_html_dom::load()` to remove script tags before replacing newline characters - `simple_html_dom_node::text()` no longer adds whitespace to top level span elements (only to sub-elements) - `simple_html_dom_node::text()` adds blank lines between paragraphs - Normalized line endings in the repository to LF via `.gitattributes` - Improved performance of `simple_html_dom::parse_charset()` by approximately 25% - Improved performance of `simple_html_dom::parse()` by approximately 10% - `str_get_html()` is deprecated and should be replaced by `new simple_html_dom()` - Removed protected function `simple_html_dom::copy_until_char_escaped()` - Fixed compatibility issues with PHP 7.3 - Fixed typo (#147) - Fixed handling of incorrectly escaped text (#160) - Restore functionality of `$maxLen` in `file_get_html()` - Fixed load_file breaks if an error ocurred in another script
- Update parser to version 1.7 https://sourceforge.net/projects/simplehtmldom/files/simplehtmldom/1.7/ References RSS-Bridge#959 -------------------- CHANGELOG -------------------- - Added code documentation to improve readability - Added unit tests for `simple_html_dom::$self_closing_tags` - Added unit tests for `simple_html_dom::$optional_closing_tags` - Added unit tests for bug reports - Added test for bug [RSS-Bridge#56](https://sourceforge.net/p/simplehtmldom/bugs/56/) - Added test for bug [RSS-Bridge#97](https://sourceforge.net/p/simplehtmldom/bugs/97/) - Added test for bug [RSS-Bridge#116](https://sourceforge.net/p/simplehtmldom/bugs/116/) - Added test for bug [RSS-Bridge#121](https://sourceforge.net/p/simplehtmldom/bugs/127/) - Added test for bug [RSS-Bridge#127](https://sourceforge.net/p/simplehtmldom/bugs/127/) - Added test for bug [RSS-Bridge#154](https://sourceforge.net/p/simplehtmldom/bugs/154/) - Added test for bug [RSS-Bridge#160](https://sourceforge.net/p/simplehtmldom/bugs/160/) - Added unit tests for memory management of the parser - Added bit flags to `simple_html_dom::load()` - Added bit flag `HDOM_SMARTY_AS_TEXT` to optionally filter Smarty scripts (RSS-Bridge#154)\ **Note**: Smarty scripts are no longer filtered by default!\ - Added build script to automate releases - Added support for attributes without whitespace to separate them - Improved documentation and readability for `$self_closing_tags` - Improved documentation and readability for `$block_tags` - Improved documentation and readability for `$optional_closing_tags` - Updated list of `simple_html_dom::$self_closing_tags` - Removed 'spacer' (obsolete) - Added 'area' - Added 'col' - Added 'meta' - Added 'param' - Added 'source' - Added 'track' - Added 'wbr' - Updated list of `simple_html_dom::$optional_closing_tags` - Removed "nobr" (obsolete) - Added 'th' as closable element to 'td' - Added 'td' as closable element to 'th' - Added 'optgroup' with 'optgroup' and 'option' as closable elements - Added 'optgroup' as closable element to 'option' - Added 'rp' with 'rp' and 'rt' as closable elements - Added 'rt' with 'rt' and 'rp' as closable elements - Clarified meaning of `simple_html_dom->parent` - Changed default `$offset` for `file_get_html()` from -1 to 0 (RSS-Bridge#161) - Changed `simple_html_dom::load()` to remove script tags before replacing newline characters - `simple_html_dom_node::text()` no longer adds whitespace to top level span elements (only to sub-elements) - `simple_html_dom_node::text()` adds blank lines between paragraphs - Normalized line endings in the repository to LF via `.gitattributes` - Improved performance of `simple_html_dom::parse_charset()` by approximately 25% - Improved performance of `simple_html_dom::parse()` by approximately 10% - `str_get_html()` is deprecated and should be replaced by `new simple_html_dom()` - Removed protected function `simple_html_dom::copy_until_char_escaped()` - Fixed compatibility issues with PHP 7.3 - Fixed typo (RSS-Bridge#147) - Fixed handling of incorrectly escaped text (RSS-Bridge#160) - Restore functionality of `$maxLen` in `file_get_html()` - Fixed load_file breaks if an error ocurred in another script
Added the following new bridges:
AnimeUltime
: French unlicensed anime archive - http://anime-ultime.net/CNET News
: Tech news network - http://www.cnet.com/Le Monde Informatique
: French IT news - http://www.lemondeinformatique.fr/Silicon News
: French IT news - http://www.silicon.fr/Releases3DS
: 3DS Scene releases database - http://www.3dsdb.com/T411
: French file sharing community - http://t411.in/They have been tested on my own
rss-bridge
setup and should work properly for anyone :)