Metadata agent suddenly stops working

help to debug plz
Hello, there is "kinopoisk" metadata a agent ([link to github](https://github.com/ptath/plex-kinopoisk/blob/beta/KinoPoisk.bundle/Contents/Code/__init__.py)), it works fine till yesterday.

I fear that this part eventually stops working correctly (dunno why, html of result page seems unchanged):


def search(self, results, media, lang):<br />
   <br />
    normalizedName = media.name.decode('utf-8')<br />
    normalizedName = unicodedata.normalize('NFC', normalizedName)<br />
    normalizedName = String.Quote(normalizedName.encode('cp1251'),True)<br />
    <br />
    page =  self.XMLElementFromURLWithRetries(KINOPOISK_SEARCH % normalizedName)<br />
    if page:<br />
      info_buf = page.xpath(u'//self::div[@class="info"]/p[@class="name"]/a[contains(@href,"/level/1/film/")]/..')



How to display "page" and 'info_buf" in log?

In my case


**self.XMLElementFromURLWithRetries — **


2011-11-25 18:47:11,068 (-4f967000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=avatar' from the HTTP cache



This is right resulting page.

**Log(page) — **


2011-11-25 18:47:11,121 (-4f967000) :  INFO (__init__:59) - <Element html at 12816f8>



How to check entire "page" content? "Print" function not working at all.

**Log(info_buf) — **


2011-11-25 18:47:11,122 (-4f967000) :  INFO (__init__:62) - []



No result and I do not know why =( Plz help me to debug

Hello ptath!

To see the contents of the requested page, you can edit the httpRequest method and temporary output the HTML there:



  def httpRequest(self, url):<br />
    time.sleep(1)<br />
    res = None<br />
    for i in range(5):<br />
      try:<br />
        res = HTTP.Request(url, headers = {'User-agent': UserAgent})<br />
        Log("HTML output:")<br />
        Log(res)<br />
      except:<br />
        Log("Error hitting HTTP url:", url)<br />
        time.sleep(1)<br />
        <br />
    return res




Thanks, but:


2011-11-26 11:33:39,589 (-4f8e5000) :  INFO (agentkit:833) - Searching for matches for {'openSubtitlesHash': '9ed9535745f989b0', 'name': 'Zeitgeist 3', 'filename': '%2FVolumes%2Fmedia%2F%D0%9C%D0%B5%D0%B4%D0%B8%D0%B0%D1%82%D0%B5%D0%BA%D0%B0%2F%D0%92%D0%B8%D0%B4%D0%B5%D0%BE%2F%D0%94%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D0%B0%D0%BB%D1%8C%D0%BD%D0%BE%D0%B5%2FZeitgeist%203%2Eavi', 'plexHash': 'bd9104bce8f423cb82c2195706205c055dfc8a4c', 'duration': '9684000', 'id': '1'}<br />
2011-11-26 11:33:39,590 (-4f8e5000) :  DEBUG (networking:115) - Requesting 'http://127.0.0.1:32400/library/metadata/1/tree'<br />
2011-11-26 11:33:40,627 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,628 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,678 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,680 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,685 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,687 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,694 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,713 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,717 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,721 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,731 (-4f8e5000) :  DEBUG (runtime:678) - Response: 200



Why? =))) Fetched url definitely exists and not empty. There is also some garbage in plugin's log file, I cannot remember this on previous Plex versions. Full log (**all** of this happens when "fix incorrect match"):

[spoiler]

2011-11-26 11:33:38,981 (-53e7ed40) :  DEBUG (core:148) - Starting framework core - Version: 2.1.5.0, Build: 63049bc (Sat Nov 05 00:09:00 UTC 2011)<br />
<br />
2011-11-26 11:33:38,981 (-53e7ed40) :  DEBUG (core:169) - Using the standard security policy<br />
2011-11-26 11:33:38,982 (-53e7ed40) :  DEBUG (core:202) - Starting runtime component.<br />
2011-11-26 11:33:38,997 (-53e7ed40) :  DEBUG (core:204) - Starting caching component.<br />
2011-11-26 11:33:38,997 (-53e7ed40) :  DEBUG (core:206) - Starting data component.<br />
2011-11-26 11:33:38,997 (-53e7ed40) :  DEBUG (core:208) - Starting networking component.<br />
2011-11-26 11:33:38,998 (-53e7ed40) :  DEBUG (networking:392) - Setting the default network timeout to 20.0<br />
2011-11-26 11:33:38,999 (-53e7ed40) :  DEBUG (networking:248) - Loaded HTTP cookies<br />
2011-11-26 11:33:39,043 (-53e7ed40) :  DEBUG (core:210) - Starting localization component.<br />
2011-11-26 11:33:39,043 (-53e7ed40) :  INFO (localization:406) - Setting the default locale to en-us<br />
2011-11-26 11:33:39,043 (-53e7ed40) :  DEBUG (localization:428) - Unable to find en strings<br />
2011-11-26 11:33:39,044 (-53e7ed40) :  DEBUG (localization:440) - Unable to find en-us strings<br />
2011-11-26 11:33:39,044 (-53e7ed40) :  DEBUG (core:212) - Starting messaging component.<br />
2011-11-26 11:33:39,045 (-53e7ed40) :  DEBUG (runtime:979) - Created a thread named 'get_server_info'<br />
2011-11-26 11:33:39,045 (-4f967000) :  DEBUG (networking:115) - Requesting 'http://127.0.0.1:32400/system/messaging/clear_events/com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,046 (-4f8e5000) :  DEBUG (networking:115) - Requesting 'http://127.0.0.1:32400'<br />
2011-11-26 11:33:39,080 (-4f8e5000) :  DEBUG (core:283) - Machine identifier is e44b9de6177f07e16e491be4cbd8ee739400251c<br />
2011-11-26 11:33:39,081 (-4f8e5000) :  DEBUG (core:284) - Server version is 0.9.5.0-dc1de23<br />
2011-11-26 11:33:39,256 (-53e7ed40) :  DEBUG (runtime:979) - Created a thread named 'load_all_services'<br />
2011-11-26 11:33:39,260 (-4f967000) :  DEBUG (networking:115) - Requesting 'http://127.0.0.1:32400/:/plugins/com.plexapp.system/messaging/function/X0J1bmRsZVNlcnZpY2U6QWxsU2VydmljZXM_/Y2VyZWFsMQoxCmxpc3QKMApyMAo_/Y2VyZWFsMQoxCmRpY3QKMApyMAo_'<br />
2011-11-26 11:33:39,261 (-53e7ed40) :  DEBUG (accessor:68) - Creating a new model access point for provider com.plexapp.agents.kinopoisk in namespace 'metadata'<br />
2011-11-26 11:33:39,262 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Album' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,263 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Episode' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,264 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'TV_Show' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,264 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Artist' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,265 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Track' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,265 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Movie' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,266 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Photo' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,266 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'VideoClip' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,266 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Person' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,267 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Role' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,267 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'Season' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,268 (-53e7ed40) :  DEBUG (classes:9) - Generating class for 'PhotoAlbum' model in namespace 'metadata' with access point 'com.plexapp.agents.kinopoisk'<br />
2011-11-26 11:33:39,271 (-53e7ed40) :  DEBUG (core:258) - Finished starting framework core<br />
2011-11-26 11:33:39,271 (-53e7ed40) :  DEBUG (core:301) - Loading plug-in code<br />
2011-11-26 11:33:39,514 (-53e7ed40) :  DEBUG (agentkit:923) - Creating new agent class called KinopoiskAgent<br />
2011-11-26 11:33:39,515 (-53e7ed40) :  DEBUG (agentkit:810) - Updating agent information: [{'media_types': ['Movie'], 'accepts_from': None, 'fallback_agent': None, 'contributes_to': None, 'languages': ['ru'], 'primary_provider': True, 'prefs': False, 'name': 'KinoPoisk'}]<br />
2011-11-26 11:33:39,528 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.myspace', 'URL'] service 'MySpace' in com.plexapp.plugins.myspace from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,529 (-53e7ed40) :  DEBUG (networking:115) - Requesting 'http://127.0.0.1:32400/:/plugins/com.plexapp.system/messaging/function/X0FnZW50U2VydmljZTpVcGRhdGVJbmZv/Y2VyZWFsMQoxCmxpc3QKMApyMAo_/Y2VyZWFsMQo1CmRpY3QKbGlzdApkaWN0Cmxpc3QKbGlzdAoyCnMyOApjb20ucGxleGFwcC5hZ2VudHMua2lub3BvaXNrczEwCmlkZW50aWZpZXJyMQpzMTAKYWdlbnRfaW5mbzEKcjIKOApyMwpzMTEKbWVkaWFfdHlwZXNuczEyCmFjY2VwdHNfZnJvbW5zMTQKZmFsbGJhY2tfYWdlbnRuczE0CmNvbnRyaWJ1dGVzX3RvcjQKczkKbGFuZ3VhZ2VzYjFzMTYKcHJpbWFyeV9wcm92aWRlcmIwczUKcHJlZnNzOQpLaW5vUG9pc2tzNApuYW1lMQpzNQpNb3ZpZTEKczIKcnVyMAo_'<br />
2011-11-26 11:33:39,529 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.hulu', 'URL'] service 'Hulu' in com.plexapp.plugins.hulu from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,530 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.unclejayexplains', 'URL'] service 'Uncle Jay Explains The News' in com.plexapp.plugins.unclejayexplains from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,530 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.citytv', 'URL'] service 'CityTV' in com.plexapp.plugins.citytv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,530 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.vimcasts', 'URL'] service 'Vimcasts' in com.plexapp.plugins.vimcasts from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,531 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.viki', 'URL'] service 'ViKi' in com.plexapp.plugins.viki from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,531 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.stufftv', 'URL'] service 'Stuff-TV' in com.plexapp.plugins.stufftv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,532 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.drnu', 'URL'] service 'DRNU' in com.plexapp.plugins.drnu from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,532 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.foratv', 'URL'] service 'ForaTV' in com.plexapp.plugins.foratv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,532 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.breakcom', 'URL'] service 'Break.com' in com.plexapp.plugins.breakcom from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,533 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.funnyordie', 'URL'] service 'FunnyOrDie' in com.plexapp.plugins.funnyordie from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,533 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.euronews', 'URL'] service 'Euronews' in com.plexapp.plugins.euronews from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,533 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.parentsask', 'URL'] service 'ParentsASK' in com.plexapp.plugins.parentsask from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,534 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.svtplay', 'URL'] service 'SVTPlay' in com.plexapp.plugins.svtplay from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,534 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.metacafe', 'URL'] service 'Metacafe' in com.plexapp.plugins.metacafe from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,534 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.foxnews', 'URL'] service 'Fox-News' in com.plexapp.plugins.foxnews from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,535 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.thedailyshow', 'URL'] service 'The Daily Show' in com.plexapp.plugins.thedailyshow from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,535 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.g4tv', 'URL'] service 'G4TV' in com.plexapp.plugins.g4tv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,535 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.college_humor', 'URL'] service 'CollegeHumor' in com.plexapp.plugins.college_humor from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,535 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.5by5', 'URL'] service '5by5' in com.plexapp.plugins.5by5 from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,536 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.lovefilm-player', 'URL'] service 'LoveFilm-Player' in com.plexapp.plugins.lovefilm-player from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,536 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.videobash', 'URL'] service 'Videobash' in com.plexapp.plugins.videobash from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,536 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.newsy', 'URL'] service 'Newsy' in com.plexapp.plugins.newsy from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,537 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.wimp', 'URL'] service 'Wimp' in com.plexapp.plugins.wimp from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,537 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.thecolbertreport', 'URL'] service 'The Colbert Report' in com.plexapp.plugins.thecolbertreport from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,537 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.showmedo', 'URL'] service 'ShowMeDo' in com.plexapp.plugins.showmedo from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,538 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.stumbleupon', 'URL'] service 'StumbleUpon' in com.plexapp.plugins.stumbleupon from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,538 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.triplem', 'URL'] service 'TripleM' in com.plexapp.plugins.triplem from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,538 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.viralvideochart', 'URL'] service 'ViralVideoChart' in com.plexapp.plugins.viralvideochart from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,539 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.ign', 'URL'] service 'IGN' in com.plexapp.plugins.ign from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,539 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.dumpert', 'URL'] service 'Dumpert' in com.plexapp.plugins.dumpert from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,539 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.nbc', 'URL'] service 'NBC' in com.plexapp.plugins.nbc from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,540 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.skysports', 'URL'] service 'SkySports' in com.plexapp.plugins.skysports from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,540 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.ukfilmtrailer', 'URL'] service 'UK-Filmtrailer' in com.plexapp.plugins.ukfilmtrailer from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,540 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.dailymotion', 'URL'] service 'DailyMotion' in com.plexapp.plugins.dailymotion from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,540 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.theonion', 'URL'] service 'The Onion' in com.plexapp.plugins.theonion from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,541 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.cnn', 'URL'] service 'CNN-News' in com.plexapp.plugins.cnn from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,541 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.abcfamily', 'URL'] service 'ABCFamily' in com.plexapp.plugins.abcfamily from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,541 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.shredordie', 'URL'] service 'ShredOrDie' in com.plexapp.plugins.shredordie from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,542 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.dolectures', 'URL'] service 'DoLectures' in com.plexapp.plugins.dolectures from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,542 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.makingof', 'URL'] service 'MakingOf' in com.plexapp.plugins.makingof from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,542 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.kelbytv', 'URL'] service 'Kelby-TV' in com.plexapp.plugins.kelbytv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,543 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.gametrailers', 'URL'] service 'GameTrailers' in com.plexapp.plugins.gametrailers from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,543 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.pitchforktv', 'URL'] service 'Pitchfork-MusicVideos' in com.plexapp.plugins.pitchforktv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,543 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.pitchforktv', 'URL'] service 'Pitchfork-TV' in com.plexapp.plugins.pitchforktv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,543 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.mevio', 'URL'] service 'Mevio' in com.plexapp.plugins.mevio from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,544 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.search.videosurf', 'Search'] service 'VideoSurf' in com.plexapp.search.videosurf from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,544 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.ted', 'URL'] service 'TED-Talks' in com.plexapp.plugins.ted from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,544 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.revision3', 'URL'] service 'Revision3' in com.plexapp.plugins.revision3 from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,545 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.skyplayer', 'URL'] service 'SkyGo' in com.plexapp.plugins.skyplayer from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,545 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.cannabisplanet', 'URL'] service 'CannabisPlanet' in com.plexapp.plugins.cannabisplanet from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,545 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.automatedhome', 'URL'] service 'Automated Home' in com.plexapp.plugins.automatedhome from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,545 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.metro', 'URL'] service 'Metro' in com.plexapp.plugins.metro from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,546 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.imovies', 'URL'] service 'iMovies' in com.plexapp.plugins.imovies from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,546 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.nationalgeographic', 'URL'] service 'National Geographic' in com.plexapp.plugins.nationalgeographic from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,546 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.nationalgeographic', 'URL'] service 'National Geographic Photography' in com.plexapp.plugins.nationalgeographic from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,547 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.jamieoliver', 'URL'] service 'JamieOliver' in com.plexapp.plugins.jamieoliver from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,547 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.pokerstarstv', 'URL'] service 'PokerstarsTV' in com.plexapp.plugins.pokerstarstv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,547 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.absoluteradio', 'URL'] service 'Absolute Radio' in com.plexapp.plugins.absoluteradio from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,547 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.historychannel', 'URL'] service 'History Channel' in com.plexapp.plugins.historychannel from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,548 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.4oD', 'URL'] service '4oD' in com.plexapp.plugins.4oD from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,548 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.amt', 'URL'] service 'Apple Movie Trailers' in com.plexapp.plugins.amt from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,548 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.fxuk', 'URL'] service 'FXUK' in com.plexapp.plugins.fxuk from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,549 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.arbejdsglaedeTV', 'URL'] service 'arbejdsglaedeTV' in com.plexapp.plugins.arbejdsglaedeTV from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,549 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.canoetv', 'URL'] service 'CanoeTV' in com.plexapp.plugins.canoetv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,549 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.html5video', 'URL'] service 'HTML5 Video' in com.plexapp.plugins.html5video from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,550 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.bing', 'URL'] service 'Bing' in com.plexapp.plugins.bing from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,550 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.vgtv', 'URL'] service 'VGTV' in com.plexapp.plugins.vgtv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,550 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.academicearth', 'URL'] service 'Academic Earth' in com.plexapp.plugins.academicearth from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,550 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.escapist', 'URL'] service 'The Escapist' in com.plexapp.plugins.escapist from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,551 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.comedycentral', 'URL'] service 'Comedy Central' in com.plexapp.plugins.comedycentral from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,551 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.stubru', 'URL'] service 'Studio Brussel' in com.plexapp.plugins.stubru from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,551 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.blip', 'URL'] service 'Blip.tv' in com.plexapp.plugins.blip from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,552 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.adrenalinefeed', 'URL'] service 'AdrenalinFeed' in com.plexapp.plugins.adrenalinefeed from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,552 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.doctype', 'URL'] service 'DOCTYPE' in com.plexapp.plugins.doctype from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,552 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.snagfilms', 'URL'] service 'Snag Films' in com.plexapp.plugins.snagfilms from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,552 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.currenttv', 'URL'] service 'Current' in com.plexapp.plugins.currenttv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,553 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.universalsports', 'URL'] service 'Universal Sports' in com.plexapp.plugins.universalsports from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,553 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.thenytimes', 'URL'] service 'New York Times' in com.plexapp.plugins.thenytimes from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,553 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.khanacademy', 'URL'] service 'KhanAcademy' in com.plexapp.plugins.khanacademy from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,554 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.nme', 'URL'] service 'NME' in com.plexapp.plugins.nme from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,554 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.railscasts', 'URL'] service 'Railscasts' in com.plexapp.plugins.railscasts from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,554 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.kanal5play', 'URL'] service 'Kanal 5 Play' in com.plexapp.plugins.kanal5play from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,555 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.giantbomb', 'URL'] service 'GiantBomb' in com.plexapp.plugins.giantbomb from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,555 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.kontraband', 'URL'] service 'Kontraband' in com.plexapp.plugins.kontraband from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,555 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.ifanboy', 'URL'] service 'iFanboy' in com.plexapp.plugins.ifanboy from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,555 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.adobetv', 'URL'] service 'Adobe TV' in com.plexapp.plugins.adobetv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,556 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.vrt', 'URL'] service 'VRT' in com.plexapp.plugins.vrt from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,556 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.roosterteeth', 'URL'] service 'RoosterTeeth' in com.plexapp.plugins.roosterteeth from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,556 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.gamernl', 'URL'] service 'GamerNL' in com.plexapp.plugins.gamernl from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,557 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.eurogamer', 'URL'] service 'Eurogamer' in com.plexapp.plugins.eurogamer from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,557 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.iplayer', 'URL'] service 'BBC iPlayer' in com.plexapp.plugins.iplayer from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,557 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.cbs', 'URL'] service 'CBS' in com.plexapp.plugins.cbs from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,557 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.mpora', 'URL'] service 'MPORA' in com.plexapp.plugins.mpora from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,558 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.mpora', 'URL'] service 'MPORA Photos' in com.plexapp.plugins.mpora from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,558 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.videojug', 'URL'] service 'VideoJug' in com.plexapp.plugins.videojug from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,558 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.tvolucion', 'URL'] service 'Tvolucion' in com.plexapp.plugins.tvolucion from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,559 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.artep7', 'URL'] service 'Arte' in com.plexapp.plugins.artep7 from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,559 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.howtobecome', 'URL'] service 'HowToBecomeTV' in com.plexapp.plugins.howtobecome from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,559 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.abc', 'URL'] service 'ABC' in com.plexapp.plugins.abc from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,559 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.blinkbox', 'URL'] service 'Blinkbox' in com.plexapp.plugins.blinkbox from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,560 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.ctvglobemedia', 'URL'] service 'CTV' in com.plexapp.plugins.ctvglobemedia from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,560 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.moviesense', 'URL'] service 'MovieSense' in com.plexapp.plugins.moviesense from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,560 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.marvel', 'URL'] service 'Marvel' in com.plexapp.plugins.marvel from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,561 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.t3', 'URL'] service 'T3' in com.plexapp.plugins.t3 from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,561 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.cnettv', 'URL'] service 'CNET' in com.plexapp.plugins.cnettv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,562 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.golfchannel', 'URL'] service 'GolfChannel' in com.plexapp.plugins.golfchannel from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,562 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.slowtv', 'URL'] service 'SlowTV' in com.plexapp.plugins.slowtv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,562 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.aljazeera', 'URL'] service 'Al Jazeera English' in com.plexapp.plugins.aljazeera from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,563 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.theguardian', 'URL'] service 'The Guardian' in com.plexapp.plugins.theguardian from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,563 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.dailykos', 'URL'] service 'Daily-Kos' in com.plexapp.plugins.dailykos from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,563 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.youtube', 'URL'] service 'YouTube' in com.plexapp.plugins.youtube from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,564 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.fxguidetv', 'URL'] service 'FX-Guide TV' in com.plexapp.plugins.fxguidetv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,564 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.vimeo', 'URL'] service 'Vimeo' in com.plexapp.plugins.vimeo from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,564 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.nfbonf', 'URL'] service 'NFB' in com.plexapp.plugins.nfbonf from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,565 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.traileraddict', 'URL'] service 'Trailer Addict' in com.plexapp.plugins.traileraddict from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,565 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.raitv', 'URL'] service 'RaiTV' in com.plexapp.plugins.raitv from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,565 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.liveleak', 'URL'] service 'LiveLeak' in com.plexapp.plugins.liveleak from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,566 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.channel9', 'URL'] service 'Channel9' in com.plexapp.plugins.channel9 from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,566 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.freedocumentaries', 'URL'] service 'FreeDocumentaries' in com.plexapp.plugins.freedocumentaries from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,566 (-4f967000) :  DEBUG (core:681) - Loaded ['Service Sets', 'com.plexapp.plugins.freecaster', 'URL'] service 'Freecaster-TV' in com.plexapp.plugins.freecaster from bundle com.plexapp.system.services<br />
2011-11-26 11:33:39,567 (-4f967000) :  DEBUG (core:734) - Loaded services<br />
2011-11-26 11:33:39,568 (-4f8e5000) :  DEBUG (prefskit:320) - Loaded the user preferences for com.plexapp.agents.kinopoisk<br />
2011-11-26 11:33:39,569 (-4f8e5000) :  DEBUG (prefskit:353) - Saved the user preferences<br />
2011-11-26 11:33:39,570 (-53e7ed40) :  DEBUG (core:443) - Running pre-flight checks<br />
2011-11-26 11:33:39,572 (-53e7ed40) :  INFO (core:450) - Started plug-in<br />
2011-11-26 11:33:39,572 (-53e7ed40) :  DEBUG (socketinterface:137) - Starting socket server<br />
2011-11-26 11:33:39,575 (-53e7ed40) :  DEBUG (runtime:979) - Created a thread named 'start'<br />
2011-11-26 11:33:39,575 (-53e7ed40) :  INFO (socketinterface:161) - Socket server started on port 61704<br />
2011-11-26 11:33:39,576 (-53e7ed40) :  INFO (pipeinterface:28) - Entering run loop<br />
2011-11-26 11:33:39,578 (-53e7ed40) :  DEBUG (runtime:528) - Handling request GET /:/prefixes<br />
2011-11-26 11:33:39,580 (-53e7ed40) :  DEBUG (runtime:678) - Response: 200<br />
2011-11-26 11:33:39,589 (-4f8e5000) :  DEBUG (runtime:528) - Handling request GET /:/plugins/com.plexapp.agents.kinopoisk/messaging/function/X0FnZW50S2l0OlNlYXJjaA__/Y2VyZWFsMQoxCmxpc3QKMApyMAo_/Y2VyZWFsMQoyCmRpY3QKZGljdAo0CnMyCnJ1czQKbGFuZ3M1Ck1vdmllczEwCm1lZGlhX3R5cGViMXM2Cm1hbnVhbHIxCnM2Cmt3YXJnczYKczE2CjllZDk1MzU3NDVmOTg5YjBzMTcKb3BlblN1YnRpdGxlc0hhc2hzMTEKWmVpdGdlaXN0IDNzNApuYW1lczIxNwolMkZWb2x1bWVzJTJGbWVkaWElMkYlRDAlOUMlRDAlQjUlRDAlQjQlRDAlQjglRDAlQjAlRDElODIlRDAlQjUlRDAlQkElRDAlQjAlMkYlRDAlOTIlRDAlQjglRDAlQjQlRDAlQjUlRDAlQkUlMkYlRDAlOTQlRDAlQkUlRDAlQkElRDElODMlRDAlQkMlRDAlQjUlRDAlQkQlRDElODIlRDAlQjAlRDAlQkIlRDElOEMlRDAlQkQlRDAlQkUlRDAlQjUlMkZaZWl0Z2Vpc3QlMjAzJTJFYXZpczgKZmlsZW5hbWVzNDAKYmQ5MTA0YmNlOGY0MjNjYjgyYzIxOTU3MDYyMDVjMDU1ZGZjOGE0Y3M4CnBsZXhIYXNoczcKOTY4NDAwMHM4CmR1cmF0aW9uczEKMXMyCmlkcjAK<br />
2011-11-26 11:33:39,589 (-4f8e5000) :  INFO (agentkit:833) - Searching for matches for {'openSubtitlesHash': '9ed9535745f989b0', 'name': 'Zeitgeist 3', 'filename': '%2FVolumes%2Fmedia%2F%D0%9C%D0%B5%D0%B4%D0%B8%D0%B0%D1%82%D0%B5%D0%BA%D0%B0%2F%D0%92%D0%B8%D0%B4%D0%B5%D0%BE%2F%D0%94%D0%BE%D0%BA%D1%83%D0%BC%D0%B5%D0%BD%D1%82%D0%B0%D0%BB%D1%8C%D0%BD%D0%BE%D0%B5%2FZeitgeist%203%2Eavi', 'plexHash': 'bd9104bce8f423cb82c2195706205c055dfc8a4c', 'duration': '9684000', 'id': '1'}<br />
2011-11-26 11:33:39,590 (-4f8e5000) :  DEBUG (networking:115) - Requesting 'http://127.0.0.1:32400/library/metadata/1/tree'<br />
2011-11-26 11:33:40,627 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,628 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,678 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,680 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,685 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,687 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,694 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,713 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,717 (-4f8e5000) :  INFO (__init__:32) - HTML output:<br />
2011-11-26 11:33:40,721 (-4f8e5000) :  DEBUG (networking:111) - Fetching 'http://www.kinopoisk.ru/index.php?first=no&kp_query=Zeitgeist+3' from the HTTP cache<br />
2011-11-26 11:33:40,731 (-4f8e5000) :  DEBUG (runtime:678) - Response: 200

[/spoiler]





BTW, plugin still works fine on 0.9.3.4.

Looks like HTTP.Request broken, created topic in general forum =(

Doh, silly me! The line with HTTP.Request should look like this:


res = HTTP.Request(url, headers = {'User-agent': UserAgent}).content

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.