
Just a rough example, but I think it would be nice to have.
I just did this again, FYI.pete_h wrote:I just right-clicked on a feed with the intention of manually refreshing it, and accidentally clicked on "Delete feed" instead. I was quite irked.
There needs to be a confirmation dialog before deleting a feed, or, even better, a "restore deleted feed" button in case of accidents.
you can read about patterns for flexrss here: http://dev.deluge-torrent.org/wiki/Plug ... S#Patternsrsgill wrote:Can someone please explain to me in in simple English how to create a filter that will exclude certain matches?
For example, how can I create a filter that matches Lost but not Lost Worlds? Or how can I match Battlestar Galactica but not Battlestar Galactica 720p?
This filter: Battlestar.Galactica.S%sE%e.(?!720p) still matches: Battlestar.Galactica.S04E01.720p.HDTV.X264-DIMENSION.[eztv].torrent
Can a GUI be added to this otherwise excellent plugin to achieve this?
Code: Select all
lost.%s.%e
Code: Select all
battlestar.galactica.%s.%e(?!.*720p)
Code: Select all
battlestar.galactica.%s.%e(?!.*720p|.*AC3)
johnnyg wrote:you can read about patterns for flexrss here: http://dev.deluge-torrent.org/wiki/Plug ... S#Patternsrsgill wrote:Can someone please explain to me in in simple English how to create a filter that will exclude certain matches?
For example, how can I create a filter that matches Lost but not Lost Worlds? Or how can I match Battlestar Galactica but not Battlestar Galactica 720p?
This filter: Battlestar.Galactica.S%sE%e.(?!720p) still matches: Battlestar.Galactica.S04E01.720p.HDTV.X264-DIMENSION.[eztv].torrent
Can a GUI be added to this otherwise excellent plugin to achieve this?
for TV shows, you need to specify the %s (season number) and %e (episode number) for each filter.
so something like:
shouldn't match Lost Worlds in the first place.Code: Select all
lost.%s.%e
as for not matching 720p you were close, you want something like
the .* just means that there can be an arbitary amount of characters between the episode number and the 720p part.Code: Select all
battlestar.galactica.%s.%e(?!.*720p)
note: if you wanted to not match 720p or AC3, you would do the following:
hopefully that all makes sense to youCode: Select all
battlestar.galactica.%s.%e(?!.*720p|.*AC3)
you have to bear in mind that FlexRSS was written as a more advanced and more powerful RSS catcher seeing a simple to use one already existed.
it wasn't until it became more popular did they take out the simpler one.
I'm not sure what's happening with FlexRSS in regards to 0.6, but hopefully there'll be a GUI option to restrict quality.
both of those filters should work.avlex wrote:Hi everyone,
I cant seem to get this plugin working correctly. I am currently trying to make it work with the Tokyotosho RSS Feed (http://tokyotosho.com/rss.php?filter=1) and the feed itself seems to update just fine. However, I entered several filters and it didnt work with any of them. Some examples are:
"\[bss\]_kurenai_-_.*_\[704x400_h264\]" (Generic) for [BSS]_kurenai_-_02_[704x400_h264][51948C67].mkv
"\[AniYoshi\]_Allison_to_Lillia_-_" (Generic) for [AniYoshi]_Allison_to_Lillia_-_02_[08A15001].mkv
I am using Generic filters because the TV Show filter doesnt seem to work without %s and there is no season information and there is a possibility that an episode is reuploaded as a v2 and I'm too lazy to actually put that into the filter too, i dont really need the features of the TV Show filters for this anyway, sice the file names are sufficiantly distinguishable. I also tried to use a conplete regex before but no luck either. Does anyone know how to make this work? I am using Deluge 0.5.8.6 with the included FlexRSS 0.2.3 from the Ubuntu Gutsy package (on Gutsy ofcourse).
Thanks in advance,
Avlex