Search found 38 matches

by jocke
March 10th, 2014, 10:48 pm
Forum: Post-Processing Scripts
Topic: [Windows] PushOver Notifications
Replies: 8
Views: 13270

Re: [Windows] PushOver Notifications

I don't see the problem with not implementing this when they let the users create their own apps that get their own API-key. SABnzbd would not need to pay Pushover anything at all. If a user has more than 7500 pushes from SABnzbd, they can personally purchase more pushes.
by jocke
July 27th, 2013, 8:03 pm
Forum: Third-party Addons
Topic: Just4Today Decrypter
Replies: 4
Views: 10411

Re: Just4Today Decrypter

So, dragging up this old thread a bit, but thought this could be of use for other people as well. I've made a really simple bash-script that fetches the username & password for Just4Today, and updates the server in SABnzbd via the API (and hence, no restart of SABnzbd is needed). Simply run it o...
by jocke
January 1st, 2012, 6:22 pm
Forum: Bug Reports
Topic: [0.6.14] Regex not working?
Replies: 6
Views: 3078

Re: [0.6.14] Regex not working?

shypike wrote:You should remove the space between re: and the actual expression.
The space won't ever match.
So:
re:.*(720|1080)[pP].*

I'll strip this space in the next release, because it should never be used anyway, but \s instead.
Ahhh. This explains a lot (-:

Thanks.
by jocke
December 29th, 2011, 2:37 pm
Forum: Bug Reports
Topic: [0.6.14] Regex not working?
Replies: 6
Views: 3078

Re: [0.6.14] Regex not working?

Even Python behaves as expected (both re.search and re.match); jocke@omg:~$ python -c "import re;movie=re.search('.*(720|1080)[pP].*','Austin.Powers.The.Spy.Who.Shagged.Me.1999.1080p.BluRay.x264.iNT-WPi');print movie.group(0);" Austin.Powers.The.Spy.Who.Shagged.Me.1999.1080p.BluRay.x264.iN...
by jocke
December 29th, 2011, 2:03 pm
Forum: Bug Reports
Topic: [0.6.14] Regex not working?
Replies: 6
Views: 3078

Re: [0.6.14] Regex not working?

That's not the way regexes work. When you use ".*bla" the "bla" part will not be explicitly matched, because ".*" eats all. In fact the ".*" is not needed at all because a regex tries to find a pattern within a larger string. You don't need to specify the par...
by jocke
December 28th, 2011, 6:01 pm
Forum: Bug Reports
Topic: [0.6.14] Regex not working?
Replies: 6
Views: 3078

Re: [0.6.14] Regex not working?

Hm, doing the following seems to work;

Code: Select all

Change
.*(720|1080)[pP].*

into
re: *(720|1080)[pP]*

The following fails;
re: .*(720|1080)[pP].*
However, ".*" should be valid Python regex, so I'm not entirely sure why it behaves like this...
by jocke
December 28th, 2011, 5:53 pm
Forum: Bug Reports
Topic: [0.6.14] Regex not working?
Replies: 6
Views: 3078

[0.6.14] Regex not working?

(Please feel free to move this to the beta-forums, as described here ; I could not create any new topics there, so...) Anyways. Regexes in the RSS-section doesn't seem to work properly. Given the following filters; 0: Accept: .*[sS]([0-9]{2})[eE]([0-9]{2}).* 1: Accept: .*(720|1080)[pP].* 2: Accept: ...
by jocke
January 21st, 2011, 11:27 pm
Forum: Post-Processing Scripts
Topic: [Linux] Movie-folder-renamer (Bash + Perl)
Replies: 2
Views: 5830

[Linux] Movie-folder-renamer (Bash + Perl)

Hi, This isn't really a post-process script, but I thought I'd share it anyhow. I recently started using CouchPotato together with SABnzbd. When it has downloaded a movie, I've set it to move it + rename it as well, using the following naming-convetion; () Previously I used to just keep the original...
by jocke
January 21st, 2011, 11:13 pm
Forum: Post-Processing Scripts
Topic: [Linux] Cleanup-script (Bash)
Replies: 7
Views: 10391

Re: [Linux] Cleanup-script

I'm not using this post-script anymore, but the following modified script should work just fine even if the folder/filename contain spaces; #!/bin/sh filecount=0 nzbcount=0 sfvcount=0 nfocount=0 subcount=0 idxcount=0 srrcount=0 echo "This cleanup is intended for TV-shows." echo ""...
by jocke
October 17th, 2010, 6:05 pm
Forum: Bug Reports
Topic: [0.5.3] CherryPy MemoryError
Replies: 13
Views: 6602

Re: [0.5.3] CherryPy MemoryError

Are there any specific circumstances that lead to this? Not that I can think of. I haven't been able to reproduce the issue, and it's only happened two times so far. Multiple skins? Just the default ones. Multiple computers accessing the UI? Mainly just one, but some times there are 2 or 3 computer...
by jocke
October 16th, 2010, 10:04 am
Forum: Bug Reports
Topic: [0.5.3] CherryPy MemoryError
Replies: 13
Views: 6602

Re: [0.5.3] CherryPy MemoryError

shypike wrote:Sorry, I lost track.
No problem (-:
Does this issue result in any loss of functionality? Does the UI recover when you just refresh the browser page?
No data-loss or corruption occurs. I have to restart SABnzbd before it goes away.
by jocke
October 15th, 2010, 8:24 pm
Forum: Bug Reports
Topic: [0.5.3] CherryPy MemoryError
Replies: 13
Views: 6602

Re: [0.5.3] CherryPy MemoryError

shypike wrote:Are you using the CherryPy included in SABnzbd's distribution?
Yes. If you see my first post, I'm using Windows.
by jocke
October 15th, 2010, 11:00 am
Forum: Bug Reports
Topic: [0.5.3] CherryPy MemoryError
Replies: 13
Views: 6602

Re: [0.5.3] CherryPy MemoryError

So SABnzbd-upgrades doesn't upgrade CherryPy? Because I'm running SABnzbd 0.5.3, and my CherryPy-version is still 3.2.0.
by jocke
October 15th, 2010, 7:45 am
Forum: Bug Reports
Topic: [0.5.3] CherryPy MemoryError
Replies: 13
Views: 6602

Re: [0.5.3] CherryPy MemoryError

Was the CherryPy-version changed between 0.5.3 and 0.5.4?
by jocke
October 14th, 2010, 4:24 pm
Forum: Bug Reports
Topic: [0.5.3] CherryPy MemoryError
Replies: 13
Views: 6602

Re: [0.5.0 Final] CherryPy MemoryError

It happened again. Exactly the same error. Same CherryPy-version (3.2.0), but this time with SABnzbd+ 0.5.3.