You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
from couchpotato.core.providers.extension.base import ExtensionBase
|
|
|
|
|
|
class MovieMeter(ExtensionBase):
|
|
|
|
includes = ['http://*.moviemeter.nl/film/*', 'http://moviemeter.nl/film/*']
|
|
|
|
#CouchPotato['moviemeter.nl'] = (function(){
|
|
#
|
|
# function isMovie(){
|
|
# var pattern = /[^/]+\/?$/;
|
|
# var html = document.getElementsByTagName('h1')[0].innerHTML
|
|
# matched = location.href.match(pattern);
|
|
# return null != matched;
|
|
# }
|
|
#
|
|
# function getId(){
|
|
# var pattern = /imdb\.com\/title\/tt(\d+)/;
|
|
# var html = document.getElementsByTagName('html')[0].innerHTML;
|
|
# var imdb_id = html.match(pattern)[1];
|
|
# return imdb_id;
|
|
#
|
|
# }
|
|
#
|
|
# function getYear(){
|
|
# var pattern = /(\d+)[^\d]*$/;
|
|
# var html = document.getElementsByTagName('h1')[0].innerHTML;
|
|
# var year = html.match(pattern)[1];
|
|
# return year;
|
|
#
|
|
# }
|
|
#
|
|
# function constructor(){
|
|
# if(isMovie()){
|
|
# lib.osd(getId(), getYear());
|
|
# }
|
|
# }
|
|
#
|
|
# return constructor;
|
|
#
|
|
#})();
|
|
|